491 lines
1005 KiB
XML
491 lines
1005 KiB
XML
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="950" onload="init(evt)" viewBox="0 0 1200 950" 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="950" 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="933.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="933.00"> </text><svg id="frames" x="10" width="1180" total_samples="295991"><g><title>[perf-12570.map] (53 samples, 0.02%)</title><rect x="0.0044%" y="869" width="0.0179%" height="15" fill="rgb(227,0,7)" fg:x="13" fg:w="53"/><text x="0.2544%" y="879.50"></text></g><g><title>ActionLookupVal (87 samples, 0.03%)</title><rect x="0.0037%" y="885" width="0.0294%" height="15" fill="rgb(217,0,24)" fg:x="11" fg:w="87"/><text x="0.2537%" y="895.50"></text></g><g><title>__GI___clone (32 samples, 0.01%)</title><rect x="0.0223%" y="869" width="0.0108%" height="15" fill="rgb(221,193,54)" fg:x="66" fg:w="32"/><text x="0.2723%" y="879.50"></text></g><g><title>start_thread (32 samples, 0.01%)</title><rect x="0.0223%" y="853" width="0.0108%" height="15" fill="rgb(248,212,6)" fg:x="66" fg:w="32"/><text x="0.2723%" y="863.50"></text></g><g><title>_dl_update_slotinfo (137 samples, 0.05%)</title><rect x="0.3480%" y="853" width="0.0463%" height="15" fill="rgb(208,68,35)" fg:x="1030" fg:w="137"/><text x="0.5980%" y="863.50"></text></g><g><title>update_get_addr (42 samples, 0.01%)</title><rect x="0.4544%" y="853" width="0.0142%" height="15" fill="rgb(232,128,0)" fg:x="1345" fg:w="42"/><text x="0.7044%" y="863.50"></text></g><g><title>[anon] (1,236 samples, 0.42%)</title><rect x="0.0514%" y="869" width="0.4176%" height="15" fill="rgb(207,160,47)" fg:x="152" fg:w="1236"/><text x="0.3014%" y="879.50"></text></g><g><title>[perf-12570.map] (138 samples, 0.05%)</title><rect x="0.4693%" y="869" width="0.0466%" height="15" fill="rgb(228,23,34)" fg:x="1389" fg:w="138"/><text x="0.7193%" y="879.50"></text></g><g><title>_dl_update_slotinfo (30 samples, 0.01%)</title><rect x="0.5352%" y="853" width="0.0101%" height="15" fill="rgb(218,30,26)" fg:x="1584" fg:w="30"/><text x="0.7852%" y="863.50"></text></g><g><title>[unknown] (103 samples, 0.03%)</title><rect x="0.5159%" y="869" width="0.0348%" height="15" fill="rgb(220,122,19)" fg:x="1527" fg:w="103"/><text x="0.7659%" y="879.50"></text></g><g><title>jio_vsnprintf (47 samples, 0.02%)</title><rect x="0.5693%" y="725" width="0.0159%" height="15" fill="rgb(250,228,42)" fg:x="1685" fg:w="47"/><text x="0.8193%" y="735.50"></text></g><g><title>os::vsnprintf (47 samples, 0.02%)</title><rect x="0.5693%" y="709" width="0.0159%" height="15" fill="rgb(240,193,28)" fg:x="1685" fg:w="47"/><text x="0.8193%" y="719.50"></text></g><g><title>__vsnprintf_internal (47 samples, 0.02%)</title><rect x="0.5693%" y="693" width="0.0159%" height="15" fill="rgb(216,20,37)" fg:x="1685" fg:w="47"/><text x="0.8193%" y="703.50"></text></g><g><title>__vfprintf_internal (44 samples, 0.01%)</title><rect x="0.5703%" y="677" width="0.0149%" height="15" fill="rgb(206,188,39)" fg:x="1688" fg:w="44"/><text x="0.8203%" y="687.50"></text></g><g><title>CompileBroker::post_compile (59 samples, 0.02%)</title><rect x="0.5659%" y="757" width="0.0199%" height="15" fill="rgb(217,207,13)" fg:x="1675" fg:w="59"/><text x="0.8159%" y="767.50"></text></g><g><title>StringEventLog::log (56 samples, 0.02%)</title><rect x="0.5669%" y="741" width="0.0189%" height="15" fill="rgb(231,73,38)" fg:x="1678" fg:w="56"/><text x="0.8169%" y="751.50"></text></g><g><title>Method::print_short_name (54 samples, 0.02%)</title><rect x="0.5933%" y="741" width="0.0182%" height="15" fill="rgb(225,20,46)" fg:x="1756" fg:w="54"/><text x="0.8433%" y="751.50"></text></g><g><title>os::vsnprintf (42 samples, 0.01%)</title><rect x="0.6196%" y="709" width="0.0142%" height="15" fill="rgb(210,31,41)" fg:x="1834" fg:w="42"/><text x="0.8696%" y="719.50"></text></g><g><title>__vsnprintf_internal (42 samples, 0.01%)</title><rect x="0.6196%" y="693" width="0.0142%" height="15" fill="rgb(221,200,47)" fg:x="1834" fg:w="42"/><text x="0.8696%" y="703.50"></text></g><g><title>__vfprintf_internal (38 samples, 0.01%)</title><rect x="0.6210%" y="677" width="0.0128%" height="15" fill="rgb(226,26,5)" fg:x="1838" fg:w="38"/><text x="0.8710%" y="687.50"></text></g><g><title>CompileTask::print (131 samples, 0.04%)</title><rect x="0.5929%" y="757" width="0.0443%" height="15" fill="rgb(249,33,26)" fg:x="1755" fg:w="131"/><text x="0.8429%" y="767.50"></text></g><g><title>outputStream::print (76 samples, 0.03%)</title><rect x="0.6115%" y="741" width="0.0257%" height="15" fill="rgb(235,183,28)" fg:x="1810" fg:w="76"/><text x="0.8615%" y="751.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (73 samples, 0.02%)</title><rect x="0.6125%" y="725" width="0.0247%" height="15" fill="rgb(221,5,38)" fg:x="1813" fg:w="73"/><text x="0.8625%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.01%)</title><rect x="0.6737%" y="565" width="0.0118%" height="15" fill="rgb(247,18,42)" fg:x="1994" fg:w="35"/><text x="0.9237%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.02%)</title><rect x="0.6737%" y="581" width="0.0159%" height="15" fill="rgb(241,131,45)" fg:x="1994" fg:w="47"/><text x="0.9237%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (63 samples, 0.02%)</title><rect x="0.6737%" y="597" width="0.0213%" height="15" fill="rgb(249,31,29)" fg:x="1994" fg:w="63"/><text x="0.9237%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (89 samples, 0.03%)</title><rect x="0.6730%" y="613" width="0.0301%" height="15" fill="rgb(225,111,53)" fg:x="1992" fg:w="89"/><text x="0.9230%" y="623.50"></text></g><g><title>SubstitutionResolver::block_do (38 samples, 0.01%)</title><rect x="0.7031%" y="613" width="0.0128%" height="15" fill="rgb(238,160,17)" fg:x="2081" fg:w="38"/><text x="0.9531%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (133 samples, 0.04%)</title><rect x="0.6713%" y="629" width="0.0449%" height="15" fill="rgb(214,148,48)" fg:x="1987" fg:w="133"/><text x="0.9213%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (190 samples, 0.06%)</title><rect x="0.6700%" y="661" width="0.0642%" height="15" fill="rgb(232,36,49)" fg:x="1983" fg:w="190"/><text x="0.9200%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (189 samples, 0.06%)</title><rect x="0.6703%" y="645" width="0.0639%" height="15" fill="rgb(209,103,24)" fg:x="1984" fg:w="189"/><text x="0.9203%" y="655.50"></text></g><g><title>SubstitutionResolver::block_do (53 samples, 0.02%)</title><rect x="0.7162%" y="629" width="0.0179%" height="15" fill="rgb(229,88,8)" fg:x="2120" fg:w="53"/><text x="0.9662%" y="639.50"></text></g><g><title>ValueMap::ValueMap (39 samples, 0.01%)</title><rect x="0.7352%" y="661" width="0.0132%" height="15" fill="rgb(213,181,19)" fg:x="2176" fg:w="39"/><text x="0.9852%" y="671.50"></text></g><g><title>ValueMap::find_insert (35 samples, 0.01%)</title><rect x="0.7483%" y="661" width="0.0118%" height="15" fill="rgb(254,191,54)" fg:x="2215" fg:w="35"/><text x="0.9983%" y="671.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (366 samples, 0.12%)</title><rect x="0.6504%" y="677" width="0.1237%" height="15" fill="rgb(241,83,37)" fg:x="1925" fg:w="366"/><text x="0.9004%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.01%)</title><rect x="0.7811%" y="565" width="0.0118%" height="15" fill="rgb(233,36,39)" fg:x="2312" fg:w="35"/><text x="1.0311%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (46 samples, 0.02%)</title><rect x="0.7804%" y="581" width="0.0155%" height="15" fill="rgb(226,3,54)" fg:x="2310" fg:w="46"/><text x="1.0304%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (58 samples, 0.02%)</title><rect x="0.7804%" y="597" width="0.0196%" height="15" fill="rgb(245,192,40)" fg:x="2310" fg:w="58"/><text x="1.0304%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (78 samples, 0.03%)</title><rect x="0.7787%" y="613" width="0.0264%" height="15" fill="rgb(238,167,29)" fg:x="2305" fg:w="78"/><text x="1.0287%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (99 samples, 0.03%)</title><rect x="0.7767%" y="629" width="0.0334%" height="15" fill="rgb(232,182,51)" fg:x="2299" fg:w="99"/><text x="1.0267%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (101 samples, 0.03%)</title><rect x="0.7764%" y="645" width="0.0341%" height="15" fill="rgb(231,60,39)" fg:x="2298" fg:w="101"/><text x="1.0264%" y="655.50"></text></g><g><title>MethodLiveness::init_basic_blocks (39 samples, 0.01%)</title><rect x="0.8494%" y="581" width="0.0132%" height="15" fill="rgb(208,69,12)" fg:x="2514" fg:w="39"/><text x="1.0994%" y="591.50"></text></g><g><title>MethodLiveness::compute_liveness (85 samples, 0.03%)</title><rect x="0.8345%" y="597" width="0.0287%" height="15" fill="rgb(235,93,37)" fg:x="2470" fg:w="85"/><text x="1.0845%" y="607.50"></text></g><g><title>BlockListBuilder::set_leaders (128 samples, 0.04%)</title><rect x="0.8206%" y="629" width="0.0432%" height="15" fill="rgb(213,116,39)" fg:x="2429" fg:w="128"/><text x="1.0706%" y="639.50"></text></g><g><title>ciMethod::bci_block_start (89 samples, 0.03%)</title><rect x="0.8338%" y="613" width="0.0301%" height="15" fill="rgb(222,207,29)" fg:x="2468" fg:w="89"/><text x="1.0838%" y="623.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (146 samples, 0.05%)</title><rect x="0.8156%" y="645" width="0.0493%" height="15" fill="rgb(206,96,30)" fg:x="2414" fg:w="146"/><text x="1.0656%" y="655.50"></text></g><g><title>GraphBuilder::connect_to_end (42 samples, 0.01%)</title><rect x="0.8710%" y="629" width="0.0142%" height="15" fill="rgb(218,138,4)" fg:x="2578" fg:w="42"/><text x="1.1210%" y="639.50"></text></g><g><title>BlockBegin::try_merge (39 samples, 0.01%)</title><rect x="0.9017%" y="613" width="0.0132%" height="15" fill="rgb(250,191,14)" fg:x="2669" fg:w="39"/><text x="1.1517%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (58 samples, 0.02%)</title><rect x="0.9564%" y="533" width="0.0196%" height="15" fill="rgb(239,60,40)" fg:x="2831" fg:w="58"/><text x="1.2064%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (73 samples, 0.02%)</title><rect x="0.9521%" y="549" width="0.0247%" height="15" fill="rgb(206,27,48)" fg:x="2818" fg:w="73"/><text x="1.2021%" y="559.50"></text></g><g><title>ciField::ciField (113 samples, 0.04%)</title><rect x="0.9456%" y="565" width="0.0382%" height="15" fill="rgb(225,35,8)" fg:x="2799" fg:w="113"/><text x="1.1956%" y="575.50"></text></g><g><title>ciEnv::get_field_by_index (133 samples, 0.04%)</title><rect x="0.9392%" y="581" width="0.0449%" height="15" fill="rgb(250,213,24)" fg:x="2780" fg:w="133"/><text x="1.1892%" y="591.50"></text></g><g><title>ciBytecodeStream::get_field (152 samples, 0.05%)</title><rect x="0.9382%" y="597" width="0.0514%" height="15" fill="rgb(247,123,22)" fg:x="2777" fg:w="152"/><text x="1.1882%" y="607.50"></text></g><g><title>GraphBuilder::access_field (215 samples, 0.07%)</title><rect x="0.9210%" y="613" width="0.0726%" height="15" fill="rgb(231,138,38)" fg:x="2726" fg:w="215"/><text x="1.1710%" y="623.50"></text></g><g><title>GraphBuilder::append_with_bci (36 samples, 0.01%)</title><rect x="1.0331%" y="597" width="0.0122%" height="15" fill="rgb(231,145,46)" fg:x="3058" fg:w="36"/><text x="1.2831%" y="607.50"></text></g><g><title>BlockBegin::try_merge (52 samples, 0.02%)</title><rect x="1.0862%" y="533" width="0.0176%" height="15" fill="rgb(251,118,11)" fg:x="3215" fg:w="52"/><text x="1.3362%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (42 samples, 0.01%)</title><rect x="1.1298%" y="453" width="0.0142%" height="15" fill="rgb(217,147,25)" fg:x="3344" fg:w="42"/><text x="1.3798%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (49 samples, 0.02%)</title><rect x="1.1281%" y="469" width="0.0166%" height="15" fill="rgb(247,81,37)" fg:x="3339" fg:w="49"/><text x="1.3781%" y="479.50"></text></g><g><title>ciField::ciField (88 samples, 0.03%)</title><rect x="1.1213%" y="485" width="0.0297%" height="15" fill="rgb(209,12,38)" fg:x="3319" fg:w="88"/><text x="1.3713%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (100 samples, 0.03%)</title><rect x="1.1193%" y="501" width="0.0338%" height="15" fill="rgb(227,1,9)" fg:x="3313" fg:w="100"/><text x="1.3693%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (114 samples, 0.04%)</title><rect x="1.1183%" y="517" width="0.0385%" height="15" fill="rgb(248,47,43)" fg:x="3310" fg:w="114"/><text x="1.3683%" y="527.50"></text></g><g><title>GraphBuilder::access_field (154 samples, 0.05%)</title><rect x="1.1071%" y="533" width="0.0520%" height="15" fill="rgb(221,10,30)" fg:x="3277" fg:w="154"/><text x="1.3571%" y="543.50"></text></g><g><title>BlockBegin::try_merge (33 samples, 0.01%)</title><rect x="1.1963%" y="453" width="0.0111%" height="15" fill="rgb(210,229,1)" fg:x="3541" fg:w="33"/><text x="1.4463%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (30 samples, 0.01%)</title><rect x="1.2200%" y="389" width="0.0101%" height="15" fill="rgb(222,148,37)" fg:x="3611" fg:w="30"/><text x="1.4700%" y="399.50"></text></g><g><title>ciField::ciField (49 samples, 0.02%)</title><rect x="1.2169%" y="405" width="0.0166%" height="15" fill="rgb(234,67,33)" fg:x="3602" fg:w="49"/><text x="1.4669%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (54 samples, 0.02%)</title><rect x="1.2156%" y="421" width="0.0182%" height="15" fill="rgb(247,98,35)" fg:x="3598" fg:w="54"/><text x="1.4656%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (62 samples, 0.02%)</title><rect x="1.2156%" y="437" width="0.0209%" height="15" fill="rgb(247,138,52)" fg:x="3598" fg:w="62"/><text x="1.4656%" y="447.50"></text></g><g><title>GraphBuilder::access_field (85 samples, 0.03%)</title><rect x="1.2098%" y="453" width="0.0287%" height="15" fill="rgb(213,79,30)" fg:x="3581" fg:w="85"/><text x="1.4598%" y="463.50"></text></g><g><title>GraphBuilder::access_field (46 samples, 0.02%)</title><rect x="1.2744%" y="373" width="0.0155%" height="15" fill="rgb(246,177,23)" fg:x="3772" fg:w="46"/><text x="1.5244%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (42 samples, 0.01%)</title><rect x="1.3048%" y="261" width="0.0142%" height="15" fill="rgb(230,62,27)" fg:x="3862" fg:w="42"/><text x="1.5548%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (44 samples, 0.01%)</title><rect x="1.3044%" y="277" width="0.0149%" height="15" fill="rgb(216,154,8)" fg:x="3861" fg:w="44"/><text x="1.5544%" y="287.50"></text></g><g><title>GraphBuilder::invoke (66 samples, 0.02%)</title><rect x="1.3034%" y="293" width="0.0223%" height="15" fill="rgb(244,35,45)" fg:x="3858" fg:w="66"/><text x="1.5534%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (96 samples, 0.03%)</title><rect x="1.2980%" y="325" width="0.0324%" height="15" fill="rgb(251,115,12)" fg:x="3842" fg:w="96"/><text x="1.5480%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (96 samples, 0.03%)</title><rect x="1.2980%" y="309" width="0.0324%" height="15" fill="rgb(240,54,50)" fg:x="3842" fg:w="96"/><text x="1.5480%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (133 samples, 0.04%)</title><rect x="1.2956%" y="341" width="0.0449%" height="15" fill="rgb(233,84,52)" fg:x="3835" fg:w="133"/><text x="1.5456%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (145 samples, 0.05%)</title><rect x="1.2953%" y="357" width="0.0490%" height="15" fill="rgb(207,117,47)" fg:x="3834" fg:w="145"/><text x="1.5453%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (40 samples, 0.01%)</title><rect x="1.3456%" y="357" width="0.0135%" height="15" fill="rgb(249,43,39)" fg:x="3983" fg:w="40"/><text x="1.5956%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (34 samples, 0.01%)</title><rect x="1.3477%" y="341" width="0.0115%" height="15" fill="rgb(209,38,44)" fg:x="3989" fg:w="34"/><text x="1.5977%" y="351.50"></text></g><g><title>GraphBuilder::invoke (207 samples, 0.07%)</title><rect x="1.2919%" y="373" width="0.0699%" height="15" fill="rgb(236,212,23)" fg:x="3824" fg:w="207"/><text x="1.5419%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (318 samples, 0.11%)</title><rect x="1.2629%" y="405" width="0.1074%" height="15" fill="rgb(242,79,21)" fg:x="3738" fg:w="318"/><text x="1.5129%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (318 samples, 0.11%)</title><rect x="1.2629%" y="389" width="0.1074%" height="15" fill="rgb(211,96,35)" fg:x="3738" fg:w="318"/><text x="1.5129%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (42 samples, 0.01%)</title><rect x="1.3710%" y="405" width="0.0142%" height="15" fill="rgb(253,215,40)" fg:x="4058" fg:w="42"/><text x="1.6210%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (34 samples, 0.01%)</title><rect x="1.3875%" y="405" width="0.0115%" height="15" fill="rgb(211,81,21)" fg:x="4107" fg:w="34"/><text x="1.6375%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (31 samples, 0.01%)</title><rect x="1.3886%" y="389" width="0.0105%" height="15" fill="rgb(208,190,38)" fg:x="4110" fg:w="31"/><text x="1.6386%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (421 samples, 0.14%)</title><rect x="1.2575%" y="421" width="0.1422%" height="15" fill="rgb(235,213,38)" fg:x="3722" fg:w="421"/><text x="1.5075%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (33 samples, 0.01%)</title><rect x="1.4021%" y="373" width="0.0111%" height="15" fill="rgb(237,122,38)" fg:x="4150" fg:w="33"/><text x="1.6521%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (33 samples, 0.01%)</title><rect x="1.4021%" y="357" width="0.0111%" height="15" fill="rgb(244,218,35)" fg:x="4150" fg:w="33"/><text x="1.6521%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (35 samples, 0.01%)</title><rect x="1.4017%" y="405" width="0.0118%" height="15" fill="rgb(240,68,47)" fg:x="4149" fg:w="35"/><text x="1.6517%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (35 samples, 0.01%)</title><rect x="1.4017%" y="389" width="0.0118%" height="15" fill="rgb(210,16,53)" fg:x="4149" fg:w="35"/><text x="1.6517%" y="399.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (36 samples, 0.01%)</title><rect x="1.4017%" y="421" width="0.0122%" height="15" fill="rgb(235,124,12)" fg:x="4149" fg:w="36"/><text x="1.6517%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (468 samples, 0.16%)</title><rect x="1.2565%" y="437" width="0.1581%" height="15" fill="rgb(224,169,11)" fg:x="3719" fg:w="468"/><text x="1.5065%" y="447.50"></text></g><g><title>ciMethod::ciMethod (50 samples, 0.02%)</title><rect x="1.4362%" y="373" width="0.0169%" height="15" fill="rgb(250,166,2)" fg:x="4251" fg:w="50"/><text x="1.6862%" y="383.50"></text></g><g><title>ciSignature::ciSignature (38 samples, 0.01%)</title><rect x="1.4402%" y="357" width="0.0128%" height="15" fill="rgb(242,216,29)" fg:x="4263" fg:w="38"/><text x="1.6902%" y="367.50"></text></g><g><title>ciObjectFactory::get_metadata (58 samples, 0.02%)</title><rect x="1.4338%" y="405" width="0.0196%" height="15" fill="rgb(230,116,27)" fg:x="4244" fg:w="58"/><text x="1.6838%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (52 samples, 0.02%)</title><rect x="1.4359%" y="389" width="0.0176%" height="15" fill="rgb(228,99,48)" fg:x="4250" fg:w="52"/><text x="1.6859%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (108 samples, 0.04%)</title><rect x="1.4173%" y="437" width="0.0365%" height="15" fill="rgb(253,11,6)" fg:x="4195" fg:w="108"/><text x="1.6673%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (96 samples, 0.03%)</title><rect x="1.4213%" y="421" width="0.0324%" height="15" fill="rgb(247,143,39)" fg:x="4207" fg:w="96"/><text x="1.6713%" y="431.50"></text></g><g><title>GraphBuilder::invoke (626 samples, 0.21%)</title><rect x="1.2487%" y="453" width="0.2115%" height="15" fill="rgb(236,97,10)" fg:x="3696" fg:w="626"/><text x="1.4987%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (839 samples, 0.28%)</title><rect x="1.1899%" y="485" width="0.2835%" height="15" fill="rgb(233,208,19)" fg:x="3522" fg:w="839"/><text x="1.4399%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (829 samples, 0.28%)</title><rect x="1.1933%" y="469" width="0.2801%" height="15" fill="rgb(216,164,2)" fg:x="3532" fg:w="829"/><text x="1.4433%" y="479.50"></text></g><g><title>MethodLiveness::compute_liveness (31 samples, 0.01%)</title><rect x="1.4859%" y="421" width="0.0105%" height="15" fill="rgb(220,129,5)" fg:x="4398" fg:w="31"/><text x="1.7359%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (49 samples, 0.02%)</title><rect x="1.4801%" y="453" width="0.0166%" height="15" fill="rgb(242,17,10)" fg:x="4381" fg:w="49"/><text x="1.7301%" y="463.50"></text></g><g><title>ciMethod::bci_block_start (34 samples, 0.01%)</title><rect x="1.4852%" y="437" width="0.0115%" height="15" fill="rgb(242,107,0)" fg:x="4396" fg:w="34"/><text x="1.7352%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (67 samples, 0.02%)</title><rect x="1.4754%" y="469" width="0.0226%" height="15" fill="rgb(251,28,31)" fg:x="4367" fg:w="67"/><text x="1.7254%" y="479.50"></text></g><g><title>GraphBuilder::push_scope (96 samples, 0.03%)</title><rect x="1.4750%" y="485" width="0.0324%" height="15" fill="rgb(233,223,10)" fg:x="4366" fg:w="96"/><text x="1.7250%" y="495.50"></text></g><g><title>ciMethodData::load_data (31 samples, 0.01%)</title><rect x="1.5142%" y="453" width="0.0105%" height="15" fill="rgb(215,21,27)" fg:x="4482" fg:w="31"/><text x="1.7642%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (64 samples, 0.02%)</title><rect x="1.5088%" y="485" width="0.0216%" height="15" fill="rgb(232,23,21)" fg:x="4466" fg:w="64"/><text x="1.7588%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (62 samples, 0.02%)</title><rect x="1.5095%" y="469" width="0.0209%" height="15" fill="rgb(244,5,23)" fg:x="4468" fg:w="62"/><text x="1.7595%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (1,034 samples, 0.35%)</title><rect x="1.1815%" y="501" width="0.3493%" height="15" fill="rgb(226,81,46)" fg:x="3497" fg:w="1034"/><text x="1.4315%" y="511.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (32 samples, 0.01%)</title><rect x="1.5332%" y="501" width="0.0108%" height="15" fill="rgb(247,70,30)" fg:x="4538" fg:w="32"/><text x="1.7832%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (1,078 samples, 0.36%)</title><rect x="1.1801%" y="517" width="0.3642%" height="15" fill="rgb(212,68,19)" fg:x="3493" fg:w="1078"/><text x="1.4301%" y="527.50"></text></g><g><title>ciEnv::lookup_method (40 samples, 0.01%)</title><rect x="1.5653%" y="485" width="0.0135%" height="15" fill="rgb(240,187,13)" fg:x="4633" fg:w="40"/><text x="1.8153%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (33 samples, 0.01%)</title><rect x="1.6034%" y="421" width="0.0111%" height="15" fill="rgb(223,113,26)" fg:x="4746" fg:w="33"/><text x="1.8534%" y="431.50"></text></g><g><title>ciSignature::ciSignature (83 samples, 0.03%)</title><rect x="1.5913%" y="437" width="0.0280%" height="15" fill="rgb(206,192,2)" fg:x="4710" fg:w="83"/><text x="1.8413%" y="447.50"></text></g><g><title>ciMethod::ciMethod (103 samples, 0.03%)</title><rect x="1.5848%" y="453" width="0.0348%" height="15" fill="rgb(241,108,4)" fg:x="4691" fg:w="103"/><text x="1.8348%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (124 samples, 0.04%)</title><rect x="1.5788%" y="485" width="0.0419%" height="15" fill="rgb(247,173,49)" fg:x="4673" fg:w="124"/><text x="1.8288%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (114 samples, 0.04%)</title><rect x="1.5821%" y="469" width="0.0385%" height="15" fill="rgb(224,114,35)" fg:x="4683" fg:w="114"/><text x="1.8321%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (203 samples, 0.07%)</title><rect x="1.5534%" y="517" width="0.0686%" height="15" fill="rgb(245,159,27)" fg:x="4598" fg:w="203"/><text x="1.8034%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (194 samples, 0.07%)</title><rect x="1.5565%" y="501" width="0.0655%" height="15" fill="rgb(245,172,44)" fg:x="4607" fg:w="194"/><text x="1.8065%" y="511.50"></text></g><g><title>GraphBuilder::invoke (1,379 samples, 0.47%)</title><rect x="1.1683%" y="533" width="0.4659%" height="15" fill="rgb(236,23,11)" fg:x="3458" fg:w="1379"/><text x="1.4183%" y="543.50"></text></g><g><title>GraphBuilder::method_return (40 samples, 0.01%)</title><rect x="1.6355%" y="533" width="0.0135%" height="15" fill="rgb(205,117,38)" fg:x="4841" fg:w="40"/><text x="1.8855%" y="543.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,744 samples, 0.59%)</title><rect x="1.0717%" y="565" width="0.5892%" height="15" fill="rgb(237,72,25)" fg:x="3172" fg:w="1744"/><text x="1.3217%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,728 samples, 0.58%)</title><rect x="1.0771%" y="549" width="0.5838%" height="15" fill="rgb(244,70,9)" fg:x="3188" fg:w="1728"/><text x="1.3271%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (34 samples, 0.01%)</title><rect x="1.6798%" y="485" width="0.0115%" height="15" fill="rgb(217,125,39)" fg:x="4972" fg:w="34"/><text x="1.9298%" y="495.50"></text></g><g><title>BlockListBuilder::set_leaders (66 samples, 0.02%)</title><rect x="1.6700%" y="533" width="0.0223%" height="15" fill="rgb(235,36,10)" fg:x="4943" fg:w="66"/><text x="1.9200%" y="543.50"></text></g><g><title>ciMethod::bci_block_start (49 samples, 0.02%)</title><rect x="1.6757%" y="517" width="0.0166%" height="15" fill="rgb(251,123,47)" fg:x="4960" fg:w="49"/><text x="1.9257%" y="527.50"></text></g><g><title>MethodLiveness::compute_liveness (46 samples, 0.02%)</title><rect x="1.6767%" y="501" width="0.0155%" height="15" fill="rgb(221,13,13)" fg:x="4963" fg:w="46"/><text x="1.9267%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (80 samples, 0.03%)</title><rect x="1.6666%" y="549" width="0.0270%" height="15" fill="rgb(238,131,9)" fg:x="4933" fg:w="80"/><text x="1.9166%" y="559.50"></text></g><g><title>GraphBuilder::push_scope (146 samples, 0.05%)</title><rect x="1.6649%" y="565" width="0.0493%" height="15" fill="rgb(211,50,8)" fg:x="4928" fg:w="146"/><text x="1.9149%" y="575.50"></text></g><g><title>MethodData::initialize (34 samples, 0.01%)</title><rect x="1.7352%" y="501" width="0.0115%" height="15" fill="rgb(245,182,24)" fg:x="5136" fg:w="34"/><text x="1.9852%" y="511.50"></text></g><g><title>MethodData::allocate (64 samples, 0.02%)</title><rect x="1.7254%" y="517" width="0.0216%" height="15" fill="rgb(242,14,37)" fg:x="5107" fg:w="64"/><text x="1.9754%" y="527.50"></text></g><g><title>Method::build_interpreter_method_data (66 samples, 0.02%)</title><rect x="1.7254%" y="533" width="0.0223%" height="15" fill="rgb(246,228,12)" fg:x="5107" fg:w="66"/><text x="1.9754%" y="543.50"></text></g><g><title>ciMethodData::load_data (65 samples, 0.02%)</title><rect x="1.7487%" y="533" width="0.0220%" height="15" fill="rgb(213,55,15)" fg:x="5176" fg:w="65"/><text x="1.9987%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (168 samples, 0.06%)</title><rect x="1.7196%" y="565" width="0.0568%" height="15" fill="rgb(209,9,3)" fg:x="5090" fg:w="168"/><text x="1.9696%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (152 samples, 0.05%)</title><rect x="1.7251%" y="549" width="0.0514%" height="15" fill="rgb(230,59,30)" fg:x="5106" fg:w="152"/><text x="1.9751%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (2,134 samples, 0.72%)</title><rect x="1.0565%" y="581" width="0.7210%" height="15" fill="rgb(209,121,21)" fg:x="3127" fg:w="2134"/><text x="1.3065%" y="591.50"></text></g><g><title>GraphBuilder::try_inline (2,156 samples, 0.73%)</title><rect x="1.0517%" y="597" width="0.7284%" height="15" fill="rgb(220,109,13)" fg:x="3113" fg:w="2156"/><text x="1.3017%" y="607.50"></text></g><g><title>LinkResolver::resolve_method (31 samples, 0.01%)</title><rect x="1.8196%" y="533" width="0.0105%" height="15" fill="rgb(232,18,1)" fg:x="5386" fg:w="31"/><text x="2.0696%" y="543.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (37 samples, 0.01%)</title><rect x="1.8183%" y="549" width="0.0125%" height="15" fill="rgb(215,41,42)" fg:x="5382" fg:w="37"/><text x="2.0683%" y="559.50"></text></g><g><title>ciEnv::lookup_method (84 samples, 0.03%)</title><rect x="1.8142%" y="565" width="0.0284%" height="15" fill="rgb(224,123,36)" fg:x="5370" fg:w="84"/><text x="2.0642%" y="575.50"></text></g><g><title>SignatureStream::as_symbol (31 samples, 0.01%)</title><rect x="1.8686%" y="501" width="0.0105%" height="15" fill="rgb(240,125,3)" fg:x="5531" fg:w="31"/><text x="2.1186%" y="511.50"></text></g><g><title>SymbolTable::lookup (31 samples, 0.01%)</title><rect x="1.8686%" y="485" width="0.0105%" height="15" fill="rgb(205,98,50)" fg:x="5531" fg:w="31"/><text x="2.1186%" y="495.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (30 samples, 0.01%)</title><rect x="1.8835%" y="485" width="0.0101%" height="15" fill="rgb(205,185,37)" fg:x="5575" fg:w="30"/><text x="2.1335%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (55 samples, 0.02%)</title><rect x="1.8798%" y="501" width="0.0186%" height="15" fill="rgb(238,207,15)" fg:x="5564" fg:w="55"/><text x="2.1298%" y="511.50"></text></g><g><title>ciMethod::ciMethod (170 samples, 0.06%)</title><rect x="1.8487%" y="533" width="0.0574%" height="15" fill="rgb(213,199,42)" fg:x="5472" fg:w="170"/><text x="2.0987%" y="543.50"></text></g><g><title>ciSignature::ciSignature (137 samples, 0.05%)</title><rect x="1.8599%" y="517" width="0.0463%" height="15" fill="rgb(235,201,11)" fg:x="5505" fg:w="137"/><text x="2.1099%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (194 samples, 0.07%)</title><rect x="1.8426%" y="565" width="0.0655%" height="15" fill="rgb(207,46,11)" fg:x="5454" fg:w="194"/><text x="2.0926%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (179 samples, 0.06%)</title><rect x="1.8477%" y="549" width="0.0605%" height="15" fill="rgb(241,35,35)" fg:x="5469" fg:w="179"/><text x="2.0977%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (320 samples, 0.11%)</title><rect x="1.8034%" y="581" width="0.1081%" height="15" fill="rgb(243,32,47)" fg:x="5338" fg:w="320"/><text x="2.0534%" y="591.50"></text></g><g><title>ciBytecodeStream::get_method (343 samples, 0.12%)</title><rect x="1.7963%" y="597" width="0.1159%" height="15" fill="rgb(247,202,23)" fg:x="5317" fg:w="343"/><text x="2.0463%" y="607.50"></text></g><g><title>Dependencies::find_unique_concrete_method (35 samples, 0.01%)</title><rect x="1.9193%" y="581" width="0.0118%" height="15" fill="rgb(219,102,11)" fg:x="5681" fg:w="35"/><text x="2.1693%" y="591.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (35 samples, 0.01%)</title><rect x="1.9193%" y="565" width="0.0118%" height="15" fill="rgb(243,110,44)" fg:x="5681" fg:w="35"/><text x="2.1693%" y="575.50"></text></g><g><title>ClassHierarchyWalker::is_witness (33 samples, 0.01%)</title><rect x="1.9200%" y="549" width="0.0111%" height="15" fill="rgb(222,74,54)" fg:x="5683" fg:w="33"/><text x="2.1700%" y="559.50"></text></g><g><title>ciMethod::find_monomorphic_target (44 samples, 0.01%)</title><rect x="1.9193%" y="597" width="0.0149%" height="15" fill="rgb(216,99,12)" fg:x="5681" fg:w="44"/><text x="2.1693%" y="607.50"></text></g><g><title>GraphBuilder::invoke (2,720 samples, 0.92%)</title><rect x="1.0186%" y="613" width="0.9189%" height="15" fill="rgb(226,22,26)" fg:x="3015" fg:w="2720"/><text x="1.2686%" y="623.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,190 samples, 1.08%)</title><rect x="0.8852%" y="629" width="1.0777%" height="15" fill="rgb(217,163,10)" fg:x="2620" fg:w="3190"/><text x="1.1352%" y="639.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,249 samples, 1.10%)</title><rect x="0.8689%" y="645" width="1.0977%" height="15" fill="rgb(213,25,53)" fg:x="2572" fg:w="3249"/><text x="1.1189%" y="655.50"></text></g><g><title>GraphBuilder::setup_start_block (36 samples, 0.01%)</title><rect x="1.9673%" y="645" width="0.0122%" height="15" fill="rgb(252,105,26)" fg:x="5823" fg:w="36"/><text x="2.2173%" y="655.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,585 samples, 1.21%)</title><rect x="0.7754%" y="661" width="1.2112%" height="15" fill="rgb(220,39,43)" fg:x="2295" fg:w="3585"/><text x="1.0254%" y="671.50"></text></g><g><title>IR::IR (3,606 samples, 1.22%)</title><rect x="0.7740%" y="677" width="1.2183%" height="15" fill="rgb(229,68,48)" fg:x="2291" fg:w="3606"/><text x="1.0240%" y="687.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (37 samples, 0.01%)</title><rect x="1.9963%" y="645" width="0.0125%" height="15" fill="rgb(252,8,32)" fg:x="5909" fg:w="37"/><text x="2.2463%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (71 samples, 0.02%)</title><rect x="1.9930%" y="661" width="0.0240%" height="15" fill="rgb(223,20,43)" fg:x="5899" fg:w="71"/><text x="2.2430%" y="671.50"></text></g><g><title>IR::compute_code (80 samples, 0.03%)</title><rect x="1.9923%" y="677" width="0.0270%" height="15" fill="rgb(229,81,49)" fg:x="5897" fg:w="80"/><text x="2.2423%" y="687.50"></text></g><g><title>UseCountComputer::block_do (99 samples, 0.03%)</title><rect x="2.0224%" y="645" width="0.0334%" height="15" fill="rgb(236,28,36)" fg:x="5986" fg:w="99"/><text x="2.2724%" y="655.50"></text></g><g><title>ValueStack::values_do (52 samples, 0.02%)</title><rect x="2.0382%" y="629" width="0.0176%" height="15" fill="rgb(249,185,26)" fg:x="6033" fg:w="52"/><text x="2.2882%" y="639.50"></text></g><g><title>BlockList::iterate_backward (102 samples, 0.03%)</title><rect x="2.0217%" y="661" width="0.0345%" height="15" fill="rgb(249,174,33)" fg:x="5984" fg:w="102"/><text x="2.2717%" y="671.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (33 samples, 0.01%)</title><rect x="2.0561%" y="661" width="0.0111%" height="15" fill="rgb(233,201,37)" fg:x="6086" fg:w="33"/><text x="2.3061%" y="671.50"></text></g><g><title>IR::compute_use_counts (146 samples, 0.05%)</title><rect x="2.0193%" y="677" width="0.0493%" height="15" fill="rgb(221,78,26)" fg:x="5977" fg:w="146"/><text x="2.2693%" y="687.50"></text></g><g><title>NullCheckEliminator::iterate_one (175 samples, 0.06%)</title><rect x="2.0774%" y="645" width="0.0591%" height="15" fill="rgb(250,127,30)" fg:x="6149" fg:w="175"/><text x="2.3274%" y="655.50"></text></g><g><title>IR::eliminate_null_checks (208 samples, 0.07%)</title><rect x="2.0686%" y="677" width="0.0703%" height="15" fill="rgb(230,49,44)" fg:x="6123" fg:w="208"/><text x="2.3186%" y="687.50"></text></g><g><title>Optimizer::eliminate_null_checks (207 samples, 0.07%)</title><rect x="2.0690%" y="661" width="0.0699%" height="15" fill="rgb(229,67,23)" fg:x="6124" fg:w="207"/><text x="2.3190%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (30 samples, 0.01%)</title><rect x="2.1467%" y="597" width="0.0101%" height="15" fill="rgb(249,83,47)" fg:x="6354" fg:w="30"/><text x="2.3967%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.01%)</title><rect x="2.1463%" y="613" width="0.0118%" height="15" fill="rgb(215,43,3)" fg:x="6353" fg:w="35"/><text x="2.3963%" y="623.50"></text></g><g><title>IR::optimize_blocks (68 samples, 0.02%)</title><rect x="2.1389%" y="677" width="0.0230%" height="15" fill="rgb(238,154,13)" fg:x="6331" fg:w="68"/><text x="2.3889%" y="687.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (48 samples, 0.02%)</title><rect x="2.1457%" y="661" width="0.0162%" height="15" fill="rgb(219,56,2)" fg:x="6351" fg:w="48"/><text x="2.3957%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.02%)</title><rect x="2.1457%" y="645" width="0.0162%" height="15" fill="rgb(233,0,4)" fg:x="6351" fg:w="48"/><text x="2.3957%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.02%)</title><rect x="2.1457%" y="629" width="0.0162%" height="15" fill="rgb(235,30,7)" fg:x="6351" fg:w="48"/><text x="2.3957%" y="639.50"></text></g><g><title>BlockBegin::insert_block_between (34 samples, 0.01%)</title><rect x="2.1622%" y="661" width="0.0115%" height="15" fill="rgb(250,79,13)" fg:x="6400" fg:w="34"/><text x="2.4122%" y="671.50"></text></g><g><title>IR::split_critical_edges (59 samples, 0.02%)</title><rect x="2.1619%" y="677" width="0.0199%" height="15" fill="rgb(211,146,34)" fg:x="6399" fg:w="59"/><text x="2.4119%" y="687.50"></text></g><g><title>RangeCheckElimination::eliminate (36 samples, 0.01%)</title><rect x="2.1818%" y="677" width="0.0122%" height="15" fill="rgb(228,22,38)" fg:x="6458" fg:w="36"/><text x="2.4318%" y="687.50"></text></g><g><title>Compilation::build_hir (4,581 samples, 1.55%)</title><rect x="0.6483%" y="693" width="1.5477%" height="15" fill="rgb(235,168,5)" fg:x="1919" fg:w="4581"/><text x="0.8983%" y="703.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (45 samples, 0.02%)</title><rect x="2.2534%" y="597" width="0.0152%" height="15" fill="rgb(221,155,16)" fg:x="6670" fg:w="45"/><text x="2.5034%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (99 samples, 0.03%)</title><rect x="2.2497%" y="613" width="0.0334%" height="15" fill="rgb(215,215,53)" fg:x="6659" fg:w="99"/><text x="2.4997%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (100 samples, 0.03%)</title><rect x="2.2497%" y="629" width="0.0338%" height="15" fill="rgb(223,4,10)" fg:x="6659" fg:w="100"/><text x="2.4997%" y="639.50"></text></g><g><title>LIR_Assembler::call (118 samples, 0.04%)</title><rect x="2.2484%" y="645" width="0.0399%" height="15" fill="rgb(234,103,6)" fg:x="6655" fg:w="118"/><text x="2.4984%" y="655.50"></text></g><g><title>LIR_Assembler::emit_call (185 samples, 0.06%)</title><rect x="2.2362%" y="661" width="0.0625%" height="15" fill="rgb(227,97,0)" fg:x="6619" fg:w="185"/><text x="2.4862%" y="671.50"></text></g><g><title>LIR_Assembler::emit_op0 (43 samples, 0.01%)</title><rect x="2.2987%" y="661" width="0.0145%" height="15" fill="rgb(234,150,53)" fg:x="6804" fg:w="43"/><text x="2.5487%" y="671.50"></text></g><g><title>LIR_Assembler::mem2reg (35 samples, 0.01%)</title><rect x="2.3301%" y="645" width="0.0118%" height="15" fill="rgb(228,201,54)" fg:x="6897" fg:w="35"/><text x="2.5801%" y="655.50"></text></g><g><title>LIR_Assembler::emit_op1 (136 samples, 0.05%)</title><rect x="2.3132%" y="661" width="0.0459%" height="15" fill="rgb(222,22,37)" fg:x="6847" fg:w="136"/><text x="2.5632%" y="671.50"></text></g><g><title>LIR_Assembler::emit_profile_call (63 samples, 0.02%)</title><rect x="2.3673%" y="661" width="0.0213%" height="15" fill="rgb(237,53,32)" fg:x="7007" fg:w="63"/><text x="2.6173%" y="671.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (34 samples, 0.01%)</title><rect x="2.4176%" y="661" width="0.0115%" height="15" fill="rgb(233,25,53)" fg:x="7156" fg:w="34"/><text x="2.6676%" y="671.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (34 samples, 0.01%)</title><rect x="2.4176%" y="645" width="0.0115%" height="15" fill="rgb(210,40,34)" fg:x="7156" fg:w="34"/><text x="2.6676%" y="655.50"></text></g><g><title>LIR_Assembler::emit_code (675 samples, 0.23%)</title><rect x="2.2034%" y="677" width="0.2280%" height="15" fill="rgb(241,220,44)" fg:x="6522" fg:w="675"/><text x="2.4534%" y="687.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (42 samples, 0.01%)</title><rect x="2.4359%" y="677" width="0.0142%" height="15" fill="rgb(235,28,35)" fg:x="7210" fg:w="42"/><text x="2.6859%" y="687.50"></text></g><g><title>MacroAssembler::stop (35 samples, 0.01%)</title><rect x="2.4382%" y="661" width="0.0118%" height="15" fill="rgb(210,56,17)" fg:x="7217" fg:w="35"/><text x="2.6882%" y="671.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (40 samples, 0.01%)</title><rect x="2.4629%" y="613" width="0.0135%" height="15" fill="rgb(224,130,29)" fg:x="7290" fg:w="40"/><text x="2.7129%" y="623.50"></text></g><g><title>DebugInformationRecorder::describe_scope (43 samples, 0.01%)</title><rect x="2.4764%" y="613" width="0.0145%" height="15" fill="rgb(235,212,8)" fg:x="7330" fg:w="43"/><text x="2.7264%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (116 samples, 0.04%)</title><rect x="2.4568%" y="629" width="0.0392%" height="15" fill="rgb(223,33,50)" fg:x="7272" fg:w="116"/><text x="2.7068%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (121 samples, 0.04%)</title><rect x="2.4558%" y="645" width="0.0409%" height="15" fill="rgb(219,149,13)" fg:x="7269" fg:w="121"/><text x="2.7058%" y="655.50"></text></g><g><title>CounterOverflowStub::emit_code (151 samples, 0.05%)</title><rect x="2.4538%" y="661" width="0.0510%" height="15" fill="rgb(250,156,29)" fg:x="7263" fg:w="151"/><text x="2.7038%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (50 samples, 0.02%)</title><rect x="2.5133%" y="645" width="0.0169%" height="15" fill="rgb(216,193,19)" fg:x="7439" fg:w="50"/><text x="2.7633%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (50 samples, 0.02%)</title><rect x="2.5133%" y="629" width="0.0169%" height="15" fill="rgb(216,135,14)" fg:x="7439" fg:w="50"/><text x="2.7633%" y="639.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (62 samples, 0.02%)</title><rect x="2.5116%" y="661" width="0.0209%" height="15" fill="rgb(241,47,5)" fg:x="7434" fg:w="62"/><text x="2.7616%" y="671.50"></text></g><g><title>PatchingStub::emit_code (36 samples, 0.01%)</title><rect x="2.5440%" y="661" width="0.0122%" height="15" fill="rgb(233,42,35)" fg:x="7530" fg:w="36"/><text x="2.7940%" y="671.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (346 samples, 0.12%)</title><rect x="2.4501%" y="677" width="0.1169%" height="15" fill="rgb(231,13,6)" fg:x="7252" fg:w="346"/><text x="2.7001%" y="687.50"></text></g><g><title>Compilation::emit_code_body (1,110 samples, 0.38%)</title><rect x="2.1960%" y="693" width="0.3750%" height="15" fill="rgb(207,181,40)" fg:x="6500" fg:w="1110"/><text x="2.4460%" y="703.50"></text></g><g><title>LIRGenerator::block_do_prolog (30 samples, 0.01%)</title><rect x="2.5876%" y="645" width="0.0101%" height="15" fill="rgb(254,173,49)" fg:x="7659" fg:w="30"/><text x="2.8376%" y="655.50"></text></g><g><title>LIRGenerator::increment_event_counter (39 samples, 0.01%)</title><rect x="2.6139%" y="629" width="0.0132%" height="15" fill="rgb(221,1,38)" fg:x="7737" fg:w="39"/><text x="2.8639%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (94 samples, 0.03%)</title><rect x="2.5994%" y="645" width="0.0318%" height="15" fill="rgb(206,124,46)" fg:x="7694" fg:w="94"/><text x="2.8494%" y="655.50"></text></g><g><title>LIRGenerator::move_to_phi (47 samples, 0.02%)</title><rect x="2.6457%" y="613" width="0.0159%" height="15" fill="rgb(249,21,11)" fg:x="7831" fg:w="47"/><text x="2.8957%" y="623.50"></text></g><g><title>PhiResolver::create_node (42 samples, 0.01%)</title><rect x="2.6474%" y="597" width="0.0142%" height="15" fill="rgb(222,201,40)" fg:x="7836" fg:w="42"/><text x="2.8974%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (198 samples, 0.07%)</title><rect x="2.6420%" y="629" width="0.0669%" height="15" fill="rgb(235,61,29)" fg:x="7820" fg:w="198"/><text x="2.8920%" y="639.50"></text></g><g><title>PhiResolverState::reset (134 samples, 0.05%)</title><rect x="2.6636%" y="613" width="0.0453%" height="15" fill="rgb(219,207,3)" fg:x="7884" fg:w="134"/><text x="2.9136%" y="623.50"></text></g><g><title>GrowableArray<ResolveNode*>::grow (33 samples, 0.01%)</title><rect x="2.6977%" y="597" width="0.0111%" height="15" fill="rgb(222,56,46)" fg:x="7985" fg:w="33"/><text x="2.9477%" y="607.50"></text></g><g><title>LIRGenerator::do_Goto (233 samples, 0.08%)</title><rect x="2.6352%" y="645" width="0.0787%" height="15" fill="rgb(239,76,54)" fg:x="7800" fg:w="233"/><text x="2.8852%" y="655.50"></text></g><g><title>LIRGenerator::profile_branch (30 samples, 0.01%)</title><rect x="2.7210%" y="629" width="0.0101%" height="15" fill="rgb(231,124,27)" fg:x="8054" fg:w="30"/><text x="2.9710%" y="639.50"></text></g><g><title>LIRGenerator::do_If (69 samples, 0.02%)</title><rect x="2.7139%" y="645" width="0.0233%" height="15" fill="rgb(249,195,6)" fg:x="8033" fg:w="69"/><text x="2.9639%" y="655.50"></text></g><g><title>MethodLiveness::get_liveness_at (40 samples, 0.01%)</title><rect x="2.7690%" y="597" width="0.0135%" height="15" fill="rgb(237,174,47)" fg:x="8196" fg:w="40"/><text x="3.0190%" y="607.50"></text></g><g><title>LIRGenerator::state_for (58 samples, 0.02%)</title><rect x="2.7633%" y="629" width="0.0196%" height="15" fill="rgb(206,201,31)" fg:x="8179" fg:w="58"/><text x="3.0133%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (46 samples, 0.02%)</title><rect x="2.7673%" y="613" width="0.0155%" height="15" fill="rgb(231,57,52)" fg:x="8191" fg:w="46"/><text x="3.0173%" y="623.50"></text></g><g><title>LIRGenerator::do_Invoke (136 samples, 0.05%)</title><rect x="2.7389%" y="645" width="0.0459%" height="15" fill="rgb(248,177,22)" fg:x="8107" fg:w="136"/><text x="2.9889%" y="655.50"></text></g><g><title>LIRGenerator::state_for (30 samples, 0.01%)</title><rect x="2.8008%" y="629" width="0.0101%" height="15" fill="rgb(215,211,37)" fg:x="8290" fg:w="30"/><text x="3.0508%" y="639.50"></text></g><g><title>LIRGenerator::do_NewInstance (42 samples, 0.01%)</title><rect x="2.7970%" y="645" width="0.0142%" height="15" fill="rgb(241,128,51)" fg:x="8279" fg:w="42"/><text x="3.0470%" y="655.50"></text></g><g><title>LIRGenerator::do_ProfileCall (30 samples, 0.01%)</title><rect x="2.8187%" y="645" width="0.0101%" height="15" fill="rgb(227,165,31)" fg:x="8343" fg:w="30"/><text x="3.0687%" y="655.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (32 samples, 0.01%)</title><rect x="2.8288%" y="629" width="0.0108%" height="15" fill="rgb(228,167,24)" fg:x="8373" fg:w="32"/><text x="3.0788%" y="639.50"></text></g><g><title>LIRGenerator::state_for (70 samples, 0.02%)</title><rect x="2.8396%" y="629" width="0.0236%" height="15" fill="rgb(228,143,12)" fg:x="8405" fg:w="70"/><text x="3.0896%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (45 samples, 0.02%)</title><rect x="2.8481%" y="613" width="0.0152%" height="15" fill="rgb(249,149,8)" fg:x="8430" fg:w="45"/><text x="3.0981%" y="623.50"></text></g><g><title>MethodLiveness::get_liveness_at (43 samples, 0.01%)</title><rect x="2.8487%" y="597" width="0.0145%" height="15" fill="rgb(243,35,44)" fg:x="8432" fg:w="43"/><text x="3.0987%" y="607.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (112 samples, 0.04%)</title><rect x="2.8288%" y="645" width="0.0378%" height="15" fill="rgb(246,89,9)" fg:x="8373" fg:w="112"/><text x="3.0788%" y="655.50"></text></g><g><title>LIRGenerator::do_StoreField (30 samples, 0.01%)</title><rect x="2.8720%" y="645" width="0.0101%" height="15" fill="rgb(233,213,13)" fg:x="8501" fg:w="30"/><text x="3.1220%" y="655.50"></text></g><g><title>LIRGenerator::block_do (933 samples, 0.32%)</title><rect x="2.5764%" y="661" width="0.3152%" height="15" fill="rgb(233,141,41)" fg:x="7626" fg:w="933"/><text x="2.8264%" y="671.50"></text></g><g><title>BlockList::iterate_forward (942 samples, 0.32%)</title><rect x="2.5737%" y="677" width="0.3183%" height="15" fill="rgb(239,167,4)" fg:x="7618" fg:w="942"/><text x="2.8237%" y="687.50"></text></g><g><title>ControlFlowOptimizer::optimize (30 samples, 0.01%)</title><rect x="2.8920%" y="677" width="0.0101%" height="15" fill="rgb(209,217,16)" fg:x="8560" fg:w="30"/><text x="3.1420%" y="687.50"></text></g><g><title>IntervalWalker::walk_to (135 samples, 0.05%)</title><rect x="2.9356%" y="629" width="0.0456%" height="15" fill="rgb(219,88,35)" fg:x="8689" fg:w="135"/><text x="3.1856%" y="639.50"></text></g><g><title>LinearScanWalker::find_free_reg (95 samples, 0.03%)</title><rect x="3.0261%" y="597" width="0.0321%" height="15" fill="rgb(220,193,23)" fg:x="8957" fg:w="95"/><text x="3.2761%" y="607.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (156 samples, 0.05%)</title><rect x="3.0653%" y="597" width="0.0527%" height="15" fill="rgb(230,90,52)" fg:x="9073" fg:w="156"/><text x="3.3153%" y="607.50"></text></g><g><title>Interval::new_split_child (35 samples, 0.01%)</title><rect x="3.1285%" y="565" width="0.0118%" height="15" fill="rgb(252,106,19)" fg:x="9260" fg:w="35"/><text x="3.3785%" y="575.50"></text></g><g><title>Interval::split (56 samples, 0.02%)</title><rect x="3.1231%" y="581" width="0.0189%" height="15" fill="rgb(206,74,20)" fg:x="9244" fg:w="56"/><text x="3.3731%" y="591.50"></text></g><g><title>LinearScanWalker::split_before_usage (80 samples, 0.03%)</title><rect x="3.1180%" y="597" width="0.0270%" height="15" fill="rgb(230,138,44)" fg:x="9229" fg:w="80"/><text x="3.3680%" y="607.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (455 samples, 0.15%)</title><rect x="2.9930%" y="613" width="0.1537%" height="15" fill="rgb(235,182,43)" fg:x="8859" fg:w="455"/><text x="3.2430%" y="623.50"></text></g><g><title>IntervalWalker::append_to_unhandled (36 samples, 0.01%)</title><rect x="3.1650%" y="581" width="0.0122%" height="15" fill="rgb(242,16,51)" fg:x="9368" fg:w="36"/><text x="3.4150%" y="591.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (75 samples, 0.03%)</title><rect x="3.1646%" y="597" width="0.0253%" height="15" fill="rgb(248,9,4)" fg:x="9367" fg:w="75"/><text x="3.4146%" y="607.50"></text></g><g><title>LinearScanWalker::split_before_usage (38 samples, 0.01%)</title><rect x="3.1771%" y="581" width="0.0128%" height="15" fill="rgb(210,31,22)" fg:x="9404" fg:w="38"/><text x="3.4271%" y="591.50"></text></g><g><title>Interval::split_child_before_op_id (30 samples, 0.01%)</title><rect x="3.1917%" y="581" width="0.0101%" height="15" fill="rgb(239,54,39)" fg:x="9447" fg:w="30"/><text x="3.4417%" y="591.50"></text></g><g><title>LinearScanWalker::split_for_spilling (40 samples, 0.01%)</title><rect x="3.1900%" y="597" width="0.0135%" height="15" fill="rgb(230,99,41)" fg:x="9442" fg:w="40"/><text x="3.4400%" y="607.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (169 samples, 0.06%)</title><rect x="3.1467%" y="613" width="0.0571%" height="15" fill="rgb(253,106,12)" fg:x="9314" fg:w="169"/><text x="3.3967%" y="623.50"></text></g><g><title>LinearScanWalker::insert_move (31 samples, 0.01%)</title><rect x="3.2139%" y="613" width="0.0105%" height="15" fill="rgb(213,46,41)" fg:x="9513" fg:w="31"/><text x="3.4639%" y="623.50"></text></g><g><title>LinearScanWalker::activate_current (728 samples, 0.25%)</title><rect x="2.9812%" y="629" width="0.2460%" height="15" fill="rgb(215,133,35)" fg:x="8824" fg:w="728"/><text x="3.2312%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (915 samples, 0.31%)</title><rect x="2.9183%" y="645" width="0.3091%" height="15" fill="rgb(213,28,5)" fg:x="8638" fg:w="915"/><text x="3.1683%" y="655.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (49 samples, 0.02%)</title><rect x="3.2285%" y="645" width="0.0166%" height="15" fill="rgb(215,77,49)" fg:x="9556" fg:w="49"/><text x="3.4785%" y="655.50"></text></g><g><title>resource_allocate_bytes (35 samples, 0.01%)</title><rect x="3.2332%" y="629" width="0.0118%" height="15" fill="rgb(248,100,22)" fg:x="9570" fg:w="35"/><text x="3.4832%" y="639.50"></text></g><g><title>LinearScan::allocate_registers (985 samples, 0.33%)</title><rect x="2.9136%" y="661" width="0.3328%" height="15" fill="rgb(208,67,9)" fg:x="8624" fg:w="985"/><text x="3.1636%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (74 samples, 0.03%)</title><rect x="3.2933%" y="629" width="0.0250%" height="15" fill="rgb(219,133,21)" fg:x="9748" fg:w="74"/><text x="3.5433%" y="639.50"></text></g><g><title>LIR_OpVisitState::append (30 samples, 0.01%)</title><rect x="3.3082%" y="613" width="0.0101%" height="15" fill="rgb(246,46,29)" fg:x="9792" fg:w="30"/><text x="3.5582%" y="623.50"></text></g><g><title>LinearScan::color_lir_opr (66 samples, 0.02%)</title><rect x="3.3190%" y="629" width="0.0223%" height="15" fill="rgb(246,185,52)" fg:x="9824" fg:w="66"/><text x="3.5690%" y="639.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (37 samples, 0.01%)</title><rect x="3.3734%" y="597" width="0.0125%" height="15" fill="rgb(252,136,11)" fg:x="9985" fg:w="37"/><text x="3.6234%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (91 samples, 0.03%)</title><rect x="3.3613%" y="613" width="0.0307%" height="15" fill="rgb(219,138,53)" fg:x="9949" fg:w="91"/><text x="3.6113%" y="623.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (170 samples, 0.06%)</title><rect x="3.3413%" y="629" width="0.0574%" height="15" fill="rgb(211,51,23)" fg:x="9890" fg:w="170"/><text x="3.5913%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (84 samples, 0.03%)</title><rect x="3.4163%" y="597" width="0.0284%" height="15" fill="rgb(247,221,28)" fg:x="10112" fg:w="84"/><text x="3.6663%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (172 samples, 0.06%)</title><rect x="3.4058%" y="613" width="0.0581%" height="15" fill="rgb(251,222,45)" fg:x="10081" fg:w="172"/><text x="3.6558%" y="623.50"></text></g><g><title>LinearScan::compute_oop_map (194 samples, 0.07%)</title><rect x="3.3988%" y="629" width="0.0655%" height="15" fill="rgb(217,162,53)" fg:x="10060" fg:w="194"/><text x="3.6488%" y="639.50"></text></g><g><title>LinearScan::assign_reg_num (639 samples, 0.22%)</title><rect x="3.2487%" y="645" width="0.2159%" height="15" fill="rgb(229,93,14)" fg:x="9616" fg:w="639"/><text x="3.4987%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (669 samples, 0.23%)</title><rect x="3.2464%" y="661" width="0.2260%" height="15" fill="rgb(209,67,49)" fg:x="9609" fg:w="669"/><text x="3.4964%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (77 samples, 0.03%)</title><rect x="3.5633%" y="645" width="0.0260%" height="15" fill="rgb(213,87,29)" fg:x="10547" fg:w="77"/><text x="3.8133%" y="655.50"></text></g><g><title>LinearScan::add_def (61 samples, 0.02%)</title><rect x="3.5893%" y="645" width="0.0206%" height="15" fill="rgb(205,151,52)" fg:x="10624" fg:w="61"/><text x="3.8393%" y="655.50"></text></g><g><title>Interval::add_range (35 samples, 0.01%)</title><rect x="3.6187%" y="629" width="0.0118%" height="15" fill="rgb(253,215,39)" fg:x="10711" fg:w="35"/><text x="3.8687%" y="639.50"></text></g><g><title>Interval::Interval (49 samples, 0.02%)</title><rect x="3.6336%" y="613" width="0.0166%" height="15" fill="rgb(221,220,41)" fg:x="10755" fg:w="49"/><text x="3.8836%" y="623.50"></text></g><g><title>LinearScan::add_temp (104 samples, 0.04%)</title><rect x="3.6160%" y="645" width="0.0351%" height="15" fill="rgb(218,133,21)" fg:x="10703" fg:w="104"/><text x="3.8660%" y="655.50"></text></g><g><title>LinearScan::create_interval (61 samples, 0.02%)</title><rect x="3.6305%" y="629" width="0.0206%" height="15" fill="rgb(221,193,43)" fg:x="10746" fg:w="61"/><text x="3.8805%" y="639.50"></text></g><g><title>Interval::add_range (44 samples, 0.01%)</title><rect x="3.6704%" y="629" width="0.0149%" height="15" fill="rgb(240,128,52)" fg:x="10864" fg:w="44"/><text x="3.9204%" y="639.50"></text></g><g><title>Interval::Interval (54 samples, 0.02%)</title><rect x="3.6900%" y="613" width="0.0182%" height="15" fill="rgb(253,114,12)" fg:x="10922" fg:w="54"/><text x="3.9400%" y="623.50"></text></g><g><title>LinearScan::add_use (176 samples, 0.06%)</title><rect x="3.6511%" y="645" width="0.0595%" height="15" fill="rgb(215,223,47)" fg:x="10807" fg:w="176"/><text x="3.9011%" y="655.50"></text></g><g><title>LinearScan::create_interval (74 samples, 0.03%)</title><rect x="3.6856%" y="629" width="0.0250%" height="15" fill="rgb(248,225,23)" fg:x="10909" fg:w="74"/><text x="3.9356%" y="639.50"></text></g><g><title>LinearScan::build_intervals (769 samples, 0.26%)</title><rect x="3.4724%" y="661" width="0.2598%" height="15" fill="rgb(250,108,0)" fg:x="10278" fg:w="769"/><text x="3.7224%" y="671.50"></text></g><g><title>LinearScan::compute_global_live_sets (61 samples, 0.02%)</title><rect x="3.7322%" y="661" width="0.0206%" height="15" fill="rgb(228,208,7)" fg:x="11047" fg:w="61"/><text x="3.9822%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (94 samples, 0.03%)</title><rect x="3.7947%" y="645" width="0.0318%" height="15" fill="rgb(244,45,10)" fg:x="11232" fg:w="94"/><text x="4.0447%" y="655.50"></text></g><g><title>LinearScan::compute_local_live_sets (262 samples, 0.09%)</title><rect x="3.7528%" y="661" width="0.0885%" height="15" fill="rgb(207,125,25)" fg:x="11108" fg:w="262"/><text x="4.0028%" y="671.50"></text></g><g><title>LinearScan::eliminate_spill_moves (83 samples, 0.03%)</title><rect x="3.8413%" y="661" width="0.0280%" height="15" fill="rgb(210,195,18)" fg:x="11370" fg:w="83"/><text x="4.0913%" y="671.50"></text></g><g><title>LinearScan::number_instructions (47 samples, 0.02%)</title><rect x="3.8694%" y="661" width="0.0159%" height="15" fill="rgb(249,80,12)" fg:x="11453" fg:w="47"/><text x="4.1194%" y="671.50"></text></g><g><title>LinearScan::resolve_collect_mappings (77 samples, 0.03%)</title><rect x="3.8988%" y="645" width="0.0260%" height="15" fill="rgb(221,65,9)" fg:x="11540" fg:w="77"/><text x="4.1488%" y="655.50"></text></g><g><title>Interval::split_child_at_op_id (36 samples, 0.01%)</title><rect x="3.9126%" y="629" width="0.0122%" height="15" fill="rgb(235,49,36)" fg:x="11581" fg:w="36"/><text x="4.1626%" y="639.50"></text></g><g><title>LinearScan::resolve_data_flow (143 samples, 0.05%)</title><rect x="3.8873%" y="661" width="0.0483%" height="15" fill="rgb(225,32,20)" fg:x="11506" fg:w="143"/><text x="4.1373%" y="671.50"></text></g><g><title>LinearScan::resolve_exception_handlers (47 samples, 0.02%)</title><rect x="3.9356%" y="661" width="0.0159%" height="15" fill="rgb(215,141,46)" fg:x="11649" fg:w="47"/><text x="4.1856%" y="671.50"></text></g><g><title>__GI___qsort_r (32 samples, 0.01%)</title><rect x="3.9582%" y="645" width="0.0108%" height="15" fill="rgb(250,160,47)" fg:x="11716" fg:w="32"/><text x="4.2082%" y="655.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (53 samples, 0.02%)</title><rect x="3.9515%" y="661" width="0.0179%" height="15" fill="rgb(216,222,40)" fg:x="11696" fg:w="53"/><text x="4.2015%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (46 samples, 0.02%)</title><rect x="3.9694%" y="661" width="0.0155%" height="15" fill="rgb(234,217,39)" fg:x="11749" fg:w="46"/><text x="4.2194%" y="671.50"></text></g><g><title>LinearScan::do_linear_scan (3,200 samples, 1.08%)</title><rect x="2.9045%" y="677" width="1.0811%" height="15" fill="rgb(207,178,40)" fg:x="8597" fg:w="3200"/><text x="3.1545%" y="687.50"></text></g><g><title>Compilation::emit_lir (4,192 samples, 1.42%)</title><rect x="2.5710%" y="693" width="1.4163%" height="15" fill="rgb(221,136,13)" fg:x="7610" fg:w="4192"/><text x="2.8210%" y="703.50"></text></g><g><title>MethodData::initialize (33 samples, 0.01%)</title><rect x="4.0055%" y="629" width="0.0111%" height="15" fill="rgb(249,199,10)" fg:x="11856" fg:w="33"/><text x="4.2555%" y="639.50"></text></g><g><title>Method::build_interpreter_method_data (57 samples, 0.02%)</title><rect x="3.9978%" y="661" width="0.0193%" height="15" fill="rgb(249,222,13)" fg:x="11833" fg:w="57"/><text x="4.2478%" y="671.50"></text></g><g><title>MethodData::allocate (57 samples, 0.02%)</title><rect x="3.9978%" y="645" width="0.0193%" height="15" fill="rgb(244,185,38)" fg:x="11833" fg:w="57"/><text x="4.2478%" y="655.50"></text></g><g><title>ciMethodData::load_data (39 samples, 0.01%)</title><rect x="4.0174%" y="661" width="0.0132%" height="15" fill="rgb(236,202,9)" fg:x="11891" fg:w="39"/><text x="4.2674%" y="671.50"></text></g><g><title>Compilation::compile_java_method (10,028 samples, 3.39%)</title><rect x="0.6453%" y="709" width="3.3879%" height="15" fill="rgb(250,229,37)" fg:x="1910" fg:w="10028"/><text x="0.8953%" y="719.50">Com..</text></g><g><title>ciMethod::ensure_method_data (106 samples, 0.04%)</title><rect x="3.9974%" y="693" width="0.0358%" height="15" fill="rgb(206,174,23)" fg:x="11832" fg:w="106"/><text x="4.2474%" y="703.50"></text></g><g><title>ciMethod::ensure_method_data (105 samples, 0.04%)</title><rect x="3.9978%" y="677" width="0.0355%" height="15" fill="rgb(211,33,43)" fg:x="11833" fg:w="105"/><text x="4.2478%" y="687.50"></text></g><g><title>Compilation::initialize (40 samples, 0.01%)</title><rect x="4.0332%" y="709" width="0.0135%" height="15" fill="rgb(245,58,50)" fg:x="11938" fg:w="40"/><text x="4.2832%" y="719.50"></text></g><g><title>CodeBuffer::finalize_oop_references (82 samples, 0.03%)</title><rect x="4.0697%" y="677" width="0.0277%" height="15" fill="rgb(244,68,36)" fg:x="12046" fg:w="82"/><text x="4.3197%" y="687.50"></text></g><g><title>CodeHeap::allocate (53 samples, 0.02%)</title><rect x="4.0978%" y="661" width="0.0179%" height="15" fill="rgb(232,229,15)" fg:x="12129" fg:w="53"/><text x="4.3478%" y="671.50"></text></g><g><title>CodeCache::allocate (69 samples, 0.02%)</title><rect x="4.0974%" y="677" width="0.0233%" height="15" fill="rgb(254,30,23)" fg:x="12128" fg:w="69"/><text x="4.3474%" y="687.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (37 samples, 0.01%)</title><rect x="4.1474%" y="629" width="0.0125%" height="15" fill="rgb(235,160,14)" fg:x="12276" fg:w="37"/><text x="4.3974%" y="639.50"></text></g><g><title>Relocation::pd_call_destination (32 samples, 0.01%)</title><rect x="4.1491%" y="613" width="0.0108%" height="15" fill="rgb(212,155,44)" fg:x="12281" fg:w="32"/><text x="4.3991%" y="623.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (38 samples, 0.01%)</title><rect x="4.1711%" y="629" width="0.0128%" height="15" fill="rgb(226,2,50)" fg:x="12346" fg:w="38"/><text x="4.4211%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (129 samples, 0.04%)</title><rect x="4.1410%" y="645" width="0.0436%" height="15" fill="rgb(234,177,6)" fg:x="12257" fg:w="129"/><text x="4.3910%" y="655.50"></text></g><g><title>CodeBuffer::copy_code_to (145 samples, 0.05%)</title><rect x="4.1403%" y="661" width="0.0490%" height="15" fill="rgb(217,24,9)" fg:x="12255" fg:w="145"/><text x="4.3903%" y="671.50"></text></g><g><title>CodeBlob::CodeBlob (32 samples, 0.01%)</title><rect x="4.1920%" y="645" width="0.0108%" height="15" fill="rgb(220,13,46)" fg:x="12408" fg:w="32"/><text x="4.4420%" y="655.50"></text></g><g><title>ImmutableOopMapSet::build_from (32 samples, 0.01%)</title><rect x="4.1920%" y="629" width="0.0108%" height="15" fill="rgb(239,221,27)" fg:x="12408" fg:w="32"/><text x="4.4420%" y="639.50"></text></g><g><title>CompiledMethod::CompiledMethod (34 samples, 0.01%)</title><rect x="4.1917%" y="661" width="0.0115%" height="15" fill="rgb(222,198,25)" fg:x="12407" fg:w="34"/><text x="4.4417%" y="671.50"></text></g><g><title>G1CodeRootSet::add (31 samples, 0.01%)</title><rect x="4.2120%" y="629" width="0.0105%" height="15" fill="rgb(211,99,13)" fg:x="12467" fg:w="31"/><text x="4.4620%" y="639.50"></text></g><g><title>G1CollectedHeap::register_nmethod (52 samples, 0.02%)</title><rect x="4.2062%" y="661" width="0.0176%" height="15" fill="rgb(232,111,31)" fg:x="12450" fg:w="52"/><text x="4.4562%" y="671.50"></text></g><g><title>nmethod::oops_do (50 samples, 0.02%)</title><rect x="4.2069%" y="645" width="0.0169%" height="15" fill="rgb(245,82,37)" fg:x="12452" fg:w="50"/><text x="4.4569%" y="655.50"></text></g><g><title>nmethod::new_nmethod (502 samples, 0.17%)</title><rect x="4.0674%" y="693" width="0.1696%" height="15" fill="rgb(227,149,46)" fg:x="12039" fg:w="502"/><text x="4.3174%" y="703.50"></text></g><g><title>nmethod::nmethod (290 samples, 0.10%)</title><rect x="4.1390%" y="677" width="0.0980%" height="15" fill="rgb(218,36,50)" fg:x="12251" fg:w="290"/><text x="4.3890%" y="687.50"></text></g><g><title>ciEnv::register_method (560 samples, 0.19%)</title><rect x="4.0484%" y="709" width="0.1892%" height="15" fill="rgb(226,80,48)" fg:x="11983" fg:w="560"/><text x="4.2984%" y="719.50"></text></g><g><title>Compilation::compile_method (10,638 samples, 3.59%)</title><rect x="0.6446%" y="725" width="3.5940%" height="15" fill="rgb(238,224,15)" fg:x="1908" fg:w="10638"/><text x="0.8946%" y="735.50">Comp..</text></g><g><title>Compiler::compile_method (10,672 samples, 3.61%)</title><rect x="0.6375%" y="757" width="3.6055%" height="15" fill="rgb(241,136,10)" fg:x="1887" fg:w="10672"/><text x="0.8875%" y="767.50">Comp..</text></g><g><title>Compilation::Compilation (10,656 samples, 3.60%)</title><rect x="0.6429%" y="741" width="3.6001%" height="15" fill="rgb(208,32,45)" fg:x="1903" fg:w="10656"/><text x="0.8929%" y="751.50">Comp..</text></g><g><title>ciObjectFactory::ciObjectFactory (40 samples, 0.01%)</title><rect x="4.2620%" y="741" width="0.0135%" height="15" fill="rgb(207,135,9)" fg:x="12615" fg:w="40"/><text x="4.5120%" y="751.50"></text></g><g><title>ciObjectFactory::get (65 samples, 0.02%)</title><rect x="4.2755%" y="741" width="0.0220%" height="15" fill="rgb(206,86,44)" fg:x="12655" fg:w="65"/><text x="4.5255%" y="751.50"></text></g><g><title>ciObjectFactory::get_metadata (49 samples, 0.02%)</title><rect x="4.2809%" y="725" width="0.0166%" height="15" fill="rgb(245,177,15)" fg:x="12671" fg:w="49"/><text x="4.5309%" y="735.50"></text></g><g><title>ciObjectFactory::create_new_metadata (45 samples, 0.02%)</title><rect x="4.2822%" y="709" width="0.0152%" height="15" fill="rgb(206,64,50)" fg:x="12675" fg:w="45"/><text x="4.5322%" y="719.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (40 samples, 0.01%)</title><rect x="4.2839%" y="693" width="0.0135%" height="15" fill="rgb(234,36,40)" fg:x="12680" fg:w="40"/><text x="4.5339%" y="703.50"></text></g><g><title>ciEnv::ciEnv (118 samples, 0.04%)</title><rect x="4.2579%" y="757" width="0.0399%" height="15" fill="rgb(213,64,8)" fg:x="12603" fg:w="118"/><text x="4.5079%" y="767.50"></text></g><g><title>SignatureStream::as_symbol (34 samples, 0.01%)</title><rect x="4.3089%" y="677" width="0.0115%" height="15" fill="rgb(210,75,36)" fg:x="12754" fg:w="34"/><text x="4.5589%" y="687.50"></text></g><g><title>SymbolTable::lookup (34 samples, 0.01%)</title><rect x="4.3089%" y="661" width="0.0115%" height="15" fill="rgb(229,88,21)" fg:x="12754" fg:w="34"/><text x="4.5589%" y="671.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (45 samples, 0.02%)</title><rect x="4.3218%" y="677" width="0.0152%" height="15" fill="rgb(252,204,47)" fg:x="12792" fg:w="45"/><text x="4.5718%" y="687.50"></text></g><g><title>ciSignature::ciSignature (107 samples, 0.04%)</title><rect x="4.3042%" y="693" width="0.0361%" height="15" fill="rgb(208,77,27)" fg:x="12740" fg:w="107"/><text x="4.5542%" y="703.50"></text></g><g><title>ciMethod::ciMethod (122 samples, 0.04%)</title><rect x="4.2995%" y="709" width="0.0412%" height="15" fill="rgb(221,76,26)" fg:x="12726" fg:w="122"/><text x="4.5495%" y="719.50"></text></g><g><title>ciEnv::get_method_from_handle (141 samples, 0.05%)</title><rect x="4.2978%" y="757" width="0.0476%" height="15" fill="rgb(225,139,18)" fg:x="12721" fg:w="141"/><text x="4.5478%" y="767.50"></text></g><g><title>ciObjectFactory::get_metadata (141 samples, 0.05%)</title><rect x="4.2978%" y="741" width="0.0476%" height="15" fill="rgb(230,137,11)" fg:x="12721" fg:w="141"/><text x="4.5478%" y="751.50"></text></g><g><title>ciObjectFactory::create_new_metadata (141 samples, 0.05%)</title><rect x="4.2978%" y="725" width="0.0476%" height="15" fill="rgb(212,28,1)" fg:x="12721" fg:w="141"/><text x="4.5478%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,253 samples, 3.80%)</title><rect x="0.5537%" y="773" width="3.8018%" height="15" fill="rgb(248,164,17)" fg:x="1639" fg:w="11253"/><text x="0.8037%" y="783.50">Comp..</text></g><g><title>ciEnv::~ciEnv (30 samples, 0.01%)</title><rect x="4.3454%" y="757" width="0.0101%" height="15" fill="rgb(222,171,42)" fg:x="12862" fg:w="30"/><text x="4.5954%" y="767.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="4.3623%" y="709" width="0.0105%" height="15" fill="rgb(243,84,45)" fg:x="12912" fg:w="31"/><text x="4.6123%" y="719.50"></text></g><g><title>__sysinfo (36 samples, 0.01%)</title><rect x="4.3620%" y="741" width="0.0122%" height="15" fill="rgb(252,49,23)" fg:x="12911" fg:w="36"/><text x="4.6120%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="4.3623%" y="725" width="0.0118%" height="15" fill="rgb(215,19,7)" fg:x="12912" fg:w="35"/><text x="4.6123%" y="735.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (56 samples, 0.02%)</title><rect x="4.3555%" y="773" width="0.0189%" height="15" fill="rgb(238,81,41)" fg:x="12892" fg:w="56"/><text x="4.6055%" y="783.50"></text></g><g><title>os::available_memory (39 samples, 0.01%)</title><rect x="4.3613%" y="757" width="0.0132%" height="15" fill="rgb(210,199,37)" fg:x="12909" fg:w="39"/><text x="4.6113%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (276 samples, 0.09%)</title><rect x="4.4025%" y="517" width="0.0932%" height="15" fill="rgb(244,192,49)" fg:x="13031" fg:w="276"/><text x="4.6525%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (270 samples, 0.09%)</title><rect x="4.4045%" y="501" width="0.0912%" height="15" fill="rgb(226,211,11)" fg:x="13037" fg:w="270"/><text x="4.6545%" y="511.50"></text></g><g><title>native_write_msr (268 samples, 0.09%)</title><rect x="4.4052%" y="485" width="0.0905%" height="15" fill="rgb(236,162,54)" fg:x="13039" fg:w="268"/><text x="4.6552%" y="495.50"></text></g><g><title>finish_task_switch (288 samples, 0.10%)</title><rect x="4.4005%" y="533" width="0.0973%" height="15" fill="rgb(220,229,9)" fg:x="13025" fg:w="288"/><text x="4.6505%" y="543.50"></text></g><g><title>futex_wait_queue_me (324 samples, 0.11%)</title><rect x="4.3913%" y="581" width="0.1095%" height="15" fill="rgb(250,87,22)" fg:x="12998" fg:w="324"/><text x="4.6413%" y="591.50"></text></g><g><title>schedule (313 samples, 0.11%)</title><rect x="4.3951%" y="565" width="0.1057%" height="15" fill="rgb(239,43,17)" fg:x="13009" fg:w="313"/><text x="4.6451%" y="575.50"></text></g><g><title>__schedule (313 samples, 0.11%)</title><rect x="4.3951%" y="549" width="0.1057%" height="15" fill="rgb(231,177,25)" fg:x="13009" fg:w="313"/><text x="4.6451%" y="559.50"></text></g><g><title>do_syscall_64 (342 samples, 0.12%)</title><rect x="4.3883%" y="645" width="0.1155%" height="15" fill="rgb(219,179,1)" fg:x="12989" fg:w="342"/><text x="4.6383%" y="655.50"></text></g><g><title>__x64_sys_futex (341 samples, 0.12%)</title><rect x="4.3886%" y="629" width="0.1152%" height="15" fill="rgb(238,219,53)" fg:x="12990" fg:w="341"/><text x="4.6386%" y="639.50"></text></g><g><title>do_futex (340 samples, 0.11%)</title><rect x="4.3890%" y="613" width="0.1149%" height="15" fill="rgb(232,167,36)" fg:x="12991" fg:w="340"/><text x="4.6390%" y="623.50"></text></g><g><title>futex_wait (338 samples, 0.11%)</title><rect x="4.3897%" y="597" width="0.1142%" height="15" fill="rgb(244,19,51)" fg:x="12993" fg:w="338"/><text x="4.6397%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (345 samples, 0.12%)</title><rect x="4.3883%" y="661" width="0.1166%" height="15" fill="rgb(224,6,22)" fg:x="12989" fg:w="345"/><text x="4.6383%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (350 samples, 0.12%)</title><rect x="4.3870%" y="709" width="0.1182%" height="15" fill="rgb(224,145,5)" fg:x="12985" fg:w="350"/><text x="4.6370%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (350 samples, 0.12%)</title><rect x="4.3870%" y="693" width="0.1182%" height="15" fill="rgb(234,130,49)" fg:x="12985" fg:w="350"/><text x="4.6370%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (348 samples, 0.12%)</title><rect x="4.3876%" y="677" width="0.1176%" height="15" fill="rgb(254,6,2)" fg:x="12987" fg:w="348"/><text x="4.6376%" y="687.50"></text></g><g><title>Monitor::IWait (359 samples, 0.12%)</title><rect x="4.3863%" y="741" width="0.1213%" height="15" fill="rgb(208,96,46)" fg:x="12983" fg:w="359"/><text x="4.6363%" y="751.50"></text></g><g><title>os::PlatformEvent::park (359 samples, 0.12%)</title><rect x="4.3863%" y="725" width="0.1213%" height="15" fill="rgb(239,3,39)" fg:x="12983" fg:w="359"/><text x="4.6363%" y="735.50"></text></g><g><title>Monitor::wait (372 samples, 0.13%)</title><rect x="4.3853%" y="757" width="0.1257%" height="15" fill="rgb(233,210,1)" fg:x="12980" fg:w="372"/><text x="4.6353%" y="767.50"></text></g><g><title>TieredThresholdPolicy::select_task (72 samples, 0.02%)</title><rect x="4.5109%" y="757" width="0.0243%" height="15" fill="rgb(244,137,37)" fg:x="13352" fg:w="72"/><text x="4.7609%" y="767.50"></text></g><g><title>CompileQueue::get (486 samples, 0.16%)</title><rect x="4.3745%" y="773" width="0.1642%" height="15" fill="rgb(240,136,2)" fg:x="12948" fg:w="486"/><text x="4.6245%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,814 samples, 3.99%)</title><rect x="0.5520%" y="789" width="3.9913%" height="15" fill="rgb(239,18,37)" fg:x="1634" fg:w="11814"/><text x="0.8020%" y="799.50">Comp..</text></g><g><title>__GI___clone (11,818 samples, 3.99%)</title><rect x="0.5514%" y="869" width="3.9927%" height="15" fill="rgb(218,185,22)" fg:x="1632" fg:w="11818"/><text x="0.8014%" y="879.50">__GI..</text></g><g><title>start_thread (11,816 samples, 3.99%)</title><rect x="0.5520%" y="853" width="3.9920%" height="15" fill="rgb(225,218,4)" fg:x="1634" fg:w="11816"/><text x="0.8020%" y="863.50">star..</text></g><g><title>thread_native_entry (11,816 samples, 3.99%)</title><rect x="0.5520%" y="837" width="3.9920%" height="15" fill="rgb(230,182,32)" fg:x="1634" fg:w="11816"/><text x="0.8020%" y="847.50">thre..</text></g><g><title>Thread::call_run (11,816 samples, 3.99%)</title><rect x="0.5520%" y="821" width="3.9920%" height="15" fill="rgb(242,56,43)" fg:x="1634" fg:w="11816"/><text x="0.8020%" y="831.50">Thre..</text></g><g><title>JavaThread::thread_main_inner (11,816 samples, 3.99%)</title><rect x="0.5520%" y="805" width="3.9920%" height="15" fill="rgb(233,99,24)" fg:x="1634" fg:w="11816"/><text x="0.8020%" y="815.50">Java..</text></g><g><title>C1_CompilerThre (13,410 samples, 4.53%)</title><rect x="0.0331%" y="885" width="4.5305%" height="15" fill="rgb(234,209,42)" fg:x="98" fg:w="13410"/><text x="0.2831%" y="895.50">C1_Co..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (40 samples, 0.01%)</title><rect x="4.5914%" y="869" width="0.0135%" height="15" fill="rgb(227,7,12)" fg:x="13590" fg:w="40"/><text x="4.8414%" y="879.50"></text></g><g><title>RegMask::is_UP (39 samples, 0.01%)</title><rect x="4.5917%" y="853" width="0.0132%" height="15" fill="rgb(245,203,43)" fg:x="13591" fg:w="39"/><text x="4.8417%" y="863.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (75 samples, 0.03%)</title><rect x="4.6393%" y="869" width="0.0253%" height="15" fill="rgb(238,205,33)" fg:x="13732" fg:w="75"/><text x="4.8893%" y="879.50"></text></g><g><title>ProjNode::pinned (73 samples, 0.02%)</title><rect x="4.6400%" y="853" width="0.0247%" height="15" fill="rgb(231,56,7)" fg:x="13734" fg:w="73"/><text x="4.8900%" y="863.50"></text></g><g><title>CProjNode::is_CFG (38 samples, 0.01%)</title><rect x="4.7447%" y="853" width="0.0128%" height="15" fill="rgb(244,186,29)" fg:x="14044" fg:w="38"/><text x="4.9947%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (55 samples, 0.02%)</title><rect x="4.9444%" y="853" width="0.0186%" height="15" fill="rgb(234,111,31)" fg:x="14635" fg:w="55"/><text x="5.1944%" y="863.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.02%)</title><rect x="5.1002%" y="853" width="0.0223%" height="15" fill="rgb(241,149,10)" fg:x="15096" fg:w="66"/><text x="5.3502%" y="863.50"></text></g><g><title>Node::is_CFG (60 samples, 0.02%)</title><rect x="5.1502%" y="853" width="0.0203%" height="15" fill="rgb(249,206,44)" fg:x="15244" fg:w="60"/><text x="5.4002%" y="863.50"></text></g><g><title>Node::pinned (34 samples, 0.01%)</title><rect x="5.1789%" y="853" width="0.0115%" height="15" fill="rgb(251,153,30)" fg:x="15329" fg:w="34"/><text x="5.4289%" y="863.50"></text></g><g><title>PhiNode::Opcode (46 samples, 0.02%)</title><rect x="5.3032%" y="853" width="0.0155%" height="15" fill="rgb(239,152,38)" fg:x="15697" fg:w="46"/><text x="5.5532%" y="863.50"></text></g><g><title>ProjNode::is_CFG (33 samples, 0.01%)</title><rect x="5.3427%" y="853" width="0.0111%" height="15" fill="rgb(249,139,47)" fg:x="15814" fg:w="33"/><text x="5.5927%" y="863.50"></text></g><g><title>ProjNode::pinned (35 samples, 0.01%)</title><rect x="5.3546%" y="853" width="0.0118%" height="15" fill="rgb(244,64,35)" fg:x="15849" fg:w="35"/><text x="5.6046%" y="863.50"></text></g><g><title>RegionNode::is_CFG (52 samples, 0.02%)</title><rect x="5.4083%" y="853" width="0.0176%" height="15" fill="rgb(216,46,15)" fg:x="16008" fg:w="52"/><text x="5.6583%" y="863.50"></text></g><g><title>_dl_update_slotinfo (235 samples, 0.08%)</title><rect x="5.5907%" y="853" width="0.0794%" height="15" fill="rgb(250,74,19)" fg:x="16548" fg:w="235"/><text x="5.8407%" y="863.50"></text></g><g><title>find_lowest_bit (57 samples, 0.02%)</title><rect x="5.7461%" y="853" width="0.0193%" height="15" fill="rgb(249,42,33)" fg:x="17008" fg:w="57"/><text x="5.9961%" y="863.50"></text></g><g><title>update_get_addr (56 samples, 0.02%)</title><rect x="5.8640%" y="853" width="0.0189%" height="15" fill="rgb(242,149,17)" fg:x="17357" fg:w="56"/><text x="6.1140%" y="863.50"></text></g><g><title>[anon] (3,566 samples, 1.20%)</title><rect x="4.6795%" y="869" width="1.2048%" height="15" fill="rgb(244,29,21)" fg:x="13851" fg:w="3566"/><text x="4.9295%" y="879.50"></text></g><g><title>ciTypeFlow::df_flow_types (39 samples, 0.01%)</title><rect x="5.9063%" y="629" width="0.0132%" height="15" fill="rgb(220,130,37)" fg:x="17482" fg:w="39"/><text x="6.1563%" y="639.50"></text></g><g><title>ciTypeFlow::flow_block (34 samples, 0.01%)</title><rect x="5.9079%" y="613" width="0.0115%" height="15" fill="rgb(211,67,2)" fg:x="17487" fg:w="34"/><text x="6.1579%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (32 samples, 0.01%)</title><rect x="5.9086%" y="597" width="0.0108%" height="15" fill="rgb(235,68,52)" fg:x="17489" fg:w="32"/><text x="6.1586%" y="607.50"></text></g><g><title>ciMethod::get_flow_analysis (44 samples, 0.01%)</title><rect x="5.9049%" y="677" width="0.0149%" height="15" fill="rgb(246,142,3)" fg:x="17478" fg:w="44"/><text x="6.1549%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (40 samples, 0.01%)</title><rect x="5.9063%" y="661" width="0.0135%" height="15" fill="rgb(241,25,7)" fg:x="17482" fg:w="40"/><text x="6.1563%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (40 samples, 0.01%)</title><rect x="5.9063%" y="645" width="0.0135%" height="15" fill="rgb(242,119,39)" fg:x="17482" fg:w="40"/><text x="6.1563%" y="655.50"></text></g><g><title>Compile::call_generator (50 samples, 0.02%)</title><rect x="5.9032%" y="709" width="0.0169%" height="15" fill="rgb(241,98,45)" fg:x="17473" fg:w="50"/><text x="6.1532%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (50 samples, 0.02%)</title><rect x="5.9032%" y="693" width="0.0169%" height="15" fill="rgb(254,28,30)" fg:x="17473" fg:w="50"/><text x="6.1532%" y="703.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (31 samples, 0.01%)</title><rect x="5.9292%" y="597" width="0.0105%" height="15" fill="rgb(241,142,54)" fg:x="17550" fg:w="31"/><text x="6.1792%" y="607.50"></text></g><g><title>ciBytecodeStream::get_field (30 samples, 0.01%)</title><rect x="5.9296%" y="581" width="0.0101%" height="15" fill="rgb(222,85,15)" fg:x="17551" fg:w="30"/><text x="6.1796%" y="591.50"></text></g><g><title>ciBytecodeStream::get_method (64 samples, 0.02%)</title><rect x="5.9407%" y="581" width="0.0216%" height="15" fill="rgb(210,85,47)" fg:x="17584" fg:w="64"/><text x="6.1907%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (61 samples, 0.02%)</title><rect x="5.9417%" y="565" width="0.0206%" height="15" fill="rgb(224,206,25)" fg:x="17587" fg:w="61"/><text x="6.1917%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (41 samples, 0.01%)</title><rect x="5.9485%" y="549" width="0.0139%" height="15" fill="rgb(243,201,19)" fg:x="17607" fg:w="41"/><text x="6.1985%" y="559.50"></text></g><g><title>ciObjectFactory::create_new_metadata (40 samples, 0.01%)</title><rect x="5.9488%" y="533" width="0.0135%" height="15" fill="rgb(236,59,4)" fg:x="17608" fg:w="40"/><text x="6.1988%" y="543.50"></text></g><g><title>ciMethod::ciMethod (38 samples, 0.01%)</title><rect x="5.9495%" y="517" width="0.0128%" height="15" fill="rgb(254,179,45)" fg:x="17610" fg:w="38"/><text x="6.1995%" y="527.50"></text></g><g><title>ciSignature::ciSignature (32 samples, 0.01%)</title><rect x="5.9515%" y="501" width="0.0108%" height="15" fill="rgb(226,14,10)" fg:x="17616" fg:w="32"/><text x="6.2015%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (68 samples, 0.02%)</title><rect x="5.9397%" y="597" width="0.0230%" height="15" fill="rgb(244,27,41)" fg:x="17581" fg:w="68"/><text x="6.1897%" y="607.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (114 samples, 0.04%)</title><rect x="5.9272%" y="613" width="0.0385%" height="15" fill="rgb(235,35,32)" fg:x="17544" fg:w="114"/><text x="6.1772%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (131 samples, 0.04%)</title><rect x="5.9221%" y="645" width="0.0443%" height="15" fill="rgb(218,68,31)" fg:x="17529" fg:w="131"/><text x="6.1721%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (131 samples, 0.04%)</title><rect x="5.9221%" y="629" width="0.0443%" height="15" fill="rgb(207,120,37)" fg:x="17529" fg:w="131"/><text x="6.1721%" y="639.50"></text></g><g><title>InlineTree::ok_to_inline (142 samples, 0.05%)</title><rect x="5.9201%" y="709" width="0.0480%" height="15" fill="rgb(227,98,0)" fg:x="17523" fg:w="142"/><text x="6.1701%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (140 samples, 0.05%)</title><rect x="5.9208%" y="693" width="0.0473%" height="15" fill="rgb(207,7,3)" fg:x="17525" fg:w="140"/><text x="6.1708%" y="703.50"></text></g><g><title>ciTypeFlow::do_flow (140 samples, 0.05%)</title><rect x="5.9208%" y="677" width="0.0473%" height="15" fill="rgb(206,98,19)" fg:x="17525" fg:w="140"/><text x="6.1708%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (140 samples, 0.05%)</title><rect x="5.9208%" y="661" width="0.0473%" height="15" fill="rgb(217,5,26)" fg:x="17525" fg:w="140"/><text x="6.1708%" y="671.50"></text></g><g><title>Compile::call_generator (195 samples, 0.07%)</title><rect x="5.9032%" y="725" width="0.0659%" height="15" fill="rgb(235,190,38)" fg:x="17473" fg:w="195"/><text x="6.1532%" y="735.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (34 samples, 0.01%)</title><rect x="6.0245%" y="501" width="0.0115%" height="15" fill="rgb(247,86,24)" fg:x="17832" fg:w="34"/><text x="6.2745%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (34 samples, 0.01%)</title><rect x="6.0245%" y="485" width="0.0115%" height="15" fill="rgb(205,101,16)" fg:x="17832" fg:w="34"/><text x="6.2745%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (31 samples, 0.01%)</title><rect x="6.0255%" y="469" width="0.0105%" height="15" fill="rgb(246,168,33)" fg:x="17835" fg:w="31"/><text x="6.2755%" y="479.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (70 samples, 0.02%)</title><rect x="6.0161%" y="517" width="0.0236%" height="15" fill="rgb(231,114,1)" fg:x="17807" fg:w="70"/><text x="6.2661%" y="527.50"></text></g><g><title>ciTypeFlow::df_flow_types (92 samples, 0.03%)</title><rect x="6.0093%" y="549" width="0.0311%" height="15" fill="rgb(207,184,53)" fg:x="17787" fg:w="92"/><text x="6.2593%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (83 samples, 0.03%)</title><rect x="6.0123%" y="533" width="0.0280%" height="15" fill="rgb(224,95,51)" fg:x="17796" fg:w="83"/><text x="6.2623%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (96 samples, 0.03%)</title><rect x="6.0086%" y="581" width="0.0324%" height="15" fill="rgb(212,188,45)" fg:x="17785" fg:w="96"/><text x="6.2586%" y="591.50"></text></g><g><title>ciTypeFlow::flow_types (96 samples, 0.03%)</title><rect x="6.0086%" y="565" width="0.0324%" height="15" fill="rgb(223,154,38)" fg:x="17785" fg:w="96"/><text x="6.2586%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (127 samples, 0.04%)</title><rect x="5.9985%" y="613" width="0.0429%" height="15" fill="rgb(251,22,52)" fg:x="17755" fg:w="127"/><text x="6.2485%" y="623.50"></text></g><g><title>ciMethod::get_flow_analysis (104 samples, 0.04%)</title><rect x="6.0063%" y="597" width="0.0351%" height="15" fill="rgb(229,209,22)" fg:x="17778" fg:w="104"/><text x="6.2563%" y="607.50"></text></g><g><title>Compile::call_generator (154 samples, 0.05%)</title><rect x="5.9907%" y="629" width="0.0520%" height="15" fill="rgb(234,138,34)" fg:x="17732" fg:w="154"/><text x="6.2407%" y="639.50"></text></g><g><title>InlineTree::ok_to_inline (57 samples, 0.02%)</title><rect x="6.0982%" y="517" width="0.0193%" height="15" fill="rgb(212,95,11)" fg:x="18050" fg:w="57"/><text x="6.3482%" y="527.50"></text></g><g><title>ciMethod::get_flow_analysis (42 samples, 0.01%)</title><rect x="6.1032%" y="501" width="0.0142%" height="15" fill="rgb(240,179,47)" fg:x="18065" fg:w="42"/><text x="6.3532%" y="511.50"></text></g><g><title>ciTypeFlow::do_flow (37 samples, 0.01%)</title><rect x="6.1049%" y="485" width="0.0125%" height="15" fill="rgb(240,163,11)" fg:x="18070" fg:w="37"/><text x="6.3549%" y="495.50"></text></g><g><title>ciTypeFlow::flow_types (37 samples, 0.01%)</title><rect x="6.1049%" y="469" width="0.0125%" height="15" fill="rgb(236,37,12)" fg:x="18070" fg:w="37"/><text x="6.3549%" y="479.50"></text></g><g><title>Compile::call_generator (69 samples, 0.02%)</title><rect x="6.0955%" y="533" width="0.0233%" height="15" fill="rgb(232,164,16)" fg:x="18042" fg:w="69"/><text x="6.3455%" y="543.50"></text></g><g><title>Compile::call_generator (31 samples, 0.01%)</title><rect x="6.1637%" y="437" width="0.0105%" height="15" fill="rgb(244,205,15)" fg:x="18244" fg:w="31"/><text x="6.4137%" y="447.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.02%)</title><rect x="6.1958%" y="389" width="0.0176%" height="15" fill="rgb(223,117,47)" fg:x="18339" fg:w="52"/><text x="6.4458%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.02%)</title><rect x="6.1982%" y="373" width="0.0152%" height="15" fill="rgb(244,107,35)" fg:x="18346" fg:w="45"/><text x="6.4482%" y="383.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.02%)</title><rect x="6.1948%" y="405" width="0.0213%" height="15" fill="rgb(205,140,8)" fg:x="18336" fg:w="63"/><text x="6.4448%" y="415.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.04%)</title><rect x="6.1887%" y="437" width="0.0358%" height="15" fill="rgb(228,84,46)" fg:x="18318" fg:w="106"/><text x="6.4387%" y="447.50"></text></g><g><title>Parse::Parse (106 samples, 0.04%)</title><rect x="6.1887%" y="421" width="0.0358%" height="15" fill="rgb(254,188,9)" fg:x="18318" fg:w="106"/><text x="6.4387%" y="431.50"></text></g><g><title>Parse::do_call (228 samples, 0.08%)</title><rect x="6.1627%" y="453" width="0.0770%" height="15" fill="rgb(206,112,54)" fg:x="18241" fg:w="228"/><text x="6.4127%" y="463.50"></text></g><g><title>Parse::do_put_xxx (30 samples, 0.01%)</title><rect x="6.2505%" y="437" width="0.0101%" height="15" fill="rgb(216,84,49)" fg:x="18501" fg:w="30"/><text x="6.5005%" y="447.50"></text></g><g><title>Parse::do_field_access (60 samples, 0.02%)</title><rect x="6.2428%" y="453" width="0.0203%" height="15" fill="rgb(214,194,35)" fg:x="18478" fg:w="60"/><text x="6.4928%" y="463.50"></text></g><g><title>Parse::do_one_block (389 samples, 0.13%)</title><rect x="6.1526%" y="485" width="0.1314%" height="15" fill="rgb(249,28,3)" fg:x="18211" fg:w="389"/><text x="6.4026%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (379 samples, 0.13%)</title><rect x="6.1559%" y="469" width="0.1280%" height="15" fill="rgb(222,56,52)" fg:x="18221" fg:w="379"/><text x="6.4059%" y="479.50"></text></g><g><title>Parse::do_all_blocks (394 samples, 0.13%)</title><rect x="6.1522%" y="501" width="0.1331%" height="15" fill="rgb(245,217,50)" fg:x="18210" fg:w="394"/><text x="6.4022%" y="511.50"></text></g><g><title>ParseGenerator::generate (456 samples, 0.15%)</title><rect x="6.1404%" y="533" width="0.1541%" height="15" fill="rgb(213,201,24)" fg:x="18175" fg:w="456"/><text x="6.3904%" y="543.50"></text></g><g><title>Parse::Parse (455 samples, 0.15%)</title><rect x="6.1407%" y="517" width="0.1537%" height="15" fill="rgb(248,116,28)" fg:x="18176" fg:w="455"/><text x="6.3907%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (47 samples, 0.02%)</title><rect x="6.2944%" y="533" width="0.0159%" height="15" fill="rgb(219,72,43)" fg:x="18631" fg:w="47"/><text x="6.5444%" y="543.50"></text></g><g><title>Parse::do_call (668 samples, 0.23%)</title><rect x="6.0938%" y="549" width="0.2257%" height="15" fill="rgb(209,138,14)" fg:x="18037" fg:w="668"/><text x="6.3438%" y="559.50"></text></g><g><title>Parse::do_get_xxx (44 samples, 0.01%)</title><rect x="6.3235%" y="533" width="0.0149%" height="15" fill="rgb(222,18,33)" fg:x="18717" fg:w="44"/><text x="6.5735%" y="543.50"></text></g><g><title>GraphKit::access_store_at (55 samples, 0.02%)</title><rect x="6.3384%" y="517" width="0.0186%" height="15" fill="rgb(213,199,7)" fg:x="18761" fg:w="55"/><text x="6.5884%" y="527.50"></text></g><g><title>BarrierSetC2::store_at (55 samples, 0.02%)</title><rect x="6.3384%" y="501" width="0.0186%" height="15" fill="rgb(250,110,10)" fg:x="18761" fg:w="55"/><text x="6.5884%" y="511.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (51 samples, 0.02%)</title><rect x="6.3397%" y="485" width="0.0172%" height="15" fill="rgb(248,123,6)" fg:x="18765" fg:w="51"/><text x="6.5897%" y="495.50"></text></g><g><title>Parse::do_put_xxx (58 samples, 0.02%)</title><rect x="6.3384%" y="533" width="0.0196%" height="15" fill="rgb(206,91,31)" fg:x="18761" fg:w="58"/><text x="6.5884%" y="543.50"></text></g><g><title>Parse::do_field_access (118 samples, 0.04%)</title><rect x="6.3222%" y="549" width="0.0399%" height="15" fill="rgb(211,154,13)" fg:x="18713" fg:w="118"/><text x="6.5722%" y="559.50"></text></g><g><title>Parse::do_one_block (926 samples, 0.31%)</title><rect x="6.0803%" y="581" width="0.3128%" height="15" fill="rgb(225,148,7)" fg:x="17997" fg:w="926"/><text x="6.3303%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (917 samples, 0.31%)</title><rect x="6.0833%" y="565" width="0.3098%" height="15" fill="rgb(220,160,43)" fg:x="18006" fg:w="917"/><text x="6.3333%" y="575.50"></text></g><g><title>Parse::do_all_blocks (939 samples, 0.32%)</title><rect x="6.0796%" y="597" width="0.3172%" height="15" fill="rgb(213,52,39)" fg:x="17995" fg:w="939"/><text x="6.3296%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,018 samples, 0.34%)</title><rect x="6.0667%" y="629" width="0.3439%" height="15" fill="rgb(243,137,7)" fg:x="17957" fg:w="1018"/><text x="6.3167%" y="639.50"></text></g><g><title>Parse::Parse (1,018 samples, 0.34%)</title><rect x="6.0667%" y="613" width="0.3439%" height="15" fill="rgb(230,79,13)" fg:x="17957" fg:w="1018"/><text x="6.3167%" y="623.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="6.4208%" y="517" width="0.0111%" height="15" fill="rgb(247,105,23)" fg:x="19005" fg:w="33"/><text x="6.6708%" y="527.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="6.4208%" y="501" width="0.0111%" height="15" fill="rgb(223,179,41)" fg:x="19005" fg:w="33"/><text x="6.6708%" y="511.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="6.4215%" y="485" width="0.0105%" height="15" fill="rgb(218,9,34)" fg:x="19007" fg:w="31"/><text x="6.6715%" y="495.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.01%)</title><rect x="6.4215%" y="469" width="0.0105%" height="15" fill="rgb(222,106,8)" fg:x="19007" fg:w="31"/><text x="6.6715%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="6.4215%" y="453" width="0.0105%" height="15" fill="rgb(211,220,0)" fg:x="19007" fg:w="31"/><text x="6.6715%" y="463.50"></text></g><g><title>Parse::do_call (51 samples, 0.02%)</title><rect x="6.4178%" y="533" width="0.0172%" height="15" fill="rgb(229,52,16)" fg:x="18996" fg:w="51"/><text x="6.6678%" y="543.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.02%)</title><rect x="6.4174%" y="581" width="0.0233%" height="15" fill="rgb(212,155,18)" fg:x="18995" fg:w="69"/><text x="6.6674%" y="591.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.02%)</title><rect x="6.4174%" y="565" width="0.0233%" height="15" fill="rgb(242,21,14)" fg:x="18995" fg:w="69"/><text x="6.6674%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.02%)</title><rect x="6.4174%" y="549" width="0.0233%" height="15" fill="rgb(222,19,48)" fg:x="18995" fg:w="69"/><text x="6.6674%" y="559.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.03%)</title><rect x="6.4164%" y="613" width="0.0250%" height="15" fill="rgb(232,45,27)" fg:x="18992" fg:w="74"/><text x="6.6664%" y="623.50"></text></g><g><title>Parse::Parse (74 samples, 0.03%)</title><rect x="6.4164%" y="597" width="0.0250%" height="15" fill="rgb(249,103,42)" fg:x="18992" fg:w="74"/><text x="6.6664%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (117 samples, 0.04%)</title><rect x="6.4107%" y="629" width="0.0395%" height="15" fill="rgb(246,81,33)" fg:x="18975" fg:w="117"/><text x="6.6607%" y="639.50"></text></g><g><title>Parse::do_call (1,389 samples, 0.47%)</title><rect x="5.9907%" y="645" width="0.4693%" height="15" fill="rgb(252,33,42)" fg:x="17732" fg:w="1389"/><text x="6.2407%" y="655.50"></text></g><g><title>Parse::do_get_xxx (50 samples, 0.02%)</title><rect x="6.4651%" y="629" width="0.0169%" height="15" fill="rgb(209,212,41)" fg:x="19136" fg:w="50"/><text x="6.7151%" y="639.50"></text></g><g><title>GraphKit::access_store_at (59 samples, 0.02%)</title><rect x="6.4820%" y="613" width="0.0199%" height="15" fill="rgb(207,154,6)" fg:x="19186" fg:w="59"/><text x="6.7320%" y="623.50"></text></g><g><title>BarrierSetC2::store_at (59 samples, 0.02%)</title><rect x="6.4820%" y="597" width="0.0199%" height="15" fill="rgb(223,64,47)" fg:x="19186" fg:w="59"/><text x="6.7320%" y="607.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (59 samples, 0.02%)</title><rect x="6.4820%" y="581" width="0.0199%" height="15" fill="rgb(211,161,38)" fg:x="19186" fg:w="59"/><text x="6.7320%" y="591.50"></text></g><g><title>Parse::do_put_xxx (62 samples, 0.02%)</title><rect x="6.4820%" y="629" width="0.0209%" height="15" fill="rgb(219,138,40)" fg:x="19186" fg:w="62"/><text x="6.7320%" y="639.50"></text></g><g><title>Parse::do_field_access (125 samples, 0.04%)</title><rect x="6.4624%" y="645" width="0.0422%" height="15" fill="rgb(241,228,46)" fg:x="19128" fg:w="125"/><text x="6.7124%" y="655.50"></text></g><g><title>Parse::do_one_block (1,615 samples, 0.55%)</title><rect x="5.9779%" y="677" width="0.5456%" height="15" fill="rgb(223,209,38)" fg:x="17694" fg:w="1615"/><text x="6.2279%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (1,607 samples, 0.54%)</title><rect x="5.9806%" y="661" width="0.5429%" height="15" fill="rgb(236,164,45)" fg:x="17702" fg:w="1607"/><text x="6.2306%" y="671.50"></text></g><g><title>ParseGenerator::generate (1,628 samples, 0.55%)</title><rect x="5.9742%" y="725" width="0.5500%" height="15" fill="rgb(231,15,5)" fg:x="17683" fg:w="1628"/><text x="6.2242%" y="735.50"></text></g><g><title>Parse::Parse (1,628 samples, 0.55%)</title><rect x="5.9742%" y="709" width="0.5500%" height="15" fill="rgb(252,35,15)" fg:x="17683" fg:w="1628"/><text x="6.2242%" y="719.50"></text></g><g><title>Parse::do_all_blocks (1,617 samples, 0.55%)</title><rect x="5.9779%" y="693" width="0.5463%" height="15" fill="rgb(248,181,18)" fg:x="17694" fg:w="1617"/><text x="6.2279%" y="703.50"></text></g><g><title>Compile::call_generator (34 samples, 0.01%)</title><rect x="6.5326%" y="613" width="0.0115%" height="15" fill="rgb(233,39,42)" fg:x="19336" fg:w="34"/><text x="6.7826%" y="623.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="6.5715%" y="437" width="0.0108%" height="15" fill="rgb(238,110,33)" fg:x="19451" fg:w="32"/><text x="6.8215%" y="447.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.02%)</title><rect x="6.5684%" y="469" width="0.0247%" height="15" fill="rgb(233,195,10)" fg:x="19442" fg:w="73"/><text x="6.8184%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.02%)</title><rect x="6.5695%" y="453" width="0.0236%" height="15" fill="rgb(254,105,3)" fg:x="19445" fg:w="70"/><text x="6.8195%" y="463.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.03%)</title><rect x="6.5681%" y="485" width="0.0260%" height="15" fill="rgb(221,225,9)" fg:x="19441" fg:w="77"/><text x="6.8181%" y="495.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.03%)</title><rect x="6.5644%" y="517" width="0.0318%" height="15" fill="rgb(224,227,45)" fg:x="19430" fg:w="94"/><text x="6.8144%" y="527.50"></text></g><g><title>Parse::Parse (94 samples, 0.03%)</title><rect x="6.5644%" y="501" width="0.0318%" height="15" fill="rgb(229,198,43)" fg:x="19430" fg:w="94"/><text x="6.8144%" y="511.50"></text></g><g><title>Parse::do_call (133 samples, 0.04%)</title><rect x="6.5566%" y="533" width="0.0449%" height="15" fill="rgb(206,209,35)" fg:x="19407" fg:w="133"/><text x="6.8066%" y="543.50"></text></g><g><title>Parse::do_one_block (203 samples, 0.07%)</title><rect x="6.5519%" y="565" width="0.0686%" height="15" fill="rgb(245,195,53)" fg:x="19393" fg:w="203"/><text x="6.8019%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (201 samples, 0.07%)</title><rect x="6.5526%" y="549" width="0.0679%" height="15" fill="rgb(240,92,26)" fg:x="19395" fg:w="201"/><text x="6.8026%" y="559.50"></text></g><g><title>Parse::do_all_blocks (210 samples, 0.07%)</title><rect x="6.5519%" y="581" width="0.0709%" height="15" fill="rgb(207,40,23)" fg:x="19393" fg:w="210"/><text x="6.8019%" y="591.50"></text></g><g><title>ParseGenerator::generate (227 samples, 0.08%)</title><rect x="6.5495%" y="613" width="0.0767%" height="15" fill="rgb(223,111,35)" fg:x="19386" fg:w="227"/><text x="6.7995%" y="623.50"></text></g><g><title>Parse::Parse (227 samples, 0.08%)</title><rect x="6.5495%" y="597" width="0.0767%" height="15" fill="rgb(229,147,28)" fg:x="19386" fg:w="227"/><text x="6.7995%" y="607.50"></text></g><g><title>Parse::do_call (300 samples, 0.10%)</title><rect x="6.5323%" y="629" width="0.1014%" height="15" fill="rgb(211,29,28)" fg:x="19335" fg:w="300"/><text x="6.7823%" y="639.50"></text></g><g><title>Parse::do_all_blocks (361 samples, 0.12%)</title><rect x="6.5282%" y="677" width="0.1220%" height="15" fill="rgb(228,72,33)" fg:x="19323" fg:w="361"/><text x="6.7782%" y="687.50"></text></g><g><title>Parse::do_one_block (361 samples, 0.12%)</title><rect x="6.5282%" y="661" width="0.1220%" height="15" fill="rgb(205,214,31)" fg:x="19323" fg:w="361"/><text x="6.7782%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (359 samples, 0.12%)</title><rect x="6.5289%" y="645" width="0.1213%" height="15" fill="rgb(224,111,15)" fg:x="19325" fg:w="359"/><text x="6.7789%" y="655.50"></text></g><g><title>ParseGenerator::generate (371 samples, 0.13%)</title><rect x="6.5269%" y="709" width="0.1253%" height="15" fill="rgb(253,21,26)" fg:x="19319" fg:w="371"/><text x="6.7769%" y="719.50"></text></g><g><title>Parse::Parse (371 samples, 0.13%)</title><rect x="6.5269%" y="693" width="0.1253%" height="15" fill="rgb(245,139,43)" fg:x="19319" fg:w="371"/><text x="6.7769%" y="703.50"></text></g><g><title>Parse::do_call (35 samples, 0.01%)</title><rect x="6.6543%" y="613" width="0.0118%" height="15" fill="rgb(252,170,7)" fg:x="19696" fg:w="35"/><text x="6.9043%" y="623.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.02%)</title><rect x="6.6532%" y="645" width="0.0166%" height="15" fill="rgb(231,118,14)" fg:x="19693" fg:w="49"/><text x="6.9032%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.02%)</title><rect x="6.6532%" y="629" width="0.0166%" height="15" fill="rgb(238,83,0)" fg:x="19693" fg:w="49"/><text x="6.9032%" y="639.50"></text></g><g><title>Parse::do_all_blocks (50 samples, 0.02%)</title><rect x="6.6532%" y="661" width="0.0169%" height="15" fill="rgb(221,39,39)" fg:x="19693" fg:w="50"/><text x="6.9032%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.02%)</title><rect x="6.6522%" y="709" width="0.0199%" height="15" fill="rgb(222,119,46)" fg:x="19690" fg:w="59"/><text x="6.9022%" y="719.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.02%)</title><rect x="6.6522%" y="693" width="0.0199%" height="15" fill="rgb(222,165,49)" fg:x="19690" fg:w="59"/><text x="6.9022%" y="703.50"></text></g><g><title>Parse::Parse (59 samples, 0.02%)</title><rect x="6.6522%" y="677" width="0.0199%" height="15" fill="rgb(219,113,52)" fg:x="19690" fg:w="59"/><text x="6.9022%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (440 samples, 0.15%)</title><rect x="6.5242%" y="725" width="0.1487%" height="15" fill="rgb(214,7,15)" fg:x="19311" fg:w="440"/><text x="6.7742%" y="735.50"></text></g><g><title>Parse::do_call (2,291 samples, 0.77%)</title><rect x="5.9032%" y="741" width="0.7740%" height="15" fill="rgb(235,32,4)" fg:x="17473" fg:w="2291"/><text x="6.1532%" y="751.50"></text></g><g><title>Parse::do_all_blocks (2,311 samples, 0.78%)</title><rect x="5.9019%" y="789" width="0.7808%" height="15" fill="rgb(238,90,54)" fg:x="17469" fg:w="2311"/><text x="6.1519%" y="799.50"></text></g><g><title>Parse::do_one_block (2,311 samples, 0.78%)</title><rect x="5.9019%" y="773" width="0.7808%" height="15" fill="rgb(213,208,19)" fg:x="17469" fg:w="2311"/><text x="6.1519%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (2,311 samples, 0.78%)</title><rect x="5.9019%" y="757" width="0.7808%" height="15" fill="rgb(233,156,4)" fg:x="17469" fg:w="2311"/><text x="6.1519%" y="767.50"></text></g><g><title>C2Compiler::compile_method (2,333 samples, 0.79%)</title><rect x="5.8951%" y="853" width="0.7882%" height="15" fill="rgb(207,194,5)" fg:x="17449" fg:w="2333"/><text x="6.1451%" y="863.50"></text></g><g><title>Compile::Compile (2,333 samples, 0.79%)</title><rect x="5.8951%" y="837" width="0.7882%" height="15" fill="rgb(206,111,30)" fg:x="17449" fg:w="2333"/><text x="6.1451%" y="847.50"></text></g><g><title>ParseGenerator::generate (2,313 samples, 0.78%)</title><rect x="5.9019%" y="821" width="0.7814%" height="15" fill="rgb(243,70,54)" fg:x="17469" fg:w="2313"/><text x="6.1519%" y="831.50"></text></g><g><title>Parse::Parse (2,313 samples, 0.78%)</title><rect x="5.9019%" y="805" width="0.7814%" height="15" fill="rgb(242,28,8)" fg:x="17469" fg:w="2313"/><text x="6.1519%" y="815.50"></text></g><g><title>MachSpillCopyNode::implementation (51 samples, 0.02%)</title><rect x="6.6853%" y="773" width="0.0172%" height="15" fill="rgb(219,106,18)" fg:x="19788" fg:w="51"/><text x="6.9353%" y="783.50"></text></g><g><title>Compile::Output (58 samples, 0.02%)</title><rect x="6.6847%" y="837" width="0.0196%" height="15" fill="rgb(244,222,10)" fg:x="19786" fg:w="58"/><text x="6.9347%" y="847.50"></text></g><g><title>Compile::init_buffer (58 samples, 0.02%)</title><rect x="6.6847%" y="821" width="0.0196%" height="15" fill="rgb(236,179,52)" fg:x="19786" fg:w="58"/><text x="6.9347%" y="831.50"></text></g><g><title>Compile::shorten_branches (56 samples, 0.02%)</title><rect x="6.6853%" y="805" width="0.0189%" height="15" fill="rgb(213,23,39)" fg:x="19788" fg:w="56"/><text x="6.9353%" y="815.50"></text></g><g><title>Compile::scratch_emit_size (56 samples, 0.02%)</title><rect x="6.6853%" y="789" width="0.0189%" height="15" fill="rgb(238,48,10)" fg:x="19788" fg:w="56"/><text x="6.9353%" y="799.50"></text></g><g><title>TypeInstPtr::add_offset (47 samples, 0.02%)</title><rect x="6.7228%" y="757" width="0.0159%" height="15" fill="rgb(251,196,23)" fg:x="19899" fg:w="47"/><text x="6.9728%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (74 samples, 0.03%)</title><rect x="6.7141%" y="789" width="0.0250%" height="15" fill="rgb(250,152,24)" fg:x="19873" fg:w="74"/><text x="6.9641%" y="799.50"></text></g><g><title>MachNode::adr_type (58 samples, 0.02%)</title><rect x="6.7195%" y="773" width="0.0196%" height="15" fill="rgb(209,150,17)" fg:x="19889" fg:w="58"/><text x="6.9695%" y="783.50"></text></g><g><title>PhaseCFG::schedule_late (75 samples, 0.03%)</title><rect x="6.7141%" y="805" width="0.0253%" height="15" fill="rgb(234,202,34)" fg:x="19873" fg:w="75"/><text x="6.9641%" y="815.50"></text></g><g><title>PhaseCFG::sched_call (207 samples, 0.07%)</title><rect x="6.7394%" y="789" width="0.0699%" height="15" fill="rgb(253,148,53)" fg:x="19948" fg:w="207"/><text x="6.9894%" y="799.50"></text></g><g><title>PhaseCFG::schedule_local (208 samples, 0.07%)</title><rect x="6.7394%" y="805" width="0.0703%" height="15" fill="rgb(218,129,16)" fg:x="19948" fg:w="208"/><text x="6.9894%" y="815.50"></text></g><g><title>PhaseCFG::do_global_code_motion (311 samples, 0.11%)</title><rect x="6.7127%" y="837" width="0.1051%" height="15" fill="rgb(216,85,19)" fg:x="19869" fg:w="311"/><text x="6.9627%" y="847.50"></text></g><g><title>PhaseCFG::global_code_motion (311 samples, 0.11%)</title><rect x="6.7127%" y="821" width="0.1051%" height="15" fill="rgb(235,228,7)" fg:x="19869" fg:w="311"/><text x="6.9627%" y="831.50"></text></g><g><title>Node::add_req (30 samples, 0.01%)</title><rect x="6.8269%" y="773" width="0.0101%" height="15" fill="rgb(245,175,0)" fg:x="20207" fg:w="30"/><text x="7.0769%" y="783.50"></text></g><g><title>PhaseChaitin::Split (63 samples, 0.02%)</title><rect x="6.8178%" y="821" width="0.0213%" height="15" fill="rgb(208,168,36)" fg:x="20180" fg:w="63"/><text x="7.0678%" y="831.50"></text></g><g><title>PhaseChaitin::split_USE (54 samples, 0.02%)</title><rect x="6.8208%" y="805" width="0.0182%" height="15" fill="rgb(246,171,24)" fg:x="20189" fg:w="54"/><text x="7.0708%" y="815.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (54 samples, 0.02%)</title><rect x="6.8208%" y="789" width="0.0182%" height="15" fill="rgb(215,142,24)" fg:x="20189" fg:w="54"/><text x="7.0708%" y="799.50"></text></g><g><title>Compile::Code_Gen (463 samples, 0.16%)</title><rect x="6.6847%" y="853" width="0.1564%" height="15" fill="rgb(250,187,7)" fg:x="19786" fg:w="463"/><text x="6.9347%" y="863.50"></text></g><g><title>PhaseChaitin::Register_Allocate (69 samples, 0.02%)</title><rect x="6.8178%" y="837" width="0.0233%" height="15" fill="rgb(228,66,33)" fg:x="20180" fg:w="69"/><text x="7.0678%" y="847.50"></text></g><g><title>OopFlow::build_oop_map (125 samples, 0.04%)</title><rect x="7.0718%" y="773" width="0.0422%" height="15" fill="rgb(234,215,21)" fg:x="20932" fg:w="125"/><text x="7.3218%" y="783.50"></text></g><g><title>OopFlow::compute_reach (231 samples, 0.08%)</title><rect x="7.0387%" y="789" width="0.0780%" height="15" fill="rgb(222,191,20)" fg:x="20834" fg:w="231"/><text x="7.2887%" y="799.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (101 samples, 0.03%)</title><rect x="7.1198%" y="789" width="0.0341%" height="15" fill="rgb(245,79,54)" fg:x="21074" fg:w="101"/><text x="7.3698%" y="799.50"></text></g><g><title>Compile::BuildOopMaps (917 samples, 0.31%)</title><rect x="6.8448%" y="805" width="0.3098%" height="15" fill="rgb(240,10,37)" fg:x="20260" fg:w="917"/><text x="7.0948%" y="815.50"></text></g><g><title>BufferBlob::create (34 samples, 0.01%)</title><rect x="7.1600%" y="773" width="0.0115%" height="15" fill="rgb(214,192,32)" fg:x="21193" fg:w="34"/><text x="7.4100%" y="783.50"></text></g><g><title>Compile::init_scratch_buffer_blob (35 samples, 0.01%)</title><rect x="7.1600%" y="789" width="0.0118%" height="15" fill="rgb(209,36,54)" fg:x="21193" fg:w="35"/><text x="7.4100%" y="799.50"></text></g><g><title>Compile::scratch_emit_size (206 samples, 0.07%)</title><rect x="7.2293%" y="773" width="0.0696%" height="15" fill="rgb(220,10,11)" fg:x="21398" fg:w="206"/><text x="7.4793%" y="783.50"></text></g><g><title>Compile::shorten_branches (411 samples, 0.14%)</title><rect x="7.1718%" y="789" width="0.1389%" height="15" fill="rgb(221,106,17)" fg:x="21228" fg:w="411"/><text x="7.4218%" y="799.50"></text></g><g><title>Compile::init_buffer (465 samples, 0.16%)</title><rect x="7.1546%" y="805" width="0.1571%" height="15" fill="rgb(251,142,44)" fg:x="21177" fg:w="465"/><text x="7.4046%" y="815.50"></text></g><g><title>Compile::Output (1,392 samples, 0.47%)</title><rect x="6.8418%" y="821" width="0.4703%" height="15" fill="rgb(238,13,15)" fg:x="20251" fg:w="1392"/><text x="7.0918%" y="831.50"></text></g><g><title>Compile::FillExceptionTables (33 samples, 0.01%)</title><rect x="7.3614%" y="805" width="0.0111%" height="15" fill="rgb(208,107,27)" fg:x="21789" fg:w="33"/><text x="7.6114%" y="815.50"></text></g><g><title>Compile::FillLocArray (63 samples, 0.02%)</title><rect x="7.3843%" y="789" width="0.0213%" height="15" fill="rgb(205,136,37)" fg:x="21857" fg:w="63"/><text x="7.6343%" y="799.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (39 samples, 0.01%)</title><rect x="7.4137%" y="773" width="0.0132%" height="15" fill="rgb(250,205,27)" fg:x="21944" fg:w="39"/><text x="7.6637%" y="783.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (67 samples, 0.02%)</title><rect x="7.4066%" y="789" width="0.0226%" height="15" fill="rgb(210,80,43)" fg:x="21923" fg:w="67"/><text x="7.6566%" y="799.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (41 samples, 0.01%)</title><rect x="7.4354%" y="773" width="0.0139%" height="15" fill="rgb(247,160,36)" fg:x="22008" fg:w="41"/><text x="7.6854%" y="783.50"></text></g><g><title>DebugInformationRecorder::describe_scope (61 samples, 0.02%)</title><rect x="7.4293%" y="789" width="0.0206%" height="15" fill="rgb(234,13,49)" fg:x="21990" fg:w="61"/><text x="7.6793%" y="799.50"></text></g><g><title>Compile::Process_OopMap_Node (265 samples, 0.09%)</title><rect x="7.3725%" y="805" width="0.0895%" height="15" fill="rgb(234,122,0)" fg:x="21822" fg:w="265"/><text x="7.6225%" y="815.50"></text></g><g><title>Compile::valid_bundle_info (75 samples, 0.03%)</title><rect x="7.4654%" y="805" width="0.0253%" height="15" fill="rgb(207,146,38)" fg:x="22097" fg:w="75"/><text x="7.7154%" y="815.50"></text></g><g><title>MachSpillCopyNode::implementation (39 samples, 0.01%)</title><rect x="7.4985%" y="805" width="0.0132%" height="15" fill="rgb(207,177,25)" fg:x="22195" fg:w="39"/><text x="7.7485%" y="815.50"></text></g><g><title>Compile::fill_buffer (648 samples, 0.22%)</title><rect x="7.3127%" y="821" width="0.2189%" height="15" fill="rgb(211,178,42)" fg:x="21645" fg:w="648"/><text x="7.5627%" y="831.50"></text></g><g><title>Matcher::init_first_stack_mask (50 samples, 0.02%)</title><rect x="7.5485%" y="789" width="0.0169%" height="15" fill="rgb(230,69,54)" fg:x="22343" fg:w="50"/><text x="7.7985%" y="799.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (64 samples, 0.02%)</title><rect x="7.5452%" y="805" width="0.0216%" height="15" fill="rgb(214,135,41)" fg:x="22333" fg:w="64"/><text x="7.7952%" y="815.50"></text></g><g><title>Matcher::is_bmi_pattern (41 samples, 0.01%)</title><rect x="7.6915%" y="789" width="0.0139%" height="15" fill="rgb(237,67,25)" fg:x="22766" fg:w="41"/><text x="7.9415%" y="799.50"></text></g><g><title>Matcher::find_shared (431 samples, 0.15%)</title><rect x="7.5668%" y="805" width="0.1456%" height="15" fill="rgb(222,189,50)" fg:x="22397" fg:w="431"/><text x="7.8168%" y="815.50"></text></g><g><title>Arena::contains (559 samples, 0.19%)</title><rect x="7.8458%" y="789" width="0.1889%" height="15" fill="rgb(245,148,34)" fg:x="23223" fg:w="559"/><text x="8.0958%" y="799.50"></text></g><g><title>Matcher::ReduceInst (32 samples, 0.01%)</title><rect x="8.0793%" y="757" width="0.0108%" height="15" fill="rgb(222,29,6)" fg:x="23914" fg:w="32"/><text x="8.3293%" y="767.50"></text></g><g><title>Node::add_req (40 samples, 0.01%)</title><rect x="8.0901%" y="757" width="0.0135%" height="15" fill="rgb(221,189,43)" fg:x="23946" fg:w="40"/><text x="8.3401%" y="767.50"></text></g><g><title>Matcher::match_tree (130 samples, 0.04%)</title><rect x="8.0611%" y="773" width="0.0439%" height="15" fill="rgb(207,36,27)" fg:x="23860" fg:w="130"/><text x="8.3111%" y="783.50"></text></g><g><title>Matcher::match_sfpt (180 samples, 0.06%)</title><rect x="8.0489%" y="789" width="0.0608%" height="15" fill="rgb(217,90,24)" fg:x="23824" fg:w="180"/><text x="8.2989%" y="799.50"></text></g><g><title>Chunk::next_chop (30 samples, 0.01%)</title><rect x="8.1857%" y="773" width="0.0101%" height="15" fill="rgb(224,66,35)" fg:x="24229" fg:w="30"/><text x="8.4357%" y="783.50"></text></g><g><title>Matcher::Label_Root (58 samples, 0.02%)</title><rect x="8.2675%" y="725" width="0.0196%" height="15" fill="rgb(221,13,50)" fg:x="24471" fg:w="58"/><text x="8.5175%" y="735.50"></text></g><g><title>State::DFA (50 samples, 0.02%)</title><rect x="8.2874%" y="725" width="0.0169%" height="15" fill="rgb(236,68,49)" fg:x="24530" fg:w="50"/><text x="8.5374%" y="735.50"></text></g><g><title>Matcher::Label_Root (133 samples, 0.04%)</title><rect x="8.2611%" y="741" width="0.0449%" height="15" fill="rgb(229,146,28)" fg:x="24452" fg:w="133"/><text x="8.5111%" y="751.50"></text></g><g><title>State::_sub_Op_AddP (31 samples, 0.01%)</title><rect x="8.3121%" y="725" width="0.0105%" height="15" fill="rgb(225,31,38)" fg:x="24603" fg:w="31"/><text x="8.5621%" y="735.50"></text></g><g><title>State::DFA (70 samples, 0.02%)</title><rect x="8.3073%" y="741" width="0.0236%" height="15" fill="rgb(250,208,3)" fg:x="24589" fg:w="70"/><text x="8.5573%" y="751.50"></text></g><g><title>Matcher::Label_Root (306 samples, 0.10%)</title><rect x="8.2330%" y="757" width="0.1034%" height="15" fill="rgb(246,54,23)" fg:x="24369" fg:w="306"/><text x="8.4830%" y="767.50"></text></g><g><title>State::DFA (43 samples, 0.01%)</title><rect x="8.3378%" y="757" width="0.0145%" height="15" fill="rgb(243,76,11)" fg:x="24679" fg:w="43"/><text x="8.5878%" y="767.50"></text></g><g><title>Matcher::Label_Root (497 samples, 0.17%)</title><rect x="8.1959%" y="773" width="0.1679%" height="15" fill="rgb(245,21,50)" fg:x="24259" fg:w="497"/><text x="8.4459%" y="783.50"></text></g><g><title>Matcher::ReduceInst (30 samples, 0.01%)</title><rect x="8.3891%" y="709" width="0.0101%" height="15" fill="rgb(228,9,43)" fg:x="24831" fg:w="30"/><text x="8.6391%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (62 samples, 0.02%)</title><rect x="8.3861%" y="725" width="0.0209%" height="15" fill="rgb(208,100,47)" fg:x="24822" fg:w="62"/><text x="8.6361%" y="735.50"></text></g><g><title>Matcher::ReduceInst (116 samples, 0.04%)</title><rect x="8.3817%" y="741" width="0.0392%" height="15" fill="rgb(232,26,8)" fg:x="24809" fg:w="116"/><text x="8.6317%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (197 samples, 0.07%)</title><rect x="8.3763%" y="757" width="0.0666%" height="15" fill="rgb(216,166,38)" fg:x="24793" fg:w="197"/><text x="8.6263%" y="767.50"></text></g><g><title>State::MachNodeGenerator (65 samples, 0.02%)</title><rect x="8.4540%" y="757" width="0.0220%" height="15" fill="rgb(251,202,51)" fg:x="25023" fg:w="65"/><text x="8.7040%" y="767.50"></text></g><g><title>Matcher::ReduceInst (376 samples, 0.13%)</title><rect x="8.3638%" y="773" width="0.1270%" height="15" fill="rgb(254,216,34)" fg:x="24756" fg:w="376"/><text x="8.6138%" y="783.50"></text></g><g><title>Matcher::match_tree (1,151 samples, 0.39%)</title><rect x="8.1097%" y="789" width="0.3889%" height="15" fill="rgb(251,32,27)" fg:x="24004" fg:w="1151"/><text x="8.3597%" y="799.50"></text></g><g><title>Node::clone (78 samples, 0.03%)</title><rect x="8.5003%" y="789" width="0.0264%" height="15" fill="rgb(208,127,28)" fg:x="25160" fg:w="78"/><text x="8.7503%" y="799.50"></text></g><g><title>Node::out_grow (51 samples, 0.02%)</title><rect x="8.5266%" y="789" width="0.0172%" height="15" fill="rgb(224,137,22)" fg:x="25238" fg:w="51"/><text x="8.7766%" y="799.50"></text></g><g><title>Matcher::xform (2,457 samples, 0.83%)</title><rect x="7.7154%" y="805" width="0.8301%" height="15" fill="rgb(254,70,32)" fg:x="22837" fg:w="2457"/><text x="7.9654%" y="815.50"></text></g><g><title>Matcher::match (3,002 samples, 1.01%)</title><rect x="7.5350%" y="821" width="1.0142%" height="15" fill="rgb(229,75,37)" fg:x="22303" fg:w="3002"/><text x="7.7850%" y="831.50"></text></g><g><title>PhaseBlockLayout::find_edges (79 samples, 0.03%)</title><rect x="8.5496%" y="805" width="0.0267%" height="15" fill="rgb(252,64,23)" fg:x="25306" fg:w="79"/><text x="8.7996%" y="815.50"></text></g><g><title>__GI___qsort_r (44 samples, 0.01%)</title><rect x="8.5827%" y="789" width="0.0149%" height="15" fill="rgb(232,162,48)" fg:x="25404" fg:w="44"/><text x="8.8327%" y="799.50"></text></g><g><title>msort_with_tmp (42 samples, 0.01%)</title><rect x="8.5834%" y="773" width="0.0142%" height="15" fill="rgb(246,160,12)" fg:x="25406" fg:w="42"/><text x="8.8334%" y="783.50"></text></g><g><title>msort_with_tmp (42 samples, 0.01%)</title><rect x="8.5834%" y="757" width="0.0142%" height="15" fill="rgb(247,166,0)" fg:x="25406" fg:w="42"/><text x="8.8334%" y="767.50"></text></g><g><title>msort_with_tmp (37 samples, 0.01%)</title><rect x="8.5851%" y="741" width="0.0125%" height="15" fill="rgb(249,219,21)" fg:x="25411" fg:w="37"/><text x="8.8351%" y="751.50"></text></g><g><title>msort_with_tmp (37 samples, 0.01%)</title><rect x="8.5851%" y="725" width="0.0125%" height="15" fill="rgb(205,209,3)" fg:x="25411" fg:w="37"/><text x="8.8351%" y="735.50"></text></g><g><title>msort_with_tmp (34 samples, 0.01%)</title><rect x="8.5861%" y="709" width="0.0115%" height="15" fill="rgb(243,44,1)" fg:x="25414" fg:w="34"/><text x="8.8361%" y="719.50"></text></g><g><title>msort_with_tmp (34 samples, 0.01%)</title><rect x="8.5861%" y="693" width="0.0115%" height="15" fill="rgb(206,159,16)" fg:x="25414" fg:w="34"/><text x="8.8361%" y="703.50"></text></g><g><title>PhaseBlockLayout::grow_traces (64 samples, 0.02%)</title><rect x="8.5763%" y="805" width="0.0216%" height="15" fill="rgb(244,77,30)" fg:x="25385" fg:w="64"/><text x="8.8263%" y="815.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (183 samples, 0.06%)</title><rect x="8.5492%" y="821" width="0.0618%" height="15" fill="rgb(218,69,12)" fg:x="25305" fg:w="183"/><text x="8.7992%" y="831.50"></text></g><g><title>PhaseCFG::build_cfg (149 samples, 0.05%)</title><rect x="8.6138%" y="805" width="0.0503%" height="15" fill="rgb(212,87,7)" fg:x="25496" fg:w="149"/><text x="8.8638%" y="815.50"></text></g><g><title>PhaseCFG::PhaseCFG (159 samples, 0.05%)</title><rect x="8.6111%" y="821" width="0.0537%" height="15" fill="rgb(245,114,25)" fg:x="25488" fg:w="159"/><text x="8.8611%" y="831.50"></text></g><g><title>Block_Stack::most_frequent_successor (32 samples, 0.01%)</title><rect x="8.6868%" y="773" width="0.0108%" height="15" fill="rgb(210,61,42)" fg:x="25712" fg:w="32"/><text x="8.9368%" y="783.50"></text></g><g><title>PhaseCFG::do_DFS (40 samples, 0.01%)</title><rect x="8.6844%" y="789" width="0.0135%" height="15" fill="rgb(211,52,33)" fg:x="25705" fg:w="40"/><text x="8.9344%" y="799.50"></text></g><g><title>PhaseCFG::build_dominator_tree (99 samples, 0.03%)</title><rect x="8.6651%" y="805" width="0.0334%" height="15" fill="rgb(234,58,33)" fg:x="25648" fg:w="99"/><text x="8.9151%" y="815.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (59 samples, 0.02%)</title><rect x="8.6986%" y="805" width="0.0199%" height="15" fill="rgb(220,115,36)" fg:x="25747" fg:w="59"/><text x="8.9486%" y="815.50"></text></g><g><title>PhaseCFG::implicit_null_check (53 samples, 0.02%)</title><rect x="8.8594%" y="789" width="0.0179%" height="15" fill="rgb(243,153,54)" fg:x="26223" fg:w="53"/><text x="9.1094%" y="799.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (51 samples, 0.02%)</title><rect x="8.8773%" y="789" width="0.0172%" height="15" fill="rgb(251,47,18)" fg:x="26276" fg:w="51"/><text x="9.1273%" y="799.50"></text></g><g><title>Node_Backward_Iterator::next (272 samples, 0.09%)</title><rect x="8.9357%" y="773" width="0.0919%" height="15" fill="rgb(242,102,42)" fg:x="26449" fg:w="272"/><text x="9.1857%" y="783.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (126 samples, 0.04%)</title><rect x="9.0276%" y="773" width="0.0426%" height="15" fill="rgb(234,31,38)" fg:x="26721" fg:w="126"/><text x="9.2776%" y="783.50"></text></g><g><title>MachNode::adr_type (34 samples, 0.01%)</title><rect x="9.1104%" y="757" width="0.0115%" height="15" fill="rgb(221,117,51)" fg:x="26966" fg:w="34"/><text x="9.3604%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (173 samples, 0.06%)</title><rect x="9.0702%" y="773" width="0.0584%" height="15" fill="rgb(212,20,18)" fg:x="26847" fg:w="173"/><text x="9.3202%" y="783.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (66 samples, 0.02%)</title><rect x="9.1287%" y="773" width="0.0223%" height="15" fill="rgb(245,133,36)" fg:x="27020" fg:w="66"/><text x="9.3787%" y="783.50"></text></g><g><title>PhaseCFG::schedule_late (762 samples, 0.26%)</title><rect x="8.8945%" y="789" width="0.2574%" height="15" fill="rgb(212,6,19)" fg:x="26327" fg:w="762"/><text x="9.1445%" y="799.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (60 samples, 0.02%)</title><rect x="9.2543%" y="773" width="0.0203%" height="15" fill="rgb(218,1,36)" fg:x="27392" fg:w="60"/><text x="9.5043%" y="783.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (30 samples, 0.01%)</title><rect x="9.3138%" y="757" width="0.0101%" height="15" fill="rgb(246,84,54)" fg:x="27568" fg:w="30"/><text x="9.5638%" y="767.50"></text></g><g><title>PhaseCFG::select (128 samples, 0.04%)</title><rect x="9.2837%" y="773" width="0.0432%" height="15" fill="rgb(242,110,6)" fg:x="27479" fg:w="128"/><text x="9.5337%" y="783.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (68 samples, 0.02%)</title><rect x="9.3270%" y="773" width="0.0230%" height="15" fill="rgb(214,47,5)" fg:x="27607" fg:w="68"/><text x="9.5770%" y="783.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (55 samples, 0.02%)</title><rect x="9.3499%" y="773" width="0.0186%" height="15" fill="rgb(218,159,25)" fg:x="27675" fg:w="55"/><text x="9.5999%" y="783.50"></text></g><g><title>PhaseCFG::schedule_local (651 samples, 0.22%)</title><rect x="9.1520%" y="789" width="0.2199%" height="15" fill="rgb(215,211,28)" fg:x="27089" fg:w="651"/><text x="9.4020%" y="799.50"></text></g><g><title>RegMask::Size (104 samples, 0.04%)</title><rect x="9.4902%" y="773" width="0.0351%" height="15" fill="rgb(238,59,32)" fg:x="28090" fg:w="104"/><text x="9.7402%" y="783.50"></text></g><g><title>RegMask::clear_to_sets (34 samples, 0.01%)</title><rect x="9.5253%" y="773" width="0.0115%" height="15" fill="rgb(226,82,3)" fg:x="28194" fg:w="34"/><text x="9.7753%" y="783.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (493 samples, 0.17%)</title><rect x="9.3881%" y="789" width="0.1666%" height="15" fill="rgb(240,164,32)" fg:x="27788" fg:w="493"/><text x="9.6381%" y="799.50"></text></g><g><title>PhaseChaitin::mark_ssa (123 samples, 0.04%)</title><rect x="9.5547%" y="789" width="0.0416%" height="15" fill="rgb(232,46,7)" fg:x="28281" fg:w="123"/><text x="9.8047%" y="799.50"></text></g><g><title>IndexSet::initialize (132 samples, 0.04%)</title><rect x="9.6179%" y="773" width="0.0446%" height="15" fill="rgb(229,129,53)" fg:x="28468" fg:w="132"/><text x="9.8679%" y="783.50"></text></g><g><title>asm_exc_page_fault (31 samples, 0.01%)</title><rect x="9.6520%" y="757" width="0.0105%" height="15" fill="rgb(234,188,29)" fg:x="28569" fg:w="31"/><text x="9.9020%" y="767.50"></text></g><g><title>exc_page_fault (30 samples, 0.01%)</title><rect x="9.6523%" y="741" width="0.0101%" height="15" fill="rgb(246,141,4)" fg:x="28570" fg:w="30"/><text x="9.9023%" y="751.50"></text></g><g><title>do_user_addr_fault (30 samples, 0.01%)</title><rect x="9.6523%" y="725" width="0.0101%" height="15" fill="rgb(229,23,39)" fg:x="28570" fg:w="30"/><text x="9.9023%" y="735.50"></text></g><g><title>[libc-2.31.so] (49 samples, 0.02%)</title><rect x="9.6625%" y="773" width="0.0166%" height="15" fill="rgb(206,12,3)" fg:x="28600" fg:w="49"/><text x="9.9125%" y="783.50"></text></g><g><title>PhaseIFG::init (252 samples, 0.09%)</title><rect x="9.5962%" y="789" width="0.0851%" height="15" fill="rgb(252,226,20)" fg:x="28404" fg:w="252"/><text x="9.8462%" y="799.50"></text></g><g><title>IndexSet::initialize (64 samples, 0.02%)</title><rect x="9.7831%" y="773" width="0.0216%" height="15" fill="rgb(216,123,35)" fg:x="28957" fg:w="64"/><text x="10.0331%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (35 samples, 0.01%)</title><rect x="9.8351%" y="757" width="0.0118%" height="15" fill="rgb(212,68,40)" fg:x="29111" fg:w="35"/><text x="10.0851%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (75 samples, 0.03%)</title><rect x="9.8469%" y="757" width="0.0253%" height="15" fill="rgb(254,125,32)" fg:x="29146" fg:w="75"/><text x="10.0969%" y="767.50"></text></g><g><title>PhaseLive::add_livein (200 samples, 0.07%)</title><rect x="9.8050%" y="773" width="0.0676%" height="15" fill="rgb(253,97,22)" fg:x="29022" fg:w="200"/><text x="10.0550%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (75 samples, 0.03%)</title><rect x="9.9381%" y="757" width="0.0253%" height="15" fill="rgb(241,101,14)" fg:x="29416" fg:w="75"/><text x="10.1881%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (96 samples, 0.03%)</title><rect x="9.9685%" y="757" width="0.0324%" height="15" fill="rgb(238,103,29)" fg:x="29506" fg:w="96"/><text x="10.2185%" y="767.50"></text></g><g><title>PhaseLive::add_liveout (386 samples, 0.13%)</title><rect x="9.8726%" y="773" width="0.1304%" height="15" fill="rgb(233,195,47)" fg:x="29222" fg:w="386"/><text x="10.1226%" y="783.50"></text></g><g><title>PhaseLive::compute (954 samples, 0.32%)</title><rect x="9.6817%" y="789" width="0.3223%" height="15" fill="rgb(246,218,30)" fg:x="28657" fg:w="954"/><text x="9.9317%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (3,833 samples, 1.29%)</title><rect x="8.7185%" y="805" width="1.2950%" height="15" fill="rgb(219,145,47)" fg:x="25806" fg:w="3833"/><text x="8.9685%" y="815.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,995 samples, 1.35%)</title><rect x="8.6648%" y="821" width="1.3497%" height="15" fill="rgb(243,12,26)" fg:x="25647" fg:w="3995"/><text x="8.9148%" y="831.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (92 samples, 0.03%)</title><rect x="10.0233%" y="821" width="0.0311%" height="15" fill="rgb(214,87,16)" fg:x="29668" fg:w="92"/><text x="10.2733%" y="831.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,128 samples, 0.38%)</title><rect x="10.1071%" y="805" width="0.3811%" height="15" fill="rgb(208,99,42)" fg:x="29916" fg:w="1128"/><text x="10.3571%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (311 samples, 0.11%)</title><rect x="10.6851%" y="789" width="0.1051%" height="15" fill="rgb(253,99,2)" fg:x="31627" fg:w="311"/><text x="10.9351%" y="799.50"></text></g><g><title>RegMask::find_first_set (37 samples, 0.01%)</title><rect x="10.8236%" y="773" width="0.0125%" height="15" fill="rgb(220,168,23)" fg:x="32037" fg:w="37"/><text x="11.0736%" y="783.50"></text></g><g><title>PhaseChaitin::bias_color (154 samples, 0.05%)</title><rect x="10.7902%" y="789" width="0.0520%" height="15" fill="rgb(242,38,24)" fg:x="31938" fg:w="154"/><text x="11.0402%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (54 samples, 0.02%)</title><rect x="10.9568%" y="773" width="0.0182%" height="15" fill="rgb(225,182,9)" fg:x="32431" fg:w="54"/><text x="11.2068%" y="783.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (85 samples, 0.03%)</title><rect x="10.9750%" y="773" width="0.0287%" height="15" fill="rgb(243,178,37)" fg:x="32485" fg:w="85"/><text x="11.2250%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (344 samples, 0.12%)</title><rect x="11.0037%" y="773" width="0.1162%" height="15" fill="rgb(232,139,19)" fg:x="32570" fg:w="344"/><text x="11.2537%" y="783.50"></text></g><g><title>PhaseIFG::re_insert (828 samples, 0.28%)</title><rect x="10.8449%" y="789" width="0.2797%" height="15" fill="rgb(225,201,24)" fg:x="32100" fg:w="828"/><text x="11.0949%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (168 samples, 0.06%)</title><rect x="11.1247%" y="789" width="0.0568%" height="15" fill="rgb(221,47,46)" fg:x="32928" fg:w="168"/><text x="11.3747%" y="799.50"></text></g><g><title>PhaseChaitin::Select (2,057 samples, 0.69%)</title><rect x="10.4882%" y="805" width="0.6950%" height="15" fill="rgb(249,23,13)" fg:x="31044" fg:w="2057"/><text x="10.7382%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (328 samples, 0.11%)</title><rect x="11.2801%" y="789" width="0.1108%" height="15" fill="rgb(219,9,5)" fg:x="33388" fg:w="328"/><text x="11.5301%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (74 samples, 0.03%)</title><rect x="11.5264%" y="773" width="0.0250%" height="15" fill="rgb(254,171,16)" fg:x="34117" fg:w="74"/><text x="11.7764%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (380 samples, 0.13%)</title><rect x="11.5514%" y="773" width="0.1284%" height="15" fill="rgb(230,171,20)" fg:x="34191" fg:w="380"/><text x="11.8014%" y="783.50"></text></g><g><title>PhaseIFG::remove_node (859 samples, 0.29%)</title><rect x="11.3909%" y="789" width="0.2902%" height="15" fill="rgb(210,71,41)" fg:x="33716" fg:w="859"/><text x="11.6409%" y="799.50"></text></g><g><title>PhaseChaitin::Simplify (1,475 samples, 0.50%)</title><rect x="11.1831%" y="805" width="0.4983%" height="15" fill="rgb(206,173,20)" fg:x="33101" fg:w="1475"/><text x="11.4331%" y="815.50"></text></g><g><title>MachNode::ideal_reg (39 samples, 0.01%)</title><rect x="12.6788%" y="773" width="0.0132%" height="15" fill="rgb(233,88,34)" fg:x="37528" fg:w="39"/><text x="12.9288%" y="783.50"></text></g><g><title>MachNode::rematerialize (189 samples, 0.06%)</title><rect x="12.6318%" y="789" width="0.0639%" height="15" fill="rgb(223,209,46)" fg:x="37389" fg:w="189"/><text x="12.8818%" y="799.50"></text></g><g><title>Node::rematerialize (156 samples, 0.05%)</title><rect x="12.7119%" y="789" width="0.0527%" height="15" fill="rgb(250,43,18)" fg:x="37626" fg:w="156"/><text x="12.9619%" y="799.50"></text></g><g><title>PhaseChaitin::split_DEF (36 samples, 0.01%)</title><rect x="12.7876%" y="789" width="0.0122%" height="15" fill="rgb(208,13,10)" fg:x="37850" fg:w="36"/><text x="13.0376%" y="799.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (51 samples, 0.02%)</title><rect x="12.7997%" y="789" width="0.0172%" height="15" fill="rgb(212,200,36)" fg:x="37886" fg:w="51"/><text x="13.0497%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (33 samples, 0.01%)</title><rect x="12.8446%" y="757" width="0.0111%" height="15" fill="rgb(225,90,30)" fg:x="38019" fg:w="33"/><text x="13.0946%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (82 samples, 0.03%)</title><rect x="12.8321%" y="773" width="0.0277%" height="15" fill="rgb(236,182,39)" fg:x="37982" fg:w="82"/><text x="13.0821%" y="783.50"></text></g><g><title>PhaseChaitin::split_USE (156 samples, 0.05%)</title><rect x="12.8169%" y="789" width="0.0527%" height="15" fill="rgb(212,144,35)" fg:x="37937" fg:w="156"/><text x="13.0669%" y="799.50"></text></g><g><title>PhaseChaitin::Split (3,606 samples, 1.22%)</title><rect x="11.6814%" y="805" width="1.2183%" height="15" fill="rgb(228,63,44)" fg:x="34576" fg:w="3606"/><text x="11.9314%" y="815.50"></text></g><g><title>__tls_get_addr (37 samples, 0.01%)</title><rect x="13.3068%" y="773" width="0.0125%" height="15" fill="rgb(228,109,6)" fg:x="39387" fg:w="37"/><text x="13.5568%" y="783.50"></text></g><g><title>IndexSet::IndexSet (303 samples, 0.10%)</title><rect x="13.2180%" y="789" width="0.1024%" height="15" fill="rgb(238,117,24)" fg:x="39124" fg:w="303"/><text x="13.4680%" y="799.50"></text></g><g><title>MachNode::rematerialize (59 samples, 0.02%)</title><rect x="13.3237%" y="789" width="0.0199%" height="15" fill="rgb(242,26,26)" fg:x="39437" fg:w="59"/><text x="13.5737%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.01%)</title><rect x="13.5065%" y="773" width="0.0132%" height="15" fill="rgb(221,92,48)" fg:x="39978" fg:w="39"/><text x="13.7565%" y="783.50"></text></g><g><title>JVMState::debug_start (39 samples, 0.01%)</title><rect x="13.5197%" y="773" width="0.0132%" height="15" fill="rgb(209,209,32)" fg:x="40017" fg:w="39"/><text x="13.7697%" y="783.50"></text></g><g><title>MachNode::rematerialize (106 samples, 0.04%)</title><rect x="13.5335%" y="773" width="0.0358%" height="15" fill="rgb(221,70,22)" fg:x="40058" fg:w="106"/><text x="13.7835%" y="783.50"></text></g><g><title>PhaseChaitin::raise_pressure (129 samples, 0.04%)</title><rect x="13.5727%" y="773" width="0.0436%" height="15" fill="rgb(248,145,5)" fg:x="40174" fg:w="129"/><text x="13.8227%" y="783.50"></text></g><g><title>RegMask::is_UP (55 samples, 0.02%)</title><rect x="13.5977%" y="757" width="0.0186%" height="15" fill="rgb(226,116,26)" fg:x="40248" fg:w="55"/><text x="13.8477%" y="767.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (800 samples, 0.27%)</title><rect x="13.3477%" y="789" width="0.2703%" height="15" fill="rgb(244,5,17)" fg:x="39508" fg:w="800"/><text x="13.5977%" y="799.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (36 samples, 0.01%)</title><rect x="13.6180%" y="789" width="0.0122%" height="15" fill="rgb(252,159,33)" fg:x="40308" fg:w="36"/><text x="13.8680%" y="799.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (52 samples, 0.02%)</title><rect x="13.6301%" y="789" width="0.0176%" height="15" fill="rgb(206,71,0)" fg:x="40344" fg:w="52"/><text x="13.8801%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (166 samples, 0.06%)</title><rect x="13.7342%" y="773" width="0.0561%" height="15" fill="rgb(233,118,54)" fg:x="40652" fg:w="166"/><text x="13.9842%" y="783.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (503 samples, 0.17%)</title><rect x="13.6477%" y="789" width="0.1699%" height="15" fill="rgb(234,83,48)" fg:x="40396" fg:w="503"/><text x="13.8977%" y="799.50"></text></g><g><title>RegMask::is_UP (81 samples, 0.03%)</title><rect x="13.7903%" y="773" width="0.0274%" height="15" fill="rgb(228,3,54)" fg:x="40818" fg:w="81"/><text x="14.0403%" y="783.50"></text></g><g><title>__tls_get_addr (42 samples, 0.01%)</title><rect x="14.4944%" y="757" width="0.0142%" height="15" fill="rgb(226,155,13)" fg:x="42902" fg:w="42"/><text x="14.7444%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (149 samples, 0.05%)</title><rect x="14.4602%" y="773" width="0.0503%" height="15" fill="rgb(241,28,37)" fg:x="42801" fg:w="149"/><text x="14.7102%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (795 samples, 0.27%)</title><rect x="14.5133%" y="773" width="0.2686%" height="15" fill="rgb(233,93,10)" fg:x="42958" fg:w="795"/><text x="14.7633%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,871 samples, 0.97%)</title><rect x="13.8176%" y="789" width="0.9700%" height="15" fill="rgb(225,113,19)" fg:x="40899" fg:w="2871"/><text x="14.0676%" y="799.50"></text></g><g><title>PhaseChaitin::lower_pressure (104 samples, 0.04%)</title><rect x="14.7876%" y="789" width="0.0351%" height="15" fill="rgb(241,2,18)" fg:x="43770" fg:w="104"/><text x="15.0376%" y="799.50"></text></g><g><title>RegMask::is_UP (34 samples, 0.01%)</title><rect x="14.8113%" y="773" width="0.0115%" height="15" fill="rgb(228,207,21)" fg:x="43840" fg:w="34"/><text x="15.0613%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (194 samples, 0.07%)</title><rect x="14.9934%" y="773" width="0.0655%" height="15" fill="rgb(213,211,35)" fg:x="44379" fg:w="194"/><text x="15.2434%" y="783.50"></text></g><g><title>RegMask::Size (358 samples, 0.12%)</title><rect x="15.0589%" y="773" width="0.1209%" height="15" fill="rgb(209,83,10)" fg:x="44573" fg:w="358"/><text x="15.3089%" y="783.50"></text></g><g><title>RegMask::smear_to_sets (651 samples, 0.22%)</title><rect x="15.1799%" y="773" width="0.2199%" height="15" fill="rgb(209,164,1)" fg:x="44931" fg:w="651"/><text x="15.4299%" y="783.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,720 samples, 0.58%)</title><rect x="14.8231%" y="789" width="0.5811%" height="15" fill="rgb(213,184,43)" fg:x="43875" fg:w="1720"/><text x="15.0731%" y="799.50"></text></g><g><title>RegMask::smear_to_sets (46 samples, 0.02%)</title><rect x="15.4207%" y="789" width="0.0155%" height="15" fill="rgb(231,61,34)" fg:x="45644" fg:w="46"/><text x="15.6707%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,520 samples, 2.54%)</title><rect x="12.9001%" y="805" width="2.5406%" height="15" fill="rgb(235,75,3)" fg:x="38183" fg:w="7520"/><text x="13.1501%" y="815.50">Ph..</text></g><g><title>IndexSetIterator::advance_and_next (59 samples, 0.02%)</title><rect x="15.5991%" y="773" width="0.0199%" height="15" fill="rgb(220,106,47)" fg:x="46172" fg:w="59"/><text x="15.8491%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (374 samples, 0.13%)</title><rect x="15.4930%" y="789" width="0.1264%" height="15" fill="rgb(210,196,33)" fg:x="45858" fg:w="374"/><text x="15.7430%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (534 samples, 0.18%)</title><rect x="15.4407%" y="805" width="0.1804%" height="15" fill="rgb(229,154,42)" fg:x="45703" fg:w="534"/><text x="15.6907%" y="815.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (120 samples, 0.04%)</title><rect x="15.6211%" y="805" width="0.0405%" height="15" fill="rgb(228,114,26)" fg:x="46237" fg:w="120"/><text x="15.8711%" y="815.50"></text></g><g><title>find_hihghest_bit (36 samples, 0.01%)</title><rect x="15.6495%" y="789" width="0.0122%" height="15" fill="rgb(208,144,1)" fg:x="46321" fg:w="36"/><text x="15.8995%" y="799.50"></text></g><g><title>PhaseChaitin::compact (44 samples, 0.01%)</title><rect x="15.6616%" y="805" width="0.0149%" height="15" fill="rgb(239,112,37)" fg:x="46357" fg:w="44"/><text x="15.9116%" y="815.50"></text></g><g><title>PhaseChaitin::de_ssa (104 samples, 0.04%)</title><rect x="15.6765%" y="805" width="0.0351%" height="15" fill="rgb(210,96,50)" fg:x="46401" fg:w="104"/><text x="15.9265%" y="815.50"></text></g><g><title>PhaseChaitin::fixup_spills (78 samples, 0.03%)</title><rect x="15.7116%" y="805" width="0.0264%" height="15" fill="rgb(222,178,2)" fg:x="46505" fg:w="78"/><text x="15.9616%" y="815.50"></text></g><g><title>MachCallJavaNode::in_RegMask (98 samples, 0.03%)</title><rect x="16.3779%" y="789" width="0.0331%" height="15" fill="rgb(226,74,18)" fg:x="48477" fg:w="98"/><text x="16.6279%" y="799.50"></text></g><g><title>MachNode::ideal_reg (85 samples, 0.03%)</title><rect x="16.4120%" y="789" width="0.0287%" height="15" fill="rgb(225,67,54)" fg:x="48578" fg:w="85"/><text x="16.6620%" y="799.50"></text></g><g><title>MachNode::in_RegMask (77 samples, 0.03%)</title><rect x="16.4407%" y="789" width="0.0260%" height="15" fill="rgb(251,92,32)" fg:x="48663" fg:w="77"/><text x="16.6907%" y="799.50"></text></g><g><title>MachProjNode::bottom_type (33 samples, 0.01%)</title><rect x="16.4681%" y="789" width="0.0111%" height="15" fill="rgb(228,149,22)" fg:x="48744" fg:w="33"/><text x="16.7181%" y="799.50"></text></g><g><title>PhiNode::in_RegMask (48 samples, 0.02%)</title><rect x="16.4853%" y="789" width="0.0162%" height="15" fill="rgb(243,54,13)" fg:x="48795" fg:w="48"/><text x="16.7353%" y="799.50"></text></g><g><title>RegMask::Size (1,204 samples, 0.41%)</title><rect x="16.5096%" y="789" width="0.4068%" height="15" fill="rgb(243,180,28)" fg:x="48867" fg:w="1204"/><text x="16.7596%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (198 samples, 0.07%)</title><rect x="16.9164%" y="789" width="0.0669%" height="15" fill="rgb(208,167,24)" fg:x="50071" fg:w="198"/><text x="17.1664%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (117 samples, 0.04%)</title><rect x="16.9833%" y="789" width="0.0395%" height="15" fill="rgb(245,73,45)" fg:x="50269" fg:w="117"/><text x="17.2333%" y="799.50"></text></g><g><title>RegMask::is_bound1 (144 samples, 0.05%)</title><rect x="17.0228%" y="789" width="0.0487%" height="15" fill="rgb(237,203,48)" fg:x="50386" fg:w="144"/><text x="17.2728%" y="799.50"></text></g><g><title>RegMask::is_bound_pair (75 samples, 0.03%)</title><rect x="17.0715%" y="789" width="0.0253%" height="15" fill="rgb(211,197,16)" fg:x="50530" fg:w="75"/><text x="17.3215%" y="799.50"></text></g><g><title>Dict::Insert (37 samples, 0.01%)</title><rect x="17.1049%" y="773" width="0.0125%" height="15" fill="rgb(243,99,51)" fg:x="50629" fg:w="37"/><text x="17.3549%" y="783.50"></text></g><g><title>Type::hashcons (42 samples, 0.01%)</title><rect x="17.1042%" y="789" width="0.0142%" height="15" fill="rgb(215,123,29)" fg:x="50627" fg:w="42"/><text x="17.3542%" y="799.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,187 samples, 1.41%)</title><rect x="15.7380%" y="805" width="1.4146%" height="15" fill="rgb(239,186,37)" fg:x="46583" fg:w="4187"/><text x="15.9880%" y="815.50"></text></g><g><title>PhaseChaitin::merge_multidefs (596 samples, 0.20%)</title><rect x="17.1532%" y="805" width="0.2014%" height="15" fill="rgb(252,136,39)" fg:x="50772" fg:w="596"/><text x="17.4032%" y="815.50"></text></g><g><title>Node::replace_by (31 samples, 0.01%)</title><rect x="18.0235%" y="789" width="0.0105%" height="15" fill="rgb(223,213,32)" fg:x="53348" fg:w="31"/><text x="18.2735%" y="799.50"></text></g><g><title>RegMask::Size (44 samples, 0.01%)</title><rect x="18.7479%" y="757" width="0.0149%" height="15" fill="rgb(233,115,5)" fg:x="55492" fg:w="44"/><text x="18.9979%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (108 samples, 0.04%)</title><rect x="18.7310%" y="773" width="0.0365%" height="15" fill="rgb(207,226,44)" fg:x="55442" fg:w="108"/><text x="18.9810%" y="783.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (41 samples, 0.01%)</title><rect x="18.7675%" y="773" width="0.0139%" height="15" fill="rgb(208,126,0)" fg:x="55550" fg:w="41"/><text x="19.0175%" y="783.50"></text></g><g><title>PhaseChaitin::elide_copy (2,199 samples, 0.74%)</title><rect x="18.0411%" y="789" width="0.7429%" height="15" fill="rgb(244,66,21)" fg:x="53400" fg:w="2199"/><text x="18.2911%" y="799.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (34 samples, 0.01%)</title><rect x="18.7877%" y="789" width="0.0115%" height="15" fill="rgb(222,97,12)" fg:x="55610" fg:w="34"/><text x="19.0377%" y="799.50"></text></g><g><title>[libc-2.31.so] (77 samples, 0.03%)</title><rect x="18.8019%" y="789" width="0.0260%" height="15" fill="rgb(219,213,19)" fg:x="55652" fg:w="77"/><text x="19.0519%" y="799.50"></text></g><g><title>find_lowest_bit (383 samples, 0.13%)</title><rect x="18.8350%" y="789" width="0.1294%" height="15" fill="rgb(252,169,30)" fg:x="55750" fg:w="383"/><text x="19.0850%" y="799.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,777 samples, 1.61%)</title><rect x="17.3546%" y="805" width="1.6139%" height="15" fill="rgb(206,32,51)" fg:x="51368" fg:w="4777"/><text x="17.6046%" y="815.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (234 samples, 0.08%)</title><rect x="18.9685%" y="805" width="0.0791%" height="15" fill="rgb(250,172,42)" fg:x="56145" fg:w="234"/><text x="19.2185%" y="815.50"></text></g><g><title>PhaseIFG::Union (47 samples, 0.02%)</title><rect x="19.0904%" y="757" width="0.0159%" height="15" fill="rgb(209,34,43)" fg:x="56506" fg:w="47"/><text x="19.3404%" y="767.50"></text></g><g><title>PhaseCoalesce::combine_these_two (73 samples, 0.02%)</title><rect x="19.0823%" y="773" width="0.0247%" height="15" fill="rgb(223,11,35)" fg:x="56482" fg:w="73"/><text x="19.3323%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (171 samples, 0.06%)</title><rect x="19.0496%" y="789" width="0.0578%" height="15" fill="rgb(251,219,26)" fg:x="56385" fg:w="171"/><text x="19.2996%" y="799.50"></text></g><g><title>PhaseCFG::is_uncommon (149 samples, 0.05%)</title><rect x="19.1296%" y="773" width="0.0503%" height="15" fill="rgb(231,119,3)" fg:x="56622" fg:w="149"/><text x="19.3796%" y="783.50"></text></g><g><title>Block::has_uncommon_code (43 samples, 0.01%)</title><rect x="19.1654%" y="757" width="0.0145%" height="15" fill="rgb(216,97,11)" fg:x="56728" fg:w="43"/><text x="19.4154%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (48 samples, 0.02%)</title><rect x="19.3016%" y="741" width="0.0162%" height="15" fill="rgb(223,59,9)" fg:x="57131" fg:w="48"/><text x="19.5516%" y="751.50"></text></g><g><title>IndexSet::lrg_union (374 samples, 0.13%)</title><rect x="19.1945%" y="757" width="0.1264%" height="15" fill="rgb(233,93,31)" fg:x="56814" fg:w="374"/><text x="19.4445%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (39 samples, 0.01%)</title><rect x="19.4253%" y="741" width="0.0132%" height="15" fill="rgb(239,81,33)" fg:x="57497" fg:w="39"/><text x="19.6753%" y="751.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (332 samples, 0.11%)</title><rect x="19.3269%" y="757" width="0.1122%" height="15" fill="rgb(213,120,34)" fg:x="57206" fg:w="332"/><text x="19.5769%" y="767.50"></text></g><g><title>PhaseIFG::effective_degree (105 samples, 0.04%)</title><rect x="19.4391%" y="757" width="0.0355%" height="15" fill="rgb(243,49,53)" fg:x="57538" fg:w="105"/><text x="19.6891%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (900 samples, 0.30%)</title><rect x="19.1800%" y="773" width="0.3041%" height="15" fill="rgb(247,216,33)" fg:x="56771" fg:w="900"/><text x="19.4300%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,117 samples, 0.38%)</title><rect x="19.1073%" y="789" width="0.3774%" height="15" fill="rgb(226,26,14)" fg:x="56556" fg:w="1117"/><text x="19.3573%" y="799.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,295 samples, 0.44%)</title><rect x="19.0475%" y="805" width="0.4375%" height="15" fill="rgb(215,49,53)" fg:x="56379" fg:w="1295"/><text x="19.2975%" y="815.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (54 samples, 0.02%)</title><rect x="19.6269%" y="789" width="0.0182%" height="15" fill="rgb(245,162,40)" fg:x="58094" fg:w="54"/><text x="19.8769%" y="799.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (927 samples, 0.31%)</title><rect x="19.4854%" y="805" width="0.3132%" height="15" fill="rgb(229,68,17)" fg:x="57675" fg:w="927"/><text x="19.7354%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (454 samples, 0.15%)</title><rect x="19.6452%" y="789" width="0.1534%" height="15" fill="rgb(213,182,10)" fg:x="58148" fg:w="454"/><text x="19.8952%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (42 samples, 0.01%)</title><rect x="19.9128%" y="789" width="0.0142%" height="15" fill="rgb(245,125,30)" fg:x="58940" fg:w="42"/><text x="20.1628%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (73 samples, 0.02%)</title><rect x="19.9270%" y="789" width="0.0247%" height="15" fill="rgb(232,202,2)" fg:x="58982" fg:w="73"/><text x="20.1770%" y="799.50"></text></g><g><title>PhaseIFG::SquareUp (866 samples, 0.29%)</title><rect x="19.7986%" y="805" width="0.2926%" height="15" fill="rgb(237,140,51)" fg:x="58602" fg:w="866"/><text x="20.0486%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (413 samples, 0.14%)</title><rect x="19.9516%" y="789" width="0.1395%" height="15" fill="rgb(236,157,25)" fg:x="59055" fg:w="413"/><text x="20.2016%" y="799.50"></text></g><g><title>IndexSet::initialize (182 samples, 0.06%)</title><rect x="20.1310%" y="789" width="0.0615%" height="15" fill="rgb(219,209,0)" fg:x="59586" fg:w="182"/><text x="20.3810%" y="799.50"></text></g><g><title>[libc-2.31.so] (56 samples, 0.02%)</title><rect x="20.1925%" y="789" width="0.0189%" height="15" fill="rgb(240,116,54)" fg:x="59768" fg:w="56"/><text x="20.4425%" y="799.50"></text></g><g><title>PhaseIFG::init (357 samples, 0.12%)</title><rect x="20.0912%" y="805" width="0.1206%" height="15" fill="rgb(216,10,36)" fg:x="59468" fg:w="357"/><text x="20.3412%" y="815.50"></text></g><g><title>IndexSet::alloc_block_containing (66 samples, 0.02%)</title><rect x="20.6500%" y="789" width="0.0223%" height="15" fill="rgb(222,72,44)" fg:x="61122" fg:w="66"/><text x="20.9000%" y="799.50"></text></g><g><title>IndexSet::free_block (49 samples, 0.02%)</title><rect x="20.6723%" y="789" width="0.0166%" height="15" fill="rgb(232,159,9)" fg:x="61188" fg:w="49"/><text x="20.9223%" y="799.50"></text></g><g><title>IndexSet::initialize (115 samples, 0.04%)</title><rect x="20.6888%" y="789" width="0.0389%" height="15" fill="rgb(210,39,32)" fg:x="61237" fg:w="115"/><text x="20.9388%" y="799.50"></text></g><g><title>__tls_get_addr (75 samples, 0.03%)</title><rect x="21.0283%" y="757" width="0.0253%" height="15" fill="rgb(216,194,45)" fg:x="62242" fg:w="75"/><text x="21.2783%" y="767.50"></text></g><g><title>update_get_addr (39 samples, 0.01%)</title><rect x="21.0405%" y="741" width="0.0132%" height="15" fill="rgb(218,18,35)" fg:x="62278" fg:w="39"/><text x="21.2905%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (211 samples, 0.07%)</title><rect x="20.9861%" y="773" width="0.0713%" height="15" fill="rgb(207,83,51)" fg:x="62117" fg:w="211"/><text x="21.2361%" y="783.50"></text></g><g><title>IndexSet::initialize (47 samples, 0.02%)</title><rect x="21.0574%" y="773" width="0.0159%" height="15" fill="rgb(225,63,43)" fg:x="62328" fg:w="47"/><text x="21.3074%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (311 samples, 0.11%)</title><rect x="21.0753%" y="773" width="0.1051%" height="15" fill="rgb(207,57,36)" fg:x="62381" fg:w="311"/><text x="21.3253%" y="783.50"></text></g><g><title>PhaseLive::add_liveout (1,354 samples, 0.46%)</title><rect x="20.7297%" y="789" width="0.4574%" height="15" fill="rgb(216,99,33)" fg:x="61358" fg:w="1354"/><text x="20.9797%" y="799.50"></text></g><g><title>PhaseLive::compute (2,901 samples, 0.98%)</title><rect x="20.2118%" y="805" width="0.9801%" height="15" fill="rgb(225,42,16)" fg:x="59825" fg:w="2901"/><text x="20.4618%" y="815.50"></text></g><g><title>RegMask::Size (61 samples, 0.02%)</title><rect x="21.1942%" y="805" width="0.0206%" height="15" fill="rgb(220,201,45)" fg:x="62733" fg:w="61"/><text x="21.4442%" y="815.50"></text></g><g><title>find_lowest_bit (48 samples, 0.02%)</title><rect x="21.2267%" y="805" width="0.0162%" height="15" fill="rgb(225,33,4)" fg:x="62829" fg:w="48"/><text x="21.4767%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (33,108 samples, 11.19%)</title><rect x="10.0615%" y="821" width="11.1855%" height="15" fill="rgb(224,33,50)" fg:x="29781" fg:w="33108"/><text x="10.3115%" y="831.50">PhaseChaitin::Re..</text></g><g><title>PhasePeephole::do_transform (57 samples, 0.02%)</title><rect x="21.2496%" y="821" width="0.0193%" height="15" fill="rgb(246,198,51)" fg:x="62897" fg:w="57"/><text x="21.4996%" y="831.50"></text></g><g><title>Compile::Code_Gen (42,707 samples, 14.43%)</title><rect x="6.8411%" y="837" width="14.4285%" height="15" fill="rgb(205,22,4)" fg:x="20249" fg:w="42707"/><text x="7.0911%" y="847.50">Compile::Code_Gen</text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (35 samples, 0.01%)</title><rect x="21.2875%" y="341" width="0.0118%" height="15" fill="rgb(206,3,8)" fg:x="63009" fg:w="35"/><text x="21.5375%" y="351.50"></text></g><g><title>InlineTree::ok_to_inline (40 samples, 0.01%)</title><rect x="21.2865%" y="437" width="0.0135%" height="15" fill="rgb(251,23,15)" fg:x="63006" fg:w="40"/><text x="21.5365%" y="447.50"></text></g><g><title>ciMethod::get_flow_analysis (38 samples, 0.01%)</title><rect x="21.2871%" y="421" width="0.0128%" height="15" fill="rgb(252,88,28)" fg:x="63008" fg:w="38"/><text x="21.5371%" y="431.50"></text></g><g><title>ciTypeFlow::do_flow (38 samples, 0.01%)</title><rect x="21.2871%" y="405" width="0.0128%" height="15" fill="rgb(212,127,14)" fg:x="63008" fg:w="38"/><text x="21.5371%" y="415.50"></text></g><g><title>ciTypeFlow::flow_types (38 samples, 0.01%)</title><rect x="21.2871%" y="389" width="0.0128%" height="15" fill="rgb(247,145,37)" fg:x="63008" fg:w="38"/><text x="21.5371%" y="399.50"></text></g><g><title>ciTypeFlow::df_flow_types (38 samples, 0.01%)</title><rect x="21.2871%" y="373" width="0.0128%" height="15" fill="rgb(209,117,53)" fg:x="63008" fg:w="38"/><text x="21.5371%" y="383.50"></text></g><g><title>ciTypeFlow::flow_block (38 samples, 0.01%)</title><rect x="21.2871%" y="357" width="0.0128%" height="15" fill="rgb(212,90,42)" fg:x="63008" fg:w="38"/><text x="21.5371%" y="367.50"></text></g><g><title>Compile::call_generator (49 samples, 0.02%)</title><rect x="21.2838%" y="453" width="0.0166%" height="15" fill="rgb(218,164,37)" fg:x="62998" fg:w="49"/><text x="21.5338%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (32 samples, 0.01%)</title><rect x="21.3155%" y="277" width="0.0108%" height="15" fill="rgb(246,65,34)" fg:x="63092" fg:w="32"/><text x="21.5655%" y="287.50"></text></g><g><title>InlineTree::ok_to_inline (53 samples, 0.02%)</title><rect x="21.3088%" y="341" width="0.0179%" height="15" fill="rgb(231,100,33)" fg:x="63072" fg:w="53"/><text x="21.5588%" y="351.50"></text></g><g><title>ciMethod::get_flow_analysis (37 samples, 0.01%)</title><rect x="21.3142%" y="325" width="0.0125%" height="15" fill="rgb(228,126,14)" fg:x="63088" fg:w="37"/><text x="21.5642%" y="335.50"></text></g><g><title>ciTypeFlow::do_flow (35 samples, 0.01%)</title><rect x="21.3148%" y="309" width="0.0118%" height="15" fill="rgb(215,173,21)" fg:x="63090" fg:w="35"/><text x="21.5648%" y="319.50"></text></g><g><title>ciTypeFlow::flow_types (35 samples, 0.01%)</title><rect x="21.3148%" y="293" width="0.0118%" height="15" fill="rgb(210,6,40)" fg:x="63090" fg:w="35"/><text x="21.5648%" y="303.50"></text></g><g><title>Compile::call_generator (60 samples, 0.02%)</title><rect x="21.3067%" y="357" width="0.0203%" height="15" fill="rgb(212,48,18)" fg:x="63066" fg:w="60"/><text x="21.5567%" y="367.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.02%)</title><rect x="21.3996%" y="117" width="0.0196%" height="15" fill="rgb(230,214,11)" fg:x="63341" fg:w="58"/><text x="21.6496%" y="127.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.02%)</title><rect x="21.4007%" y="101" width="0.0186%" height="15" fill="rgb(254,105,39)" fg:x="63344" fg:w="55"/><text x="21.6507%" y="111.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.02%)</title><rect x="21.3993%" y="133" width="0.0203%" height="15" fill="rgb(245,158,5)" fg:x="63340" fg:w="60"/><text x="21.6493%" y="143.50"></text></g><g><title>ParseGenerator::generate (78 samples, 0.03%)</title><rect x="21.3963%" y="165" width="0.0264%" height="15" fill="rgb(249,208,11)" fg:x="63331" fg:w="78"/><text x="21.6463%" y="175.50"></text></g><g><title>Parse::Parse (78 samples, 0.03%)</title><rect x="21.3963%" y="149" width="0.0264%" height="15" fill="rgb(210,39,28)" fg:x="63331" fg:w="78"/><text x="21.6463%" y="159.50"></text></g><g><title>Parse::do_call (144 samples, 0.05%)</title><rect x="21.3787%" y="181" width="0.0487%" height="15" fill="rgb(211,56,53)" fg:x="63279" fg:w="144"/><text x="21.6287%" y="191.50"></text></g><g><title>Parse::do_field_access (34 samples, 0.01%)</title><rect x="21.4300%" y="181" width="0.0115%" height="15" fill="rgb(226,201,30)" fg:x="63431" fg:w="34"/><text x="21.6800%" y="191.50"></text></g><g><title>Parse::do_one_block (248 samples, 0.08%)</title><rect x="21.3716%" y="213" width="0.0838%" height="15" fill="rgb(239,101,34)" fg:x="63258" fg:w="248"/><text x="21.6216%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (243 samples, 0.08%)</title><rect x="21.3733%" y="197" width="0.0821%" height="15" fill="rgb(226,209,5)" fg:x="63263" fg:w="243"/><text x="21.6233%" y="207.50"></text></g><g><title>Parse::do_all_blocks (252 samples, 0.09%)</title><rect x="21.3713%" y="229" width="0.0851%" height="15" fill="rgb(250,105,47)" fg:x="63257" fg:w="252"/><text x="21.6213%" y="239.50"></text></g><g><title>ParseGenerator::generate (274 samples, 0.09%)</title><rect x="21.3675%" y="261" width="0.0926%" height="15" fill="rgb(230,72,3)" fg:x="63246" fg:w="274"/><text x="21.6175%" y="271.50"></text></g><g><title>Parse::Parse (274 samples, 0.09%)</title><rect x="21.3675%" y="245" width="0.0926%" height="15" fill="rgb(232,218,39)" fg:x="63246" fg:w="274"/><text x="21.6175%" y="255.50"></text></g><g><title>Parse::do_call (348 samples, 0.12%)</title><rect x="21.3513%" y="277" width="0.1176%" height="15" fill="rgb(248,166,6)" fg:x="63198" fg:w="348"/><text x="21.6013%" y="287.50"></text></g><g><title>Parse::do_field_access (43 samples, 0.01%)</title><rect x="21.4699%" y="277" width="0.0145%" height="15" fill="rgb(247,89,20)" fg:x="63549" fg:w="43"/><text x="21.7199%" y="287.50"></text></g><g><title>Parse::do_one_block (448 samples, 0.15%)</title><rect x="21.3442%" y="309" width="0.1514%" height="15" fill="rgb(248,130,54)" fg:x="63177" fg:w="448"/><text x="21.5942%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (444 samples, 0.15%)</title><rect x="21.3456%" y="293" width="0.1500%" height="15" fill="rgb(234,196,4)" fg:x="63181" fg:w="444"/><text x="21.5956%" y="303.50"></text></g><g><title>Parse::do_all_blocks (457 samples, 0.15%)</title><rect x="21.3436%" y="325" width="0.1544%" height="15" fill="rgb(250,143,31)" fg:x="63175" fg:w="457"/><text x="21.5936%" y="335.50"></text></g><g><title>ParseGenerator::generate (499 samples, 0.17%)</title><rect x="21.3378%" y="357" width="0.1686%" height="15" fill="rgb(211,110,34)" fg:x="63158" fg:w="499"/><text x="21.5878%" y="367.50"></text></g><g><title>Parse::Parse (499 samples, 0.17%)</title><rect x="21.3378%" y="341" width="0.1686%" height="15" fill="rgb(215,124,48)" fg:x="63158" fg:w="499"/><text x="21.5878%" y="351.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.01%)</title><rect x="21.5064%" y="357" width="0.0132%" height="15" fill="rgb(216,46,13)" fg:x="63657" fg:w="39"/><text x="21.7564%" y="367.50"></text></g><g><title>Parse::do_call (637 samples, 0.22%)</title><rect x="21.3067%" y="373" width="0.2152%" height="15" fill="rgb(205,184,25)" fg:x="63066" fg:w="637"/><text x="21.5567%" y="383.50"></text></g><g><title>Parse::do_field_access (52 samples, 0.02%)</title><rect x="21.5236%" y="373" width="0.0176%" height="15" fill="rgb(228,1,10)" fg:x="63708" fg:w="52"/><text x="21.7736%" y="383.50"></text></g><g><title>Parse::do_put_xxx (30 samples, 0.01%)</title><rect x="21.5311%" y="357" width="0.0101%" height="15" fill="rgb(213,116,27)" fg:x="63730" fg:w="30"/><text x="21.7811%" y="367.50"></text></g><g><title>Parse::do_all_blocks (737 samples, 0.25%)</title><rect x="21.3030%" y="421" width="0.2490%" height="15" fill="rgb(241,95,50)" fg:x="63055" fg:w="737"/><text x="21.5530%" y="431.50"></text></g><g><title>Parse::do_one_block (737 samples, 0.25%)</title><rect x="21.3030%" y="405" width="0.2490%" height="15" fill="rgb(238,48,32)" fg:x="63055" fg:w="737"/><text x="21.5530%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (735 samples, 0.25%)</title><rect x="21.3037%" y="389" width="0.2483%" height="15" fill="rgb(235,113,49)" fg:x="63057" fg:w="735"/><text x="21.5537%" y="399.50"></text></g><g><title>ParseGenerator::generate (746 samples, 0.25%)</title><rect x="21.3003%" y="453" width="0.2520%" height="15" fill="rgb(205,127,43)" fg:x="63047" fg:w="746"/><text x="21.5503%" y="463.50"></text></g><g><title>Parse::Parse (746 samples, 0.25%)</title><rect x="21.3003%" y="437" width="0.2520%" height="15" fill="rgb(250,162,2)" fg:x="63047" fg:w="746"/><text x="21.5503%" y="447.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="21.5523%" y="357" width="0.0125%" height="15" fill="rgb(220,13,41)" fg:x="63793" fg:w="37"/><text x="21.8023%" y="367.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.01%)</title><rect x="21.5523%" y="405" width="0.0139%" height="15" fill="rgb(249,221,25)" fg:x="63793" fg:w="41"/><text x="21.8023%" y="415.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.01%)</title><rect x="21.5523%" y="389" width="0.0139%" height="15" fill="rgb(215,208,19)" fg:x="63793" fg:w="41"/><text x="21.8023%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.01%)</title><rect x="21.5523%" y="373" width="0.0139%" height="15" fill="rgb(236,175,2)" fg:x="63793" fg:w="41"/><text x="21.8023%" y="383.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="21.5523%" y="437" width="0.0142%" height="15" fill="rgb(241,52,2)" fg:x="63793" fg:w="42"/><text x="21.8023%" y="447.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="21.5523%" y="421" width="0.0142%" height="15" fill="rgb(248,140,14)" fg:x="63793" fg:w="42"/><text x="21.8023%" y="431.50"></text></g><g><title>PredictedCallGenerator::generate (51 samples, 0.02%)</title><rect x="21.5523%" y="453" width="0.0172%" height="15" fill="rgb(253,22,42)" fg:x="63793" fg:w="51"/><text x="21.8023%" y="463.50"></text></g><g><title>Parse::do_call (851 samples, 0.29%)</title><rect x="21.2838%" y="469" width="0.2875%" height="15" fill="rgb(234,61,47)" fg:x="62998" fg:w="851"/><text x="21.5338%" y="479.50"></text></g><g><title>ParseGenerator::generate (865 samples, 0.29%)</title><rect x="21.2838%" y="549" width="0.2922%" height="15" fill="rgb(208,226,15)" fg:x="62998" fg:w="865"/><text x="21.5338%" y="559.50"></text></g><g><title>Parse::Parse (865 samples, 0.29%)</title><rect x="21.2838%" y="533" width="0.2922%" height="15" fill="rgb(217,221,4)" fg:x="62998" fg:w="865"/><text x="21.5338%" y="543.50"></text></g><g><title>Parse::do_all_blocks (865 samples, 0.29%)</title><rect x="21.2838%" y="517" width="0.2922%" height="15" fill="rgb(212,174,34)" fg:x="62998" fg:w="865"/><text x="21.5338%" y="527.50"></text></g><g><title>Parse::do_one_block (865 samples, 0.29%)</title><rect x="21.2838%" y="501" width="0.2922%" height="15" fill="rgb(253,83,4)" fg:x="62998" fg:w="865"/><text x="21.5338%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (865 samples, 0.29%)</title><rect x="21.2838%" y="485" width="0.2922%" height="15" fill="rgb(250,195,49)" fg:x="62998" fg:w="865"/><text x="21.5338%" y="495.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.01%)</title><rect x="21.5838%" y="293" width="0.0118%" height="15" fill="rgb(241,192,25)" fg:x="63886" fg:w="35"/><text x="21.8338%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.01%)</title><rect x="21.5841%" y="277" width="0.0115%" height="15" fill="rgb(208,124,10)" fg:x="63887" fg:w="34"/><text x="21.8341%" y="287.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.01%)</title><rect x="21.5838%" y="309" width="0.0125%" height="15" fill="rgb(222,33,0)" fg:x="63886" fg:w="37"/><text x="21.8338%" y="319.50"></text></g><g><title>ParseGenerator::generate (40 samples, 0.01%)</title><rect x="21.5838%" y="341" width="0.0135%" height="15" fill="rgb(234,209,28)" fg:x="63886" fg:w="40"/><text x="21.8338%" y="351.50"></text></g><g><title>Parse::Parse (40 samples, 0.01%)</title><rect x="21.5838%" y="325" width="0.0135%" height="15" fill="rgb(224,11,23)" fg:x="63886" fg:w="40"/><text x="21.8338%" y="335.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="21.5811%" y="357" width="0.0193%" height="15" fill="rgb(232,99,1)" fg:x="63878" fg:w="57"/><text x="21.8311%" y="367.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.02%)</title><rect x="21.5797%" y="437" width="0.0233%" height="15" fill="rgb(237,95,45)" fg:x="63874" fg:w="69"/><text x="21.8297%" y="447.50"></text></g><g><title>Parse::Parse (69 samples, 0.02%)</title><rect x="21.5797%" y="421" width="0.0233%" height="15" fill="rgb(208,109,11)" fg:x="63874" fg:w="69"/><text x="21.8297%" y="431.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.02%)</title><rect x="21.5811%" y="405" width="0.0220%" height="15" fill="rgb(216,190,48)" fg:x="63878" fg:w="65"/><text x="21.8311%" y="415.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.02%)</title><rect x="21.5811%" y="389" width="0.0220%" height="15" fill="rgb(251,171,36)" fg:x="63878" fg:w="65"/><text x="21.8311%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.02%)</title><rect x="21.5811%" y="373" width="0.0220%" height="15" fill="rgb(230,62,22)" fg:x="63878" fg:w="65"/><text x="21.8311%" y="383.50"></text></g><g><title>Parse::do_call (81 samples, 0.03%)</title><rect x="21.5760%" y="453" width="0.0274%" height="15" fill="rgb(225,114,35)" fg:x="63863" fg:w="81"/><text x="21.8260%" y="463.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.03%)</title><rect x="21.5760%" y="533" width="0.0284%" height="15" fill="rgb(215,118,42)" fg:x="63863" fg:w="84"/><text x="21.8260%" y="543.50"></text></g><g><title>Parse::Parse (84 samples, 0.03%)</title><rect x="21.5760%" y="517" width="0.0284%" height="15" fill="rgb(243,119,21)" fg:x="63863" fg:w="84"/><text x="21.8260%" y="527.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.03%)</title><rect x="21.5760%" y="501" width="0.0284%" height="15" fill="rgb(252,177,53)" fg:x="63863" fg:w="84"/><text x="21.8260%" y="511.50"></text></g><g><title>Parse::do_one_block (84 samples, 0.03%)</title><rect x="21.5760%" y="485" width="0.0284%" height="15" fill="rgb(237,209,29)" fg:x="63863" fg:w="84"/><text x="21.8260%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (84 samples, 0.03%)</title><rect x="21.5760%" y="469" width="0.0284%" height="15" fill="rgb(212,65,23)" fg:x="63863" fg:w="84"/><text x="21.8260%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (94 samples, 0.03%)</title><rect x="21.5760%" y="549" width="0.0318%" height="15" fill="rgb(230,222,46)" fg:x="63863" fg:w="94"/><text x="21.8260%" y="559.50"></text></g><g><title>Parse::do_call (993 samples, 0.34%)</title><rect x="21.2746%" y="565" width="0.3355%" height="15" fill="rgb(215,135,32)" fg:x="62971" fg:w="993"/><text x="21.5246%" y="575.50"></text></g><g><title>Parse::do_all_blocks (998 samples, 0.34%)</title><rect x="21.2746%" y="613" width="0.3372%" height="15" fill="rgb(246,101,22)" fg:x="62971" fg:w="998"/><text x="21.5246%" y="623.50"></text></g><g><title>Parse::do_one_block (998 samples, 0.34%)</title><rect x="21.2746%" y="597" width="0.3372%" height="15" fill="rgb(206,107,13)" fg:x="62971" fg:w="998"/><text x="21.5246%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (998 samples, 0.34%)</title><rect x="21.2746%" y="581" width="0.3372%" height="15" fill="rgb(250,100,44)" fg:x="62971" fg:w="998"/><text x="21.5246%" y="591.50"></text></g><g><title>ParseGenerator::generate (1,000 samples, 0.34%)</title><rect x="21.2743%" y="645" width="0.3378%" height="15" fill="rgb(231,147,38)" fg:x="62970" fg:w="1000"/><text x="21.5243%" y="655.50"></text></g><g><title>Parse::Parse (1,000 samples, 0.34%)</title><rect x="21.2743%" y="629" width="0.3378%" height="15" fill="rgb(229,8,40)" fg:x="62970" fg:w="1000"/><text x="21.5243%" y="639.50"></text></g><g><title>Parse::do_call (34 samples, 0.01%)</title><rect x="21.6159%" y="357" width="0.0115%" height="15" fill="rgb(221,135,30)" fg:x="63981" fg:w="34"/><text x="21.8659%" y="367.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.02%)</title><rect x="21.6152%" y="437" width="0.0159%" height="15" fill="rgb(249,193,18)" fg:x="63979" fg:w="47"/><text x="21.8652%" y="447.50"></text></g><g><title>Parse::Parse (47 samples, 0.02%)</title><rect x="21.6152%" y="421" width="0.0159%" height="15" fill="rgb(209,133,39)" fg:x="63979" fg:w="47"/><text x="21.8652%" y="431.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="21.6155%" y="405" width="0.0155%" height="15" fill="rgb(232,100,14)" fg:x="63980" fg:w="46"/><text x="21.8655%" y="415.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="21.6155%" y="389" width="0.0155%" height="15" fill="rgb(224,185,1)" fg:x="63980" fg:w="46"/><text x="21.8655%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.02%)</title><rect x="21.6155%" y="373" width="0.0155%" height="15" fill="rgb(223,139,8)" fg:x="63980" fg:w="46"/><text x="21.8655%" y="383.50"></text></g><g><title>Parse::do_call (73 samples, 0.02%)</title><rect x="21.6132%" y="453" width="0.0247%" height="15" fill="rgb(232,213,38)" fg:x="63973" fg:w="73"/><text x="21.8632%" y="463.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.03%)</title><rect x="21.6132%" y="533" width="0.0267%" height="15" fill="rgb(207,94,22)" fg:x="63973" fg:w="79"/><text x="21.8632%" y="543.50"></text></g><g><title>Parse::Parse (79 samples, 0.03%)</title><rect x="21.6132%" y="517" width="0.0267%" height="15" fill="rgb(219,183,54)" fg:x="63973" fg:w="79"/><text x="21.8632%" y="527.50"></text></g><g><title>Parse::do_all_blocks (79 samples, 0.03%)</title><rect x="21.6132%" y="501" width="0.0267%" height="15" fill="rgb(216,185,54)" fg:x="63973" fg:w="79"/><text x="21.8632%" y="511.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.03%)</title><rect x="21.6132%" y="485" width="0.0267%" height="15" fill="rgb(254,217,39)" fg:x="63973" fg:w="79"/><text x="21.8632%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (79 samples, 0.03%)</title><rect x="21.6132%" y="469" width="0.0267%" height="15" fill="rgb(240,178,23)" fg:x="63973" fg:w="79"/><text x="21.8632%" y="479.50"></text></g><g><title>ParseGenerator::generate (90 samples, 0.03%)</title><rect x="21.6121%" y="629" width="0.0304%" height="15" fill="rgb(218,11,47)" fg:x="63970" fg:w="90"/><text x="21.8621%" y="639.50"></text></g><g><title>Parse::Parse (90 samples, 0.03%)</title><rect x="21.6121%" y="613" width="0.0304%" height="15" fill="rgb(218,51,51)" fg:x="63970" fg:w="90"/><text x="21.8621%" y="623.50"></text></g><g><title>Parse::do_all_blocks (90 samples, 0.03%)</title><rect x="21.6121%" y="597" width="0.0304%" height="15" fill="rgb(238,126,27)" fg:x="63970" fg:w="90"/><text x="21.8621%" y="607.50"></text></g><g><title>Parse::do_one_block (90 samples, 0.03%)</title><rect x="21.6121%" y="581" width="0.0304%" height="15" fill="rgb(249,202,22)" fg:x="63970" fg:w="90"/><text x="21.8621%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (90 samples, 0.03%)</title><rect x="21.6121%" y="565" width="0.0304%" height="15" fill="rgb(254,195,49)" fg:x="63970" fg:w="90"/><text x="21.8621%" y="575.50"></text></g><g><title>Parse::do_call (90 samples, 0.03%)</title><rect x="21.6121%" y="549" width="0.0304%" height="15" fill="rgb(208,123,14)" fg:x="63970" fg:w="90"/><text x="21.8621%" y="559.50"></text></g><g><title>ParseGenerator::generate (1,101 samples, 0.37%)</title><rect x="21.2736%" y="741" width="0.3720%" height="15" fill="rgb(224,200,8)" fg:x="62968" fg:w="1101"/><text x="21.5236%" y="751.50"></text></g><g><title>Parse::Parse (1,101 samples, 0.37%)</title><rect x="21.2736%" y="725" width="0.3720%" height="15" fill="rgb(217,61,36)" fg:x="62968" fg:w="1101"/><text x="21.5236%" y="735.50"></text></g><g><title>Parse::do_all_blocks (1,101 samples, 0.37%)</title><rect x="21.2736%" y="709" width="0.3720%" height="15" fill="rgb(206,35,45)" fg:x="62968" fg:w="1101"/><text x="21.5236%" y="719.50"></text></g><g><title>Parse::do_one_block (1,101 samples, 0.37%)</title><rect x="21.2736%" y="693" width="0.3720%" height="15" fill="rgb(217,65,33)" fg:x="62968" fg:w="1101"/><text x="21.5236%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (1,101 samples, 0.37%)</title><rect x="21.2736%" y="677" width="0.3720%" height="15" fill="rgb(222,158,48)" fg:x="62968" fg:w="1101"/><text x="21.5236%" y="687.50"></text></g><g><title>Parse::do_call (1,101 samples, 0.37%)</title><rect x="21.2736%" y="661" width="0.3720%" height="15" fill="rgb(254,2,54)" fg:x="62968" fg:w="1101"/><text x="21.5236%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (99 samples, 0.03%)</title><rect x="21.6121%" y="645" width="0.0334%" height="15" fill="rgb(250,143,38)" fg:x="63970" fg:w="99"/><text x="21.8621%" y="655.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="21.6709%" y="261" width="0.0125%" height="15" fill="rgb(248,25,0)" fg:x="64144" fg:w="37"/><text x="21.9209%" y="271.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.02%)</title><rect x="21.6696%" y="293" width="0.0247%" height="15" fill="rgb(206,152,27)" fg:x="64140" fg:w="73"/><text x="21.9196%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.02%)</title><rect x="21.6706%" y="277" width="0.0236%" height="15" fill="rgb(240,77,30)" fg:x="64143" fg:w="70"/><text x="21.9206%" y="287.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.03%)</title><rect x="21.6696%" y="309" width="0.0250%" height="15" fill="rgb(231,5,3)" fg:x="64140" fg:w="74"/><text x="21.9196%" y="319.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.03%)</title><rect x="21.6682%" y="341" width="0.0277%" height="15" fill="rgb(207,226,32)" fg:x="64136" fg:w="82"/><text x="21.9182%" y="351.50"></text></g><g><title>Parse::Parse (82 samples, 0.03%)</title><rect x="21.6682%" y="325" width="0.0277%" height="15" fill="rgb(222,207,47)" fg:x="64136" fg:w="82"/><text x="21.9182%" y="335.50"></text></g><g><title>Parse::do_call (117 samples, 0.04%)</title><rect x="21.6601%" y="357" width="0.0395%" height="15" fill="rgb(229,115,45)" fg:x="64112" fg:w="117"/><text x="21.9101%" y="367.50"></text></g><g><title>Parse::do_one_block (149 samples, 0.05%)</title><rect x="21.6598%" y="389" width="0.0503%" height="15" fill="rgb(224,191,6)" fg:x="64111" fg:w="149"/><text x="21.9098%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (149 samples, 0.05%)</title><rect x="21.6598%" y="373" width="0.0503%" height="15" fill="rgb(230,227,24)" fg:x="64111" fg:w="149"/><text x="21.9098%" y="383.50"></text></g><g><title>Parse::do_all_blocks (151 samples, 0.05%)</title><rect x="21.6598%" y="405" width="0.0510%" height="15" fill="rgb(228,80,19)" fg:x="64111" fg:w="151"/><text x="21.9098%" y="415.50"></text></g><g><title>ParseGenerator::generate (153 samples, 0.05%)</title><rect x="21.6594%" y="437" width="0.0517%" height="15" fill="rgb(247,229,0)" fg:x="64110" fg:w="153"/><text x="21.9094%" y="447.50"></text></g><g><title>Parse::Parse (153 samples, 0.05%)</title><rect x="21.6594%" y="421" width="0.0517%" height="15" fill="rgb(237,194,15)" fg:x="64110" fg:w="153"/><text x="21.9094%" y="431.50"></text></g><g><title>PredictedCallGenerator::generate (32 samples, 0.01%)</title><rect x="21.7111%" y="437" width="0.0108%" height="15" fill="rgb(219,203,20)" fg:x="64263" fg:w="32"/><text x="21.9611%" y="447.50"></text></g><g><title>Parse::do_call (200 samples, 0.07%)</title><rect x="21.6551%" y="453" width="0.0676%" height="15" fill="rgb(234,128,8)" fg:x="64097" fg:w="200"/><text x="21.9051%" y="463.50"></text></g><g><title>ParseGenerator::generate (210 samples, 0.07%)</title><rect x="21.6551%" y="533" width="0.0709%" height="15" fill="rgb(248,202,8)" fg:x="64097" fg:w="210"/><text x="21.9051%" y="543.50"></text></g><g><title>Parse::Parse (210 samples, 0.07%)</title><rect x="21.6551%" y="517" width="0.0709%" height="15" fill="rgb(206,104,37)" fg:x="64097" fg:w="210"/><text x="21.9051%" y="527.50"></text></g><g><title>Parse::do_all_blocks (210 samples, 0.07%)</title><rect x="21.6551%" y="501" width="0.0709%" height="15" fill="rgb(223,8,27)" fg:x="64097" fg:w="210"/><text x="21.9051%" y="511.50"></text></g><g><title>Parse::do_one_block (210 samples, 0.07%)</title><rect x="21.6551%" y="485" width="0.0709%" height="15" fill="rgb(216,217,28)" fg:x="64097" fg:w="210"/><text x="21.9051%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (210 samples, 0.07%)</title><rect x="21.6551%" y="469" width="0.0709%" height="15" fill="rgb(249,199,1)" fg:x="64097" fg:w="210"/><text x="21.9051%" y="479.50"></text></g><g><title>Parse::do_call (259 samples, 0.09%)</title><rect x="21.6456%" y="549" width="0.0875%" height="15" fill="rgb(240,85,17)" fg:x="64069" fg:w="259"/><text x="21.8956%" y="559.50"></text></g><g><title>ParseGenerator::generate (260 samples, 0.09%)</title><rect x="21.6456%" y="629" width="0.0878%" height="15" fill="rgb(206,108,45)" fg:x="64069" fg:w="260"/><text x="21.8956%" y="639.50"></text></g><g><title>Parse::Parse (260 samples, 0.09%)</title><rect x="21.6456%" y="613" width="0.0878%" height="15" fill="rgb(245,210,41)" fg:x="64069" fg:w="260"/><text x="21.8956%" y="623.50"></text></g><g><title>Parse::do_all_blocks (260 samples, 0.09%)</title><rect x="21.6456%" y="597" width="0.0878%" height="15" fill="rgb(206,13,37)" fg:x="64069" fg:w="260"/><text x="21.8956%" y="607.50"></text></g><g><title>Parse::do_one_block (260 samples, 0.09%)</title><rect x="21.6456%" y="581" width="0.0878%" height="15" fill="rgb(250,61,18)" fg:x="64069" fg:w="260"/><text x="21.8956%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (260 samples, 0.09%)</title><rect x="21.6456%" y="565" width="0.0878%" height="15" fill="rgb(235,172,48)" fg:x="64069" fg:w="260"/><text x="21.8956%" y="575.50"></text></g><g><title>ParseGenerator::generate (283 samples, 0.10%)</title><rect x="21.6456%" y="725" width="0.0956%" height="15" fill="rgb(249,201,17)" fg:x="64069" fg:w="283"/><text x="21.8956%" y="735.50"></text></g><g><title>Parse::Parse (283 samples, 0.10%)</title><rect x="21.6456%" y="709" width="0.0956%" height="15" fill="rgb(219,208,6)" fg:x="64069" fg:w="283"/><text x="21.8956%" y="719.50"></text></g><g><title>Parse::do_all_blocks (283 samples, 0.10%)</title><rect x="21.6456%" y="693" width="0.0956%" height="15" fill="rgb(248,31,23)" fg:x="64069" fg:w="283"/><text x="21.8956%" y="703.50"></text></g><g><title>Parse::do_one_block (283 samples, 0.10%)</title><rect x="21.6456%" y="677" width="0.0956%" height="15" fill="rgb(245,15,42)" fg:x="64069" fg:w="283"/><text x="21.8956%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (283 samples, 0.10%)</title><rect x="21.6456%" y="661" width="0.0956%" height="15" fill="rgb(222,217,39)" fg:x="64069" fg:w="283"/><text x="21.8956%" y="671.50"></text></g><g><title>Parse::do_call (283 samples, 0.10%)</title><rect x="21.6456%" y="645" width="0.0956%" height="15" fill="rgb(210,219,27)" fg:x="64069" fg:w="283"/><text x="21.8956%" y="655.50"></text></g><g><title>Compile::Compile (44,134 samples, 14.91%)</title><rect x="6.8411%" y="853" width="14.9106%" height="15" fill="rgb(252,166,36)" fg:x="20249" fg:w="44134"/><text x="7.0911%" y="863.50">Compile::Compile</text></g><g><title>ParseGenerator::generate (1,422 samples, 0.48%)</title><rect x="21.2713%" y="837" width="0.4804%" height="15" fill="rgb(245,132,34)" fg:x="62961" fg:w="1422"/><text x="21.5213%" y="847.50"></text></g><g><title>Parse::Parse (1,422 samples, 0.48%)</title><rect x="21.2713%" y="821" width="0.4804%" height="15" fill="rgb(236,54,3)" fg:x="62961" fg:w="1422"/><text x="21.5213%" y="831.50"></text></g><g><title>Parse::do_all_blocks (1,422 samples, 0.48%)</title><rect x="21.2713%" y="805" width="0.4804%" height="15" fill="rgb(241,173,43)" fg:x="62961" fg:w="1422"/><text x="21.5213%" y="815.50"></text></g><g><title>Parse::do_one_block (1,422 samples, 0.48%)</title><rect x="21.2713%" y="789" width="0.4804%" height="15" fill="rgb(215,190,9)" fg:x="62961" fg:w="1422"/><text x="21.5213%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (1,422 samples, 0.48%)</title><rect x="21.2713%" y="773" width="0.4804%" height="15" fill="rgb(242,101,16)" fg:x="62961" fg:w="1422"/><text x="21.5213%" y="783.50"></text></g><g><title>Parse::do_call (1,422 samples, 0.48%)</title><rect x="21.2713%" y="757" width="0.4804%" height="15" fill="rgb(223,190,21)" fg:x="62961" fg:w="1422"/><text x="21.5213%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (314 samples, 0.11%)</title><rect x="21.6456%" y="741" width="0.1061%" height="15" fill="rgb(215,228,25)" fg:x="64069" fg:w="314"/><text x="21.8956%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (31 samples, 0.01%)</title><rect x="21.7412%" y="725" width="0.0105%" height="15" fill="rgb(225,36,22)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="735.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.01%)</title><rect x="21.7412%" y="709" width="0.0105%" height="15" fill="rgb(251,106,46)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="719.50"></text></g><g><title>Parse::Parse (31 samples, 0.01%)</title><rect x="21.7412%" y="693" width="0.0105%" height="15" fill="rgb(208,90,1)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="703.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="21.7412%" y="677" width="0.0105%" height="15" fill="rgb(243,10,4)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="687.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.01%)</title><rect x="21.7412%" y="661" width="0.0105%" height="15" fill="rgb(212,137,27)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="21.7412%" y="645" width="0.0105%" height="15" fill="rgb(231,220,49)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="655.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="21.7412%" y="629" width="0.0105%" height="15" fill="rgb(237,96,20)" fg:x="64352" fg:w="31"/><text x="21.9912%" y="639.50"></text></g><g><title>Compile::final_graph_reshaping_impl (138 samples, 0.05%)</title><rect x="21.8057%" y="805" width="0.0466%" height="15" fill="rgb(239,229,30)" fg:x="64543" fg:w="138"/><text x="22.0557%" y="815.50"></text></g><g><title>Compile::final_graph_reshaping_walk (310 samples, 0.10%)</title><rect x="21.7551%" y="821" width="0.1047%" height="15" fill="rgb(219,65,33)" fg:x="64393" fg:w="310"/><text x="22.0051%" y="831.50"></text></g><g><title>Compile::final_graph_reshaping (318 samples, 0.11%)</title><rect x="21.7530%" y="837" width="0.1074%" height="15" fill="rgb(243,134,7)" fg:x="64387" fg:w="318"/><text x="22.0030%" y="847.50"></text></g><g><title>Compile::inline_incrementally_one (48 samples, 0.02%)</title><rect x="21.8605%" y="821" width="0.0162%" height="15" fill="rgb(216,177,54)" fg:x="64705" fg:w="48"/><text x="22.1105%" y="831.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (36 samples, 0.01%)</title><rect x="21.8645%" y="805" width="0.0122%" height="15" fill="rgb(211,160,20)" fg:x="64717" fg:w="36"/><text x="22.1145%" y="815.50"></text></g><g><title>Compile::inline_incrementally (50 samples, 0.02%)</title><rect x="21.8605%" y="837" width="0.0169%" height="15" fill="rgb(239,85,39)" fg:x="64705" fg:w="50"/><text x="22.1105%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (40 samples, 0.01%)</title><rect x="21.9365%" y="821" width="0.0135%" height="15" fill="rgb(232,125,22)" fg:x="64930" fg:w="40"/><text x="22.1865%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (39 samples, 0.01%)</title><rect x="21.9368%" y="805" width="0.0132%" height="15" fill="rgb(244,57,34)" fg:x="64931" fg:w="39"/><text x="22.1868%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (42 samples, 0.01%)</title><rect x="21.9500%" y="821" width="0.0142%" height="15" fill="rgb(214,203,32)" fg:x="64970" fg:w="42"/><text x="22.2000%" y="831.50"></text></g><g><title>Compile::remove_speculative_types (258 samples, 0.09%)</title><rect x="21.8807%" y="837" width="0.0872%" height="15" fill="rgb(207,58,43)" fg:x="64765" fg:w="258"/><text x="22.1307%" y="847.50"></text></g><g><title>ConnectionGraph::add_call_node (32 samples, 0.01%)</title><rect x="22.0040%" y="805" width="0.0108%" height="15" fill="rgb(215,193,15)" fg:x="65130" fg:w="32"/><text x="22.2540%" y="815.50"></text></g><g><title>ciMethod::get_bcea (32 samples, 0.01%)</title><rect x="22.0040%" y="789" width="0.0108%" height="15" fill="rgb(232,15,44)" fg:x="65130" fg:w="32"/><text x="22.2540%" y="799.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (32 samples, 0.01%)</title><rect x="22.0040%" y="773" width="0.0108%" height="15" fill="rgb(212,3,48)" fg:x="65130" fg:w="32"/><text x="22.2540%" y="783.50"></text></g><g><title>ConnectionGraph::add_final_edges (42 samples, 0.01%)</title><rect x="22.0149%" y="805" width="0.0142%" height="15" fill="rgb(218,128,7)" fg:x="65162" fg:w="42"/><text x="22.2649%" y="815.50"></text></g><g><title>ConnectionGraph::add_field (30 samples, 0.01%)</title><rect x="22.0470%" y="789" width="0.0101%" height="15" fill="rgb(226,216,39)" fg:x="65257" fg:w="30"/><text x="22.2970%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (91 samples, 0.03%)</title><rect x="22.0311%" y="805" width="0.0307%" height="15" fill="rgb(243,47,51)" fg:x="65210" fg:w="91"/><text x="22.2811%" y="815.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (66 samples, 0.02%)</title><rect x="22.0767%" y="789" width="0.0223%" height="15" fill="rgb(241,183,40)" fg:x="65345" fg:w="66"/><text x="22.3267%" y="799.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (162 samples, 0.05%)</title><rect x="22.0635%" y="805" width="0.0547%" height="15" fill="rgb(231,217,32)" fg:x="65306" fg:w="162"/><text x="22.3135%" y="815.50"></text></g><g><title>ConnectionGraph::split_memory_phi (36 samples, 0.01%)</title><rect x="22.1557%" y="709" width="0.0122%" height="15" fill="rgb(229,61,38)" fg:x="65579" fg:w="36"/><text x="22.4057%" y="719.50"></text></g><g><title>ConnectionGraph::split_memory_phi (53 samples, 0.02%)</title><rect x="22.1503%" y="741" width="0.0179%" height="15" fill="rgb(225,210,5)" fg:x="65563" fg:w="53"/><text x="22.4003%" y="751.50"></text></g><g><title>ConnectionGraph::find_inst_mem (49 samples, 0.02%)</title><rect x="22.1517%" y="725" width="0.0166%" height="15" fill="rgb(231,79,45)" fg:x="65567" fg:w="49"/><text x="22.4017%" y="735.50"></text></g><g><title>ConnectionGraph::split_memory_phi (98 samples, 0.03%)</title><rect x="22.1361%" y="773" width="0.0331%" height="15" fill="rgb(224,100,7)" fg:x="65521" fg:w="98"/><text x="22.3861%" y="783.50"></text></g><g><title>ConnectionGraph::find_inst_mem (70 samples, 0.02%)</title><rect x="22.1456%" y="757" width="0.0236%" height="15" fill="rgb(241,198,18)" fg:x="65549" fg:w="70"/><text x="22.3956%" y="767.50"></text></g><g><title>ConnectionGraph::find_inst_mem (127 samples, 0.04%)</title><rect x="22.1277%" y="789" width="0.0429%" height="15" fill="rgb(252,97,53)" fg:x="65496" fg:w="127"/><text x="22.3777%" y="799.50"></text></g><g><title>ConnectionGraph::split_unique_types (168 samples, 0.06%)</title><rect x="22.1233%" y="805" width="0.0568%" height="15" fill="rgb(220,88,7)" fg:x="65483" fg:w="168"/><text x="22.3733%" y="815.50"></text></g><g><title>ConnectionGraph::compute_escape (627 samples, 0.21%)</title><rect x="21.9706%" y="821" width="0.2118%" height="15" fill="rgb(213,176,14)" fg:x="65031" fg:w="627"/><text x="22.2206%" y="831.50"></text></g><g><title>ConnectionGraph::do_analysis (635 samples, 0.21%)</title><rect x="21.9686%" y="837" width="0.2145%" height="15" fill="rgb(246,73,7)" fg:x="65025" fg:w="635"/><text x="22.2186%" y="847.50"></text></g><g><title>LoadNode::Value (30 samples, 0.01%)</title><rect x="22.3557%" y="821" width="0.0101%" height="15" fill="rgb(245,64,36)" fg:x="66171" fg:w="30"/><text x="22.6057%" y="831.50"></text></g><g><title>PhiNode::Value (45 samples, 0.02%)</title><rect x="22.3737%" y="821" width="0.0152%" height="15" fill="rgb(245,80,10)" fg:x="66224" fg:w="45"/><text x="22.6237%" y="831.50"></text></g><g><title>TypeInstPtr::add_offset (52 samples, 0.02%)</title><rect x="22.4149%" y="821" width="0.0176%" height="15" fill="rgb(232,107,50)" fg:x="66346" fg:w="52"/><text x="22.6649%" y="831.50"></text></g><g><title>TypeInstPtr::make (33 samples, 0.01%)</title><rect x="22.4213%" y="805" width="0.0111%" height="15" fill="rgb(253,3,0)" fg:x="66365" fg:w="33"/><text x="22.6713%" y="815.50"></text></g><g><title>PhaseCCP::analyze (783 samples, 0.26%)</title><rect x="22.1838%" y="837" width="0.2645%" height="15" fill="rgb(212,99,53)" fg:x="65662" fg:w="783"/><text x="22.4338%" y="847.50"></text></g><g><title>PhaseCCP::transform_once (108 samples, 0.04%)</title><rect x="22.4858%" y="805" width="0.0365%" height="15" fill="rgb(249,111,54)" fg:x="66556" fg:w="108"/><text x="22.7358%" y="815.50"></text></g><g><title>PhaseCCP::do_transform (223 samples, 0.08%)</title><rect x="22.4483%" y="837" width="0.0753%" height="15" fill="rgb(249,55,30)" fg:x="66445" fg:w="223"/><text x="22.6983%" y="847.50"></text></g><g><title>PhaseCCP::transform (223 samples, 0.08%)</title><rect x="22.4483%" y="821" width="0.0753%" height="15" fill="rgb(237,47,42)" fg:x="66445" fg:w="223"/><text x="22.6983%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (39 samples, 0.01%)</title><rect x="22.5487%" y="789" width="0.0132%" height="15" fill="rgb(211,20,18)" fg:x="66742" fg:w="39"/><text x="22.7987%" y="799.50"></text></g><g><title>IdealLoopTree::counted_loop (59 samples, 0.02%)</title><rect x="22.5480%" y="821" width="0.0199%" height="15" fill="rgb(231,203,46)" fg:x="66740" fg:w="59"/><text x="22.7980%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (58 samples, 0.02%)</title><rect x="22.5483%" y="805" width="0.0196%" height="15" fill="rgb(237,142,3)" fg:x="66741" fg:w="58"/><text x="22.7983%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (35 samples, 0.01%)</title><rect x="22.5743%" y="661" width="0.0118%" height="15" fill="rgb(241,107,1)" fg:x="66818" fg:w="35"/><text x="22.8243%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (37 samples, 0.01%)</title><rect x="22.5743%" y="677" width="0.0125%" height="15" fill="rgb(229,83,13)" fg:x="66818" fg:w="37"/><text x="22.8243%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (42 samples, 0.01%)</title><rect x="22.5743%" y="693" width="0.0142%" height="15" fill="rgb(241,91,40)" fg:x="66818" fg:w="42"/><text x="22.8243%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (47 samples, 0.02%)</title><rect x="22.5743%" y="709" width="0.0159%" height="15" fill="rgb(225,3,45)" fg:x="66818" fg:w="47"/><text x="22.8243%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (59 samples, 0.02%)</title><rect x="22.5740%" y="725" width="0.0199%" height="15" fill="rgb(244,223,14)" fg:x="66817" fg:w="59"/><text x="22.8240%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (74 samples, 0.03%)</title><rect x="22.5737%" y="741" width="0.0250%" height="15" fill="rgb(224,124,37)" fg:x="66816" fg:w="74"/><text x="22.8237%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (90 samples, 0.03%)</title><rect x="22.5733%" y="757" width="0.0304%" height="15" fill="rgb(251,171,30)" fg:x="66815" fg:w="90"/><text x="22.8233%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (117 samples, 0.04%)</title><rect x="22.5730%" y="773" width="0.0395%" height="15" fill="rgb(236,46,54)" fg:x="66814" fg:w="117"/><text x="22.8230%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_unroll (31 samples, 0.01%)</title><rect x="22.6156%" y="757" width="0.0105%" height="15" fill="rgb(245,213,5)" fg:x="66940" fg:w="31"/><text x="22.8656%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (47 samples, 0.02%)</title><rect x="22.6125%" y="773" width="0.0159%" height="15" fill="rgb(230,144,27)" fg:x="66931" fg:w="47"/><text x="22.8625%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (174 samples, 0.06%)</title><rect x="22.5716%" y="789" width="0.0588%" height="15" fill="rgb(220,86,6)" fg:x="66810" fg:w="174"/><text x="22.8216%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (40 samples, 0.01%)</title><rect x="22.6304%" y="789" width="0.0135%" height="15" fill="rgb(240,20,13)" fg:x="66984" fg:w="40"/><text x="22.8804%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (223 samples, 0.08%)</title><rect x="22.5703%" y="805" width="0.0753%" height="15" fill="rgb(217,89,34)" fg:x="66806" fg:w="223"/><text x="22.8203%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (251 samples, 0.08%)</title><rect x="22.5679%" y="821" width="0.0848%" height="15" fill="rgb(229,13,5)" fg:x="66799" fg:w="251"/><text x="22.8179%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (31 samples, 0.01%)</title><rect x="22.6531%" y="789" width="0.0105%" height="15" fill="rgb(244,67,35)" fg:x="67051" fg:w="31"/><text x="22.9031%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (81 samples, 0.03%)</title><rect x="22.6531%" y="805" width="0.0274%" height="15" fill="rgb(221,40,2)" fg:x="67051" fg:w="81"/><text x="22.9031%" y="815.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (50 samples, 0.02%)</title><rect x="22.6635%" y="789" width="0.0169%" height="15" fill="rgb(237,157,21)" fg:x="67082" fg:w="50"/><text x="22.9135%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (50 samples, 0.02%)</title><rect x="22.6895%" y="789" width="0.0169%" height="15" fill="rgb(222,94,11)" fg:x="67159" fg:w="50"/><text x="22.9395%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (48 samples, 0.02%)</title><rect x="22.7064%" y="789" width="0.0162%" height="15" fill="rgb(249,113,6)" fg:x="67209" fg:w="48"/><text x="22.9564%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (225 samples, 0.08%)</title><rect x="22.6527%" y="821" width="0.0760%" height="15" fill="rgb(238,137,36)" fg:x="67050" fg:w="225"/><text x="22.9027%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (143 samples, 0.05%)</title><rect x="22.6804%" y="805" width="0.0483%" height="15" fill="rgb(210,102,26)" fg:x="67132" fg:w="143"/><text x="22.9304%" y="815.50"></text></g><g><title>NTarjan::DFS (346 samples, 0.12%)</title><rect x="23.0135%" y="805" width="0.1169%" height="15" fill="rgb(218,30,30)" fg:x="68118" fg:w="346"/><text x="23.2635%" y="815.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,201 samples, 0.41%)</title><rect x="22.7463%" y="821" width="0.4058%" height="15" fill="rgb(214,67,26)" fg:x="67327" fg:w="1201"/><text x="22.9963%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_depth (70 samples, 0.02%)</title><rect x="23.6277%" y="773" width="0.0236%" height="15" fill="rgb(251,9,53)" fg:x="69936" fg:w="70"/><text x="23.8777%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (406 samples, 0.14%)</title><rect x="23.5771%" y="789" width="0.1372%" height="15" fill="rgb(228,204,25)" fg:x="69786" fg:w="406"/><text x="23.8271%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (186 samples, 0.06%)</title><rect x="23.6514%" y="773" width="0.0628%" height="15" fill="rgb(207,153,8)" fg:x="70006" fg:w="186"/><text x="23.9014%" y="783.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (441 samples, 0.15%)</title><rect x="23.5656%" y="805" width="0.1490%" height="15" fill="rgb(242,9,16)" fg:x="69752" fg:w="441"/><text x="23.8156%" y="815.50"></text></g><g><title>PhiNode::pinned (35 samples, 0.01%)</title><rect x="23.7149%" y="805" width="0.0118%" height="15" fill="rgb(217,211,10)" fg:x="70194" fg:w="35"/><text x="23.9649%" y="815.50"></text></g><g><title>ProjNode::pinned (31 samples, 0.01%)</title><rect x="23.7274%" y="805" width="0.0105%" height="15" fill="rgb(219,228,52)" fg:x="70231" fg:w="31"/><text x="23.9774%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,768 samples, 0.60%)</title><rect x="23.1521%" y="821" width="0.5973%" height="15" fill="rgb(231,92,29)" fg:x="68528" fg:w="1768"/><text x="23.4021%" y="831.50"></text></g><g><title>Node::unique_ctrl_out (89 samples, 0.03%)</title><rect x="24.4311%" y="789" width="0.0301%" height="15" fill="rgb(232,8,23)" fg:x="72314" fg:w="89"/><text x="24.6811%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (105 samples, 0.04%)</title><rect x="24.4612%" y="789" width="0.0355%" height="15" fill="rgb(216,211,34)" fg:x="72403" fg:w="105"/><text x="24.7112%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (64 samples, 0.02%)</title><rect x="24.7352%" y="741" width="0.0216%" height="15" fill="rgb(236,151,0)" fg:x="73214" fg:w="64"/><text x="24.9852%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (288 samples, 0.10%)</title><rect x="24.7089%" y="757" width="0.0973%" height="15" fill="rgb(209,168,3)" fg:x="73136" fg:w="288"/><text x="24.9589%" y="767.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (146 samples, 0.05%)</title><rect x="24.7568%" y="741" width="0.0493%" height="15" fill="rgb(208,129,28)" fg:x="73278" fg:w="146"/><text x="25.0068%" y="751.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (419 samples, 0.14%)</title><rect x="24.6751%" y="773" width="0.1416%" height="15" fill="rgb(229,78,22)" fg:x="73036" fg:w="419"/><text x="24.9251%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (31 samples, 0.01%)</title><rect x="24.8062%" y="757" width="0.0105%" height="15" fill="rgb(228,187,13)" fg:x="73424" fg:w="31"/><text x="25.0562%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (44 samples, 0.01%)</title><rect x="24.8504%" y="757" width="0.0149%" height="15" fill="rgb(240,119,24)" fg:x="73555" fg:w="44"/><text x="25.1004%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (158 samples, 0.05%)</title><rect x="24.8170%" y="773" width="0.0534%" height="15" fill="rgb(209,194,42)" fg:x="73456" fg:w="158"/><text x="25.0670%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (577 samples, 0.19%)</title><rect x="25.5788%" y="757" width="0.1949%" height="15" fill="rgb(247,200,46)" fg:x="75711" fg:w="577"/><text x="25.8288%" y="767.50"></text></g><g><title>PhaseIdealLoop::is_dominator (2,660 samples, 0.90%)</title><rect x="24.8781%" y="773" width="0.8987%" height="15" fill="rgb(218,76,16)" fg:x="73637" fg:w="2660"/><text x="25.1281%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (3,811 samples, 1.29%)</title><rect x="24.4967%" y="789" width="1.2875%" height="15" fill="rgb(225,21,48)" fg:x="72508" fg:w="3811"/><text x="24.7467%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_loop (47 samples, 0.02%)</title><rect x="25.7842%" y="789" width="0.0159%" height="15" fill="rgb(239,223,50)" fg:x="76319" fg:w="47"/><text x="26.0342%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (4,772 samples, 1.61%)</title><rect x="24.2031%" y="805" width="1.6122%" height="15" fill="rgb(244,45,21)" fg:x="71639" fg:w="4772"/><text x="24.4531%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,139 samples, 2.07%)</title><rect x="23.7494%" y="821" width="2.0740%" height="15" fill="rgb(232,33,43)" fg:x="70296" fg:w="6139"/><text x="23.9994%" y="831.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (227 samples, 0.08%)</title><rect x="26.0599%" y="805" width="0.0767%" height="15" fill="rgb(209,8,3)" fg:x="77135" fg:w="227"/><text x="26.3099%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (953 samples, 0.32%)</title><rect x="25.8241%" y="821" width="0.3220%" height="15" fill="rgb(214,25,53)" fg:x="76437" fg:w="953"/><text x="26.0741%" y="831.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (32 samples, 0.01%)</title><rect x="26.1474%" y="805" width="0.0108%" height="15" fill="rgb(254,186,54)" fg:x="77394" fg:w="32"/><text x="26.3974%" y="815.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (34 samples, 0.01%)</title><rect x="26.1471%" y="821" width="0.0115%" height="15" fill="rgb(208,174,49)" fg:x="77393" fg:w="34"/><text x="26.3971%" y="831.50"></text></g><g><title>PhaseIdealLoop::do_split_if (97 samples, 0.03%)</title><rect x="26.3339%" y="805" width="0.0328%" height="15" fill="rgb(233,191,51)" fg:x="77946" fg:w="97"/><text x="26.5839%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (37 samples, 0.01%)</title><rect x="26.4211%" y="789" width="0.0125%" height="15" fill="rgb(222,134,10)" fg:x="78204" fg:w="37"/><text x="26.6711%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (34 samples, 0.01%)</title><rect x="26.4447%" y="789" width="0.0115%" height="15" fill="rgb(230,226,20)" fg:x="78274" fg:w="34"/><text x="26.6947%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (286 samples, 0.10%)</title><rect x="26.3687%" y="805" width="0.0966%" height="15" fill="rgb(251,111,25)" fg:x="78049" fg:w="286"/><text x="26.6187%" y="815.50"></text></g><g><title>ConstraintCastNode::dominating_cast (56 samples, 0.02%)</title><rect x="26.5042%" y="789" width="0.0189%" height="15" fill="rgb(224,40,46)" fg:x="78450" fg:w="56"/><text x="26.7542%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (49 samples, 0.02%)</title><rect x="26.5359%" y="789" width="0.0166%" height="15" fill="rgb(236,108,47)" fg:x="78544" fg:w="49"/><text x="26.7859%" y="799.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (88 samples, 0.03%)</title><rect x="26.5525%" y="789" width="0.0297%" height="15" fill="rgb(234,93,0)" fg:x="78593" fg:w="88"/><text x="26.8025%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (53 samples, 0.02%)</title><rect x="26.6255%" y="773" width="0.0179%" height="15" fill="rgb(224,213,32)" fg:x="78809" fg:w="53"/><text x="26.8755%" y="783.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (180 samples, 0.06%)</title><rect x="26.5829%" y="789" width="0.0608%" height="15" fill="rgb(251,11,48)" fg:x="78683" fg:w="180"/><text x="26.8329%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (56 samples, 0.02%)</title><rect x="26.6853%" y="773" width="0.0189%" height="15" fill="rgb(236,173,5)" fg:x="78986" fg:w="56"/><text x="26.9353%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (195 samples, 0.07%)</title><rect x="26.6437%" y="789" width="0.0659%" height="15" fill="rgb(230,95,12)" fg:x="78863" fg:w="195"/><text x="26.8937%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (764 samples, 0.26%)</title><rect x="26.4653%" y="805" width="0.2581%" height="15" fill="rgb(232,209,1)" fg:x="78335" fg:w="764"/><text x="26.7153%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,659 samples, 0.56%)</title><rect x="26.1650%" y="821" width="0.5605%" height="15" fill="rgb(232,6,1)" fg:x="77446" fg:w="1659"/><text x="26.4150%" y="831.50"></text></g><g><title>CallNode::Ideal (39 samples, 0.01%)</title><rect x="26.8191%" y="789" width="0.0132%" height="15" fill="rgb(210,224,50)" fg:x="79382" fg:w="39"/><text x="27.0691%" y="799.50"></text></g><g><title>Node::remove_dead_region (38 samples, 0.01%)</title><rect x="26.8194%" y="773" width="0.0128%" height="15" fill="rgb(228,127,35)" fg:x="79383" fg:w="38"/><text x="27.0694%" y="783.50"></text></g><g><title>CastIINode::Value (32 samples, 0.01%)</title><rect x="26.8349%" y="789" width="0.0108%" height="15" fill="rgb(245,102,45)" fg:x="79429" fg:w="32"/><text x="27.0849%" y="799.50"></text></g><g><title>LoadNode::Ideal (84 samples, 0.03%)</title><rect x="26.8924%" y="789" width="0.0284%" height="15" fill="rgb(214,1,49)" fg:x="79599" fg:w="84"/><text x="27.1424%" y="799.50"></text></g><g><title>NodeHash::grow (40 samples, 0.01%)</title><rect x="26.9718%" y="773" width="0.0135%" height="15" fill="rgb(226,163,40)" fg:x="79834" fg:w="40"/><text x="27.2218%" y="783.50"></text></g><g><title>NodeHash::hash_find_insert (137 samples, 0.05%)</title><rect x="26.9400%" y="789" width="0.0463%" height="15" fill="rgb(239,212,28)" fg:x="79740" fg:w="137"/><text x="27.1900%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (58 samples, 0.02%)</title><rect x="26.9866%" y="789" width="0.0196%" height="15" fill="rgb(220,20,13)" fg:x="79878" fg:w="58"/><text x="27.2366%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (57 samples, 0.02%)</title><rect x="27.0140%" y="773" width="0.0193%" height="15" fill="rgb(210,164,35)" fg:x="79959" fg:w="57"/><text x="27.2640%" y="783.50"></text></g><g><title>PhaseIterGVN::subsume_node (90 samples, 0.03%)</title><rect x="27.0066%" y="789" width="0.0304%" height="15" fill="rgb(248,109,41)" fg:x="79937" fg:w="90"/><text x="27.2566%" y="799.50"></text></g><g><title>PhiNode::Ideal (30 samples, 0.01%)</title><rect x="27.0376%" y="789" width="0.0101%" height="15" fill="rgb(238,23,50)" fg:x="80029" fg:w="30"/><text x="27.2876%" y="799.50"></text></g><g><title>PhiNode::Value (31 samples, 0.01%)</title><rect x="27.0491%" y="789" width="0.0105%" height="15" fill="rgb(211,48,49)" fg:x="80063" fg:w="31"/><text x="27.2991%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (126 samples, 0.04%)</title><rect x="27.0988%" y="773" width="0.0426%" height="15" fill="rgb(223,36,21)" fg:x="80210" fg:w="126"/><text x="27.3488%" y="783.50"></text></g><g><title>RegionNode::Ideal (214 samples, 0.07%)</title><rect x="27.0704%" y="789" width="0.0723%" height="15" fill="rgb(207,123,46)" fg:x="80126" fg:w="214"/><text x="27.3204%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (31 samples, 0.01%)</title><rect x="27.1458%" y="549" width="0.0105%" height="15" fill="rgb(240,218,32)" fg:x="80349" fg:w="31"/><text x="27.3958%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.01%)</title><rect x="27.1458%" y="565" width="0.0111%" height="15" fill="rgb(252,5,43)" fg:x="80349" fg:w="33"/><text x="27.3958%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.01%)</title><rect x="27.1458%" y="581" width="0.0125%" height="15" fill="rgb(252,84,19)" fg:x="80349" fg:w="37"/><text x="27.3958%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.01%)</title><rect x="27.1458%" y="597" width="0.0139%" height="15" fill="rgb(243,152,39)" fg:x="80349" fg:w="41"/><text x="27.3958%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.02%)</title><rect x="27.1458%" y="613" width="0.0155%" height="15" fill="rgb(234,160,15)" fg:x="80349" fg:w="46"/><text x="27.3958%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (50 samples, 0.02%)</title><rect x="27.1458%" y="629" width="0.0169%" height="15" fill="rgb(237,34,20)" fg:x="80349" fg:w="50"/><text x="27.3958%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.02%)</title><rect x="27.1458%" y="645" width="0.0176%" height="15" fill="rgb(229,97,13)" fg:x="80349" fg:w="52"/><text x="27.3958%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (54 samples, 0.02%)</title><rect x="27.1458%" y="661" width="0.0182%" height="15" fill="rgb(234,71,50)" fg:x="80349" fg:w="54"/><text x="27.3958%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (58 samples, 0.02%)</title><rect x="27.1458%" y="677" width="0.0196%" height="15" fill="rgb(253,155,4)" fg:x="80349" fg:w="58"/><text x="27.3958%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (59 samples, 0.02%)</title><rect x="27.1458%" y="693" width="0.0199%" height="15" fill="rgb(222,185,37)" fg:x="80349" fg:w="59"/><text x="27.3958%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (66 samples, 0.02%)</title><rect x="27.1458%" y="709" width="0.0223%" height="15" fill="rgb(251,177,13)" fg:x="80349" fg:w="66"/><text x="27.3958%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.02%)</title><rect x="27.1458%" y="725" width="0.0240%" height="15" fill="rgb(250,179,40)" fg:x="80349" fg:w="71"/><text x="27.3958%" y="735.50"></text></g><g><title>InitializeNode::can_capture_store (80 samples, 0.03%)</title><rect x="27.1458%" y="773" width="0.0270%" height="15" fill="rgb(242,44,2)" fg:x="80349" fg:w="80"/><text x="27.3958%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.03%)</title><rect x="27.1458%" y="757" width="0.0270%" height="15" fill="rgb(216,177,13)" fg:x="80349" fg:w="80"/><text x="27.3958%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.03%)</title><rect x="27.1458%" y="741" width="0.0270%" height="15" fill="rgb(216,106,43)" fg:x="80349" fg:w="80"/><text x="27.3958%" y="751.50"></text></g><g><title>StoreNode::Ideal (88 samples, 0.03%)</title><rect x="27.1458%" y="789" width="0.0297%" height="15" fill="rgb(216,183,2)" fg:x="80349" fg:w="88"/><text x="27.3958%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (1,322 samples, 0.45%)</title><rect x="26.7437%" y="805" width="0.4466%" height="15" fill="rgb(249,75,3)" fg:x="79159" fg:w="1322"/><text x="26.9937%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (1,385 samples, 0.47%)</title><rect x="26.7268%" y="821" width="0.4679%" height="15" fill="rgb(219,67,39)" fg:x="79109" fg:w="1385"/><text x="26.9768%" y="831.50"></text></g><g><title>SuperWord::transform_loop (32 samples, 0.01%)</title><rect x="27.2106%" y="821" width="0.0108%" height="15" fill="rgb(253,228,2)" fg:x="80541" fg:w="32"/><text x="27.4606%" y="831.50"></text></g><g><title>SuperWord::SLP_extract (32 samples, 0.01%)</title><rect x="27.2106%" y="805" width="0.0108%" height="15" fill="rgb(235,138,27)" fg:x="80541" fg:w="32"/><text x="27.4606%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (13,917 samples, 4.70%)</title><rect x="22.5308%" y="837" width="4.7018%" height="15" fill="rgb(236,97,51)" fg:x="66689" fg:w="13917"/><text x="22.7808%" y="847.50">Phase..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (123 samples, 0.04%)</title><rect x="27.2329%" y="837" width="0.0416%" height="15" fill="rgb(240,80,30)" fg:x="80607" fg:w="123"/><text x="27.4829%" y="847.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (61 samples, 0.02%)</title><rect x="27.2539%" y="821" width="0.0206%" height="15" fill="rgb(230,178,19)" fg:x="80669" fg:w="61"/><text x="27.5039%" y="831.50"></text></g><g><title>IfNode::search_identical (47 samples, 0.02%)</title><rect x="27.4201%" y="789" width="0.0159%" height="15" fill="rgb(210,190,27)" fg:x="81161" fg:w="47"/><text x="27.6701%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (78 samples, 0.03%)</title><rect x="27.4532%" y="773" width="0.0264%" height="15" fill="rgb(222,107,31)" fg:x="81259" fg:w="78"/><text x="27.7032%" y="783.50"></text></g><g><title>Unique_Node_List::remove (70 samples, 0.02%)</title><rect x="27.4559%" y="757" width="0.0236%" height="15" fill="rgb(216,127,34)" fg:x="81267" fg:w="70"/><text x="27.7059%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (94 samples, 0.03%)</title><rect x="27.4505%" y="789" width="0.0318%" height="15" fill="rgb(234,116,52)" fg:x="81251" fg:w="94"/><text x="27.7005%" y="799.50"></text></g><g><title>IfNode::Ideal (297 samples, 0.10%)</title><rect x="27.4056%" y="805" width="0.1003%" height="15" fill="rgb(222,124,15)" fg:x="81118" fg:w="297"/><text x="27.6556%" y="815.50"></text></g><g><title>split_if (56 samples, 0.02%)</title><rect x="27.4870%" y="789" width="0.0189%" height="15" fill="rgb(231,179,28)" fg:x="81359" fg:w="56"/><text x="27.7370%" y="799.50"></text></g><g><title>MemNode::Ideal_common (60 samples, 0.02%)</title><rect x="27.5343%" y="789" width="0.0203%" height="15" fill="rgb(226,93,45)" fg:x="81499" fg:w="60"/><text x="27.7843%" y="799.50"></text></g><g><title>Node::dominates (57 samples, 0.02%)</title><rect x="27.5593%" y="757" width="0.0193%" height="15" fill="rgb(215,8,51)" fg:x="81573" fg:w="57"/><text x="27.8093%" y="767.50"></text></g><g><title>MemNode::all_controls_dominate (59 samples, 0.02%)</title><rect x="27.5589%" y="773" width="0.0199%" height="15" fill="rgb(223,106,5)" fg:x="81572" fg:w="59"/><text x="27.8089%" y="783.50"></text></g><g><title>MemNode::find_previous_store (95 samples, 0.03%)</title><rect x="27.5569%" y="789" width="0.0321%" height="15" fill="rgb(250,191,5)" fg:x="81566" fg:w="95"/><text x="27.8069%" y="799.50"></text></g><g><title>LoadNode::Ideal (205 samples, 0.07%)</title><rect x="27.5204%" y="805" width="0.0693%" height="15" fill="rgb(242,132,44)" fg:x="81458" fg:w="205"/><text x="27.7704%" y="815.50"></text></g><g><title>LoadNode::Identity (35 samples, 0.01%)</title><rect x="27.5897%" y="805" width="0.0118%" height="15" fill="rgb(251,152,29)" fg:x="81663" fg:w="35"/><text x="27.8397%" y="815.50"></text></g><g><title>LoadNode::Value (32 samples, 0.01%)</title><rect x="27.6015%" y="805" width="0.0108%" height="15" fill="rgb(218,179,5)" fg:x="81698" fg:w="32"/><text x="27.8515%" y="815.50"></text></g><g><title>MergeMemNode::Ideal (58 samples, 0.02%)</title><rect x="27.6167%" y="805" width="0.0196%" height="15" fill="rgb(227,67,19)" fg:x="81743" fg:w="58"/><text x="27.8667%" y="815.50"></text></g><g><title>NodeHash::grow (79 samples, 0.03%)</title><rect x="27.6873%" y="789" width="0.0267%" height="15" fill="rgb(233,119,31)" fg:x="81952" fg:w="79"/><text x="27.9373%" y="799.50"></text></g><g><title>NodeHash::hash_find_insert (222 samples, 0.08%)</title><rect x="27.6434%" y="805" width="0.0750%" height="15" fill="rgb(241,120,22)" fg:x="81822" fg:w="222"/><text x="27.8934%" y="815.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (72 samples, 0.02%)</title><rect x="27.7184%" y="805" width="0.0243%" height="15" fill="rgb(224,102,30)" fg:x="82044" fg:w="72"/><text x="27.9684%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (73 samples, 0.02%)</title><rect x="27.7789%" y="789" width="0.0247%" height="15" fill="rgb(210,164,37)" fg:x="82223" fg:w="73"/><text x="28.0289%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (207 samples, 0.07%)</title><rect x="27.7427%" y="805" width="0.0699%" height="15" fill="rgb(226,191,16)" fg:x="82116" fg:w="207"/><text x="27.9927%" y="815.50"></text></g><g><title>PhiNode::Ideal (150 samples, 0.05%)</title><rect x="27.8144%" y="805" width="0.0507%" height="15" fill="rgb(214,40,45)" fg:x="82328" fg:w="150"/><text x="28.0644%" y="815.50"></text></g><g><title>PhiNode::Value (55 samples, 0.02%)</title><rect x="27.8704%" y="805" width="0.0186%" height="15" fill="rgb(244,29,26)" fg:x="82494" fg:w="55"/><text x="28.1204%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (121 samples, 0.04%)</title><rect x="27.9414%" y="773" width="0.0409%" height="15" fill="rgb(216,16,5)" fg:x="82704" fg:w="121"/><text x="28.1914%" y="783.50"></text></g><g><title>Unique_Node_List::remove (107 samples, 0.04%)</title><rect x="27.9461%" y="757" width="0.0361%" height="15" fill="rgb(249,76,35)" fg:x="82718" fg:w="107"/><text x="28.1961%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (138 samples, 0.05%)</title><rect x="27.9370%" y="789" width="0.0466%" height="15" fill="rgb(207,11,44)" fg:x="82691" fg:w="138"/><text x="28.1870%" y="799.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (37 samples, 0.01%)</title><rect x="27.9836%" y="789" width="0.0125%" height="15" fill="rgb(228,190,49)" fg:x="82829" fg:w="37"/><text x="28.2336%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (113 samples, 0.04%)</title><rect x="27.9961%" y="789" width="0.0382%" height="15" fill="rgb(214,173,12)" fg:x="82866" fg:w="113"/><text x="28.2461%" y="799.50"></text></g><g><title>RegionNode::Ideal (383 samples, 0.13%)</title><rect x="27.9073%" y="805" width="0.1294%" height="15" fill="rgb(218,26,35)" fg:x="82603" fg:w="383"/><text x="28.1573%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (43 samples, 0.01%)</title><rect x="28.0417%" y="485" width="0.0145%" height="15" fill="rgb(220,200,19)" fg:x="83001" fg:w="43"/><text x="28.2917%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (54 samples, 0.02%)</title><rect x="28.0417%" y="501" width="0.0182%" height="15" fill="rgb(239,95,49)" fg:x="83001" fg:w="54"/><text x="28.2917%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.02%)</title><rect x="28.0417%" y="517" width="0.0240%" height="15" fill="rgb(235,85,53)" fg:x="83001" fg:w="71"/><text x="28.2917%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (85 samples, 0.03%)</title><rect x="28.0417%" y="533" width="0.0287%" height="15" fill="rgb(233,133,31)" fg:x="83001" fg:w="85"/><text x="28.2917%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.04%)</title><rect x="28.0411%" y="549" width="0.0358%" height="15" fill="rgb(218,25,20)" fg:x="82999" fg:w="106"/><text x="28.2911%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (122 samples, 0.04%)</title><rect x="28.0411%" y="565" width="0.0412%" height="15" fill="rgb(252,210,38)" fg:x="82999" fg:w="122"/><text x="28.2911%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (146 samples, 0.05%)</title><rect x="28.0411%" y="581" width="0.0493%" height="15" fill="rgb(242,134,21)" fg:x="82999" fg:w="146"/><text x="28.2911%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (163 samples, 0.06%)</title><rect x="28.0411%" y="597" width="0.0551%" height="15" fill="rgb(213,28,48)" fg:x="82999" fg:w="163"/><text x="28.2911%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (183 samples, 0.06%)</title><rect x="28.0411%" y="613" width="0.0618%" height="15" fill="rgb(250,196,2)" fg:x="82999" fg:w="183"/><text x="28.2911%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (203 samples, 0.07%)</title><rect x="28.0411%" y="629" width="0.0686%" height="15" fill="rgb(227,5,17)" fg:x="82999" fg:w="203"/><text x="28.2911%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (223 samples, 0.08%)</title><rect x="28.0411%" y="645" width="0.0753%" height="15" fill="rgb(221,226,24)" fg:x="82999" fg:w="223"/><text x="28.2911%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (240 samples, 0.08%)</title><rect x="28.0411%" y="661" width="0.0811%" height="15" fill="rgb(211,5,48)" fg:x="82999" fg:w="240"/><text x="28.2911%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (258 samples, 0.09%)</title><rect x="28.0411%" y="677" width="0.0872%" height="15" fill="rgb(219,150,6)" fg:x="82999" fg:w="258"/><text x="28.2911%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (276 samples, 0.09%)</title><rect x="28.0411%" y="693" width="0.0932%" height="15" fill="rgb(251,46,16)" fg:x="82999" fg:w="276"/><text x="28.2911%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (291 samples, 0.10%)</title><rect x="28.0411%" y="709" width="0.0983%" height="15" fill="rgb(220,204,40)" fg:x="82999" fg:w="291"/><text x="28.2911%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (307 samples, 0.10%)</title><rect x="28.0411%" y="725" width="0.1037%" height="15" fill="rgb(211,85,2)" fg:x="82999" fg:w="307"/><text x="28.2911%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (342 samples, 0.12%)</title><rect x="28.0411%" y="741" width="0.1155%" height="15" fill="rgb(229,17,7)" fg:x="82999" fg:w="342"/><text x="28.2911%" y="751.50"></text></g><g><title>MemNode::all_controls_dominate (35 samples, 0.01%)</title><rect x="28.1448%" y="725" width="0.0118%" height="15" fill="rgb(239,72,28)" fg:x="83306" fg:w="35"/><text x="28.3948%" y="735.50"></text></g><g><title>Node::dominates (35 samples, 0.01%)</title><rect x="28.1448%" y="709" width="0.0118%" height="15" fill="rgb(230,47,54)" fg:x="83306" fg:w="35"/><text x="28.3948%" y="719.50"></text></g><g><title>Node::dominates (31 samples, 0.01%)</title><rect x="28.1566%" y="725" width="0.0105%" height="15" fill="rgb(214,50,8)" fg:x="83341" fg:w="31"/><text x="28.4066%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (374 samples, 0.13%)</title><rect x="28.0411%" y="757" width="0.1264%" height="15" fill="rgb(216,198,43)" fg:x="82999" fg:w="374"/><text x="28.2911%" y="767.50"></text></g><g><title>MemNode::all_controls_dominate (32 samples, 0.01%)</title><rect x="28.1566%" y="741" width="0.0108%" height="15" fill="rgb(234,20,35)" fg:x="83341" fg:w="32"/><text x="28.4066%" y="751.50"></text></g><g><title>InitializeNode::can_capture_store (376 samples, 0.13%)</title><rect x="28.0407%" y="789" width="0.1270%" height="15" fill="rgb(254,45,19)" fg:x="82998" fg:w="376"/><text x="28.2907%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (375 samples, 0.13%)</title><rect x="28.0411%" y="773" width="0.1267%" height="15" fill="rgb(219,14,44)" fg:x="82999" fg:w="375"/><text x="28.2911%" y="783.50"></text></g><g><title>StoreNode::Ideal (403 samples, 0.14%)</title><rect x="28.0400%" y="805" width="0.1362%" height="15" fill="rgb(217,220,26)" fg:x="82996" fg:w="403"/><text x="28.2900%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (2,671 samples, 0.90%)</title><rect x="27.2988%" y="821" width="0.9024%" height="15" fill="rgb(213,158,28)" fg:x="80802" fg:w="2671"/><text x="27.5488%" y="831.50"></text></g><g><title>PhaseIterGVN::optimize (2,761 samples, 0.93%)</title><rect x="27.2745%" y="837" width="0.9328%" height="15" fill="rgb(252,51,52)" fg:x="80730" fg:w="2761"/><text x="27.5245%" y="847.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (41 samples, 0.01%)</title><rect x="28.2080%" y="837" width="0.0139%" height="15" fill="rgb(246,89,16)" fg:x="83493" fg:w="41"/><text x="28.4580%" y="847.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (38 samples, 0.01%)</title><rect x="28.2090%" y="821" width="0.0128%" height="15" fill="rgb(216,158,49)" fg:x="83496" fg:w="38"/><text x="28.4590%" y="831.50"></text></g><g><title>LoadNode::Ideal (30 samples, 0.01%)</title><rect x="28.2519%" y="789" width="0.0101%" height="15" fill="rgb(236,107,19)" fg:x="83623" fg:w="30"/><text x="28.5019%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (274 samples, 0.09%)</title><rect x="28.2275%" y="805" width="0.0926%" height="15" fill="rgb(228,185,30)" fg:x="83551" fg:w="274"/><text x="28.4775%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (288 samples, 0.10%)</title><rect x="28.2235%" y="821" width="0.0973%" height="15" fill="rgb(246,134,8)" fg:x="83539" fg:w="288"/><text x="28.4735%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (104 samples, 0.04%)</title><rect x="28.3242%" y="821" width="0.0351%" height="15" fill="rgb(214,143,50)" fg:x="83837" fg:w="104"/><text x="28.5742%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (443 samples, 0.15%)</title><rect x="28.2218%" y="837" width="0.1497%" height="15" fill="rgb(228,75,8)" fg:x="83534" fg:w="443"/><text x="28.4718%" y="847.50"></text></g><g><title>Compile::identify_useful_nodes (92 samples, 0.03%)</title><rect x="28.3850%" y="805" width="0.0311%" height="15" fill="rgb(207,175,4)" fg:x="84017" fg:w="92"/><text x="28.6350%" y="815.50"></text></g><g><title>Compile::remove_useless_nodes (62 samples, 0.02%)</title><rect x="28.4161%" y="805" width="0.0209%" height="15" fill="rgb(205,108,24)" fg:x="84109" fg:w="62"/><text x="28.6661%" y="815.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (209 samples, 0.07%)</title><rect x="28.3715%" y="837" width="0.0706%" height="15" fill="rgb(244,120,49)" fg:x="83977" fg:w="209"/><text x="28.6215%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (189 samples, 0.06%)</title><rect x="28.3782%" y="821" width="0.0639%" height="15" fill="rgb(223,47,38)" fg:x="83997" fg:w="189"/><text x="28.6282%" y="831.50"></text></g><g><title>Compile::Optimize (19,810 samples, 6.69%)</title><rect x="21.7517%" y="853" width="6.6928%" height="15" fill="rgb(229,179,11)" fg:x="64383" fg:w="19810"/><text x="22.0017%" y="863.50">Compile::..</text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="28.4691%" y="709" width="0.0176%" height="15" fill="rgb(231,122,1)" fg:x="84266" fg:w="52"/><text x="28.7191%" y="719.50"></text></g><g><title>Parse::do_one_block (191 samples, 0.06%)</title><rect x="28.4542%" y="741" width="0.0645%" height="15" fill="rgb(245,119,9)" fg:x="84222" fg:w="191"/><text x="28.7042%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (170 samples, 0.06%)</title><rect x="28.4613%" y="725" width="0.0574%" height="15" fill="rgb(241,163,25)" fg:x="84243" fg:w="170"/><text x="28.7113%" y="735.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.07%)</title><rect x="28.4539%" y="757" width="0.0659%" height="15" fill="rgb(217,214,3)" fg:x="84221" fg:w="195"/><text x="28.7039%" y="767.50"></text></g><g><title>ParseGenerator::generate (212 samples, 0.07%)</title><rect x="28.4539%" y="789" width="0.0716%" height="15" fill="rgb(240,86,28)" fg:x="84221" fg:w="212"/><text x="28.7039%" y="799.50"></text></g><g><title>Parse::Parse (212 samples, 0.07%)</title><rect x="28.4539%" y="773" width="0.0716%" height="15" fill="rgb(215,47,9)" fg:x="84221" fg:w="212"/><text x="28.7039%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (255 samples, 0.09%)</title><rect x="28.4458%" y="853" width="0.0862%" height="15" fill="rgb(252,25,45)" fg:x="84197" fg:w="255"/><text x="28.6958%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (255 samples, 0.09%)</title><rect x="28.4458%" y="837" width="0.0862%" height="15" fill="rgb(251,164,9)" fg:x="84197" fg:w="255"/><text x="28.6958%" y="847.50"></text></g><g><title>C2Compiler::compile_method (255 samples, 0.09%)</title><rect x="28.4458%" y="821" width="0.0862%" height="15" fill="rgb(233,194,0)" fg:x="84197" fg:w="255"/><text x="28.6958%" y="831.50"></text></g><g><title>Compile::Compile (255 samples, 0.09%)</title><rect x="28.4458%" y="805" width="0.0862%" height="15" fill="rgb(249,111,24)" fg:x="84197" fg:w="255"/><text x="28.6958%" y="815.50"></text></g><g><title>CallGenerator::for_inline (54 samples, 0.02%)</title><rect x="28.5319%" y="805" width="0.0182%" height="15" fill="rgb(250,223,3)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="815.50"></text></g><g><title>InlineTree::check_can_parse (54 samples, 0.02%)</title><rect x="28.5319%" y="789" width="0.0182%" height="15" fill="rgb(236,178,37)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (54 samples, 0.02%)</title><rect x="28.5319%" y="773" width="0.0182%" height="15" fill="rgb(241,158,50)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (54 samples, 0.02%)</title><rect x="28.5319%" y="757" width="0.0182%" height="15" fill="rgb(213,121,41)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (54 samples, 0.02%)</title><rect x="28.5319%" y="741" width="0.0182%" height="15" fill="rgb(240,92,3)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (54 samples, 0.02%)</title><rect x="28.5319%" y="725" width="0.0182%" height="15" fill="rgb(205,123,3)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (54 samples, 0.02%)</title><rect x="28.5319%" y="709" width="0.0182%" height="15" fill="rgb(205,97,47)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="719.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (54 samples, 0.02%)</title><rect x="28.5319%" y="693" width="0.0182%" height="15" fill="rgb(247,152,14)" fg:x="84452" fg:w="54"/><text x="28.7819%" y="703.50"></text></g><g><title>InlineTree::ok_to_inline (60 samples, 0.02%)</title><rect x="28.5789%" y="693" width="0.0203%" height="15" fill="rgb(248,195,53)" fg:x="84591" fg:w="60"/><text x="28.8289%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (34 samples, 0.01%)</title><rect x="28.5877%" y="677" width="0.0115%" height="15" fill="rgb(226,201,16)" fg:x="84617" fg:w="34"/><text x="28.8377%" y="687.50"></text></g><g><title>Compile::call_generator (81 samples, 0.03%)</title><rect x="28.5752%" y="709" width="0.0274%" height="15" fill="rgb(205,98,0)" fg:x="84580" fg:w="81"/><text x="28.8252%" y="719.50"></text></g><g><title>Parse::do_one_block (122 samples, 0.04%)</title><rect x="28.6441%" y="661" width="0.0412%" height="15" fill="rgb(214,191,48)" fg:x="84784" fg:w="122"/><text x="28.8941%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.04%)</title><rect x="28.6478%" y="645" width="0.0375%" height="15" fill="rgb(237,112,39)" fg:x="84795" fg:w="111"/><text x="28.8978%" y="655.50"></text></g><g><title>Parse::do_all_blocks (135 samples, 0.05%)</title><rect x="28.6431%" y="677" width="0.0456%" height="15" fill="rgb(247,203,27)" fg:x="84781" fg:w="135"/><text x="28.8931%" y="687.50"></text></g><g><title>Parse::Parse (206 samples, 0.07%)</title><rect x="28.6303%" y="693" width="0.0696%" height="15" fill="rgb(235,124,28)" fg:x="84743" fg:w="206"/><text x="28.8803%" y="703.50"></text></g><g><title>ParseGenerator::generate (208 samples, 0.07%)</title><rect x="28.6299%" y="709" width="0.0703%" height="15" fill="rgb(208,207,46)" fg:x="84742" fg:w="208"/><text x="28.8799%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (93 samples, 0.03%)</title><rect x="28.7002%" y="709" width="0.0314%" height="15" fill="rgb(234,176,4)" fg:x="84950" fg:w="93"/><text x="28.9502%" y="719.50"></text></g><g><title>Parse::do_call (487 samples, 0.16%)</title><rect x="28.5752%" y="725" width="0.1645%" height="15" fill="rgb(230,133,28)" fg:x="84580" fg:w="487"/><text x="28.8252%" y="735.50"></text></g><g><title>Parse::do_get_xxx (40 samples, 0.01%)</title><rect x="28.7509%" y="709" width="0.0135%" height="15" fill="rgb(211,137,40)" fg:x="85100" fg:w="40"/><text x="29.0009%" y="719.50"></text></g><g><title>GraphKit::access_store_at (42 samples, 0.01%)</title><rect x="28.7654%" y="693" width="0.0142%" height="15" fill="rgb(254,35,13)" fg:x="85143" fg:w="42"/><text x="29.0154%" y="703.50"></text></g><g><title>BarrierSetC2::store_at (42 samples, 0.01%)</title><rect x="28.7654%" y="677" width="0.0142%" height="15" fill="rgb(225,49,51)" fg:x="85143" fg:w="42"/><text x="29.0154%" y="687.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (40 samples, 0.01%)</title><rect x="28.7661%" y="661" width="0.0135%" height="15" fill="rgb(251,10,15)" fg:x="85145" fg:w="40"/><text x="29.0161%" y="671.50"></text></g><g><title>Parse::do_put_xxx (47 samples, 0.02%)</title><rect x="28.7644%" y="709" width="0.0159%" height="15" fill="rgb(228,207,15)" fg:x="85140" fg:w="47"/><text x="29.0144%" y="719.50"></text></g><g><title>Parse::do_field_access (94 samples, 0.03%)</title><rect x="28.7488%" y="725" width="0.0318%" height="15" fill="rgb(241,99,19)" fg:x="85094" fg:w="94"/><text x="28.9988%" y="735.50"></text></g><g><title>Parse::do_all_blocks (723 samples, 0.24%)</title><rect x="28.5569%" y="773" width="0.2443%" height="15" fill="rgb(207,104,49)" fg:x="84526" fg:w="723"/><text x="28.8069%" y="783.50"></text></g><g><title>Parse::do_one_block (722 samples, 0.24%)</title><rect x="28.5573%" y="757" width="0.2439%" height="15" fill="rgb(234,99,18)" fg:x="84527" fg:w="722"/><text x="28.8073%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (712 samples, 0.24%)</title><rect x="28.5607%" y="741" width="0.2405%" height="15" fill="rgb(213,191,49)" fg:x="84537" fg:w="712"/><text x="28.8107%" y="751.50"></text></g><g><title>ParseGenerator::generate (737 samples, 0.25%)</title><rect x="28.5569%" y="805" width="0.2490%" height="15" fill="rgb(210,226,19)" fg:x="84526" fg:w="737"/><text x="28.8069%" y="815.50"></text></g><g><title>Parse::Parse (737 samples, 0.25%)</title><rect x="28.5569%" y="789" width="0.2490%" height="15" fill="rgb(229,97,18)" fg:x="84526" fg:w="737"/><text x="28.8069%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (836 samples, 0.28%)</title><rect x="28.5319%" y="853" width="0.2824%" height="15" fill="rgb(211,167,15)" fg:x="84452" fg:w="836"/><text x="28.7819%" y="863.50"></text></g><g><title>C2Compiler::compile_method (836 samples, 0.28%)</title><rect x="28.5319%" y="837" width="0.2824%" height="15" fill="rgb(210,169,34)" fg:x="84452" fg:w="836"/><text x="28.7819%" y="847.50"></text></g><g><title>Compile::Compile (836 samples, 0.28%)</title><rect x="28.5319%" y="821" width="0.2824%" height="15" fill="rgb(241,121,31)" fg:x="84452" fg:w="836"/><text x="28.7819%" y="831.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.02%)</title><rect x="28.8461%" y="725" width="0.0220%" height="15" fill="rgb(232,40,11)" fg:x="85382" fg:w="65"/><text x="29.0961%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.02%)</title><rect x="28.8478%" y="709" width="0.0203%" height="15" fill="rgb(205,86,26)" fg:x="85387" fg:w="60"/><text x="29.0978%" y="719.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.02%)</title><rect x="28.8458%" y="741" width="0.0230%" height="15" fill="rgb(231,126,28)" fg:x="85381" fg:w="68"/><text x="29.0958%" y="751.50"></text></g><g><title>ParseGenerator::generate (81 samples, 0.03%)</title><rect x="28.8458%" y="773" width="0.0274%" height="15" fill="rgb(219,221,18)" fg:x="85381" fg:w="81"/><text x="29.0958%" y="783.50"></text></g><g><title>Parse::Parse (81 samples, 0.03%)</title><rect x="28.8458%" y="757" width="0.0274%" height="15" fill="rgb(211,40,0)" fg:x="85381" fg:w="81"/><text x="29.0958%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (100 samples, 0.03%)</title><rect x="28.8421%" y="853" width="0.0338%" height="15" fill="rgb(239,85,43)" fg:x="85370" fg:w="100"/><text x="29.0921%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (100 samples, 0.03%)</title><rect x="28.8421%" y="837" width="0.0338%" height="15" fill="rgb(231,55,21)" fg:x="85370" fg:w="100"/><text x="29.0921%" y="847.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (100 samples, 0.03%)</title><rect x="28.8421%" y="821" width="0.0338%" height="15" fill="rgb(225,184,43)" fg:x="85370" fg:w="100"/><text x="29.0921%" y="831.50"></text></g><g><title>C2Compiler::compile_method (100 samples, 0.03%)</title><rect x="28.8421%" y="805" width="0.0338%" height="15" fill="rgb(251,158,41)" fg:x="85370" fg:w="100"/><text x="29.0921%" y="815.50"></text></g><g><title>Compile::Compile (100 samples, 0.03%)</title><rect x="28.8421%" y="789" width="0.0338%" height="15" fill="rgb(234,159,37)" fg:x="85370" fg:w="100"/><text x="29.0921%" y="799.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.01%)</title><rect x="28.8816%" y="485" width="0.0105%" height="15" fill="rgb(216,204,22)" fg:x="85487" fg:w="31"/><text x="29.1316%" y="495.50"></text></g><g><title>Parse::Parse (31 samples, 0.01%)</title><rect x="28.8816%" y="469" width="0.0105%" height="15" fill="rgb(214,17,3)" fg:x="85487" fg:w="31"/><text x="29.1316%" y="479.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="28.8816%" y="453" width="0.0105%" height="15" fill="rgb(212,111,17)" fg:x="85487" fg:w="31"/><text x="29.1316%" y="463.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.01%)</title><rect x="28.8816%" y="437" width="0.0105%" height="15" fill="rgb(221,157,24)" fg:x="85487" fg:w="31"/><text x="29.1316%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="28.8816%" y="421" width="0.0105%" height="15" fill="rgb(252,16,13)" fg:x="85487" fg:w="31"/><text x="29.1316%" y="431.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="28.8816%" y="405" width="0.0105%" height="15" fill="rgb(221,62,2)" fg:x="85487" fg:w="31"/><text x="29.1316%" y="415.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="28.8820%" y="389" width="0.0101%" height="15" fill="rgb(247,87,22)" fg:x="85488" fg:w="30"/><text x="29.1320%" y="399.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="28.8820%" y="373" width="0.0101%" height="15" fill="rgb(215,73,9)" fg:x="85488" fg:w="30"/><text x="29.1320%" y="383.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="28.8820%" y="357" width="0.0101%" height="15" fill="rgb(207,175,33)" fg:x="85488" fg:w="30"/><text x="29.1320%" y="367.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="28.8820%" y="341" width="0.0101%" height="15" fill="rgb(243,129,54)" fg:x="85488" fg:w="30"/><text x="29.1320%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="28.8820%" y="325" width="0.0101%" height="15" fill="rgb(227,119,45)" fg:x="85488" fg:w="30"/><text x="29.1320%" y="335.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="28.8820%" y="309" width="0.0101%" height="15" fill="rgb(205,109,36)" fg:x="85488" fg:w="30"/><text x="29.1320%" y="319.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="28.8816%" y="581" width="0.0108%" height="15" fill="rgb(205,6,39)" fg:x="85487" fg:w="32"/><text x="29.1316%" y="591.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="28.8816%" y="565" width="0.0108%" height="15" fill="rgb(221,32,16)" fg:x="85487" fg:w="32"/><text x="29.1316%" y="575.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="28.8816%" y="549" width="0.0108%" height="15" fill="rgb(228,144,50)" fg:x="85487" fg:w="32"/><text x="29.1316%" y="559.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="28.8816%" y="533" width="0.0108%" height="15" fill="rgb(229,201,53)" fg:x="85487" fg:w="32"/><text x="29.1316%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="28.8816%" y="517" width="0.0108%" height="15" fill="rgb(249,153,27)" fg:x="85487" fg:w="32"/><text x="29.1316%" y="527.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="28.8816%" y="501" width="0.0108%" height="15" fill="rgb(227,106,25)" fg:x="85487" fg:w="32"/><text x="29.1316%" y="511.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.01%)</title><rect x="28.8816%" y="677" width="0.0115%" height="15" fill="rgb(230,65,29)" fg:x="85487" fg:w="34"/><text x="29.1316%" y="687.50"></text></g><g><title>Parse::Parse (34 samples, 0.01%)</title><rect x="28.8816%" y="661" width="0.0115%" height="15" fill="rgb(221,57,46)" fg:x="85487" fg:w="34"/><text x="29.1316%" y="671.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.01%)</title><rect x="28.8816%" y="645" width="0.0115%" height="15" fill="rgb(229,161,17)" fg:x="85487" fg:w="34"/><text x="29.1316%" y="655.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.01%)</title><rect x="28.8816%" y="629" width="0.0115%" height="15" fill="rgb(222,213,11)" fg:x="85487" fg:w="34"/><text x="29.1316%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.01%)</title><rect x="28.8816%" y="613" width="0.0115%" height="15" fill="rgb(235,35,13)" fg:x="85487" fg:w="34"/><text x="29.1316%" y="623.50"></text></g><g><title>Parse::do_call (34 samples, 0.01%)</title><rect x="28.8816%" y="597" width="0.0115%" height="15" fill="rgb(233,158,34)" fg:x="85487" fg:w="34"/><text x="29.1316%" y="607.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.01%)</title><rect x="28.8816%" y="773" width="0.0122%" height="15" fill="rgb(215,151,48)" fg:x="85487" fg:w="36"/><text x="29.1316%" y="783.50"></text></g><g><title>Parse::Parse (36 samples, 0.01%)</title><rect x="28.8816%" y="757" width="0.0122%" height="15" fill="rgb(229,84,14)" fg:x="85487" fg:w="36"/><text x="29.1316%" y="767.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.01%)</title><rect x="28.8816%" y="741" width="0.0122%" height="15" fill="rgb(229,68,14)" fg:x="85487" fg:w="36"/><text x="29.1316%" y="751.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.01%)</title><rect x="28.8816%" y="725" width="0.0122%" height="15" fill="rgb(243,106,26)" fg:x="85487" fg:w="36"/><text x="29.1316%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.01%)</title><rect x="28.8816%" y="709" width="0.0122%" height="15" fill="rgb(206,45,38)" fg:x="85487" fg:w="36"/><text x="29.1316%" y="719.50"></text></g><g><title>Parse::do_call (36 samples, 0.01%)</title><rect x="28.8816%" y="693" width="0.0122%" height="15" fill="rgb(226,6,15)" fg:x="85487" fg:w="36"/><text x="29.1316%" y="703.50"></text></g><g><title>Parse::Parse (44 samples, 0.01%)</title><rect x="28.8816%" y="853" width="0.0149%" height="15" fill="rgb(232,22,54)" fg:x="85487" fg:w="44"/><text x="29.1316%" y="863.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="28.8816%" y="837" width="0.0149%" height="15" fill="rgb(229,222,32)" fg:x="85487" fg:w="44"/><text x="29.1316%" y="847.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="28.8816%" y="821" width="0.0149%" height="15" fill="rgb(228,62,29)" fg:x="85487" fg:w="44"/><text x="29.1316%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="28.8816%" y="805" width="0.0149%" height="15" fill="rgb(251,103,34)" fg:x="85487" fg:w="44"/><text x="29.1316%" y="815.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="28.8816%" y="789" width="0.0149%" height="15" fill="rgb(233,12,30)" fg:x="85487" fg:w="44"/><text x="29.1316%" y="799.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="28.8982%" y="229" width="0.0101%" height="15" fill="rgb(238,52,0)" fg:x="85536" fg:w="30"/><text x="29.1482%" y="239.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.01%)</title><rect x="28.8968%" y="405" width="0.0122%" height="15" fill="rgb(223,98,5)" fg:x="85532" fg:w="36"/><text x="29.1468%" y="415.50"></text></g><g><title>Parse::Parse (36 samples, 0.01%)</title><rect x="28.8968%" y="389" width="0.0122%" height="15" fill="rgb(228,75,37)" fg:x="85532" fg:w="36"/><text x="29.1468%" y="399.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.01%)</title><rect x="28.8968%" y="373" width="0.0122%" height="15" fill="rgb(205,115,49)" fg:x="85532" fg:w="36"/><text x="29.1468%" y="383.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.01%)</title><rect x="28.8968%" y="357" width="0.0122%" height="15" fill="rgb(250,154,43)" fg:x="85532" fg:w="36"/><text x="29.1468%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.01%)</title><rect x="28.8968%" y="341" width="0.0122%" height="15" fill="rgb(226,43,29)" fg:x="85532" fg:w="36"/><text x="29.1468%" y="351.50"></text></g><g><title>Parse::do_call (36 samples, 0.01%)</title><rect x="28.8968%" y="325" width="0.0122%" height="15" fill="rgb(249,228,39)" fg:x="85532" fg:w="36"/><text x="29.1468%" y="335.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="28.8982%" y="309" width="0.0108%" height="15" fill="rgb(216,79,43)" fg:x="85536" fg:w="32"/><text x="29.1482%" y="319.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="28.8982%" y="293" width="0.0108%" height="15" fill="rgb(228,95,12)" fg:x="85536" fg:w="32"/><text x="29.1482%" y="303.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="28.8982%" y="277" width="0.0108%" height="15" fill="rgb(249,221,15)" fg:x="85536" fg:w="32"/><text x="29.1482%" y="287.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="28.8982%" y="261" width="0.0108%" height="15" fill="rgb(233,34,13)" fg:x="85536" fg:w="32"/><text x="29.1482%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="28.8982%" y="245" width="0.0108%" height="15" fill="rgb(214,103,39)" fg:x="85536" fg:w="32"/><text x="29.1482%" y="255.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="28.8965%" y="501" width="0.0128%" height="15" fill="rgb(251,126,39)" fg:x="85531" fg:w="38"/><text x="29.1465%" y="511.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="28.8965%" y="485" width="0.0128%" height="15" fill="rgb(214,216,36)" fg:x="85531" fg:w="38"/><text x="29.1465%" y="495.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.01%)</title><rect x="28.8965%" y="469" width="0.0128%" height="15" fill="rgb(220,221,8)" fg:x="85531" fg:w="38"/><text x="29.1465%" y="479.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.01%)</title><rect x="28.8965%" y="453" width="0.0128%" height="15" fill="rgb(240,216,3)" fg:x="85531" fg:w="38"/><text x="29.1465%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.01%)</title><rect x="28.8965%" y="437" width="0.0128%" height="15" fill="rgb(232,218,17)" fg:x="85531" fg:w="38"/><text x="29.1465%" y="447.50"></text></g><g><title>Parse::do_call (38 samples, 0.01%)</title><rect x="28.8965%" y="421" width="0.0128%" height="15" fill="rgb(229,163,45)" fg:x="85531" fg:w="38"/><text x="29.1465%" y="431.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="28.8965%" y="597" width="0.0132%" height="15" fill="rgb(231,110,42)" fg:x="85531" fg:w="39"/><text x="29.1465%" y="607.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="28.8965%" y="581" width="0.0132%" height="15" fill="rgb(208,170,48)" fg:x="85531" fg:w="39"/><text x="29.1465%" y="591.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.01%)</title><rect x="28.8965%" y="565" width="0.0132%" height="15" fill="rgb(239,116,25)" fg:x="85531" fg:w="39"/><text x="29.1465%" y="575.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.01%)</title><rect x="28.8965%" y="549" width="0.0132%" height="15" fill="rgb(219,200,50)" fg:x="85531" fg:w="39"/><text x="29.1465%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.01%)</title><rect x="28.8965%" y="533" width="0.0132%" height="15" fill="rgb(245,200,0)" fg:x="85531" fg:w="39"/><text x="29.1465%" y="543.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="28.8965%" y="517" width="0.0132%" height="15" fill="rgb(245,119,33)" fg:x="85531" fg:w="39"/><text x="29.1465%" y="527.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.01%)</title><rect x="28.8965%" y="693" width="0.0149%" height="15" fill="rgb(231,125,12)" fg:x="85531" fg:w="44"/><text x="29.1465%" y="703.50"></text></g><g><title>Parse::Parse (44 samples, 0.01%)</title><rect x="28.8965%" y="677" width="0.0149%" height="15" fill="rgb(216,96,41)" fg:x="85531" fg:w="44"/><text x="29.1465%" y="687.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="28.8965%" y="661" width="0.0149%" height="15" fill="rgb(248,43,45)" fg:x="85531" fg:w="44"/><text x="29.1465%" y="671.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="28.8965%" y="645" width="0.0149%" height="15" fill="rgb(217,222,7)" fg:x="85531" fg:w="44"/><text x="29.1465%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="28.8965%" y="629" width="0.0149%" height="15" fill="rgb(233,28,6)" fg:x="85531" fg:w="44"/><text x="29.1465%" y="639.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="28.8965%" y="613" width="0.0149%" height="15" fill="rgb(231,218,15)" fg:x="85531" fg:w="44"/><text x="29.1465%" y="623.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.02%)</title><rect x="28.8965%" y="789" width="0.0176%" height="15" fill="rgb(226,171,48)" fg:x="85531" fg:w="52"/><text x="29.1465%" y="799.50"></text></g><g><title>Parse::Parse (52 samples, 0.02%)</title><rect x="28.8965%" y="773" width="0.0176%" height="15" fill="rgb(235,201,9)" fg:x="85531" fg:w="52"/><text x="29.1465%" y="783.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.02%)</title><rect x="28.8965%" y="757" width="0.0176%" height="15" fill="rgb(217,80,15)" fg:x="85531" fg:w="52"/><text x="29.1465%" y="767.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.02%)</title><rect x="28.8965%" y="741" width="0.0176%" height="15" fill="rgb(219,152,8)" fg:x="85531" fg:w="52"/><text x="29.1465%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.02%)</title><rect x="28.8965%" y="725" width="0.0176%" height="15" fill="rgb(243,107,38)" fg:x="85531" fg:w="52"/><text x="29.1465%" y="735.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="28.8965%" y="709" width="0.0176%" height="15" fill="rgb(231,17,5)" fg:x="85531" fg:w="52"/><text x="29.1465%" y="719.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="28.8965%" y="853" width="0.0216%" height="15" fill="rgb(209,25,54)" fg:x="85531" fg:w="64"/><text x="29.1465%" y="863.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.02%)</title><rect x="28.8965%" y="837" width="0.0216%" height="15" fill="rgb(219,0,2)" fg:x="85531" fg:w="64"/><text x="29.1465%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.02%)</title><rect x="28.8965%" y="821" width="0.0216%" height="15" fill="rgb(246,9,5)" fg:x="85531" fg:w="64"/><text x="29.1465%" y="831.50"></text></g><g><title>Parse::do_call (64 samples, 0.02%)</title><rect x="28.8965%" y="805" width="0.0216%" height="15" fill="rgb(226,159,4)" fg:x="85531" fg:w="64"/><text x="29.1465%" y="815.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.01%)</title><rect x="28.9208%" y="165" width="0.0118%" height="15" fill="rgb(219,175,34)" fg:x="85603" fg:w="35"/><text x="29.1708%" y="175.50"></text></g><g><title>Parse::Parse (35 samples, 0.01%)</title><rect x="28.9208%" y="149" width="0.0118%" height="15" fill="rgb(236,10,46)" fg:x="85603" fg:w="35"/><text x="29.1708%" y="159.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="28.9215%" y="133" width="0.0111%" height="15" fill="rgb(240,211,16)" fg:x="85605" fg:w="33"/><text x="29.1715%" y="143.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="28.9215%" y="117" width="0.0111%" height="15" fill="rgb(205,3,43)" fg:x="85605" fg:w="33"/><text x="29.1715%" y="127.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="28.9218%" y="101" width="0.0108%" height="15" fill="rgb(245,7,22)" fg:x="85606" fg:w="32"/><text x="29.1718%" y="111.50"></text></g><g><title>Parse::do_call (40 samples, 0.01%)</title><rect x="28.9201%" y="181" width="0.0135%" height="15" fill="rgb(239,132,32)" fg:x="85601" fg:w="40"/><text x="29.1701%" y="191.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.01%)</title><rect x="28.9201%" y="261" width="0.0145%" height="15" fill="rgb(228,202,34)" fg:x="85601" fg:w="43"/><text x="29.1701%" y="271.50"></text></g><g><title>Parse::Parse (43 samples, 0.01%)</title><rect x="28.9201%" y="245" width="0.0145%" height="15" fill="rgb(254,200,22)" fg:x="85601" fg:w="43"/><text x="29.1701%" y="255.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.01%)</title><rect x="28.9201%" y="229" width="0.0145%" height="15" fill="rgb(219,10,39)" fg:x="85601" fg:w="43"/><text x="29.1701%" y="239.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.01%)</title><rect x="28.9201%" y="213" width="0.0145%" height="15" fill="rgb(226,210,39)" fg:x="85601" fg:w="43"/><text x="29.1701%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (43 samples, 0.01%)</title><rect x="28.9201%" y="197" width="0.0145%" height="15" fill="rgb(208,219,16)" fg:x="85601" fg:w="43"/><text x="29.1701%" y="207.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="28.9181%" y="277" width="0.0176%" height="15" fill="rgb(216,158,51)" fg:x="85595" fg:w="52"/><text x="29.1681%" y="287.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="28.9181%" y="357" width="0.0179%" height="15" fill="rgb(233,14,44)" fg:x="85595" fg:w="53"/><text x="29.1681%" y="367.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="28.9181%" y="341" width="0.0179%" height="15" fill="rgb(237,97,39)" fg:x="85595" fg:w="53"/><text x="29.1681%" y="351.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.02%)</title><rect x="28.9181%" y="325" width="0.0179%" height="15" fill="rgb(218,198,43)" fg:x="85595" fg:w="53"/><text x="29.1681%" y="335.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.02%)</title><rect x="28.9181%" y="309" width="0.0179%" height="15" fill="rgb(231,104,20)" fg:x="85595" fg:w="53"/><text x="29.1681%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.02%)</title><rect x="28.9181%" y="293" width="0.0179%" height="15" fill="rgb(254,36,13)" fg:x="85595" fg:w="53"/><text x="29.1681%" y="303.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.02%)</title><rect x="28.9181%" y="453" width="0.0182%" height="15" fill="rgb(248,14,50)" fg:x="85595" fg:w="54"/><text x="29.1681%" y="463.50"></text></g><g><title>Parse::Parse (54 samples, 0.02%)</title><rect x="28.9181%" y="437" width="0.0182%" height="15" fill="rgb(217,107,29)" fg:x="85595" fg:w="54"/><text x="29.1681%" y="447.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.02%)</title><rect x="28.9181%" y="421" width="0.0182%" height="15" fill="rgb(251,169,33)" fg:x="85595" fg:w="54"/><text x="29.1681%" y="431.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.02%)</title><rect x="28.9181%" y="405" width="0.0182%" height="15" fill="rgb(217,108,32)" fg:x="85595" fg:w="54"/><text x="29.1681%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.02%)</title><rect x="28.9181%" y="389" width="0.0182%" height="15" fill="rgb(219,66,42)" fg:x="85595" fg:w="54"/><text x="29.1681%" y="399.50"></text></g><g><title>Parse::do_call (54 samples, 0.02%)</title><rect x="28.9181%" y="373" width="0.0182%" height="15" fill="rgb(206,180,7)" fg:x="85595" fg:w="54"/><text x="29.1681%" y="383.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.02%)</title><rect x="28.9181%" y="549" width="0.0196%" height="15" fill="rgb(208,226,31)" fg:x="85595" fg:w="58"/><text x="29.1681%" y="559.50"></text></g><g><title>Parse::Parse (58 samples, 0.02%)</title><rect x="28.9181%" y="533" width="0.0196%" height="15" fill="rgb(218,26,49)" fg:x="85595" fg:w="58"/><text x="29.1681%" y="543.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.02%)</title><rect x="28.9181%" y="517" width="0.0196%" height="15" fill="rgb(233,197,48)" fg:x="85595" fg:w="58"/><text x="29.1681%" y="527.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.02%)</title><rect x="28.9181%" y="501" width="0.0196%" height="15" fill="rgb(252,181,51)" fg:x="85595" fg:w="58"/><text x="29.1681%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.02%)</title><rect x="28.9181%" y="485" width="0.0196%" height="15" fill="rgb(253,90,19)" fg:x="85595" fg:w="58"/><text x="29.1681%" y="495.50"></text></g><g><title>Parse::do_call (58 samples, 0.02%)</title><rect x="28.9181%" y="469" width="0.0196%" height="15" fill="rgb(215,171,30)" fg:x="85595" fg:w="58"/><text x="29.1681%" y="479.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.02%)</title><rect x="28.9181%" y="645" width="0.0243%" height="15" fill="rgb(214,222,9)" fg:x="85595" fg:w="72"/><text x="29.1681%" y="655.50"></text></g><g><title>Parse::Parse (72 samples, 0.02%)</title><rect x="28.9181%" y="629" width="0.0243%" height="15" fill="rgb(223,3,22)" fg:x="85595" fg:w="72"/><text x="29.1681%" y="639.50"></text></g><g><title>Parse::do_all_blocks (72 samples, 0.02%)</title><rect x="28.9181%" y="613" width="0.0243%" height="15" fill="rgb(225,196,46)" fg:x="85595" fg:w="72"/><text x="29.1681%" y="623.50"></text></g><g><title>Parse::do_one_block (72 samples, 0.02%)</title><rect x="28.9181%" y="597" width="0.0243%" height="15" fill="rgb(209,110,37)" fg:x="85595" fg:w="72"/><text x="29.1681%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (72 samples, 0.02%)</title><rect x="28.9181%" y="581" width="0.0243%" height="15" fill="rgb(249,89,12)" fg:x="85595" fg:w="72"/><text x="29.1681%" y="591.50"></text></g><g><title>Parse::do_call (72 samples, 0.02%)</title><rect x="28.9181%" y="565" width="0.0243%" height="15" fill="rgb(226,27,33)" fg:x="85595" fg:w="72"/><text x="29.1681%" y="575.50"></text></g><g><title>Parse::do_call (86 samples, 0.03%)</title><rect x="28.9181%" y="661" width="0.0291%" height="15" fill="rgb(213,82,22)" fg:x="85595" fg:w="86"/><text x="29.1681%" y="671.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.03%)</title><rect x="28.9181%" y="741" width="0.0294%" height="15" fill="rgb(248,140,0)" fg:x="85595" fg:w="87"/><text x="29.1681%" y="751.50"></text></g><g><title>Parse::Parse (87 samples, 0.03%)</title><rect x="28.9181%" y="725" width="0.0294%" height="15" fill="rgb(228,106,3)" fg:x="85595" fg:w="87"/><text x="29.1681%" y="735.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.03%)</title><rect x="28.9181%" y="709" width="0.0294%" height="15" fill="rgb(209,23,37)" fg:x="85595" fg:w="87"/><text x="29.1681%" y="719.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.03%)</title><rect x="28.9181%" y="693" width="0.0294%" height="15" fill="rgb(241,93,50)" fg:x="85595" fg:w="87"/><text x="29.1681%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.03%)</title><rect x="28.9181%" y="677" width="0.0294%" height="15" fill="rgb(253,46,43)" fg:x="85595" fg:w="87"/><text x="29.1681%" y="687.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.04%)</title><rect x="28.9181%" y="837" width="0.0372%" height="15" fill="rgb(226,206,43)" fg:x="85595" fg:w="110"/><text x="29.1681%" y="847.50"></text></g><g><title>Parse::Parse (110 samples, 0.04%)</title><rect x="28.9181%" y="821" width="0.0372%" height="15" fill="rgb(217,54,7)" fg:x="85595" fg:w="110"/><text x="29.1681%" y="831.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.04%)</title><rect x="28.9181%" y="805" width="0.0372%" height="15" fill="rgb(223,5,52)" fg:x="85595" fg:w="110"/><text x="29.1681%" y="815.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.04%)</title><rect x="28.9181%" y="789" width="0.0372%" height="15" fill="rgb(206,52,46)" fg:x="85595" fg:w="110"/><text x="29.1681%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.04%)</title><rect x="28.9181%" y="773" width="0.0372%" height="15" fill="rgb(253,136,11)" fg:x="85595" fg:w="110"/><text x="29.1681%" y="783.50"></text></g><g><title>Parse::do_call (110 samples, 0.04%)</title><rect x="28.9181%" y="757" width="0.0372%" height="15" fill="rgb(208,106,33)" fg:x="85595" fg:w="110"/><text x="29.1681%" y="767.50"></text></g><g><title>Parse::do_call (124 samples, 0.04%)</title><rect x="28.9181%" y="853" width="0.0419%" height="15" fill="rgb(206,54,4)" fg:x="85595" fg:w="124"/><text x="29.1681%" y="863.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="28.9600%" y="421" width="0.0101%" height="15" fill="rgb(213,3,15)" fg:x="85719" fg:w="30"/><text x="29.2100%" y="431.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="28.9600%" y="405" width="0.0101%" height="15" fill="rgb(252,211,39)" fg:x="85719" fg:w="30"/><text x="29.2100%" y="415.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="28.9600%" y="389" width="0.0101%" height="15" fill="rgb(223,6,36)" fg:x="85719" fg:w="30"/><text x="29.2100%" y="399.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="28.9600%" y="373" width="0.0101%" height="15" fill="rgb(252,169,45)" fg:x="85719" fg:w="30"/><text x="29.2100%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="28.9600%" y="357" width="0.0101%" height="15" fill="rgb(212,48,26)" fg:x="85719" fg:w="30"/><text x="29.2100%" y="367.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="28.9600%" y="341" width="0.0101%" height="15" fill="rgb(251,102,48)" fg:x="85719" fg:w="30"/><text x="29.2100%" y="351.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="28.9600%" y="581" width="0.0105%" height="15" fill="rgb(243,208,16)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="591.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.01%)</title><rect x="28.9600%" y="565" width="0.0105%" height="15" fill="rgb(219,96,24)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="28.9600%" y="549" width="0.0105%" height="15" fill="rgb(219,33,29)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="559.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="28.9600%" y="533" width="0.0105%" height="15" fill="rgb(223,176,5)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="543.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.01%)</title><rect x="28.9600%" y="517" width="0.0105%" height="15" fill="rgb(228,140,14)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="527.50"></text></g><g><title>Parse::Parse (31 samples, 0.01%)</title><rect x="28.9600%" y="501" width="0.0105%" height="15" fill="rgb(217,179,31)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="511.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="28.9600%" y="485" width="0.0105%" height="15" fill="rgb(230,9,30)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="495.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.01%)</title><rect x="28.9600%" y="469" width="0.0105%" height="15" fill="rgb(230,136,20)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="28.9600%" y="453" width="0.0105%" height="15" fill="rgb(215,210,22)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="463.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="28.9600%" y="437" width="0.0105%" height="15" fill="rgb(218,43,5)" fg:x="85719" fg:w="31"/><text x="29.2100%" y="447.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="28.9600%" y="613" width="0.0128%" height="15" fill="rgb(216,11,5)" fg:x="85719" fg:w="38"/><text x="29.2100%" y="623.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="28.9600%" y="597" width="0.0128%" height="15" fill="rgb(209,82,29)" fg:x="85719" fg:w="38"/><text x="29.2100%" y="607.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.01%)</title><rect x="28.9600%" y="709" width="0.0149%" height="15" fill="rgb(244,115,12)" fg:x="85719" fg:w="44"/><text x="29.2100%" y="719.50"></text></g><g><title>Parse::Parse (44 samples, 0.01%)</title><rect x="28.9600%" y="693" width="0.0149%" height="15" fill="rgb(222,82,18)" fg:x="85719" fg:w="44"/><text x="29.2100%" y="703.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="28.9600%" y="677" width="0.0149%" height="15" fill="rgb(249,227,8)" fg:x="85719" fg:w="44"/><text x="29.2100%" y="687.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="28.9600%" y="661" width="0.0149%" height="15" fill="rgb(253,141,45)" fg:x="85719" fg:w="44"/><text x="29.2100%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="28.9600%" y="645" width="0.0149%" height="15" fill="rgb(234,184,4)" fg:x="85719" fg:w="44"/><text x="29.2100%" y="655.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="28.9600%" y="629" width="0.0149%" height="15" fill="rgb(218,194,23)" fg:x="85719" fg:w="44"/><text x="29.2100%" y="639.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="28.9600%" y="805" width="0.0179%" height="15" fill="rgb(235,66,41)" fg:x="85719" fg:w="53"/><text x="29.2100%" y="815.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="28.9600%" y="789" width="0.0179%" height="15" fill="rgb(245,217,1)" fg:x="85719" fg:w="53"/><text x="29.2100%" y="799.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.02%)</title><rect x="28.9600%" y="773" width="0.0179%" height="15" fill="rgb(229,91,1)" fg:x="85719" fg:w="53"/><text x="29.2100%" y="783.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.02%)</title><rect x="28.9600%" y="757" width="0.0179%" height="15" fill="rgb(207,101,30)" fg:x="85719" fg:w="53"/><text x="29.2100%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.02%)</title><rect x="28.9600%" y="741" width="0.0179%" height="15" fill="rgb(223,82,49)" fg:x="85719" fg:w="53"/><text x="29.2100%" y="751.50"></text></g><g><title>Parse::do_call (53 samples, 0.02%)</title><rect x="28.9600%" y="725" width="0.0179%" height="15" fill="rgb(218,167,17)" fg:x="85719" fg:w="53"/><text x="29.2100%" y="735.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.02%)</title><rect x="28.9600%" y="853" width="0.0209%" height="15" fill="rgb(208,103,14)" fg:x="85719" fg:w="62"/><text x="29.2100%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.02%)</title><rect x="28.9600%" y="837" width="0.0209%" height="15" fill="rgb(238,20,8)" fg:x="85719" fg:w="62"/><text x="29.2100%" y="847.50"></text></g><g><title>Parse::do_call (62 samples, 0.02%)</title><rect x="28.9600%" y="821" width="0.0209%" height="15" fill="rgb(218,80,54)" fg:x="85719" fg:w="62"/><text x="29.2100%" y="831.50"></text></g><g><title>Parse::do_call (34 samples, 0.01%)</title><rect x="28.9826%" y="165" width="0.0115%" height="15" fill="rgb(240,144,17)" fg:x="85786" fg:w="34"/><text x="29.2326%" y="175.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="28.9816%" y="245" width="0.0128%" height="15" fill="rgb(245,27,50)" fg:x="85783" fg:w="38"/><text x="29.2316%" y="255.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="28.9816%" y="229" width="0.0128%" height="15" fill="rgb(251,51,7)" fg:x="85783" fg:w="38"/><text x="29.2316%" y="239.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.01%)</title><rect x="28.9823%" y="213" width="0.0122%" height="15" fill="rgb(245,217,29)" fg:x="85785" fg:w="36"/><text x="29.2323%" y="223.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.01%)</title><rect x="28.9823%" y="197" width="0.0122%" height="15" fill="rgb(221,176,29)" fg:x="85785" fg:w="36"/><text x="29.2323%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.01%)</title><rect x="28.9823%" y="181" width="0.0122%" height="15" fill="rgb(212,180,24)" fg:x="85785" fg:w="36"/><text x="29.2323%" y="191.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="28.9816%" y="261" width="0.0132%" height="15" fill="rgb(254,24,2)" fg:x="85783" fg:w="39"/><text x="29.2316%" y="271.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.01%)</title><rect x="28.9816%" y="341" width="0.0139%" height="15" fill="rgb(230,100,2)" fg:x="85783" fg:w="41"/><text x="29.2316%" y="351.50"></text></g><g><title>Parse::Parse (41 samples, 0.01%)</title><rect x="28.9816%" y="325" width="0.0139%" height="15" fill="rgb(219,142,25)" fg:x="85783" fg:w="41"/><text x="29.2316%" y="335.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.01%)</title><rect x="28.9816%" y="309" width="0.0139%" height="15" fill="rgb(240,73,43)" fg:x="85783" fg:w="41"/><text x="29.2316%" y="319.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.01%)</title><rect x="28.9816%" y="293" width="0.0139%" height="15" fill="rgb(214,114,15)" fg:x="85783" fg:w="41"/><text x="29.2316%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.01%)</title><rect x="28.9816%" y="277" width="0.0139%" height="15" fill="rgb(207,130,4)" fg:x="85783" fg:w="41"/><text x="29.2316%" y="287.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.02%)</title><rect x="28.9809%" y="437" width="0.0155%" height="15" fill="rgb(221,25,40)" fg:x="85781" fg:w="46"/><text x="29.2309%" y="447.50"></text></g><g><title>Parse::Parse (46 samples, 0.02%)</title><rect x="28.9809%" y="421" width="0.0155%" height="15" fill="rgb(241,184,7)" fg:x="85781" fg:w="46"/><text x="29.2309%" y="431.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="28.9809%" y="405" width="0.0155%" height="15" fill="rgb(235,159,4)" fg:x="85781" fg:w="46"/><text x="29.2309%" y="415.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="28.9809%" y="389" width="0.0155%" height="15" fill="rgb(214,87,48)" fg:x="85781" fg:w="46"/><text x="29.2309%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.02%)</title><rect x="28.9809%" y="373" width="0.0155%" height="15" fill="rgb(246,198,24)" fg:x="85781" fg:w="46"/><text x="29.2309%" y="383.50"></text></g><g><title>Parse::do_call (46 samples, 0.02%)</title><rect x="28.9809%" y="357" width="0.0155%" height="15" fill="rgb(209,66,40)" fg:x="85781" fg:w="46"/><text x="29.2309%" y="367.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.02%)</title><rect x="28.9809%" y="533" width="0.0166%" height="15" fill="rgb(233,147,39)" fg:x="85781" fg:w="49"/><text x="29.2309%" y="543.50"></text></g><g><title>Parse::Parse (49 samples, 0.02%)</title><rect x="28.9809%" y="517" width="0.0166%" height="15" fill="rgb(231,145,52)" fg:x="85781" fg:w="49"/><text x="29.2309%" y="527.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.02%)</title><rect x="28.9809%" y="501" width="0.0166%" height="15" fill="rgb(206,20,26)" fg:x="85781" fg:w="49"/><text x="29.2309%" y="511.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.02%)</title><rect x="28.9809%" y="485" width="0.0166%" height="15" fill="rgb(238,220,4)" fg:x="85781" fg:w="49"/><text x="29.2309%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.02%)</title><rect x="28.9809%" y="469" width="0.0166%" height="15" fill="rgb(252,195,42)" fg:x="85781" fg:w="49"/><text x="29.2309%" y="479.50"></text></g><g><title>Parse::do_call (49 samples, 0.02%)</title><rect x="28.9809%" y="453" width="0.0166%" height="15" fill="rgb(209,10,6)" fg:x="85781" fg:w="49"/><text x="29.2309%" y="463.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="28.9809%" y="629" width="0.0179%" height="15" fill="rgb(229,3,52)" fg:x="85781" fg:w="53"/><text x="29.2309%" y="639.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="28.9809%" y="613" width="0.0179%" height="15" fill="rgb(253,49,37)" fg:x="85781" fg:w="53"/><text x="29.2309%" y="623.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.02%)</title><rect x="28.9809%" y="597" width="0.0179%" height="15" fill="rgb(240,103,49)" fg:x="85781" fg:w="53"/><text x="29.2309%" y="607.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.02%)</title><rect x="28.9809%" y="581" width="0.0179%" height="15" fill="rgb(250,182,30)" fg:x="85781" fg:w="53"/><text x="29.2309%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.02%)</title><rect x="28.9809%" y="565" width="0.0179%" height="15" fill="rgb(248,8,30)" fg:x="85781" fg:w="53"/><text x="29.2309%" y="575.50"></text></g><g><title>Parse::do_call (53 samples, 0.02%)</title><rect x="28.9809%" y="549" width="0.0179%" height="15" fill="rgb(237,120,30)" fg:x="85781" fg:w="53"/><text x="29.2309%" y="559.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.02%)</title><rect x="28.9809%" y="725" width="0.0193%" height="15" fill="rgb(221,146,34)" fg:x="85781" fg:w="57"/><text x="29.2309%" y="735.50"></text></g><g><title>Parse::Parse (57 samples, 0.02%)</title><rect x="28.9809%" y="709" width="0.0193%" height="15" fill="rgb(242,55,13)" fg:x="85781" fg:w="57"/><text x="29.2309%" y="719.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.02%)</title><rect x="28.9809%" y="693" width="0.0193%" height="15" fill="rgb(242,112,31)" fg:x="85781" fg:w="57"/><text x="29.2309%" y="703.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.02%)</title><rect x="28.9809%" y="677" width="0.0193%" height="15" fill="rgb(249,192,27)" fg:x="85781" fg:w="57"/><text x="29.2309%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="28.9809%" y="661" width="0.0193%" height="15" fill="rgb(208,204,44)" fg:x="85781" fg:w="57"/><text x="29.2309%" y="671.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="28.9809%" y="645" width="0.0193%" height="15" fill="rgb(208,93,54)" fg:x="85781" fg:w="57"/><text x="29.2309%" y="655.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.02%)</title><rect x="28.9809%" y="821" width="0.0216%" height="15" fill="rgb(242,1,31)" fg:x="85781" fg:w="64"/><text x="29.2309%" y="831.50"></text></g><g><title>Parse::Parse (64 samples, 0.02%)</title><rect x="28.9809%" y="805" width="0.0216%" height="15" fill="rgb(241,83,25)" fg:x="85781" fg:w="64"/><text x="29.2309%" y="815.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="28.9809%" y="789" width="0.0216%" height="15" fill="rgb(205,169,50)" fg:x="85781" fg:w="64"/><text x="29.2309%" y="799.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.02%)</title><rect x="28.9809%" y="773" width="0.0216%" height="15" fill="rgb(239,186,37)" fg:x="85781" fg:w="64"/><text x="29.2309%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.02%)</title><rect x="28.9809%" y="757" width="0.0216%" height="15" fill="rgb(205,221,10)" fg:x="85781" fg:w="64"/><text x="29.2309%" y="767.50"></text></g><g><title>Parse::do_call (64 samples, 0.02%)</title><rect x="28.9809%" y="741" width="0.0216%" height="15" fill="rgb(218,196,15)" fg:x="85781" fg:w="64"/><text x="29.2309%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.02%)</title><rect x="28.9809%" y="853" width="0.0233%" height="15" fill="rgb(218,196,35)" fg:x="85781" fg:w="69"/><text x="29.2309%" y="863.50"></text></g><g><title>Parse::do_call (69 samples, 0.02%)</title><rect x="28.9809%" y="837" width="0.0233%" height="15" fill="rgb(233,63,24)" fg:x="85781" fg:w="69"/><text x="29.2309%" y="847.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="29.0218%" y="69" width="0.0125%" height="15" fill="rgb(225,8,4)" fg:x="85902" fg:w="37"/><text x="29.2718%" y="79.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="29.0218%" y="85" width="0.0128%" height="15" fill="rgb(234,105,35)" fg:x="85902" fg:w="38"/><text x="29.2718%" y="95.50"></text></g><g><title>Parse::do_call (71 samples, 0.02%)</title><rect x="29.0120%" y="101" width="0.0240%" height="15" fill="rgb(236,21,32)" fg:x="85873" fg:w="71"/><text x="29.2620%" y="111.50"></text></g><g><title>ParseGenerator::generate (111 samples, 0.04%)</title><rect x="29.0093%" y="181" width="0.0375%" height="15" fill="rgb(228,109,6)" fg:x="85865" fg:w="111"/><text x="29.2593%" y="191.50"></text></g><g><title>Parse::Parse (111 samples, 0.04%)</title><rect x="29.0093%" y="165" width="0.0375%" height="15" fill="rgb(229,215,31)" fg:x="85865" fg:w="111"/><text x="29.2593%" y="175.50"></text></g><g><title>Parse::do_all_blocks (111 samples, 0.04%)</title><rect x="29.0093%" y="149" width="0.0375%" height="15" fill="rgb(221,52,54)" fg:x="85865" fg:w="111"/><text x="29.2593%" y="159.50"></text></g><g><title>Parse::do_one_block (111 samples, 0.04%)</title><rect x="29.0093%" y="133" width="0.0375%" height="15" fill="rgb(252,129,43)" fg:x="85865" fg:w="111"/><text x="29.2593%" y="143.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.04%)</title><rect x="29.0093%" y="117" width="0.0375%" height="15" fill="rgb(248,183,27)" fg:x="85865" fg:w="111"/><text x="29.2593%" y="127.50"></text></g><g><title>Parse::do_call (125 samples, 0.04%)</title><rect x="29.0063%" y="197" width="0.0422%" height="15" fill="rgb(250,0,22)" fg:x="85856" fg:w="125"/><text x="29.2563%" y="207.50"></text></g><g><title>ParseGenerator::generate (139 samples, 0.05%)</title><rect x="29.0063%" y="277" width="0.0470%" height="15" fill="rgb(213,166,10)" fg:x="85856" fg:w="139"/><text x="29.2563%" y="287.50"></text></g><g><title>Parse::Parse (139 samples, 0.05%)</title><rect x="29.0063%" y="261" width="0.0470%" height="15" fill="rgb(207,163,36)" fg:x="85856" fg:w="139"/><text x="29.2563%" y="271.50"></text></g><g><title>Parse::do_all_blocks (139 samples, 0.05%)</title><rect x="29.0063%" y="245" width="0.0470%" height="15" fill="rgb(208,122,22)" fg:x="85856" fg:w="139"/><text x="29.2563%" y="255.50"></text></g><g><title>Parse::do_one_block (139 samples, 0.05%)</title><rect x="29.0063%" y="229" width="0.0470%" height="15" fill="rgb(207,104,49)" fg:x="85856" fg:w="139"/><text x="29.2563%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (139 samples, 0.05%)</title><rect x="29.0063%" y="213" width="0.0470%" height="15" fill="rgb(248,211,50)" fg:x="85856" fg:w="139"/><text x="29.2563%" y="223.50"></text></g><g><title>Parse::do_call (149 samples, 0.05%)</title><rect x="29.0046%" y="293" width="0.0503%" height="15" fill="rgb(217,13,45)" fg:x="85851" fg:w="149"/><text x="29.2546%" y="303.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.05%)</title><rect x="29.0046%" y="373" width="0.0514%" height="15" fill="rgb(211,216,49)" fg:x="85851" fg:w="152"/><text x="29.2546%" y="383.50"></text></g><g><title>Parse::Parse (152 samples, 0.05%)</title><rect x="29.0046%" y="357" width="0.0514%" height="15" fill="rgb(221,58,53)" fg:x="85851" fg:w="152"/><text x="29.2546%" y="367.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.05%)</title><rect x="29.0046%" y="341" width="0.0514%" height="15" fill="rgb(220,112,41)" fg:x="85851" fg:w="152"/><text x="29.2546%" y="351.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.05%)</title><rect x="29.0046%" y="325" width="0.0514%" height="15" fill="rgb(236,38,28)" fg:x="85851" fg:w="152"/><text x="29.2546%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.05%)</title><rect x="29.0046%" y="309" width="0.0514%" height="15" fill="rgb(227,195,22)" fg:x="85851" fg:w="152"/><text x="29.2546%" y="319.50"></text></g><g><title>ParseGenerator::generate (159 samples, 0.05%)</title><rect x="29.0043%" y="469" width="0.0537%" height="15" fill="rgb(214,55,33)" fg:x="85850" fg:w="159"/><text x="29.2543%" y="479.50"></text></g><g><title>Parse::Parse (159 samples, 0.05%)</title><rect x="29.0043%" y="453" width="0.0537%" height="15" fill="rgb(248,80,13)" fg:x="85850" fg:w="159"/><text x="29.2543%" y="463.50"></text></g><g><title>Parse::do_all_blocks (159 samples, 0.05%)</title><rect x="29.0043%" y="437" width="0.0537%" height="15" fill="rgb(238,52,6)" fg:x="85850" fg:w="159"/><text x="29.2543%" y="447.50"></text></g><g><title>Parse::do_one_block (159 samples, 0.05%)</title><rect x="29.0043%" y="421" width="0.0537%" height="15" fill="rgb(224,198,47)" fg:x="85850" fg:w="159"/><text x="29.2543%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (159 samples, 0.05%)</title><rect x="29.0043%" y="405" width="0.0537%" height="15" fill="rgb(233,171,20)" fg:x="85850" fg:w="159"/><text x="29.2543%" y="415.50"></text></g><g><title>Parse::do_call (159 samples, 0.05%)</title><rect x="29.0043%" y="389" width="0.0537%" height="15" fill="rgb(241,30,25)" fg:x="85850" fg:w="159"/><text x="29.2543%" y="399.50"></text></g><g><title>ParseGenerator::generate (169 samples, 0.06%)</title><rect x="29.0043%" y="565" width="0.0571%" height="15" fill="rgb(207,171,38)" fg:x="85850" fg:w="169"/><text x="29.2543%" y="575.50"></text></g><g><title>Parse::Parse (169 samples, 0.06%)</title><rect x="29.0043%" y="549" width="0.0571%" height="15" fill="rgb(234,70,1)" fg:x="85850" fg:w="169"/><text x="29.2543%" y="559.50"></text></g><g><title>Parse::do_all_blocks (169 samples, 0.06%)</title><rect x="29.0043%" y="533" width="0.0571%" height="15" fill="rgb(232,178,18)" fg:x="85850" fg:w="169"/><text x="29.2543%" y="543.50"></text></g><g><title>Parse::do_one_block (169 samples, 0.06%)</title><rect x="29.0043%" y="517" width="0.0571%" height="15" fill="rgb(241,78,40)" fg:x="85850" fg:w="169"/><text x="29.2543%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (169 samples, 0.06%)</title><rect x="29.0043%" y="501" width="0.0571%" height="15" fill="rgb(222,35,25)" fg:x="85850" fg:w="169"/><text x="29.2543%" y="511.50"></text></g><g><title>Parse::do_call (169 samples, 0.06%)</title><rect x="29.0043%" y="485" width="0.0571%" height="15" fill="rgb(207,92,16)" fg:x="85850" fg:w="169"/><text x="29.2543%" y="495.50"></text></g><g><title>ParseGenerator::generate (188 samples, 0.06%)</title><rect x="29.0043%" y="661" width="0.0635%" height="15" fill="rgb(216,59,51)" fg:x="85850" fg:w="188"/><text x="29.2543%" y="671.50"></text></g><g><title>Parse::Parse (188 samples, 0.06%)</title><rect x="29.0043%" y="645" width="0.0635%" height="15" fill="rgb(213,80,28)" fg:x="85850" fg:w="188"/><text x="29.2543%" y="655.50"></text></g><g><title>Parse::do_all_blocks (188 samples, 0.06%)</title><rect x="29.0043%" y="629" width="0.0635%" height="15" fill="rgb(220,93,7)" fg:x="85850" fg:w="188"/><text x="29.2543%" y="639.50"></text></g><g><title>Parse::do_one_block (188 samples, 0.06%)</title><rect x="29.0043%" y="613" width="0.0635%" height="15" fill="rgb(225,24,44)" fg:x="85850" fg:w="188"/><text x="29.2543%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (188 samples, 0.06%)</title><rect x="29.0043%" y="597" width="0.0635%" height="15" fill="rgb(243,74,40)" fg:x="85850" fg:w="188"/><text x="29.2543%" y="607.50"></text></g><g><title>Parse::do_call (188 samples, 0.06%)</title><rect x="29.0043%" y="581" width="0.0635%" height="15" fill="rgb(228,39,7)" fg:x="85850" fg:w="188"/><text x="29.2543%" y="591.50"></text></g><g><title>ParseGenerator::generate (214 samples, 0.07%)</title><rect x="29.0043%" y="757" width="0.0723%" height="15" fill="rgb(227,79,8)" fg:x="85850" fg:w="214"/><text x="29.2543%" y="767.50"></text></g><g><title>Parse::Parse (214 samples, 0.07%)</title><rect x="29.0043%" y="741" width="0.0723%" height="15" fill="rgb(236,58,11)" fg:x="85850" fg:w="214"/><text x="29.2543%" y="751.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.07%)</title><rect x="29.0043%" y="725" width="0.0723%" height="15" fill="rgb(249,63,35)" fg:x="85850" fg:w="214"/><text x="29.2543%" y="735.50"></text></g><g><title>Parse::do_one_block (214 samples, 0.07%)</title><rect x="29.0043%" y="709" width="0.0723%" height="15" fill="rgb(252,114,16)" fg:x="85850" fg:w="214"/><text x="29.2543%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.07%)</title><rect x="29.0043%" y="693" width="0.0723%" height="15" fill="rgb(254,151,24)" fg:x="85850" fg:w="214"/><text x="29.2543%" y="703.50"></text></g><g><title>Parse::do_call (214 samples, 0.07%)</title><rect x="29.0043%" y="677" width="0.0723%" height="15" fill="rgb(253,54,39)" fg:x="85850" fg:w="214"/><text x="29.2543%" y="687.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.01%)</title><rect x="29.0766%" y="645" width="0.0115%" height="15" fill="rgb(243,25,45)" fg:x="86064" fg:w="34"/><text x="29.3266%" y="655.50"></text></g><g><title>Parse::Parse (34 samples, 0.01%)</title><rect x="29.0766%" y="629" width="0.0115%" height="15" fill="rgb(234,134,9)" fg:x="86064" fg:w="34"/><text x="29.3266%" y="639.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.01%)</title><rect x="29.0766%" y="613" width="0.0115%" height="15" fill="rgb(227,166,31)" fg:x="86064" fg:w="34"/><text x="29.3266%" y="623.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.01%)</title><rect x="29.0766%" y="597" width="0.0115%" height="15" fill="rgb(245,143,41)" fg:x="86064" fg:w="34"/><text x="29.3266%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.01%)</title><rect x="29.0766%" y="581" width="0.0115%" height="15" fill="rgb(238,181,32)" fg:x="86064" fg:w="34"/><text x="29.3266%" y="591.50"></text></g><g><title>Parse::do_call (34 samples, 0.01%)</title><rect x="29.0766%" y="565" width="0.0115%" height="15" fill="rgb(224,113,18)" fg:x="86064" fg:w="34"/><text x="29.3266%" y="575.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="29.0766%" y="741" width="0.0128%" height="15" fill="rgb(240,229,28)" fg:x="86064" fg:w="38"/><text x="29.3266%" y="751.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="29.0766%" y="725" width="0.0128%" height="15" fill="rgb(250,185,3)" fg:x="86064" fg:w="38"/><text x="29.3266%" y="735.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.01%)</title><rect x="29.0766%" y="709" width="0.0128%" height="15" fill="rgb(212,59,25)" fg:x="86064" fg:w="38"/><text x="29.3266%" y="719.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.01%)</title><rect x="29.0766%" y="693" width="0.0128%" height="15" fill="rgb(221,87,20)" fg:x="86064" fg:w="38"/><text x="29.3266%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.01%)</title><rect x="29.0766%" y="677" width="0.0128%" height="15" fill="rgb(213,74,28)" fg:x="86064" fg:w="38"/><text x="29.3266%" y="687.50"></text></g><g><title>Parse::do_call (38 samples, 0.01%)</title><rect x="29.0766%" y="661" width="0.0128%" height="15" fill="rgb(224,132,34)" fg:x="86064" fg:w="38"/><text x="29.3266%" y="671.50"></text></g><g><title>ParseGenerator::generate (253 samples, 0.09%)</title><rect x="29.0043%" y="853" width="0.0855%" height="15" fill="rgb(222,101,24)" fg:x="85850" fg:w="253"/><text x="29.2543%" y="863.50"></text></g><g><title>Parse::Parse (253 samples, 0.09%)</title><rect x="29.0043%" y="837" width="0.0855%" height="15" fill="rgb(254,142,4)" fg:x="85850" fg:w="253"/><text x="29.2543%" y="847.50"></text></g><g><title>Parse::do_all_blocks (253 samples, 0.09%)</title><rect x="29.0043%" y="821" width="0.0855%" height="15" fill="rgb(230,229,49)" fg:x="85850" fg:w="253"/><text x="29.2543%" y="831.50"></text></g><g><title>Parse::do_one_block (253 samples, 0.09%)</title><rect x="29.0043%" y="805" width="0.0855%" height="15" fill="rgb(238,70,47)" fg:x="85850" fg:w="253"/><text x="29.2543%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (253 samples, 0.09%)</title><rect x="29.0043%" y="789" width="0.0855%" height="15" fill="rgb(231,160,17)" fg:x="85850" fg:w="253"/><text x="29.2543%" y="799.50"></text></g><g><title>Parse::do_call (253 samples, 0.09%)</title><rect x="29.0043%" y="773" width="0.0855%" height="15" fill="rgb(218,68,53)" fg:x="85850" fg:w="253"/><text x="29.2543%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.01%)</title><rect x="29.0766%" y="757" width="0.0132%" height="15" fill="rgb(236,111,10)" fg:x="86064" fg:w="39"/><text x="29.3266%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (30 samples, 0.01%)</title><rect x="29.0968%" y="853" width="0.0101%" height="15" fill="rgb(224,34,41)" fg:x="86124" fg:w="30"/><text x="29.3468%" y="863.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="29.1124%" y="757" width="0.0125%" height="15" fill="rgb(241,118,19)" fg:x="86170" fg:w="37"/><text x="29.3624%" y="767.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="29.1124%" y="741" width="0.0125%" height="15" fill="rgb(238,129,25)" fg:x="86170" fg:w="37"/><text x="29.3624%" y="751.50"></text></g><g><title>Thread::call_run (64 samples, 0.02%)</title><rect x="29.1107%" y="853" width="0.0216%" height="15" fill="rgb(238,22,31)" fg:x="86165" fg:w="64"/><text x="29.3607%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (64 samples, 0.02%)</title><rect x="29.1107%" y="837" width="0.0216%" height="15" fill="rgb(222,174,48)" fg:x="86165" fg:w="64"/><text x="29.3607%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (64 samples, 0.02%)</title><rect x="29.1107%" y="821" width="0.0216%" height="15" fill="rgb(206,152,40)" fg:x="86165" fg:w="64"/><text x="29.3607%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (64 samples, 0.02%)</title><rect x="29.1107%" y="805" width="0.0216%" height="15" fill="rgb(218,99,54)" fg:x="86165" fg:w="64"/><text x="29.3607%" y="815.50"></text></g><g><title>C2Compiler::compile_method (64 samples, 0.02%)</title><rect x="29.1107%" y="789" width="0.0216%" height="15" fill="rgb(220,174,26)" fg:x="86165" fg:w="64"/><text x="29.3607%" y="799.50"></text></g><g><title>Compile::Compile (64 samples, 0.02%)</title><rect x="29.1107%" y="773" width="0.0216%" height="15" fill="rgb(245,116,9)" fg:x="86165" fg:w="64"/><text x="29.3607%" y="783.50"></text></g><g><title>_dl_update_slotinfo (71 samples, 0.02%)</title><rect x="29.1445%" y="853" width="0.0240%" height="15" fill="rgb(209,72,35)" fg:x="86265" fg:w="71"/><text x="29.3945%" y="863.50"></text></g><g><title>ciEnv::register_method (37 samples, 0.01%)</title><rect x="29.1951%" y="725" width="0.0125%" height="15" fill="rgb(226,126,21)" fg:x="86415" fg:w="37"/><text x="29.4451%" y="735.50"></text></g><g><title>start_thread (97 samples, 0.03%)</title><rect x="29.1755%" y="853" width="0.0328%" height="15" fill="rgb(227,192,1)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="863.50"></text></g><g><title>thread_native_entry (97 samples, 0.03%)</title><rect x="29.1755%" y="837" width="0.0328%" height="15" fill="rgb(237,180,29)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="847.50"></text></g><g><title>Thread::call_run (97 samples, 0.03%)</title><rect x="29.1755%" y="821" width="0.0328%" height="15" fill="rgb(230,197,35)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (97 samples, 0.03%)</title><rect x="29.1755%" y="805" width="0.0328%" height="15" fill="rgb(246,193,31)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (97 samples, 0.03%)</title><rect x="29.1755%" y="789" width="0.0328%" height="15" fill="rgb(241,36,4)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (97 samples, 0.03%)</title><rect x="29.1755%" y="773" width="0.0328%" height="15" fill="rgb(241,130,17)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="783.50"></text></g><g><title>C2Compiler::compile_method (97 samples, 0.03%)</title><rect x="29.1755%" y="757" width="0.0328%" height="15" fill="rgb(206,137,32)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="767.50"></text></g><g><title>Compile::Compile (97 samples, 0.03%)</title><rect x="29.1755%" y="741" width="0.0328%" height="15" fill="rgb(237,228,51)" fg:x="86357" fg:w="97"/><text x="29.4255%" y="751.50"></text></g><g><title>[unknown] (69,026 samples, 23.32%)</title><rect x="5.8948%" y="869" width="23.3203%" height="15" fill="rgb(243,6,42)" fg:x="17448" fg:w="69026"/><text x="6.1448%" y="879.50">[unknown]</text></g><g><title>Compile::inline_string_calls (42 samples, 0.01%)</title><rect x="29.2502%" y="725" width="0.0142%" height="15" fill="rgb(251,74,28)" fg:x="86578" fg:w="42"/><text x="29.5002%" y="735.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (42 samples, 0.01%)</title><rect x="29.2502%" y="709" width="0.0142%" height="15" fill="rgb(218,20,49)" fg:x="86578" fg:w="42"/><text x="29.5002%" y="719.50"></text></g><g><title>Dict::Insert (59 samples, 0.02%)</title><rect x="29.2685%" y="693" width="0.0199%" height="15" fill="rgb(238,28,14)" fg:x="86632" fg:w="59"/><text x="29.5185%" y="703.50"></text></g><g><title>Type::Initialize (75 samples, 0.03%)</title><rect x="29.2681%" y="709" width="0.0253%" height="15" fill="rgb(229,40,46)" fg:x="86631" fg:w="75"/><text x="29.5181%" y="719.50"></text></g><g><title>CompileWrapper::CompileWrapper (78 samples, 0.03%)</title><rect x="29.2678%" y="725" width="0.0264%" height="15" fill="rgb(244,195,20)" fg:x="86630" fg:w="78"/><text x="29.5178%" y="735.50"></text></g><g><title>Compile::identify_useful_nodes (190 samples, 0.06%)</title><rect x="29.3090%" y="709" width="0.0642%" height="15" fill="rgb(253,56,35)" fg:x="86752" fg:w="190"/><text x="29.5590%" y="719.50"></text></g><g><title>Compile::remove_useless_nodes (200 samples, 0.07%)</title><rect x="29.3732%" y="709" width="0.0676%" height="15" fill="rgb(210,149,44)" fg:x="86942" fg:w="200"/><text x="29.6232%" y="719.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (485 samples, 0.16%)</title><rect x="29.2958%" y="725" width="0.1639%" height="15" fill="rgb(240,135,12)" fg:x="86713" fg:w="485"/><text x="29.5458%" y="735.50"></text></g><g><title>ciEnv::register_method (35 samples, 0.01%)</title><rect x="29.4675%" y="725" width="0.0118%" height="15" fill="rgb(251,24,50)" fg:x="87221" fg:w="35"/><text x="29.7175%" y="735.50"></text></g><g><title>C2Compiler::compile_method (766 samples, 0.26%)</title><rect x="29.2262%" y="757" width="0.2588%" height="15" fill="rgb(243,200,47)" fg:x="86507" fg:w="766"/><text x="29.4762%" y="767.50"></text></g><g><title>Compile::Compile (756 samples, 0.26%)</title><rect x="29.2296%" y="741" width="0.2554%" height="15" fill="rgb(224,166,26)" fg:x="86517" fg:w="756"/><text x="29.4796%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (937 samples, 0.32%)</title><rect x="29.2245%" y="773" width="0.3166%" height="15" fill="rgb(233,0,47)" fg:x="86502" fg:w="937"/><text x="29.4745%" y="783.50"></text></g><g><title>ciEnv::~ciEnv (38 samples, 0.01%)</title><rect x="29.5283%" y="757" width="0.0128%" height="15" fill="rgb(253,80,5)" fg:x="87401" fg:w="38"/><text x="29.7783%" y="767.50"></text></g><g><title>ciObjectFactory::remove_symbols (37 samples, 0.01%)</title><rect x="29.5286%" y="741" width="0.0125%" height="15" fill="rgb(214,133,25)" fg:x="87402" fg:w="37"/><text x="29.7786%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (408 samples, 0.14%)</title><rect x="29.5847%" y="517" width="0.1378%" height="15" fill="rgb(209,27,14)" fg:x="87568" fg:w="408"/><text x="29.8347%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (402 samples, 0.14%)</title><rect x="29.5867%" y="501" width="0.1358%" height="15" fill="rgb(219,102,51)" fg:x="87574" fg:w="402"/><text x="29.8367%" y="511.50"></text></g><g><title>native_write_msr (400 samples, 0.14%)</title><rect x="29.5874%" y="485" width="0.1351%" height="15" fill="rgb(237,18,16)" fg:x="87576" fg:w="400"/><text x="29.8374%" y="495.50"></text></g><g><title>finish_task_switch (433 samples, 0.15%)</title><rect x="29.5806%" y="533" width="0.1463%" height="15" fill="rgb(241,85,17)" fg:x="87556" fg:w="433"/><text x="29.8306%" y="543.50"></text></g><g><title>futex_wait_queue_me (471 samples, 0.16%)</title><rect x="29.5722%" y="581" width="0.1591%" height="15" fill="rgb(236,90,42)" fg:x="87531" fg:w="471"/><text x="29.8222%" y="591.50"></text></g><g><title>schedule (457 samples, 0.15%)</title><rect x="29.5769%" y="565" width="0.1544%" height="15" fill="rgb(249,57,21)" fg:x="87545" fg:w="457"/><text x="29.8269%" y="575.50"></text></g><g><title>__schedule (456 samples, 0.15%)</title><rect x="29.5773%" y="549" width="0.1541%" height="15" fill="rgb(243,12,36)" fg:x="87546" fg:w="456"/><text x="29.8273%" y="559.50"></text></g><g><title>do_futex (494 samples, 0.17%)</title><rect x="29.5712%" y="613" width="0.1669%" height="15" fill="rgb(253,128,47)" fg:x="87528" fg:w="494"/><text x="29.8212%" y="623.50"></text></g><g><title>futex_wait (493 samples, 0.17%)</title><rect x="29.5715%" y="597" width="0.1666%" height="15" fill="rgb(207,33,20)" fg:x="87529" fg:w="493"/><text x="29.8215%" y="607.50"></text></g><g><title>do_syscall_64 (499 samples, 0.17%)</title><rect x="29.5705%" y="645" width="0.1686%" height="15" fill="rgb(233,215,35)" fg:x="87526" fg:w="499"/><text x="29.8205%" y="655.50"></text></g><g><title>__x64_sys_futex (499 samples, 0.17%)</title><rect x="29.5705%" y="629" width="0.1686%" height="15" fill="rgb(249,188,52)" fg:x="87526" fg:w="499"/><text x="29.8205%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (512 samples, 0.17%)</title><rect x="29.5698%" y="661" width="0.1730%" height="15" fill="rgb(225,12,32)" fg:x="87524" fg:w="512"/><text x="29.8198%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (526 samples, 0.18%)</title><rect x="29.5654%" y="709" width="0.1777%" height="15" fill="rgb(247,98,14)" fg:x="87511" fg:w="526"/><text x="29.8154%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (526 samples, 0.18%)</title><rect x="29.5654%" y="693" width="0.1777%" height="15" fill="rgb(247,219,48)" fg:x="87511" fg:w="526"/><text x="29.8154%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (519 samples, 0.18%)</title><rect x="29.5678%" y="677" width="0.1753%" height="15" fill="rgb(253,60,48)" fg:x="87518" fg:w="519"/><text x="29.8178%" y="687.50"></text></g><g><title>os::PlatformEvent::park (552 samples, 0.19%)</title><rect x="29.5631%" y="725" width="0.1865%" height="15" fill="rgb(245,15,52)" fg:x="87504" fg:w="552"/><text x="29.8131%" y="735.50"></text></g><g><title>Monitor::IWait (590 samples, 0.20%)</title><rect x="29.5512%" y="741" width="0.1993%" height="15" fill="rgb(220,133,28)" fg:x="87469" fg:w="590"/><text x="29.8012%" y="751.50"></text></g><g><title>Monitor::wait (612 samples, 0.21%)</title><rect x="29.5468%" y="757" width="0.2068%" height="15" fill="rgb(217,180,4)" fg:x="87456" fg:w="612"/><text x="29.7968%" y="767.50"></text></g><g><title>CompileQueue::get (661 samples, 0.22%)</title><rect x="29.5438%" y="773" width="0.2233%" height="15" fill="rgb(251,24,1)" fg:x="87447" fg:w="661"/><text x="29.7938%" y="783.50"></text></g><g><title>Thread::call_run (1,616 samples, 0.55%)</title><rect x="29.2228%" y="821" width="0.5460%" height="15" fill="rgb(212,185,49)" fg:x="86497" fg:w="1616"/><text x="29.4728%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (1,615 samples, 0.55%)</title><rect x="29.2232%" y="805" width="0.5456%" height="15" fill="rgb(215,175,22)" fg:x="86498" fg:w="1615"/><text x="29.4732%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,615 samples, 0.55%)</title><rect x="29.2232%" y="789" width="0.5456%" height="15" fill="rgb(250,205,14)" fg:x="86498" fg:w="1615"/><text x="29.4732%" y="799.50"></text></g><g><title>__GI___clone (1,633 samples, 0.55%)</title><rect x="29.2178%" y="869" width="0.5517%" height="15" fill="rgb(225,211,22)" fg:x="86482" fg:w="1633"/><text x="29.4678%" y="879.50"></text></g><g><title>start_thread (1,625 samples, 0.55%)</title><rect x="29.2205%" y="853" width="0.5490%" height="15" fill="rgb(251,179,42)" fg:x="86490" fg:w="1625"/><text x="29.4705%" y="863.50"></text></g><g><title>thread_native_entry (1,625 samples, 0.55%)</title><rect x="29.2205%" y="837" width="0.5490%" height="15" fill="rgb(208,216,51)" fg:x="86490" fg:w="1625"/><text x="29.4705%" y="847.50"></text></g><g><title>asm_exc_page_fault (43 samples, 0.01%)</title><rect x="29.7739%" y="869" width="0.0145%" height="15" fill="rgb(235,36,11)" fg:x="88128" fg:w="43"/><text x="30.0239%" y="879.50"></text></g><g><title>C2_CompilerThre (74,737 samples, 25.25%)</title><rect x="4.5637%" y="885" width="25.2498%" height="15" fill="rgb(213,189,28)" fg:x="13508" fg:w="74737"/><text x="4.8137%" y="895.50">C2_CompilerThre</text></g><g><title>[perf-12570.map] (78 samples, 0.03%)</title><rect x="29.8144%" y="869" width="0.0264%" height="15" fill="rgb(227,203,42)" fg:x="88248" fg:w="78"/><text x="30.0644%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.03%)</title><rect x="29.8469%" y="645" width="0.0267%" height="15" fill="rgb(244,72,36)" fg:x="88344" fg:w="79"/><text x="30.0969%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.03%)</title><rect x="29.8472%" y="629" width="0.0264%" height="15" fill="rgb(213,53,17)" fg:x="88345" fg:w="78"/><text x="30.0972%" y="639.50"></text></g><g><title>native_write_msr (78 samples, 0.03%)</title><rect x="29.8472%" y="613" width="0.0264%" height="15" fill="rgb(207,167,3)" fg:x="88345" fg:w="78"/><text x="30.0972%" y="623.50"></text></g><g><title>new_sync_read (92 samples, 0.03%)</title><rect x="29.8435%" y="725" width="0.0311%" height="15" fill="rgb(216,98,30)" fg:x="88334" fg:w="92"/><text x="30.0935%" y="735.50"></text></g><g><title>pipe_read (92 samples, 0.03%)</title><rect x="29.8435%" y="709" width="0.0311%" height="15" fill="rgb(236,123,15)" fg:x="88334" fg:w="92"/><text x="30.0935%" y="719.50"></text></g><g><title>schedule (91 samples, 0.03%)</title><rect x="29.8438%" y="693" width="0.0307%" height="15" fill="rgb(248,81,50)" fg:x="88335" fg:w="91"/><text x="30.0938%" y="703.50"></text></g><g><title>__schedule (90 samples, 0.03%)</title><rect x="29.8442%" y="677" width="0.0304%" height="15" fill="rgb(214,120,4)" fg:x="88336" fg:w="90"/><text x="30.0942%" y="687.50"></text></g><g><title>finish_task_switch (86 samples, 0.03%)</title><rect x="29.8455%" y="661" width="0.0291%" height="15" fill="rgb(208,179,34)" fg:x="88340" fg:w="86"/><text x="30.0955%" y="671.50"></text></g><g><title>do_syscall_64 (96 samples, 0.03%)</title><rect x="29.8425%" y="773" width="0.0324%" height="15" fill="rgb(227,140,7)" fg:x="88331" fg:w="96"/><text x="30.0925%" y="783.50"></text></g><g><title>ksys_read (95 samples, 0.03%)</title><rect x="29.8428%" y="757" width="0.0321%" height="15" fill="rgb(214,22,6)" fg:x="88332" fg:w="95"/><text x="30.0928%" y="767.50"></text></g><g><title>vfs_read (93 samples, 0.03%)</title><rect x="29.8435%" y="741" width="0.0314%" height="15" fill="rgb(207,137,27)" fg:x="88334" fg:w="93"/><text x="30.0935%" y="751.50"></text></g><g><title>Command-Accumul (184 samples, 0.06%)</title><rect x="29.8134%" y="885" width="0.0622%" height="15" fill="rgb(210,8,46)" fg:x="88245" fg:w="184"/><text x="30.0634%" y="895.50"></text></g><g><title>[unknown] (103 samples, 0.03%)</title><rect x="29.8408%" y="869" width="0.0348%" height="15" fill="rgb(240,16,54)" fg:x="88326" fg:w="103"/><text x="30.0908%" y="879.50"></text></g><g><title>readBytes (100 samples, 0.03%)</title><rect x="29.8418%" y="853" width="0.0338%" height="15" fill="rgb(211,209,29)" fg:x="88329" fg:w="100"/><text x="30.0918%" y="863.50"></text></g><g><title>handleRead (98 samples, 0.03%)</title><rect x="29.8425%" y="837" width="0.0331%" height="15" fill="rgb(226,228,24)" fg:x="88331" fg:w="98"/><text x="30.0925%" y="847.50"></text></g><g><title>__libc_read (98 samples, 0.03%)</title><rect x="29.8425%" y="821" width="0.0331%" height="15" fill="rgb(222,84,9)" fg:x="88331" fg:w="98"/><text x="30.0925%" y="831.50"></text></g><g><title>__libc_read (98 samples, 0.03%)</title><rect x="29.8425%" y="805" width="0.0331%" height="15" fill="rgb(234,203,30)" fg:x="88331" fg:w="98"/><text x="30.0925%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.03%)</title><rect x="29.8425%" y="789" width="0.0331%" height="15" fill="rgb(238,109,14)" fg:x="88331" fg:w="98"/><text x="30.0925%" y="799.50"></text></g><g><title>[perf-12570.map] (61 samples, 0.02%)</title><rect x="29.8867%" y="869" width="0.0206%" height="15" fill="rgb(233,206,34)" fg:x="88462" fg:w="61"/><text x="30.1367%" y="879.50"></text></g><g><title>JVM_MonitorWait (33 samples, 0.01%)</title><rect x="29.8962%" y="853" width="0.0111%" height="15" fill="rgb(220,167,47)" fg:x="88490" fg:w="33"/><text x="30.1462%" y="863.50"></text></g><g><title>ObjectSynchronizer::wait (33 samples, 0.01%)</title><rect x="29.8962%" y="837" width="0.0111%" height="15" fill="rgb(238,105,10)" fg:x="88490" fg:w="33"/><text x="30.1462%" y="847.50"></text></g><g><title>ObjectMonitor::wait (33 samples, 0.01%)</title><rect x="29.8962%" y="821" width="0.0111%" height="15" fill="rgb(213,227,17)" fg:x="88490" fg:w="33"/><text x="30.1462%" y="831.50"></text></g><g><title>os::PlatformEvent::park (32 samples, 0.01%)</title><rect x="29.8965%" y="805" width="0.0108%" height="15" fill="rgb(217,132,38)" fg:x="88491" fg:w="32"/><text x="30.1465%" y="815.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.01%)</title><rect x="29.8965%" y="789" width="0.0108%" height="15" fill="rgb(242,146,4)" fg:x="88491" fg:w="32"/><text x="30.1465%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.01%)</title><rect x="29.8965%" y="773" width="0.0108%" height="15" fill="rgb(212,61,9)" fg:x="88491" fg:w="32"/><text x="30.1465%" y="783.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.01%)</title><rect x="29.8965%" y="757" width="0.0108%" height="15" fill="rgb(247,126,22)" fg:x="88491" fg:w="32"/><text x="30.1465%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.01%)</title><rect x="29.8965%" y="741" width="0.0108%" height="15" fill="rgb(220,196,2)" fg:x="88491" fg:w="32"/><text x="30.1465%" y="751.50"></text></g><g><title>Finalizer (62 samples, 0.02%)</title><rect x="29.8867%" y="885" width="0.0209%" height="15" fill="rgb(208,46,4)" fg:x="88462" fg:w="62"/><text x="30.1367%" y="895.50"></text></g><g><title>dequeue_task_fair (30 samples, 0.01%)</title><rect x="30.1783%" y="645" width="0.0101%" height="15" fill="rgb(252,104,46)" fg:x="89325" fg:w="30"/><text x="30.4283%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (246 samples, 0.08%)</title><rect x="30.1898%" y="629" width="0.0831%" height="15" fill="rgb(237,152,48)" fg:x="89359" fg:w="246"/><text x="30.4398%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (242 samples, 0.08%)</title><rect x="30.1911%" y="613" width="0.0818%" height="15" fill="rgb(221,59,37)" fg:x="89363" fg:w="242"/><text x="30.4411%" y="623.50"></text></g><g><title>native_write_msr (236 samples, 0.08%)</title><rect x="30.1931%" y="597" width="0.0797%" height="15" fill="rgb(209,202,51)" fg:x="89369" fg:w="236"/><text x="30.4431%" y="607.50"></text></g><g><title>finish_task_switch (259 samples, 0.09%)</title><rect x="30.1884%" y="645" width="0.0875%" height="15" fill="rgb(228,81,30)" fg:x="89355" fg:w="259"/><text x="30.4384%" y="655.50"></text></g><g><title>futex_wait_queue_me (375 samples, 0.13%)</title><rect x="30.1661%" y="693" width="0.1267%" height="15" fill="rgb(227,42,39)" fg:x="89289" fg:w="375"/><text x="30.4161%" y="703.50"></text></g><g><title>schedule (350 samples, 0.12%)</title><rect x="30.1746%" y="677" width="0.1182%" height="15" fill="rgb(221,26,2)" fg:x="89314" fg:w="350"/><text x="30.4246%" y="687.50"></text></g><g><title>__schedule (347 samples, 0.12%)</title><rect x="30.1756%" y="661" width="0.1172%" height="15" fill="rgb(254,61,31)" fg:x="89317" fg:w="347"/><text x="30.4256%" y="671.50"></text></g><g><title>do_futex (412 samples, 0.14%)</title><rect x="30.1627%" y="725" width="0.1392%" height="15" fill="rgb(222,173,38)" fg:x="89279" fg:w="412"/><text x="30.4127%" y="735.50"></text></g><g><title>futex_wait (410 samples, 0.14%)</title><rect x="30.1634%" y="709" width="0.1385%" height="15" fill="rgb(218,50,12)" fg:x="89281" fg:w="410"/><text x="30.4134%" y="719.50"></text></g><g><title>__x64_sys_futex (417 samples, 0.14%)</title><rect x="30.1614%" y="741" width="0.1409%" height="15" fill="rgb(223,88,40)" fg:x="89275" fg:w="417"/><text x="30.4114%" y="751.50"></text></g><g><title>do_syscall_64 (419 samples, 0.14%)</title><rect x="30.1614%" y="757" width="0.1416%" height="15" fill="rgb(237,54,19)" fg:x="89275" fg:w="419"/><text x="30.4114%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (433 samples, 0.15%)</title><rect x="30.1604%" y="773" width="0.1463%" height="15" fill="rgb(251,129,25)" fg:x="89272" fg:w="433"/><text x="30.4104%" y="783.50"></text></g><g><title>__pthread_cond_timedwait (452 samples, 0.15%)</title><rect x="30.1543%" y="821" width="0.1527%" height="15" fill="rgb(238,97,19)" fg:x="89254" fg:w="452"/><text x="30.4043%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (452 samples, 0.15%)</title><rect x="30.1543%" y="805" width="0.1527%" height="15" fill="rgb(240,169,18)" fg:x="89254" fg:w="452"/><text x="30.4043%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (444 samples, 0.15%)</title><rect x="30.1570%" y="789" width="0.1500%" height="15" fill="rgb(230,187,49)" fg:x="89262" fg:w="444"/><text x="30.4070%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.03%)</title><rect x="30.3134%" y="629" width="0.0260%" height="15" fill="rgb(209,44,26)" fg:x="89725" fg:w="77"/><text x="30.5634%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.02%)</title><rect x="30.3151%" y="613" width="0.0243%" height="15" fill="rgb(244,0,6)" fg:x="89730" fg:w="72"/><text x="30.5651%" y="623.50"></text></g><g><title>native_write_msr (71 samples, 0.02%)</title><rect x="30.3154%" y="597" width="0.0240%" height="15" fill="rgb(248,18,21)" fg:x="89731" fg:w="71"/><text x="30.5654%" y="607.50"></text></g><g><title>finish_task_switch (80 samples, 0.03%)</title><rect x="30.3134%" y="645" width="0.0270%" height="15" fill="rgb(245,180,19)" fg:x="89725" fg:w="80"/><text x="30.5634%" y="655.50"></text></g><g><title>futex_wait_queue_me (114 samples, 0.04%)</title><rect x="30.3090%" y="693" width="0.0385%" height="15" fill="rgb(252,118,36)" fg:x="89712" fg:w="114"/><text x="30.5590%" y="703.50"></text></g><g><title>schedule (114 samples, 0.04%)</title><rect x="30.3090%" y="677" width="0.0385%" height="15" fill="rgb(210,224,19)" fg:x="89712" fg:w="114"/><text x="30.5590%" y="687.50"></text></g><g><title>__schedule (113 samples, 0.04%)</title><rect x="30.3094%" y="661" width="0.0382%" height="15" fill="rgb(218,30,24)" fg:x="89713" fg:w="113"/><text x="30.5594%" y="671.50"></text></g><g><title>do_syscall_64 (119 samples, 0.04%)</title><rect x="30.3080%" y="757" width="0.0402%" height="15" fill="rgb(219,75,50)" fg:x="89709" fg:w="119"/><text x="30.5580%" y="767.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.04%)</title><rect x="30.3080%" y="741" width="0.0402%" height="15" fill="rgb(234,72,50)" fg:x="89709" fg:w="119"/><text x="30.5580%" y="751.50"></text></g><g><title>do_futex (119 samples, 0.04%)</title><rect x="30.3080%" y="725" width="0.0402%" height="15" fill="rgb(219,100,48)" fg:x="89709" fg:w="119"/><text x="30.5580%" y="735.50"></text></g><g><title>futex_wait (118 samples, 0.04%)</title><rect x="30.3084%" y="709" width="0.0399%" height="15" fill="rgb(253,5,41)" fg:x="89710" fg:w="118"/><text x="30.5584%" y="719.50"></text></g><g><title>__pthread_cond_wait (128 samples, 0.04%)</title><rect x="30.3070%" y="821" width="0.0432%" height="15" fill="rgb(247,181,11)" fg:x="89706" fg:w="128"/><text x="30.5570%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (128 samples, 0.04%)</title><rect x="30.3070%" y="805" width="0.0432%" height="15" fill="rgb(222,223,25)" fg:x="89706" fg:w="128"/><text x="30.5570%" y="815.50"></text></g><g><title>futex_wait_cancelable (127 samples, 0.04%)</title><rect x="30.3073%" y="789" width="0.0429%" height="15" fill="rgb(214,198,28)" fg:x="89707" fg:w="127"/><text x="30.5573%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (126 samples, 0.04%)</title><rect x="30.3077%" y="773" width="0.0426%" height="15" fill="rgb(230,46,43)" fg:x="89708" fg:w="126"/><text x="30.5577%" y="783.50"></text></g><g><title>Parker::park (644 samples, 0.22%)</title><rect x="30.1425%" y="837" width="0.2176%" height="15" fill="rgb(233,65,53)" fg:x="89219" fg:w="644"/><text x="30.3925%" y="847.50"></text></g><g><title>Unsafe_Park (656 samples, 0.22%)</title><rect x="30.1398%" y="853" width="0.2216%" height="15" fill="rgb(221,121,27)" fg:x="89211" fg:w="656"/><text x="30.3898%" y="863.50"></text></g><g><title>[perf-12570.map] (1,344 samples, 0.45%)</title><rect x="29.9124%" y="869" width="0.4541%" height="15" fill="rgb(247,70,47)" fg:x="88538" fg:w="1344"/><text x="30.1624%" y="879.50"></text></g><g><title>ForkJoinPool.co (1,392 samples, 0.47%)</title><rect x="29.9077%" y="885" width="0.4703%" height="15" fill="rgb(228,85,35)" fg:x="88524" fg:w="1392"/><text x="30.1577%" y="895.50"></text></g><g><title>G1_Conc#0 (45 samples, 0.02%)</title><rect x="30.3780%" y="885" width="0.0152%" height="15" fill="rgb(209,50,18)" fg:x="89916" fg:w="45"/><text x="30.6280%" y="895.50"></text></g><g><title>__GI___clone (45 samples, 0.02%)</title><rect x="30.3780%" y="869" width="0.0152%" height="15" fill="rgb(250,19,35)" fg:x="89916" fg:w="45"/><text x="30.6280%" y="879.50"></text></g><g><title>start_thread (45 samples, 0.02%)</title><rect x="30.3780%" y="853" width="0.0152%" height="15" fill="rgb(253,107,29)" fg:x="89916" fg:w="45"/><text x="30.6280%" y="863.50"></text></g><g><title>thread_native_entry (45 samples, 0.02%)</title><rect x="30.3780%" y="837" width="0.0152%" height="15" fill="rgb(252,179,29)" fg:x="89916" fg:w="45"/><text x="30.6280%" y="847.50"></text></g><g><title>Thread::call_run (45 samples, 0.02%)</title><rect x="30.3780%" y="821" width="0.0152%" height="15" fill="rgb(238,194,6)" fg:x="89916" fg:w="45"/><text x="30.6280%" y="831.50"></text></g><g><title>GangWorker::loop (45 samples, 0.02%)</title><rect x="30.3780%" y="805" width="0.0152%" height="15" fill="rgb(238,164,29)" fg:x="89916" fg:w="45"/><text x="30.6280%" y="815.50"></text></g><g><title>G1_Conc#1 (34 samples, 0.01%)</title><rect x="30.3932%" y="885" width="0.0115%" height="15" fill="rgb(224,25,9)" fg:x="89961" fg:w="34"/><text x="30.6432%" y="895.50"></text></g><g><title>__GI___clone (34 samples, 0.01%)</title><rect x="30.3932%" y="869" width="0.0115%" height="15" fill="rgb(244,153,23)" fg:x="89961" fg:w="34"/><text x="30.6432%" y="879.50"></text></g><g><title>start_thread (34 samples, 0.01%)</title><rect x="30.3932%" y="853" width="0.0115%" height="15" fill="rgb(212,203,14)" fg:x="89961" fg:w="34"/><text x="30.6432%" y="863.50"></text></g><g><title>thread_native_entry (34 samples, 0.01%)</title><rect x="30.3932%" y="837" width="0.0115%" height="15" fill="rgb(220,164,20)" fg:x="89961" fg:w="34"/><text x="30.6432%" y="847.50"></text></g><g><title>Thread::call_run (34 samples, 0.01%)</title><rect x="30.3932%" y="821" width="0.0115%" height="15" fill="rgb(222,203,48)" fg:x="89961" fg:w="34"/><text x="30.6432%" y="831.50"></text></g><g><title>GangWorker::loop (34 samples, 0.01%)</title><rect x="30.3932%" y="805" width="0.0115%" height="15" fill="rgb(215,159,22)" fg:x="89961" fg:w="34"/><text x="30.6432%" y="815.50"></text></g><g><title>__GI___clone (31 samples, 0.01%)</title><rect x="30.4046%" y="869" width="0.0105%" height="15" fill="rgb(216,183,47)" fg:x="89995" fg:w="31"/><text x="30.6546%" y="879.50"></text></g><g><title>start_thread (31 samples, 0.01%)</title><rect x="30.4046%" y="853" width="0.0105%" height="15" fill="rgb(229,195,25)" fg:x="89995" fg:w="31"/><text x="30.6546%" y="863.50"></text></g><g><title>thread_native_entry (31 samples, 0.01%)</title><rect x="30.4046%" y="837" width="0.0105%" height="15" fill="rgb(224,132,51)" fg:x="89995" fg:w="31"/><text x="30.6546%" y="847.50"></text></g><g><title>Thread::call_run (31 samples, 0.01%)</title><rect x="30.4046%" y="821" width="0.0105%" height="15" fill="rgb(240,63,7)" fg:x="89995" fg:w="31"/><text x="30.6546%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (31 samples, 0.01%)</title><rect x="30.4046%" y="805" width="0.0105%" height="15" fill="rgb(249,182,41)" fg:x="89995" fg:w="31"/><text x="30.6546%" y="815.50"></text></g><g><title>G1_Main_Marker (33 samples, 0.01%)</title><rect x="30.4046%" y="885" width="0.0111%" height="15" fill="rgb(243,47,26)" fg:x="89995" fg:w="33"/><text x="30.6546%" y="895.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (71 samples, 0.02%)</title><rect x="30.4178%" y="773" width="0.0240%" height="15" fill="rgb(233,48,2)" fg:x="90034" fg:w="71"/><text x="30.6678%" y="783.50"></text></g><g><title>G1RemSet::refine_card_concurrently (70 samples, 0.02%)</title><rect x="30.4182%" y="757" width="0.0236%" height="15" fill="rgb(244,165,34)" fg:x="90035" fg:w="70"/><text x="30.6682%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (100 samples, 0.03%)</title><rect x="30.4178%" y="789" width="0.0338%" height="15" fill="rgb(207,89,7)" fg:x="90034" fg:w="100"/><text x="30.6678%" y="799.50"></text></g><g><title>G1_Refine#0 (114 samples, 0.04%)</title><rect x="30.4158%" y="885" width="0.0385%" height="15" fill="rgb(244,117,36)" fg:x="90028" fg:w="114"/><text x="30.6658%" y="895.50"></text></g><g><title>__GI___clone (108 samples, 0.04%)</title><rect x="30.4178%" y="869" width="0.0365%" height="15" fill="rgb(226,144,34)" fg:x="90034" fg:w="108"/><text x="30.6678%" y="879.50"></text></g><g><title>start_thread (108 samples, 0.04%)</title><rect x="30.4178%" y="853" width="0.0365%" height="15" fill="rgb(213,23,19)" fg:x="90034" fg:w="108"/><text x="30.6678%" y="863.50"></text></g><g><title>thread_native_entry (108 samples, 0.04%)</title><rect x="30.4178%" y="837" width="0.0365%" height="15" fill="rgb(217,75,12)" fg:x="90034" fg:w="108"/><text x="30.6678%" y="847.50"></text></g><g><title>Thread::call_run (108 samples, 0.04%)</title><rect x="30.4178%" y="821" width="0.0365%" height="15" fill="rgb(224,159,17)" fg:x="90034" fg:w="108"/><text x="30.6678%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (108 samples, 0.04%)</title><rect x="30.4178%" y="805" width="0.0365%" height="15" fill="rgb(217,118,1)" fg:x="90034" fg:w="108"/><text x="30.6678%" y="815.50"></text></g><g><title>G1_Young_RemSet (45 samples, 0.02%)</title><rect x="30.4698%" y="885" width="0.0152%" height="15" fill="rgb(232,180,48)" fg:x="90188" fg:w="45"/><text x="30.7198%" y="895.50"></text></g><g><title>__GI___clone (44 samples, 0.01%)</title><rect x="30.4702%" y="869" width="0.0149%" height="15" fill="rgb(230,27,33)" fg:x="90189" fg:w="44"/><text x="30.7202%" y="879.50"></text></g><g><title>start_thread (44 samples, 0.01%)</title><rect x="30.4702%" y="853" width="0.0149%" height="15" fill="rgb(205,31,21)" fg:x="90189" fg:w="44"/><text x="30.7202%" y="863.50"></text></g><g><title>thread_native_entry (43 samples, 0.01%)</title><rect x="30.4705%" y="837" width="0.0145%" height="15" fill="rgb(253,59,4)" fg:x="90190" fg:w="43"/><text x="30.7205%" y="847.50"></text></g><g><title>Thread::call_run (43 samples, 0.01%)</title><rect x="30.4705%" y="821" width="0.0145%" height="15" fill="rgb(224,201,9)" fg:x="90190" fg:w="43"/><text x="30.7205%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (43 samples, 0.01%)</title><rect x="30.4705%" y="805" width="0.0145%" height="15" fill="rgb(229,206,30)" fg:x="90190" fg:w="43"/><text x="30.7205%" y="815.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (43 samples, 0.01%)</title><rect x="30.4705%" y="789" width="0.0145%" height="15" fill="rgb(212,67,47)" fg:x="90190" fg:w="43"/><text x="30.7205%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue (134 samples, 0.05%)</title><rect x="30.4945%" y="757" width="0.0453%" height="15" fill="rgb(211,96,50)" fg:x="90261" fg:w="134"/><text x="30.7445%" y="767.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (80 samples, 0.03%)</title><rect x="30.5128%" y="741" width="0.0270%" height="15" fill="rgb(252,114,18)" fg:x="90315" fg:w="80"/><text x="30.7628%" y="751.50"></text></g><g><title>SpinPause (182 samples, 0.06%)</title><rect x="30.5425%" y="757" width="0.0615%" height="15" fill="rgb(223,58,37)" fg:x="90403" fg:w="182"/><text x="30.7925%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (331 samples, 0.11%)</title><rect x="30.4928%" y="773" width="0.1118%" height="15" fill="rgb(237,70,4)" fg:x="90256" fg:w="331"/><text x="30.7428%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (97 samples, 0.03%)</title><rect x="30.6087%" y="677" width="0.0328%" height="15" fill="rgb(244,85,46)" fg:x="90599" fg:w="97"/><text x="30.8587%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (82 samples, 0.03%)</title><rect x="30.6138%" y="661" width="0.0277%" height="15" fill="rgb(223,39,52)" fg:x="90614" fg:w="82"/><text x="30.8638%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (116 samples, 0.04%)</title><rect x="30.6050%" y="693" width="0.0392%" height="15" fill="rgb(218,200,14)" fg:x="90588" fg:w="116"/><text x="30.8550%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (131 samples, 0.04%)</title><rect x="30.6046%" y="773" width="0.0443%" height="15" fill="rgb(208,171,16)" fg:x="90587" fg:w="131"/><text x="30.8546%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (131 samples, 0.04%)</title><rect x="30.6046%" y="757" width="0.0443%" height="15" fill="rgb(234,200,18)" fg:x="90587" fg:w="131"/><text x="30.8546%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (131 samples, 0.04%)</title><rect x="30.6046%" y="741" width="0.0443%" height="15" fill="rgb(228,45,11)" fg:x="90587" fg:w="131"/><text x="30.8546%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (131 samples, 0.04%)</title><rect x="30.6046%" y="725" width="0.0443%" height="15" fill="rgb(237,182,11)" fg:x="90587" fg:w="131"/><text x="30.8546%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (131 samples, 0.04%)</title><rect x="30.6046%" y="709" width="0.0443%" height="15" fill="rgb(241,175,49)" fg:x="90587" fg:w="131"/><text x="30.8546%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (31 samples, 0.01%)</title><rect x="30.6509%" y="677" width="0.0105%" height="15" fill="rgb(247,38,35)" fg:x="90724" fg:w="31"/><text x="30.9009%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.01%)</title><rect x="30.6492%" y="693" width="0.0132%" height="15" fill="rgb(228,39,49)" fg:x="90719" fg:w="39"/><text x="30.8992%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (46 samples, 0.02%)</title><rect x="30.6489%" y="725" width="0.0155%" height="15" fill="rgb(226,101,26)" fg:x="90718" fg:w="46"/><text x="30.8989%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (45 samples, 0.02%)</title><rect x="30.6492%" y="709" width="0.0152%" height="15" fill="rgb(206,141,19)" fg:x="90719" fg:w="45"/><text x="30.8992%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (58 samples, 0.02%)</title><rect x="30.6489%" y="773" width="0.0196%" height="15" fill="rgb(211,200,13)" fg:x="90718" fg:w="58"/><text x="30.8989%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (58 samples, 0.02%)</title><rect x="30.6489%" y="757" width="0.0196%" height="15" fill="rgb(241,121,6)" fg:x="90718" fg:w="58"/><text x="30.8989%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (58 samples, 0.02%)</title><rect x="30.6489%" y="741" width="0.0196%" height="15" fill="rgb(234,221,29)" fg:x="90718" fg:w="58"/><text x="30.8989%" y="751.50"></text></g><g><title>HandleArea::oops_do (31 samples, 0.01%)</title><rect x="30.6688%" y="693" width="0.0105%" height="15" fill="rgb(229,136,5)" fg:x="90777" fg:w="31"/><text x="30.9188%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (77 samples, 0.03%)</title><rect x="30.6688%" y="757" width="0.0260%" height="15" fill="rgb(238,36,11)" fg:x="90777" fg:w="77"/><text x="30.9188%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (77 samples, 0.03%)</title><rect x="30.6688%" y="741" width="0.0260%" height="15" fill="rgb(251,55,41)" fg:x="90777" fg:w="77"/><text x="30.9188%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (77 samples, 0.03%)</title><rect x="30.6688%" y="725" width="0.0260%" height="15" fill="rgb(242,34,40)" fg:x="90777" fg:w="77"/><text x="30.9188%" y="735.50"></text></g><g><title>JavaThread::oops_do (77 samples, 0.03%)</title><rect x="30.6688%" y="709" width="0.0260%" height="15" fill="rgb(215,42,17)" fg:x="90777" fg:w="77"/><text x="30.9188%" y="719.50"></text></g><g><title>G1ParTask::work (608 samples, 0.21%)</title><rect x="30.4928%" y="789" width="0.2054%" height="15" fill="rgb(207,44,46)" fg:x="90256" fg:w="608"/><text x="30.7428%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (88 samples, 0.03%)</title><rect x="30.6685%" y="773" width="0.0297%" height="15" fill="rgb(211,206,28)" fg:x="90776" fg:w="88"/><text x="30.9185%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (46 samples, 0.02%)</title><rect x="30.7016%" y="789" width="0.0155%" height="15" fill="rgb(237,167,16)" fg:x="90874" fg:w="46"/><text x="30.9516%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (44 samples, 0.01%)</title><rect x="30.7175%" y="789" width="0.0149%" height="15" fill="rgb(233,66,6)" fg:x="90921" fg:w="44"/><text x="30.9675%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (37 samples, 0.01%)</title><rect x="30.7199%" y="773" width="0.0125%" height="15" fill="rgb(246,123,29)" fg:x="90928" fg:w="37"/><text x="30.9699%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.02%)</title><rect x="30.7351%" y="565" width="0.0213%" height="15" fill="rgb(209,62,40)" fg:x="90973" fg:w="63"/><text x="30.9851%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.02%)</title><rect x="30.7351%" y="549" width="0.0213%" height="15" fill="rgb(218,4,25)" fg:x="90973" fg:w="63"/><text x="30.9851%" y="559.50"></text></g><g><title>native_write_msr (63 samples, 0.02%)</title><rect x="30.7351%" y="533" width="0.0213%" height="15" fill="rgb(253,91,49)" fg:x="90973" fg:w="63"/><text x="30.9851%" y="543.50"></text></g><g><title>finish_task_switch (68 samples, 0.02%)</title><rect x="30.7340%" y="581" width="0.0230%" height="15" fill="rgb(228,155,29)" fg:x="90970" fg:w="68"/><text x="30.9840%" y="591.50"></text></g><g><title>do_syscall_64 (75 samples, 0.03%)</title><rect x="30.7327%" y="693" width="0.0253%" height="15" fill="rgb(243,57,37)" fg:x="90966" fg:w="75"/><text x="30.9827%" y="703.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.03%)</title><rect x="30.7327%" y="677" width="0.0253%" height="15" fill="rgb(244,167,17)" fg:x="90966" fg:w="75"/><text x="30.9827%" y="687.50"></text></g><g><title>do_futex (74 samples, 0.03%)</title><rect x="30.7330%" y="661" width="0.0250%" height="15" fill="rgb(207,181,38)" fg:x="90967" fg:w="74"/><text x="30.9830%" y="671.50"></text></g><g><title>futex_wait (74 samples, 0.03%)</title><rect x="30.7330%" y="645" width="0.0250%" height="15" fill="rgb(211,8,23)" fg:x="90967" fg:w="74"/><text x="30.9830%" y="655.50"></text></g><g><title>futex_wait_queue_me (74 samples, 0.03%)</title><rect x="30.7330%" y="629" width="0.0250%" height="15" fill="rgb(235,11,44)" fg:x="90967" fg:w="74"/><text x="30.9830%" y="639.50"></text></g><g><title>schedule (73 samples, 0.02%)</title><rect x="30.7334%" y="613" width="0.0247%" height="15" fill="rgb(248,18,52)" fg:x="90968" fg:w="73"/><text x="30.9834%" y="623.50"></text></g><g><title>__schedule (72 samples, 0.02%)</title><rect x="30.7337%" y="597" width="0.0243%" height="15" fill="rgb(208,4,7)" fg:x="90969" fg:w="72"/><text x="30.9837%" y="607.50"></text></g><g><title>GC_Thread#0 (810 samples, 0.27%)</title><rect x="30.4850%" y="885" width="0.2737%" height="15" fill="rgb(240,17,39)" fg:x="90233" fg:w="810"/><text x="30.7350%" y="895.50"></text></g><g><title>__GI___clone (797 samples, 0.27%)</title><rect x="30.4894%" y="869" width="0.2693%" height="15" fill="rgb(207,170,3)" fg:x="90246" fg:w="797"/><text x="30.7394%" y="879.50"></text></g><g><title>start_thread (797 samples, 0.27%)</title><rect x="30.4894%" y="853" width="0.2693%" height="15" fill="rgb(236,100,52)" fg:x="90246" fg:w="797"/><text x="30.7394%" y="863.50"></text></g><g><title>thread_native_entry (797 samples, 0.27%)</title><rect x="30.4894%" y="837" width="0.2693%" height="15" fill="rgb(246,78,51)" fg:x="90246" fg:w="797"/><text x="30.7394%" y="847.50"></text></g><g><title>Thread::call_run (797 samples, 0.27%)</title><rect x="30.4894%" y="821" width="0.2693%" height="15" fill="rgb(211,17,15)" fg:x="90246" fg:w="797"/><text x="30.7394%" y="831.50"></text></g><g><title>GangWorker::loop (797 samples, 0.27%)</title><rect x="30.4894%" y="805" width="0.2693%" height="15" fill="rgb(209,59,46)" fg:x="90246" fg:w="797"/><text x="30.7394%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (78 samples, 0.03%)</title><rect x="30.7324%" y="789" width="0.0264%" height="15" fill="rgb(210,92,25)" fg:x="90965" fg:w="78"/><text x="30.9824%" y="799.50"></text></g><g><title>PosixSemaphore::wait (78 samples, 0.03%)</title><rect x="30.7324%" y="773" width="0.0264%" height="15" fill="rgb(238,174,52)" fg:x="90965" fg:w="78"/><text x="30.9824%" y="783.50"></text></g><g><title>__new_sem_wait_slow (78 samples, 0.03%)</title><rect x="30.7324%" y="757" width="0.0264%" height="15" fill="rgb(230,73,7)" fg:x="90965" fg:w="78"/><text x="30.9824%" y="767.50"></text></g><g><title>do_futex_wait (78 samples, 0.03%)</title><rect x="30.7324%" y="741" width="0.0264%" height="15" fill="rgb(243,124,40)" fg:x="90965" fg:w="78"/><text x="30.9824%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (78 samples, 0.03%)</title><rect x="30.7324%" y="725" width="0.0264%" height="15" fill="rgb(244,170,11)" fg:x="90965" fg:w="78"/><text x="30.9824%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.03%)</title><rect x="30.7327%" y="709" width="0.0260%" height="15" fill="rgb(207,114,54)" fg:x="90966" fg:w="77"/><text x="30.9827%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.02%)</title><rect x="30.7864%" y="741" width="0.0199%" height="15" fill="rgb(205,42,20)" fg:x="91125" fg:w="59"/><text x="31.0364%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (127 samples, 0.04%)</title><rect x="30.7648%" y="757" width="0.0429%" height="15" fill="rgb(230,30,28)" fg:x="91061" fg:w="127"/><text x="31.0148%" y="767.50"></text></g><g><title>SpinPause (182 samples, 0.06%)</title><rect x="30.8111%" y="757" width="0.0615%" height="15" fill="rgb(205,73,54)" fg:x="91198" fg:w="182"/><text x="31.0611%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (325 samples, 0.11%)</title><rect x="30.7634%" y="773" width="0.1098%" height="15" fill="rgb(254,227,23)" fg:x="91057" fg:w="325"/><text x="31.0134%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (55 samples, 0.02%)</title><rect x="30.8756%" y="677" width="0.0186%" height="15" fill="rgb(228,202,34)" fg:x="91389" fg:w="55"/><text x="31.1256%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (39 samples, 0.01%)</title><rect x="30.8810%" y="661" width="0.0132%" height="15" fill="rgb(222,225,37)" fg:x="91405" fg:w="39"/><text x="31.1310%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.02%)</title><rect x="30.8736%" y="693" width="0.0216%" height="15" fill="rgb(221,14,54)" fg:x="91383" fg:w="64"/><text x="31.1236%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (72 samples, 0.02%)</title><rect x="30.8736%" y="773" width="0.0243%" height="15" fill="rgb(254,102,2)" fg:x="91383" fg:w="72"/><text x="31.1236%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (72 samples, 0.02%)</title><rect x="30.8736%" y="757" width="0.0243%" height="15" fill="rgb(232,104,17)" fg:x="91383" fg:w="72"/><text x="31.1236%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (72 samples, 0.02%)</title><rect x="30.8736%" y="741" width="0.0243%" height="15" fill="rgb(250,220,14)" fg:x="91383" fg:w="72"/><text x="31.1236%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (72 samples, 0.02%)</title><rect x="30.8736%" y="725" width="0.0243%" height="15" fill="rgb(241,158,9)" fg:x="91383" fg:w="72"/><text x="31.1236%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (72 samples, 0.02%)</title><rect x="30.8736%" y="709" width="0.0243%" height="15" fill="rgb(246,9,43)" fg:x="91383" fg:w="72"/><text x="31.1236%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (30 samples, 0.01%)</title><rect x="30.8979%" y="773" width="0.0101%" height="15" fill="rgb(206,73,33)" fg:x="91455" fg:w="30"/><text x="31.1479%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (30 samples, 0.01%)</title><rect x="30.8979%" y="757" width="0.0101%" height="15" fill="rgb(222,79,8)" fg:x="91455" fg:w="30"/><text x="31.1479%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (30 samples, 0.01%)</title><rect x="30.8979%" y="741" width="0.0101%" height="15" fill="rgb(234,8,54)" fg:x="91455" fg:w="30"/><text x="31.1479%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (85 samples, 0.03%)</title><rect x="30.9192%" y="677" width="0.0287%" height="15" fill="rgb(209,134,38)" fg:x="91518" fg:w="85"/><text x="31.1692%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.02%)</title><rect x="30.9280%" y="661" width="0.0199%" height="15" fill="rgb(230,127,29)" fg:x="91544" fg:w="59"/><text x="31.1780%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (115 samples, 0.04%)</title><rect x="30.9094%" y="709" width="0.0389%" height="15" fill="rgb(242,44,41)" fg:x="91489" fg:w="115"/><text x="31.1594%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (95 samples, 0.03%)</title><rect x="30.9161%" y="693" width="0.0321%" height="15" fill="rgb(222,56,43)" fg:x="91509" fg:w="95"/><text x="31.1661%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (118 samples, 0.04%)</title><rect x="30.9087%" y="741" width="0.0399%" height="15" fill="rgb(238,39,47)" fg:x="91487" fg:w="118"/><text x="31.1587%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (116 samples, 0.04%)</title><rect x="30.9094%" y="725" width="0.0392%" height="15" fill="rgb(226,79,43)" fg:x="91489" fg:w="116"/><text x="31.1594%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (155 samples, 0.05%)</title><rect x="30.9087%" y="757" width="0.0524%" height="15" fill="rgb(242,105,53)" fg:x="91487" fg:w="155"/><text x="31.1587%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (37 samples, 0.01%)</title><rect x="30.9486%" y="741" width="0.0125%" height="15" fill="rgb(251,132,46)" fg:x="91605" fg:w="37"/><text x="31.1986%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (37 samples, 0.01%)</title><rect x="30.9486%" y="725" width="0.0125%" height="15" fill="rgb(231,77,14)" fg:x="91605" fg:w="37"/><text x="31.1986%" y="735.50"></text></g><g><title>JavaThread::oops_do (36 samples, 0.01%)</title><rect x="30.9489%" y="709" width="0.0122%" height="15" fill="rgb(240,135,9)" fg:x="91606" fg:w="36"/><text x="31.1989%" y="719.50"></text></g><g><title>G1ParTask::work (601 samples, 0.20%)</title><rect x="30.7634%" y="789" width="0.2030%" height="15" fill="rgb(248,109,14)" fg:x="91057" fg:w="601"/><text x="31.0134%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (173 samples, 0.06%)</title><rect x="30.9080%" y="773" width="0.0584%" height="15" fill="rgb(227,146,52)" fg:x="91485" fg:w="173"/><text x="31.1580%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (42 samples, 0.01%)</title><rect x="30.9675%" y="789" width="0.0142%" height="15" fill="rgb(232,54,3)" fg:x="91661" fg:w="42"/><text x="31.2175%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.02%)</title><rect x="30.9979%" y="565" width="0.0236%" height="15" fill="rgb(229,201,43)" fg:x="91751" fg:w="70"/><text x="31.2479%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (68 samples, 0.02%)</title><rect x="30.9986%" y="549" width="0.0230%" height="15" fill="rgb(252,161,33)" fg:x="91753" fg:w="68"/><text x="31.2486%" y="559.50"></text></g><g><title>native_write_msr (67 samples, 0.02%)</title><rect x="30.9989%" y="533" width="0.0226%" height="15" fill="rgb(226,146,40)" fg:x="91754" fg:w="67"/><text x="31.2489%" y="543.50"></text></g><g><title>finish_task_switch (74 samples, 0.03%)</title><rect x="30.9969%" y="581" width="0.0250%" height="15" fill="rgb(219,47,25)" fg:x="91748" fg:w="74"/><text x="31.2469%" y="591.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.03%)</title><rect x="30.9955%" y="629" width="0.0280%" height="15" fill="rgb(250,135,13)" fg:x="91744" fg:w="83"/><text x="31.2455%" y="639.50"></text></g><g><title>schedule (83 samples, 0.03%)</title><rect x="30.9955%" y="613" width="0.0280%" height="15" fill="rgb(219,229,18)" fg:x="91744" fg:w="83"/><text x="31.2455%" y="623.50"></text></g><g><title>__schedule (82 samples, 0.03%)</title><rect x="30.9959%" y="597" width="0.0277%" height="15" fill="rgb(217,152,27)" fg:x="91745" fg:w="82"/><text x="31.2459%" y="607.50"></text></g><g><title>do_syscall_64 (89 samples, 0.03%)</title><rect x="30.9945%" y="693" width="0.0301%" height="15" fill="rgb(225,71,47)" fg:x="91741" fg:w="89"/><text x="31.2445%" y="703.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.03%)</title><rect x="30.9949%" y="677" width="0.0297%" height="15" fill="rgb(220,139,14)" fg:x="91742" fg:w="88"/><text x="31.2449%" y="687.50"></text></g><g><title>do_futex (87 samples, 0.03%)</title><rect x="30.9952%" y="661" width="0.0294%" height="15" fill="rgb(247,54,32)" fg:x="91743" fg:w="87"/><text x="31.2452%" y="671.50"></text></g><g><title>futex_wait (86 samples, 0.03%)</title><rect x="30.9955%" y="645" width="0.0291%" height="15" fill="rgb(252,131,39)" fg:x="91744" fg:w="86"/><text x="31.2455%" y="655.50"></text></g><g><title>__GI___clone (778 samples, 0.26%)</title><rect x="30.7624%" y="869" width="0.2628%" height="15" fill="rgb(210,108,39)" fg:x="91054" fg:w="778"/><text x="31.0124%" y="879.50"></text></g><g><title>start_thread (778 samples, 0.26%)</title><rect x="30.7624%" y="853" width="0.2628%" height="15" fill="rgb(205,23,29)" fg:x="91054" fg:w="778"/><text x="31.0124%" y="863.50"></text></g><g><title>thread_native_entry (778 samples, 0.26%)</title><rect x="30.7624%" y="837" width="0.2628%" height="15" fill="rgb(246,139,46)" fg:x="91054" fg:w="778"/><text x="31.0124%" y="847.50"></text></g><g><title>Thread::call_run (778 samples, 0.26%)</title><rect x="30.7624%" y="821" width="0.2628%" height="15" fill="rgb(250,81,26)" fg:x="91054" fg:w="778"/><text x="31.0124%" y="831.50"></text></g><g><title>GangWorker::loop (778 samples, 0.26%)</title><rect x="30.7624%" y="805" width="0.2628%" height="15" fill="rgb(214,104,7)" fg:x="91054" fg:w="778"/><text x="31.0124%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (92 samples, 0.03%)</title><rect x="30.9942%" y="789" width="0.0311%" height="15" fill="rgb(233,189,8)" fg:x="91740" fg:w="92"/><text x="31.2442%" y="799.50"></text></g><g><title>PosixSemaphore::wait (92 samples, 0.03%)</title><rect x="30.9942%" y="773" width="0.0311%" height="15" fill="rgb(228,141,17)" fg:x="91740" fg:w="92"/><text x="31.2442%" y="783.50"></text></g><g><title>__new_sem_wait_slow (92 samples, 0.03%)</title><rect x="30.9942%" y="757" width="0.0311%" height="15" fill="rgb(247,157,1)" fg:x="91740" fg:w="92"/><text x="31.2442%" y="767.50"></text></g><g><title>do_futex_wait (92 samples, 0.03%)</title><rect x="30.9942%" y="741" width="0.0311%" height="15" fill="rgb(249,225,5)" fg:x="91740" fg:w="92"/><text x="31.2442%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (92 samples, 0.03%)</title><rect x="30.9942%" y="725" width="0.0311%" height="15" fill="rgb(242,55,13)" fg:x="91740" fg:w="92"/><text x="31.2442%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.03%)</title><rect x="30.9945%" y="709" width="0.0307%" height="15" fill="rgb(230,49,50)" fg:x="91741" fg:w="91"/><text x="31.2445%" y="719.50"></text></g><g><title>GC_Thread#1 (790 samples, 0.27%)</title><rect x="30.7587%" y="885" width="0.2669%" height="15" fill="rgb(241,111,38)" fg:x="91043" fg:w="790"/><text x="31.0087%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (79 samples, 0.03%)</title><rect x="31.0597%" y="741" width="0.0267%" height="15" fill="rgb(252,155,4)" fg:x="91934" fg:w="79"/><text x="31.3097%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (160 samples, 0.05%)</title><rect x="31.0344%" y="757" width="0.0541%" height="15" fill="rgb(212,69,32)" fg:x="91859" fg:w="160"/><text x="31.2844%" y="767.50"></text></g><g><title>SpinPause (156 samples, 0.05%)</title><rect x="31.0895%" y="757" width="0.0527%" height="15" fill="rgb(243,107,47)" fg:x="92022" fg:w="156"/><text x="31.3395%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (331 samples, 0.11%)</title><rect x="31.0320%" y="773" width="0.1118%" height="15" fill="rgb(247,130,12)" fg:x="91852" fg:w="331"/><text x="31.2820%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (87 samples, 0.03%)</title><rect x="31.1499%" y="677" width="0.0294%" height="15" fill="rgb(233,74,16)" fg:x="92201" fg:w="87"/><text x="31.3999%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (67 samples, 0.02%)</title><rect x="31.1567%" y="661" width="0.0226%" height="15" fill="rgb(208,58,18)" fg:x="92221" fg:w="67"/><text x="31.4067%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (108 samples, 0.04%)</title><rect x="31.1445%" y="693" width="0.0365%" height="15" fill="rgb(242,225,1)" fg:x="92185" fg:w="108"/><text x="31.3945%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (122 samples, 0.04%)</title><rect x="31.1442%" y="773" width="0.0412%" height="15" fill="rgb(249,39,40)" fg:x="92184" fg:w="122"/><text x="31.3942%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (122 samples, 0.04%)</title><rect x="31.1442%" y="757" width="0.0412%" height="15" fill="rgb(207,72,44)" fg:x="92184" fg:w="122"/><text x="31.3942%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (122 samples, 0.04%)</title><rect x="31.1442%" y="741" width="0.0412%" height="15" fill="rgb(215,193,12)" fg:x="92184" fg:w="122"/><text x="31.3942%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (122 samples, 0.04%)</title><rect x="31.1442%" y="725" width="0.0412%" height="15" fill="rgb(248,41,39)" fg:x="92184" fg:w="122"/><text x="31.3942%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (122 samples, 0.04%)</title><rect x="31.1442%" y="709" width="0.0412%" height="15" fill="rgb(253,85,4)" fg:x="92184" fg:w="122"/><text x="31.3942%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.01%)</title><rect x="31.1854%" y="773" width="0.0111%" height="15" fill="rgb(243,70,31)" fg:x="92306" fg:w="33"/><text x="31.4354%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.01%)</title><rect x="31.1854%" y="757" width="0.0111%" height="15" fill="rgb(253,195,26)" fg:x="92306" fg:w="33"/><text x="31.4354%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.01%)</title><rect x="31.1854%" y="741" width="0.0111%" height="15" fill="rgb(243,42,11)" fg:x="92306" fg:w="33"/><text x="31.4354%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (39 samples, 0.01%)</title><rect x="31.2023%" y="677" width="0.0132%" height="15" fill="rgb(239,66,17)" fg:x="92356" fg:w="39"/><text x="31.4523%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (57 samples, 0.02%)</title><rect x="31.1966%" y="741" width="0.0193%" height="15" fill="rgb(217,132,21)" fg:x="92339" fg:w="57"/><text x="31.4466%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (56 samples, 0.02%)</title><rect x="31.1969%" y="725" width="0.0189%" height="15" fill="rgb(252,202,21)" fg:x="92340" fg:w="56"/><text x="31.4469%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (56 samples, 0.02%)</title><rect x="31.1969%" y="709" width="0.0189%" height="15" fill="rgb(233,98,36)" fg:x="92340" fg:w="56"/><text x="31.4469%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (54 samples, 0.02%)</title><rect x="31.1976%" y="693" width="0.0182%" height="15" fill="rgb(216,153,54)" fg:x="92342" fg:w="54"/><text x="31.4476%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (36 samples, 0.01%)</title><rect x="31.2253%" y="661" width="0.0122%" height="15" fill="rgb(250,99,7)" fg:x="92424" fg:w="36"/><text x="31.4753%" y="671.50"></text></g><g><title>JNIHandleBlock::oops_do (40 samples, 0.01%)</title><rect x="31.2243%" y="693" width="0.0135%" height="15" fill="rgb(207,56,50)" fg:x="92421" fg:w="40"/><text x="31.4743%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (40 samples, 0.01%)</title><rect x="31.2243%" y="677" width="0.0135%" height="15" fill="rgb(244,61,34)" fg:x="92421" fg:w="40"/><text x="31.4743%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (45 samples, 0.02%)</title><rect x="31.2408%" y="677" width="0.0152%" height="15" fill="rgb(241,50,38)" fg:x="92470" fg:w="45"/><text x="31.4908%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (44 samples, 0.01%)</title><rect x="31.2412%" y="661" width="0.0149%" height="15" fill="rgb(212,166,30)" fg:x="92471" fg:w="44"/><text x="31.4912%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (51 samples, 0.02%)</title><rect x="31.2401%" y="693" width="0.0172%" height="15" fill="rgb(249,127,32)" fg:x="92468" fg:w="51"/><text x="31.4901%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (125 samples, 0.04%)</title><rect x="31.2158%" y="725" width="0.0422%" height="15" fill="rgb(209,103,0)" fg:x="92396" fg:w="125"/><text x="31.4658%" y="735.50"></text></g><g><title>JavaThread::oops_do (125 samples, 0.04%)</title><rect x="31.2158%" y="709" width="0.0422%" height="15" fill="rgb(238,209,51)" fg:x="92396" fg:w="125"/><text x="31.4658%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (183 samples, 0.06%)</title><rect x="31.1966%" y="757" width="0.0618%" height="15" fill="rgb(237,56,23)" fg:x="92339" fg:w="183"/><text x="31.4466%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (126 samples, 0.04%)</title><rect x="31.2158%" y="741" width="0.0426%" height="15" fill="rgb(215,153,46)" fg:x="92396" fg:w="126"/><text x="31.4658%" y="751.50"></text></g><g><title>G1ParTask::work (678 samples, 0.23%)</title><rect x="31.0320%" y="789" width="0.2291%" height="15" fill="rgb(224,49,31)" fg:x="91852" fg:w="678"/><text x="31.2820%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (191 samples, 0.06%)</title><rect x="31.1966%" y="773" width="0.0645%" height="15" fill="rgb(250,18,42)" fg:x="92339" fg:w="191"/><text x="31.4466%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (34 samples, 0.01%)</title><rect x="31.2658%" y="789" width="0.0115%" height="15" fill="rgb(215,176,39)" fg:x="92544" fg:w="34"/><text x="31.5158%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (32 samples, 0.01%)</title><rect x="31.2773%" y="789" width="0.0108%" height="15" fill="rgb(223,77,29)" fg:x="92578" fg:w="32"/><text x="31.5273%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (32 samples, 0.01%)</title><rect x="31.2773%" y="773" width="0.0108%" height="15" fill="rgb(234,94,52)" fg:x="92578" fg:w="32"/><text x="31.5273%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.02%)</title><rect x="31.2939%" y="565" width="0.0233%" height="15" fill="rgb(220,154,50)" fg:x="92627" fg:w="69"/><text x="31.5439%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.02%)</title><rect x="31.2949%" y="549" width="0.0223%" height="15" fill="rgb(212,11,10)" fg:x="92630" fg:w="66"/><text x="31.5449%" y="559.50"></text></g><g><title>native_write_msr (66 samples, 0.02%)</title><rect x="31.2949%" y="533" width="0.0223%" height="15" fill="rgb(205,166,19)" fg:x="92630" fg:w="66"/><text x="31.5449%" y="543.50"></text></g><g><title>finish_task_switch (74 samples, 0.03%)</title><rect x="31.2935%" y="581" width="0.0250%" height="15" fill="rgb(244,198,16)" fg:x="92626" fg:w="74"/><text x="31.5435%" y="591.50"></text></g><g><title>do_syscall_64 (86 samples, 0.03%)</title><rect x="31.2905%" y="693" width="0.0291%" height="15" fill="rgb(219,69,12)" fg:x="92617" fg:w="86"/><text x="31.5405%" y="703.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.03%)</title><rect x="31.2908%" y="677" width="0.0287%" height="15" fill="rgb(245,30,7)" fg:x="92618" fg:w="85"/><text x="31.5408%" y="687.50"></text></g><g><title>do_futex (85 samples, 0.03%)</title><rect x="31.2908%" y="661" width="0.0287%" height="15" fill="rgb(218,221,48)" fg:x="92618" fg:w="85"/><text x="31.5408%" y="671.50"></text></g><g><title>futex_wait (85 samples, 0.03%)</title><rect x="31.2908%" y="645" width="0.0287%" height="15" fill="rgb(216,66,15)" fg:x="92618" fg:w="85"/><text x="31.5408%" y="655.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.03%)</title><rect x="31.2915%" y="629" width="0.0280%" height="15" fill="rgb(226,122,50)" fg:x="92620" fg:w="83"/><text x="31.5415%" y="639.50"></text></g><g><title>schedule (82 samples, 0.03%)</title><rect x="31.2918%" y="613" width="0.0277%" height="15" fill="rgb(239,156,16)" fg:x="92621" fg:w="82"/><text x="31.5418%" y="623.50"></text></g><g><title>__schedule (82 samples, 0.03%)</title><rect x="31.2918%" y="597" width="0.0277%" height="15" fill="rgb(224,27,38)" fg:x="92621" fg:w="82"/><text x="31.5418%" y="607.50"></text></g><g><title>__GI___clone (855 samples, 0.29%)</title><rect x="31.0317%" y="869" width="0.2889%" height="15" fill="rgb(224,39,27)" fg:x="91851" fg:w="855"/><text x="31.2817%" y="879.50"></text></g><g><title>start_thread (855 samples, 0.29%)</title><rect x="31.0317%" y="853" width="0.2889%" height="15" fill="rgb(215,92,29)" fg:x="91851" fg:w="855"/><text x="31.2817%" y="863.50"></text></g><g><title>thread_native_entry (855 samples, 0.29%)</title><rect x="31.0317%" y="837" width="0.2889%" height="15" fill="rgb(207,159,16)" fg:x="91851" fg:w="855"/><text x="31.2817%" y="847.50"></text></g><g><title>Thread::call_run (855 samples, 0.29%)</title><rect x="31.0317%" y="821" width="0.2889%" height="15" fill="rgb(238,163,47)" fg:x="91851" fg:w="855"/><text x="31.2817%" y="831.50"></text></g><g><title>GangWorker::loop (855 samples, 0.29%)</title><rect x="31.0317%" y="805" width="0.2889%" height="15" fill="rgb(219,91,49)" fg:x="91851" fg:w="855"/><text x="31.2817%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (94 samples, 0.03%)</title><rect x="31.2888%" y="789" width="0.0318%" height="15" fill="rgb(227,167,31)" fg:x="92612" fg:w="94"/><text x="31.5388%" y="799.50"></text></g><g><title>PosixSemaphore::wait (94 samples, 0.03%)</title><rect x="31.2888%" y="773" width="0.0318%" height="15" fill="rgb(234,80,54)" fg:x="92612" fg:w="94"/><text x="31.5388%" y="783.50"></text></g><g><title>__new_sem_wait_slow (93 samples, 0.03%)</title><rect x="31.2891%" y="757" width="0.0314%" height="15" fill="rgb(212,114,2)" fg:x="92613" fg:w="93"/><text x="31.5391%" y="767.50"></text></g><g><title>do_futex_wait (92 samples, 0.03%)</title><rect x="31.2895%" y="741" width="0.0311%" height="15" fill="rgb(234,50,24)" fg:x="92614" fg:w="92"/><text x="31.5395%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (92 samples, 0.03%)</title><rect x="31.2895%" y="725" width="0.0311%" height="15" fill="rgb(221,68,8)" fg:x="92614" fg:w="92"/><text x="31.5395%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.03%)</title><rect x="31.2905%" y="709" width="0.0301%" height="15" fill="rgb(254,180,31)" fg:x="92617" fg:w="89"/><text x="31.5405%" y="719.50"></text></g><g><title>GC_Thread#2 (874 samples, 0.30%)</title><rect x="31.0256%" y="885" width="0.2953%" height="15" fill="rgb(247,130,50)" fg:x="91833" fg:w="874"/><text x="31.2756%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (75 samples, 0.03%)</title><rect x="31.3418%" y="741" width="0.0253%" height="15" fill="rgb(211,109,4)" fg:x="92769" fg:w="75"/><text x="31.5918%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (114 samples, 0.04%)</title><rect x="31.3297%" y="757" width="0.0385%" height="15" fill="rgb(238,50,21)" fg:x="92733" fg:w="114"/><text x="31.5797%" y="767.50"></text></g><g><title>SpinPause (114 samples, 0.04%)</title><rect x="31.3712%" y="757" width="0.0385%" height="15" fill="rgb(225,57,45)" fg:x="92856" fg:w="114"/><text x="31.6212%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (243 samples, 0.08%)</title><rect x="31.3290%" y="773" width="0.0821%" height="15" fill="rgb(209,196,50)" fg:x="92731" fg:w="243"/><text x="31.5790%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.02%)</title><rect x="31.4270%" y="661" width="0.0236%" height="15" fill="rgb(242,140,13)" fg:x="93021" fg:w="70"/><text x="31.6770%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (92 samples, 0.03%)</title><rect x="31.4199%" y="677" width="0.0311%" height="15" fill="rgb(217,111,7)" fg:x="93000" fg:w="92"/><text x="31.6699%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (121 samples, 0.04%)</title><rect x="31.4118%" y="693" width="0.0409%" height="15" fill="rgb(253,193,51)" fg:x="92976" fg:w="121"/><text x="31.6618%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (137 samples, 0.05%)</title><rect x="31.4114%" y="773" width="0.0463%" height="15" fill="rgb(252,70,29)" fg:x="92975" fg:w="137"/><text x="31.6614%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (137 samples, 0.05%)</title><rect x="31.4114%" y="757" width="0.0463%" height="15" fill="rgb(232,127,12)" fg:x="92975" fg:w="137"/><text x="31.6614%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (137 samples, 0.05%)</title><rect x="31.4114%" y="741" width="0.0463%" height="15" fill="rgb(211,180,21)" fg:x="92975" fg:w="137"/><text x="31.6614%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (137 samples, 0.05%)</title><rect x="31.4114%" y="725" width="0.0463%" height="15" fill="rgb(229,72,13)" fg:x="92975" fg:w="137"/><text x="31.6614%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (137 samples, 0.05%)</title><rect x="31.4114%" y="709" width="0.0463%" height="15" fill="rgb(240,211,49)" fg:x="92975" fg:w="137"/><text x="31.6614%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (31 samples, 0.01%)</title><rect x="31.4577%" y="773" width="0.0105%" height="15" fill="rgb(219,149,40)" fg:x="93112" fg:w="31"/><text x="31.7077%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (31 samples, 0.01%)</title><rect x="31.4577%" y="757" width="0.0105%" height="15" fill="rgb(210,127,46)" fg:x="93112" fg:w="31"/><text x="31.7077%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (31 samples, 0.01%)</title><rect x="31.4577%" y="741" width="0.0105%" height="15" fill="rgb(220,106,7)" fg:x="93112" fg:w="31"/><text x="31.7077%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (30 samples, 0.01%)</title><rect x="31.4753%" y="661" width="0.0101%" height="15" fill="rgb(249,31,22)" fg:x="93164" fg:w="30"/><text x="31.7253%" y="671.50"></text></g><g><title>frame::oops_do_internal (34 samples, 0.01%)</title><rect x="31.4743%" y="693" width="0.0115%" height="15" fill="rgb(253,1,49)" fg:x="93161" fg:w="34"/><text x="31.7243%" y="703.50"></text></g><g><title>OopMapSet::oops_do (34 samples, 0.01%)</title><rect x="31.4743%" y="677" width="0.0115%" height="15" fill="rgb(227,144,33)" fg:x="93161" fg:w="34"/><text x="31.7243%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (71 samples, 0.02%)</title><rect x="31.4702%" y="757" width="0.0240%" height="15" fill="rgb(249,163,44)" fg:x="93149" fg:w="71"/><text x="31.7202%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (71 samples, 0.02%)</title><rect x="31.4702%" y="741" width="0.0240%" height="15" fill="rgb(234,15,39)" fg:x="93149" fg:w="71"/><text x="31.7202%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (71 samples, 0.02%)</title><rect x="31.4702%" y="725" width="0.0240%" height="15" fill="rgb(207,66,16)" fg:x="93149" fg:w="71"/><text x="31.7202%" y="735.50"></text></g><g><title>JavaThread::oops_do (70 samples, 0.02%)</title><rect x="31.4706%" y="709" width="0.0236%" height="15" fill="rgb(233,112,24)" fg:x="93150" fg:w="70"/><text x="31.7206%" y="719.50"></text></g><g><title>G1ParTask::work (518 samples, 0.18%)</title><rect x="31.3290%" y="789" width="0.1750%" height="15" fill="rgb(230,90,22)" fg:x="92731" fg:w="518"/><text x="31.5790%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (106 samples, 0.04%)</title><rect x="31.4682%" y="773" width="0.0358%" height="15" fill="rgb(229,61,13)" fg:x="93143" fg:w="106"/><text x="31.7182%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (30 samples, 0.01%)</title><rect x="31.5050%" y="757" width="0.0101%" height="15" fill="rgb(225,57,24)" fg:x="93252" fg:w="30"/><text x="31.7550%" y="767.50"></text></g><g><title>RefProcPhase2Task::work (38 samples, 0.01%)</title><rect x="31.5050%" y="773" width="0.0128%" height="15" fill="rgb(208,169,48)" fg:x="93252" fg:w="38"/><text x="31.7550%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (60 samples, 0.02%)</title><rect x="31.5050%" y="789" width="0.0203%" height="15" fill="rgb(244,218,51)" fg:x="93252" fg:w="60"/><text x="31.7550%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (33 samples, 0.01%)</title><rect x="31.5253%" y="789" width="0.0111%" height="15" fill="rgb(214,148,10)" fg:x="93312" fg:w="33"/><text x="31.7753%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (32 samples, 0.01%)</title><rect x="31.5256%" y="773" width="0.0108%" height="15" fill="rgb(225,174,27)" fg:x="93313" fg:w="32"/><text x="31.7756%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.02%)</title><rect x="31.5412%" y="565" width="0.0213%" height="15" fill="rgb(230,96,26)" fg:x="93359" fg:w="63"/><text x="31.7912%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.02%)</title><rect x="31.5418%" y="549" width="0.0206%" height="15" fill="rgb(232,10,30)" fg:x="93361" fg:w="61"/><text x="31.7918%" y="559.50"></text></g><g><title>native_write_msr (61 samples, 0.02%)</title><rect x="31.5418%" y="533" width="0.0206%" height="15" fill="rgb(222,8,50)" fg:x="93361" fg:w="61"/><text x="31.7918%" y="543.50"></text></g><g><title>finish_task_switch (67 samples, 0.02%)</title><rect x="31.5408%" y="581" width="0.0226%" height="15" fill="rgb(213,81,27)" fg:x="93358" fg:w="67"/><text x="31.7908%" y="591.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.03%)</title><rect x="31.5385%" y="629" width="0.0264%" height="15" fill="rgb(245,50,10)" fg:x="93351" fg:w="78"/><text x="31.7885%" y="639.50"></text></g><g><title>schedule (77 samples, 0.03%)</title><rect x="31.5388%" y="613" width="0.0260%" height="15" fill="rgb(216,100,18)" fg:x="93352" fg:w="77"/><text x="31.7888%" y="623.50"></text></g><g><title>__schedule (77 samples, 0.03%)</title><rect x="31.5388%" y="597" width="0.0260%" height="15" fill="rgb(236,147,54)" fg:x="93352" fg:w="77"/><text x="31.7888%" y="607.50"></text></g><g><title>do_syscall_64 (81 samples, 0.03%)</title><rect x="31.5378%" y="693" width="0.0274%" height="15" fill="rgb(205,143,26)" fg:x="93349" fg:w="81"/><text x="31.7878%" y="703.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.03%)</title><rect x="31.5378%" y="677" width="0.0274%" height="15" fill="rgb(236,26,9)" fg:x="93349" fg:w="81"/><text x="31.7878%" y="687.50"></text></g><g><title>do_futex (81 samples, 0.03%)</title><rect x="31.5378%" y="661" width="0.0274%" height="15" fill="rgb(221,165,53)" fg:x="93349" fg:w="81"/><text x="31.7878%" y="671.50"></text></g><g><title>futex_wait (80 samples, 0.03%)</title><rect x="31.5381%" y="645" width="0.0270%" height="15" fill="rgb(214,110,17)" fg:x="93350" fg:w="80"/><text x="31.7881%" y="655.50"></text></g><g><title>__GI___clone (710 samples, 0.24%)</title><rect x="31.3260%" y="869" width="0.2399%" height="15" fill="rgb(237,197,12)" fg:x="92722" fg:w="710"/><text x="31.5760%" y="879.50"></text></g><g><title>start_thread (710 samples, 0.24%)</title><rect x="31.3260%" y="853" width="0.2399%" height="15" fill="rgb(205,84,17)" fg:x="92722" fg:w="710"/><text x="31.5760%" y="863.50"></text></g><g><title>thread_native_entry (710 samples, 0.24%)</title><rect x="31.3260%" y="837" width="0.2399%" height="15" fill="rgb(237,18,45)" fg:x="92722" fg:w="710"/><text x="31.5760%" y="847.50"></text></g><g><title>Thread::call_run (710 samples, 0.24%)</title><rect x="31.3260%" y="821" width="0.2399%" height="15" fill="rgb(221,87,14)" fg:x="92722" fg:w="710"/><text x="31.5760%" y="831.50"></text></g><g><title>GangWorker::loop (710 samples, 0.24%)</title><rect x="31.3260%" y="805" width="0.2399%" height="15" fill="rgb(238,186,15)" fg:x="92722" fg:w="710"/><text x="31.5760%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (87 samples, 0.03%)</title><rect x="31.5364%" y="789" width="0.0294%" height="15" fill="rgb(208,115,11)" fg:x="93345" fg:w="87"/><text x="31.7864%" y="799.50"></text></g><g><title>PosixSemaphore::wait (87 samples, 0.03%)</title><rect x="31.5364%" y="773" width="0.0294%" height="15" fill="rgb(254,175,0)" fg:x="93345" fg:w="87"/><text x="31.7864%" y="783.50"></text></g><g><title>__new_sem_wait_slow (86 samples, 0.03%)</title><rect x="31.5368%" y="757" width="0.0291%" height="15" fill="rgb(227,24,42)" fg:x="93346" fg:w="86"/><text x="31.7868%" y="767.50"></text></g><g><title>do_futex_wait (84 samples, 0.03%)</title><rect x="31.5374%" y="741" width="0.0284%" height="15" fill="rgb(223,211,37)" fg:x="93348" fg:w="84"/><text x="31.7874%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (84 samples, 0.03%)</title><rect x="31.5374%" y="725" width="0.0284%" height="15" fill="rgb(235,49,27)" fg:x="93348" fg:w="84"/><text x="31.7874%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.03%)</title><rect x="31.5378%" y="709" width="0.0280%" height="15" fill="rgb(254,97,51)" fg:x="93349" fg:w="83"/><text x="31.7878%" y="719.50"></text></g><g><title>GC_Thread#3 (728 samples, 0.25%)</title><rect x="31.3209%" y="885" width="0.2460%" height="15" fill="rgb(249,51,40)" fg:x="92707" fg:w="728"/><text x="31.5709%" y="895.50"></text></g><g><title>OopOopIterateBackwardsDispatch<G1ScanEvacuatedObjClosure>::Table::oop_oop_iterate_backwards<InstanceKlass, unsigned int> (30 samples, 0.01%)</title><rect x="31.6158%" y="725" width="0.0101%" height="15" fill="rgb(210,128,45)" fg:x="93580" fg:w="30"/><text x="31.8658%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (104 samples, 0.04%)</title><rect x="31.5996%" y="741" width="0.0351%" height="15" fill="rgb(224,137,50)" fg:x="93532" fg:w="104"/><text x="31.8496%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (176 samples, 0.06%)</title><rect x="31.5760%" y="757" width="0.0595%" height="15" fill="rgb(242,15,9)" fg:x="93462" fg:w="176"/><text x="31.8260%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (438 samples, 0.15%)</title><rect x="31.5739%" y="773" width="0.1480%" height="15" fill="rgb(233,187,41)" fg:x="93456" fg:w="438"/><text x="31.8239%" y="783.50"></text></g><g><title>SpinPause (250 samples, 0.08%)</title><rect x="31.6374%" y="757" width="0.0845%" height="15" fill="rgb(227,2,29)" fg:x="93644" fg:w="250"/><text x="31.8874%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (51 samples, 0.02%)</title><rect x="31.7253%" y="677" width="0.0172%" height="15" fill="rgb(222,70,3)" fg:x="93904" fg:w="51"/><text x="31.9753%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (40 samples, 0.01%)</title><rect x="31.7290%" y="661" width="0.0135%" height="15" fill="rgb(213,11,42)" fg:x="93915" fg:w="40"/><text x="31.9790%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (65 samples, 0.02%)</title><rect x="31.7222%" y="693" width="0.0220%" height="15" fill="rgb(225,150,9)" fg:x="93895" fg:w="65"/><text x="31.9722%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (73 samples, 0.02%)</title><rect x="31.7222%" y="773" width="0.0247%" height="15" fill="rgb(230,162,45)" fg:x="93895" fg:w="73"/><text x="31.9722%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (73 samples, 0.02%)</title><rect x="31.7222%" y="757" width="0.0247%" height="15" fill="rgb(222,14,52)" fg:x="93895" fg:w="73"/><text x="31.9722%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (73 samples, 0.02%)</title><rect x="31.7222%" y="741" width="0.0247%" height="15" fill="rgb(254,198,14)" fg:x="93895" fg:w="73"/><text x="31.9722%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (73 samples, 0.02%)</title><rect x="31.7222%" y="725" width="0.0247%" height="15" fill="rgb(220,217,30)" fg:x="93895" fg:w="73"/><text x="31.9722%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (73 samples, 0.02%)</title><rect x="31.7222%" y="709" width="0.0247%" height="15" fill="rgb(215,146,41)" fg:x="93895" fg:w="73"/><text x="31.9722%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (31 samples, 0.01%)</title><rect x="31.7472%" y="693" width="0.0105%" height="15" fill="rgb(217,27,36)" fg:x="93969" fg:w="31"/><text x="31.9972%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (40 samples, 0.01%)</title><rect x="31.7469%" y="725" width="0.0135%" height="15" fill="rgb(219,218,39)" fg:x="93968" fg:w="40"/><text x="31.9969%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (39 samples, 0.01%)</title><rect x="31.7472%" y="709" width="0.0132%" height="15" fill="rgb(219,4,42)" fg:x="93969" fg:w="39"/><text x="31.9972%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (51 samples, 0.02%)</title><rect x="31.7469%" y="773" width="0.0172%" height="15" fill="rgb(249,119,36)" fg:x="93968" fg:w="51"/><text x="31.9969%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (51 samples, 0.02%)</title><rect x="31.7469%" y="757" width="0.0172%" height="15" fill="rgb(209,23,33)" fg:x="93968" fg:w="51"/><text x="31.9969%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (51 samples, 0.02%)</title><rect x="31.7469%" y="741" width="0.0172%" height="15" fill="rgb(211,10,0)" fg:x="93968" fg:w="51"/><text x="31.9969%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (100 samples, 0.03%)</title><rect x="31.7773%" y="645" width="0.0338%" height="15" fill="rgb(208,99,37)" fg:x="94058" fg:w="100"/><text x="32.0273%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (82 samples, 0.03%)</title><rect x="31.7834%" y="629" width="0.0277%" height="15" fill="rgb(213,132,31)" fg:x="94076" fg:w="82"/><text x="32.0334%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (130 samples, 0.04%)</title><rect x="31.7699%" y="677" width="0.0439%" height="15" fill="rgb(243,129,40)" fg:x="94036" fg:w="130"/><text x="32.0199%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (127 samples, 0.04%)</title><rect x="31.7709%" y="661" width="0.0429%" height="15" fill="rgb(210,66,33)" fg:x="94039" fg:w="127"/><text x="32.0209%" y="671.50"></text></g><g><title>JavaThread::oops_do (154 samples, 0.05%)</title><rect x="31.7645%" y="709" width="0.0520%" height="15" fill="rgb(209,189,4)" fg:x="94020" fg:w="154"/><text x="32.0145%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (138 samples, 0.05%)</title><rect x="31.7699%" y="693" width="0.0466%" height="15" fill="rgb(214,107,37)" fg:x="94036" fg:w="138"/><text x="32.0199%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (155 samples, 0.05%)</title><rect x="31.7645%" y="757" width="0.0524%" height="15" fill="rgb(245,88,54)" fg:x="94020" fg:w="155"/><text x="32.0145%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (155 samples, 0.05%)</title><rect x="31.7645%" y="741" width="0.0524%" height="15" fill="rgb(205,146,20)" fg:x="94020" fg:w="155"/><text x="32.0145%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (155 samples, 0.05%)</title><rect x="31.7645%" y="725" width="0.0524%" height="15" fill="rgb(220,161,25)" fg:x="94020" fg:w="155"/><text x="32.0145%" y="735.50"></text></g><g><title>G1ParTask::work (728 samples, 0.25%)</title><rect x="31.5739%" y="789" width="0.2460%" height="15" fill="rgb(215,152,15)" fg:x="93456" fg:w="728"/><text x="31.8239%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (165 samples, 0.06%)</title><rect x="31.7641%" y="773" width="0.0557%" height="15" fill="rgb(233,192,44)" fg:x="94019" fg:w="165"/><text x="32.0141%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (31 samples, 0.01%)</title><rect x="31.8236%" y="757" width="0.0105%" height="15" fill="rgb(240,170,46)" fg:x="94195" fg:w="31"/><text x="32.0736%" y="767.50"></text></g><g><title>RefProcPhase2Task::work (36 samples, 0.01%)</title><rect x="31.8236%" y="773" width="0.0122%" height="15" fill="rgb(207,104,33)" fg:x="94195" fg:w="36"/><text x="32.0736%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (59 samples, 0.02%)</title><rect x="31.8236%" y="789" width="0.0199%" height="15" fill="rgb(219,21,39)" fg:x="94195" fg:w="59"/><text x="32.0736%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (39 samples, 0.01%)</title><rect x="31.8435%" y="789" width="0.0132%" height="15" fill="rgb(214,133,29)" fg:x="94254" fg:w="39"/><text x="32.0935%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (34 samples, 0.01%)</title><rect x="31.8452%" y="773" width="0.0115%" height="15" fill="rgb(226,93,6)" fg:x="94259" fg:w="34"/><text x="32.0952%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.02%)</title><rect x="31.8621%" y="565" width="0.0199%" height="15" fill="rgb(252,222,34)" fg:x="94309" fg:w="59"/><text x="32.1121%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.02%)</title><rect x="31.8628%" y="549" width="0.0193%" height="15" fill="rgb(252,92,48)" fg:x="94311" fg:w="57"/><text x="32.1128%" y="559.50"></text></g><g><title>native_write_msr (57 samples, 0.02%)</title><rect x="31.8628%" y="533" width="0.0193%" height="15" fill="rgb(245,223,24)" fg:x="94311" fg:w="57"/><text x="32.1128%" y="543.50"></text></g><g><title>finish_task_switch (61 samples, 0.02%)</title><rect x="31.8618%" y="581" width="0.0206%" height="15" fill="rgb(205,176,3)" fg:x="94308" fg:w="61"/><text x="32.1118%" y="591.50"></text></g><g><title>do_syscall_64 (84 samples, 0.03%)</title><rect x="31.8577%" y="693" width="0.0284%" height="15" fill="rgb(235,151,15)" fg:x="94296" fg:w="84"/><text x="32.1077%" y="703.50"></text></g><g><title>__x64_sys_futex (84 samples, 0.03%)</title><rect x="31.8577%" y="677" width="0.0284%" height="15" fill="rgb(237,209,11)" fg:x="94296" fg:w="84"/><text x="32.1077%" y="687.50"></text></g><g><title>do_futex (84 samples, 0.03%)</title><rect x="31.8577%" y="661" width="0.0284%" height="15" fill="rgb(243,227,24)" fg:x="94296" fg:w="84"/><text x="32.1077%" y="671.50"></text></g><g><title>futex_wait (83 samples, 0.03%)</title><rect x="31.8581%" y="645" width="0.0280%" height="15" fill="rgb(239,193,16)" fg:x="94297" fg:w="83"/><text x="32.1081%" y="655.50"></text></g><g><title>futex_wait_queue_me (82 samples, 0.03%)</title><rect x="31.8584%" y="629" width="0.0277%" height="15" fill="rgb(231,27,9)" fg:x="94298" fg:w="82"/><text x="32.1084%" y="639.50"></text></g><g><title>schedule (81 samples, 0.03%)</title><rect x="31.8587%" y="613" width="0.0274%" height="15" fill="rgb(219,169,10)" fg:x="94299" fg:w="81"/><text x="32.1087%" y="623.50"></text></g><g><title>__schedule (81 samples, 0.03%)</title><rect x="31.8587%" y="597" width="0.0274%" height="15" fill="rgb(244,229,43)" fg:x="94299" fg:w="81"/><text x="32.1087%" y="607.50"></text></g><g><title>__GI___clone (935 samples, 0.32%)</title><rect x="31.5706%" y="869" width="0.3159%" height="15" fill="rgb(254,38,20)" fg:x="93446" fg:w="935"/><text x="31.8206%" y="879.50"></text></g><g><title>start_thread (935 samples, 0.32%)</title><rect x="31.5706%" y="853" width="0.3159%" height="15" fill="rgb(250,47,30)" fg:x="93446" fg:w="935"/><text x="31.8206%" y="863.50"></text></g><g><title>thread_native_entry (935 samples, 0.32%)</title><rect x="31.5706%" y="837" width="0.3159%" height="15" fill="rgb(224,124,36)" fg:x="93446" fg:w="935"/><text x="31.8206%" y="847.50"></text></g><g><title>Thread::call_run (935 samples, 0.32%)</title><rect x="31.5706%" y="821" width="0.3159%" height="15" fill="rgb(246,68,51)" fg:x="93446" fg:w="935"/><text x="31.8206%" y="831.50"></text></g><g><title>GangWorker::loop (935 samples, 0.32%)</title><rect x="31.5706%" y="805" width="0.3159%" height="15" fill="rgb(253,43,49)" fg:x="93446" fg:w="935"/><text x="31.8206%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (87 samples, 0.03%)</title><rect x="31.8570%" y="789" width="0.0294%" height="15" fill="rgb(219,54,36)" fg:x="94294" fg:w="87"/><text x="32.1070%" y="799.50"></text></g><g><title>PosixSemaphore::wait (87 samples, 0.03%)</title><rect x="31.8570%" y="773" width="0.0294%" height="15" fill="rgb(227,133,34)" fg:x="94294" fg:w="87"/><text x="32.1070%" y="783.50"></text></g><g><title>__new_sem_wait_slow (85 samples, 0.03%)</title><rect x="31.8577%" y="757" width="0.0287%" height="15" fill="rgb(247,227,15)" fg:x="94296" fg:w="85"/><text x="32.1077%" y="767.50"></text></g><g><title>do_futex_wait (85 samples, 0.03%)</title><rect x="31.8577%" y="741" width="0.0287%" height="15" fill="rgb(229,96,14)" fg:x="94296" fg:w="85"/><text x="32.1077%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (85 samples, 0.03%)</title><rect x="31.8577%" y="725" width="0.0287%" height="15" fill="rgb(220,79,17)" fg:x="94296" fg:w="85"/><text x="32.1077%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.03%)</title><rect x="31.8577%" y="709" width="0.0287%" height="15" fill="rgb(205,131,53)" fg:x="94296" fg:w="85"/><text x="32.1077%" y="719.50"></text></g><g><title>GC_Thread#4 (947 samples, 0.32%)</title><rect x="31.5668%" y="885" width="0.3199%" height="15" fill="rgb(209,50,29)" fg:x="93435" fg:w="947"/><text x="31.8168%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (52 samples, 0.02%)</title><rect x="31.9196%" y="741" width="0.0176%" height="15" fill="rgb(245,86,46)" fg:x="94479" fg:w="52"/><text x="32.1696%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (117 samples, 0.04%)</title><rect x="31.8979%" y="757" width="0.0395%" height="15" fill="rgb(235,66,46)" fg:x="94415" fg:w="117"/><text x="32.1479%" y="767.50"></text></g><g><title>SpinPause (213 samples, 0.07%)</title><rect x="31.9402%" y="757" width="0.0720%" height="15" fill="rgb(232,148,31)" fg:x="94540" fg:w="213"/><text x="32.1902%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (352 samples, 0.12%)</title><rect x="31.8935%" y="773" width="0.1189%" height="15" fill="rgb(217,149,8)" fg:x="94402" fg:w="352"/><text x="32.1435%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (105 samples, 0.04%)</title><rect x="32.0179%" y="677" width="0.0355%" height="15" fill="rgb(209,183,11)" fg:x="94770" fg:w="105"/><text x="32.2679%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (83 samples, 0.03%)</title><rect x="32.0253%" y="661" width="0.0280%" height="15" fill="rgb(208,55,20)" fg:x="94792" fg:w="83"/><text x="32.2753%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (125 samples, 0.04%)</title><rect x="32.0128%" y="693" width="0.0422%" height="15" fill="rgb(218,39,14)" fg:x="94755" fg:w="125"/><text x="32.2628%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (139 samples, 0.05%)</title><rect x="32.0128%" y="773" width="0.0470%" height="15" fill="rgb(216,169,33)" fg:x="94755" fg:w="139"/><text x="32.2628%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (139 samples, 0.05%)</title><rect x="32.0128%" y="757" width="0.0470%" height="15" fill="rgb(233,80,24)" fg:x="94755" fg:w="139"/><text x="32.2628%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (139 samples, 0.05%)</title><rect x="32.0128%" y="741" width="0.0470%" height="15" fill="rgb(213,179,31)" fg:x="94755" fg:w="139"/><text x="32.2628%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (139 samples, 0.05%)</title><rect x="32.0128%" y="725" width="0.0470%" height="15" fill="rgb(209,19,5)" fg:x="94755" fg:w="139"/><text x="32.2628%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (139 samples, 0.05%)</title><rect x="32.0128%" y="709" width="0.0470%" height="15" fill="rgb(219,18,35)" fg:x="94755" fg:w="139"/><text x="32.2628%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (63 samples, 0.02%)</title><rect x="32.0871%" y="645" width="0.0213%" height="15" fill="rgb(209,169,16)" fg:x="94975" fg:w="63"/><text x="32.3371%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (39 samples, 0.01%)</title><rect x="32.0952%" y="629" width="0.0132%" height="15" fill="rgb(245,90,51)" fg:x="94999" fg:w="39"/><text x="32.3452%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (86 samples, 0.03%)</title><rect x="32.0817%" y="677" width="0.0291%" height="15" fill="rgb(220,99,45)" fg:x="94959" fg:w="86"/><text x="32.3317%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (86 samples, 0.03%)</title><rect x="32.0817%" y="661" width="0.0291%" height="15" fill="rgb(249,89,25)" fg:x="94959" fg:w="86"/><text x="32.3317%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (133 samples, 0.04%)</title><rect x="32.0672%" y="757" width="0.0449%" height="15" fill="rgb(239,193,0)" fg:x="94916" fg:w="133"/><text x="32.3172%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (105 samples, 0.04%)</title><rect x="32.0767%" y="741" width="0.0355%" height="15" fill="rgb(231,126,1)" fg:x="94944" fg:w="105"/><text x="32.3267%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (105 samples, 0.04%)</title><rect x="32.0767%" y="725" width="0.0355%" height="15" fill="rgb(243,166,3)" fg:x="94944" fg:w="105"/><text x="32.3267%" y="735.50"></text></g><g><title>JavaThread::oops_do (104 samples, 0.04%)</title><rect x="32.0770%" y="709" width="0.0351%" height="15" fill="rgb(223,22,34)" fg:x="94945" fg:w="104"/><text x="32.3270%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (90 samples, 0.03%)</title><rect x="32.0817%" y="693" width="0.0304%" height="15" fill="rgb(251,52,51)" fg:x="94959" fg:w="90"/><text x="32.3317%" y="703.50"></text></g><g><title>G1ParTask::work (648 samples, 0.22%)</title><rect x="31.8935%" y="789" width="0.2189%" height="15" fill="rgb(221,165,28)" fg:x="94402" fg:w="648"/><text x="32.1435%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (134 samples, 0.05%)</title><rect x="32.0672%" y="773" width="0.0453%" height="15" fill="rgb(218,121,47)" fg:x="94916" fg:w="134"/><text x="32.3172%" y="783.50"></text></g><g><title>RefProcPhase2Task::work (36 samples, 0.01%)</title><rect x="32.1145%" y="773" width="0.0122%" height="15" fill="rgb(209,120,9)" fg:x="95056" fg:w="36"/><text x="32.3645%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (52 samples, 0.02%)</title><rect x="32.1145%" y="789" width="0.0176%" height="15" fill="rgb(236,68,12)" fg:x="95056" fg:w="52"/><text x="32.3645%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (43 samples, 0.01%)</title><rect x="32.1324%" y="789" width="0.0145%" height="15" fill="rgb(225,194,26)" fg:x="95109" fg:w="43"/><text x="32.3824%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (38 samples, 0.01%)</title><rect x="32.1341%" y="773" width="0.0128%" height="15" fill="rgb(231,84,39)" fg:x="95114" fg:w="38"/><text x="32.3841%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.03%)</title><rect x="32.1510%" y="565" width="0.0253%" height="15" fill="rgb(210,11,45)" fg:x="95164" fg:w="75"/><text x="32.4010%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.03%)</title><rect x="32.1510%" y="549" width="0.0253%" height="15" fill="rgb(224,54,52)" fg:x="95164" fg:w="75"/><text x="32.4010%" y="559.50"></text></g><g><title>native_write_msr (75 samples, 0.03%)</title><rect x="32.1510%" y="533" width="0.0253%" height="15" fill="rgb(238,102,14)" fg:x="95164" fg:w="75"/><text x="32.4010%" y="543.50"></text></g><g><title>finish_task_switch (82 samples, 0.03%)</title><rect x="32.1510%" y="581" width="0.0277%" height="15" fill="rgb(243,160,52)" fg:x="95164" fg:w="82"/><text x="32.4010%" y="591.50"></text></g><g><title>futex_wait_queue_me (97 samples, 0.03%)</title><rect x="32.1490%" y="629" width="0.0328%" height="15" fill="rgb(216,114,19)" fg:x="95158" fg:w="97"/><text x="32.3990%" y="639.50"></text></g><g><title>schedule (96 samples, 0.03%)</title><rect x="32.1493%" y="613" width="0.0324%" height="15" fill="rgb(244,166,37)" fg:x="95159" fg:w="96"/><text x="32.3993%" y="623.50"></text></g><g><title>__schedule (96 samples, 0.03%)</title><rect x="32.1493%" y="597" width="0.0324%" height="15" fill="rgb(246,29,44)" fg:x="95159" fg:w="96"/><text x="32.3993%" y="607.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.03%)</title><rect x="32.1483%" y="677" width="0.0338%" height="15" fill="rgb(215,56,53)" fg:x="95156" fg:w="100"/><text x="32.3983%" y="687.50"></text></g><g><title>do_futex (99 samples, 0.03%)</title><rect x="32.1486%" y="661" width="0.0334%" height="15" fill="rgb(217,60,2)" fg:x="95157" fg:w="99"/><text x="32.3986%" y="671.50"></text></g><g><title>futex_wait (98 samples, 0.03%)</title><rect x="32.1490%" y="645" width="0.0331%" height="15" fill="rgb(207,26,24)" fg:x="95158" fg:w="98"/><text x="32.3990%" y="655.50"></text></g><g><title>do_syscall_64 (101 samples, 0.03%)</title><rect x="32.1483%" y="693" width="0.0341%" height="15" fill="rgb(252,210,15)" fg:x="95156" fg:w="101"/><text x="32.3983%" y="703.50"></text></g><g><title>GC_Thread#5 (879 samples, 0.30%)</title><rect x="31.8868%" y="885" width="0.2970%" height="15" fill="rgb(253,209,26)" fg:x="94382" fg:w="879"/><text x="32.1368%" y="895.50"></text></g><g><title>__GI___clone (865 samples, 0.29%)</title><rect x="31.8915%" y="869" width="0.2922%" height="15" fill="rgb(238,170,14)" fg:x="94396" fg:w="865"/><text x="32.1415%" y="879.50"></text></g><g><title>start_thread (865 samples, 0.29%)</title><rect x="31.8915%" y="853" width="0.2922%" height="15" fill="rgb(216,178,15)" fg:x="94396" fg:w="865"/><text x="32.1415%" y="863.50"></text></g><g><title>thread_native_entry (865 samples, 0.29%)</title><rect x="31.8915%" y="837" width="0.2922%" height="15" fill="rgb(250,197,2)" fg:x="94396" fg:w="865"/><text x="32.1415%" y="847.50"></text></g><g><title>Thread::call_run (865 samples, 0.29%)</title><rect x="31.8915%" y="821" width="0.2922%" height="15" fill="rgb(212,70,42)" fg:x="94396" fg:w="865"/><text x="32.1415%" y="831.50"></text></g><g><title>GangWorker::loop (865 samples, 0.29%)</title><rect x="31.8915%" y="805" width="0.2922%" height="15" fill="rgb(227,213,9)" fg:x="94396" fg:w="865"/><text x="32.1415%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (108 samples, 0.04%)</title><rect x="32.1473%" y="789" width="0.0365%" height="15" fill="rgb(245,99,25)" fg:x="95153" fg:w="108"/><text x="32.3973%" y="799.50"></text></g><g><title>PosixSemaphore::wait (106 samples, 0.04%)</title><rect x="32.1479%" y="773" width="0.0358%" height="15" fill="rgb(250,82,29)" fg:x="95155" fg:w="106"/><text x="32.3979%" y="783.50"></text></g><g><title>__new_sem_wait_slow (106 samples, 0.04%)</title><rect x="32.1479%" y="757" width="0.0358%" height="15" fill="rgb(241,226,54)" fg:x="95155" fg:w="106"/><text x="32.3979%" y="767.50"></text></g><g><title>do_futex_wait (106 samples, 0.04%)</title><rect x="32.1479%" y="741" width="0.0358%" height="15" fill="rgb(221,99,41)" fg:x="95155" fg:w="106"/><text x="32.3979%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.04%)</title><rect x="32.1479%" y="725" width="0.0358%" height="15" fill="rgb(213,90,21)" fg:x="95155" fg:w="106"/><text x="32.3979%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (105 samples, 0.04%)</title><rect x="32.1483%" y="709" width="0.0355%" height="15" fill="rgb(205,208,24)" fg:x="95156" fg:w="105"/><text x="32.3983%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (92 samples, 0.03%)</title><rect x="32.2118%" y="741" width="0.0311%" height="15" fill="rgb(246,31,12)" fg:x="95344" fg:w="92"/><text x="32.4618%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (149 samples, 0.05%)</title><rect x="32.1935%" y="757" width="0.0503%" height="15" fill="rgb(213,154,6)" fg:x="95290" fg:w="149"/><text x="32.4435%" y="767.50"></text></g><g><title>SpinPause (208 samples, 0.07%)</title><rect x="32.2466%" y="757" width="0.0703%" height="15" fill="rgb(222,163,29)" fg:x="95447" fg:w="208"/><text x="32.4966%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (376 samples, 0.13%)</title><rect x="32.1908%" y="773" width="0.1270%" height="15" fill="rgb(227,201,8)" fg:x="95282" fg:w="376"/><text x="32.4408%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (106 samples, 0.04%)</title><rect x="32.3209%" y="677" width="0.0358%" height="15" fill="rgb(233,9,32)" fg:x="95667" fg:w="106"/><text x="32.5709%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (72 samples, 0.02%)</title><rect x="32.3324%" y="661" width="0.0243%" height="15" fill="rgb(217,54,24)" fg:x="95701" fg:w="72"/><text x="32.5824%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (122 samples, 0.04%)</title><rect x="32.3179%" y="693" width="0.0412%" height="15" fill="rgb(235,192,0)" fg:x="95658" fg:w="122"/><text x="32.5679%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (132 samples, 0.04%)</title><rect x="32.3179%" y="709" width="0.0446%" height="15" fill="rgb(235,45,9)" fg:x="95658" fg:w="132"/><text x="32.5679%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (133 samples, 0.04%)</title><rect x="32.3179%" y="773" width="0.0449%" height="15" fill="rgb(246,42,40)" fg:x="95658" fg:w="133"/><text x="32.5679%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (133 samples, 0.04%)</title><rect x="32.3179%" y="757" width="0.0449%" height="15" fill="rgb(248,111,24)" fg:x="95658" fg:w="133"/><text x="32.5679%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (133 samples, 0.04%)</title><rect x="32.3179%" y="741" width="0.0449%" height="15" fill="rgb(249,65,22)" fg:x="95658" fg:w="133"/><text x="32.5679%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (133 samples, 0.04%)</title><rect x="32.3179%" y="725" width="0.0449%" height="15" fill="rgb(238,111,51)" fg:x="95658" fg:w="133"/><text x="32.5679%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (33 samples, 0.01%)</title><rect x="32.3675%" y="677" width="0.0111%" height="15" fill="rgb(250,118,22)" fg:x="95805" fg:w="33"/><text x="32.6175%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (50 samples, 0.02%)</title><rect x="32.3631%" y="693" width="0.0169%" height="15" fill="rgb(234,84,26)" fg:x="95792" fg:w="50"/><text x="32.6131%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (55 samples, 0.02%)</title><rect x="32.3631%" y="709" width="0.0186%" height="15" fill="rgb(243,172,12)" fg:x="95792" fg:w="55"/><text x="32.6131%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (56 samples, 0.02%)</title><rect x="32.3631%" y="725" width="0.0189%" height="15" fill="rgb(236,150,49)" fg:x="95792" fg:w="56"/><text x="32.6131%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (67 samples, 0.02%)</title><rect x="32.3628%" y="773" width="0.0226%" height="15" fill="rgb(225,197,26)" fg:x="95791" fg:w="67"/><text x="32.6128%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (67 samples, 0.02%)</title><rect x="32.3628%" y="757" width="0.0226%" height="15" fill="rgb(214,17,42)" fg:x="95791" fg:w="67"/><text x="32.6128%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (67 samples, 0.02%)</title><rect x="32.3628%" y="741" width="0.0226%" height="15" fill="rgb(224,165,40)" fg:x="95791" fg:w="67"/><text x="32.6128%" y="751.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (30 samples, 0.01%)</title><rect x="32.3858%" y="741" width="0.0101%" height="15" fill="rgb(246,100,4)" fg:x="95859" fg:w="30"/><text x="32.6358%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (85 samples, 0.03%)</title><rect x="32.3858%" y="757" width="0.0287%" height="15" fill="rgb(222,103,0)" fg:x="95859" fg:w="85"/><text x="32.6358%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (55 samples, 0.02%)</title><rect x="32.3959%" y="741" width="0.0186%" height="15" fill="rgb(227,189,26)" fg:x="95889" fg:w="55"/><text x="32.6459%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (55 samples, 0.02%)</title><rect x="32.3959%" y="725" width="0.0186%" height="15" fill="rgb(214,202,17)" fg:x="95889" fg:w="55"/><text x="32.6459%" y="735.50"></text></g><g><title>JavaThread::oops_do (53 samples, 0.02%)</title><rect x="32.3966%" y="709" width="0.0179%" height="15" fill="rgb(229,111,3)" fg:x="95891" fg:w="53"/><text x="32.6466%" y="719.50"></text></g><g><title>G1ParTask::work (690 samples, 0.23%)</title><rect x="32.1908%" y="789" width="0.2331%" height="15" fill="rgb(229,172,15)" fg:x="95282" fg:w="690"/><text x="32.4408%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (114 samples, 0.04%)</title><rect x="32.3854%" y="773" width="0.0385%" height="15" fill="rgb(230,224,35)" fg:x="95858" fg:w="114"/><text x="32.6354%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (43 samples, 0.01%)</title><rect x="32.4280%" y="789" width="0.0145%" height="15" fill="rgb(251,141,6)" fg:x="95984" fg:w="43"/><text x="32.6780%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.03%)</title><rect x="32.4577%" y="565" width="0.0274%" height="15" fill="rgb(225,208,6)" fg:x="96072" fg:w="81"/><text x="32.7077%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.03%)</title><rect x="32.4584%" y="549" width="0.0267%" height="15" fill="rgb(246,181,16)" fg:x="96074" fg:w="79"/><text x="32.7084%" y="559.50"></text></g><g><title>native_write_msr (79 samples, 0.03%)</title><rect x="32.4584%" y="533" width="0.0267%" height="15" fill="rgb(227,129,36)" fg:x="96074" fg:w="79"/><text x="32.7084%" y="543.50"></text></g><g><title>finish_task_switch (86 samples, 0.03%)</title><rect x="32.4571%" y="581" width="0.0291%" height="15" fill="rgb(248,117,24)" fg:x="96070" fg:w="86"/><text x="32.7071%" y="591.50"></text></g><g><title>futex_wait_queue_me (105 samples, 0.04%)</title><rect x="32.4530%" y="629" width="0.0355%" height="15" fill="rgb(214,185,35)" fg:x="96058" fg:w="105"/><text x="32.7030%" y="639.50"></text></g><g><title>schedule (101 samples, 0.03%)</title><rect x="32.4544%" y="613" width="0.0341%" height="15" fill="rgb(236,150,34)" fg:x="96062" fg:w="101"/><text x="32.7044%" y="623.50"></text></g><g><title>__schedule (100 samples, 0.03%)</title><rect x="32.4547%" y="597" width="0.0338%" height="15" fill="rgb(243,228,27)" fg:x="96063" fg:w="100"/><text x="32.7047%" y="607.50"></text></g><g><title>do_syscall_64 (109 samples, 0.04%)</title><rect x="32.4520%" y="693" width="0.0368%" height="15" fill="rgb(245,77,44)" fg:x="96055" fg:w="109"/><text x="32.7020%" y="703.50"></text></g><g><title>__x64_sys_futex (109 samples, 0.04%)</title><rect x="32.4520%" y="677" width="0.0368%" height="15" fill="rgb(235,214,42)" fg:x="96055" fg:w="109"/><text x="32.7020%" y="687.50"></text></g><g><title>do_futex (109 samples, 0.04%)</title><rect x="32.4520%" y="661" width="0.0368%" height="15" fill="rgb(221,74,3)" fg:x="96055" fg:w="109"/><text x="32.7020%" y="671.50"></text></g><g><title>futex_wait (106 samples, 0.04%)</title><rect x="32.4530%" y="645" width="0.0358%" height="15" fill="rgb(206,121,29)" fg:x="96058" fg:w="106"/><text x="32.7030%" y="655.50"></text></g><g><title>__GI___clone (894 samples, 0.30%)</title><rect x="32.1875%" y="869" width="0.3020%" height="15" fill="rgb(249,131,53)" fg:x="95272" fg:w="894"/><text x="32.4375%" y="879.50"></text></g><g><title>start_thread (894 samples, 0.30%)</title><rect x="32.1875%" y="853" width="0.3020%" height="15" fill="rgb(236,170,29)" fg:x="95272" fg:w="894"/><text x="32.4375%" y="863.50"></text></g><g><title>thread_native_entry (894 samples, 0.30%)</title><rect x="32.1875%" y="837" width="0.3020%" height="15" fill="rgb(247,96,15)" fg:x="95272" fg:w="894"/><text x="32.4375%" y="847.50"></text></g><g><title>Thread::call_run (894 samples, 0.30%)</title><rect x="32.1875%" y="821" width="0.3020%" height="15" fill="rgb(211,210,7)" fg:x="95272" fg:w="894"/><text x="32.4375%" y="831.50"></text></g><g><title>GangWorker::loop (894 samples, 0.30%)</title><rect x="32.1875%" y="805" width="0.3020%" height="15" fill="rgb(240,88,50)" fg:x="95272" fg:w="894"/><text x="32.4375%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (112 samples, 0.04%)</title><rect x="32.4517%" y="789" width="0.0378%" height="15" fill="rgb(209,229,26)" fg:x="96054" fg:w="112"/><text x="32.7017%" y="799.50"></text></g><g><title>PosixSemaphore::wait (112 samples, 0.04%)</title><rect x="32.4517%" y="773" width="0.0378%" height="15" fill="rgb(210,68,23)" fg:x="96054" fg:w="112"/><text x="32.7017%" y="783.50"></text></g><g><title>__new_sem_wait_slow (112 samples, 0.04%)</title><rect x="32.4517%" y="757" width="0.0378%" height="15" fill="rgb(229,180,13)" fg:x="96054" fg:w="112"/><text x="32.7017%" y="767.50"></text></g><g><title>do_futex_wait (112 samples, 0.04%)</title><rect x="32.4517%" y="741" width="0.0378%" height="15" fill="rgb(236,53,44)" fg:x="96054" fg:w="112"/><text x="32.7017%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (112 samples, 0.04%)</title><rect x="32.4517%" y="725" width="0.0378%" height="15" fill="rgb(244,214,29)" fg:x="96054" fg:w="112"/><text x="32.7017%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.04%)</title><rect x="32.4520%" y="709" width="0.0375%" height="15" fill="rgb(220,75,29)" fg:x="96055" fg:w="111"/><text x="32.7020%" y="719.50"></text></g><g><title>GC_Thread#6 (906 samples, 0.31%)</title><rect x="32.1837%" y="885" width="0.3061%" height="15" fill="rgb(214,183,37)" fg:x="95261" fg:w="906"/><text x="32.4337%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (71 samples, 0.02%)</title><rect x="32.5233%" y="741" width="0.0240%" height="15" fill="rgb(239,117,29)" fg:x="96266" fg:w="71"/><text x="32.7733%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (142 samples, 0.05%)</title><rect x="32.5013%" y="757" width="0.0480%" height="15" fill="rgb(237,171,35)" fg:x="96201" fg:w="142"/><text x="32.7513%" y="767.50"></text></g><g><title>SpinPause (235 samples, 0.08%)</title><rect x="32.5520%" y="757" width="0.0794%" height="15" fill="rgb(229,178,53)" fg:x="96351" fg:w="235"/><text x="32.8020%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (407 samples, 0.14%)</title><rect x="32.4956%" y="773" width="0.1375%" height="15" fill="rgb(210,102,19)" fg:x="96184" fg:w="407"/><text x="32.7456%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (66 samples, 0.02%)</title><rect x="32.6361%" y="677" width="0.0223%" height="15" fill="rgb(235,127,22)" fg:x="96600" fg:w="66"/><text x="32.8861%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (48 samples, 0.02%)</title><rect x="32.6422%" y="661" width="0.0162%" height="15" fill="rgb(244,31,31)" fg:x="96618" fg:w="48"/><text x="32.8922%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (78 samples, 0.03%)</title><rect x="32.6331%" y="693" width="0.0264%" height="15" fill="rgb(231,43,21)" fg:x="96591" fg:w="78"/><text x="32.8831%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (100 samples, 0.03%)</title><rect x="32.6331%" y="773" width="0.0338%" height="15" fill="rgb(217,131,35)" fg:x="96591" fg:w="100"/><text x="32.8831%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (100 samples, 0.03%)</title><rect x="32.6331%" y="757" width="0.0338%" height="15" fill="rgb(221,149,4)" fg:x="96591" fg:w="100"/><text x="32.8831%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (100 samples, 0.03%)</title><rect x="32.6331%" y="741" width="0.0338%" height="15" fill="rgb(232,170,28)" fg:x="96591" fg:w="100"/><text x="32.8831%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (100 samples, 0.03%)</title><rect x="32.6331%" y="725" width="0.0338%" height="15" fill="rgb(238,56,10)" fg:x="96591" fg:w="100"/><text x="32.8831%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (100 samples, 0.03%)</title><rect x="32.6331%" y="709" width="0.0338%" height="15" fill="rgb(235,196,14)" fg:x="96591" fg:w="100"/><text x="32.8831%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (32 samples, 0.01%)</title><rect x="32.6696%" y="677" width="0.0108%" height="15" fill="rgb(216,45,48)" fg:x="96699" fg:w="32"/><text x="32.9196%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (41 samples, 0.01%)</title><rect x="32.6669%" y="693" width="0.0139%" height="15" fill="rgb(238,213,17)" fg:x="96691" fg:w="41"/><text x="32.9169%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (52 samples, 0.02%)</title><rect x="32.6669%" y="709" width="0.0176%" height="15" fill="rgb(212,13,2)" fg:x="96691" fg:w="52"/><text x="32.9169%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (53 samples, 0.02%)</title><rect x="32.6669%" y="725" width="0.0179%" height="15" fill="rgb(240,114,20)" fg:x="96691" fg:w="53"/><text x="32.9169%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (63 samples, 0.02%)</title><rect x="32.6669%" y="773" width="0.0213%" height="15" fill="rgb(228,41,40)" fg:x="96691" fg:w="63"/><text x="32.9169%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (63 samples, 0.02%)</title><rect x="32.6669%" y="757" width="0.0213%" height="15" fill="rgb(244,132,35)" fg:x="96691" fg:w="63"/><text x="32.9169%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (63 samples, 0.02%)</title><rect x="32.6669%" y="741" width="0.0213%" height="15" fill="rgb(253,189,4)" fg:x="96691" fg:w="63"/><text x="32.9169%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (35 samples, 0.01%)</title><rect x="32.6936%" y="677" width="0.0118%" height="15" fill="rgb(224,37,19)" fg:x="96770" fg:w="35"/><text x="32.9436%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (52 samples, 0.02%)</title><rect x="32.6882%" y="741" width="0.0176%" height="15" fill="rgb(235,223,18)" fg:x="96754" fg:w="52"/><text x="32.9382%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (51 samples, 0.02%)</title><rect x="32.6885%" y="725" width="0.0172%" height="15" fill="rgb(235,163,25)" fg:x="96755" fg:w="51"/><text x="32.9385%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (51 samples, 0.02%)</title><rect x="32.6885%" y="709" width="0.0172%" height="15" fill="rgb(217,145,28)" fg:x="96755" fg:w="51"/><text x="32.9385%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (42 samples, 0.01%)</title><rect x="32.6915%" y="693" width="0.0142%" height="15" fill="rgb(223,223,32)" fg:x="96764" fg:w="42"/><text x="32.9415%" y="703.50"></text></g><g><title>frame::oops_do_internal (42 samples, 0.01%)</title><rect x="32.7074%" y="693" width="0.0142%" height="15" fill="rgb(227,189,39)" fg:x="96811" fg:w="42"/><text x="32.9574%" y="703.50"></text></g><g><title>OopMapSet::oops_do (42 samples, 0.01%)</title><rect x="32.7074%" y="677" width="0.0142%" height="15" fill="rgb(248,10,22)" fg:x="96811" fg:w="42"/><text x="32.9574%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.01%)</title><rect x="32.7091%" y="661" width="0.0125%" height="15" fill="rgb(248,46,39)" fg:x="96816" fg:w="37"/><text x="32.9591%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (32 samples, 0.01%)</title><rect x="32.7216%" y="661" width="0.0108%" height="15" fill="rgb(248,113,48)" fg:x="96853" fg:w="32"/><text x="32.9716%" y="671.50"></text></g><g><title>InterpreterOopMap::iterate_oop (33 samples, 0.01%)</title><rect x="32.7216%" y="677" width="0.0111%" height="15" fill="rgb(245,16,25)" fg:x="96853" fg:w="33"/><text x="32.9716%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (135 samples, 0.05%)</title><rect x="32.6882%" y="757" width="0.0456%" height="15" fill="rgb(249,152,16)" fg:x="96754" fg:w="135"/><text x="32.9382%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (82 samples, 0.03%)</title><rect x="32.7061%" y="741" width="0.0277%" height="15" fill="rgb(250,16,1)" fg:x="96807" fg:w="82"/><text x="32.9561%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (82 samples, 0.03%)</title><rect x="32.7061%" y="725" width="0.0277%" height="15" fill="rgb(249,138,3)" fg:x="96807" fg:w="82"/><text x="32.9561%" y="735.50"></text></g><g><title>JavaThread::oops_do (82 samples, 0.03%)</title><rect x="32.7061%" y="709" width="0.0277%" height="15" fill="rgb(227,71,41)" fg:x="96807" fg:w="82"/><text x="32.9561%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (36 samples, 0.01%)</title><rect x="32.7216%" y="693" width="0.0122%" height="15" fill="rgb(209,184,23)" fg:x="96853" fg:w="36"/><text x="32.9716%" y="703.50"></text></g><g><title>G1ParTask::work (726 samples, 0.25%)</title><rect x="32.4956%" y="789" width="0.2453%" height="15" fill="rgb(223,215,31)" fg:x="96184" fg:w="726"/><text x="32.7456%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (156 samples, 0.05%)</title><rect x="32.6882%" y="773" width="0.0527%" height="15" fill="rgb(210,146,28)" fg:x="96754" fg:w="156"/><text x="32.9382%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (53 samples, 0.02%)</title><rect x="32.7439%" y="789" width="0.0179%" height="15" fill="rgb(209,183,41)" fg:x="96919" fg:w="53"/><text x="32.9939%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (42 samples, 0.01%)</title><rect x="32.7618%" y="789" width="0.0142%" height="15" fill="rgb(209,224,45)" fg:x="96972" fg:w="42"/><text x="33.0118%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (40 samples, 0.01%)</title><rect x="32.7625%" y="773" width="0.0135%" height="15" fill="rgb(224,209,51)" fg:x="96974" fg:w="40"/><text x="33.0125%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.02%)</title><rect x="32.7814%" y="565" width="0.0166%" height="15" fill="rgb(223,17,39)" fg:x="97030" fg:w="49"/><text x="33.0314%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="32.7814%" y="549" width="0.0166%" height="15" fill="rgb(234,204,37)" fg:x="97030" fg:w="49"/><text x="33.0314%" y="559.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="32.7814%" y="533" width="0.0166%" height="15" fill="rgb(236,120,5)" fg:x="97030" fg:w="49"/><text x="33.0314%" y="543.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="32.7811%" y="581" width="0.0179%" height="15" fill="rgb(248,97,27)" fg:x="97029" fg:w="53"/><text x="33.0311%" y="591.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.02%)</title><rect x="32.7777%" y="629" width="0.0230%" height="15" fill="rgb(240,66,17)" fg:x="97019" fg:w="68"/><text x="33.0277%" y="639.50"></text></g><g><title>schedule (65 samples, 0.02%)</title><rect x="32.7787%" y="613" width="0.0220%" height="15" fill="rgb(210,79,3)" fg:x="97022" fg:w="65"/><text x="33.0287%" y="623.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="32.7787%" y="597" width="0.0220%" height="15" fill="rgb(214,176,27)" fg:x="97022" fg:w="65"/><text x="33.0287%" y="607.50"></text></g><g><title>do_syscall_64 (69 samples, 0.02%)</title><rect x="32.7777%" y="693" width="0.0233%" height="15" fill="rgb(235,185,3)" fg:x="97019" fg:w="69"/><text x="33.0277%" y="703.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.02%)</title><rect x="32.7777%" y="677" width="0.0233%" height="15" fill="rgb(227,24,12)" fg:x="97019" fg:w="69"/><text x="33.0277%" y="687.50"></text></g><g><title>do_futex (69 samples, 0.02%)</title><rect x="32.7777%" y="661" width="0.0233%" height="15" fill="rgb(252,169,48)" fg:x="97019" fg:w="69"/><text x="33.0277%" y="671.50"></text></g><g><title>futex_wait (69 samples, 0.02%)</title><rect x="32.7777%" y="645" width="0.0233%" height="15" fill="rgb(212,65,1)" fg:x="97019" fg:w="69"/><text x="33.0277%" y="655.50"></text></g><g><title>GC_Thread#7 (924 samples, 0.31%)</title><rect x="32.4898%" y="885" width="0.3122%" height="15" fill="rgb(242,39,24)" fg:x="96167" fg:w="924"/><text x="32.7398%" y="895.50"></text></g><g><title>__GI___clone (912 samples, 0.31%)</title><rect x="32.4939%" y="869" width="0.3081%" height="15" fill="rgb(249,32,23)" fg:x="96179" fg:w="912"/><text x="32.7439%" y="879.50"></text></g><g><title>start_thread (912 samples, 0.31%)</title><rect x="32.4939%" y="853" width="0.3081%" height="15" fill="rgb(251,195,23)" fg:x="96179" fg:w="912"/><text x="32.7439%" y="863.50"></text></g><g><title>thread_native_entry (912 samples, 0.31%)</title><rect x="32.4939%" y="837" width="0.3081%" height="15" fill="rgb(236,174,8)" fg:x="96179" fg:w="912"/><text x="32.7439%" y="847.50"></text></g><g><title>Thread::call_run (912 samples, 0.31%)</title><rect x="32.4939%" y="821" width="0.3081%" height="15" fill="rgb(220,197,8)" fg:x="96179" fg:w="912"/><text x="32.7439%" y="831.50"></text></g><g><title>GangWorker::loop (912 samples, 0.31%)</title><rect x="32.4939%" y="805" width="0.3081%" height="15" fill="rgb(240,108,37)" fg:x="96179" fg:w="912"/><text x="32.7439%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (74 samples, 0.03%)</title><rect x="32.7770%" y="789" width="0.0250%" height="15" fill="rgb(232,176,24)" fg:x="97017" fg:w="74"/><text x="33.0270%" y="799.50"></text></g><g><title>PosixSemaphore::wait (74 samples, 0.03%)</title><rect x="32.7770%" y="773" width="0.0250%" height="15" fill="rgb(243,35,29)" fg:x="97017" fg:w="74"/><text x="33.0270%" y="783.50"></text></g><g><title>__new_sem_wait_slow (73 samples, 0.02%)</title><rect x="32.7773%" y="757" width="0.0247%" height="15" fill="rgb(210,37,18)" fg:x="97018" fg:w="73"/><text x="33.0273%" y="767.50"></text></g><g><title>do_futex_wait (73 samples, 0.02%)</title><rect x="32.7773%" y="741" width="0.0247%" height="15" fill="rgb(224,184,40)" fg:x="97018" fg:w="73"/><text x="33.0273%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (73 samples, 0.02%)</title><rect x="32.7773%" y="725" width="0.0247%" height="15" fill="rgb(236,39,29)" fg:x="97018" fg:w="73"/><text x="33.0273%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.02%)</title><rect x="32.7773%" y="709" width="0.0247%" height="15" fill="rgb(232,48,39)" fg:x="97018" fg:w="73"/><text x="33.0273%" y="719.50"></text></g><g><title>[perf-12570.map] (48 samples, 0.02%)</title><rect x="32.8037%" y="869" width="0.0162%" height="15" fill="rgb(236,34,42)" fg:x="97096" fg:w="48"/><text x="33.0537%" y="879.50"></text></g><g><title>Reference_Handl (51 samples, 0.02%)</title><rect x="32.8037%" y="885" width="0.0172%" height="15" fill="rgb(243,106,37)" fg:x="97096" fg:w="51"/><text x="33.0537%" y="895.50"></text></g><g><title>[perf-12570.map] (113 samples, 0.04%)</title><rect x="32.8260%" y="869" width="0.0382%" height="15" fill="rgb(218,96,6)" fg:x="97162" fg:w="113"/><text x="33.0760%" y="879.50"></text></g><g><title>Service_Thread (173 samples, 0.06%)</title><rect x="32.8240%" y="885" width="0.0584%" height="15" fill="rgb(235,130,12)" fg:x="97156" fg:w="173"/><text x="33.0740%" y="895.50"></text></g><g><title>__GI___clone (38 samples, 0.01%)</title><rect x="32.8696%" y="869" width="0.0128%" height="15" fill="rgb(231,95,0)" fg:x="97291" fg:w="38"/><text x="33.1196%" y="879.50"></text></g><g><title>start_thread (38 samples, 0.01%)</title><rect x="32.8696%" y="853" width="0.0128%" height="15" fill="rgb(228,12,23)" fg:x="97291" fg:w="38"/><text x="33.1196%" y="863.50"></text></g><g><title>thread_native_entry (38 samples, 0.01%)</title><rect x="32.8696%" y="837" width="0.0128%" height="15" fill="rgb(216,12,1)" fg:x="97291" fg:w="38"/><text x="33.1196%" y="847.50"></text></g><g><title>Thread::call_run (38 samples, 0.01%)</title><rect x="32.8696%" y="821" width="0.0128%" height="15" fill="rgb(219,59,3)" fg:x="97291" fg:w="38"/><text x="33.1196%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (38 samples, 0.01%)</title><rect x="32.8696%" y="805" width="0.0128%" height="15" fill="rgb(215,208,46)" fg:x="97291" fg:w="38"/><text x="33.1196%" y="815.50"></text></g><g><title>ServiceThread::service_thread_entry (38 samples, 0.01%)</title><rect x="32.8696%" y="789" width="0.0128%" height="15" fill="rgb(254,224,29)" fg:x="97291" fg:w="38"/><text x="33.1196%" y="799.50"></text></g><g><title>Monitor::wait (31 samples, 0.01%)</title><rect x="32.8719%" y="773" width="0.0105%" height="15" fill="rgb(232,14,29)" fg:x="97298" fg:w="31"/><text x="33.1219%" y="783.50"></text></g><g><title>Monitor::IWait (31 samples, 0.01%)</title><rect x="32.8719%" y="757" width="0.0105%" height="15" fill="rgb(208,45,52)" fg:x="97298" fg:w="31"/><text x="33.1219%" y="767.50"></text></g><g><title>os::PlatformEvent::park (31 samples, 0.01%)</title><rect x="32.8719%" y="741" width="0.0105%" height="15" fill="rgb(234,191,28)" fg:x="97298" fg:w="31"/><text x="33.1219%" y="751.50"></text></g><g><title>__pthread_cond_wait (30 samples, 0.01%)</title><rect x="32.8723%" y="725" width="0.0101%" height="15" fill="rgb(244,67,43)" fg:x="97299" fg:w="30"/><text x="33.1223%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="32.8723%" y="709" width="0.0101%" height="15" fill="rgb(236,189,24)" fg:x="97299" fg:w="30"/><text x="33.1223%" y="719.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.01%)</title><rect x="32.8723%" y="693" width="0.0101%" height="15" fill="rgb(239,214,33)" fg:x="97299" fg:w="30"/><text x="33.1223%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="32.8723%" y="677" width="0.0101%" height="15" fill="rgb(226,176,41)" fg:x="97299" fg:w="30"/><text x="33.1223%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (447 samples, 0.15%)</title><rect x="32.9361%" y="533" width="0.1510%" height="15" fill="rgb(248,47,8)" fg:x="97488" fg:w="447"/><text x="33.1861%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (443 samples, 0.15%)</title><rect x="32.9375%" y="517" width="0.1497%" height="15" fill="rgb(218,81,44)" fg:x="97492" fg:w="443"/><text x="33.1875%" y="527.50"></text></g><g><title>native_write_msr (443 samples, 0.15%)</title><rect x="32.9375%" y="501" width="0.1497%" height="15" fill="rgb(213,98,6)" fg:x="97492" fg:w="443"/><text x="33.1875%" y="511.50"></text></g><g><title>finish_task_switch (470 samples, 0.16%)</title><rect x="32.9334%" y="549" width="0.1588%" height="15" fill="rgb(222,85,22)" fg:x="97480" fg:w="470"/><text x="33.1834%" y="559.50"></text></g><g><title>futex_wait_queue_me (558 samples, 0.19%)</title><rect x="32.9149%" y="597" width="0.1885%" height="15" fill="rgb(239,46,39)" fg:x="97425" fg:w="558"/><text x="33.1649%" y="607.50"></text></g><g><title>schedule (541 samples, 0.18%)</title><rect x="32.9206%" y="581" width="0.1828%" height="15" fill="rgb(237,12,29)" fg:x="97442" fg:w="541"/><text x="33.1706%" y="591.50"></text></g><g><title>__schedule (537 samples, 0.18%)</title><rect x="32.9219%" y="565" width="0.1814%" height="15" fill="rgb(214,77,8)" fg:x="97446" fg:w="537"/><text x="33.1719%" y="575.50"></text></g><g><title>hrtimer_cancel (32 samples, 0.01%)</title><rect x="33.1054%" y="597" width="0.0108%" height="15" fill="rgb(217,168,37)" fg:x="97989" fg:w="32"/><text x="33.3554%" y="607.50"></text></g><g><title>do_futex (600 samples, 0.20%)</title><rect x="32.9142%" y="629" width="0.2027%" height="15" fill="rgb(221,217,23)" fg:x="97423" fg:w="600"/><text x="33.1642%" y="639.50"></text></g><g><title>futex_wait (599 samples, 0.20%)</title><rect x="32.9145%" y="613" width="0.2024%" height="15" fill="rgb(243,229,36)" fg:x="97424" fg:w="599"/><text x="33.1645%" y="623.50"></text></g><g><title>do_syscall_64 (609 samples, 0.21%)</title><rect x="32.9125%" y="661" width="0.2057%" height="15" fill="rgb(251,163,40)" fg:x="97418" fg:w="609"/><text x="33.1625%" y="671.50"></text></g><g><title>__x64_sys_futex (609 samples, 0.21%)</title><rect x="32.9125%" y="645" width="0.2057%" height="15" fill="rgb(237,222,12)" fg:x="97418" fg:w="609"/><text x="33.1625%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (622 samples, 0.21%)</title><rect x="32.9115%" y="677" width="0.2101%" height="15" fill="rgb(248,132,6)" fg:x="97415" fg:w="622"/><text x="33.1615%" y="687.50"></text></g><g><title>__pthread_cond_timedwait (647 samples, 0.22%)</title><rect x="32.9037%" y="725" width="0.2186%" height="15" fill="rgb(227,167,50)" fg:x="97392" fg:w="647"/><text x="33.1537%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (647 samples, 0.22%)</title><rect x="32.9037%" y="709" width="0.2186%" height="15" fill="rgb(242,84,37)" fg:x="97392" fg:w="647"/><text x="33.1537%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (643 samples, 0.22%)</title><rect x="32.9051%" y="693" width="0.2172%" height="15" fill="rgb(212,4,50)" fg:x="97396" fg:w="643"/><text x="33.1551%" y="703.50"></text></g><g><title>Monitor::IWait (690 samples, 0.23%)</title><rect x="32.8983%" y="757" width="0.2331%" height="15" fill="rgb(230,228,32)" fg:x="97376" fg:w="690"/><text x="33.1483%" y="767.50"></text></g><g><title>os::PlatformEvent::park (679 samples, 0.23%)</title><rect x="32.9020%" y="741" width="0.2294%" height="15" fill="rgb(248,217,23)" fg:x="97387" fg:w="679"/><text x="33.1520%" y="751.50"></text></g><g><title>Monitor::wait (691 samples, 0.23%)</title><rect x="32.8983%" y="773" width="0.2335%" height="15" fill="rgb(238,197,32)" fg:x="97376" fg:w="691"/><text x="33.1483%" y="783.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (115 samples, 0.04%)</title><rect x="33.1470%" y="725" width="0.0389%" height="15" fill="rgb(236,106,1)" fg:x="98112" fg:w="115"/><text x="33.3970%" y="735.50"></text></g><g><title>NMethodSweeper::process_compiled_method (162 samples, 0.05%)</title><rect x="33.1466%" y="741" width="0.0547%" height="15" fill="rgb(219,228,13)" fg:x="98111" fg:w="162"/><text x="33.3966%" y="751.50"></text></g><g><title>NMethodSweeper::possibly_sweep (210 samples, 0.07%)</title><rect x="33.1318%" y="773" width="0.0709%" height="15" fill="rgb(238,30,35)" fg:x="98067" fg:w="210"/><text x="33.3818%" y="783.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (192 samples, 0.06%)</title><rect x="33.1378%" y="757" width="0.0649%" height="15" fill="rgb(236,70,23)" fg:x="98085" fg:w="192"/><text x="33.3878%" y="767.50"></text></g><g><title>__GI___clone (922 samples, 0.31%)</title><rect x="32.8932%" y="869" width="0.3115%" height="15" fill="rgb(249,104,48)" fg:x="97361" fg:w="922"/><text x="33.1432%" y="879.50"></text></g><g><title>start_thread (922 samples, 0.31%)</title><rect x="32.8932%" y="853" width="0.3115%" height="15" fill="rgb(254,117,50)" fg:x="97361" fg:w="922"/><text x="33.1432%" y="863.50"></text></g><g><title>thread_native_entry (922 samples, 0.31%)</title><rect x="32.8932%" y="837" width="0.3115%" height="15" fill="rgb(223,152,4)" fg:x="97361" fg:w="922"/><text x="33.1432%" y="847.50"></text></g><g><title>Thread::call_run (922 samples, 0.31%)</title><rect x="32.8932%" y="821" width="0.3115%" height="15" fill="rgb(245,6,2)" fg:x="97361" fg:w="922"/><text x="33.1432%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (922 samples, 0.31%)</title><rect x="32.8932%" y="805" width="0.3115%" height="15" fill="rgb(249,150,24)" fg:x="97361" fg:w="922"/><text x="33.1432%" y="815.50"></text></g><g><title>NMethodSweeper::sweeper_loop (921 samples, 0.31%)</title><rect x="32.8936%" y="789" width="0.3112%" height="15" fill="rgb(228,185,42)" fg:x="97362" fg:w="921"/><text x="33.1436%" y="799.50"></text></g><g><title>Sweeper_thread (956 samples, 0.32%)</title><rect x="32.8848%" y="885" width="0.3230%" height="15" fill="rgb(226,39,33)" fg:x="97336" fg:w="956"/><text x="33.1348%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.02%)</title><rect x="33.2368%" y="613" width="0.0159%" height="15" fill="rgb(221,166,19)" fg:x="98378" fg:w="47"/><text x="33.4868%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.01%)</title><rect x="33.2378%" y="597" width="0.0149%" height="15" fill="rgb(209,109,2)" fg:x="98381" fg:w="44"/><text x="33.4878%" y="607.50"></text></g><g><title>native_write_msr (44 samples, 0.01%)</title><rect x="33.2378%" y="581" width="0.0149%" height="15" fill="rgb(252,216,26)" fg:x="98381" fg:w="44"/><text x="33.4878%" y="591.50"></text></g><g><title>finish_task_switch (50 samples, 0.02%)</title><rect x="33.2365%" y="629" width="0.0169%" height="15" fill="rgb(227,173,36)" fg:x="98377" fg:w="50"/><text x="33.4865%" y="639.50"></text></g><g><title>futex_wait_queue_me (52 samples, 0.02%)</title><rect x="33.2365%" y="677" width="0.0176%" height="15" fill="rgb(209,90,7)" fg:x="98377" fg:w="52"/><text x="33.4865%" y="687.50"></text></g><g><title>schedule (52 samples, 0.02%)</title><rect x="33.2365%" y="661" width="0.0176%" height="15" fill="rgb(250,194,11)" fg:x="98377" fg:w="52"/><text x="33.4865%" y="671.50"></text></g><g><title>__schedule (52 samples, 0.02%)</title><rect x="33.2365%" y="645" width="0.0176%" height="15" fill="rgb(220,72,50)" fg:x="98377" fg:w="52"/><text x="33.4865%" y="655.50"></text></g><g><title>do_syscall_64 (54 samples, 0.02%)</title><rect x="33.2361%" y="741" width="0.0182%" height="15" fill="rgb(222,106,48)" fg:x="98376" fg:w="54"/><text x="33.4861%" y="751.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.02%)</title><rect x="33.2361%" y="725" width="0.0182%" height="15" fill="rgb(216,220,45)" fg:x="98376" fg:w="54"/><text x="33.4861%" y="735.50"></text></g><g><title>do_futex (54 samples, 0.02%)</title><rect x="33.2361%" y="709" width="0.0182%" height="15" fill="rgb(234,112,18)" fg:x="98376" fg:w="54"/><text x="33.4861%" y="719.50"></text></g><g><title>futex_wait (53 samples, 0.02%)</title><rect x="33.2365%" y="693" width="0.0179%" height="15" fill="rgb(206,179,9)" fg:x="98377" fg:w="53"/><text x="33.4865%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (57 samples, 0.02%)</title><rect x="33.2355%" y="805" width="0.0193%" height="15" fill="rgb(215,115,40)" fg:x="98374" fg:w="57"/><text x="33.4855%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.02%)</title><rect x="33.2355%" y="789" width="0.0193%" height="15" fill="rgb(222,69,34)" fg:x="98374" fg:w="57"/><text x="33.4855%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (55 samples, 0.02%)</title><rect x="33.2361%" y="773" width="0.0186%" height="15" fill="rgb(209,161,10)" fg:x="98376" fg:w="55"/><text x="33.4861%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="33.2361%" y="757" width="0.0186%" height="15" fill="rgb(217,6,38)" fg:x="98376" fg:w="55"/><text x="33.4861%" y="767.50"></text></g><g><title>JVM_Sleep (61 samples, 0.02%)</title><rect x="33.2348%" y="853" width="0.0206%" height="15" fill="rgb(229,229,48)" fg:x="98372" fg:w="61"/><text x="33.4848%" y="863.50"></text></g><g><title>os::sleep (60 samples, 0.02%)</title><rect x="33.2351%" y="837" width="0.0203%" height="15" fill="rgb(225,21,28)" fg:x="98373" fg:w="60"/><text x="33.4851%" y="847.50"></text></g><g><title>os::PlatformEvent::park (59 samples, 0.02%)</title><rect x="33.2355%" y="821" width="0.0199%" height="15" fill="rgb(206,33,13)" fg:x="98374" fg:w="59"/><text x="33.4855%" y="831.50"></text></g><g><title>[perf-12570.map] (175 samples, 0.06%)</title><rect x="33.2098%" y="869" width="0.0591%" height="15" fill="rgb(242,178,17)" fg:x="98298" fg:w="175"/><text x="33.4598%" y="879.50"></text></g><g><title>Thread-0 (186 samples, 0.06%)</title><rect x="33.2078%" y="885" width="0.0628%" height="15" fill="rgb(220,162,5)" fg:x="98292" fg:w="186"/><text x="33.4578%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.04%)</title><rect x="33.2824%" y="533" width="0.0372%" height="15" fill="rgb(210,33,43)" fg:x="98513" fg:w="110"/><text x="33.5324%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.04%)</title><rect x="33.2831%" y="517" width="0.0365%" height="15" fill="rgb(216,116,54)" fg:x="98515" fg:w="108"/><text x="33.5331%" y="527.50"></text></g><g><title>native_write_msr (108 samples, 0.04%)</title><rect x="33.2831%" y="501" width="0.0365%" height="15" fill="rgb(249,92,24)" fg:x="98515" fg:w="108"/><text x="33.5331%" y="511.50"></text></g><g><title>finish_task_switch (116 samples, 0.04%)</title><rect x="33.2814%" y="549" width="0.0392%" height="15" fill="rgb(231,189,14)" fg:x="98510" fg:w="116"/><text x="33.5314%" y="559.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.04%)</title><rect x="33.2791%" y="597" width="0.0422%" height="15" fill="rgb(230,8,41)" fg:x="98503" fg:w="125"/><text x="33.5291%" y="607.50"></text></g><g><title>schedule (121 samples, 0.04%)</title><rect x="33.2804%" y="581" width="0.0409%" height="15" fill="rgb(249,7,27)" fg:x="98507" fg:w="121"/><text x="33.5304%" y="591.50"></text></g><g><title>__schedule (120 samples, 0.04%)</title><rect x="33.2807%" y="565" width="0.0405%" height="15" fill="rgb(232,86,5)" fg:x="98508" fg:w="120"/><text x="33.5307%" y="575.50"></text></g><g><title>do_futex (131 samples, 0.04%)</title><rect x="33.2774%" y="629" width="0.0443%" height="15" fill="rgb(224,175,18)" fg:x="98498" fg:w="131"/><text x="33.5274%" y="639.50"></text></g><g><title>futex_wait (131 samples, 0.04%)</title><rect x="33.2774%" y="613" width="0.0443%" height="15" fill="rgb(220,129,12)" fg:x="98498" fg:w="131"/><text x="33.5274%" y="623.50"></text></g><g><title>do_syscall_64 (132 samples, 0.04%)</title><rect x="33.2774%" y="661" width="0.0446%" height="15" fill="rgb(210,19,36)" fg:x="98498" fg:w="132"/><text x="33.5274%" y="671.50"></text></g><g><title>__x64_sys_futex (132 samples, 0.04%)</title><rect x="33.2774%" y="645" width="0.0446%" height="15" fill="rgb(219,96,14)" fg:x="98498" fg:w="132"/><text x="33.5274%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (137 samples, 0.05%)</title><rect x="33.2760%" y="725" width="0.0463%" height="15" fill="rgb(249,106,1)" fg:x="98494" fg:w="137"/><text x="33.5260%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (137 samples, 0.05%)</title><rect x="33.2760%" y="709" width="0.0463%" height="15" fill="rgb(249,155,20)" fg:x="98494" fg:w="137"/><text x="33.5260%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (136 samples, 0.05%)</title><rect x="33.2763%" y="693" width="0.0459%" height="15" fill="rgb(244,168,9)" fg:x="98495" fg:w="136"/><text x="33.5263%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.04%)</title><rect x="33.2774%" y="677" width="0.0449%" height="15" fill="rgb(216,23,50)" fg:x="98498" fg:w="133"/><text x="33.5274%" y="687.50"></text></g><g><title>VM_Periodic_Tas (157 samples, 0.05%)</title><rect x="33.2706%" y="885" width="0.0530%" height="15" fill="rgb(224,219,20)" fg:x="98478" fg:w="157"/><text x="33.5206%" y="895.50"></text></g><g><title>__GI___clone (153 samples, 0.05%)</title><rect x="33.2720%" y="869" width="0.0517%" height="15" fill="rgb(222,156,15)" fg:x="98482" fg:w="153"/><text x="33.5220%" y="879.50"></text></g><g><title>start_thread (153 samples, 0.05%)</title><rect x="33.2720%" y="853" width="0.0517%" height="15" fill="rgb(231,97,17)" fg:x="98482" fg:w="153"/><text x="33.5220%" y="863.50"></text></g><g><title>thread_native_entry (153 samples, 0.05%)</title><rect x="33.2720%" y="837" width="0.0517%" height="15" fill="rgb(218,70,48)" fg:x="98482" fg:w="153"/><text x="33.5220%" y="847.50"></text></g><g><title>Thread::call_run (153 samples, 0.05%)</title><rect x="33.2720%" y="821" width="0.0517%" height="15" fill="rgb(212,196,52)" fg:x="98482" fg:w="153"/><text x="33.5220%" y="831.50"></text></g><g><title>WatcherThread::run (153 samples, 0.05%)</title><rect x="33.2720%" y="805" width="0.0517%" height="15" fill="rgb(243,203,18)" fg:x="98482" fg:w="153"/><text x="33.5220%" y="815.50"></text></g><g><title>WatcherThread::sleep (144 samples, 0.05%)</title><rect x="33.2750%" y="789" width="0.0487%" height="15" fill="rgb(252,125,41)" fg:x="98491" fg:w="144"/><text x="33.5250%" y="799.50"></text></g><g><title>Monitor::wait (143 samples, 0.05%)</title><rect x="33.2753%" y="773" width="0.0483%" height="15" fill="rgb(223,180,33)" fg:x="98492" fg:w="143"/><text x="33.5253%" y="783.50"></text></g><g><title>Monitor::IWait (143 samples, 0.05%)</title><rect x="33.2753%" y="757" width="0.0483%" height="15" fill="rgb(254,159,46)" fg:x="98492" fg:w="143"/><text x="33.5253%" y="767.50"></text></g><g><title>os::PlatformEvent::park (141 samples, 0.05%)</title><rect x="33.2760%" y="741" width="0.0476%" height="15" fill="rgb(254,38,10)" fg:x="98494" fg:w="141"/><text x="33.5260%" y="751.50"></text></g><g><title>[unknown] (81 samples, 0.03%)</title><rect x="33.3311%" y="869" width="0.0274%" height="15" fill="rgb(208,217,32)" fg:x="98657" fg:w="81"/><text x="33.5811%" y="879.50"></text></g><g><title>vframe::sender (77 samples, 0.03%)</title><rect x="33.3324%" y="853" width="0.0260%" height="15" fill="rgb(221,120,13)" fg:x="98661" fg:w="77"/><text x="33.5824%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.03%)</title><rect x="33.3723%" y="533" width="0.0270%" height="15" fill="rgb(246,54,52)" fg:x="98779" fg:w="80"/><text x="33.6223%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.03%)</title><rect x="33.3723%" y="517" width="0.0270%" height="15" fill="rgb(242,34,25)" fg:x="98779" fg:w="80"/><text x="33.6223%" y="527.50"></text></g><g><title>native_write_msr (80 samples, 0.03%)</title><rect x="33.3723%" y="501" width="0.0270%" height="15" fill="rgb(247,209,9)" fg:x="98779" fg:w="80"/><text x="33.6223%" y="511.50"></text></g><g><title>finish_task_switch (84 samples, 0.03%)</title><rect x="33.3720%" y="549" width="0.0284%" height="15" fill="rgb(228,71,26)" fg:x="98778" fg:w="84"/><text x="33.6220%" y="559.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.03%)</title><rect x="33.3699%" y="597" width="0.0307%" height="15" fill="rgb(222,145,49)" fg:x="98772" fg:w="91"/><text x="33.6199%" y="607.50"></text></g><g><title>schedule (89 samples, 0.03%)</title><rect x="33.3706%" y="581" width="0.0301%" height="15" fill="rgb(218,121,17)" fg:x="98774" fg:w="89"/><text x="33.6206%" y="591.50"></text></g><g><title>__schedule (87 samples, 0.03%)</title><rect x="33.3713%" y="565" width="0.0294%" height="15" fill="rgb(244,50,7)" fg:x="98776" fg:w="87"/><text x="33.6213%" y="575.50"></text></g><g><title>do_syscall_64 (98 samples, 0.03%)</title><rect x="33.3693%" y="661" width="0.0331%" height="15" fill="rgb(246,229,37)" fg:x="98770" fg:w="98"/><text x="33.6193%" y="671.50"></text></g><g><title>__x64_sys_futex (98 samples, 0.03%)</title><rect x="33.3693%" y="645" width="0.0331%" height="15" fill="rgb(225,18,5)" fg:x="98770" fg:w="98"/><text x="33.6193%" y="655.50"></text></g><g><title>do_futex (98 samples, 0.03%)</title><rect x="33.3693%" y="629" width="0.0331%" height="15" fill="rgb(213,204,8)" fg:x="98770" fg:w="98"/><text x="33.6193%" y="639.50"></text></g><g><title>futex_wait (98 samples, 0.03%)</title><rect x="33.3693%" y="613" width="0.0331%" height="15" fill="rgb(238,103,6)" fg:x="98770" fg:w="98"/><text x="33.6193%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (101 samples, 0.03%)</title><rect x="33.3686%" y="725" width="0.0341%" height="15" fill="rgb(222,25,35)" fg:x="98768" fg:w="101"/><text x="33.6186%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (101 samples, 0.03%)</title><rect x="33.3686%" y="709" width="0.0341%" height="15" fill="rgb(213,203,35)" fg:x="98768" fg:w="101"/><text x="33.6186%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (100 samples, 0.03%)</title><rect x="33.3689%" y="693" width="0.0338%" height="15" fill="rgb(221,79,53)" fg:x="98769" fg:w="100"/><text x="33.6189%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (99 samples, 0.03%)</title><rect x="33.3693%" y="677" width="0.0334%" height="15" fill="rgb(243,200,35)" fg:x="98770" fg:w="99"/><text x="33.6193%" y="687.50"></text></g><g><title>Monitor::wait (104 samples, 0.04%)</title><rect x="33.3686%" y="773" width="0.0351%" height="15" fill="rgb(248,60,25)" fg:x="98768" fg:w="104"/><text x="33.6186%" y="783.50"></text></g><g><title>Monitor::IWait (104 samples, 0.04%)</title><rect x="33.3686%" y="757" width="0.0351%" height="15" fill="rgb(227,53,46)" fg:x="98768" fg:w="104"/><text x="33.6186%" y="767.50"></text></g><g><title>os::PlatformEvent::park (104 samples, 0.04%)</title><rect x="33.3686%" y="741" width="0.0351%" height="15" fill="rgb(216,120,32)" fg:x="98768" fg:w="104"/><text x="33.6186%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.01%)</title><rect x="33.4655%" y="517" width="0.0142%" height="15" fill="rgb(220,134,1)" fg:x="99055" fg:w="42"/><text x="33.7155%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.01%)</title><rect x="33.4659%" y="501" width="0.0139%" height="15" fill="rgb(237,168,5)" fg:x="99056" fg:w="41"/><text x="33.7159%" y="511.50"></text></g><g><title>native_write_msr (40 samples, 0.01%)</title><rect x="33.4662%" y="485" width="0.0135%" height="15" fill="rgb(231,100,33)" fg:x="99057" fg:w="40"/><text x="33.7162%" y="495.50"></text></g><g><title>finish_task_switch (44 samples, 0.01%)</title><rect x="33.4655%" y="533" width="0.0149%" height="15" fill="rgb(236,177,47)" fg:x="99055" fg:w="44"/><text x="33.7155%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="33.4635%" y="661" width="0.0176%" height="15" fill="rgb(235,7,49)" fg:x="99049" fg:w="52"/><text x="33.7135%" y="671.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="33.4635%" y="645" width="0.0176%" height="15" fill="rgb(232,119,22)" fg:x="99049" fg:w="52"/><text x="33.7135%" y="655.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.02%)</title><rect x="33.4635%" y="629" width="0.0176%" height="15" fill="rgb(254,73,53)" fg:x="99049" fg:w="52"/><text x="33.7135%" y="639.50"></text></g><g><title>do_futex (51 samples, 0.02%)</title><rect x="33.4639%" y="613" width="0.0172%" height="15" fill="rgb(251,35,20)" fg:x="99050" fg:w="51"/><text x="33.7139%" y="623.50"></text></g><g><title>futex_wait (51 samples, 0.02%)</title><rect x="33.4639%" y="597" width="0.0172%" height="15" fill="rgb(241,119,20)" fg:x="99050" fg:w="51"/><text x="33.7139%" y="607.50"></text></g><g><title>futex_wait_queue_me (49 samples, 0.02%)</title><rect x="33.4645%" y="581" width="0.0166%" height="15" fill="rgb(207,102,14)" fg:x="99052" fg:w="49"/><text x="33.7145%" y="591.50"></text></g><g><title>schedule (49 samples, 0.02%)</title><rect x="33.4645%" y="565" width="0.0166%" height="15" fill="rgb(248,201,50)" fg:x="99052" fg:w="49"/><text x="33.7145%" y="575.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="33.4649%" y="549" width="0.0162%" height="15" fill="rgb(222,185,44)" fg:x="99053" fg:w="48"/><text x="33.7149%" y="559.50"></text></g><g><title>Monitor::wait (65 samples, 0.02%)</title><rect x="33.4595%" y="757" width="0.0220%" height="15" fill="rgb(218,107,18)" fg:x="99037" fg:w="65"/><text x="33.7095%" y="767.50"></text></g><g><title>Monitor::IWait (64 samples, 0.02%)</title><rect x="33.4598%" y="741" width="0.0216%" height="15" fill="rgb(237,177,39)" fg:x="99038" fg:w="64"/><text x="33.7098%" y="751.50"></text></g><g><title>os::PlatformEvent::park (55 samples, 0.02%)</title><rect x="33.4628%" y="725" width="0.0186%" height="15" fill="rgb(246,69,6)" fg:x="99047" fg:w="55"/><text x="33.7128%" y="735.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.02%)</title><rect x="33.4628%" y="709" width="0.0186%" height="15" fill="rgb(234,208,37)" fg:x="99047" fg:w="55"/><text x="33.7128%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.02%)</title><rect x="33.4628%" y="693" width="0.0186%" height="15" fill="rgb(225,4,6)" fg:x="99047" fg:w="55"/><text x="33.7128%" y="703.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.02%)</title><rect x="33.4628%" y="677" width="0.0186%" height="15" fill="rgb(233,45,0)" fg:x="99047" fg:w="55"/><text x="33.7128%" y="687.50"></text></g><g><title>ttwu_do_activate (34 samples, 0.01%)</title><rect x="33.4929%" y="549" width="0.0115%" height="15" fill="rgb(226,136,5)" fg:x="99136" fg:w="34"/><text x="33.7429%" y="559.50"></text></g><g><title>PosixSemaphore::signal (68 samples, 0.02%)</title><rect x="33.4831%" y="709" width="0.0230%" height="15" fill="rgb(211,91,47)" fg:x="99107" fg:w="68"/><text x="33.7331%" y="719.50"></text></g><g><title>__new_sem_post (68 samples, 0.02%)</title><rect x="33.4831%" y="693" width="0.0230%" height="15" fill="rgb(242,88,51)" fg:x="99107" fg:w="68"/><text x="33.7331%" y="703.50"></text></g><g><title>futex_wake (67 samples, 0.02%)</title><rect x="33.4835%" y="677" width="0.0226%" height="15" fill="rgb(230,91,28)" fg:x="99108" fg:w="67"/><text x="33.7335%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.02%)</title><rect x="33.4835%" y="661" width="0.0226%" height="15" fill="rgb(254,186,29)" fg:x="99108" fg:w="67"/><text x="33.7335%" y="671.50"></text></g><g><title>do_syscall_64 (67 samples, 0.02%)</title><rect x="33.4835%" y="645" width="0.0226%" height="15" fill="rgb(238,6,4)" fg:x="99108" fg:w="67"/><text x="33.7335%" y="655.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.02%)</title><rect x="33.4835%" y="629" width="0.0226%" height="15" fill="rgb(221,151,16)" fg:x="99108" fg:w="67"/><text x="33.7335%" y="639.50"></text></g><g><title>do_futex (66 samples, 0.02%)</title><rect x="33.4838%" y="613" width="0.0223%" height="15" fill="rgb(251,143,52)" fg:x="99109" fg:w="66"/><text x="33.7338%" y="623.50"></text></g><g><title>futex_wake (66 samples, 0.02%)</title><rect x="33.4838%" y="597" width="0.0223%" height="15" fill="rgb(206,90,15)" fg:x="99109" fg:w="66"/><text x="33.7338%" y="607.50"></text></g><g><title>wake_up_q (60 samples, 0.02%)</title><rect x="33.4858%" y="581" width="0.0203%" height="15" fill="rgb(218,35,8)" fg:x="99115" fg:w="60"/><text x="33.7358%" y="591.50"></text></g><g><title>try_to_wake_up (59 samples, 0.02%)</title><rect x="33.4862%" y="565" width="0.0199%" height="15" fill="rgb(239,215,6)" fg:x="99116" fg:w="59"/><text x="33.7362%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.03%)</title><rect x="33.5095%" y="501" width="0.0274%" height="15" fill="rgb(245,116,39)" fg:x="99185" fg:w="81"/><text x="33.7595%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.03%)</title><rect x="33.5095%" y="485" width="0.0274%" height="15" fill="rgb(242,65,28)" fg:x="99185" fg:w="81"/><text x="33.7595%" y="495.50"></text></g><g><title>native_write_msr (80 samples, 0.03%)</title><rect x="33.5098%" y="469" width="0.0270%" height="15" fill="rgb(252,132,53)" fg:x="99186" fg:w="80"/><text x="33.7598%" y="479.50"></text></g><g><title>finish_task_switch (84 samples, 0.03%)</title><rect x="33.5088%" y="517" width="0.0284%" height="15" fill="rgb(224,159,50)" fg:x="99183" fg:w="84"/><text x="33.7588%" y="527.50"></text></g><g><title>do_syscall_64 (93 samples, 0.03%)</title><rect x="33.5068%" y="629" width="0.0314%" height="15" fill="rgb(224,93,4)" fg:x="99177" fg:w="93"/><text x="33.7568%" y="639.50"></text></g><g><title>__x64_sys_futex (93 samples, 0.03%)</title><rect x="33.5068%" y="613" width="0.0314%" height="15" fill="rgb(208,81,34)" fg:x="99177" fg:w="93"/><text x="33.7568%" y="623.50"></text></g><g><title>do_futex (93 samples, 0.03%)</title><rect x="33.5068%" y="597" width="0.0314%" height="15" fill="rgb(233,92,54)" fg:x="99177" fg:w="93"/><text x="33.7568%" y="607.50"></text></g><g><title>futex_wait (93 samples, 0.03%)</title><rect x="33.5068%" y="581" width="0.0314%" height="15" fill="rgb(237,21,14)" fg:x="99177" fg:w="93"/><text x="33.7568%" y="591.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.03%)</title><rect x="33.5071%" y="565" width="0.0311%" height="15" fill="rgb(249,128,51)" fg:x="99178" fg:w="92"/><text x="33.7571%" y="575.50"></text></g><g><title>schedule (91 samples, 0.03%)</title><rect x="33.5074%" y="549" width="0.0307%" height="15" fill="rgb(223,129,24)" fg:x="99179" fg:w="91"/><text x="33.7574%" y="559.50"></text></g><g><title>__schedule (91 samples, 0.03%)</title><rect x="33.5074%" y="533" width="0.0307%" height="15" fill="rgb(231,168,25)" fg:x="99179" fg:w="91"/><text x="33.7574%" y="543.50"></text></g><g><title>WorkGang::run_task (167 samples, 0.06%)</title><rect x="33.4831%" y="741" width="0.0564%" height="15" fill="rgb(224,39,20)" fg:x="99107" fg:w="167"/><text x="33.7331%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (167 samples, 0.06%)</title><rect x="33.4831%" y="725" width="0.0564%" height="15" fill="rgb(225,152,53)" fg:x="99107" fg:w="167"/><text x="33.7331%" y="735.50"></text></g><g><title>PosixSemaphore::wait (99 samples, 0.03%)</title><rect x="33.5061%" y="709" width="0.0334%" height="15" fill="rgb(252,17,24)" fg:x="99175" fg:w="99"/><text x="33.7561%" y="719.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.03%)</title><rect x="33.5068%" y="693" width="0.0328%" height="15" fill="rgb(250,114,30)" fg:x="99177" fg:w="97"/><text x="33.7568%" y="703.50"></text></g><g><title>do_futex_wait (97 samples, 0.03%)</title><rect x="33.5068%" y="677" width="0.0328%" height="15" fill="rgb(229,5,4)" fg:x="99177" fg:w="97"/><text x="33.7568%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.03%)</title><rect x="33.5068%" y="661" width="0.0328%" height="15" fill="rgb(225,176,49)" fg:x="99177" fg:w="97"/><text x="33.7568%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.03%)</title><rect x="33.5068%" y="645" width="0.0328%" height="15" fill="rgb(224,221,49)" fg:x="99177" fg:w="97"/><text x="33.7568%" y="655.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (171 samples, 0.06%)</title><rect x="33.4821%" y="757" width="0.0578%" height="15" fill="rgb(253,169,27)" fg:x="99104" fg:w="171"/><text x="33.7321%" y="767.50"></text></g><g><title>SafepointSynchronize::begin (447 samples, 0.15%)</title><rect x="33.4037%" y="773" width="0.1510%" height="15" fill="rgb(211,206,16)" fg:x="98872" fg:w="447"/><text x="33.6537%" y="783.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (33 samples, 0.01%)</title><rect x="33.5703%" y="725" width="0.0111%" height="15" fill="rgb(244,87,35)" fg:x="99365" fg:w="33"/><text x="33.8203%" y="735.50"></text></g><g><title>CodeBlobIterator<CompiledMethod, CompiledMethodFilter>::next_alive (33 samples, 0.01%)</title><rect x="33.5703%" y="709" width="0.0111%" height="15" fill="rgb(246,28,10)" fg:x="99365" fg:w="33"/><text x="33.8203%" y="719.50"></text></g><g><title>VM_Deoptimize::doit (38 samples, 0.01%)</title><rect x="33.5703%" y="741" width="0.0128%" height="15" fill="rgb(229,12,44)" fg:x="99365" fg:w="38"/><text x="33.8203%" y="751.50"></text></g><g><title>VM_G1CollectForAllocation::doit (46 samples, 0.02%)</title><rect x="33.5841%" y="741" width="0.0155%" height="15" fill="rgb(210,145,37)" fg:x="99406" fg:w="46"/><text x="33.8341%" y="751.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (45 samples, 0.02%)</title><rect x="33.5845%" y="725" width="0.0152%" height="15" fill="rgb(227,112,52)" fg:x="99407" fg:w="45"/><text x="33.8345%" y="735.50"></text></g><g><title>VM_Operation::evaluate (120 samples, 0.04%)</title><rect x="33.5622%" y="757" width="0.0405%" height="15" fill="rgb(238,155,34)" fg:x="99341" fg:w="120"/><text x="33.8122%" y="767.50"></text></g><g><title>VMThread::evaluate_operation (122 samples, 0.04%)</title><rect x="33.5622%" y="773" width="0.0412%" height="15" fill="rgb(239,226,36)" fg:x="99341" fg:w="122"/><text x="33.8122%" y="783.50"></text></g><g><title>Thread::call_run (720 samples, 0.24%)</title><rect x="33.3608%" y="821" width="0.2433%" height="15" fill="rgb(230,16,23)" fg:x="98745" fg:w="720"/><text x="33.6108%" y="831.50"></text></g><g><title>VMThread::run (720 samples, 0.24%)</title><rect x="33.3608%" y="805" width="0.2433%" height="15" fill="rgb(236,171,36)" fg:x="98745" fg:w="720"/><text x="33.6108%" y="815.50"></text></g><g><title>VMThread::loop (720 samples, 0.24%)</title><rect x="33.3608%" y="789" width="0.2433%" height="15" fill="rgb(221,22,14)" fg:x="98745" fg:w="720"/><text x="33.6108%" y="799.50"></text></g><g><title>__GI___clone (731 samples, 0.25%)</title><rect x="33.3584%" y="869" width="0.2470%" height="15" fill="rgb(242,43,11)" fg:x="98738" fg:w="731"/><text x="33.6084%" y="879.50"></text></g><g><title>start_thread (724 samples, 0.24%)</title><rect x="33.3608%" y="853" width="0.2446%" height="15" fill="rgb(232,69,23)" fg:x="98745" fg:w="724"/><text x="33.6108%" y="863.50"></text></g><g><title>thread_native_entry (724 samples, 0.24%)</title><rect x="33.3608%" y="837" width="0.2446%" height="15" fill="rgb(216,180,54)" fg:x="98745" fg:w="724"/><text x="33.6108%" y="847.50"></text></g><g><title>VM_Thread (838 samples, 0.28%)</title><rect x="33.3236%" y="885" width="0.2831%" height="15" fill="rgb(216,5,24)" fg:x="98635" fg:w="838"/><text x="33.5736%" y="895.50"></text></g><g><title>schedule_hrtimeout_range_clock (46 samples, 0.02%)</title><rect x="33.7149%" y="789" width="0.0155%" height="15" fill="rgb(225,89,9)" fg:x="99793" fg:w="46"/><text x="33.9649%" y="799.50"></text></g><g><title>schedule (41 samples, 0.01%)</title><rect x="33.7166%" y="773" width="0.0139%" height="15" fill="rgb(243,75,33)" fg:x="99798" fg:w="41"/><text x="33.9666%" y="783.50"></text></g><g><title>__schedule (41 samples, 0.01%)</title><rect x="33.7166%" y="757" width="0.0139%" height="15" fill="rgb(247,141,45)" fg:x="99798" fg:w="41"/><text x="33.9666%" y="767.50"></text></g><g><title>do_epoll_wait (57 samples, 0.02%)</title><rect x="33.7118%" y="805" width="0.0193%" height="15" fill="rgb(232,177,36)" fg:x="99784" fg:w="57"/><text x="33.9618%" y="815.50"></text></g><g><title>__x64_sys_epoll_pwait (58 samples, 0.02%)</title><rect x="33.7118%" y="821" width="0.0196%" height="15" fill="rgb(219,125,36)" fg:x="99784" fg:w="58"/><text x="33.9618%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.03%)</title><rect x="33.7419%" y="709" width="0.0267%" height="15" fill="rgb(227,94,9)" fg:x="99873" fg:w="79"/><text x="33.9919%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.03%)</title><rect x="33.7429%" y="693" width="0.0257%" height="15" fill="rgb(240,34,52)" fg:x="99876" fg:w="76"/><text x="33.9929%" y="703.50"></text></g><g><title>native_write_msr (76 samples, 0.03%)</title><rect x="33.7429%" y="677" width="0.0257%" height="15" fill="rgb(216,45,12)" fg:x="99876" fg:w="76"/><text x="33.9929%" y="687.50"></text></g><g><title>finish_task_switch (82 samples, 0.03%)</title><rect x="33.7416%" y="725" width="0.0277%" height="15" fill="rgb(246,21,19)" fg:x="99872" fg:w="82"/><text x="33.9916%" y="735.50"></text></g><g><title>futex_wait_queue_me (126 samples, 0.04%)</title><rect x="33.7345%" y="773" width="0.0426%" height="15" fill="rgb(213,98,42)" fg:x="99851" fg:w="126"/><text x="33.9845%" y="783.50"></text></g><g><title>schedule (124 samples, 0.04%)</title><rect x="33.7351%" y="757" width="0.0419%" height="15" fill="rgb(250,136,47)" fg:x="99853" fg:w="124"/><text x="33.9851%" y="767.50"></text></g><g><title>__schedule (121 samples, 0.04%)</title><rect x="33.7362%" y="741" width="0.0409%" height="15" fill="rgb(251,124,27)" fg:x="99856" fg:w="121"/><text x="33.9862%" y="751.50"></text></g><g><title>futex_wait (129 samples, 0.04%)</title><rect x="33.7338%" y="789" width="0.0436%" height="15" fill="rgb(229,180,14)" fg:x="99849" fg:w="129"/><text x="33.9838%" y="799.50"></text></g><g><title>__x64_sys_futex (146 samples, 0.05%)</title><rect x="33.7328%" y="821" width="0.0493%" height="15" fill="rgb(245,216,25)" fg:x="99846" fg:w="146"/><text x="33.9828%" y="831.50"></text></g><g><title>do_futex (145 samples, 0.05%)</title><rect x="33.7331%" y="805" width="0.0490%" height="15" fill="rgb(251,43,5)" fg:x="99847" fg:w="145"/><text x="33.9831%" y="815.50"></text></g><g><title>do_nanosleep (49 samples, 0.02%)</title><rect x="33.7909%" y="789" width="0.0166%" height="15" fill="rgb(250,128,24)" fg:x="100018" fg:w="49"/><text x="34.0409%" y="799.50"></text></g><g><title>schedule (44 samples, 0.01%)</title><rect x="33.7926%" y="773" width="0.0149%" height="15" fill="rgb(217,117,27)" fg:x="100023" fg:w="44"/><text x="34.0426%" y="783.50"></text></g><g><title>__schedule (44 samples, 0.01%)</title><rect x="33.7926%" y="757" width="0.0149%" height="15" fill="rgb(245,147,4)" fg:x="100023" fg:w="44"/><text x="34.0426%" y="767.50"></text></g><g><title>__x64_sys_nanosleep (55 samples, 0.02%)</title><rect x="33.7892%" y="821" width="0.0186%" height="15" fill="rgb(242,201,35)" fg:x="100013" fg:w="55"/><text x="34.0392%" y="831.50"></text></g><g><title>hrtimer_nanosleep (50 samples, 0.02%)</title><rect x="33.7909%" y="805" width="0.0169%" height="15" fill="rgb(218,181,1)" fg:x="100018" fg:w="50"/><text x="34.0409%" y="815.50"></text></g><g><title>do_syscall_64 (314 samples, 0.11%)</title><rect x="33.7088%" y="837" width="0.1061%" height="15" fill="rgb(222,6,29)" fg:x="99775" fg:w="314"/><text x="33.9588%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (326 samples, 0.11%)</title><rect x="33.7078%" y="853" width="0.1101%" height="15" fill="rgb(208,186,3)" fg:x="99772" fg:w="326"/><text x="33.9578%" y="863.50"></text></g><g><title>schedule_tail (57 samples, 0.02%)</title><rect x="33.8183%" y="837" width="0.0193%" height="15" fill="rgb(216,36,26)" fg:x="100099" fg:w="57"/><text x="34.0683%" y="847.50"></text></g><g><title>finish_task_switch (56 samples, 0.02%)</title><rect x="33.8186%" y="821" width="0.0189%" height="15" fill="rgb(248,201,23)" fg:x="100100" fg:w="56"/><text x="34.0686%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.02%)</title><rect x="33.8193%" y="805" width="0.0182%" height="15" fill="rgb(251,170,31)" fg:x="100102" fg:w="54"/><text x="34.0693%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.02%)</title><rect x="33.8199%" y="789" width="0.0176%" height="15" fill="rgb(207,110,25)" fg:x="100104" fg:w="52"/><text x="34.0699%" y="799.50"></text></g><g><title>native_write_msr (52 samples, 0.02%)</title><rect x="33.8199%" y="773" width="0.0176%" height="15" fill="rgb(250,54,15)" fg:x="100104" fg:w="52"/><text x="34.0699%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (661 samples, 0.22%)</title><rect x="33.6145%" y="869" width="0.2233%" height="15" fill="rgb(227,68,33)" fg:x="99496" fg:w="661"/><text x="33.8645%" y="879.50"></text></g><g><title>ret_from_fork (59 samples, 0.02%)</title><rect x="33.8179%" y="853" width="0.0199%" height="15" fill="rgb(238,34,41)" fg:x="100098" fg:w="59"/><text x="34.0679%" y="863.50"></text></g><g><title>_start (38 samples, 0.01%)</title><rect x="33.8385%" y="869" width="0.0128%" height="15" fill="rgb(220,11,15)" fg:x="100159" fg:w="38"/><text x="34.0885%" y="879.50"></text></g><g><title>bazel (731 samples, 0.25%)</title><rect x="33.6128%" y="885" width="0.2470%" height="15" fill="rgb(246,111,35)" fg:x="99491" fg:w="731"/><text x="33.8628%" y="895.50"></text></g><g><title>__libc_start_main (42 samples, 0.01%)</title><rect x="33.8770%" y="853" width="0.0142%" height="15" fill="rgb(209,88,53)" fg:x="100273" fg:w="42"/><text x="34.1270%" y="863.50"></text></g><g><title>main (40 samples, 0.01%)</title><rect x="33.8777%" y="837" width="0.0135%" height="15" fill="rgb(231,185,47)" fg:x="100275" fg:w="40"/><text x="34.1277%" y="847.50"></text></g><g><title>_dl_map_object_from_fd (35 samples, 0.01%)</title><rect x="33.8956%" y="725" width="0.0118%" height="15" fill="rgb(233,154,1)" fg:x="100328" fg:w="35"/><text x="34.1456%" y="735.50"></text></g><g><title>_dl_map_object_deps (48 samples, 0.02%)</title><rect x="33.8929%" y="789" width="0.0162%" height="15" fill="rgb(225,15,46)" fg:x="100320" fg:w="48"/><text x="34.1429%" y="799.50"></text></g><g><title>_dl_catch_exception (45 samples, 0.02%)</title><rect x="33.8939%" y="773" width="0.0152%" height="15" fill="rgb(211,135,41)" fg:x="100323" fg:w="45"/><text x="34.1439%" y="783.50"></text></g><g><title>openaux (45 samples, 0.02%)</title><rect x="33.8939%" y="757" width="0.0152%" height="15" fill="rgb(208,54,0)" fg:x="100323" fg:w="45"/><text x="34.1439%" y="767.50"></text></g><g><title>_dl_map_object (45 samples, 0.02%)</title><rect x="33.8939%" y="741" width="0.0152%" height="15" fill="rgb(244,136,14)" fg:x="100323" fg:w="45"/><text x="34.1439%" y="751.50"></text></g><g><title>dl_new_hash (32 samples, 0.01%)</title><rect x="33.9274%" y="725" width="0.0108%" height="15" fill="rgb(241,56,14)" fg:x="100422" fg:w="32"/><text x="34.1774%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (87 samples, 0.03%)</title><rect x="33.9267%" y="741" width="0.0294%" height="15" fill="rgb(205,80,24)" fg:x="100420" fg:w="87"/><text x="34.1767%" y="751.50"></text></g><g><title>do_lookup_x (53 samples, 0.02%)</title><rect x="33.9382%" y="725" width="0.0179%" height="15" fill="rgb(220,57,4)" fg:x="100454" fg:w="53"/><text x="34.1882%" y="735.50"></text></g><g><title>elf_machine_rela (118 samples, 0.04%)</title><rect x="33.9179%" y="757" width="0.0399%" height="15" fill="rgb(226,193,50)" fg:x="100394" fg:w="118"/><text x="34.1679%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (139 samples, 0.05%)</title><rect x="33.9125%" y="773" width="0.0470%" height="15" fill="rgb(231,168,22)" fg:x="100378" fg:w="139"/><text x="34.1625%" y="783.50"></text></g><g><title>_dl_relocate_object (147 samples, 0.05%)</title><rect x="33.9102%" y="789" width="0.0497%" height="15" fill="rgb(254,215,14)" fg:x="100371" fg:w="147"/><text x="34.1602%" y="799.50"></text></g><g><title>[ld-2.31.so] (208 samples, 0.07%)</title><rect x="33.8916%" y="805" width="0.0703%" height="15" fill="rgb(211,115,16)" fg:x="100316" fg:w="208"/><text x="34.1416%" y="815.50"></text></g><g><title>_dl_start_final (215 samples, 0.07%)</title><rect x="33.8912%" y="837" width="0.0726%" height="15" fill="rgb(236,210,16)" fg:x="100315" fg:w="215"/><text x="34.1412%" y="847.50"></text></g><g><title>_dl_sysdep_start (215 samples, 0.07%)</title><rect x="33.8912%" y="821" width="0.0726%" height="15" fill="rgb(221,94,12)" fg:x="100315" fg:w="215"/><text x="34.1412%" y="831.50"></text></g><g><title>_dl_start (216 samples, 0.07%)</title><rect x="33.8912%" y="853" width="0.0730%" height="15" fill="rgb(235,218,49)" fg:x="100315" fg:w="216"/><text x="34.1412%" y="863.50"></text></g><g><title>_start (270 samples, 0.09%)</title><rect x="33.8770%" y="869" width="0.0912%" height="15" fill="rgb(217,114,14)" fg:x="100273" fg:w="270"/><text x="34.1270%" y="879.50"></text></g><g><title>build-runfiles (375 samples, 0.13%)</title><rect x="33.8602%" y="885" width="0.1267%" height="15" fill="rgb(216,145,22)" fg:x="100223" fg:w="375"/><text x="34.1102%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="33.9713%" y="869" width="0.0155%" height="15" fill="rgb(217,112,39)" fg:x="100552" fg:w="46"/><text x="34.2213%" y="879.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="33.9713%" y="853" width="0.0155%" height="15" fill="rgb(225,85,32)" fg:x="100552" fg:w="46"/><text x="34.2213%" y="863.50"></text></g><g><title>[[heap]] (31 samples, 0.01%)</title><rect x="33.9868%" y="869" width="0.0105%" height="15" fill="rgb(245,209,47)" fg:x="100598" fg:w="31"/><text x="34.2368%" y="879.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="34.2443%" y="421" width="0.0105%" height="15" fill="rgb(218,220,15)" fg:x="101360" fg:w="31"/><text x="34.4943%" y="431.50"></text></g><g><title>asm_exc_page_fault (38 samples, 0.01%)</title><rect x="34.2423%" y="469" width="0.0128%" height="15" fill="rgb(222,202,31)" fg:x="101354" fg:w="38"/><text x="34.4923%" y="479.50"></text></g><g><title>exc_page_fault (38 samples, 0.01%)</title><rect x="34.2423%" y="453" width="0.0128%" height="15" fill="rgb(243,203,4)" fg:x="101354" fg:w="38"/><text x="34.4923%" y="463.50"></text></g><g><title>do_user_addr_fault (38 samples, 0.01%)</title><rect x="34.2423%" y="437" width="0.0128%" height="15" fill="rgb(237,92,17)" fg:x="101354" fg:w="38"/><text x="34.4923%" y="447.50"></text></g><g><title>_int_malloc (51 samples, 0.02%)</title><rect x="34.2392%" y="485" width="0.0172%" height="15" fill="rgb(231,119,7)" fg:x="101345" fg:w="51"/><text x="34.4892%" y="495.50"></text></g><g><title>[dash] (52 samples, 0.02%)</title><rect x="34.2392%" y="517" width="0.0176%" height="15" fill="rgb(237,82,41)" fg:x="101345" fg:w="52"/><text x="34.4892%" y="527.50"></text></g><g><title>__GI___libc_malloc (52 samples, 0.02%)</title><rect x="34.2392%" y="501" width="0.0176%" height="15" fill="rgb(226,81,48)" fg:x="101345" fg:w="52"/><text x="34.4892%" y="511.50"></text></g><g><title>[dash] (58 samples, 0.02%)</title><rect x="34.2375%" y="533" width="0.0196%" height="15" fill="rgb(234,70,51)" fg:x="101340" fg:w="58"/><text x="34.4875%" y="543.50"></text></g><g><title>__GI_____strtol_l_internal (41 samples, 0.01%)</title><rect x="34.2571%" y="533" width="0.0139%" height="15" fill="rgb(251,86,4)" fg:x="101398" fg:w="41"/><text x="34.5071%" y="543.50"></text></g><g><title>exc_page_fault (30 samples, 0.01%)</title><rect x="34.2744%" y="501" width="0.0101%" height="15" fill="rgb(244,144,28)" fg:x="101449" fg:w="30"/><text x="34.5244%" y="511.50"></text></g><g><title>asm_exc_page_fault (38 samples, 0.01%)</title><rect x="34.2744%" y="517" width="0.0128%" height="15" fill="rgb(232,161,39)" fg:x="101449" fg:w="38"/><text x="34.5244%" y="527.50"></text></g><g><title>__strtol (52 samples, 0.02%)</title><rect x="34.2710%" y="533" width="0.0176%" height="15" fill="rgb(247,34,51)" fg:x="101439" fg:w="52"/><text x="34.5210%" y="543.50"></text></g><g><title>[dash] (158 samples, 0.05%)</title><rect x="34.2362%" y="549" width="0.0534%" height="15" fill="rgb(225,132,2)" fg:x="101336" fg:w="158"/><text x="34.4862%" y="559.50"></text></g><g><title>handle_mm_fault (47 samples, 0.02%)</title><rect x="34.3037%" y="485" width="0.0159%" height="15" fill="rgb(209,159,44)" fg:x="101536" fg:w="47"/><text x="34.5537%" y="495.50"></text></g><g><title>exc_page_fault (65 samples, 0.02%)</title><rect x="34.2980%" y="517" width="0.0220%" height="15" fill="rgb(251,214,1)" fg:x="101519" fg:w="65"/><text x="34.5480%" y="527.50"></text></g><g><title>do_user_addr_fault (65 samples, 0.02%)</title><rect x="34.2980%" y="501" width="0.0220%" height="15" fill="rgb(247,84,47)" fg:x="101519" fg:w="65"/><text x="34.5480%" y="511.50"></text></g><g><title>asm_exc_page_fault (74 samples, 0.03%)</title><rect x="34.2980%" y="533" width="0.0250%" height="15" fill="rgb(240,111,43)" fg:x="101519" fg:w="74"/><text x="34.5480%" y="543.50"></text></g><g><title>[libc-2.31.so] (105 samples, 0.04%)</title><rect x="34.2896%" y="549" width="0.0355%" height="15" fill="rgb(215,214,35)" fg:x="101494" fg:w="105"/><text x="34.5396%" y="559.50"></text></g><g><title>new_sync_write (30 samples, 0.01%)</title><rect x="34.3348%" y="469" width="0.0101%" height="15" fill="rgb(248,207,23)" fg:x="101628" fg:w="30"/><text x="34.5848%" y="479.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="34.3318%" y="517" width="0.0145%" height="15" fill="rgb(214,186,4)" fg:x="101619" fg:w="43"/><text x="34.5818%" y="527.50"></text></g><g><title>ksys_write (41 samples, 0.01%)</title><rect x="34.3325%" y="501" width="0.0139%" height="15" fill="rgb(220,133,22)" fg:x="101621" fg:w="41"/><text x="34.5825%" y="511.50"></text></g><g><title>vfs_write (39 samples, 0.01%)</title><rect x="34.3331%" y="485" width="0.0132%" height="15" fill="rgb(239,134,19)" fg:x="101623" fg:w="39"/><text x="34.5831%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.02%)</title><rect x="34.3318%" y="533" width="0.0199%" height="15" fill="rgb(250,140,9)" fg:x="101619" fg:w="59"/><text x="34.5818%" y="543.50"></text></g><g><title>__GI___libc_write (61 samples, 0.02%)</title><rect x="34.3314%" y="549" width="0.0206%" height="15" fill="rgb(225,59,14)" fg:x="101618" fg:w="61"/><text x="34.5814%" y="559.50"></text></g><g><title>mm_init (32 samples, 0.01%)</title><rect x="34.3662%" y="453" width="0.0108%" height="15" fill="rgb(214,152,51)" fg:x="101721" fg:w="32"/><text x="34.6162%" y="463.50"></text></g><g><title>pgd_alloc (31 samples, 0.01%)</title><rect x="34.3666%" y="437" width="0.0105%" height="15" fill="rgb(251,227,43)" fg:x="101722" fg:w="31"/><text x="34.6166%" y="447.50"></text></g><g><title>alloc_bprm (75 samples, 0.03%)</title><rect x="34.3544%" y="469" width="0.0253%" height="15" fill="rgb(241,96,17)" fg:x="101686" fg:w="75"/><text x="34.6044%" y="479.50"></text></g><g><title>do_open_execat (59 samples, 0.02%)</title><rect x="34.3909%" y="453" width="0.0199%" height="15" fill="rgb(234,198,43)" fg:x="101794" fg:w="59"/><text x="34.6409%" y="463.50"></text></g><g><title>do_filp_open (56 samples, 0.02%)</title><rect x="34.3919%" y="437" width="0.0189%" height="15" fill="rgb(220,108,29)" fg:x="101797" fg:w="56"/><text x="34.6419%" y="447.50"></text></g><g><title>path_openat (54 samples, 0.02%)</title><rect x="34.3926%" y="421" width="0.0182%" height="15" fill="rgb(226,163,33)" fg:x="101799" fg:w="54"/><text x="34.6426%" y="431.50"></text></g><g><title>btrfs_search_slot (43 samples, 0.01%)</title><rect x="34.4223%" y="325" width="0.0145%" height="15" fill="rgb(205,194,45)" fg:x="101887" fg:w="43"/><text x="34.6723%" y="335.50"></text></g><g><title>btrfs_lookup_xattr (45 samples, 0.02%)</title><rect x="34.4223%" y="341" width="0.0152%" height="15" fill="rgb(206,143,44)" fg:x="101887" fg:w="45"/><text x="34.6723%" y="351.50"></text></g><g><title>btrfs_getxattr (54 samples, 0.02%)</title><rect x="34.4203%" y="357" width="0.0182%" height="15" fill="rgb(236,136,36)" fg:x="101881" fg:w="54"/><text x="34.6703%" y="367.50"></text></g><g><title>begin_new_exec (74 samples, 0.03%)</title><rect x="34.4152%" y="437" width="0.0250%" height="15" fill="rgb(249,172,42)" fg:x="101866" fg:w="74"/><text x="34.6652%" y="447.50"></text></g><g><title>security_bprm_creds_from_file (63 samples, 0.02%)</title><rect x="34.4190%" y="421" width="0.0213%" height="15" fill="rgb(216,139,23)" fg:x="101877" fg:w="63"/><text x="34.6690%" y="431.50"></text></g><g><title>cap_bprm_creds_from_file (63 samples, 0.02%)</title><rect x="34.4190%" y="405" width="0.0213%" height="15" fill="rgb(207,166,20)" fg:x="101877" fg:w="63"/><text x="34.6690%" y="415.50"></text></g><g><title>get_vfs_caps_from_disk (60 samples, 0.02%)</title><rect x="34.4200%" y="389" width="0.0203%" height="15" fill="rgb(210,209,22)" fg:x="101880" fg:w="60"/><text x="34.6700%" y="399.50"></text></g><g><title>__vfs_getxattr (59 samples, 0.02%)</title><rect x="34.4203%" y="373" width="0.0199%" height="15" fill="rgb(232,118,20)" fg:x="101881" fg:w="59"/><text x="34.6703%" y="383.50"></text></g><g><title>link_path_walk.part.0 (37 samples, 0.01%)</title><rect x="34.4565%" y="373" width="0.0125%" height="15" fill="rgb(238,113,42)" fg:x="101988" fg:w="37"/><text x="34.7065%" y="383.50"></text></g><g><title>do_open_execat (69 samples, 0.02%)</title><rect x="34.4494%" y="421" width="0.0233%" height="15" fill="rgb(231,42,5)" fg:x="101967" fg:w="69"/><text x="34.6994%" y="431.50"></text></g><g><title>do_filp_open (69 samples, 0.02%)</title><rect x="34.4494%" y="405" width="0.0233%" height="15" fill="rgb(243,166,24)" fg:x="101967" fg:w="69"/><text x="34.6994%" y="415.50"></text></g><g><title>path_openat (69 samples, 0.02%)</title><rect x="34.4494%" y="389" width="0.0233%" height="15" fill="rgb(237,226,12)" fg:x="101967" fg:w="69"/><text x="34.6994%" y="399.50"></text></g><g><title>open_exec (71 samples, 0.02%)</title><rect x="34.4494%" y="437" width="0.0240%" height="15" fill="rgb(229,133,24)" fg:x="101967" fg:w="71"/><text x="34.6994%" y="447.50"></text></g><g><title>load_elf_binary (186 samples, 0.06%)</title><rect x="34.4112%" y="453" width="0.0628%" height="15" fill="rgb(238,33,43)" fg:x="101854" fg:w="186"/><text x="34.6612%" y="463.50"></text></g><g><title>load_misc_binary (58 samples, 0.02%)</title><rect x="34.4740%" y="453" width="0.0196%" height="15" fill="rgb(227,59,38)" fg:x="102040" fg:w="58"/><text x="34.7240%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (834 samples, 0.28%)</title><rect x="34.5271%" y="373" width="0.2818%" height="15" fill="rgb(230,97,0)" fg:x="102197" fg:w="834"/><text x="34.7771%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (826 samples, 0.28%)</title><rect x="34.5298%" y="357" width="0.2791%" height="15" fill="rgb(250,173,50)" fg:x="102205" fg:w="826"/><text x="34.7798%" y="367.50"></text></g><g><title>native_write_msr (825 samples, 0.28%)</title><rect x="34.5301%" y="341" width="0.2787%" height="15" fill="rgb(240,15,50)" fg:x="102206" fg:w="825"/><text x="34.7801%" y="351.50"></text></g><g><title>finish_task_switch (901 samples, 0.30%)</title><rect x="34.5163%" y="389" width="0.3044%" height="15" fill="rgb(221,93,22)" fg:x="102165" fg:w="901"/><text x="34.7663%" y="399.50"></text></g><g><title>_cond_resched (907 samples, 0.31%)</title><rect x="34.5146%" y="421" width="0.3064%" height="15" fill="rgb(245,180,53)" fg:x="102160" fg:w="907"/><text x="34.7646%" y="431.50"></text></g><g><title>__schedule (907 samples, 0.31%)</title><rect x="34.5146%" y="405" width="0.3064%" height="15" fill="rgb(231,88,51)" fg:x="102160" fg:w="907"/><text x="34.7646%" y="415.50"></text></g><g><title>sched_exec (956 samples, 0.32%)</title><rect x="34.5004%" y="453" width="0.3230%" height="15" fill="rgb(240,58,21)" fg:x="102118" fg:w="956"/><text x="34.7504%" y="463.50"></text></g><g><title>stop_one_cpu (926 samples, 0.31%)</title><rect x="34.5105%" y="437" width="0.3128%" height="15" fill="rgb(237,21,10)" fg:x="102148" fg:w="926"/><text x="34.7605%" y="447.50"></text></g><g><title>security_bprm_check (80 samples, 0.03%)</title><rect x="34.8234%" y="453" width="0.0270%" height="15" fill="rgb(218,43,11)" fg:x="103074" fg:w="80"/><text x="35.0734%" y="463.50"></text></g><g><title>tomoyo_bprm_check_security (80 samples, 0.03%)</title><rect x="34.8234%" y="437" width="0.0270%" height="15" fill="rgb(218,221,29)" fg:x="103074" fg:w="80"/><text x="35.0734%" y="447.50"></text></g><g><title>tomoyo_find_next_domain (78 samples, 0.03%)</title><rect x="34.8240%" y="421" width="0.0264%" height="15" fill="rgb(214,118,42)" fg:x="103076" fg:w="78"/><text x="35.0740%" y="431.50"></text></g><g><title>tomoyo_realpath_nofollow (31 samples, 0.01%)</title><rect x="34.8399%" y="405" width="0.0105%" height="15" fill="rgb(251,200,26)" fg:x="103123" fg:w="31"/><text x="35.0899%" y="415.50"></text></g><g><title>aa_dfa_leftmatch (44 samples, 0.01%)</title><rect x="34.8781%" y="389" width="0.0149%" height="15" fill="rgb(237,101,39)" fg:x="103236" fg:w="44"/><text x="35.1281%" y="399.50"></text></g><g><title>apparmor_bprm_creds_for_exec (142 samples, 0.05%)</title><rect x="34.8511%" y="437" width="0.0480%" height="15" fill="rgb(251,117,11)" fg:x="103156" fg:w="142"/><text x="35.1011%" y="447.50"></text></g><g><title>profile_transition (127 samples, 0.04%)</title><rect x="34.8561%" y="421" width="0.0429%" height="15" fill="rgb(216,223,23)" fg:x="103171" fg:w="127"/><text x="35.1061%" y="431.50"></text></g><g><title>find_attach (99 samples, 0.03%)</title><rect x="34.8656%" y="405" width="0.0334%" height="15" fill="rgb(251,54,12)" fg:x="103199" fg:w="99"/><text x="35.1156%" y="415.50"></text></g><g><title>security_bprm_creds_for_exec (146 samples, 0.05%)</title><rect x="34.8504%" y="453" width="0.0493%" height="15" fill="rgb(254,176,54)" fg:x="103154" fg:w="146"/><text x="35.1004%" y="463.50"></text></g><g><title>bprm_execve (1,544 samples, 0.52%)</title><rect x="34.3798%" y="469" width="0.5216%" height="15" fill="rgb(210,32,8)" fg:x="101761" fg:w="1544"/><text x="34.6298%" y="479.50"></text></g><g><title>__get_user_pages_remote (99 samples, 0.03%)</title><rect x="34.9021%" y="437" width="0.0334%" height="15" fill="rgb(235,52,38)" fg:x="103307" fg:w="99"/><text x="35.1521%" y="447.50"></text></g><g><title>__get_user_pages (96 samples, 0.03%)</title><rect x="34.9031%" y="421" width="0.0324%" height="15" fill="rgb(231,4,44)" fg:x="103310" fg:w="96"/><text x="35.1531%" y="431.50"></text></g><g><title>handle_mm_fault (78 samples, 0.03%)</title><rect x="34.9092%" y="405" width="0.0264%" height="15" fill="rgb(249,2,32)" fg:x="103328" fg:w="78"/><text x="35.1592%" y="415.50"></text></g><g><title>copy_string_kernel (103 samples, 0.03%)</title><rect x="34.9014%" y="469" width="0.0348%" height="15" fill="rgb(224,65,26)" fg:x="103305" fg:w="103"/><text x="35.1514%" y="479.50"></text></g><g><title>get_arg_page (101 samples, 0.03%)</title><rect x="34.9021%" y="453" width="0.0341%" height="15" fill="rgb(250,73,40)" fg:x="103307" fg:w="101"/><text x="35.1521%" y="463.50"></text></g><g><title>copy_strings.isra.0 (48 samples, 0.02%)</title><rect x="34.9362%" y="469" width="0.0162%" height="15" fill="rgb(253,177,16)" fg:x="103408" fg:w="48"/><text x="35.1862%" y="479.50"></text></g><g><title>do_execveat_common (1,780 samples, 0.60%)</title><rect x="34.3537%" y="485" width="0.6014%" height="15" fill="rgb(217,32,34)" fg:x="101684" fg:w="1780"/><text x="34.6037%" y="495.50"></text></g><g><title>__GI_execve (1,798 samples, 0.61%)</title><rect x="34.3521%" y="549" width="0.6075%" height="15" fill="rgb(212,7,10)" fg:x="101679" fg:w="1798"/><text x="34.6021%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,795 samples, 0.61%)</title><rect x="34.3531%" y="533" width="0.6064%" height="15" fill="rgb(245,89,8)" fg:x="101682" fg:w="1795"/><text x="34.6031%" y="543.50"></text></g><g><title>do_syscall_64 (1,795 samples, 0.61%)</title><rect x="34.3531%" y="517" width="0.6064%" height="15" fill="rgb(237,16,53)" fg:x="101682" fg:w="1795"/><text x="34.6031%" y="527.50"></text></g><g><title>__x64_sys_execve (1,794 samples, 0.61%)</title><rect x="34.3534%" y="501" width="0.6061%" height="15" fill="rgb(250,204,30)" fg:x="101683" fg:w="1794"/><text x="34.6034%" y="511.50"></text></g><g><title>filemap_map_pages (94 samples, 0.03%)</title><rect x="34.9761%" y="437" width="0.0318%" height="15" fill="rgb(208,77,27)" fg:x="103526" fg:w="94"/><text x="35.2261%" y="447.50"></text></g><g><title>handle_mm_fault (101 samples, 0.03%)</title><rect x="34.9740%" y="453" width="0.0341%" height="15" fill="rgb(250,204,28)" fg:x="103520" fg:w="101"/><text x="35.2240%" y="463.50"></text></g><g><title>exc_page_fault (110 samples, 0.04%)</title><rect x="34.9713%" y="485" width="0.0372%" height="15" fill="rgb(244,63,21)" fg:x="103512" fg:w="110"/><text x="35.2213%" y="495.50"></text></g><g><title>do_user_addr_fault (110 samples, 0.04%)</title><rect x="34.9713%" y="469" width="0.0372%" height="15" fill="rgb(236,85,44)" fg:x="103512" fg:w="110"/><text x="35.2213%" y="479.50"></text></g><g><title>asm_exc_page_fault (111 samples, 0.04%)</title><rect x="34.9713%" y="501" width="0.0375%" height="15" fill="rgb(215,98,4)" fg:x="103512" fg:w="111"/><text x="35.2213%" y="511.50"></text></g><g><title>_mm_loadu_si128 (127 samples, 0.04%)</title><rect x="34.9680%" y="517" width="0.0429%" height="15" fill="rgb(235,38,11)" fg:x="103502" fg:w="127"/><text x="35.2180%" y="527.50"></text></g><g><title>__m128i_shift_right (128 samples, 0.04%)</title><rect x="34.9680%" y="533" width="0.0432%" height="15" fill="rgb(254,186,25)" fg:x="103502" fg:w="128"/><text x="35.2180%" y="543.50"></text></g><g><title>handle_mm_fault (87 samples, 0.03%)</title><rect x="35.0139%" y="485" width="0.0294%" height="15" fill="rgb(225,55,31)" fg:x="103638" fg:w="87"/><text x="35.2639%" y="495.50"></text></g><g><title>filemap_map_pages (84 samples, 0.03%)</title><rect x="35.0149%" y="469" width="0.0284%" height="15" fill="rgb(211,15,21)" fg:x="103641" fg:w="84"/><text x="35.2649%" y="479.50"></text></g><g><title>exc_page_fault (92 samples, 0.03%)</title><rect x="35.0126%" y="517" width="0.0311%" height="15" fill="rgb(215,187,41)" fg:x="103634" fg:w="92"/><text x="35.2626%" y="527.50"></text></g><g><title>do_user_addr_fault (92 samples, 0.03%)</title><rect x="35.0126%" y="501" width="0.0311%" height="15" fill="rgb(248,69,32)" fg:x="103634" fg:w="92"/><text x="35.2626%" y="511.50"></text></g><g><title>asm_exc_page_fault (94 samples, 0.03%)</title><rect x="35.0126%" y="533" width="0.0318%" height="15" fill="rgb(252,102,52)" fg:x="103634" fg:w="94"/><text x="35.2626%" y="543.50"></text></g><g><title>__strcspn_sse42 (254 samples, 0.09%)</title><rect x="34.9615%" y="549" width="0.0858%" height="15" fill="rgb(253,140,32)" fg:x="103483" fg:w="254"/><text x="35.2115%" y="559.50"></text></g><g><title>[dash] (2,491 samples, 0.84%)</title><rect x="34.2152%" y="565" width="0.8416%" height="15" fill="rgb(216,56,42)" fg:x="101274" fg:w="2491"/><text x="34.4652%" y="575.50"></text></g><g><title>__GI___libc_free (41 samples, 0.01%)</title><rect x="35.0595%" y="565" width="0.0139%" height="15" fill="rgb(216,184,14)" fg:x="103773" fg:w="41"/><text x="35.3095%" y="575.50"></text></g><g><title>_int_malloc (42 samples, 0.01%)</title><rect x="35.0747%" y="549" width="0.0142%" height="15" fill="rgb(237,187,27)" fg:x="103818" fg:w="42"/><text x="35.3247%" y="559.50"></text></g><g><title>__GI___libc_malloc (61 samples, 0.02%)</title><rect x="35.0734%" y="565" width="0.0206%" height="15" fill="rgb(219,65,3)" fg:x="103814" fg:w="61"/><text x="35.3234%" y="575.50"></text></g><g><title>dequeue_task_fair (31 samples, 0.01%)</title><rect x="35.1680%" y="453" width="0.0105%" height="15" fill="rgb(245,83,25)" fg:x="104094" fg:w="31"/><text x="35.4180%" y="463.50"></text></g><g><title>__memcg_kmem_uncharge_page (41 samples, 0.01%)</title><rect x="35.2355%" y="405" width="0.0139%" height="15" fill="rgb(214,205,45)" fg:x="104294" fg:w="41"/><text x="35.4855%" y="415.50"></text></g><g><title>__free_pages_ok (109 samples, 0.04%)</title><rect x="35.2234%" y="421" width="0.0368%" height="15" fill="rgb(241,20,18)" fg:x="104258" fg:w="109"/><text x="35.4734%" y="431.50"></text></g><g><title>free_one_page (32 samples, 0.01%)</title><rect x="35.2494%" y="405" width="0.0108%" height="15" fill="rgb(232,163,23)" fg:x="104335" fg:w="32"/><text x="35.4994%" y="415.50"></text></g><g><title>__list_del_entry_valid (30 samples, 0.01%)</title><rect x="35.2676%" y="405" width="0.0101%" height="15" fill="rgb(214,5,46)" fg:x="104389" fg:w="30"/><text x="35.5176%" y="415.50"></text></g><g><title>__mmdrop (204 samples, 0.07%)</title><rect x="35.2166%" y="437" width="0.0689%" height="15" fill="rgb(229,78,17)" fg:x="104238" fg:w="204"/><text x="35.4666%" y="447.50"></text></g><g><title>pgd_free (73 samples, 0.02%)</title><rect x="35.2609%" y="421" width="0.0247%" height="15" fill="rgb(248,89,10)" fg:x="104369" fg:w="73"/><text x="35.5109%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (5,965 samples, 2.02%)</title><rect x="35.2855%" y="437" width="2.0153%" height="15" fill="rgb(248,54,15)" fg:x="104442" fg:w="5965"/><text x="35.5355%" y="447.50">_..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,890 samples, 1.99%)</title><rect x="35.3109%" y="421" width="1.9899%" height="15" fill="rgb(223,116,6)" fg:x="104517" fg:w="5890"/><text x="35.5609%" y="431.50">_..</text></g><g><title>native_write_msr (5,865 samples, 1.98%)</title><rect x="35.3193%" y="405" width="1.9815%" height="15" fill="rgb(205,125,38)" fg:x="104542" fg:w="5865"/><text x="35.5693%" y="415.50">n..</text></g><g><title>__wake_up_common (59 samples, 0.02%)</title><rect x="37.3363%" y="277" width="0.0199%" height="15" fill="rgb(251,78,38)" fg:x="110512" fg:w="59"/><text x="37.5863%" y="287.50"></text></g><g><title>pollwake (58 samples, 0.02%)</title><rect x="37.3366%" y="261" width="0.0196%" height="15" fill="rgb(253,78,28)" fg:x="110513" fg:w="58"/><text x="37.5866%" y="271.50"></text></g><g><title>try_to_wake_up (57 samples, 0.02%)</title><rect x="37.3369%" y="245" width="0.0193%" height="15" fill="rgb(209,120,3)" fg:x="110514" fg:w="57"/><text x="37.5869%" y="255.50"></text></g><g><title>irq_work_run (75 samples, 0.03%)</title><rect x="37.3326%" y="373" width="0.0253%" height="15" fill="rgb(238,229,9)" fg:x="110501" fg:w="75"/><text x="37.5826%" y="383.50"></text></g><g><title>irq_work_run_list (75 samples, 0.03%)</title><rect x="37.3326%" y="357" width="0.0253%" height="15" fill="rgb(253,159,18)" fg:x="110501" fg:w="75"/><text x="37.5826%" y="367.50"></text></g><g><title>irq_work_single (71 samples, 0.02%)</title><rect x="37.3339%" y="341" width="0.0240%" height="15" fill="rgb(244,42,34)" fg:x="110505" fg:w="71"/><text x="37.5839%" y="351.50"></text></g><g><title>perf_pending_event (68 samples, 0.02%)</title><rect x="37.3349%" y="325" width="0.0230%" height="15" fill="rgb(224,8,7)" fg:x="110508" fg:w="68"/><text x="37.5849%" y="335.50"></text></g><g><title>perf_event_wakeup (65 samples, 0.02%)</title><rect x="37.3359%" y="309" width="0.0220%" height="15" fill="rgb(210,201,45)" fg:x="110511" fg:w="65"/><text x="37.5859%" y="319.50"></text></g><g><title>__wake_up_common_lock (65 samples, 0.02%)</title><rect x="37.3359%" y="293" width="0.0220%" height="15" fill="rgb(252,185,21)" fg:x="110511" fg:w="65"/><text x="37.5859%" y="303.50"></text></g><g><title>asm_call_sysvec_on_stack (86 samples, 0.03%)</title><rect x="37.3295%" y="405" width="0.0291%" height="15" fill="rgb(223,131,1)" fg:x="110492" fg:w="86"/><text x="37.5795%" y="415.50"></text></g><g><title>__sysvec_irq_work (77 samples, 0.03%)</title><rect x="37.3326%" y="389" width="0.0260%" height="15" fill="rgb(245,141,16)" fg:x="110501" fg:w="77"/><text x="37.5826%" y="399.50"></text></g><g><title>asm_sysvec_irq_work (170 samples, 0.06%)</title><rect x="37.3049%" y="437" width="0.0574%" height="15" fill="rgb(229,55,45)" fg:x="110419" fg:w="170"/><text x="37.5549%" y="447.50"></text></g><g><title>sysvec_irq_work (101 samples, 0.03%)</title><rect x="37.3282%" y="421" width="0.0341%" height="15" fill="rgb(208,92,15)" fg:x="110488" fg:w="101"/><text x="37.5782%" y="431.50"></text></g><g><title>kmem_cache_free (35 samples, 0.01%)</title><rect x="37.3663%" y="437" width="0.0118%" height="15" fill="rgb(234,185,47)" fg:x="110601" fg:w="35"/><text x="37.6163%" y="447.50"></text></g><g><title>account_kernel_stack (35 samples, 0.01%)</title><rect x="37.3947%" y="421" width="0.0118%" height="15" fill="rgb(253,104,50)" fg:x="110685" fg:w="35"/><text x="37.6447%" y="431.50"></text></g><g><title>put_task_stack (83 samples, 0.03%)</title><rect x="37.3846%" y="437" width="0.0280%" height="15" fill="rgb(205,70,7)" fg:x="110655" fg:w="83"/><text x="37.6346%" y="447.50"></text></g><g><title>finish_task_switch (6,625 samples, 2.24%)</title><rect x="35.1784%" y="453" width="2.2382%" height="15" fill="rgb(240,178,43)" fg:x="104125" fg:w="6625"/><text x="35.4284%" y="463.50">f..</text></g><g><title>newidle_balance (33 samples, 0.01%)</title><rect x="37.4174%" y="437" width="0.0111%" height="15" fill="rgb(214,112,2)" fg:x="110752" fg:w="33"/><text x="37.6674%" y="447.50"></text></g><g><title>pick_next_task_fair (44 samples, 0.01%)</title><rect x="37.4167%" y="453" width="0.0149%" height="15" fill="rgb(206,46,17)" fg:x="110750" fg:w="44"/><text x="37.6667%" y="463.50"></text></g><g><title>schedule (6,784 samples, 2.29%)</title><rect x="35.1490%" y="485" width="2.2920%" height="15" fill="rgb(225,220,16)" fg:x="104038" fg:w="6784"/><text x="35.3990%" y="495.50">s..</text></g><g><title>__schedule (6,771 samples, 2.29%)</title><rect x="35.1534%" y="469" width="2.2876%" height="15" fill="rgb(238,65,40)" fg:x="104051" fg:w="6771"/><text x="35.4034%" y="479.50">_..</text></g><g><title>cgroup_release (52 samples, 0.02%)</title><rect x="37.5211%" y="453" width="0.0176%" height="15" fill="rgb(230,151,21)" fg:x="111059" fg:w="52"/><text x="37.7711%" y="463.50"></text></g><g><title>pids_release (38 samples, 0.01%)</title><rect x="37.5258%" y="437" width="0.0128%" height="15" fill="rgb(218,58,49)" fg:x="111073" fg:w="38"/><text x="37.7758%" y="447.50"></text></g><g><title>free_pid (52 samples, 0.02%)</title><rect x="37.5397%" y="453" width="0.0176%" height="15" fill="rgb(219,179,14)" fg:x="111114" fg:w="52"/><text x="37.7897%" y="463.50"></text></g><g><title>radix_tree_delete_item (37 samples, 0.01%)</title><rect x="37.5447%" y="437" width="0.0125%" height="15" fill="rgb(223,72,1)" fg:x="111129" fg:w="37"/><text x="37.7947%" y="447.50"></text></g><g><title>kmem_cache_free (55 samples, 0.02%)</title><rect x="37.5572%" y="453" width="0.0186%" height="15" fill="rgb(238,126,10)" fg:x="111166" fg:w="55"/><text x="37.8072%" y="463.50"></text></g><g><title>release_task (305 samples, 0.10%)</title><rect x="37.4829%" y="469" width="0.1030%" height="15" fill="rgb(224,206,38)" fg:x="110946" fg:w="305"/><text x="37.7329%" y="479.50"></text></g><g><title>do_wait (7,336 samples, 2.48%)</title><rect x="35.1193%" y="501" width="2.4785%" height="15" fill="rgb(212,201,54)" fg:x="103950" fg:w="7336"/><text x="35.3693%" y="511.50">do..</text></g><g><title>wait_consider_task (464 samples, 0.16%)</title><rect x="37.4410%" y="485" width="0.1568%" height="15" fill="rgb(218,154,48)" fg:x="110822" fg:w="464"/><text x="37.6910%" y="495.50"></text></g><g><title>thread_group_cputime_adjusted (35 samples, 0.01%)</title><rect x="37.5859%" y="469" width="0.0118%" height="15" fill="rgb(232,93,24)" fg:x="111251" fg:w="35"/><text x="37.8359%" y="479.50"></text></g><g><title>kernel_wait4 (7,348 samples, 2.48%)</title><rect x="35.1156%" y="517" width="2.4825%" height="15" fill="rgb(245,30,21)" fg:x="103939" fg:w="7348"/><text x="35.3656%" y="527.50">ke..</text></g><g><title>do_syscall_64 (7,367 samples, 2.49%)</title><rect x="35.1095%" y="533" width="2.4889%" height="15" fill="rgb(242,148,29)" fg:x="103921" fg:w="7367"/><text x="35.3595%" y="543.50">do..</text></g><g><title>copy_fpstate_to_sigframe (81 samples, 0.03%)</title><rect x="37.6120%" y="469" width="0.0274%" height="15" fill="rgb(244,153,54)" fg:x="111328" fg:w="81"/><text x="37.8620%" y="479.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (91 samples, 0.03%)</title><rect x="37.6113%" y="485" width="0.0307%" height="15" fill="rgb(252,87,22)" fg:x="111326" fg:w="91"/><text x="37.8613%" y="495.50"></text></g><g><title>dequeue_signal (38 samples, 0.01%)</title><rect x="37.6468%" y="469" width="0.0128%" height="15" fill="rgb(210,51,29)" fg:x="111431" fg:w="38"/><text x="37.8968%" y="479.50"></text></g><g><title>arch_do_signal (176 samples, 0.06%)</title><rect x="37.6018%" y="501" width="0.0595%" height="15" fill="rgb(242,136,47)" fg:x="111298" fg:w="176"/><text x="37.8518%" y="511.50"></text></g><g><title>get_signal (57 samples, 0.02%)</title><rect x="37.6420%" y="485" width="0.0193%" height="15" fill="rgb(238,68,4)" fg:x="111417" fg:w="57"/><text x="37.8920%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (7,561 samples, 2.55%)</title><rect x="35.1095%" y="549" width="2.5545%" height="15" fill="rgb(242,161,30)" fg:x="103921" fg:w="7561"/><text x="35.3595%" y="559.50">en..</text></g><g><title>syscall_exit_to_user_mode (194 samples, 0.07%)</title><rect x="37.5984%" y="533" width="0.0655%" height="15" fill="rgb(218,58,44)" fg:x="111288" fg:w="194"/><text x="37.8484%" y="543.50"></text></g><g><title>exit_to_user_mode_prepare (191 samples, 0.06%)</title><rect x="37.5995%" y="517" width="0.0645%" height="15" fill="rgb(252,125,32)" fg:x="111291" fg:w="191"/><text x="37.8495%" y="527.50"></text></g><g><title>killpg (53 samples, 0.02%)</title><rect x="37.6647%" y="549" width="0.0179%" height="15" fill="rgb(219,178,0)" fg:x="111484" fg:w="53"/><text x="37.9147%" y="559.50"></text></g><g><title>[dash] (53 samples, 0.02%)</title><rect x="37.6647%" y="533" width="0.0179%" height="15" fill="rgb(213,152,7)" fg:x="111484" fg:w="53"/><text x="37.9147%" y="543.50"></text></g><g><title>__GI___wait4 (7,666 samples, 2.59%)</title><rect x="35.0943%" y="565" width="2.5899%" height="15" fill="rgb(249,109,34)" fg:x="103876" fg:w="7666"/><text x="35.3443%" y="575.50">__..</text></g><g><title>exc_page_fault (32 samples, 0.01%)</title><rect x="37.6859%" y="533" width="0.0108%" height="15" fill="rgb(232,96,21)" fg:x="111547" fg:w="32"/><text x="37.9359%" y="543.50"></text></g><g><title>do_user_addr_fault (32 samples, 0.01%)</title><rect x="37.6859%" y="517" width="0.0108%" height="15" fill="rgb(228,27,39)" fg:x="111547" fg:w="32"/><text x="37.9359%" y="527.50"></text></g><g><title>asm_exc_page_fault (35 samples, 0.01%)</title><rect x="37.6856%" y="549" width="0.0118%" height="15" fill="rgb(211,182,52)" fg:x="111546" fg:w="35"/><text x="37.9356%" y="559.50"></text></g><g><title>__GI__setjmp (43 samples, 0.01%)</title><rect x="37.6843%" y="565" width="0.0145%" height="15" fill="rgb(234,178,38)" fg:x="111542" fg:w="43"/><text x="37.9343%" y="575.50"></text></g><g><title>exc_page_fault (53 samples, 0.02%)</title><rect x="37.7109%" y="517" width="0.0179%" height="15" fill="rgb(221,111,3)" fg:x="111621" fg:w="53"/><text x="37.9609%" y="527.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.02%)</title><rect x="37.7113%" y="501" width="0.0176%" height="15" fill="rgb(228,175,21)" fg:x="111622" fg:w="52"/><text x="37.9613%" y="511.50"></text></g><g><title>handle_mm_fault (39 samples, 0.01%)</title><rect x="37.7157%" y="485" width="0.0132%" height="15" fill="rgb(228,174,43)" fg:x="111635" fg:w="39"/><text x="37.9657%" y="495.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.02%)</title><rect x="37.7109%" y="533" width="0.0182%" height="15" fill="rgb(211,191,0)" fg:x="111621" fg:w="54"/><text x="37.9609%" y="543.50"></text></g><g><title>_int_free (97 samples, 0.03%)</title><rect x="37.7005%" y="565" width="0.0328%" height="15" fill="rgb(253,117,3)" fg:x="111590" fg:w="97"/><text x="37.9505%" y="575.50"></text></g><g><title>tcache_put (72 samples, 0.02%)</title><rect x="37.7089%" y="549" width="0.0243%" height="15" fill="rgb(241,127,19)" fg:x="111615" fg:w="72"/><text x="37.9589%" y="559.50"></text></g><g><title>handle_mm_fault (94 samples, 0.03%)</title><rect x="37.7414%" y="517" width="0.0318%" height="15" fill="rgb(218,103,12)" fg:x="111711" fg:w="94"/><text x="37.9914%" y="527.50"></text></g><g><title>wp_page_copy (39 samples, 0.01%)</title><rect x="37.7599%" y="501" width="0.0132%" height="15" fill="rgb(236,214,43)" fg:x="111766" fg:w="39"/><text x="38.0099%" y="511.50"></text></g><g><title>do_user_addr_fault (118 samples, 0.04%)</title><rect x="37.7346%" y="533" width="0.0399%" height="15" fill="rgb(244,144,19)" fg:x="111691" fg:w="118"/><text x="37.9846%" y="543.50"></text></g><g><title>asm_exc_page_fault (122 samples, 0.04%)</title><rect x="37.7336%" y="565" width="0.0412%" height="15" fill="rgb(246,188,10)" fg:x="111688" fg:w="122"/><text x="37.9836%" y="575.50"></text></g><g><title>exc_page_fault (120 samples, 0.04%)</title><rect x="37.7343%" y="549" width="0.0405%" height="15" fill="rgb(212,193,33)" fg:x="111690" fg:w="120"/><text x="37.9843%" y="559.50"></text></g><g><title>asm_exc_page_fault (31 samples, 0.01%)</title><rect x="37.7853%" y="549" width="0.0105%" height="15" fill="rgb(241,51,29)" fg:x="111841" fg:w="31"/><text x="38.0353%" y="559.50"></text></g><g><title>exc_page_fault (31 samples, 0.01%)</title><rect x="37.7853%" y="533" width="0.0105%" height="15" fill="rgb(211,58,19)" fg:x="111841" fg:w="31"/><text x="38.0353%" y="543.50"></text></g><g><title>do_user_addr_fault (31 samples, 0.01%)</title><rect x="37.7853%" y="517" width="0.0105%" height="15" fill="rgb(229,111,26)" fg:x="111841" fg:w="31"/><text x="38.0353%" y="527.50"></text></g><g><title>free@plt (46 samples, 0.02%)</title><rect x="37.7809%" y="565" width="0.0155%" height="15" fill="rgb(213,115,40)" fg:x="111828" fg:w="46"/><text x="38.0309%" y="575.50"></text></g><g><title>[dash] (10,674 samples, 3.61%)</title><rect x="34.1916%" y="581" width="3.6062%" height="15" fill="rgb(209,56,44)" fg:x="101204" fg:w="10674"/><text x="34.4416%" y="591.50">[das..</text></g><g><title>exc_page_fault (33 samples, 0.01%)</title><rect x="37.8126%" y="549" width="0.0111%" height="15" fill="rgb(230,108,32)" fg:x="111922" fg:w="33"/><text x="38.0626%" y="559.50"></text></g><g><title>do_user_addr_fault (33 samples, 0.01%)</title><rect x="37.8126%" y="533" width="0.0111%" height="15" fill="rgb(216,165,31)" fg:x="111922" fg:w="33"/><text x="38.0626%" y="543.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="37.8133%" y="517" width="0.0105%" height="15" fill="rgb(218,122,21)" fg:x="111924" fg:w="31"/><text x="38.0633%" y="527.50"></text></g><g><title>asm_exc_page_fault (41 samples, 0.01%)</title><rect x="37.8126%" y="565" width="0.0139%" height="15" fill="rgb(223,224,47)" fg:x="111922" fg:w="41"/><text x="38.0626%" y="575.50"></text></g><g><title>__longjmp_chk (54 samples, 0.02%)</title><rect x="37.8099%" y="581" width="0.0182%" height="15" fill="rgb(238,102,44)" fg:x="111914" fg:w="54"/><text x="38.0599%" y="591.50"></text></g><g><title>__alloc_pages_nodemask (34 samples, 0.01%)</title><rect x="37.8593%" y="485" width="0.0115%" height="15" fill="rgb(236,46,40)" fg:x="112060" fg:w="34"/><text x="38.1093%" y="495.50"></text></g><g><title>alloc_pages_vma (36 samples, 0.01%)</title><rect x="37.8589%" y="501" width="0.0122%" height="15" fill="rgb(247,202,50)" fg:x="112059" fg:w="36"/><text x="38.1089%" y="511.50"></text></g><g><title>do_user_addr_fault (167 samples, 0.06%)</title><rect x="37.8380%" y="549" width="0.0564%" height="15" fill="rgb(209,99,20)" fg:x="111997" fg:w="167"/><text x="38.0880%" y="559.50"></text></g><g><title>handle_mm_fault (148 samples, 0.05%)</title><rect x="37.8444%" y="533" width="0.0500%" height="15" fill="rgb(252,27,34)" fg:x="112016" fg:w="148"/><text x="38.0944%" y="543.50"></text></g><g><title>wp_page_copy (119 samples, 0.04%)</title><rect x="37.8542%" y="517" width="0.0402%" height="15" fill="rgb(215,206,23)" fg:x="112045" fg:w="119"/><text x="38.1042%" y="527.50"></text></g><g><title>exc_page_fault (169 samples, 0.06%)</title><rect x="37.8376%" y="565" width="0.0571%" height="15" fill="rgb(212,135,36)" fg:x="111996" fg:w="169"/><text x="38.0876%" y="575.50"></text></g><g><title>asm_exc_page_fault (179 samples, 0.06%)</title><rect x="37.8373%" y="581" width="0.0605%" height="15" fill="rgb(240,189,1)" fg:x="111995" fg:w="179"/><text x="38.0873%" y="591.50"></text></g><g><title>[dash] (11,089 samples, 3.75%)</title><rect x="34.1551%" y="597" width="3.7464%" height="15" fill="rgb(242,56,20)" fg:x="101096" fg:w="11089"/><text x="34.4051%" y="607.50">[das..</text></g><g><title>link_path_walk.part.0 (73 samples, 0.02%)</title><rect x="37.9170%" y="485" width="0.0247%" height="15" fill="rgb(247,132,33)" fg:x="112231" fg:w="73"/><text x="38.1670%" y="495.50"></text></g><g><title>walk_component (34 samples, 0.01%)</title><rect x="37.9302%" y="469" width="0.0115%" height="15" fill="rgb(208,149,11)" fg:x="112270" fg:w="34"/><text x="38.1802%" y="479.50"></text></g><g><title>filename_lookup (95 samples, 0.03%)</title><rect x="37.9147%" y="517" width="0.0321%" height="15" fill="rgb(211,33,11)" fg:x="112224" fg:w="95"/><text x="38.1647%" y="527.50"></text></g><g><title>path_lookupat (91 samples, 0.03%)</title><rect x="37.9160%" y="501" width="0.0307%" height="15" fill="rgb(221,29,38)" fg:x="112228" fg:w="91"/><text x="38.1660%" y="511.50"></text></g><g><title>__GI___xstat (147 samples, 0.05%)</title><rect x="37.9022%" y="597" width="0.0497%" height="15" fill="rgb(206,182,49)" fg:x="112187" fg:w="147"/><text x="38.1522%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.04%)</title><rect x="37.9109%" y="581" width="0.0409%" height="15" fill="rgb(216,140,1)" fg:x="112213" fg:w="121"/><text x="38.1609%" y="591.50"></text></g><g><title>do_syscall_64 (120 samples, 0.04%)</title><rect x="37.9113%" y="565" width="0.0405%" height="15" fill="rgb(232,57,40)" fg:x="112214" fg:w="120"/><text x="38.1613%" y="575.50"></text></g><g><title>__do_sys_newstat (119 samples, 0.04%)</title><rect x="37.9116%" y="549" width="0.0402%" height="15" fill="rgb(224,186,18)" fg:x="112215" fg:w="119"/><text x="38.1616%" y="559.50"></text></g><g><title>vfs_statx (117 samples, 0.04%)</title><rect x="37.9123%" y="533" width="0.0395%" height="15" fill="rgb(215,121,11)" fg:x="112217" fg:w="117"/><text x="38.1623%" y="543.50"></text></g><g><title>filemap_map_pages (68 samples, 0.02%)</title><rect x="37.9819%" y="501" width="0.0230%" height="15" fill="rgb(245,147,10)" fg:x="112423" fg:w="68"/><text x="38.2319%" y="511.50"></text></g><g><title>asm_exc_page_fault (76 samples, 0.03%)</title><rect x="37.9795%" y="565" width="0.0257%" height="15" fill="rgb(238,153,13)" fg:x="112416" fg:w="76"/><text x="38.2295%" y="575.50"></text></g><g><title>exc_page_fault (76 samples, 0.03%)</title><rect x="37.9795%" y="549" width="0.0257%" height="15" fill="rgb(233,108,0)" fg:x="112416" fg:w="76"/><text x="38.2295%" y="559.50"></text></g><g><title>do_user_addr_fault (76 samples, 0.03%)</title><rect x="37.9795%" y="533" width="0.0257%" height="15" fill="rgb(212,157,17)" fg:x="112416" fg:w="76"/><text x="38.2295%" y="543.50"></text></g><g><title>handle_mm_fault (73 samples, 0.02%)</title><rect x="37.9805%" y="517" width="0.0247%" height="15" fill="rgb(225,213,38)" fg:x="112419" fg:w="73"/><text x="38.2305%" y="527.50"></text></g><g><title>__run_fork_handlers (87 samples, 0.03%)</title><rect x="37.9768%" y="581" width="0.0294%" height="15" fill="rgb(248,16,11)" fg:x="112408" fg:w="87"/><text x="38.2268%" y="591.50"></text></g><g><title>page_add_file_rmap (36 samples, 0.01%)</title><rect x="38.0819%" y="469" width="0.0122%" height="15" fill="rgb(241,33,4)" fg:x="112719" fg:w="36"/><text x="38.3319%" y="479.50"></text></g><g><title>alloc_set_pte (79 samples, 0.03%)</title><rect x="38.0684%" y="485" width="0.0267%" height="15" fill="rgb(222,26,43)" fg:x="112679" fg:w="79"/><text x="38.3184%" y="495.50"></text></g><g><title>filemap_map_pages (201 samples, 0.07%)</title><rect x="38.0400%" y="501" width="0.0679%" height="15" fill="rgb(243,29,36)" fg:x="112595" fg:w="201"/><text x="38.2900%" y="511.50"></text></g><g><title>__alloc_pages_nodemask (50 samples, 0.02%)</title><rect x="38.1089%" y="485" width="0.0169%" height="15" fill="rgb(241,9,27)" fg:x="112799" fg:w="50"/><text x="38.3589%" y="495.50"></text></g><g><title>handle_mm_fault (287 samples, 0.10%)</title><rect x="38.0309%" y="517" width="0.0970%" height="15" fill="rgb(205,117,26)" fg:x="112568" fg:w="287"/><text x="38.2809%" y="527.50"></text></g><g><title>pte_alloc_one (59 samples, 0.02%)</title><rect x="38.1079%" y="501" width="0.0199%" height="15" fill="rgb(209,80,39)" fg:x="112796" fg:w="59"/><text x="38.3579%" y="511.50"></text></g><g><title>exc_page_fault (310 samples, 0.10%)</title><rect x="38.0245%" y="549" width="0.1047%" height="15" fill="rgb(239,155,6)" fg:x="112549" fg:w="310"/><text x="38.2745%" y="559.50"></text></g><g><title>do_user_addr_fault (309 samples, 0.10%)</title><rect x="38.0248%" y="533" width="0.1044%" height="15" fill="rgb(212,104,12)" fg:x="112550" fg:w="309"/><text x="38.2748%" y="543.50"></text></g><g><title>asm_exc_page_fault (329 samples, 0.11%)</title><rect x="38.0235%" y="565" width="0.1112%" height="15" fill="rgb(234,204,3)" fg:x="112546" fg:w="329"/><text x="38.2735%" y="575.50"></text></g><g><title>alloc_vmap_area (35 samples, 0.01%)</title><rect x="38.1569%" y="453" width="0.0118%" height="15" fill="rgb(251,218,7)" fg:x="112941" fg:w="35"/><text x="38.4069%" y="463.50"></text></g><g><title>__get_vm_area_node (39 samples, 0.01%)</title><rect x="38.1562%" y="469" width="0.0132%" height="15" fill="rgb(221,81,32)" fg:x="112939" fg:w="39"/><text x="38.4062%" y="479.50"></text></g><g><title>__vmalloc_node_range (55 samples, 0.02%)</title><rect x="38.1559%" y="485" width="0.0186%" height="15" fill="rgb(214,152,26)" fg:x="112938" fg:w="55"/><text x="38.4059%" y="495.50"></text></g><g><title>copy_creds (44 samples, 0.01%)</title><rect x="38.2008%" y="485" width="0.0149%" height="15" fill="rgb(223,22,3)" fg:x="113071" fg:w="44"/><text x="38.4508%" y="495.50"></text></g><g><title>prepare_creds (44 samples, 0.01%)</title><rect x="38.2008%" y="469" width="0.0149%" height="15" fill="rgb(207,174,7)" fg:x="113071" fg:w="44"/><text x="38.4508%" y="479.50"></text></g><g><title>dup_fd (30 samples, 0.01%)</title><rect x="38.2211%" y="485" width="0.0101%" height="15" fill="rgb(224,19,52)" fg:x="113131" fg:w="30"/><text x="38.4711%" y="495.50"></text></g><g><title>__rb_insert_augmented (44 samples, 0.01%)</title><rect x="38.2420%" y="469" width="0.0149%" height="15" fill="rgb(228,24,14)" fg:x="113193" fg:w="44"/><text x="38.4920%" y="479.50"></text></g><g><title>kmem_cache_alloc (71 samples, 0.02%)</title><rect x="38.2883%" y="437" width="0.0240%" height="15" fill="rgb(230,153,43)" fg:x="113330" fg:w="71"/><text x="38.5383%" y="447.50"></text></g><g><title>anon_vma_clone (144 samples, 0.05%)</title><rect x="38.2654%" y="453" width="0.0487%" height="15" fill="rgb(231,106,12)" fg:x="113262" fg:w="144"/><text x="38.5154%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (30 samples, 0.01%)</title><rect x="38.3218%" y="437" width="0.0101%" height="15" fill="rgb(215,92,2)" fg:x="113429" fg:w="30"/><text x="38.5718%" y="447.50"></text></g><g><title>kmem_cache_alloc (74 samples, 0.03%)</title><rect x="38.3170%" y="453" width="0.0250%" height="15" fill="rgb(249,143,25)" fg:x="113415" fg:w="74"/><text x="38.5670%" y="463.50"></text></g><g><title>anon_vma_fork (244 samples, 0.08%)</title><rect x="38.2610%" y="469" width="0.0824%" height="15" fill="rgb(252,7,35)" fg:x="113249" fg:w="244"/><text x="38.5110%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (33 samples, 0.01%)</title><rect x="38.3691%" y="437" width="0.0111%" height="15" fill="rgb(216,69,40)" fg:x="113569" fg:w="33"/><text x="38.6191%" y="447.50"></text></g><g><title>__pmd_alloc (36 samples, 0.01%)</title><rect x="38.3687%" y="453" width="0.0122%" height="15" fill="rgb(240,36,33)" fg:x="113568" fg:w="36"/><text x="38.6187%" y="463.50"></text></g><g><title>__alloc_pages_nodemask (52 samples, 0.02%)</title><rect x="38.3819%" y="421" width="0.0176%" height="15" fill="rgb(231,128,14)" fg:x="113607" fg:w="52"/><text x="38.6319%" y="431.50"></text></g><g><title>get_page_from_freelist (35 samples, 0.01%)</title><rect x="38.3877%" y="405" width="0.0118%" height="15" fill="rgb(245,143,14)" fg:x="113624" fg:w="35"/><text x="38.6377%" y="415.50"></text></g><g><title>__pte_alloc (56 samples, 0.02%)</title><rect x="38.3809%" y="453" width="0.0189%" height="15" fill="rgb(222,130,28)" fg:x="113604" fg:w="56"/><text x="38.6309%" y="463.50"></text></g><g><title>pte_alloc_one (53 samples, 0.02%)</title><rect x="38.3819%" y="437" width="0.0179%" height="15" fill="rgb(212,10,48)" fg:x="113607" fg:w="53"/><text x="38.6319%" y="447.50"></text></g><g><title>__pud_alloc (37 samples, 0.01%)</title><rect x="38.3998%" y="453" width="0.0125%" height="15" fill="rgb(254,118,45)" fg:x="113660" fg:w="37"/><text x="38.6498%" y="463.50"></text></g><g><title>get_zeroed_page (33 samples, 0.01%)</title><rect x="38.4012%" y="437" width="0.0111%" height="15" fill="rgb(228,6,45)" fg:x="113664" fg:w="33"/><text x="38.6512%" y="447.50"></text></g><g><title>copy_page_range (212 samples, 0.07%)</title><rect x="38.3434%" y="469" width="0.0716%" height="15" fill="rgb(241,18,35)" fg:x="113493" fg:w="212"/><text x="38.5934%" y="479.50"></text></g><g><title>mm_init (34 samples, 0.01%)</title><rect x="38.4221%" y="469" width="0.0115%" height="15" fill="rgb(227,214,53)" fg:x="113726" fg:w="34"/><text x="38.6721%" y="479.50"></text></g><g><title>pgd_alloc (32 samples, 0.01%)</title><rect x="38.4228%" y="453" width="0.0108%" height="15" fill="rgb(224,107,51)" fg:x="113728" fg:w="32"/><text x="38.6728%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (33 samples, 0.01%)</title><rect x="38.4630%" y="437" width="0.0111%" height="15" fill="rgb(248,60,28)" fg:x="113847" fg:w="33"/><text x="38.7130%" y="447.50"></text></g><g><title>vm_area_dup (141 samples, 0.05%)</title><rect x="38.4407%" y="469" width="0.0476%" height="15" fill="rgb(249,101,23)" fg:x="113781" fg:w="141"/><text x="38.6907%" y="479.50"></text></g><g><title>kmem_cache_alloc (92 samples, 0.03%)</title><rect x="38.4573%" y="453" width="0.0311%" height="15" fill="rgb(228,51,19)" fg:x="113830" fg:w="92"/><text x="38.7073%" y="463.50"></text></g><g><title>dup_mm (772 samples, 0.26%)</title><rect x="38.2312%" y="485" width="0.2608%" height="15" fill="rgb(213,20,6)" fg:x="113161" fg:w="772"/><text x="38.4812%" y="495.50"></text></g><g><title>kmem_cache_alloc_node (38 samples, 0.01%)</title><rect x="38.5045%" y="485" width="0.0128%" height="15" fill="rgb(212,124,10)" fg:x="113970" fg:w="38"/><text x="38.7545%" y="495.50"></text></g><g><title>kmem_cache_alloc_trace (35 samples, 0.01%)</title><rect x="38.5671%" y="421" width="0.0118%" height="15" fill="rgb(248,3,40)" fg:x="114155" fg:w="35"/><text x="38.8171%" y="431.50"></text></g><g><title>allocate_fake_cpuc (55 samples, 0.02%)</title><rect x="38.5826%" y="389" width="0.0186%" height="15" fill="rgb(223,178,23)" fg:x="114201" fg:w="55"/><text x="38.8326%" y="399.50"></text></g><g><title>kmem_cache_alloc_trace (41 samples, 0.01%)</title><rect x="38.5873%" y="373" width="0.0139%" height="15" fill="rgb(240,132,45)" fg:x="114215" fg:w="41"/><text x="38.8373%" y="383.50"></text></g><g><title>perf_try_init_event (114 samples, 0.04%)</title><rect x="38.5789%" y="421" width="0.0385%" height="15" fill="rgb(245,164,36)" fg:x="114190" fg:w="114"/><text x="38.8289%" y="431.50"></text></g><g><title>x86_pmu_event_init (114 samples, 0.04%)</title><rect x="38.5789%" y="405" width="0.0385%" height="15" fill="rgb(231,188,53)" fg:x="114190" fg:w="114"/><text x="38.8289%" y="415.50"></text></g><g><title>perf_event_alloc (190 samples, 0.06%)</title><rect x="38.5546%" y="437" width="0.0642%" height="15" fill="rgb(237,198,39)" fg:x="114118" fg:w="190"/><text x="38.8046%" y="447.50"></text></g><g><title>inherit_task_group.isra.0 (255 samples, 0.09%)</title><rect x="38.5336%" y="469" width="0.0862%" height="15" fill="rgb(223,120,35)" fg:x="114056" fg:w="255"/><text x="38.7836%" y="479.50"></text></g><g><title>inherit_event.constprop.0 (239 samples, 0.08%)</title><rect x="38.5390%" y="453" width="0.0807%" height="15" fill="rgb(253,107,49)" fg:x="114072" fg:w="239"/><text x="38.7890%" y="463.50"></text></g><g><title>perf_event_init_task (276 samples, 0.09%)</title><rect x="38.5292%" y="485" width="0.0932%" height="15" fill="rgb(216,44,31)" fg:x="114043" fg:w="276"/><text x="38.7792%" y="495.50"></text></g><g><title>copy_process (1,485 samples, 0.50%)</title><rect x="38.1360%" y="501" width="0.5017%" height="15" fill="rgb(253,87,21)" fg:x="112879" fg:w="1485"/><text x="38.3860%" y="511.50"></text></g><g><title>do_syscall_64 (1,593 samples, 0.54%)</title><rect x="38.1353%" y="549" width="0.5382%" height="15" fill="rgb(226,18,2)" fg:x="112877" fg:w="1593"/><text x="38.3853%" y="559.50"></text></g><g><title>__do_sys_clone (1,593 samples, 0.54%)</title><rect x="38.1353%" y="533" width="0.5382%" height="15" fill="rgb(216,8,46)" fg:x="112877" fg:w="1593"/><text x="38.3853%" y="543.50"></text></g><g><title>kernel_clone (1,591 samples, 0.54%)</title><rect x="38.1360%" y="517" width="0.5375%" height="15" fill="rgb(226,140,39)" fg:x="112879" fg:w="1591"/><text x="38.3860%" y="527.50"></text></g><g><title>wake_up_new_task (105 samples, 0.04%)</title><rect x="38.6380%" y="501" width="0.0355%" height="15" fill="rgb(221,194,54)" fg:x="114365" fg:w="105"/><text x="38.8880%" y="511.50"></text></g><g><title>select_task_rq_fair (46 samples, 0.02%)</title><rect x="38.6579%" y="485" width="0.0155%" height="15" fill="rgb(213,92,11)" fg:x="114424" fg:w="46"/><text x="38.9079%" y="495.50"></text></g><g><title>find_idlest_group (30 samples, 0.01%)</title><rect x="38.6633%" y="469" width="0.0101%" height="15" fill="rgb(229,162,46)" fg:x="114440" fg:w="30"/><text x="38.9133%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,605 samples, 0.54%)</title><rect x="38.1349%" y="565" width="0.5422%" height="15" fill="rgb(214,111,36)" fg:x="112876" fg:w="1605"/><text x="38.3849%" y="575.50"></text></g><g><title>find_vma (59 samples, 0.02%)</title><rect x="38.8103%" y="469" width="0.0199%" height="15" fill="rgb(207,6,21)" fg:x="114875" fg:w="59"/><text x="39.0603%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (32 samples, 0.01%)</title><rect x="38.8637%" y="421" width="0.0108%" height="15" fill="rgb(213,127,38)" fg:x="115033" fg:w="32"/><text x="39.1137%" y="431.50"></text></g><g><title>alloc_pages_vma (36 samples, 0.01%)</title><rect x="38.8627%" y="437" width="0.0122%" height="15" fill="rgb(238,118,32)" fg:x="115030" fg:w="36"/><text x="39.1127%" y="447.50"></text></g><g><title>handle_mm_fault (172 samples, 0.06%)</title><rect x="38.8302%" y="469" width="0.0581%" height="15" fill="rgb(240,139,39)" fg:x="114934" fg:w="172"/><text x="39.0802%" y="479.50"></text></g><g><title>wp_page_copy (84 samples, 0.03%)</title><rect x="38.8600%" y="453" width="0.0284%" height="15" fill="rgb(235,10,37)" fg:x="115022" fg:w="84"/><text x="39.1100%" y="463.50"></text></g><g><title>do_user_addr_fault (283 samples, 0.10%)</title><rect x="38.7941%" y="485" width="0.0956%" height="15" fill="rgb(249,171,38)" fg:x="114827" fg:w="283"/><text x="39.0441%" y="495.50"></text></g><g><title>exc_page_fault (289 samples, 0.10%)</title><rect x="38.7927%" y="501" width="0.0976%" height="15" fill="rgb(242,144,32)" fg:x="114823" fg:w="289"/><text x="39.0427%" y="511.50"></text></g><g><title>asm_exc_page_fault (529 samples, 0.18%)</title><rect x="38.7120%" y="517" width="0.1787%" height="15" fill="rgb(217,117,21)" fg:x="114584" fg:w="529"/><text x="38.9620%" y="527.50"></text></g><g><title>__put_user_nocheck_4 (556 samples, 0.19%)</title><rect x="38.7039%" y="533" width="0.1878%" height="15" fill="rgb(249,87,1)" fg:x="114560" fg:w="556"/><text x="38.9539%" y="543.50"></text></g><g><title>__memcg_kmem_uncharge_page (41 samples, 0.01%)</title><rect x="38.9414%" y="485" width="0.0139%" height="15" fill="rgb(248,196,48)" fg:x="115263" fg:w="41"/><text x="39.1914%" y="495.50"></text></g><g><title>__free_pages_ok (98 samples, 0.03%)</title><rect x="38.9313%" y="501" width="0.0331%" height="15" fill="rgb(251,206,33)" fg:x="115233" fg:w="98"/><text x="39.1813%" y="511.50"></text></g><g><title>__mmdrop (190 samples, 0.06%)</title><rect x="38.9204%" y="517" width="0.0642%" height="15" fill="rgb(232,141,28)" fg:x="115201" fg:w="190"/><text x="39.1704%" y="527.50"></text></g><g><title>pgd_free (57 samples, 0.02%)</title><rect x="38.9654%" y="501" width="0.0193%" height="15" fill="rgb(209,167,14)" fg:x="115334" fg:w="57"/><text x="39.2154%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (7,011 samples, 2.37%)</title><rect x="38.9846%" y="517" width="2.3687%" height="15" fill="rgb(225,11,50)" fg:x="115391" fg:w="7011"/><text x="39.2346%" y="527.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,956 samples, 2.35%)</title><rect x="39.0032%" y="501" width="2.3501%" height="15" fill="rgb(209,50,20)" fg:x="115446" fg:w="6956"/><text x="39.2532%" y="511.50">_..</text></g><g><title>native_write_msr (6,937 samples, 2.34%)</title><rect x="39.0096%" y="485" width="2.3437%" height="15" fill="rgb(212,17,46)" fg:x="115465" fg:w="6937"/><text x="39.2596%" y="495.50">n..</text></g><g><title>__wake_up_common (52 samples, 0.02%)</title><rect x="41.3952%" y="357" width="0.0176%" height="15" fill="rgb(216,101,39)" fg:x="122526" fg:w="52"/><text x="41.6452%" y="367.50"></text></g><g><title>pollwake (45 samples, 0.02%)</title><rect x="41.3975%" y="341" width="0.0152%" height="15" fill="rgb(212,228,48)" fg:x="122533" fg:w="45"/><text x="41.6475%" y="351.50"></text></g><g><title>try_to_wake_up (44 samples, 0.01%)</title><rect x="41.3979%" y="325" width="0.0149%" height="15" fill="rgb(250,6,50)" fg:x="122534" fg:w="44"/><text x="41.6479%" y="335.50"></text></g><g><title>irq_work_run (67 samples, 0.02%)</title><rect x="41.3915%" y="453" width="0.0226%" height="15" fill="rgb(250,160,48)" fg:x="122515" fg:w="67"/><text x="41.6415%" y="463.50"></text></g><g><title>irq_work_run_list (67 samples, 0.02%)</title><rect x="41.3915%" y="437" width="0.0226%" height="15" fill="rgb(244,216,33)" fg:x="122515" fg:w="67"/><text x="41.6415%" y="447.50"></text></g><g><title>irq_work_single (64 samples, 0.02%)</title><rect x="41.3925%" y="421" width="0.0216%" height="15" fill="rgb(207,157,5)" fg:x="122518" fg:w="64"/><text x="41.6425%" y="431.50"></text></g><g><title>perf_pending_event (64 samples, 0.02%)</title><rect x="41.3925%" y="405" width="0.0216%" height="15" fill="rgb(228,199,8)" fg:x="122518" fg:w="64"/><text x="41.6425%" y="415.50"></text></g><g><title>perf_event_wakeup (58 samples, 0.02%)</title><rect x="41.3945%" y="389" width="0.0196%" height="15" fill="rgb(227,80,20)" fg:x="122524" fg:w="58"/><text x="41.6445%" y="399.50"></text></g><g><title>__wake_up_common_lock (56 samples, 0.02%)</title><rect x="41.3952%" y="373" width="0.0189%" height="15" fill="rgb(222,9,33)" fg:x="122526" fg:w="56"/><text x="41.6452%" y="383.50"></text></g><g><title>asm_call_sysvec_on_stack (89 samples, 0.03%)</title><rect x="41.3854%" y="485" width="0.0301%" height="15" fill="rgb(239,44,28)" fg:x="122497" fg:w="89"/><text x="41.6354%" y="495.50"></text></g><g><title>__sysvec_irq_work (76 samples, 0.03%)</title><rect x="41.3898%" y="469" width="0.0257%" height="15" fill="rgb(249,187,43)" fg:x="122510" fg:w="76"/><text x="41.6398%" y="479.50"></text></g><g><title>asm_sysvec_irq_work (180 samples, 0.06%)</title><rect x="41.3604%" y="517" width="0.0608%" height="15" fill="rgb(216,141,28)" fg:x="122423" fg:w="180"/><text x="41.6104%" y="527.50"></text></g><g><title>sysvec_irq_work (111 samples, 0.04%)</title><rect x="41.3837%" y="501" width="0.0375%" height="15" fill="rgb(230,154,53)" fg:x="122492" fg:w="111"/><text x="41.6337%" y="511.50"></text></g><g><title>kmem_cache_free (42 samples, 0.01%)</title><rect x="41.4246%" y="517" width="0.0142%" height="15" fill="rgb(227,82,4)" fg:x="122613" fg:w="42"/><text x="41.6746%" y="527.50"></text></g><g><title>__queue_work (31 samples, 0.01%)</title><rect x="41.4540%" y="485" width="0.0105%" height="15" fill="rgb(220,107,16)" fg:x="122700" fg:w="31"/><text x="41.7040%" y="495.50"></text></g><g><title>queue_work_on (32 samples, 0.01%)</title><rect x="41.4540%" y="501" width="0.0108%" height="15" fill="rgb(207,187,2)" fg:x="122700" fg:w="32"/><text x="41.7040%" y="511.50"></text></g><g><title>put_task_stack (69 samples, 0.02%)</title><rect x="41.4421%" y="517" width="0.0233%" height="15" fill="rgb(210,162,52)" fg:x="122665" fg:w="69"/><text x="41.6921%" y="527.50"></text></g><g><title>schedule_tail (8,208 samples, 2.77%)</title><rect x="38.6948%" y="549" width="2.7731%" height="15" fill="rgb(217,216,49)" fg:x="114533" fg:w="8208"/><text x="38.9448%" y="559.50">sc..</text></g><g><title>finish_task_switch (7,610 samples, 2.57%)</title><rect x="38.8968%" y="533" width="2.5710%" height="15" fill="rgb(218,146,49)" fg:x="115131" fg:w="7610"/><text x="39.1468%" y="543.50">fi..</text></g><g><title>ret_from_fork (8,264 samples, 2.79%)</title><rect x="38.6877%" y="565" width="2.7920%" height="15" fill="rgb(216,55,40)" fg:x="114512" fg:w="8264"/><text x="38.9377%" y="575.50">re..</text></g><g><title>syscall_exit_to_user_mode (35 samples, 0.01%)</title><rect x="41.4678%" y="549" width="0.0118%" height="15" fill="rgb(208,196,21)" fg:x="122741" fg:w="35"/><text x="41.7178%" y="559.50"></text></g><g><title>exit_to_user_mode_prepare (34 samples, 0.01%)</title><rect x="41.4682%" y="533" width="0.0115%" height="15" fill="rgb(242,117,42)" fg:x="122742" fg:w="34"/><text x="41.7182%" y="543.50"></text></g><g><title>switch_fpu_return (31 samples, 0.01%)</title><rect x="41.4692%" y="517" width="0.0105%" height="15" fill="rgb(210,11,23)" fg:x="122745" fg:w="31"/><text x="41.7192%" y="527.50"></text></g><g><title>arch_fork (10,282 samples, 3.47%)</title><rect x="38.0062%" y="581" width="3.4738%" height="15" fill="rgb(217,110,2)" fg:x="112495" fg:w="10282"/><text x="38.2562%" y="591.50">arc..</text></g><g><title>handle_mm_fault (109 samples, 0.04%)</title><rect x="41.4864%" y="533" width="0.0368%" height="15" fill="rgb(229,77,54)" fg:x="122796" fg:w="109"/><text x="41.7364%" y="543.50"></text></g><g><title>wp_page_copy (78 samples, 0.03%)</title><rect x="41.4969%" y="517" width="0.0264%" height="15" fill="rgb(218,53,16)" fg:x="122827" fg:w="78"/><text x="41.7469%" y="527.50"></text></g><g><title>do_user_addr_fault (128 samples, 0.04%)</title><rect x="41.4803%" y="549" width="0.0432%" height="15" fill="rgb(215,38,13)" fg:x="122778" fg:w="128"/><text x="41.7303%" y="559.50"></text></g><g><title>exc_page_fault (130 samples, 0.04%)</title><rect x="41.4800%" y="565" width="0.0439%" height="15" fill="rgb(235,42,18)" fg:x="122777" fg:w="130"/><text x="41.7300%" y="575.50"></text></g><g><title>asm_exc_page_fault (131 samples, 0.04%)</title><rect x="41.4800%" y="581" width="0.0443%" height="15" fill="rgb(219,66,54)" fg:x="122777" fg:w="131"/><text x="41.7300%" y="591.50"></text></g><g><title>__libc_fork (10,560 samples, 3.57%)</title><rect x="37.9589%" y="597" width="3.5677%" height="15" fill="rgb(222,205,4)" fg:x="112355" fg:w="10560"/><text x="38.2089%" y="607.50">__li..</text></g><g><title>alloc_set_pte (49 samples, 0.02%)</title><rect x="41.5682%" y="517" width="0.0166%" height="15" fill="rgb(227,213,46)" fg:x="123038" fg:w="49"/><text x="41.8182%" y="527.50"></text></g><g><title>filemap_map_pages (153 samples, 0.05%)</title><rect x="41.5405%" y="533" width="0.0517%" height="15" fill="rgb(250,145,42)" fg:x="122956" fg:w="153"/><text x="41.7905%" y="543.50"></text></g><g><title>handle_mm_fault (178 samples, 0.06%)</title><rect x="41.5340%" y="549" width="0.0601%" height="15" fill="rgb(219,15,2)" fg:x="122937" fg:w="178"/><text x="41.7840%" y="559.50"></text></g><g><title>exc_page_fault (199 samples, 0.07%)</title><rect x="41.5286%" y="581" width="0.0672%" height="15" fill="rgb(231,181,52)" fg:x="122921" fg:w="199"/><text x="41.7786%" y="591.50"></text></g><g><title>do_user_addr_fault (197 samples, 0.07%)</title><rect x="41.5293%" y="565" width="0.0666%" height="15" fill="rgb(235,1,42)" fg:x="122923" fg:w="197"/><text x="41.7793%" y="575.50"></text></g><g><title>asm_exc_page_fault (203 samples, 0.07%)</title><rect x="41.5276%" y="597" width="0.0686%" height="15" fill="rgb(249,88,27)" fg:x="122918" fg:w="203"/><text x="41.7776%" y="607.50"></text></g><g><title>[dash] (22,085 samples, 7.46%)</title><rect x="34.1412%" y="613" width="7.4614%" height="15" fill="rgb(235,145,16)" fg:x="101055" fg:w="22085"/><text x="34.3912%" y="623.50">[dash]</text></g><g><title>exc_page_fault (38 samples, 0.01%)</title><rect x="41.6080%" y="581" width="0.0128%" height="15" fill="rgb(237,114,19)" fg:x="123156" fg:w="38"/><text x="41.8580%" y="591.50"></text></g><g><title>do_user_addr_fault (38 samples, 0.01%)</title><rect x="41.6080%" y="565" width="0.0128%" height="15" fill="rgb(238,51,50)" fg:x="123156" fg:w="38"/><text x="41.8580%" y="575.50"></text></g><g><title>handle_mm_fault (37 samples, 0.01%)</title><rect x="41.6084%" y="549" width="0.0125%" height="15" fill="rgb(205,194,25)" fg:x="123157" fg:w="37"/><text x="41.8584%" y="559.50"></text></g><g><title>asm_exc_page_fault (47 samples, 0.02%)</title><rect x="41.6077%" y="597" width="0.0159%" height="15" fill="rgb(215,203,17)" fg:x="123155" fg:w="47"/><text x="41.8577%" y="607.50"></text></g><g><title>__GI___close (84 samples, 0.03%)</title><rect x="41.6030%" y="613" width="0.0284%" height="15" fill="rgb(233,112,49)" fg:x="123141" fg:w="84"/><text x="41.8530%" y="623.50"></text></g><g><title>asm_exc_page_fault (30 samples, 0.01%)</title><rect x="41.6330%" y="597" width="0.0101%" height="15" fill="rgb(241,130,26)" fg:x="123230" fg:w="30"/><text x="41.8830%" y="607.50"></text></g><g><title>exc_page_fault (30 samples, 0.01%)</title><rect x="41.6330%" y="581" width="0.0101%" height="15" fill="rgb(252,223,19)" fg:x="123230" fg:w="30"/><text x="41.8830%" y="591.50"></text></g><g><title>do_user_addr_fault (30 samples, 0.01%)</title><rect x="41.6330%" y="565" width="0.0101%" height="15" fill="rgb(211,95,25)" fg:x="123230" fg:w="30"/><text x="41.8830%" y="575.50"></text></g><g><title>__GI___dup2 (50 samples, 0.02%)</title><rect x="41.6313%" y="613" width="0.0169%" height="15" fill="rgb(251,182,27)" fg:x="123225" fg:w="50"/><text x="41.8813%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.03%)</title><rect x="41.6486%" y="597" width="0.0257%" height="15" fill="rgb(238,24,4)" fg:x="123276" fg:w="76"/><text x="41.8986%" y="607.50"></text></g><g><title>do_syscall_64 (76 samples, 0.03%)</title><rect x="41.6486%" y="581" width="0.0257%" height="15" fill="rgb(224,220,25)" fg:x="123276" fg:w="76"/><text x="41.8986%" y="591.50"></text></g><g><title>__x64_sys_pipe (75 samples, 0.03%)</title><rect x="41.6489%" y="565" width="0.0253%" height="15" fill="rgb(239,133,26)" fg:x="123277" fg:w="75"/><text x="41.8989%" y="575.50"></text></g><g><title>do_pipe2 (75 samples, 0.03%)</title><rect x="41.6489%" y="549" width="0.0253%" height="15" fill="rgb(211,94,48)" fg:x="123277" fg:w="75"/><text x="41.8989%" y="559.50"></text></g><g><title>create_pipe_files (69 samples, 0.02%)</title><rect x="41.6509%" y="533" width="0.0233%" height="15" fill="rgb(239,87,6)" fg:x="123283" fg:w="69"/><text x="41.9009%" y="543.50"></text></g><g><title>__GI_pipe (78 samples, 0.03%)</title><rect x="41.6482%" y="613" width="0.0264%" height="15" fill="rgb(227,62,0)" fg:x="123275" fg:w="78"/><text x="41.8982%" y="623.50"></text></g><g><title>[dash] (22,324 samples, 7.54%)</title><rect x="34.1345%" y="629" width="7.5421%" height="15" fill="rgb(211,226,4)" fg:x="101035" fg:w="22324"/><text x="34.3845%" y="639.50">[dash]</text></g><g><title>do_user_addr_fault (50 samples, 0.02%)</title><rect x="41.6786%" y="581" width="0.0169%" height="15" fill="rgb(253,38,52)" fg:x="123365" fg:w="50"/><text x="41.9286%" y="591.50"></text></g><g><title>handle_mm_fault (48 samples, 0.02%)</title><rect x="41.6793%" y="565" width="0.0162%" height="15" fill="rgb(229,126,40)" fg:x="123367" fg:w="48"/><text x="41.9293%" y="575.50"></text></g><g><title>asm_exc_page_fault (51 samples, 0.02%)</title><rect x="41.6786%" y="613" width="0.0172%" height="15" fill="rgb(229,165,44)" fg:x="123365" fg:w="51"/><text x="41.9286%" y="623.50"></text></g><g><title>exc_page_fault (51 samples, 0.02%)</title><rect x="41.6786%" y="597" width="0.0172%" height="15" fill="rgb(247,95,47)" fg:x="123365" fg:w="51"/><text x="41.9286%" y="607.50"></text></g><g><title>[libc-2.31.so] (60 samples, 0.02%)</title><rect x="41.6766%" y="629" width="0.0203%" height="15" fill="rgb(216,140,30)" fg:x="123359" fg:w="60"/><text x="41.9266%" y="639.50"></text></g><g><title>__GI___libc_malloc (33 samples, 0.01%)</title><rect x="41.6969%" y="629" width="0.0111%" height="15" fill="rgb(246,214,8)" fg:x="123419" fg:w="33"/><text x="41.9469%" y="639.50"></text></g><g><title>filemap_map_pages (46 samples, 0.02%)</title><rect x="41.7185%" y="517" width="0.0155%" height="15" fill="rgb(227,224,15)" fg:x="123483" fg:w="46"/><text x="41.9685%" y="527.50"></text></g><g><title>handle_mm_fault (51 samples, 0.02%)</title><rect x="41.7171%" y="533" width="0.0172%" height="15" fill="rgb(233,175,4)" fg:x="123479" fg:w="51"/><text x="41.9671%" y="543.50"></text></g><g><title>exc_page_fault (56 samples, 0.02%)</title><rect x="41.7158%" y="565" width="0.0189%" height="15" fill="rgb(221,66,45)" fg:x="123475" fg:w="56"/><text x="41.9658%" y="575.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.02%)</title><rect x="41.7158%" y="549" width="0.0189%" height="15" fill="rgb(221,178,18)" fg:x="123475" fg:w="56"/><text x="41.9658%" y="559.50"></text></g><g><title>__m128i_shift_right (63 samples, 0.02%)</title><rect x="41.7138%" y="613" width="0.0213%" height="15" fill="rgb(213,81,29)" fg:x="123469" fg:w="63"/><text x="41.9638%" y="623.50"></text></g><g><title>_mm_loadu_si128 (63 samples, 0.02%)</title><rect x="41.7138%" y="597" width="0.0213%" height="15" fill="rgb(220,89,49)" fg:x="123469" fg:w="63"/><text x="41.9638%" y="607.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.02%)</title><rect x="41.7158%" y="581" width="0.0193%" height="15" fill="rgb(227,60,33)" fg:x="123475" fg:w="57"/><text x="41.9658%" y="591.50"></text></g><g><title>asm_exc_page_fault (36 samples, 0.01%)</title><rect x="41.7351%" y="613" width="0.0122%" height="15" fill="rgb(205,113,12)" fg:x="123532" fg:w="36"/><text x="41.9851%" y="623.50"></text></g><g><title>exc_page_fault (35 samples, 0.01%)</title><rect x="41.7354%" y="597" width="0.0118%" height="15" fill="rgb(211,32,1)" fg:x="123533" fg:w="35"/><text x="41.9854%" y="607.50"></text></g><g><title>do_user_addr_fault (35 samples, 0.01%)</title><rect x="41.7354%" y="581" width="0.0118%" height="15" fill="rgb(246,2,12)" fg:x="123533" fg:w="35"/><text x="41.9854%" y="591.50"></text></g><g><title>handle_mm_fault (34 samples, 0.01%)</title><rect x="41.7357%" y="565" width="0.0115%" height="15" fill="rgb(243,37,27)" fg:x="123534" fg:w="34"/><text x="41.9857%" y="575.50"></text></g><g><title>filemap_map_pages (30 samples, 0.01%)</title><rect x="41.7371%" y="549" width="0.0101%" height="15" fill="rgb(248,211,31)" fg:x="123538" fg:w="30"/><text x="41.9871%" y="559.50"></text></g><g><title>__strcspn_sse42 (114 samples, 0.04%)</title><rect x="41.7097%" y="629" width="0.0385%" height="15" fill="rgb(242,146,47)" fg:x="123457" fg:w="114"/><text x="41.9597%" y="639.50"></text></g><g><title>[dash] (22,590 samples, 7.63%)</title><rect x="34.1203%" y="645" width="7.6320%" height="15" fill="rgb(206,70,20)" fg:x="100993" fg:w="22590"/><text x="34.3703%" y="655.50">[dash]</text></g><g><title>asm_exc_page_fault (46 samples, 0.02%)</title><rect x="41.7590%" y="629" width="0.0155%" height="15" fill="rgb(215,10,51)" fg:x="123603" fg:w="46"/><text x="42.0090%" y="639.50"></text></g><g><title>exc_page_fault (45 samples, 0.02%)</title><rect x="41.7594%" y="613" width="0.0152%" height="15" fill="rgb(243,178,53)" fg:x="123604" fg:w="45"/><text x="42.0094%" y="623.50"></text></g><g><title>do_user_addr_fault (45 samples, 0.02%)</title><rect x="41.7594%" y="597" width="0.0152%" height="15" fill="rgb(233,221,20)" fg:x="123604" fg:w="45"/><text x="42.0094%" y="607.50"></text></g><g><title>handle_mm_fault (42 samples, 0.01%)</title><rect x="41.7604%" y="581" width="0.0142%" height="15" fill="rgb(218,95,35)" fg:x="123607" fg:w="42"/><text x="42.0104%" y="591.50"></text></g><g><title>filemap_map_pages (38 samples, 0.01%)</title><rect x="41.7617%" y="565" width="0.0128%" height="15" fill="rgb(229,13,5)" fg:x="123611" fg:w="38"/><text x="42.0117%" y="575.50"></text></g><g><title>__GI___close (64 samples, 0.02%)</title><rect x="41.7574%" y="645" width="0.0216%" height="15" fill="rgb(252,164,30)" fg:x="123598" fg:w="64"/><text x="42.0074%" y="655.50"></text></g><g><title>filemap_map_pages (41 samples, 0.01%)</title><rect x="41.7827%" y="565" width="0.0139%" height="15" fill="rgb(232,68,36)" fg:x="123673" fg:w="41"/><text x="42.0327%" y="575.50"></text></g><g><title>handle_mm_fault (47 samples, 0.02%)</title><rect x="41.7820%" y="581" width="0.0159%" height="15" fill="rgb(219,59,54)" fg:x="123671" fg:w="47"/><text x="42.0320%" y="591.50"></text></g><g><title>exc_page_fault (50 samples, 0.02%)</title><rect x="41.7813%" y="613" width="0.0169%" height="15" fill="rgb(250,92,33)" fg:x="123669" fg:w="50"/><text x="42.0313%" y="623.50"></text></g><g><title>do_user_addr_fault (50 samples, 0.02%)</title><rect x="41.7813%" y="597" width="0.0169%" height="15" fill="rgb(229,162,54)" fg:x="123669" fg:w="50"/><text x="42.0313%" y="607.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.02%)</title><rect x="41.7813%" y="629" width="0.0196%" height="15" fill="rgb(244,114,52)" fg:x="123669" fg:w="58"/><text x="42.0313%" y="639.50"></text></g><g><title>__GI__setjmp (66 samples, 0.02%)</title><rect x="41.7796%" y="645" width="0.0223%" height="15" fill="rgb(212,211,43)" fg:x="123664" fg:w="66"/><text x="42.0296%" y="655.50"></text></g><g><title>handle_mm_fault (47 samples, 0.02%)</title><rect x="41.8060%" y="597" width="0.0159%" height="15" fill="rgb(226,147,8)" fg:x="123742" fg:w="47"/><text x="42.0560%" y="607.50"></text></g><g><title>exc_page_fault (60 samples, 0.02%)</title><rect x="41.8030%" y="629" width="0.0203%" height="15" fill="rgb(226,23,13)" fg:x="123733" fg:w="60"/><text x="42.0530%" y="639.50"></text></g><g><title>do_user_addr_fault (59 samples, 0.02%)</title><rect x="41.8033%" y="613" width="0.0199%" height="15" fill="rgb(240,63,4)" fg:x="123734" fg:w="59"/><text x="42.0533%" y="623.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.02%)</title><rect x="41.8030%" y="645" width="0.0209%" height="15" fill="rgb(221,1,32)" fg:x="123733" fg:w="62"/><text x="42.0530%" y="655.50"></text></g><g><title>close@plt (35 samples, 0.01%)</title><rect x="41.8293%" y="645" width="0.0118%" height="15" fill="rgb(242,117,10)" fg:x="123811" fg:w="35"/><text x="42.0793%" y="655.50"></text></g><g><title>[dash] (22,905 samples, 7.74%)</title><rect x="34.1071%" y="661" width="7.7384%" height="15" fill="rgb(249,172,44)" fg:x="100954" fg:w="22905"/><text x="34.3571%" y="671.50">[dash]</text></g><g><title>__perf_event_task_sched_in (147 samples, 0.05%)</title><rect x="41.8692%" y="533" width="0.0497%" height="15" fill="rgb(244,46,45)" fg:x="123929" fg:w="147"/><text x="42.1192%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (147 samples, 0.05%)</title><rect x="41.8692%" y="517" width="0.0497%" height="15" fill="rgb(206,43,17)" fg:x="123929" fg:w="147"/><text x="42.1192%" y="527.50"></text></g><g><title>native_write_msr (147 samples, 0.05%)</title><rect x="41.8692%" y="501" width="0.0497%" height="15" fill="rgb(239,218,39)" fg:x="123929" fg:w="147"/><text x="42.1192%" y="511.50"></text></g><g><title>finish_task_switch (171 samples, 0.06%)</title><rect x="41.8661%" y="549" width="0.0578%" height="15" fill="rgb(208,169,54)" fg:x="123920" fg:w="171"/><text x="42.1161%" y="559.50"></text></g><g><title>schedule (181 samples, 0.06%)</title><rect x="41.8651%" y="581" width="0.0612%" height="15" fill="rgb(247,25,42)" fg:x="123917" fg:w="181"/><text x="42.1151%" y="591.50"></text></g><g><title>__schedule (180 samples, 0.06%)</title><rect x="41.8655%" y="565" width="0.0608%" height="15" fill="rgb(226,23,31)" fg:x="123918" fg:w="180"/><text x="42.1155%" y="575.50"></text></g><g><title>release_task (53 samples, 0.02%)</title><rect x="41.9303%" y="565" width="0.0179%" height="15" fill="rgb(247,16,28)" fg:x="124110" fg:w="53"/><text x="42.1803%" y="575.50"></text></g><g><title>do_syscall_64 (275 samples, 0.09%)</title><rect x="41.8560%" y="629" width="0.0929%" height="15" fill="rgb(231,147,38)" fg:x="123890" fg:w="275"/><text x="42.1060%" y="639.50"></text></g><g><title>kernel_wait4 (271 samples, 0.09%)</title><rect x="41.8574%" y="613" width="0.0916%" height="15" fill="rgb(253,81,48)" fg:x="123894" fg:w="271"/><text x="42.1074%" y="623.50"></text></g><g><title>do_wait (265 samples, 0.09%)</title><rect x="41.8594%" y="597" width="0.0895%" height="15" fill="rgb(249,222,43)" fg:x="123900" fg:w="265"/><text x="42.1094%" y="607.50"></text></g><g><title>wait_consider_task (67 samples, 0.02%)</title><rect x="41.9263%" y="581" width="0.0226%" height="15" fill="rgb(221,3,27)" fg:x="124098" fg:w="67"/><text x="42.1763%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.10%)</title><rect x="41.8560%" y="645" width="0.0980%" height="15" fill="rgb(228,180,5)" fg:x="123890" fg:w="290"/><text x="42.1060%" y="655.50"></text></g><g><title>__GI___wait4 (325 samples, 0.11%)</title><rect x="41.8465%" y="661" width="0.1098%" height="15" fill="rgb(227,131,42)" fg:x="123862" fg:w="325"/><text x="42.0965%" y="671.50"></text></g><g><title>handle_mm_fault (55 samples, 0.02%)</title><rect x="41.9634%" y="597" width="0.0186%" height="15" fill="rgb(212,3,39)" fg:x="124208" fg:w="55"/><text x="42.2134%" y="607.50"></text></g><g><title>filemap_map_pages (47 samples, 0.02%)</title><rect x="41.9661%" y="581" width="0.0159%" height="15" fill="rgb(226,45,5)" fg:x="124216" fg:w="47"/><text x="42.2161%" y="591.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.02%)</title><rect x="41.9587%" y="645" width="0.0236%" height="15" fill="rgb(215,167,45)" fg:x="124194" fg:w="70"/><text x="42.2087%" y="655.50"></text></g><g><title>exc_page_fault (70 samples, 0.02%)</title><rect x="41.9587%" y="629" width="0.0236%" height="15" fill="rgb(250,218,53)" fg:x="124194" fg:w="70"/><text x="42.2087%" y="639.50"></text></g><g><title>do_user_addr_fault (70 samples, 0.02%)</title><rect x="41.9587%" y="613" width="0.0236%" height="15" fill="rgb(207,140,0)" fg:x="124194" fg:w="70"/><text x="42.2087%" y="623.50"></text></g><g><title>__longjmp_chk (80 samples, 0.03%)</title><rect x="41.9567%" y="661" width="0.0270%" height="15" fill="rgb(238,133,51)" fg:x="124188" fg:w="80"/><text x="42.2067%" y="671.50"></text></g><g><title>handle_mm_fault (93 samples, 0.03%)</title><rect x="41.9905%" y="613" width="0.0314%" height="15" fill="rgb(218,203,53)" fg:x="124288" fg:w="93"/><text x="42.2405%" y="623.50"></text></g><g><title>wp_page_copy (70 samples, 0.02%)</title><rect x="41.9982%" y="597" width="0.0236%" height="15" fill="rgb(226,184,25)" fg:x="124311" fg:w="70"/><text x="42.2482%" y="607.50"></text></g><g><title>exc_page_fault (109 samples, 0.04%)</title><rect x="41.9854%" y="645" width="0.0368%" height="15" fill="rgb(231,121,21)" fg:x="124273" fg:w="109"/><text x="42.2354%" y="655.50"></text></g><g><title>do_user_addr_fault (107 samples, 0.04%)</title><rect x="41.9861%" y="629" width="0.0361%" height="15" fill="rgb(251,14,34)" fg:x="124275" fg:w="107"/><text x="42.2361%" y="639.50"></text></g><g><title>asm_exc_page_fault (118 samples, 0.04%)</title><rect x="41.9854%" y="661" width="0.0399%" height="15" fill="rgb(249,193,11)" fg:x="124273" fg:w="118"/><text x="42.2354%" y="671.50"></text></g><g><title>[dash] (23,520 samples, 7.95%)</title><rect x="34.0852%" y="677" width="7.9462%" height="15" fill="rgb(220,172,37)" fg:x="100889" fg:w="23520"/><text x="34.3352%" y="687.50">[dash]</text></g><g><title>exc_page_fault (60 samples, 0.02%)</title><rect x="42.0405%" y="629" width="0.0203%" height="15" fill="rgb(231,229,43)" fg:x="124436" fg:w="60"/><text x="42.2905%" y="639.50"></text></g><g><title>do_user_addr_fault (60 samples, 0.02%)</title><rect x="42.0405%" y="613" width="0.0203%" height="15" fill="rgb(250,161,5)" fg:x="124436" fg:w="60"/><text x="42.2905%" y="623.50"></text></g><g><title>handle_mm_fault (58 samples, 0.02%)</title><rect x="42.0411%" y="597" width="0.0196%" height="15" fill="rgb(218,225,18)" fg:x="124438" fg:w="58"/><text x="42.2911%" y="607.50"></text></g><g><title>filemap_map_pages (53 samples, 0.02%)</title><rect x="42.0428%" y="581" width="0.0179%" height="15" fill="rgb(245,45,42)" fg:x="124443" fg:w="53"/><text x="42.2928%" y="591.50"></text></g><g><title>asm_exc_page_fault (61 samples, 0.02%)</title><rect x="42.0405%" y="645" width="0.0206%" height="15" fill="rgb(211,115,1)" fg:x="124436" fg:w="61"/><text x="42.2905%" y="655.50"></text></g><g><title>__run_fork_handlers (69 samples, 0.02%)</title><rect x="42.0395%" y="661" width="0.0233%" height="15" fill="rgb(248,133,52)" fg:x="124433" fg:w="69"/><text x="42.2895%" y="671.50"></text></g><g><title>filemap_map_pages (65 samples, 0.02%)</title><rect x="42.0766%" y="581" width="0.0220%" height="15" fill="rgb(238,100,21)" fg:x="124543" fg:w="65"/><text x="42.3266%" y="591.50"></text></g><g><title>handle_mm_fault (102 samples, 0.03%)</title><rect x="42.0715%" y="597" width="0.0345%" height="15" fill="rgb(247,144,11)" fg:x="124528" fg:w="102"/><text x="42.3215%" y="607.50"></text></g><g><title>exc_page_fault (109 samples, 0.04%)</title><rect x="42.0695%" y="629" width="0.0368%" height="15" fill="rgb(206,164,16)" fg:x="124522" fg:w="109"/><text x="42.3195%" y="639.50"></text></g><g><title>do_user_addr_fault (109 samples, 0.04%)</title><rect x="42.0695%" y="613" width="0.0368%" height="15" fill="rgb(222,34,3)" fg:x="124522" fg:w="109"/><text x="42.3195%" y="623.50"></text></g><g><title>asm_exc_page_fault (111 samples, 0.04%)</title><rect x="42.0692%" y="645" width="0.0375%" height="15" fill="rgb(248,82,4)" fg:x="124521" fg:w="111"/><text x="42.3192%" y="655.50"></text></g><g><title>anon_vma_clone (38 samples, 0.01%)</title><rect x="42.1820%" y="533" width="0.0128%" height="15" fill="rgb(228,81,46)" fg:x="124855" fg:w="38"/><text x="42.4320%" y="543.50"></text></g><g><title>kmem_cache_alloc (49 samples, 0.02%)</title><rect x="42.1952%" y="533" width="0.0166%" height="15" fill="rgb(227,67,47)" fg:x="124894" fg:w="49"/><text x="42.4452%" y="543.50"></text></g><g><title>anon_vma_fork (97 samples, 0.03%)</title><rect x="42.1797%" y="549" width="0.0328%" height="15" fill="rgb(215,93,53)" fg:x="124848" fg:w="97"/><text x="42.4297%" y="559.50"></text></g><g><title>copy_page_range (100 samples, 0.03%)</title><rect x="42.2124%" y="549" width="0.0338%" height="15" fill="rgb(248,194,39)" fg:x="124945" fg:w="100"/><text x="42.4624%" y="559.50"></text></g><g><title>vm_area_dup (72 samples, 0.02%)</title><rect x="42.2648%" y="549" width="0.0243%" height="15" fill="rgb(215,5,19)" fg:x="125100" fg:w="72"/><text x="42.5148%" y="559.50"></text></g><g><title>kmem_cache_alloc (47 samples, 0.02%)</title><rect x="42.2732%" y="533" width="0.0159%" height="15" fill="rgb(226,215,51)" fg:x="125125" fg:w="47"/><text x="42.5232%" y="543.50"></text></g><g><title>dup_mm (365 samples, 0.12%)</title><rect x="42.1665%" y="565" width="0.1233%" height="15" fill="rgb(225,56,26)" fg:x="124809" fg:w="365"/><text x="42.4165%" y="575.50"></text></g><g><title>kmem_cache_alloc_trace (36 samples, 0.01%)</title><rect x="42.3368%" y="501" width="0.0122%" height="15" fill="rgb(222,75,29)" fg:x="125313" fg:w="36"/><text x="42.5868%" y="511.50"></text></g><g><title>allocate_fake_cpuc (40 samples, 0.01%)</title><rect x="42.3499%" y="469" width="0.0135%" height="15" fill="rgb(236,139,6)" fg:x="125352" fg:w="40"/><text x="42.5999%" y="479.50"></text></g><g><title>inherit_task_group.isra.0 (185 samples, 0.06%)</title><rect x="42.3148%" y="549" width="0.0625%" height="15" fill="rgb(223,137,36)" fg:x="125248" fg:w="185"/><text x="42.5648%" y="559.50"></text></g><g><title>inherit_event.constprop.0 (171 samples, 0.06%)</title><rect x="42.3195%" y="533" width="0.0578%" height="15" fill="rgb(226,99,2)" fg:x="125262" fg:w="171"/><text x="42.5695%" y="543.50"></text></g><g><title>perf_event_alloc (141 samples, 0.05%)</title><rect x="42.3297%" y="517" width="0.0476%" height="15" fill="rgb(206,133,23)" fg:x="125292" fg:w="141"/><text x="42.5797%" y="527.50"></text></g><g><title>perf_try_init_event (84 samples, 0.03%)</title><rect x="42.3489%" y="501" width="0.0284%" height="15" fill="rgb(243,173,15)" fg:x="125349" fg:w="84"/><text x="42.5989%" y="511.50"></text></g><g><title>x86_pmu_event_init (83 samples, 0.03%)</title><rect x="42.3493%" y="485" width="0.0280%" height="15" fill="rgb(228,69,28)" fg:x="125350" fg:w="83"/><text x="42.5993%" y="495.50"></text></g><g><title>perf_event_init_task (201 samples, 0.07%)</title><rect x="42.3138%" y="565" width="0.0679%" height="15" fill="rgb(212,51,22)" fg:x="125245" fg:w="201"/><text x="42.5638%" y="575.50"></text></g><g><title>copy_process (843 samples, 0.28%)</title><rect x="42.1084%" y="581" width="0.2848%" height="15" fill="rgb(227,113,0)" fg:x="124637" fg:w="843"/><text x="42.3584%" y="591.50"></text></g><g><title>__do_sys_clone (904 samples, 0.31%)</title><rect x="42.1074%" y="613" width="0.3054%" height="15" fill="rgb(252,84,27)" fg:x="124634" fg:w="904"/><text x="42.3574%" y="623.50"></text></g><g><title>kernel_clone (901 samples, 0.30%)</title><rect x="42.1084%" y="597" width="0.3044%" height="15" fill="rgb(223,145,39)" fg:x="124637" fg:w="901"/><text x="42.3584%" y="607.50"></text></g><g><title>wake_up_new_task (55 samples, 0.02%)</title><rect x="42.3942%" y="581" width="0.0186%" height="15" fill="rgb(239,219,30)" fg:x="125483" fg:w="55"/><text x="42.6442%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (906 samples, 0.31%)</title><rect x="42.1070%" y="645" width="0.3061%" height="15" fill="rgb(224,196,39)" fg:x="124633" fg:w="906"/><text x="42.3570%" y="655.50"></text></g><g><title>do_syscall_64 (906 samples, 0.31%)</title><rect x="42.1070%" y="629" width="0.3061%" height="15" fill="rgb(205,35,43)" fg:x="124633" fg:w="906"/><text x="42.3570%" y="639.50"></text></g><g><title>find_vma (31 samples, 0.01%)</title><rect x="42.4749%" y="549" width="0.0105%" height="15" fill="rgb(228,201,21)" fg:x="125722" fg:w="31"/><text x="42.7249%" y="559.50"></text></g><g><title>__alloc_pages_nodemask (33 samples, 0.01%)</title><rect x="42.5057%" y="501" width="0.0111%" height="15" fill="rgb(237,118,16)" fg:x="125813" fg:w="33"/><text x="42.7557%" y="511.50"></text></g><g><title>alloc_pages_vma (37 samples, 0.01%)</title><rect x="42.5047%" y="517" width="0.0125%" height="15" fill="rgb(241,17,19)" fg:x="125810" fg:w="37"/><text x="42.7547%" y="527.50"></text></g><g><title>copy_page (30 samples, 0.01%)</title><rect x="42.5195%" y="517" width="0.0101%" height="15" fill="rgb(214,10,25)" fg:x="125854" fg:w="30"/><text x="42.7695%" y="527.50"></text></g><g><title>handle_mm_fault (159 samples, 0.05%)</title><rect x="42.4854%" y="549" width="0.0537%" height="15" fill="rgb(238,37,29)" fg:x="125753" fg:w="159"/><text x="42.7354%" y="559.50"></text></g><g><title>wp_page_copy (109 samples, 0.04%)</title><rect x="42.5023%" y="533" width="0.0368%" height="15" fill="rgb(253,83,25)" fg:x="125803" fg:w="109"/><text x="42.7523%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (339 samples, 0.11%)</title><rect x="42.4253%" y="613" width="0.1145%" height="15" fill="rgb(234,192,12)" fg:x="125575" fg:w="339"/><text x="42.6753%" y="623.50"></text></g><g><title>asm_exc_page_fault (322 samples, 0.11%)</title><rect x="42.4310%" y="597" width="0.1088%" height="15" fill="rgb(241,216,45)" fg:x="125592" fg:w="322"/><text x="42.6810%" y="607.50"></text></g><g><title>exc_page_fault (221 samples, 0.07%)</title><rect x="42.4651%" y="581" width="0.0747%" height="15" fill="rgb(242,22,33)" fg:x="125693" fg:w="221"/><text x="42.7151%" y="591.50"></text></g><g><title>do_user_addr_fault (220 samples, 0.07%)</title><rect x="42.4655%" y="565" width="0.0743%" height="15" fill="rgb(231,105,49)" fg:x="125694" fg:w="220"/><text x="42.7155%" y="575.50"></text></g><g><title>__memcg_kmem_uncharge_page (31 samples, 0.01%)</title><rect x="42.5726%" y="565" width="0.0105%" height="15" fill="rgb(218,204,15)" fg:x="126011" fg:w="31"/><text x="42.8226%" y="575.50"></text></g><g><title>__free_pages_ok (76 samples, 0.03%)</title><rect x="42.5658%" y="581" width="0.0257%" height="15" fill="rgb(235,138,41)" fg:x="125991" fg:w="76"/><text x="42.8158%" y="591.50"></text></g><g><title>__mmdrop (140 samples, 0.05%)</title><rect x="42.5597%" y="597" width="0.0473%" height="15" fill="rgb(246,0,9)" fg:x="125973" fg:w="140"/><text x="42.8097%" y="607.50"></text></g><g><title>pgd_free (38 samples, 0.01%)</title><rect x="42.5942%" y="581" width="0.0128%" height="15" fill="rgb(210,74,4)" fg:x="126075" fg:w="38"/><text x="42.8442%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (3,880 samples, 1.31%)</title><rect x="42.6070%" y="597" width="1.3109%" height="15" fill="rgb(250,60,41)" fg:x="126113" fg:w="3880"/><text x="42.8570%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,845 samples, 1.30%)</title><rect x="42.6189%" y="581" width="1.2990%" height="15" fill="rgb(220,115,12)" fg:x="126148" fg:w="3845"/><text x="42.8689%" y="591.50"></text></g><g><title>native_write_msr (3,841 samples, 1.30%)</title><rect x="42.6202%" y="565" width="1.2977%" height="15" fill="rgb(237,100,13)" fg:x="126152" fg:w="3841"/><text x="42.8702%" y="575.50"></text></g><g><title>irq_work_run (45 samples, 0.02%)</title><rect x="43.9338%" y="533" width="0.0152%" height="15" fill="rgb(213,55,26)" fg:x="130040" fg:w="45"/><text x="44.1838%" y="543.50"></text></g><g><title>irq_work_run_list (45 samples, 0.02%)</title><rect x="43.9338%" y="517" width="0.0152%" height="15" fill="rgb(216,17,4)" fg:x="130040" fg:w="45"/><text x="44.1838%" y="527.50"></text></g><g><title>irq_work_single (44 samples, 0.01%)</title><rect x="43.9341%" y="501" width="0.0149%" height="15" fill="rgb(220,153,47)" fg:x="130041" fg:w="44"/><text x="44.1841%" y="511.50"></text></g><g><title>perf_pending_event (42 samples, 0.01%)</title><rect x="43.9348%" y="485" width="0.0142%" height="15" fill="rgb(215,131,9)" fg:x="130043" fg:w="42"/><text x="44.1848%" y="495.50"></text></g><g><title>perf_event_wakeup (39 samples, 0.01%)</title><rect x="43.9358%" y="469" width="0.0132%" height="15" fill="rgb(233,46,42)" fg:x="130046" fg:w="39"/><text x="44.1858%" y="479.50"></text></g><g><title>__wake_up_common_lock (37 samples, 0.01%)</title><rect x="43.9365%" y="453" width="0.0125%" height="15" fill="rgb(226,86,7)" fg:x="130048" fg:w="37"/><text x="44.1865%" y="463.50"></text></g><g><title>__wake_up_common (37 samples, 0.01%)</title><rect x="43.9365%" y="437" width="0.0125%" height="15" fill="rgb(239,226,21)" fg:x="130048" fg:w="37"/><text x="44.1865%" y="447.50"></text></g><g><title>pollwake (35 samples, 0.01%)</title><rect x="43.9371%" y="421" width="0.0118%" height="15" fill="rgb(244,137,22)" fg:x="130050" fg:w="35"/><text x="44.1871%" y="431.50"></text></g><g><title>try_to_wake_up (34 samples, 0.01%)</title><rect x="43.9375%" y="405" width="0.0115%" height="15" fill="rgb(211,139,35)" fg:x="130051" fg:w="34"/><text x="44.1875%" y="415.50"></text></g><g><title>asm_call_sysvec_on_stack (56 samples, 0.02%)</title><rect x="43.9307%" y="565" width="0.0189%" height="15" fill="rgb(214,62,50)" fg:x="130031" fg:w="56"/><text x="44.1807%" y="575.50"></text></g><g><title>__sysvec_irq_work (49 samples, 0.02%)</title><rect x="43.9331%" y="549" width="0.0166%" height="15" fill="rgb(212,113,44)" fg:x="130038" fg:w="49"/><text x="44.1831%" y="559.50"></text></g><g><title>asm_sysvec_irq_work (98 samples, 0.03%)</title><rect x="43.9192%" y="597" width="0.0331%" height="15" fill="rgb(226,150,43)" fg:x="129997" fg:w="98"/><text x="44.1692%" y="607.50"></text></g><g><title>sysvec_irq_work (70 samples, 0.02%)</title><rect x="43.9287%" y="581" width="0.0236%" height="15" fill="rgb(250,71,37)" fg:x="130025" fg:w="70"/><text x="44.1787%" y="591.50"></text></g><g><title>kmem_cache_free (35 samples, 0.01%)</title><rect x="43.9547%" y="597" width="0.0118%" height="15" fill="rgb(219,76,19)" fg:x="130102" fg:w="35"/><text x="44.2047%" y="607.50"></text></g><g><title>schedule_tail (4,600 samples, 1.55%)</title><rect x="42.4212%" y="629" width="1.5541%" height="15" fill="rgb(250,39,11)" fg:x="125563" fg:w="4600"/><text x="42.6712%" y="639.50"></text></g><g><title>finish_task_switch (4,245 samples, 1.43%)</title><rect x="42.5412%" y="613" width="1.4342%" height="15" fill="rgb(230,64,31)" fg:x="125918" fg:w="4245"/><text x="42.7912%" y="623.50"></text></g><g><title>arch_fork (5,678 samples, 1.92%)</title><rect x="42.0628%" y="661" width="1.9183%" height="15" fill="rgb(208,222,23)" fg:x="124502" fg:w="5678"/><text x="42.3128%" y="671.50">a..</text></g><g><title>ret_from_fork (4,619 samples, 1.56%)</title><rect x="42.4205%" y="645" width="1.5605%" height="15" fill="rgb(227,125,18)" fg:x="125561" fg:w="4619"/><text x="42.6705%" y="655.50"></text></g><g><title>exc_page_fault (69 samples, 0.02%)</title><rect x="43.9814%" y="645" width="0.0233%" height="15" fill="rgb(234,210,9)" fg:x="130181" fg:w="69"/><text x="44.2314%" y="655.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.02%)</title><rect x="43.9814%" y="629" width="0.0233%" height="15" fill="rgb(217,127,24)" fg:x="130181" fg:w="69"/><text x="44.2314%" y="639.50"></text></g><g><title>handle_mm_fault (58 samples, 0.02%)</title><rect x="43.9851%" y="613" width="0.0196%" height="15" fill="rgb(239,141,48)" fg:x="130192" fg:w="58"/><text x="44.2351%" y="623.50"></text></g><g><title>wp_page_copy (41 samples, 0.01%)</title><rect x="43.9909%" y="597" width="0.0139%" height="15" fill="rgb(227,109,8)" fg:x="130209" fg:w="41"/><text x="44.2409%" y="607.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.02%)</title><rect x="43.9811%" y="661" width="0.0240%" height="15" fill="rgb(235,184,23)" fg:x="130180" fg:w="71"/><text x="44.2311%" y="671.50"></text></g><g><title>__libc_fork (5,845 samples, 1.97%)</title><rect x="42.0320%" y="677" width="1.9747%" height="15" fill="rgb(227,226,48)" fg:x="124411" fg:w="5845"/><text x="42.2820%" y="687.50">_..</text></g><g><title>filemap_map_pages (72 samples, 0.02%)</title><rect x="44.0128%" y="613" width="0.0243%" height="15" fill="rgb(206,150,11)" fg:x="130274" fg:w="72"/><text x="44.2628%" y="623.50"></text></g><g><title>asm_exc_page_fault (88 samples, 0.03%)</title><rect x="44.0078%" y="677" width="0.0297%" height="15" fill="rgb(254,2,33)" fg:x="130259" fg:w="88"/><text x="44.2578%" y="687.50"></text></g><g><title>exc_page_fault (87 samples, 0.03%)</title><rect x="44.0081%" y="661" width="0.0294%" height="15" fill="rgb(243,160,20)" fg:x="130260" fg:w="87"/><text x="44.2581%" y="671.50"></text></g><g><title>do_user_addr_fault (87 samples, 0.03%)</title><rect x="44.0081%" y="645" width="0.0294%" height="15" fill="rgb(218,208,30)" fg:x="130260" fg:w="87"/><text x="44.2581%" y="655.50"></text></g><g><title>handle_mm_fault (83 samples, 0.03%)</title><rect x="44.0094%" y="629" width="0.0280%" height="15" fill="rgb(224,120,49)" fg:x="130264" fg:w="83"/><text x="44.2594%" y="639.50"></text></g><g><title>[dash] (29,502 samples, 9.97%)</title><rect x="34.0737%" y="693" width="9.9672%" height="15" fill="rgb(246,12,2)" fg:x="100855" fg:w="29502"/><text x="34.3237%" y="703.50">[dash]</text></g><g><title>create_pipe_files (65 samples, 0.02%)</title><rect x="44.0524%" y="613" width="0.0220%" height="15" fill="rgb(236,117,3)" fg:x="130391" fg:w="65"/><text x="44.3024%" y="623.50"></text></g><g><title>__GI_pipe (78 samples, 0.03%)</title><rect x="44.0483%" y="693" width="0.0264%" height="15" fill="rgb(216,128,52)" fg:x="130379" fg:w="78"/><text x="44.2983%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.03%)</title><rect x="44.0490%" y="677" width="0.0257%" height="15" fill="rgb(246,145,19)" fg:x="130381" fg:w="76"/><text x="44.2990%" y="687.50"></text></g><g><title>do_syscall_64 (74 samples, 0.03%)</title><rect x="44.0497%" y="661" width="0.0250%" height="15" fill="rgb(222,11,46)" fg:x="130383" fg:w="74"/><text x="44.2997%" y="671.50"></text></g><g><title>__x64_sys_pipe (74 samples, 0.03%)</title><rect x="44.0497%" y="645" width="0.0250%" height="15" fill="rgb(245,82,36)" fg:x="130383" fg:w="74"/><text x="44.2997%" y="655.50"></text></g><g><title>do_pipe2 (72 samples, 0.02%)</title><rect x="44.0503%" y="629" width="0.0243%" height="15" fill="rgb(250,73,51)" fg:x="130385" fg:w="72"/><text x="44.3003%" y="639.50"></text></g><g><title>asm_exc_page_fault (38 samples, 0.01%)</title><rect x="44.0747%" y="693" width="0.0128%" height="15" fill="rgb(221,189,23)" fg:x="130457" fg:w="38"/><text x="44.3247%" y="703.50"></text></g><g><title>exc_page_fault (38 samples, 0.01%)</title><rect x="44.0747%" y="677" width="0.0128%" height="15" fill="rgb(210,33,7)" fg:x="130457" fg:w="38"/><text x="44.3247%" y="687.50"></text></g><g><title>do_user_addr_fault (38 samples, 0.01%)</title><rect x="44.0747%" y="661" width="0.0128%" height="15" fill="rgb(210,107,22)" fg:x="130457" fg:w="38"/><text x="44.3247%" y="671.50"></text></g><g><title>[dash] (29,670 samples, 10.02%)</title><rect x="34.0656%" y="709" width="10.0240%" height="15" fill="rgb(222,116,37)" fg:x="100831" fg:w="29670"/><text x="34.3156%" y="719.50">[dash]</text></g><g><title>__dentry_kill (43 samples, 0.01%)</title><rect x="44.1034%" y="613" width="0.0145%" height="15" fill="rgb(254,17,48)" fg:x="130542" fg:w="43"/><text x="44.3534%" y="623.50"></text></g><g><title>pipe_release (33 samples, 0.01%)</title><rect x="44.1206%" y="613" width="0.0111%" height="15" fill="rgb(224,36,32)" fg:x="130593" fg:w="33"/><text x="44.3706%" y="623.50"></text></g><g><title>__fput (91 samples, 0.03%)</title><rect x="44.1017%" y="629" width="0.0307%" height="15" fill="rgb(232,90,46)" fg:x="130537" fg:w="91"/><text x="44.3517%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (113 samples, 0.04%)</title><rect x="44.0946%" y="693" width="0.0382%" height="15" fill="rgb(241,66,40)" fg:x="130516" fg:w="113"/><text x="44.3446%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (99 samples, 0.03%)</title><rect x="44.0993%" y="677" width="0.0334%" height="15" fill="rgb(249,184,29)" fg:x="130530" fg:w="99"/><text x="44.3493%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (99 samples, 0.03%)</title><rect x="44.0993%" y="661" width="0.0334%" height="15" fill="rgb(231,181,1)" fg:x="130530" fg:w="99"/><text x="44.3493%" y="671.50"></text></g><g><title>task_work_run (93 samples, 0.03%)</title><rect x="44.1013%" y="645" width="0.0314%" height="15" fill="rgb(224,94,2)" fg:x="130536" fg:w="93"/><text x="44.3513%" y="655.50"></text></g><g><title>__GI___close (126 samples, 0.04%)</title><rect x="44.0929%" y="709" width="0.0426%" height="15" fill="rgb(229,170,15)" fg:x="130511" fg:w="126"/><text x="44.3429%" y="719.50"></text></g><g><title>prepare_to_wait_event (49 samples, 0.02%)</title><rect x="44.1814%" y="597" width="0.0166%" height="15" fill="rgb(240,127,35)" fg:x="130773" fg:w="49"/><text x="44.4314%" y="607.50"></text></g><g><title>__free_pages_ok (49 samples, 0.02%)</title><rect x="44.2426%" y="533" width="0.0166%" height="15" fill="rgb(248,196,34)" fg:x="130954" fg:w="49"/><text x="44.4926%" y="543.50"></text></g><g><title>__list_del_entry_valid (31 samples, 0.01%)</title><rect x="44.2632%" y="517" width="0.0105%" height="15" fill="rgb(236,137,7)" fg:x="131015" fg:w="31"/><text x="44.5132%" y="527.50"></text></g><g><title>__mmdrop (124 samples, 0.04%)</title><rect x="44.2351%" y="549" width="0.0419%" height="15" fill="rgb(235,127,16)" fg:x="130932" fg:w="124"/><text x="44.4851%" y="559.50"></text></g><g><title>pgd_free (50 samples, 0.02%)</title><rect x="44.2601%" y="533" width="0.0169%" height="15" fill="rgb(250,192,54)" fg:x="131006" fg:w="50"/><text x="44.5101%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (3,732 samples, 1.26%)</title><rect x="44.2770%" y="549" width="1.2608%" height="15" fill="rgb(218,98,20)" fg:x="131056" fg:w="3732"/><text x="44.5270%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,673 samples, 1.24%)</title><rect x="44.2970%" y="533" width="1.2409%" height="15" fill="rgb(230,176,47)" fg:x="131115" fg:w="3673"/><text x="44.5470%" y="543.50"></text></g><g><title>native_write_msr (3,649 samples, 1.23%)</title><rect x="44.3051%" y="517" width="1.2328%" height="15" fill="rgb(244,2,33)" fg:x="131139" fg:w="3649"/><text x="44.5551%" y="527.50"></text></g><g><title>irq_work_run (33 samples, 0.01%)</title><rect x="45.5565%" y="485" width="0.0111%" height="15" fill="rgb(231,100,17)" fg:x="134843" fg:w="33"/><text x="45.8065%" y="495.50"></text></g><g><title>irq_work_run_list (31 samples, 0.01%)</title><rect x="45.5571%" y="469" width="0.0105%" height="15" fill="rgb(245,23,12)" fg:x="134845" fg:w="31"/><text x="45.8071%" y="479.50"></text></g><g><title>irq_work_single (31 samples, 0.01%)</title><rect x="45.5571%" y="453" width="0.0105%" height="15" fill="rgb(249,55,22)" fg:x="134845" fg:w="31"/><text x="45.8071%" y="463.50"></text></g><g><title>asm_call_sysvec_on_stack (45 samples, 0.02%)</title><rect x="45.5534%" y="517" width="0.0152%" height="15" fill="rgb(207,134,9)" fg:x="134834" fg:w="45"/><text x="45.8034%" y="527.50"></text></g><g><title>__sysvec_irq_work (38 samples, 0.01%)</title><rect x="45.5558%" y="501" width="0.0128%" height="15" fill="rgb(218,134,0)" fg:x="134841" fg:w="38"/><text x="45.8058%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (84 samples, 0.03%)</title><rect x="45.5409%" y="549" width="0.0284%" height="15" fill="rgb(213,212,33)" fg:x="134797" fg:w="84"/><text x="45.7909%" y="559.50"></text></g><g><title>sysvec_irq_work (48 samples, 0.02%)</title><rect x="45.5531%" y="533" width="0.0162%" height="15" fill="rgb(252,106,18)" fg:x="134833" fg:w="48"/><text x="45.8031%" y="543.50"></text></g><g><title>asm_sysvec_reschedule_ipi (73 samples, 0.02%)</title><rect x="45.5693%" y="549" width="0.0247%" height="15" fill="rgb(208,126,42)" fg:x="134881" fg:w="73"/><text x="45.8193%" y="559.50"></text></g><g><title>queue_work_on (40 samples, 0.01%)</title><rect x="45.6179%" y="533" width="0.0135%" height="15" fill="rgb(246,175,29)" fg:x="135025" fg:w="40"/><text x="45.8679%" y="543.50"></text></g><g><title>__queue_work (39 samples, 0.01%)</title><rect x="45.6183%" y="517" width="0.0132%" height="15" fill="rgb(215,13,50)" fg:x="135026" fg:w="39"/><text x="45.8683%" y="527.50"></text></g><g><title>put_task_stack (67 samples, 0.02%)</title><rect x="45.6092%" y="549" width="0.0226%" height="15" fill="rgb(216,172,15)" fg:x="134999" fg:w="67"/><text x="45.8592%" y="559.50"></text></g><g><title>finish_task_switch (4,206 samples, 1.42%)</title><rect x="44.2128%" y="565" width="1.4210%" height="15" fill="rgb(212,103,13)" fg:x="130866" fg:w="4206"/><text x="44.4628%" y="575.50"></text></g><g><title>schedule (4,314 samples, 1.46%)</title><rect x="44.1980%" y="597" width="1.4575%" height="15" fill="rgb(231,171,36)" fg:x="130822" fg:w="4314"/><text x="44.4480%" y="607.50"></text></g><g><title>__schedule (4,307 samples, 1.46%)</title><rect x="44.2003%" y="581" width="1.4551%" height="15" fill="rgb(250,123,20)" fg:x="130829" fg:w="4307"/><text x="44.4503%" y="591.50"></text></g><g><title>new_sync_read (4,448 samples, 1.50%)</title><rect x="44.1567%" y="629" width="1.5027%" height="15" fill="rgb(212,53,50)" fg:x="130700" fg:w="4448"/><text x="44.4067%" y="639.50"></text></g><g><title>pipe_read (4,443 samples, 1.50%)</title><rect x="44.1584%" y="613" width="1.5011%" height="15" fill="rgb(243,54,12)" fg:x="130705" fg:w="4443"/><text x="44.4084%" y="623.50"></text></g><g><title>do_syscall_64 (4,501 samples, 1.52%)</title><rect x="44.1449%" y="677" width="1.5207%" height="15" fill="rgb(234,101,34)" fg:x="130665" fg:w="4501"/><text x="44.3949%" y="687.50"></text></g><g><title>ksys_read (4,492 samples, 1.52%)</title><rect x="44.1480%" y="661" width="1.5176%" height="15" fill="rgb(254,67,22)" fg:x="130674" fg:w="4492"/><text x="44.3980%" y="671.50"></text></g><g><title>vfs_read (4,482 samples, 1.51%)</title><rect x="44.1513%" y="645" width="1.5142%" height="15" fill="rgb(250,35,47)" fg:x="130684" fg:w="4482"/><text x="44.4013%" y="655.50"></text></g><g><title>copy_fpstate_to_sigframe (50 samples, 0.02%)</title><rect x="45.6710%" y="613" width="0.0169%" height="15" fill="rgb(226,126,38)" fg:x="135182" fg:w="50"/><text x="45.9210%" y="623.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (51 samples, 0.02%)</title><rect x="45.6710%" y="629" width="0.0172%" height="15" fill="rgb(216,138,53)" fg:x="135182" fg:w="51"/><text x="45.9210%" y="639.50"></text></g><g><title>arch_do_signal (78 samples, 0.03%)</title><rect x="45.6673%" y="645" width="0.0264%" height="15" fill="rgb(246,199,43)" fg:x="135171" fg:w="78"/><text x="45.9173%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,601 samples, 1.55%)</title><rect x="44.1449%" y="693" width="1.5544%" height="15" fill="rgb(232,125,11)" fg:x="130665" fg:w="4601"/><text x="44.3949%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (100 samples, 0.03%)</title><rect x="45.6656%" y="677" width="0.0338%" height="15" fill="rgb(218,219,45)" fg:x="135166" fg:w="100"/><text x="45.9156%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (99 samples, 0.03%)</title><rect x="45.6659%" y="661" width="0.0334%" height="15" fill="rgb(216,102,54)" fg:x="135167" fg:w="99"/><text x="45.9159%" y="671.50"></text></g><g><title>killpg (48 samples, 0.02%)</title><rect x="45.6997%" y="693" width="0.0162%" height="15" fill="rgb(250,228,7)" fg:x="135267" fg:w="48"/><text x="45.9497%" y="703.50"></text></g><g><title>[dash] (48 samples, 0.02%)</title><rect x="45.6997%" y="677" width="0.0162%" height="15" fill="rgb(226,125,25)" fg:x="135267" fg:w="48"/><text x="45.9497%" y="687.50"></text></g><g><title>__GI___libc_read (4,676 samples, 1.58%)</title><rect x="44.1382%" y="709" width="1.5798%" height="15" fill="rgb(224,165,27)" fg:x="130645" fg:w="4676"/><text x="44.3882%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.02%)</title><rect x="45.7386%" y="533" width="0.0169%" height="15" fill="rgb(233,86,3)" fg:x="135382" fg:w="50"/><text x="45.9886%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.02%)</title><rect x="45.7386%" y="517" width="0.0169%" height="15" fill="rgb(228,116,20)" fg:x="135382" fg:w="50"/><text x="45.9886%" y="527.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="45.7386%" y="501" width="0.0169%" height="15" fill="rgb(209,192,17)" fg:x="135382" fg:w="50"/><text x="45.9886%" y="511.50"></text></g><g><title>_cond_resched (52 samples, 0.02%)</title><rect x="45.7382%" y="581" width="0.0176%" height="15" fill="rgb(224,88,34)" fg:x="135381" fg:w="52"/><text x="45.9882%" y="591.50"></text></g><g><title>__schedule (51 samples, 0.02%)</title><rect x="45.7386%" y="565" width="0.0172%" height="15" fill="rgb(233,38,6)" fg:x="135382" fg:w="51"/><text x="45.9886%" y="575.50"></text></g><g><title>finish_task_switch (51 samples, 0.02%)</title><rect x="45.7386%" y="549" width="0.0172%" height="15" fill="rgb(212,59,30)" fg:x="135382" fg:w="51"/><text x="45.9886%" y="559.50"></text></g><g><title>sched_exec (56 samples, 0.02%)</title><rect x="45.7375%" y="613" width="0.0189%" height="15" fill="rgb(213,80,3)" fg:x="135379" fg:w="56"/><text x="45.9875%" y="623.50"></text></g><g><title>stop_one_cpu (55 samples, 0.02%)</title><rect x="45.7379%" y="597" width="0.0186%" height="15" fill="rgb(251,178,7)" fg:x="135380" fg:w="55"/><text x="45.9879%" y="607.50"></text></g><g><title>bprm_execve (99 samples, 0.03%)</title><rect x="45.7294%" y="629" width="0.0334%" height="15" fill="rgb(213,154,26)" fg:x="135355" fg:w="99"/><text x="45.9794%" y="639.50"></text></g><g><title>__GI_execve (116 samples, 0.04%)</title><rect x="45.7277%" y="709" width="0.0392%" height="15" fill="rgb(238,165,49)" fg:x="135350" fg:w="116"/><text x="45.9777%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (116 samples, 0.04%)</title><rect x="45.7277%" y="693" width="0.0392%" height="15" fill="rgb(248,91,46)" fg:x="135350" fg:w="116"/><text x="45.9777%" y="703.50"></text></g><g><title>do_syscall_64 (116 samples, 0.04%)</title><rect x="45.7277%" y="677" width="0.0392%" height="15" fill="rgb(244,21,52)" fg:x="135350" fg:w="116"/><text x="45.9777%" y="687.50"></text></g><g><title>__x64_sys_execve (116 samples, 0.04%)</title><rect x="45.7277%" y="661" width="0.0392%" height="15" fill="rgb(247,122,20)" fg:x="135350" fg:w="116"/><text x="45.9777%" y="671.50"></text></g><g><title>do_execveat_common (116 samples, 0.04%)</title><rect x="45.7277%" y="645" width="0.0392%" height="15" fill="rgb(218,27,9)" fg:x="135350" fg:w="116"/><text x="45.9777%" y="655.50"></text></g><g><title>[dash] (34,739 samples, 11.74%)</title><rect x="34.0412%" y="725" width="11.7365%" height="15" fill="rgb(246,7,6)" fg:x="100759" fg:w="34739"/><text x="34.2912%" y="735.50">[dash]</text></g><g><title>[dash] (34,802 samples, 11.76%)</title><rect x="34.0304%" y="741" width="11.7578%" height="15" fill="rgb(227,135,54)" fg:x="100727" fg:w="34802"/><text x="34.2804%" y="751.50">[dash]</text></g><g><title>[dash] (34,834 samples, 11.77%)</title><rect x="34.0247%" y="757" width="11.7686%" height="15" fill="rgb(247,14,11)" fg:x="100710" fg:w="34834"/><text x="34.2747%" y="767.50">[dash]</text></g><g><title>[dash] (34,849 samples, 11.77%)</title><rect x="34.0233%" y="773" width="11.7737%" height="15" fill="rgb(206,149,34)" fg:x="100706" fg:w="34849"/><text x="34.2733%" y="783.50">[dash]</text></g><g><title>[dash] (34,901 samples, 11.79%)</title><rect x="34.0216%" y="789" width="11.7912%" height="15" fill="rgb(227,228,4)" fg:x="100701" fg:w="34901"/><text x="34.2716%" y="799.50">[dash]</text></g><g><title>[dash] (34,912 samples, 11.79%)</title><rect x="34.0183%" y="805" width="11.7950%" height="15" fill="rgb(238,218,28)" fg:x="100691" fg:w="34912"/><text x="34.2683%" y="815.50">[dash]</text></g><g><title>acct_collect (45 samples, 0.02%)</title><rect x="45.8206%" y="709" width="0.0152%" height="15" fill="rgb(252,86,40)" fg:x="135625" fg:w="45"/><text x="46.0706%" y="719.50"></text></g><g><title>__GI__exit (100 samples, 0.03%)</title><rect x="45.8163%" y="805" width="0.0338%" height="15" fill="rgb(251,225,11)" fg:x="135612" fg:w="100"/><text x="46.0663%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.03%)</title><rect x="45.8169%" y="789" width="0.0331%" height="15" fill="rgb(206,46,49)" fg:x="135614" fg:w="98"/><text x="46.0669%" y="799.50"></text></g><g><title>do_syscall_64 (97 samples, 0.03%)</title><rect x="45.8173%" y="773" width="0.0328%" height="15" fill="rgb(245,128,24)" fg:x="135615" fg:w="97"/><text x="46.0673%" y="783.50"></text></g><g><title>__x64_sys_exit_group (95 samples, 0.03%)</title><rect x="45.8179%" y="757" width="0.0321%" height="15" fill="rgb(219,177,34)" fg:x="135617" fg:w="95"/><text x="46.0679%" y="767.50"></text></g><g><title>do_group_exit (94 samples, 0.03%)</title><rect x="45.8183%" y="741" width="0.0318%" height="15" fill="rgb(218,60,48)" fg:x="135618" fg:w="94"/><text x="46.0683%" y="751.50"></text></g><g><title>do_exit (94 samples, 0.03%)</title><rect x="45.8183%" y="725" width="0.0318%" height="15" fill="rgb(221,11,5)" fg:x="135618" fg:w="94"/><text x="46.0683%" y="735.50"></text></g><g><title>[dash] (35,026 samples, 11.83%)</title><rect x="34.0179%" y="821" width="11.8335%" height="15" fill="rgb(220,148,13)" fg:x="100690" fg:w="35026"/><text x="34.2679%" y="831.50">[dash]</text></g><g><title>[dash] (35,045 samples, 11.84%)</title><rect x="34.0169%" y="837" width="11.8399%" height="15" fill="rgb(210,16,3)" fg:x="100687" fg:w="35045"/><text x="34.2669%" y="847.50">[dash]</text></g><g><title>__libc_start_main (35,047 samples, 11.84%)</title><rect x="34.0169%" y="853" width="11.8406%" height="15" fill="rgb(236,80,2)" fg:x="100687" fg:w="35047"/><text x="34.2669%" y="863.50">__libc_start_main</text></g><g><title>[dash] (35,067 samples, 11.85%)</title><rect x="34.0105%" y="869" width="11.8473%" height="15" fill="rgb(239,129,19)" fg:x="100668" fg:w="35067"/><text x="34.2605%" y="879.50">[dash]</text></g><g><title>[dash] (58 samples, 0.02%)</title><rect x="45.8578%" y="853" width="0.0196%" height="15" fill="rgb(220,106,35)" fg:x="135735" fg:w="58"/><text x="46.1078%" y="863.50"></text></g><g><title>[unknown] (97 samples, 0.03%)</title><rect x="45.8578%" y="869" width="0.0328%" height="15" fill="rgb(252,139,45)" fg:x="135735" fg:w="97"/><text x="46.1078%" y="879.50"></text></g><g><title>_dl_catch_exception (34 samples, 0.01%)</title><rect x="45.9007%" y="773" width="0.0115%" height="15" fill="rgb(229,8,36)" fg:x="135862" fg:w="34"/><text x="46.1507%" y="783.50"></text></g><g><title>openaux (34 samples, 0.01%)</title><rect x="45.9007%" y="757" width="0.0115%" height="15" fill="rgb(230,126,33)" fg:x="135862" fg:w="34"/><text x="46.1507%" y="767.50"></text></g><g><title>_dl_map_object (34 samples, 0.01%)</title><rect x="45.9007%" y="741" width="0.0115%" height="15" fill="rgb(239,140,21)" fg:x="135862" fg:w="34"/><text x="46.1507%" y="751.50"></text></g><g><title>_dl_map_object_deps (36 samples, 0.01%)</title><rect x="45.9004%" y="789" width="0.0122%" height="15" fill="rgb(254,104,9)" fg:x="135861" fg:w="36"/><text x="46.1504%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (36 samples, 0.01%)</title><rect x="45.9156%" y="773" width="0.0122%" height="15" fill="rgb(239,52,14)" fg:x="135906" fg:w="36"/><text x="46.1656%" y="783.50"></text></g><g><title>_dl_relocate_object (43 samples, 0.01%)</title><rect x="45.9139%" y="789" width="0.0145%" height="15" fill="rgb(208,227,44)" fg:x="135901" fg:w="43"/><text x="46.1639%" y="799.50"></text></g><g><title>[ld-2.31.so] (103 samples, 0.03%)</title><rect x="45.8990%" y="805" width="0.0348%" height="15" fill="rgb(246,18,19)" fg:x="135857" fg:w="103"/><text x="46.1490%" y="815.50"></text></g><g><title>_dl_start_final (105 samples, 0.04%)</title><rect x="45.8987%" y="837" width="0.0355%" height="15" fill="rgb(235,228,25)" fg:x="135856" fg:w="105"/><text x="46.1487%" y="847.50"></text></g><g><title>_dl_sysdep_start (105 samples, 0.04%)</title><rect x="45.8987%" y="821" width="0.0355%" height="15" fill="rgb(240,156,20)" fg:x="135856" fg:w="105"/><text x="46.1487%" y="831.50"></text></g><g><title>_dl_start (110 samples, 0.04%)</title><rect x="45.8987%" y="853" width="0.0372%" height="15" fill="rgb(224,8,20)" fg:x="135856" fg:w="110"/><text x="46.1487%" y="863.50"></text></g><g><title>_start (112 samples, 0.04%)</title><rect x="45.8987%" y="869" width="0.0378%" height="15" fill="rgb(214,12,52)" fg:x="135856" fg:w="112"/><text x="46.1487%" y="879.50"></text></g><g><title>asm_exc_page_fault (597 samples, 0.20%)</title><rect x="45.9365%" y="869" width="0.2017%" height="15" fill="rgb(211,220,47)" fg:x="135968" fg:w="597"/><text x="46.1865%" y="879.50"></text></g><g><title>exc_page_fault (31 samples, 0.01%)</title><rect x="46.1278%" y="853" width="0.0105%" height="15" fill="rgb(250,173,5)" fg:x="136534" fg:w="31"/><text x="46.3778%" y="863.50"></text></g><g><title>do_user_addr_fault (31 samples, 0.01%)</title><rect x="46.1278%" y="837" width="0.0105%" height="15" fill="rgb(250,125,52)" fg:x="136534" fg:w="31"/><text x="46.3778%" y="847.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="46.1278%" y="821" width="0.0105%" height="15" fill="rgb(209,133,18)" fg:x="136534" fg:w="31"/><text x="46.3778%" y="831.50"></text></g><g><title>wp_page_copy (31 samples, 0.01%)</title><rect x="46.1278%" y="805" width="0.0105%" height="15" fill="rgb(216,173,22)" fg:x="136534" fg:w="31"/><text x="46.3778%" y="815.50"></text></g><g><title>kmem_cache_free (55 samples, 0.02%)</title><rect x="46.1859%" y="693" width="0.0186%" height="15" fill="rgb(205,3,22)" fg:x="136706" fg:w="55"/><text x="46.4359%" y="703.50"></text></g><g><title>unlink_anon_vmas (125 samples, 0.04%)</title><rect x="46.1626%" y="709" width="0.0422%" height="15" fill="rgb(248,22,20)" fg:x="136637" fg:w="125"/><text x="46.4126%" y="719.50"></text></g><g><title>free_pgtables (167 samples, 0.06%)</title><rect x="46.1588%" y="725" width="0.0564%" height="15" fill="rgb(233,6,29)" fg:x="136626" fg:w="167"/><text x="46.4088%" y="735.50"></text></g><g><title>kmem_cache_free (41 samples, 0.01%)</title><rect x="46.2267%" y="709" width="0.0139%" height="15" fill="rgb(240,22,54)" fg:x="136827" fg:w="41"/><text x="46.4767%" y="719.50"></text></g><g><title>remove_vma (60 samples, 0.02%)</title><rect x="46.2207%" y="725" width="0.0203%" height="15" fill="rgb(231,133,32)" fg:x="136809" fg:w="60"/><text x="46.4707%" y="735.50"></text></g><g><title>tlb_finish_mmu (106 samples, 0.04%)</title><rect x="46.2409%" y="725" width="0.0358%" height="15" fill="rgb(248,193,4)" fg:x="136869" fg:w="106"/><text x="46.4909%" y="735.50"></text></g><g><title>release_pages (81 samples, 0.03%)</title><rect x="46.2494%" y="709" width="0.0274%" height="15" fill="rgb(211,178,46)" fg:x="136894" fg:w="81"/><text x="46.4994%" y="719.50"></text></g><g><title>page_remove_rmap (60 samples, 0.02%)</title><rect x="46.3200%" y="693" width="0.0203%" height="15" fill="rgb(224,5,42)" fg:x="137103" fg:w="60"/><text x="46.5700%" y="703.50"></text></g><g><title>unmap_page_range (187 samples, 0.06%)</title><rect x="46.2788%" y="709" width="0.0632%" height="15" fill="rgb(239,176,25)" fg:x="136981" fg:w="187"/><text x="46.5288%" y="719.50"></text></g><g><title>mmput (570 samples, 0.19%)</title><rect x="46.1517%" y="757" width="0.1926%" height="15" fill="rgb(245,187,50)" fg:x="136605" fg:w="570"/><text x="46.4017%" y="767.50"></text></g><g><title>exit_mmap (570 samples, 0.19%)</title><rect x="46.1517%" y="741" width="0.1926%" height="15" fill="rgb(248,24,15)" fg:x="136605" fg:w="570"/><text x="46.4017%" y="751.50"></text></g><g><title>unmap_vmas (199 samples, 0.07%)</title><rect x="46.2771%" y="725" width="0.0672%" height="15" fill="rgb(205,166,13)" fg:x="136976" fg:w="199"/><text x="46.5271%" y="735.50"></text></g><g><title>begin_new_exec (610 samples, 0.21%)</title><rect x="46.1436%" y="773" width="0.2061%" height="15" fill="rgb(208,114,23)" fg:x="136581" fg:w="610"/><text x="46.3936%" y="783.50"></text></g><g><title>__x64_sys_execve (642 samples, 0.22%)</title><rect x="46.1409%" y="837" width="0.2169%" height="15" fill="rgb(239,127,18)" fg:x="136573" fg:w="642"/><text x="46.3909%" y="847.50"></text></g><g><title>do_execveat_common (642 samples, 0.22%)</title><rect x="46.1409%" y="821" width="0.2169%" height="15" fill="rgb(219,154,28)" fg:x="136573" fg:w="642"/><text x="46.3909%" y="831.50"></text></g><g><title>bprm_execve (642 samples, 0.22%)</title><rect x="46.1409%" y="805" width="0.2169%" height="15" fill="rgb(225,157,23)" fg:x="136573" fg:w="642"/><text x="46.3909%" y="815.50"></text></g><g><title>load_elf_binary (642 samples, 0.22%)</title><rect x="46.1409%" y="789" width="0.2169%" height="15" fill="rgb(219,8,6)" fg:x="136573" fg:w="642"/><text x="46.3909%" y="799.50"></text></g><g><title>__put_anon_vma (54 samples, 0.02%)</title><rect x="46.3987%" y="725" width="0.0182%" height="15" fill="rgb(212,47,6)" fg:x="137336" fg:w="54"/><text x="46.6487%" y="735.50"></text></g><g><title>kmem_cache_free (48 samples, 0.02%)</title><rect x="46.4007%" y="709" width="0.0162%" height="15" fill="rgb(224,190,4)" fg:x="137342" fg:w="48"/><text x="46.6507%" y="719.50"></text></g><g><title>kmem_cache_free (125 samples, 0.04%)</title><rect x="46.4271%" y="725" width="0.0422%" height="15" fill="rgb(239,183,29)" fg:x="137420" fg:w="125"/><text x="46.6771%" y="735.50"></text></g><g><title>unlink_anon_vmas (242 samples, 0.08%)</title><rect x="46.3882%" y="741" width="0.0818%" height="15" fill="rgb(213,57,7)" fg:x="137305" fg:w="242"/><text x="46.6382%" y="751.50"></text></g><g><title>unlink_file_vma (69 samples, 0.02%)</title><rect x="46.4700%" y="741" width="0.0233%" height="15" fill="rgb(216,148,1)" fg:x="137547" fg:w="69"/><text x="46.7200%" y="751.50"></text></g><g><title>vma_interval_tree_remove (36 samples, 0.01%)</title><rect x="46.4811%" y="725" width="0.0122%" height="15" fill="rgb(236,182,29)" fg:x="137580" fg:w="36"/><text x="46.7311%" y="735.50"></text></g><g><title>free_pgtables (343 samples, 0.12%)</title><rect x="46.3805%" y="757" width="0.1159%" height="15" fill="rgb(244,120,48)" fg:x="137282" fg:w="343"/><text x="46.6305%" y="767.50"></text></g><g><title>lru_add_drain_cpu (47 samples, 0.02%)</title><rect x="46.4967%" y="741" width="0.0159%" height="15" fill="rgb(206,71,34)" fg:x="137626" fg:w="47"/><text x="46.7467%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (45 samples, 0.02%)</title><rect x="46.4974%" y="725" width="0.0152%" height="15" fill="rgb(242,32,6)" fg:x="137628" fg:w="45"/><text x="46.7474%" y="735.50"></text></g><g><title>lru_add_drain (54 samples, 0.02%)</title><rect x="46.4967%" y="757" width="0.0182%" height="15" fill="rgb(241,35,3)" fg:x="137626" fg:w="54"/><text x="46.7467%" y="767.50"></text></g><g><title>kmem_cache_free (121 samples, 0.04%)</title><rect x="46.5213%" y="741" width="0.0409%" height="15" fill="rgb(222,62,19)" fg:x="137699" fg:w="121"/><text x="46.7713%" y="751.50"></text></g><g><title>remove_vma (139 samples, 0.05%)</title><rect x="46.5156%" y="757" width="0.0470%" height="15" fill="rgb(223,110,41)" fg:x="137682" fg:w="139"/><text x="46.7656%" y="767.50"></text></g><g><title>free_pages_and_swap_cache (37 samples, 0.01%)</title><rect x="46.5666%" y="741" width="0.0125%" height="15" fill="rgb(208,224,4)" fg:x="137833" fg:w="37"/><text x="46.8166%" y="751.50"></text></g><g><title>free_unref_page_list (39 samples, 0.01%)</title><rect x="46.6153%" y="725" width="0.0132%" height="15" fill="rgb(241,137,19)" fg:x="137977" fg:w="39"/><text x="46.8653%" y="735.50"></text></g><g><title>tlb_finish_mmu (219 samples, 0.07%)</title><rect x="46.5626%" y="757" width="0.0740%" height="15" fill="rgb(244,24,17)" fg:x="137821" fg:w="219"/><text x="46.8126%" y="767.50"></text></g><g><title>release_pages (167 samples, 0.06%)</title><rect x="46.5801%" y="741" width="0.0564%" height="15" fill="rgb(245,178,49)" fg:x="137873" fg:w="167"/><text x="46.8301%" y="751.50"></text></g><g><title>__tlb_remove_page_size (52 samples, 0.02%)</title><rect x="46.7460%" y="725" width="0.0176%" height="15" fill="rgb(219,160,38)" fg:x="138364" fg:w="52"/><text x="46.9960%" y="735.50"></text></g><g><title>page_remove_rmap (151 samples, 0.05%)</title><rect x="46.7849%" y="725" width="0.0510%" height="15" fill="rgb(228,137,14)" fg:x="138479" fg:w="151"/><text x="47.0349%" y="735.50"></text></g><g><title>unmap_page_range (603 samples, 0.20%)</title><rect x="46.6416%" y="741" width="0.2037%" height="15" fill="rgb(237,134,11)" fg:x="138055" fg:w="603"/><text x="46.8916%" y="751.50"></text></g><g><title>exit_mmap (1,423 samples, 0.48%)</title><rect x="46.3730%" y="773" width="0.4808%" height="15" fill="rgb(211,126,44)" fg:x="137260" fg:w="1423"/><text x="46.6230%" y="783.50"></text></g><g><title>unmap_vmas (643 samples, 0.22%)</title><rect x="46.6366%" y="757" width="0.2172%" height="15" fill="rgb(226,171,33)" fg:x="138040" fg:w="643"/><text x="46.8866%" y="767.50"></text></g><g><title>mmput (1,429 samples, 0.48%)</title><rect x="46.3720%" y="789" width="0.4828%" height="15" fill="rgb(253,99,13)" fg:x="137257" fg:w="1429"/><text x="46.6220%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.02%)</title><rect x="46.8697%" y="693" width="0.0240%" height="15" fill="rgb(244,48,7)" fg:x="138730" fg:w="71"/><text x="47.1197%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.02%)</title><rect x="46.8700%" y="677" width="0.0236%" height="15" fill="rgb(244,217,54)" fg:x="138731" fg:w="70"/><text x="47.1200%" y="687.50"></text></g><g><title>native_write_msr (69 samples, 0.02%)</title><rect x="46.8703%" y="661" width="0.0233%" height="15" fill="rgb(224,15,18)" fg:x="138732" fg:w="69"/><text x="47.1203%" y="671.50"></text></g><g><title>_cond_resched (80 samples, 0.03%)</title><rect x="46.8687%" y="741" width="0.0270%" height="15" fill="rgb(244,99,12)" fg:x="138727" fg:w="80"/><text x="47.1187%" y="751.50"></text></g><g><title>__schedule (80 samples, 0.03%)</title><rect x="46.8687%" y="725" width="0.0270%" height="15" fill="rgb(233,226,8)" fg:x="138727" fg:w="80"/><text x="47.1187%" y="735.50"></text></g><g><title>finish_task_switch (79 samples, 0.03%)</title><rect x="46.8690%" y="709" width="0.0267%" height="15" fill="rgb(229,211,3)" fg:x="138728" fg:w="79"/><text x="47.1190%" y="719.50"></text></g><g><title>dput (84 samples, 0.03%)</title><rect x="46.8687%" y="757" width="0.0284%" height="15" fill="rgb(216,140,21)" fg:x="138727" fg:w="84"/><text x="47.1187%" y="767.50"></text></g><g><title>__wake_up_common (59 samples, 0.02%)</title><rect x="46.8997%" y="725" width="0.0199%" height="15" fill="rgb(234,122,30)" fg:x="138819" fg:w="59"/><text x="47.1497%" y="735.50"></text></g><g><title>autoremove_wake_function (55 samples, 0.02%)</title><rect x="46.9011%" y="709" width="0.0186%" height="15" fill="rgb(236,25,46)" fg:x="138823" fg:w="55"/><text x="47.1511%" y="719.50"></text></g><g><title>try_to_wake_up (54 samples, 0.02%)</title><rect x="46.9014%" y="693" width="0.0182%" height="15" fill="rgb(217,52,54)" fg:x="138824" fg:w="54"/><text x="47.1514%" y="703.50"></text></g><g><title>__wake_up_common_lock (61 samples, 0.02%)</title><rect x="46.8994%" y="741" width="0.0206%" height="15" fill="rgb(222,29,26)" fg:x="138818" fg:w="61"/><text x="47.1494%" y="751.50"></text></g><g><title>__fput (166 samples, 0.06%)</title><rect x="46.8653%" y="773" width="0.0561%" height="15" fill="rgb(216,177,29)" fg:x="138717" fg:w="166"/><text x="47.1153%" y="783.50"></text></g><g><title>pipe_release (66 samples, 0.02%)</title><rect x="46.8991%" y="757" width="0.0223%" height="15" fill="rgb(247,136,51)" fg:x="138817" fg:w="66"/><text x="47.1491%" y="767.50"></text></g><g><title>__x64_sys_exit_group (1,672 samples, 0.56%)</title><rect x="46.3578%" y="837" width="0.5649%" height="15" fill="rgb(231,47,47)" fg:x="137215" fg:w="1672"/><text x="46.6078%" y="847.50"></text></g><g><title>do_group_exit (1,672 samples, 0.56%)</title><rect x="46.3578%" y="821" width="0.5649%" height="15" fill="rgb(211,192,36)" fg:x="137215" fg:w="1672"/><text x="46.6078%" y="831.50"></text></g><g><title>do_exit (1,672 samples, 0.56%)</title><rect x="46.3578%" y="805" width="0.5649%" height="15" fill="rgb(229,156,32)" fg:x="137215" fg:w="1672"/><text x="46.6078%" y="815.50"></text></g><g><title>task_work_run (174 samples, 0.06%)</title><rect x="46.8639%" y="789" width="0.0588%" height="15" fill="rgb(248,213,20)" fg:x="138713" fg:w="174"/><text x="47.1139%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,321 samples, 0.78%)</title><rect x="46.1403%" y="869" width="0.7841%" height="15" fill="rgb(217,64,7)" fg:x="136571" fg:w="2321"/><text x="46.3903%" y="879.50"></text></g><g><title>do_syscall_64 (2,319 samples, 0.78%)</title><rect x="46.1409%" y="853" width="0.7835%" height="15" fill="rgb(232,142,8)" fg:x="136573" fg:w="2319"/><text x="46.3909%" y="863.50"></text></g><g><title>c++ (38,316 samples, 12.94%)</title><rect x="33.9868%" y="885" width="12.9450%" height="15" fill="rgb(224,92,44)" fg:x="100598" fg:w="38316"/><text x="34.2368%" y="895.50">c++</text></g><g><title>[perf-12570.map] (345 samples, 0.12%)</title><rect x="46.9359%" y="869" width="0.1166%" height="15" fill="rgb(214,169,17)" fg:x="138926" fg:w="345"/><text x="47.1859%" y="879.50"></text></g><g><title>__GI___clone (38 samples, 0.01%)</title><rect x="47.0555%" y="869" width="0.0128%" height="15" fill="rgb(210,59,37)" fg:x="139280" fg:w="38"/><text x="47.3055%" y="879.50"></text></g><g><title>find-action-loo (399 samples, 0.13%)</title><rect x="46.9339%" y="885" width="0.1348%" height="15" fill="rgb(214,116,48)" fg:x="138920" fg:w="399"/><text x="47.1839%" y="895.50"></text></g><g><title>globbing_pool-0 (50 samples, 0.02%)</title><rect x="47.0687%" y="885" width="0.0169%" height="15" fill="rgb(244,191,6)" fg:x="139319" fg:w="50"/><text x="47.3187%" y="895.50"></text></g><g><title>Monitor::lock (30 samples, 0.01%)</title><rect x="47.1085%" y="837" width="0.0101%" height="15" fill="rgb(241,50,52)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="847.50"></text></g><g><title>Monitor::ILock (30 samples, 0.01%)</title><rect x="47.1085%" y="821" width="0.0101%" height="15" fill="rgb(236,75,39)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="831.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.01%)</title><rect x="47.1085%" y="805" width="0.0101%" height="15" fill="rgb(236,99,0)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="815.50"></text></g><g><title>__pthread_cond_wait (30 samples, 0.01%)</title><rect x="47.1085%" y="789" width="0.0101%" height="15" fill="rgb(207,202,15)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="47.1085%" y="773" width="0.0101%" height="15" fill="rgb(233,207,14)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="783.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.01%)</title><rect x="47.1085%" y="757" width="0.0101%" height="15" fill="rgb(226,27,51)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="47.1085%" y="741" width="0.0101%" height="15" fill="rgb(206,104,42)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="751.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="47.1085%" y="725" width="0.0101%" height="15" fill="rgb(212,225,4)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="735.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.01%)</title><rect x="47.1085%" y="709" width="0.0101%" height="15" fill="rgb(233,96,42)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="719.50"></text></g><g><title>do_futex (30 samples, 0.01%)</title><rect x="47.1085%" y="693" width="0.0101%" height="15" fill="rgb(229,21,32)" fg:x="139437" fg:w="30"/><text x="47.3585%" y="703.50"></text></g><g><title>JVM_StartThread (46 samples, 0.02%)</title><rect x="47.1082%" y="853" width="0.0155%" height="15" fill="rgb(226,216,24)" fg:x="139436" fg:w="46"/><text x="47.3582%" y="863.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.01%)</title><rect x="47.1244%" y="693" width="0.0145%" height="15" fill="rgb(221,163,17)" fg:x="139484" fg:w="43"/><text x="47.3744%" y="703.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="47.1244%" y="677" width="0.0145%" height="15" fill="rgb(216,216,42)" fg:x="139484" fg:w="43"/><text x="47.3744%" y="687.50"></text></g><g><title>__schedule (42 samples, 0.01%)</title><rect x="47.1247%" y="661" width="0.0142%" height="15" fill="rgb(240,118,7)" fg:x="139485" fg:w="42"/><text x="47.3747%" y="671.50"></text></g><g><title>finish_task_switch (41 samples, 0.01%)</title><rect x="47.1251%" y="645" width="0.0139%" height="15" fill="rgb(221,67,37)" fg:x="139486" fg:w="41"/><text x="47.3751%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.01%)</title><rect x="47.1254%" y="629" width="0.0135%" height="15" fill="rgb(241,32,44)" fg:x="139487" fg:w="40"/><text x="47.3754%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.01%)</title><rect x="47.1261%" y="613" width="0.0128%" height="15" fill="rgb(235,204,43)" fg:x="139489" fg:w="38"/><text x="47.3761%" y="623.50"></text></g><g><title>native_write_msr (38 samples, 0.01%)</title><rect x="47.1261%" y="597" width="0.0128%" height="15" fill="rgb(213,116,10)" fg:x="139489" fg:w="38"/><text x="47.3761%" y="607.50"></text></g><g><title>do_syscall_64 (45 samples, 0.02%)</title><rect x="47.1244%" y="757" width="0.0152%" height="15" fill="rgb(239,15,48)" fg:x="139484" fg:w="45"/><text x="47.3744%" y="767.50"></text></g><g><title>__x64_sys_futex (45 samples, 0.02%)</title><rect x="47.1244%" y="741" width="0.0152%" height="15" fill="rgb(207,123,36)" fg:x="139484" fg:w="45"/><text x="47.3744%" y="751.50"></text></g><g><title>do_futex (45 samples, 0.02%)</title><rect x="47.1244%" y="725" width="0.0152%" height="15" fill="rgb(209,103,30)" fg:x="139484" fg:w="45"/><text x="47.3744%" y="735.50"></text></g><g><title>futex_wait (45 samples, 0.02%)</title><rect x="47.1244%" y="709" width="0.0152%" height="15" fill="rgb(238,100,19)" fg:x="139484" fg:w="45"/><text x="47.3744%" y="719.50"></text></g><g><title>Unsafe_Park (48 samples, 0.02%)</title><rect x="47.1241%" y="853" width="0.0162%" height="15" fill="rgb(244,30,14)" fg:x="139483" fg:w="48"/><text x="47.3741%" y="863.50"></text></g><g><title>Parker::park (48 samples, 0.02%)</title><rect x="47.1241%" y="837" width="0.0162%" height="15" fill="rgb(249,174,6)" fg:x="139483" fg:w="48"/><text x="47.3741%" y="847.50"></text></g><g><title>__pthread_cond_wait (48 samples, 0.02%)</title><rect x="47.1241%" y="821" width="0.0162%" height="15" fill="rgb(235,213,41)" fg:x="139483" fg:w="48"/><text x="47.3741%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (48 samples, 0.02%)</title><rect x="47.1241%" y="805" width="0.0162%" height="15" fill="rgb(213,118,6)" fg:x="139483" fg:w="48"/><text x="47.3741%" y="815.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.02%)</title><rect x="47.1244%" y="789" width="0.0159%" height="15" fill="rgb(235,44,51)" fg:x="139484" fg:w="47"/><text x="47.3744%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.02%)</title><rect x="47.1244%" y="773" width="0.0159%" height="15" fill="rgb(217,9,53)" fg:x="139484" fg:w="47"/><text x="47.3744%" y="783.50"></text></g><g><title>[perf-12570.map] (160 samples, 0.05%)</title><rect x="47.0889%" y="869" width="0.0541%" height="15" fill="rgb(237,172,34)" fg:x="139379" fg:w="160"/><text x="47.3389%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.01%)</title><rect x="47.1454%" y="805" width="0.0149%" height="15" fill="rgb(206,206,11)" fg:x="139546" fg:w="44"/><text x="47.3954%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.01%)</title><rect x="47.1454%" y="789" width="0.0149%" height="15" fill="rgb(214,149,29)" fg:x="139546" fg:w="44"/><text x="47.3954%" y="799.50"></text></g><g><title>native_write_msr (44 samples, 0.01%)</title><rect x="47.1454%" y="773" width="0.0149%" height="15" fill="rgb(208,123,3)" fg:x="139546" fg:w="44"/><text x="47.3954%" y="783.50"></text></g><g><title>schedule_tail (45 samples, 0.02%)</title><rect x="47.1454%" y="837" width="0.0152%" height="15" fill="rgb(229,126,4)" fg:x="139546" fg:w="45"/><text x="47.3954%" y="847.50"></text></g><g><title>finish_task_switch (45 samples, 0.02%)</title><rect x="47.1454%" y="821" width="0.0152%" height="15" fill="rgb(222,92,36)" fg:x="139546" fg:w="45"/><text x="47.3954%" y="831.50"></text></g><g><title>ret_from_fork (47 samples, 0.02%)</title><rect x="47.1454%" y="853" width="0.0159%" height="15" fill="rgb(216,39,41)" fg:x="139546" fg:w="47"/><text x="47.3954%" y="863.50"></text></g><g><title>__GI___clone (77 samples, 0.03%)</title><rect x="47.1437%" y="869" width="0.0260%" height="15" fill="rgb(253,127,28)" fg:x="139541" fg:w="77"/><text x="47.3937%" y="879.50"></text></g><g><title>globbing_pool-1 (250 samples, 0.08%)</title><rect x="47.0856%" y="885" width="0.0845%" height="15" fill="rgb(249,152,51)" fg:x="139369" fg:w="250"/><text x="47.3356%" y="895.50"></text></g><g><title>[libunix_jni.so] (42 samples, 0.01%)</title><rect x="47.1710%" y="869" width="0.0142%" height="15" fill="rgb(209,123,42)" fg:x="139622" fg:w="42"/><text x="47.4210%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.01%)</title><rect x="47.2258%" y="597" width="0.0128%" height="15" fill="rgb(241,118,22)" fg:x="139784" fg:w="38"/><text x="47.4758%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.01%)</title><rect x="47.2261%" y="581" width="0.0125%" height="15" fill="rgb(208,25,7)" fg:x="139785" fg:w="37"/><text x="47.4761%" y="591.50"></text></g><g><title>native_write_msr (36 samples, 0.01%)</title><rect x="47.2264%" y="565" width="0.0122%" height="15" fill="rgb(243,144,39)" fg:x="139786" fg:w="36"/><text x="47.4764%" y="575.50"></text></g><g><title>__pthread_cond_wait (43 samples, 0.01%)</title><rect x="47.2254%" y="789" width="0.0145%" height="15" fill="rgb(250,50,5)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (43 samples, 0.01%)</title><rect x="47.2254%" y="773" width="0.0145%" height="15" fill="rgb(207,67,11)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="783.50"></text></g><g><title>futex_wait_cancelable (43 samples, 0.01%)</title><rect x="47.2254%" y="757" width="0.0145%" height="15" fill="rgb(245,204,40)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="47.2254%" y="741" width="0.0145%" height="15" fill="rgb(238,228,24)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="751.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="47.2254%" y="725" width="0.0145%" height="15" fill="rgb(217,116,22)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="735.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.01%)</title><rect x="47.2254%" y="709" width="0.0145%" height="15" fill="rgb(234,98,12)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="719.50"></text></g><g><title>do_futex (43 samples, 0.01%)</title><rect x="47.2254%" y="693" width="0.0145%" height="15" fill="rgb(242,170,50)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="703.50"></text></g><g><title>futex_wait (43 samples, 0.01%)</title><rect x="47.2254%" y="677" width="0.0145%" height="15" fill="rgb(235,7,5)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="687.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.01%)</title><rect x="47.2254%" y="661" width="0.0145%" height="15" fill="rgb(241,114,28)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="671.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="47.2254%" y="645" width="0.0145%" height="15" fill="rgb(246,112,42)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="655.50"></text></g><g><title>__schedule (43 samples, 0.01%)</title><rect x="47.2254%" y="629" width="0.0145%" height="15" fill="rgb(248,228,14)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="639.50"></text></g><g><title>finish_task_switch (43 samples, 0.01%)</title><rect x="47.2254%" y="613" width="0.0145%" height="15" fill="rgb(208,133,18)" fg:x="139783" fg:w="43"/><text x="47.4754%" y="623.50"></text></g><g><title>Monitor::lock (45 samples, 0.02%)</title><rect x="47.2251%" y="837" width="0.0152%" height="15" fill="rgb(207,35,49)" fg:x="139782" fg:w="45"/><text x="47.4751%" y="847.50"></text></g><g><title>Monitor::ILock (45 samples, 0.02%)</title><rect x="47.2251%" y="821" width="0.0152%" height="15" fill="rgb(205,68,36)" fg:x="139782" fg:w="45"/><text x="47.4751%" y="831.50"></text></g><g><title>os::PlatformEvent::park (44 samples, 0.01%)</title><rect x="47.2254%" y="805" width="0.0149%" height="15" fill="rgb(245,62,40)" fg:x="139783" fg:w="44"/><text x="47.4754%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="47.2416%" y="581" width="0.0111%" height="15" fill="rgb(228,27,24)" fg:x="139831" fg:w="33"/><text x="47.4916%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="47.2423%" y="565" width="0.0105%" height="15" fill="rgb(253,19,12)" fg:x="139833" fg:w="31"/><text x="47.4923%" y="575.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="47.2427%" y="549" width="0.0101%" height="15" fill="rgb(232,28,20)" fg:x="139834" fg:w="30"/><text x="47.4927%" y="559.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.01%)</title><rect x="47.2410%" y="773" width="0.0122%" height="15" fill="rgb(218,35,51)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.01%)</title><rect x="47.2410%" y="757" width="0.0122%" height="15" fill="rgb(212,90,40)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="767.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.01%)</title><rect x="47.2410%" y="741" width="0.0122%" height="15" fill="rgb(220,172,12)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.01%)</title><rect x="47.2410%" y="725" width="0.0122%" height="15" fill="rgb(226,159,20)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="735.50"></text></g><g><title>do_syscall_64 (36 samples, 0.01%)</title><rect x="47.2410%" y="709" width="0.0122%" height="15" fill="rgb(234,205,16)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="719.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.01%)</title><rect x="47.2410%" y="693" width="0.0122%" height="15" fill="rgb(207,9,39)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="703.50"></text></g><g><title>do_futex (36 samples, 0.01%)</title><rect x="47.2410%" y="677" width="0.0122%" height="15" fill="rgb(249,143,15)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="687.50"></text></g><g><title>futex_wait (36 samples, 0.01%)</title><rect x="47.2410%" y="661" width="0.0122%" height="15" fill="rgb(253,133,29)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="671.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.01%)</title><rect x="47.2410%" y="645" width="0.0122%" height="15" fill="rgb(221,187,0)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="655.50"></text></g><g><title>schedule (36 samples, 0.01%)</title><rect x="47.2410%" y="629" width="0.0122%" height="15" fill="rgb(205,204,26)" fg:x="139829" fg:w="36"/><text x="47.4910%" y="639.50"></text></g><g><title>__schedule (35 samples, 0.01%)</title><rect x="47.2413%" y="613" width="0.0118%" height="15" fill="rgb(224,68,54)" fg:x="139830" fg:w="35"/><text x="47.4913%" y="623.50"></text></g><g><title>finish_task_switch (35 samples, 0.01%)</title><rect x="47.2413%" y="597" width="0.0118%" height="15" fill="rgb(209,67,4)" fg:x="139830" fg:w="35"/><text x="47.4913%" y="607.50"></text></g><g><title>Monitor::wait (37 samples, 0.01%)</title><rect x="47.2410%" y="821" width="0.0125%" height="15" fill="rgb(228,229,18)" fg:x="139829" fg:w="37"/><text x="47.4910%" y="831.50"></text></g><g><title>Monitor::IWait (37 samples, 0.01%)</title><rect x="47.2410%" y="805" width="0.0125%" height="15" fill="rgb(231,89,13)" fg:x="139829" fg:w="37"/><text x="47.4910%" y="815.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.01%)</title><rect x="47.2410%" y="789" width="0.0125%" height="15" fill="rgb(210,182,18)" fg:x="139829" fg:w="37"/><text x="47.4910%" y="799.50"></text></g><g><title>os::create_thread (41 samples, 0.01%)</title><rect x="47.2406%" y="837" width="0.0139%" height="15" fill="rgb(240,105,2)" fg:x="139828" fg:w="41"/><text x="47.4906%" y="847.50"></text></g><g><title>JVM_StartThread (99 samples, 0.03%)</title><rect x="47.2214%" y="853" width="0.0334%" height="15" fill="rgb(207,170,50)" fg:x="139771" fg:w="99"/><text x="47.4714%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="47.2562%" y="629" width="0.0111%" height="15" fill="rgb(232,133,24)" fg:x="139874" fg:w="33"/><text x="47.5062%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="47.2565%" y="613" width="0.0108%" height="15" fill="rgb(235,166,27)" fg:x="139875" fg:w="32"/><text x="47.5065%" y="623.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="47.2565%" y="597" width="0.0108%" height="15" fill="rgb(209,19,13)" fg:x="139875" fg:w="32"/><text x="47.5065%" y="607.50"></text></g><g><title>finish_task_switch (36 samples, 0.01%)</title><rect x="47.2555%" y="645" width="0.0122%" height="15" fill="rgb(226,79,39)" fg:x="139872" fg:w="36"/><text x="47.5055%" y="655.50"></text></g><g><title>do_syscall_64 (37 samples, 0.01%)</title><rect x="47.2555%" y="757" width="0.0125%" height="15" fill="rgb(222,163,10)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="767.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.01%)</title><rect x="47.2555%" y="741" width="0.0125%" height="15" fill="rgb(214,44,19)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="751.50"></text></g><g><title>do_futex (37 samples, 0.01%)</title><rect x="47.2555%" y="725" width="0.0125%" height="15" fill="rgb(210,217,13)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="735.50"></text></g><g><title>futex_wait (37 samples, 0.01%)</title><rect x="47.2555%" y="709" width="0.0125%" height="15" fill="rgb(237,61,54)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="719.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="47.2555%" y="693" width="0.0125%" height="15" fill="rgb(226,184,24)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="703.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="47.2555%" y="677" width="0.0125%" height="15" fill="rgb(223,226,4)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="687.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="47.2555%" y="661" width="0.0125%" height="15" fill="rgb(210,26,41)" fg:x="139872" fg:w="37"/><text x="47.5055%" y="671.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.01%)</title><rect x="47.2555%" y="821" width="0.0135%" height="15" fill="rgb(220,221,6)" fg:x="139872" fg:w="40"/><text x="47.5055%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.01%)</title><rect x="47.2555%" y="805" width="0.0135%" height="15" fill="rgb(225,89,49)" fg:x="139872" fg:w="40"/><text x="47.5055%" y="815.50"></text></g><g><title>futex_wait_cancelable (40 samples, 0.01%)</title><rect x="47.2555%" y="789" width="0.0135%" height="15" fill="rgb(218,70,45)" fg:x="139872" fg:w="40"/><text x="47.5055%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="47.2555%" y="773" width="0.0135%" height="15" fill="rgb(238,166,21)" fg:x="139872" fg:w="40"/><text x="47.5055%" y="783.50"></text></g><g><title>Unsafe_Park (42 samples, 0.01%)</title><rect x="47.2552%" y="853" width="0.0142%" height="15" fill="rgb(224,141,44)" fg:x="139871" fg:w="42"/><text x="47.5052%" y="863.50"></text></g><g><title>Parker::park (42 samples, 0.01%)</title><rect x="47.2552%" y="837" width="0.0142%" height="15" fill="rgb(230,12,49)" fg:x="139871" fg:w="42"/><text x="47.5052%" y="847.50"></text></g><g><title>[perf-12570.map] (259 samples, 0.09%)</title><rect x="47.1852%" y="869" width="0.0875%" height="15" fill="rgb(212,174,12)" fg:x="139664" fg:w="259"/><text x="47.4352%" y="879.50"></text></g><g><title>schedule_tail (32 samples, 0.01%)</title><rect x="47.2761%" y="837" width="0.0108%" height="15" fill="rgb(246,67,9)" fg:x="139933" fg:w="32"/><text x="47.5261%" y="847.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="47.2761%" y="821" width="0.0108%" height="15" fill="rgb(239,35,23)" fg:x="139933" fg:w="32"/><text x="47.5261%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="47.2761%" y="805" width="0.0108%" height="15" fill="rgb(211,167,0)" fg:x="139933" fg:w="32"/><text x="47.5261%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="47.2761%" y="789" width="0.0108%" height="15" fill="rgb(225,119,45)" fg:x="139933" fg:w="32"/><text x="47.5261%" y="799.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="47.2761%" y="773" width="0.0108%" height="15" fill="rgb(210,162,6)" fg:x="139933" fg:w="32"/><text x="47.5261%" y="783.50"></text></g><g><title>ret_from_fork (34 samples, 0.01%)</title><rect x="47.2758%" y="853" width="0.0115%" height="15" fill="rgb(208,118,35)" fg:x="139932" fg:w="34"/><text x="47.5258%" y="863.50"></text></g><g><title>__GI___clone (69 samples, 0.02%)</title><rect x="47.2741%" y="869" width="0.0233%" height="15" fill="rgb(239,4,53)" fg:x="139927" fg:w="69"/><text x="47.5241%" y="879.50"></text></g><g><title>start_thread (30 samples, 0.01%)</title><rect x="47.2872%" y="853" width="0.0101%" height="15" fill="rgb(213,130,21)" fg:x="139966" fg:w="30"/><text x="47.5372%" y="863.50"></text></g><g><title>thread_native_entry (30 samples, 0.01%)</title><rect x="47.2872%" y="837" width="0.0101%" height="15" fill="rgb(235,148,0)" fg:x="139966" fg:w="30"/><text x="47.5372%" y="847.50"></text></g><g><title>globbing_pool-2 (378 samples, 0.13%)</title><rect x="47.1700%" y="885" width="0.1277%" height="15" fill="rgb(244,224,18)" fg:x="139619" fg:w="378"/><text x="47.4200%" y="895.50"></text></g><g><title>JVM_StartThread (45 samples, 0.02%)</title><rect x="47.3416%" y="853" width="0.0152%" height="15" fill="rgb(211,214,4)" fg:x="140127" fg:w="45"/><text x="47.5916%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.01%)</title><rect x="47.3612%" y="629" width="0.0149%" height="15" fill="rgb(206,119,25)" fg:x="140185" fg:w="44"/><text x="47.6112%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.01%)</title><rect x="47.3616%" y="613" width="0.0145%" height="15" fill="rgb(243,93,47)" fg:x="140186" fg:w="43"/><text x="47.6116%" y="623.50"></text></g><g><title>native_write_msr (43 samples, 0.01%)</title><rect x="47.3616%" y="597" width="0.0145%" height="15" fill="rgb(224,194,6)" fg:x="140186" fg:w="43"/><text x="47.6116%" y="607.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.02%)</title><rect x="47.3606%" y="693" width="0.0162%" height="15" fill="rgb(243,229,6)" fg:x="140183" fg:w="48"/><text x="47.6106%" y="703.50"></text></g><g><title>schedule (48 samples, 0.02%)</title><rect x="47.3606%" y="677" width="0.0162%" height="15" fill="rgb(207,23,50)" fg:x="140183" fg:w="48"/><text x="47.6106%" y="687.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="47.3606%" y="661" width="0.0162%" height="15" fill="rgb(253,192,32)" fg:x="140183" fg:w="48"/><text x="47.6106%" y="671.50"></text></g><g><title>finish_task_switch (47 samples, 0.02%)</title><rect x="47.3609%" y="645" width="0.0159%" height="15" fill="rgb(213,21,6)" fg:x="140184" fg:w="47"/><text x="47.6109%" y="655.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="47.3599%" y="757" width="0.0172%" height="15" fill="rgb(243,151,13)" fg:x="140181" fg:w="51"/><text x="47.6099%" y="767.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.02%)</title><rect x="47.3606%" y="741" width="0.0166%" height="15" fill="rgb(233,165,41)" fg:x="140183" fg:w="49"/><text x="47.6106%" y="751.50"></text></g><g><title>do_futex (49 samples, 0.02%)</title><rect x="47.3606%" y="725" width="0.0166%" height="15" fill="rgb(246,176,45)" fg:x="140183" fg:w="49"/><text x="47.6106%" y="735.50"></text></g><g><title>futex_wait (49 samples, 0.02%)</title><rect x="47.3606%" y="709" width="0.0166%" height="15" fill="rgb(217,170,52)" fg:x="140183" fg:w="49"/><text x="47.6106%" y="719.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.02%)</title><rect x="47.3599%" y="821" width="0.0182%" height="15" fill="rgb(214,203,54)" fg:x="140181" fg:w="54"/><text x="47.6099%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.02%)</title><rect x="47.3599%" y="805" width="0.0182%" height="15" fill="rgb(248,215,49)" fg:x="140181" fg:w="54"/><text x="47.6099%" y="815.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.02%)</title><rect x="47.3599%" y="789" width="0.0182%" height="15" fill="rgb(208,46,10)" fg:x="140181" fg:w="54"/><text x="47.6099%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.02%)</title><rect x="47.3599%" y="773" width="0.0182%" height="15" fill="rgb(254,5,31)" fg:x="140181" fg:w="54"/><text x="47.6099%" y="783.50"></text></g><g><title>Parker::park (56 samples, 0.02%)</title><rect x="47.3599%" y="837" width="0.0189%" height="15" fill="rgb(222,104,33)" fg:x="140181" fg:w="56"/><text x="47.6099%" y="847.50"></text></g><g><title>Unsafe_Park (57 samples, 0.02%)</title><rect x="47.3599%" y="853" width="0.0193%" height="15" fill="rgb(248,49,16)" fg:x="140181" fg:w="57"/><text x="47.6099%" y="863.50"></text></g><g><title>[perf-12570.map] (211 samples, 0.07%)</title><rect x="47.3089%" y="869" width="0.0713%" height="15" fill="rgb(232,198,41)" fg:x="140030" fg:w="211"/><text x="47.5589%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.01%)</title><rect x="47.3829%" y="805" width="0.0135%" height="15" fill="rgb(214,125,3)" fg:x="140249" fg:w="40"/><text x="47.6329%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="47.3832%" y="789" width="0.0132%" height="15" fill="rgb(229,220,28)" fg:x="140250" fg:w="39"/><text x="47.6332%" y="799.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="47.3832%" y="773" width="0.0132%" height="15" fill="rgb(222,64,37)" fg:x="140250" fg:w="39"/><text x="47.6332%" y="783.50"></text></g><g><title>schedule_tail (41 samples, 0.01%)</title><rect x="47.3829%" y="837" width="0.0139%" height="15" fill="rgb(249,184,13)" fg:x="140249" fg:w="41"/><text x="47.6329%" y="847.50"></text></g><g><title>finish_task_switch (41 samples, 0.01%)</title><rect x="47.3829%" y="821" width="0.0139%" height="15" fill="rgb(252,176,6)" fg:x="140249" fg:w="41"/><text x="47.6329%" y="831.50"></text></g><g><title>ret_from_fork (42 samples, 0.01%)</title><rect x="47.3829%" y="853" width="0.0142%" height="15" fill="rgb(228,153,7)" fg:x="140249" fg:w="42"/><text x="47.6329%" y="863.50"></text></g><g><title>__GI___clone (53 samples, 0.02%)</title><rect x="47.3812%" y="869" width="0.0179%" height="15" fill="rgb(242,193,5)" fg:x="140244" fg:w="53"/><text x="47.6312%" y="879.50"></text></g><g><title>globbing_pool-3 (301 samples, 0.10%)</title><rect x="47.2977%" y="885" width="0.1017%" height="15" fill="rgb(232,140,9)" fg:x="139997" fg:w="301"/><text x="47.5477%" y="895.50"></text></g><g><title>[libunix_jni.so] (34 samples, 0.01%)</title><rect x="47.4008%" y="869" width="0.0115%" height="15" fill="rgb(213,222,16)" fg:x="140302" fg:w="34"/><text x="47.6508%" y="879.50"></text></g><g><title>JVM_StartThread (31 samples, 0.01%)</title><rect x="47.4481%" y="853" width="0.0105%" height="15" fill="rgb(222,75,50)" fg:x="140442" fg:w="31"/><text x="47.6981%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.03%)</title><rect x="47.4629%" y="629" width="0.0264%" height="15" fill="rgb(205,180,2)" fg:x="140486" fg:w="78"/><text x="47.7129%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (77 samples, 0.03%)</title><rect x="47.4633%" y="613" width="0.0260%" height="15" fill="rgb(216,34,7)" fg:x="140487" fg:w="77"/><text x="47.7133%" y="623.50"></text></g><g><title>native_write_msr (77 samples, 0.03%)</title><rect x="47.4633%" y="597" width="0.0260%" height="15" fill="rgb(253,16,32)" fg:x="140487" fg:w="77"/><text x="47.7133%" y="607.50"></text></g><g><title>do_syscall_64 (90 samples, 0.03%)</title><rect x="47.4602%" y="757" width="0.0304%" height="15" fill="rgb(208,97,28)" fg:x="140478" fg:w="90"/><text x="47.7102%" y="767.50"></text></g><g><title>__x64_sys_futex (90 samples, 0.03%)</title><rect x="47.4602%" y="741" width="0.0304%" height="15" fill="rgb(225,92,11)" fg:x="140478" fg:w="90"/><text x="47.7102%" y="751.50"></text></g><g><title>do_futex (90 samples, 0.03%)</title><rect x="47.4602%" y="725" width="0.0304%" height="15" fill="rgb(243,38,12)" fg:x="140478" fg:w="90"/><text x="47.7102%" y="735.50"></text></g><g><title>futex_wait (90 samples, 0.03%)</title><rect x="47.4602%" y="709" width="0.0304%" height="15" fill="rgb(208,139,16)" fg:x="140478" fg:w="90"/><text x="47.7102%" y="719.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.03%)</title><rect x="47.4609%" y="693" width="0.0297%" height="15" fill="rgb(227,24,9)" fg:x="140480" fg:w="88"/><text x="47.7109%" y="703.50"></text></g><g><title>schedule (85 samples, 0.03%)</title><rect x="47.4619%" y="677" width="0.0287%" height="15" fill="rgb(206,62,11)" fg:x="140483" fg:w="85"/><text x="47.7119%" y="687.50"></text></g><g><title>__schedule (85 samples, 0.03%)</title><rect x="47.4619%" y="661" width="0.0287%" height="15" fill="rgb(228,134,27)" fg:x="140483" fg:w="85"/><text x="47.7119%" y="671.50"></text></g><g><title>finish_task_switch (85 samples, 0.03%)</title><rect x="47.4619%" y="645" width="0.0287%" height="15" fill="rgb(205,55,33)" fg:x="140483" fg:w="85"/><text x="47.7119%" y="655.50"></text></g><g><title>__pthread_cond_wait (92 samples, 0.03%)</title><rect x="47.4602%" y="821" width="0.0311%" height="15" fill="rgb(243,75,43)" fg:x="140478" fg:w="92"/><text x="47.7102%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (92 samples, 0.03%)</title><rect x="47.4602%" y="805" width="0.0311%" height="15" fill="rgb(223,27,42)" fg:x="140478" fg:w="92"/><text x="47.7102%" y="815.50"></text></g><g><title>futex_wait_cancelable (92 samples, 0.03%)</title><rect x="47.4602%" y="789" width="0.0311%" height="15" fill="rgb(232,189,33)" fg:x="140478" fg:w="92"/><text x="47.7102%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.03%)</title><rect x="47.4602%" y="773" width="0.0311%" height="15" fill="rgb(210,9,39)" fg:x="140478" fg:w="92"/><text x="47.7102%" y="783.50"></text></g><g><title>Unsafe_Park (96 samples, 0.03%)</title><rect x="47.4592%" y="853" width="0.0324%" height="15" fill="rgb(242,85,26)" fg:x="140475" fg:w="96"/><text x="47.7092%" y="863.50"></text></g><g><title>Parker::park (95 samples, 0.03%)</title><rect x="47.4596%" y="837" width="0.0321%" height="15" fill="rgb(248,44,4)" fg:x="140476" fg:w="95"/><text x="47.7096%" y="847.50"></text></g><g><title>[perf-12570.map] (244 samples, 0.08%)</title><rect x="47.4123%" y="869" width="0.0824%" height="15" fill="rgb(250,96,46)" fg:x="140336" fg:w="244"/><text x="47.6623%" y="879.50"></text></g><g><title>__GI___clone (39 samples, 0.01%)</title><rect x="47.4950%" y="869" width="0.0132%" height="15" fill="rgb(229,116,26)" fg:x="140581" fg:w="39"/><text x="47.7450%" y="879.50"></text></g><g><title>globbing_pool-4 (323 samples, 0.11%)</title><rect x="47.3994%" y="885" width="0.1091%" height="15" fill="rgb(246,94,34)" fg:x="140298" fg:w="323"/><text x="47.6494%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="47.5616%" y="629" width="0.0108%" height="15" fill="rgb(251,73,21)" fg:x="140778" fg:w="32"/><text x="47.8116%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="47.5616%" y="613" width="0.0108%" height="15" fill="rgb(254,121,25)" fg:x="140778" fg:w="32"/><text x="47.8116%" y="623.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="47.5616%" y="597" width="0.0108%" height="15" fill="rgb(215,161,49)" fg:x="140778" fg:w="32"/><text x="47.8116%" y="607.50"></text></g><g><title>finish_task_switch (35 samples, 0.01%)</title><rect x="47.5612%" y="645" width="0.0118%" height="15" fill="rgb(221,43,13)" fg:x="140777" fg:w="35"/><text x="47.8112%" y="655.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="47.5609%" y="693" width="0.0125%" height="15" fill="rgb(249,5,37)" fg:x="140776" fg:w="37"/><text x="47.8109%" y="703.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="47.5609%" y="677" width="0.0125%" height="15" fill="rgb(226,25,44)" fg:x="140776" fg:w="37"/><text x="47.8109%" y="687.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="47.5609%" y="661" width="0.0125%" height="15" fill="rgb(238,189,16)" fg:x="140776" fg:w="37"/><text x="47.8109%" y="671.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.01%)</title><rect x="47.5606%" y="821" width="0.0132%" height="15" fill="rgb(251,186,8)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.01%)</title><rect x="47.5606%" y="805" width="0.0132%" height="15" fill="rgb(254,34,31)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="815.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.01%)</title><rect x="47.5606%" y="789" width="0.0132%" height="15" fill="rgb(225,215,27)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="47.5606%" y="773" width="0.0132%" height="15" fill="rgb(221,192,48)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="783.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="47.5606%" y="757" width="0.0132%" height="15" fill="rgb(219,137,20)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="767.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.01%)</title><rect x="47.5606%" y="741" width="0.0132%" height="15" fill="rgb(219,84,11)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="751.50"></text></g><g><title>do_futex (39 samples, 0.01%)</title><rect x="47.5606%" y="725" width="0.0132%" height="15" fill="rgb(224,10,23)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="735.50"></text></g><g><title>futex_wait (39 samples, 0.01%)</title><rect x="47.5606%" y="709" width="0.0132%" height="15" fill="rgb(248,22,39)" fg:x="140775" fg:w="39"/><text x="47.8106%" y="719.50"></text></g><g><title>Unsafe_Park (48 samples, 0.02%)</title><rect x="47.5579%" y="853" width="0.0162%" height="15" fill="rgb(212,154,20)" fg:x="140767" fg:w="48"/><text x="47.8079%" y="863.50"></text></g><g><title>Parker::park (48 samples, 0.02%)</title><rect x="47.5579%" y="837" width="0.0162%" height="15" fill="rgb(236,199,50)" fg:x="140767" fg:w="48"/><text x="47.8079%" y="847.50"></text></g><g><title>[perf-12570.map] (172 samples, 0.06%)</title><rect x="47.5166%" y="869" width="0.0581%" height="15" fill="rgb(211,9,17)" fg:x="140645" fg:w="172"/><text x="47.7666%" y="879.50"></text></g><g><title>__GI___clone (34 samples, 0.01%)</title><rect x="47.5754%" y="869" width="0.0115%" height="15" fill="rgb(243,216,36)" fg:x="140819" fg:w="34"/><text x="47.8254%" y="879.50"></text></g><g><title>globbing_pool-5 (233 samples, 0.08%)</title><rect x="47.5085%" y="885" width="0.0787%" height="15" fill="rgb(250,2,10)" fg:x="140621" fg:w="233"/><text x="47.7585%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="47.6079%" y="629" width="0.0111%" height="15" fill="rgb(226,50,48)" fg:x="140915" fg:w="33"/><text x="47.8579%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="47.6085%" y="613" width="0.0105%" height="15" fill="rgb(243,81,16)" fg:x="140917" fg:w="31"/><text x="47.8585%" y="623.50"></text></g><g><title>native_write_msr (31 samples, 0.01%)</title><rect x="47.6085%" y="597" width="0.0105%" height="15" fill="rgb(250,14,2)" fg:x="140917" fg:w="31"/><text x="47.8585%" y="607.50"></text></g><g><title>finish_task_switch (36 samples, 0.01%)</title><rect x="47.6075%" y="645" width="0.0122%" height="15" fill="rgb(233,135,29)" fg:x="140914" fg:w="36"/><text x="47.8575%" y="655.50"></text></g><g><title>do_syscall_64 (37 samples, 0.01%)</title><rect x="47.6075%" y="757" width="0.0125%" height="15" fill="rgb(224,64,43)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="767.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.01%)</title><rect x="47.6075%" y="741" width="0.0125%" height="15" fill="rgb(238,84,13)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="751.50"></text></g><g><title>do_futex (37 samples, 0.01%)</title><rect x="47.6075%" y="725" width="0.0125%" height="15" fill="rgb(253,48,26)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="735.50"></text></g><g><title>futex_wait (37 samples, 0.01%)</title><rect x="47.6075%" y="709" width="0.0125%" height="15" fill="rgb(205,223,31)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="719.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="47.6075%" y="693" width="0.0125%" height="15" fill="rgb(221,41,32)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="703.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="47.6075%" y="677" width="0.0125%" height="15" fill="rgb(213,158,31)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="687.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="47.6075%" y="661" width="0.0125%" height="15" fill="rgb(245,126,43)" fg:x="140914" fg:w="37"/><text x="47.8575%" y="671.50"></text></g><g><title>Unsafe_Park (39 samples, 0.01%)</title><rect x="47.6075%" y="853" width="0.0132%" height="15" fill="rgb(227,7,22)" fg:x="140914" fg:w="39"/><text x="47.8575%" y="863.50"></text></g><g><title>Parker::park (39 samples, 0.01%)</title><rect x="47.6075%" y="837" width="0.0132%" height="15" fill="rgb(252,90,44)" fg:x="140914" fg:w="39"/><text x="47.8575%" y="847.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.01%)</title><rect x="47.6075%" y="821" width="0.0132%" height="15" fill="rgb(253,91,0)" fg:x="140914" fg:w="39"/><text x="47.8575%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.01%)</title><rect x="47.6075%" y="805" width="0.0132%" height="15" fill="rgb(252,175,49)" fg:x="140914" fg:w="39"/><text x="47.8575%" y="815.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.01%)</title><rect x="47.6075%" y="789" width="0.0132%" height="15" fill="rgb(246,150,1)" fg:x="140914" fg:w="39"/><text x="47.8575%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="47.6075%" y="773" width="0.0132%" height="15" fill="rgb(241,192,25)" fg:x="140914" fg:w="39"/><text x="47.8575%" y="783.50"></text></g><g><title>[perf-12570.map] (97 samples, 0.03%)</title><rect x="47.5893%" y="869" width="0.0328%" height="15" fill="rgb(239,187,11)" fg:x="140860" fg:w="97"/><text x="47.8393%" y="879.50"></text></g><g><title>globbing_pool-6 (115 samples, 0.04%)</title><rect x="47.5873%" y="885" width="0.0389%" height="15" fill="rgb(218,202,51)" fg:x="140854" fg:w="115"/><text x="47.8373%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.02%)</title><rect x="47.6785%" y="629" width="0.0223%" height="15" fill="rgb(225,176,8)" fg:x="141124" fg:w="66"/><text x="47.9285%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.02%)</title><rect x="47.6792%" y="613" width="0.0216%" height="15" fill="rgb(219,122,41)" fg:x="141126" fg:w="64"/><text x="47.9292%" y="623.50"></text></g><g><title>native_write_msr (64 samples, 0.02%)</title><rect x="47.6792%" y="597" width="0.0216%" height="15" fill="rgb(248,140,20)" fg:x="141126" fg:w="64"/><text x="47.9292%" y="607.50"></text></g><g><title>finish_task_switch (67 samples, 0.02%)</title><rect x="47.6785%" y="645" width="0.0226%" height="15" fill="rgb(245,41,37)" fg:x="141124" fg:w="67"/><text x="47.9285%" y="655.50"></text></g><g><title>do_syscall_64 (71 samples, 0.02%)</title><rect x="47.6775%" y="757" width="0.0240%" height="15" fill="rgb(235,82,39)" fg:x="141121" fg:w="71"/><text x="47.9275%" y="767.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.02%)</title><rect x="47.6778%" y="741" width="0.0236%" height="15" fill="rgb(230,108,42)" fg:x="141122" fg:w="70"/><text x="47.9278%" y="751.50"></text></g><g><title>do_futex (70 samples, 0.02%)</title><rect x="47.6778%" y="725" width="0.0236%" height="15" fill="rgb(215,150,50)" fg:x="141122" fg:w="70"/><text x="47.9278%" y="735.50"></text></g><g><title>futex_wait (70 samples, 0.02%)</title><rect x="47.6778%" y="709" width="0.0236%" height="15" fill="rgb(233,212,5)" fg:x="141122" fg:w="70"/><text x="47.9278%" y="719.50"></text></g><g><title>futex_wait_queue_me (69 samples, 0.02%)</title><rect x="47.6781%" y="693" width="0.0233%" height="15" fill="rgb(245,80,22)" fg:x="141123" fg:w="69"/><text x="47.9281%" y="703.50"></text></g><g><title>schedule (68 samples, 0.02%)</title><rect x="47.6785%" y="677" width="0.0230%" height="15" fill="rgb(238,129,16)" fg:x="141124" fg:w="68"/><text x="47.9285%" y="687.50"></text></g><g><title>__schedule (68 samples, 0.02%)</title><rect x="47.6785%" y="661" width="0.0230%" height="15" fill="rgb(240,19,0)" fg:x="141124" fg:w="68"/><text x="47.9285%" y="671.50"></text></g><g><title>Unsafe_Park (76 samples, 0.03%)</title><rect x="47.6768%" y="853" width="0.0257%" height="15" fill="rgb(232,42,35)" fg:x="141119" fg:w="76"/><text x="47.9268%" y="863.50"></text></g><g><title>Parker::park (76 samples, 0.03%)</title><rect x="47.6768%" y="837" width="0.0257%" height="15" fill="rgb(223,130,24)" fg:x="141119" fg:w="76"/><text x="47.9268%" y="847.50"></text></g><g><title>__pthread_cond_wait (74 samples, 0.03%)</title><rect x="47.6775%" y="821" width="0.0250%" height="15" fill="rgb(237,16,22)" fg:x="141121" fg:w="74"/><text x="47.9275%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (74 samples, 0.03%)</title><rect x="47.6775%" y="805" width="0.0250%" height="15" fill="rgb(248,192,20)" fg:x="141121" fg:w="74"/><text x="47.9275%" y="815.50"></text></g><g><title>futex_wait_cancelable (74 samples, 0.03%)</title><rect x="47.6775%" y="789" width="0.0250%" height="15" fill="rgb(233,167,2)" fg:x="141121" fg:w="74"/><text x="47.9275%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.03%)</title><rect x="47.6775%" y="773" width="0.0250%" height="15" fill="rgb(252,71,44)" fg:x="141121" fg:w="74"/><text x="47.9275%" y="783.50"></text></g><g><title>[perf-12570.map] (212 samples, 0.07%)</title><rect x="47.6329%" y="869" width="0.0716%" height="15" fill="rgb(238,37,47)" fg:x="140989" fg:w="212"/><text x="47.8829%" y="879.50"></text></g><g><title>globbing_pool-7 (259 samples, 0.09%)</title><rect x="47.6261%" y="885" width="0.0875%" height="15" fill="rgb(214,202,54)" fg:x="140969" fg:w="259"/><text x="47.8761%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="47.7487%" y="629" width="0.0111%" height="15" fill="rgb(254,165,40)" fg:x="141332" fg:w="33"/><text x="47.9987%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="47.7487%" y="613" width="0.0111%" height="15" fill="rgb(246,173,38)" fg:x="141332" fg:w="33"/><text x="47.9987%" y="623.50"></text></g><g><title>native_write_msr (33 samples, 0.01%)</title><rect x="47.7487%" y="597" width="0.0111%" height="15" fill="rgb(215,3,27)" fg:x="141332" fg:w="33"/><text x="47.9987%" y="607.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="47.7487%" y="757" width="0.0115%" height="15" fill="rgb(239,169,51)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="767.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.01%)</title><rect x="47.7487%" y="741" width="0.0115%" height="15" fill="rgb(212,5,25)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="751.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="47.7487%" y="725" width="0.0115%" height="15" fill="rgb(243,45,17)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="735.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="47.7487%" y="709" width="0.0115%" height="15" fill="rgb(242,97,9)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="719.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="47.7487%" y="693" width="0.0115%" height="15" fill="rgb(228,71,31)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="703.50"></text></g><g><title>schedule (34 samples, 0.01%)</title><rect x="47.7487%" y="677" width="0.0115%" height="15" fill="rgb(252,184,16)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="687.50"></text></g><g><title>__schedule (34 samples, 0.01%)</title><rect x="47.7487%" y="661" width="0.0115%" height="15" fill="rgb(236,169,46)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="671.50"></text></g><g><title>finish_task_switch (34 samples, 0.01%)</title><rect x="47.7487%" y="645" width="0.0115%" height="15" fill="rgb(207,17,47)" fg:x="141332" fg:w="34"/><text x="47.9987%" y="655.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.01%)</title><rect x="47.7487%" y="821" width="0.0128%" height="15" fill="rgb(206,201,28)" fg:x="141332" fg:w="38"/><text x="47.9987%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.01%)</title><rect x="47.7487%" y="805" width="0.0128%" height="15" fill="rgb(224,184,23)" fg:x="141332" fg:w="38"/><text x="47.9987%" y="815.50"></text></g><g><title>futex_wait_cancelable (38 samples, 0.01%)</title><rect x="47.7487%" y="789" width="0.0128%" height="15" fill="rgb(208,139,48)" fg:x="141332" fg:w="38"/><text x="47.9987%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="47.7487%" y="773" width="0.0128%" height="15" fill="rgb(208,130,10)" fg:x="141332" fg:w="38"/><text x="47.9987%" y="783.50"></text></g><g><title>Unsafe_Park (39 samples, 0.01%)</title><rect x="47.7487%" y="853" width="0.0132%" height="15" fill="rgb(211,213,45)" fg:x="141332" fg:w="39"/><text x="47.9987%" y="863.50"></text></g><g><title>Parker::park (39 samples, 0.01%)</title><rect x="47.7487%" y="837" width="0.0132%" height="15" fill="rgb(235,100,30)" fg:x="141332" fg:w="39"/><text x="47.9987%" y="847.50"></text></g><g><title>[perf-12570.map] (124 samples, 0.04%)</title><rect x="47.7217%" y="869" width="0.0419%" height="15" fill="rgb(206,144,31)" fg:x="141252" fg:w="124"/><text x="47.9717%" y="879.50"></text></g><g><title>globbing_pool-8 (159 samples, 0.05%)</title><rect x="47.7136%" y="885" width="0.0537%" height="15" fill="rgb(224,200,26)" fg:x="141228" fg:w="159"/><text x="47.9636%" y="895.50"></text></g><g><title>finish_task_switch (30 samples, 0.01%)</title><rect x="47.7937%" y="645" width="0.0101%" height="15" fill="rgb(247,104,53)" fg:x="141465" fg:w="30"/><text x="48.0437%" y="655.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="47.7930%" y="693" width="0.0115%" height="15" fill="rgb(220,14,17)" fg:x="141463" fg:w="34"/><text x="48.0430%" y="703.50"></text></g><g><title>schedule (34 samples, 0.01%)</title><rect x="47.7930%" y="677" width="0.0115%" height="15" fill="rgb(230,140,40)" fg:x="141463" fg:w="34"/><text x="48.0430%" y="687.50"></text></g><g><title>__schedule (34 samples, 0.01%)</title><rect x="47.7930%" y="661" width="0.0115%" height="15" fill="rgb(229,2,41)" fg:x="141463" fg:w="34"/><text x="48.0430%" y="671.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="47.7930%" y="757" width="0.0118%" height="15" fill="rgb(232,89,16)" fg:x="141463" fg:w="35"/><text x="48.0430%" y="767.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="47.7930%" y="741" width="0.0118%" height="15" fill="rgb(247,59,52)" fg:x="141463" fg:w="35"/><text x="48.0430%" y="751.50"></text></g><g><title>do_futex (35 samples, 0.01%)</title><rect x="47.7930%" y="725" width="0.0118%" height="15" fill="rgb(226,110,21)" fg:x="141463" fg:w="35"/><text x="48.0430%" y="735.50"></text></g><g><title>futex_wait (35 samples, 0.01%)</title><rect x="47.7930%" y="709" width="0.0118%" height="15" fill="rgb(224,176,43)" fg:x="141463" fg:w="35"/><text x="48.0430%" y="719.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.01%)</title><rect x="47.7930%" y="821" width="0.0122%" height="15" fill="rgb(221,73,6)" fg:x="141463" fg:w="36"/><text x="48.0430%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.01%)</title><rect x="47.7930%" y="805" width="0.0122%" height="15" fill="rgb(232,78,19)" fg:x="141463" fg:w="36"/><text x="48.0430%" y="815.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.01%)</title><rect x="47.7930%" y="789" width="0.0122%" height="15" fill="rgb(233,112,48)" fg:x="141463" fg:w="36"/><text x="48.0430%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.01%)</title><rect x="47.7930%" y="773" width="0.0122%" height="15" fill="rgb(243,131,47)" fg:x="141463" fg:w="36"/><text x="48.0430%" y="783.50"></text></g><g><title>Unsafe_Park (38 samples, 0.01%)</title><rect x="47.7927%" y="853" width="0.0128%" height="15" fill="rgb(226,51,1)" fg:x="141462" fg:w="38"/><text x="48.0427%" y="863.50"></text></g><g><title>Parker::park (38 samples, 0.01%)</title><rect x="47.7927%" y="837" width="0.0128%" height="15" fill="rgb(247,58,7)" fg:x="141462" fg:w="38"/><text x="48.0427%" y="847.50"></text></g><g><title>[perf-12570.map] (99 samples, 0.03%)</title><rect x="47.7727%" y="869" width="0.0334%" height="15" fill="rgb(209,7,32)" fg:x="141403" fg:w="99"/><text x="48.0227%" y="879.50"></text></g><g><title>globbing_pool-9 (131 samples, 0.04%)</title><rect x="47.7673%" y="885" width="0.0443%" height="15" fill="rgb(209,39,41)" fg:x="141387" fg:w="131"/><text x="48.0173%" y="895.50"></text></g><g><title>[anon] (184 samples, 0.06%)</title><rect x="47.8140%" y="869" width="0.0622%" height="15" fill="rgb(226,182,46)" fg:x="141525" fg:w="184"/><text x="48.0640%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool (33 samples, 0.01%)</title><rect x="48.4951%" y="709" width="0.0111%" height="15" fill="rgb(230,219,10)" fg:x="143541" fg:w="33"/><text x="48.7451%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (32 samples, 0.01%)</title><rect x="48.4954%" y="693" width="0.0108%" height="15" fill="rgb(227,175,30)" fg:x="143542" fg:w="32"/><text x="48.7454%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (53 samples, 0.02%)</title><rect x="48.4944%" y="741" width="0.0179%" height="15" fill="rgb(217,2,50)" fg:x="143539" fg:w="53"/><text x="48.7444%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (53 samples, 0.02%)</title><rect x="48.4944%" y="725" width="0.0179%" height="15" fill="rgb(229,160,0)" fg:x="143539" fg:w="53"/><text x="48.7444%" y="735.50"></text></g><g><title>ClassLoader::load_class (96 samples, 0.03%)</title><rect x="48.4924%" y="773" width="0.0324%" height="15" fill="rgb(207,78,37)" fg:x="143533" fg:w="96"/><text x="48.7424%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (90 samples, 0.03%)</title><rect x="48.4944%" y="757" width="0.0304%" height="15" fill="rgb(225,57,0)" fg:x="143539" fg:w="90"/><text x="48.7444%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (108 samples, 0.04%)</title><rect x="48.4920%" y="789" width="0.0365%" height="15" fill="rgb(232,154,2)" fg:x="143532" fg:w="108"/><text x="48.7420%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (122 samples, 0.04%)</title><rect x="48.4876%" y="837" width="0.0412%" height="15" fill="rgb(241,212,25)" fg:x="143519" fg:w="122"/><text x="48.7376%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (117 samples, 0.04%)</title><rect x="48.4893%" y="821" width="0.0395%" height="15" fill="rgb(226,69,20)" fg:x="143524" fg:w="117"/><text x="48.7393%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (117 samples, 0.04%)</title><rect x="48.4893%" y="805" width="0.0395%" height="15" fill="rgb(247,184,54)" fg:x="143524" fg:w="117"/><text x="48.7393%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (34 samples, 0.01%)</title><rect x="48.5292%" y="805" width="0.0115%" height="15" fill="rgb(210,145,0)" fg:x="143642" fg:w="34"/><text x="48.7792%" y="815.50"></text></g><g><title>Rewriter::rewrite_bytecodes (41 samples, 0.01%)</title><rect x="48.5522%" y="773" width="0.0139%" height="15" fill="rgb(253,82,12)" fg:x="143710" fg:w="41"/><text x="48.8022%" y="783.50"></text></g><g><title>Rewriter::rewrite (52 samples, 0.02%)</title><rect x="48.5488%" y="805" width="0.0176%" height="15" fill="rgb(245,42,11)" fg:x="143700" fg:w="52"/><text x="48.7988%" y="815.50"></text></g><g><title>Rewriter::Rewriter (52 samples, 0.02%)</title><rect x="48.5488%" y="789" width="0.0176%" height="15" fill="rgb(219,147,32)" fg:x="143700" fg:w="52"/><text x="48.7988%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (129 samples, 0.04%)</title><rect x="48.5292%" y="821" width="0.0436%" height="15" fill="rgb(246,12,7)" fg:x="143642" fg:w="129"/><text x="48.7792%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (130 samples, 0.04%)</title><rect x="48.5292%" y="837" width="0.0439%" height="15" fill="rgb(243,50,9)" fg:x="143642" fg:w="130"/><text x="48.7792%" y="847.50"></text></g><g><title>InterpreterRuntime::_new (255 samples, 0.09%)</title><rect x="48.4873%" y="853" width="0.0862%" height="15" fill="rgb(219,149,6)" fg:x="143518" fg:w="255"/><text x="48.7373%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (33 samples, 0.01%)</title><rect x="48.5900%" y="853" width="0.0111%" height="15" fill="rgb(241,51,42)" fg:x="143822" fg:w="33"/><text x="48.8400%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (33 samples, 0.01%)</title><rect x="48.5900%" y="837" width="0.0111%" height="15" fill="rgb(226,128,27)" fg:x="143822" fg:w="33"/><text x="48.8400%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (30 samples, 0.01%)</title><rect x="48.5910%" y="821" width="0.0101%" height="15" fill="rgb(244,144,4)" fg:x="143825" fg:w="30"/><text x="48.8410%" y="831.50"></text></g><g><title>InstanceKlass::link_class_impl (33 samples, 0.01%)</title><rect x="48.6326%" y="773" width="0.0111%" height="15" fill="rgb(221,4,13)" fg:x="143948" fg:w="33"/><text x="48.8826%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (35 samples, 0.01%)</title><rect x="48.6326%" y="789" width="0.0118%" height="15" fill="rgb(208,170,28)" fg:x="143948" fg:w="35"/><text x="48.8826%" y="799.50"></text></g><g><title>LinkResolver::resolve_field_access (85 samples, 0.03%)</title><rect x="48.6167%" y="821" width="0.0287%" height="15" fill="rgb(226,131,13)" fg:x="143901" fg:w="85"/><text x="48.8667%" y="831.50"></text></g><g><title>LinkResolver::resolve_field (54 samples, 0.02%)</title><rect x="48.6272%" y="805" width="0.0182%" height="15" fill="rgb(215,72,41)" fg:x="143932" fg:w="54"/><text x="48.8772%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (96 samples, 0.03%)</title><rect x="48.6133%" y="837" width="0.0324%" height="15" fill="rgb(243,108,20)" fg:x="143891" fg:w="96"/><text x="48.8633%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (33 samples, 0.01%)</title><rect x="48.6650%" y="677" width="0.0111%" height="15" fill="rgb(230,189,17)" fg:x="144044" fg:w="33"/><text x="48.9150%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (49 samples, 0.02%)</title><rect x="48.6643%" y="709" width="0.0166%" height="15" fill="rgb(220,50,17)" fg:x="144042" fg:w="49"/><text x="48.9143%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (48 samples, 0.02%)</title><rect x="48.6647%" y="693" width="0.0162%" height="15" fill="rgb(248,152,48)" fg:x="144043" fg:w="48"/><text x="48.9147%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (60 samples, 0.02%)</title><rect x="48.6643%" y="725" width="0.0203%" height="15" fill="rgb(244,91,11)" fg:x="144042" fg:w="60"/><text x="48.9143%" y="735.50"></text></g><g><title>ClassLoader::load_class (67 samples, 0.02%)</title><rect x="48.6623%" y="741" width="0.0226%" height="15" fill="rgb(220,157,5)" fg:x="144036" fg:w="67"/><text x="48.9123%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (73 samples, 0.02%)</title><rect x="48.6623%" y="757" width="0.0247%" height="15" fill="rgb(253,137,8)" fg:x="144036" fg:w="73"/><text x="48.9123%" y="767.50"></text></g><g><title>ConstantPool::klass_ref_at (88 samples, 0.03%)</title><rect x="48.6576%" y="805" width="0.0297%" height="15" fill="rgb(217,137,51)" fg:x="144022" fg:w="88"/><text x="48.9076%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (85 samples, 0.03%)</title><rect x="48.6586%" y="789" width="0.0287%" height="15" fill="rgb(218,209,53)" fg:x="144025" fg:w="85"/><text x="48.9086%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (83 samples, 0.03%)</title><rect x="48.6592%" y="773" width="0.0280%" height="15" fill="rgb(249,137,25)" fg:x="144027" fg:w="83"/><text x="48.9092%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (65 samples, 0.02%)</title><rect x="48.7096%" y="773" width="0.0220%" height="15" fill="rgb(239,155,26)" fg:x="144176" fg:w="65"/><text x="48.9596%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (71 samples, 0.02%)</title><rect x="48.7089%" y="789" width="0.0240%" height="15" fill="rgb(227,85,46)" fg:x="144174" fg:w="71"/><text x="48.9589%" y="799.50"></text></g><g><title>LinkResolver::resolve_static_call (93 samples, 0.03%)</title><rect x="48.7082%" y="805" width="0.0314%" height="15" fill="rgb(251,107,43)" fg:x="144172" fg:w="93"/><text x="48.9582%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (250 samples, 0.08%)</title><rect x="48.6565%" y="821" width="0.0845%" height="15" fill="rgb(234,170,33)" fg:x="144019" fg:w="250"/><text x="48.9065%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (297 samples, 0.10%)</title><rect x="48.6457%" y="837" width="0.1003%" height="15" fill="rgb(206,29,35)" fg:x="143987" fg:w="297"/><text x="48.8957%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (431 samples, 0.15%)</title><rect x="48.6120%" y="853" width="0.1456%" height="15" fill="rgb(227,138,25)" fg:x="143887" fg:w="431"/><text x="48.8620%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (34 samples, 0.01%)</title><rect x="48.7461%" y="837" width="0.0115%" height="15" fill="rgb(249,131,35)" fg:x="144284" fg:w="34"/><text x="48.9961%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (33 samples, 0.01%)</title><rect x="48.7464%" y="821" width="0.0111%" height="15" fill="rgb(239,6,40)" fg:x="144285" fg:w="33"/><text x="48.9964%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (33 samples, 0.01%)</title><rect x="48.7464%" y="805" width="0.0111%" height="15" fill="rgb(246,136,47)" fg:x="144285" fg:w="33"/><text x="48.9964%" y="815.50"></text></g><g><title>JVM_FindLoadedClass (35 samples, 0.01%)</title><rect x="48.7772%" y="853" width="0.0118%" height="15" fill="rgb(253,58,26)" fg:x="144376" fg:w="35"/><text x="49.0272%" y="863.50"></text></g><g><title>Reflection::new_method (36 samples, 0.01%)</title><rect x="48.8005%" y="821" width="0.0122%" height="15" fill="rgb(237,141,10)" fg:x="144445" fg:w="36"/><text x="49.0505%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (48 samples, 0.02%)</title><rect x="48.7968%" y="853" width="0.0162%" height="15" fill="rgb(234,156,12)" fg:x="144434" fg:w="48"/><text x="49.0468%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (48 samples, 0.02%)</title><rect x="48.7968%" y="837" width="0.0162%" height="15" fill="rgb(243,224,36)" fg:x="144434" fg:w="48"/><text x="49.0468%" y="847.50"></text></g><g><title>SymbolTable::add (50 samples, 0.02%)</title><rect x="48.8734%" y="709" width="0.0169%" height="15" fill="rgb(205,229,51)" fg:x="144661" fg:w="50"/><text x="49.1234%" y="719.50"></text></g><g><title>SymbolTable::basic_add (48 samples, 0.02%)</title><rect x="48.8741%" y="693" width="0.0162%" height="15" fill="rgb(223,189,4)" fg:x="144663" fg:w="48"/><text x="49.1241%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (460 samples, 0.16%)</title><rect x="48.8640%" y="725" width="0.1554%" height="15" fill="rgb(249,167,54)" fg:x="144633" fg:w="460"/><text x="49.1140%" y="735.50"></text></g><g><title>SymbolTable::lookup_only (382 samples, 0.13%)</title><rect x="48.8903%" y="709" width="0.1291%" height="15" fill="rgb(218,34,28)" fg:x="144711" fg:w="382"/><text x="49.1403%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool (485 samples, 0.16%)</title><rect x="48.8579%" y="741" width="0.1639%" height="15" fill="rgb(232,109,42)" fg:x="144615" fg:w="485"/><text x="49.1079%" y="751.50"></text></g><g><title>ConstMethod::allocate (31 samples, 0.01%)</title><rect x="49.0491%" y="693" width="0.0105%" height="15" fill="rgb(248,214,46)" fg:x="145181" fg:w="31"/><text x="49.2991%" y="703.50"></text></g><g><title>Method::allocate (39 samples, 0.01%)</title><rect x="49.0491%" y="709" width="0.0132%" height="15" fill="rgb(244,216,40)" fg:x="145181" fg:w="39"/><text x="49.2991%" y="719.50"></text></g><g><title>ClassFileParser::parse_methods (129 samples, 0.04%)</title><rect x="49.0255%" y="741" width="0.0436%" height="15" fill="rgb(231,226,31)" fg:x="145111" fg:w="129"/><text x="49.2755%" y="751.50"></text></g><g><title>ClassFileParser::parse_method (129 samples, 0.04%)</title><rect x="49.0255%" y="725" width="0.0436%" height="15" fill="rgb(238,38,43)" fg:x="145111" fg:w="129"/><text x="49.2755%" y="735.50"></text></g><g><title>ClassFileParser::ClassFileParser (651 samples, 0.22%)</title><rect x="48.8528%" y="773" width="0.2199%" height="15" fill="rgb(208,88,43)" fg:x="144600" fg:w="651"/><text x="49.1028%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (649 samples, 0.22%)</title><rect x="48.8535%" y="757" width="0.2193%" height="15" fill="rgb(205,136,37)" fg:x="144602" fg:w="649"/><text x="49.1035%" y="767.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (91 samples, 0.03%)</title><rect x="49.0816%" y="725" width="0.0307%" height="15" fill="rgb(237,34,14)" fg:x="145277" fg:w="91"/><text x="49.3316%" y="735.50"></text></g><g><title>resource_allocate_bytes (38 samples, 0.01%)</title><rect x="49.0995%" y="709" width="0.0128%" height="15" fill="rgb(236,193,44)" fg:x="145330" fg:w="38"/><text x="49.3495%" y="719.50"></text></g><g><title>DefaultMethods::generate_default_methods (125 samples, 0.04%)</title><rect x="49.0751%" y="741" width="0.0422%" height="15" fill="rgb(231,48,10)" fg:x="145258" fg:w="125"/><text x="49.3251%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (156 samples, 0.05%)</title><rect x="49.0728%" y="757" width="0.0527%" height="15" fill="rgb(213,141,34)" fg:x="145251" fg:w="156"/><text x="49.3228%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (167 samples, 0.06%)</title><rect x="49.0728%" y="773" width="0.0564%" height="15" fill="rgb(249,130,34)" fg:x="145251" fg:w="167"/><text x="49.3228%" y="783.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (49 samples, 0.02%)</title><rect x="49.1292%" y="773" width="0.0166%" height="15" fill="rgb(219,42,41)" fg:x="145418" fg:w="49"/><text x="49.3792%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (869 samples, 0.29%)</title><rect x="48.8525%" y="789" width="0.2936%" height="15" fill="rgb(224,100,54)" fg:x="144599" fg:w="869"/><text x="49.1025%" y="799.50"></text></g><g><title>JVM_DefineClassWithSource (893 samples, 0.30%)</title><rect x="48.8498%" y="837" width="0.3017%" height="15" fill="rgb(229,200,27)" fg:x="144591" fg:w="893"/><text x="49.0998%" y="847.50"></text></g><g><title>jvm_define_class_common (892 samples, 0.30%)</title><rect x="48.8501%" y="821" width="0.3014%" height="15" fill="rgb(217,118,10)" fg:x="144592" fg:w="892"/><text x="49.1001%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (886 samples, 0.30%)</title><rect x="48.8522%" y="805" width="0.2993%" height="15" fill="rgb(206,22,3)" fg:x="144598" fg:w="886"/><text x="49.1022%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (918 samples, 0.31%)</title><rect x="48.8495%" y="853" width="0.3101%" height="15" fill="rgb(232,163,46)" fg:x="144590" fg:w="918"/><text x="49.0995%" y="863.50"></text></g><g><title>ClassLoader::load_class (36 samples, 0.01%)</title><rect x="49.1640%" y="773" width="0.0122%" height="15" fill="rgb(206,95,13)" fg:x="145521" fg:w="36"/><text x="49.4140%" y="783.50"></text></g><g><title>JVM_FindClassFromBootLoader (62 samples, 0.02%)</title><rect x="49.1603%" y="837" width="0.0209%" height="15" fill="rgb(253,154,18)" fg:x="145510" fg:w="62"/><text x="49.4103%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_null (60 samples, 0.02%)</title><rect x="49.1610%" y="821" width="0.0203%" height="15" fill="rgb(219,32,23)" fg:x="145512" fg:w="60"/><text x="49.4110%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (60 samples, 0.02%)</title><rect x="49.1610%" y="805" width="0.0203%" height="15" fill="rgb(230,191,45)" fg:x="145512" fg:w="60"/><text x="49.4110%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (51 samples, 0.02%)</title><rect x="49.1640%" y="789" width="0.0172%" height="15" fill="rgb(229,64,36)" fg:x="145521" fg:w="51"/><text x="49.4140%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (86 samples, 0.03%)</title><rect x="49.1596%" y="853" width="0.0291%" height="15" fill="rgb(205,129,25)" fg:x="145508" fg:w="86"/><text x="49.4096%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (37 samples, 0.01%)</title><rect x="49.2292%" y="821" width="0.0125%" height="15" fill="rgb(254,112,7)" fg:x="145714" fg:w="37"/><text x="49.4792%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (62 samples, 0.02%)</title><rect x="49.2235%" y="853" width="0.0209%" height="15" fill="rgb(226,53,48)" fg:x="145697" fg:w="62"/><text x="49.4735%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (60 samples, 0.02%)</title><rect x="49.2241%" y="837" width="0.0203%" height="15" fill="rgb(214,153,38)" fg:x="145699" fg:w="60"/><text x="49.4741%" y="847.50"></text></g><g><title>[perf-12570.map] (4,095 samples, 1.38%)</title><rect x="47.8802%" y="869" width="1.3835%" height="15" fill="rgb(243,101,7)" fg:x="141721" fg:w="4095"/><text x="48.1302%" y="879.50"></text></g><g><title>new_sync_read (39 samples, 0.01%)</title><rect x="49.2910%" y="725" width="0.0132%" height="15" fill="rgb(240,140,22)" fg:x="145897" fg:w="39"/><text x="49.5410%" y="735.50"></text></g><g><title>generic_file_buffered_read (39 samples, 0.01%)</title><rect x="49.2910%" y="709" width="0.0132%" height="15" fill="rgb(235,114,2)" fg:x="145897" fg:w="39"/><text x="49.5410%" y="719.50"></text></g><g><title>handleRead (47 samples, 0.02%)</title><rect x="49.2887%" y="837" width="0.0159%" height="15" fill="rgb(242,59,12)" fg:x="145890" fg:w="47"/><text x="49.5387%" y="847.50"></text></g><g><title>__libc_read (47 samples, 0.02%)</title><rect x="49.2887%" y="821" width="0.0159%" height="15" fill="rgb(252,134,9)" fg:x="145890" fg:w="47"/><text x="49.5387%" y="831.50"></text></g><g><title>__libc_read (47 samples, 0.02%)</title><rect x="49.2887%" y="805" width="0.0159%" height="15" fill="rgb(236,4,44)" fg:x="145890" fg:w="47"/><text x="49.5387%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.02%)</title><rect x="49.2893%" y="789" width="0.0152%" height="15" fill="rgb(254,172,41)" fg:x="145892" fg:w="45"/><text x="49.5393%" y="799.50"></text></g><g><title>do_syscall_64 (45 samples, 0.02%)</title><rect x="49.2893%" y="773" width="0.0152%" height="15" fill="rgb(244,63,20)" fg:x="145892" fg:w="45"/><text x="49.5393%" y="783.50"></text></g><g><title>ksys_read (45 samples, 0.02%)</title><rect x="49.2893%" y="757" width="0.0152%" height="15" fill="rgb(250,73,31)" fg:x="145892" fg:w="45"/><text x="49.5393%" y="767.50"></text></g><g><title>vfs_read (42 samples, 0.01%)</title><rect x="49.2904%" y="741" width="0.0142%" height="15" fill="rgb(241,38,36)" fg:x="145895" fg:w="42"/><text x="49.5404%" y="751.50"></text></g><g><title>readBytes (61 samples, 0.02%)</title><rect x="49.2880%" y="853" width="0.0206%" height="15" fill="rgb(245,211,2)" fg:x="145888" fg:w="61"/><text x="49.5380%" y="863.50"></text></g><g><title>[unknown] (135 samples, 0.05%)</title><rect x="49.2637%" y="869" width="0.0456%" height="15" fill="rgb(206,120,28)" fg:x="145816" fg:w="135"/><text x="49.5137%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (200 samples, 0.07%)</title><rect x="49.3140%" y="805" width="0.0676%" height="15" fill="rgb(211,59,34)" fg:x="145965" fg:w="200"/><text x="49.5640%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (196 samples, 0.07%)</title><rect x="49.3154%" y="789" width="0.0662%" height="15" fill="rgb(233,168,5)" fg:x="145969" fg:w="196"/><text x="49.5654%" y="799.50"></text></g><g><title>native_write_msr (196 samples, 0.07%)</title><rect x="49.3154%" y="773" width="0.0662%" height="15" fill="rgb(234,33,13)" fg:x="145969" fg:w="196"/><text x="49.5654%" y="783.50"></text></g><g><title>schedule_tail (206 samples, 0.07%)</title><rect x="49.3140%" y="837" width="0.0696%" height="15" fill="rgb(231,150,26)" fg:x="145965" fg:w="206"/><text x="49.5640%" y="847.50"></text></g><g><title>finish_task_switch (206 samples, 0.07%)</title><rect x="49.3140%" y="821" width="0.0696%" height="15" fill="rgb(217,191,4)" fg:x="145965" fg:w="206"/><text x="49.5640%" y="831.50"></text></g><g><title>ret_from_fork (212 samples, 0.07%)</title><rect x="49.3133%" y="853" width="0.0716%" height="15" fill="rgb(246,198,38)" fg:x="145963" fg:w="212"/><text x="49.5633%" y="863.50"></text></g><g><title>init_globals (46 samples, 0.02%)</title><rect x="49.3873%" y="789" width="0.0155%" height="15" fill="rgb(245,64,37)" fg:x="146182" fg:w="46"/><text x="49.6373%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (56 samples, 0.02%)</title><rect x="49.3849%" y="821" width="0.0189%" height="15" fill="rgb(250,30,36)" fg:x="146175" fg:w="56"/><text x="49.6349%" y="831.50"></text></g><g><title>Threads::create_vm (56 samples, 0.02%)</title><rect x="49.3849%" y="805" width="0.0189%" height="15" fill="rgb(217,86,53)" fg:x="146175" fg:w="56"/><text x="49.6349%" y="815.50"></text></g><g><title>JavaMain (59 samples, 0.02%)</title><rect x="49.3849%" y="837" width="0.0199%" height="15" fill="rgb(228,157,16)" fg:x="146175" fg:w="59"/><text x="49.6349%" y="847.50"></text></g><g><title>JavaThread::run (40 samples, 0.01%)</title><rect x="49.4106%" y="805" width="0.0135%" height="15" fill="rgb(217,59,31)" fg:x="146251" fg:w="40"/><text x="49.6606%" y="815.50"></text></g><g><title>Thread::call_run (45 samples, 0.02%)</title><rect x="49.4103%" y="821" width="0.0152%" height="15" fill="rgb(237,138,41)" fg:x="146250" fg:w="45"/><text x="49.6603%" y="831.50"></text></g><g><title>__GI___clone (367 samples, 0.12%)</title><rect x="49.3099%" y="869" width="0.1240%" height="15" fill="rgb(227,91,49)" fg:x="145953" fg:w="367"/><text x="49.5599%" y="879.50"></text></g><g><title>start_thread (145 samples, 0.05%)</title><rect x="49.3849%" y="853" width="0.0490%" height="15" fill="rgb(247,21,44)" fg:x="146175" fg:w="145"/><text x="49.6349%" y="863.50"></text></g><g><title>thread_native_entry (84 samples, 0.03%)</title><rect x="49.4056%" y="837" width="0.0284%" height="15" fill="rgb(219,210,51)" fg:x="146236" fg:w="84"/><text x="49.6556%" y="847.50"></text></g><g><title>java (4,832 samples, 1.63%)</title><rect x="47.8116%" y="885" width="1.6325%" height="15" fill="rgb(209,140,6)" fg:x="141518" fg:w="4832"/><text x="48.0616%" y="895.50"></text></g><g><title>[[heap]] (38 samples, 0.01%)</title><rect x="49.4441%" y="869" width="0.0128%" height="15" fill="rgb(221,188,24)" fg:x="146350" fg:w="38"/><text x="49.6941%" y="879.50"></text></g><g><title>execute_command (33 samples, 0.01%)</title><rect x="49.4745%" y="789" width="0.0111%" height="15" fill="rgb(232,154,20)" fg:x="146440" fg:w="33"/><text x="49.7245%" y="799.50"></text></g><g><title>execute_command_internal (33 samples, 0.01%)</title><rect x="49.4745%" y="773" width="0.0111%" height="15" fill="rgb(244,137,50)" fg:x="146440" fg:w="33"/><text x="49.7245%" y="783.50"></text></g><g><title>[bash] (33 samples, 0.01%)</title><rect x="49.4745%" y="757" width="0.0111%" height="15" fill="rgb(225,185,43)" fg:x="146440" fg:w="33"/><text x="49.7245%" y="767.50"></text></g><g><title>[bash] (59 samples, 0.02%)</title><rect x="49.4660%" y="853" width="0.0199%" height="15" fill="rgb(213,205,38)" fg:x="146415" fg:w="59"/><text x="49.7160%" y="863.50"></text></g><g><title>execute_command_internal (35 samples, 0.01%)</title><rect x="49.4741%" y="837" width="0.0118%" height="15" fill="rgb(236,73,12)" fg:x="146439" fg:w="35"/><text x="49.7241%" y="847.50"></text></g><g><title>execute_command_internal (34 samples, 0.01%)</title><rect x="49.4745%" y="821" width="0.0115%" height="15" fill="rgb(235,219,13)" fg:x="146440" fg:w="34"/><text x="49.7245%" y="831.50"></text></g><g><title>[bash] (34 samples, 0.01%)</title><rect x="49.4745%" y="805" width="0.0115%" height="15" fill="rgb(218,59,36)" fg:x="146440" fg:w="34"/><text x="49.7245%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.01%)</title><rect x="49.4991%" y="69" width="0.0132%" height="15" fill="rgb(205,110,39)" fg:x="146513" fg:w="39"/><text x="49.7491%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="49.4991%" y="53" width="0.0132%" height="15" fill="rgb(218,206,42)" fg:x="146513" fg:w="39"/><text x="49.7491%" y="63.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="49.4991%" y="37" width="0.0132%" height="15" fill="rgb(248,125,24)" fg:x="146513" fg:w="39"/><text x="49.7491%" y="47.50"></text></g><g><title>arch_fork (49 samples, 0.02%)</title><rect x="49.4961%" y="133" width="0.0166%" height="15" fill="rgb(242,28,27)" fg:x="146504" fg:w="49"/><text x="49.7461%" y="143.50"></text></g><g><title>ret_from_fork (43 samples, 0.01%)</title><rect x="49.4981%" y="117" width="0.0145%" height="15" fill="rgb(216,228,15)" fg:x="146510" fg:w="43"/><text x="49.7481%" y="127.50"></text></g><g><title>schedule_tail (43 samples, 0.01%)</title><rect x="49.4981%" y="101" width="0.0145%" height="15" fill="rgb(235,116,46)" fg:x="146510" fg:w="43"/><text x="49.7481%" y="111.50"></text></g><g><title>finish_task_switch (40 samples, 0.01%)</title><rect x="49.4991%" y="85" width="0.0135%" height="15" fill="rgb(224,18,32)" fg:x="146513" fg:w="40"/><text x="49.7491%" y="95.50"></text></g><g><title>__libc_fork (52 samples, 0.02%)</title><rect x="49.4961%" y="149" width="0.0176%" height="15" fill="rgb(252,5,12)" fg:x="146504" fg:w="52"/><text x="49.7461%" y="159.50"></text></g><g><title>execute_command (56 samples, 0.02%)</title><rect x="49.4958%" y="821" width="0.0189%" height="15" fill="rgb(251,36,5)" fg:x="146503" fg:w="56"/><text x="49.7458%" y="831.50"></text></g><g><title>execute_command_internal (56 samples, 0.02%)</title><rect x="49.4958%" y="805" width="0.0189%" height="15" fill="rgb(217,53,14)" fg:x="146503" fg:w="56"/><text x="49.7458%" y="815.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="789" width="0.0186%" height="15" fill="rgb(215,86,45)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="799.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="773" width="0.0186%" height="15" fill="rgb(242,169,11)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="783.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="757" width="0.0186%" height="15" fill="rgb(211,213,45)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="767.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="741" width="0.0186%" height="15" fill="rgb(205,88,11)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="751.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="725" width="0.0186%" height="15" fill="rgb(252,69,26)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="735.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="709" width="0.0186%" height="15" fill="rgb(246,123,37)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="719.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="693" width="0.0186%" height="15" fill="rgb(212,205,5)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="703.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="49.4961%" y="677" width="0.0186%" height="15" fill="rgb(253,148,0)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="687.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="661" width="0.0186%" height="15" fill="rgb(239,22,4)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="671.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="645" width="0.0186%" height="15" fill="rgb(226,26,53)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="655.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="629" width="0.0186%" height="15" fill="rgb(225,229,45)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="639.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="613" width="0.0186%" height="15" fill="rgb(220,60,37)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="623.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="597" width="0.0186%" height="15" fill="rgb(217,180,35)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="607.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="581" width="0.0186%" height="15" fill="rgb(229,7,53)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="591.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="565" width="0.0186%" height="15" fill="rgb(254,137,3)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="575.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="549" width="0.0186%" height="15" fill="rgb(215,140,41)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="559.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="533" width="0.0186%" height="15" fill="rgb(250,80,15)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="543.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="517" width="0.0186%" height="15" fill="rgb(252,191,6)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="527.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="501" width="0.0186%" height="15" fill="rgb(246,217,18)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="511.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="485" width="0.0186%" height="15" fill="rgb(223,93,7)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="495.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="49.4961%" y="469" width="0.0186%" height="15" fill="rgb(225,55,52)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="479.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="453" width="0.0186%" height="15" fill="rgb(240,31,24)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="463.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="437" width="0.0186%" height="15" fill="rgb(205,56,52)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="447.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="49.4961%" y="421" width="0.0186%" height="15" fill="rgb(246,146,12)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="431.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="405" width="0.0186%" height="15" fill="rgb(239,84,36)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="415.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="389" width="0.0186%" height="15" fill="rgb(207,41,40)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="399.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="49.4961%" y="373" width="0.0186%" height="15" fill="rgb(241,179,25)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="383.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="357" width="0.0186%" height="15" fill="rgb(210,0,34)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="367.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="341" width="0.0186%" height="15" fill="rgb(225,217,29)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="351.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="49.4961%" y="325" width="0.0186%" height="15" fill="rgb(216,191,38)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="335.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="309" width="0.0186%" height="15" fill="rgb(232,140,52)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="319.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="293" width="0.0186%" height="15" fill="rgb(223,158,51)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="303.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="49.4961%" y="277" width="0.0186%" height="15" fill="rgb(235,29,51)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="287.50"></text></g><g><title>expand_words (55 samples, 0.02%)</title><rect x="49.4961%" y="261" width="0.0186%" height="15" fill="rgb(215,181,18)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="271.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="245" width="0.0186%" height="15" fill="rgb(227,125,34)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="255.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="229" width="0.0186%" height="15" fill="rgb(230,197,49)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="239.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="213" width="0.0186%" height="15" fill="rgb(239,141,16)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="223.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="49.4961%" y="197" width="0.0186%" height="15" fill="rgb(225,105,43)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="207.50"></text></g><g><title>command_substitute (55 samples, 0.02%)</title><rect x="49.4961%" y="181" width="0.0186%" height="15" fill="rgb(214,131,14)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="191.50"></text></g><g><title>make_child (55 samples, 0.02%)</title><rect x="49.4961%" y="165" width="0.0186%" height="15" fill="rgb(229,177,11)" fg:x="146504" fg:w="55"/><text x="49.7461%" y="175.50"></text></g><g><title>[bash] (100 samples, 0.03%)</title><rect x="49.4958%" y="837" width="0.0338%" height="15" fill="rgb(231,180,14)" fg:x="146503" fg:w="100"/><text x="49.7458%" y="847.50"></text></g><g><title>execute_command_internal (44 samples, 0.01%)</title><rect x="49.5147%" y="821" width="0.0149%" height="15" fill="rgb(232,88,2)" fg:x="146559" fg:w="44"/><text x="49.7647%" y="831.50"></text></g><g><title>execute_command_internal (39 samples, 0.01%)</title><rect x="49.5164%" y="805" width="0.0132%" height="15" fill="rgb(205,220,8)" fg:x="146564" fg:w="39"/><text x="49.7664%" y="815.50"></text></g><g><title>[bash] (39 samples, 0.01%)</title><rect x="49.5164%" y="789" width="0.0132%" height="15" fill="rgb(225,23,53)" fg:x="146564" fg:w="39"/><text x="49.7664%" y="799.50"></text></g><g><title>execute_command (39 samples, 0.01%)</title><rect x="49.5164%" y="773" width="0.0132%" height="15" fill="rgb(213,62,29)" fg:x="146564" fg:w="39"/><text x="49.7664%" y="783.50"></text></g><g><title>execute_command_internal (39 samples, 0.01%)</title><rect x="49.5164%" y="757" width="0.0132%" height="15" fill="rgb(227,75,7)" fg:x="146564" fg:w="39"/><text x="49.7664%" y="767.50"></text></g><g><title>[bash] (39 samples, 0.01%)</title><rect x="49.5164%" y="741" width="0.0132%" height="15" fill="rgb(207,105,14)" fg:x="146564" fg:w="39"/><text x="49.7664%" y="751.50"></text></g><g><title>arch_fork (45 samples, 0.02%)</title><rect x="49.5319%" y="181" width="0.0152%" height="15" fill="rgb(245,62,29)" fg:x="146610" fg:w="45"/><text x="49.7819%" y="191.50"></text></g><g><title>ret_from_fork (38 samples, 0.01%)</title><rect x="49.5343%" y="165" width="0.0128%" height="15" fill="rgb(236,202,4)" fg:x="146617" fg:w="38"/><text x="49.7843%" y="175.50"></text></g><g><title>schedule_tail (38 samples, 0.01%)</title><rect x="49.5343%" y="149" width="0.0128%" height="15" fill="rgb(250,67,1)" fg:x="146617" fg:w="38"/><text x="49.7843%" y="159.50"></text></g><g><title>finish_task_switch (36 samples, 0.01%)</title><rect x="49.5350%" y="133" width="0.0122%" height="15" fill="rgb(253,115,44)" fg:x="146619" fg:w="36"/><text x="49.7850%" y="143.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.01%)</title><rect x="49.5353%" y="117" width="0.0118%" height="15" fill="rgb(251,139,18)" fg:x="146620" fg:w="35"/><text x="49.7853%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.01%)</title><rect x="49.5353%" y="101" width="0.0118%" height="15" fill="rgb(218,22,32)" fg:x="146620" fg:w="35"/><text x="49.7853%" y="111.50"></text></g><g><title>native_write_msr (35 samples, 0.01%)</title><rect x="49.5353%" y="85" width="0.0118%" height="15" fill="rgb(243,53,5)" fg:x="146620" fg:w="35"/><text x="49.7853%" y="95.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="741" width="0.0166%" height="15" fill="rgb(227,56,16)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="751.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="725" width="0.0166%" height="15" fill="rgb(245,53,0)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="735.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="709" width="0.0166%" height="15" fill="rgb(216,170,35)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="719.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="693" width="0.0166%" height="15" fill="rgb(211,200,8)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="703.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="677" width="0.0166%" height="15" fill="rgb(228,204,44)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="687.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="661" width="0.0166%" height="15" fill="rgb(214,121,17)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="671.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="645" width="0.0166%" height="15" fill="rgb(233,64,38)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="655.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="629" width="0.0166%" height="15" fill="rgb(253,54,19)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="639.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="613" width="0.0166%" height="15" fill="rgb(253,94,18)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="623.50"></text></g><g><title>execute_command (49 samples, 0.02%)</title><rect x="49.5312%" y="597" width="0.0166%" height="15" fill="rgb(227,57,52)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="607.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="581" width="0.0166%" height="15" fill="rgb(230,228,50)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="591.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="565" width="0.0166%" height="15" fill="rgb(217,205,27)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="575.50"></text></g><g><title>execute_command (49 samples, 0.02%)</title><rect x="49.5312%" y="549" width="0.0166%" height="15" fill="rgb(252,71,50)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="559.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="533" width="0.0166%" height="15" fill="rgb(209,86,4)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="543.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="517" width="0.0166%" height="15" fill="rgb(229,94,0)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="527.50"></text></g><g><title>execute_command (49 samples, 0.02%)</title><rect x="49.5312%" y="501" width="0.0166%" height="15" fill="rgb(252,223,21)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="511.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="485" width="0.0166%" height="15" fill="rgb(230,210,4)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="495.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="469" width="0.0166%" height="15" fill="rgb(240,149,38)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="479.50"></text></g><g><title>execute_command (49 samples, 0.02%)</title><rect x="49.5312%" y="453" width="0.0166%" height="15" fill="rgb(254,105,20)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="463.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="437" width="0.0166%" height="15" fill="rgb(253,87,46)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="447.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="421" width="0.0166%" height="15" fill="rgb(253,116,33)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="431.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="405" width="0.0166%" height="15" fill="rgb(229,198,5)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="415.50"></text></g><g><title>expand_words (49 samples, 0.02%)</title><rect x="49.5312%" y="389" width="0.0166%" height="15" fill="rgb(242,38,37)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="399.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="373" width="0.0166%" height="15" fill="rgb(242,69,53)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="383.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="357" width="0.0166%" height="15" fill="rgb(249,80,16)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="367.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="341" width="0.0166%" height="15" fill="rgb(206,128,11)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="351.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="325" width="0.0166%" height="15" fill="rgb(212,35,20)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="335.50"></text></g><g><title>command_substitute (49 samples, 0.02%)</title><rect x="49.5312%" y="309" width="0.0166%" height="15" fill="rgb(236,79,13)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="319.50"></text></g><g><title>parse_and_execute (49 samples, 0.02%)</title><rect x="49.5312%" y="293" width="0.0166%" height="15" fill="rgb(233,123,3)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="303.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="277" width="0.0166%" height="15" fill="rgb(214,93,52)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="287.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="261" width="0.0166%" height="15" fill="rgb(251,37,40)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="271.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="49.5312%" y="245" width="0.0166%" height="15" fill="rgb(227,80,54)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="255.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="49.5312%" y="229" width="0.0166%" height="15" fill="rgb(254,48,11)" fg:x="146608" fg:w="49"/><text x="49.7812%" y="239.50"></text></g><g><title>make_child (48 samples, 0.02%)</title><rect x="49.5316%" y="213" width="0.0162%" height="15" fill="rgb(235,193,26)" fg:x="146609" fg:w="48"/><text x="49.7816%" y="223.50"></text></g><g><title>__libc_fork (48 samples, 0.02%)</title><rect x="49.5316%" y="197" width="0.0162%" height="15" fill="rgb(229,99,21)" fg:x="146609" fg:w="48"/><text x="49.7816%" y="207.50"></text></g><g><title>execute_command_internal (156 samples, 0.05%)</title><rect x="49.4954%" y="853" width="0.0527%" height="15" fill="rgb(211,140,41)" fg:x="146502" fg:w="156"/><text x="49.7454%" y="863.50"></text></g><g><title>execute_command_internal (54 samples, 0.02%)</title><rect x="49.5299%" y="837" width="0.0182%" height="15" fill="rgb(240,227,30)" fg:x="146604" fg:w="54"/><text x="49.7799%" y="847.50"></text></g><g><title>[bash] (54 samples, 0.02%)</title><rect x="49.5299%" y="821" width="0.0182%" height="15" fill="rgb(215,224,45)" fg:x="146604" fg:w="54"/><text x="49.7799%" y="831.50"></text></g><g><title>execute_command (54 samples, 0.02%)</title><rect x="49.5299%" y="805" width="0.0182%" height="15" fill="rgb(206,123,31)" fg:x="146604" fg:w="54"/><text x="49.7799%" y="815.50"></text></g><g><title>execute_command_internal (54 samples, 0.02%)</title><rect x="49.5299%" y="789" width="0.0182%" height="15" fill="rgb(210,138,16)" fg:x="146604" fg:w="54"/><text x="49.7799%" y="799.50"></text></g><g><title>[bash] (54 samples, 0.02%)</title><rect x="49.5299%" y="773" width="0.0182%" height="15" fill="rgb(228,57,28)" fg:x="146604" fg:w="54"/><text x="49.7799%" y="783.50"></text></g><g><title>execute_command_internal (50 samples, 0.02%)</title><rect x="49.5312%" y="757" width="0.0169%" height="15" fill="rgb(242,170,10)" fg:x="146608" fg:w="50"/><text x="49.7812%" y="767.50"></text></g><g><title>[unknown] (269 samples, 0.09%)</title><rect x="49.4660%" y="869" width="0.0909%" height="15" fill="rgb(228,214,39)" fg:x="146415" fg:w="269"/><text x="49.7160%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.01%)</title><rect x="49.5799%" y="629" width="0.0139%" height="15" fill="rgb(218,179,33)" fg:x="146752" fg:w="41"/><text x="49.8299%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="49.5806%" y="613" width="0.0132%" height="15" fill="rgb(235,193,39)" fg:x="146754" fg:w="39"/><text x="49.8306%" y="623.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="49.5806%" y="597" width="0.0132%" height="15" fill="rgb(219,221,36)" fg:x="146754" fg:w="39"/><text x="49.8306%" y="607.50"></text></g><g><title>__libc_fork (53 samples, 0.02%)</title><rect x="49.5765%" y="709" width="0.0179%" height="15" fill="rgb(248,218,19)" fg:x="146742" fg:w="53"/><text x="49.8265%" y="719.50"></text></g><g><title>arch_fork (52 samples, 0.02%)</title><rect x="49.5768%" y="693" width="0.0176%" height="15" fill="rgb(205,50,9)" fg:x="146743" fg:w="52"/><text x="49.8268%" y="703.50"></text></g><g><title>ret_from_fork (47 samples, 0.02%)</title><rect x="49.5785%" y="677" width="0.0159%" height="15" fill="rgb(238,81,28)" fg:x="146748" fg:w="47"/><text x="49.8285%" y="687.50"></text></g><g><title>schedule_tail (46 samples, 0.02%)</title><rect x="49.5789%" y="661" width="0.0155%" height="15" fill="rgb(235,110,19)" fg:x="146749" fg:w="46"/><text x="49.8289%" y="671.50"></text></g><g><title>finish_task_switch (45 samples, 0.02%)</title><rect x="49.5792%" y="645" width="0.0152%" height="15" fill="rgb(214,7,14)" fg:x="146750" fg:w="45"/><text x="49.8292%" y="655.50"></text></g><g><title>make_child (57 samples, 0.02%)</title><rect x="49.5765%" y="725" width="0.0193%" height="15" fill="rgb(211,77,3)" fg:x="146742" fg:w="57"/><text x="49.8265%" y="735.50"></text></g><g><title>execute_command (87 samples, 0.03%)</title><rect x="49.5674%" y="757" width="0.0294%" height="15" fill="rgb(229,5,9)" fg:x="146715" fg:w="87"/><text x="49.8174%" y="767.50"></text></g><g><title>execute_command_internal (87 samples, 0.03%)</title><rect x="49.5674%" y="741" width="0.0294%" height="15" fill="rgb(225,90,11)" fg:x="146715" fg:w="87"/><text x="49.8174%" y="751.50"></text></g><g><title>[bash] (107 samples, 0.04%)</title><rect x="49.5667%" y="773" width="0.0361%" height="15" fill="rgb(242,56,8)" fg:x="146713" fg:w="107"/><text x="49.8167%" y="783.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="49.6052%" y="629" width="0.0111%" height="15" fill="rgb(249,212,39)" fg:x="146827" fg:w="33"/><text x="49.8552%" y="639.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="49.6052%" y="613" width="0.0111%" height="15" fill="rgb(236,90,9)" fg:x="146827" fg:w="33"/><text x="49.8552%" y="623.50"></text></g><g><title>copy_command (36 samples, 0.01%)</title><rect x="49.6049%" y="645" width="0.0122%" height="15" fill="rgb(206,88,35)" fg:x="146826" fg:w="36"/><text x="49.8549%" y="655.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="49.6049%" y="661" width="0.0125%" height="15" fill="rgb(205,126,30)" fg:x="146826" fg:w="37"/><text x="49.8549%" y="671.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="49.6039%" y="677" width="0.0142%" height="15" fill="rgb(230,176,12)" fg:x="146823" fg:w="42"/><text x="49.8539%" y="687.50"></text></g><g><title>copy_command (44 samples, 0.01%)</title><rect x="49.6035%" y="709" width="0.0149%" height="15" fill="rgb(243,19,9)" fg:x="146822" fg:w="44"/><text x="49.8535%" y="719.50"></text></g><g><title>copy_command (43 samples, 0.01%)</title><rect x="49.6039%" y="693" width="0.0145%" height="15" fill="rgb(245,171,17)" fg:x="146823" fg:w="43"/><text x="49.8539%" y="703.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="49.6035%" y="757" width="0.0152%" height="15" fill="rgb(227,52,21)" fg:x="146822" fg:w="45"/><text x="49.8535%" y="767.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="49.6035%" y="741" width="0.0152%" height="15" fill="rgb(238,69,14)" fg:x="146822" fg:w="45"/><text x="49.8535%" y="751.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="49.6035%" y="725" width="0.0152%" height="15" fill="rgb(241,156,39)" fg:x="146822" fg:w="45"/><text x="49.8535%" y="735.50"></text></g><g><title>bind_function (48 samples, 0.02%)</title><rect x="49.6032%" y="773" width="0.0162%" height="15" fill="rgb(212,227,28)" fg:x="146821" fg:w="48"/><text x="49.8532%" y="783.50"></text></g><g><title>copy_command (36 samples, 0.01%)</title><rect x="49.6228%" y="613" width="0.0122%" height="15" fill="rgb(209,118,27)" fg:x="146879" fg:w="36"/><text x="49.8728%" y="623.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="49.6228%" y="629" width="0.0125%" height="15" fill="rgb(226,102,5)" fg:x="146879" fg:w="37"/><text x="49.8728%" y="639.50"></text></g><g><title>copy_command (39 samples, 0.01%)</title><rect x="49.6228%" y="645" width="0.0132%" height="15" fill="rgb(223,34,3)" fg:x="146879" fg:w="39"/><text x="49.8728%" y="655.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="49.6225%" y="661" width="0.0142%" height="15" fill="rgb(221,81,38)" fg:x="146878" fg:w="42"/><text x="49.8725%" y="671.50"></text></g><g><title>copy_command (49 samples, 0.02%)</title><rect x="49.6214%" y="677" width="0.0166%" height="15" fill="rgb(236,219,28)" fg:x="146875" fg:w="49"/><text x="49.8714%" y="687.50"></text></g><g><title>copy_command (55 samples, 0.02%)</title><rect x="49.6201%" y="693" width="0.0186%" height="15" fill="rgb(213,200,14)" fg:x="146871" fg:w="55"/><text x="49.8701%" y="703.50"></text></g><g><title>copy_function_def_contents (57 samples, 0.02%)</title><rect x="49.6198%" y="773" width="0.0193%" height="15" fill="rgb(240,33,19)" fg:x="146870" fg:w="57"/><text x="49.8698%" y="783.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="49.6198%" y="757" width="0.0193%" height="15" fill="rgb(233,113,27)" fg:x="146870" fg:w="57"/><text x="49.8698%" y="767.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="49.6198%" y="741" width="0.0193%" height="15" fill="rgb(220,221,18)" fg:x="146870" fg:w="57"/><text x="49.8698%" y="751.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="49.6198%" y="725" width="0.0193%" height="15" fill="rgb(238,92,8)" fg:x="146870" fg:w="57"/><text x="49.8698%" y="735.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="49.6198%" y="709" width="0.0193%" height="15" fill="rgb(222,164,16)" fg:x="146870" fg:w="57"/><text x="49.8698%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.01%)</title><rect x="49.6515%" y="597" width="0.0149%" height="15" fill="rgb(241,119,3)" fg:x="146964" fg:w="44"/><text x="49.9015%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.01%)</title><rect x="49.6515%" y="581" width="0.0149%" height="15" fill="rgb(241,44,8)" fg:x="146964" fg:w="44"/><text x="49.9015%" y="591.50"></text></g><g><title>native_write_msr (43 samples, 0.01%)</title><rect x="49.6518%" y="565" width="0.0145%" height="15" fill="rgb(230,36,40)" fg:x="146965" fg:w="43"/><text x="49.9018%" y="575.50"></text></g><g><title>schedule_tail (52 samples, 0.02%)</title><rect x="49.6491%" y="629" width="0.0176%" height="15" fill="rgb(243,16,36)" fg:x="146957" fg:w="52"/><text x="49.8991%" y="639.50"></text></g><g><title>finish_task_switch (46 samples, 0.02%)</title><rect x="49.6512%" y="613" width="0.0155%" height="15" fill="rgb(231,4,26)" fg:x="146963" fg:w="46"/><text x="49.9012%" y="623.50"></text></g><g><title>arch_fork (57 samples, 0.02%)</title><rect x="49.6478%" y="661" width="0.0193%" height="15" fill="rgb(240,9,31)" fg:x="146953" fg:w="57"/><text x="49.8978%" y="671.50"></text></g><g><title>ret_from_fork (53 samples, 0.02%)</title><rect x="49.6491%" y="645" width="0.0179%" height="15" fill="rgb(207,173,15)" fg:x="146957" fg:w="53"/><text x="49.8991%" y="655.50"></text></g><g><title>__libc_fork (58 samples, 0.02%)</title><rect x="49.6478%" y="677" width="0.0196%" height="15" fill="rgb(224,192,53)" fg:x="146953" fg:w="58"/><text x="49.8978%" y="687.50"></text></g><g><title>make_child (61 samples, 0.02%)</title><rect x="49.6478%" y="693" width="0.0206%" height="15" fill="rgb(223,67,28)" fg:x="146953" fg:w="61"/><text x="49.8978%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.02%)</title><rect x="49.6752%" y="565" width="0.0199%" height="15" fill="rgb(211,20,47)" fg:x="147034" fg:w="59"/><text x="49.9252%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.02%)</title><rect x="49.6755%" y="549" width="0.0196%" height="15" fill="rgb(240,228,2)" fg:x="147035" fg:w="58"/><text x="49.9255%" y="559.50"></text></g><g><title>native_write_msr (58 samples, 0.02%)</title><rect x="49.6755%" y="533" width="0.0196%" height="15" fill="rgb(248,151,12)" fg:x="147035" fg:w="58"/><text x="49.9255%" y="543.50"></text></g><g><title>arch_fork (71 samples, 0.02%)</title><rect x="49.6718%" y="629" width="0.0240%" height="15" fill="rgb(244,8,39)" fg:x="147024" fg:w="71"/><text x="49.9218%" y="639.50"></text></g><g><title>ret_from_fork (65 samples, 0.02%)</title><rect x="49.6738%" y="613" width="0.0220%" height="15" fill="rgb(222,26,8)" fg:x="147030" fg:w="65"/><text x="49.9238%" y="623.50"></text></g><g><title>schedule_tail (65 samples, 0.02%)</title><rect x="49.6738%" y="597" width="0.0220%" height="15" fill="rgb(213,106,44)" fg:x="147030" fg:w="65"/><text x="49.9238%" y="607.50"></text></g><g><title>finish_task_switch (62 samples, 0.02%)</title><rect x="49.6748%" y="581" width="0.0209%" height="15" fill="rgb(214,129,20)" fg:x="147033" fg:w="62"/><text x="49.9248%" y="591.50"></text></g><g><title>__libc_fork (75 samples, 0.03%)</title><rect x="49.6714%" y="645" width="0.0253%" height="15" fill="rgb(212,32,13)" fg:x="147023" fg:w="75"/><text x="49.9214%" y="655.50"></text></g><g><title>make_child (79 samples, 0.03%)</title><rect x="49.6714%" y="661" width="0.0267%" height="15" fill="rgb(208,168,33)" fg:x="147023" fg:w="79"/><text x="49.9214%" y="671.50"></text></g><g><title>execute_command_internal (110 samples, 0.04%)</title><rect x="49.6687%" y="677" width="0.0372%" height="15" fill="rgb(231,207,8)" fg:x="147015" fg:w="110"/><text x="49.9187%" y="687.50"></text></g><g><title>parse_and_execute (112 samples, 0.04%)</title><rect x="49.6684%" y="693" width="0.0378%" height="15" fill="rgb(235,219,23)" fg:x="147014" fg:w="112"/><text x="49.9184%" y="703.50"></text></g><g><title>do_syscall_64 (48 samples, 0.02%)</title><rect x="49.7083%" y="645" width="0.0162%" height="15" fill="rgb(226,216,26)" fg:x="147132" fg:w="48"/><text x="49.9583%" y="655.50"></text></g><g><title>ksys_read (48 samples, 0.02%)</title><rect x="49.7083%" y="629" width="0.0162%" height="15" fill="rgb(239,137,16)" fg:x="147132" fg:w="48"/><text x="49.9583%" y="639.50"></text></g><g><title>vfs_read (48 samples, 0.02%)</title><rect x="49.7083%" y="613" width="0.0162%" height="15" fill="rgb(207,12,36)" fg:x="147132" fg:w="48"/><text x="49.9583%" y="623.50"></text></g><g><title>new_sync_read (47 samples, 0.02%)</title><rect x="49.7086%" y="597" width="0.0159%" height="15" fill="rgb(210,214,24)" fg:x="147133" fg:w="47"/><text x="49.9586%" y="607.50"></text></g><g><title>pipe_read (47 samples, 0.02%)</title><rect x="49.7086%" y="581" width="0.0159%" height="15" fill="rgb(206,56,30)" fg:x="147133" fg:w="47"/><text x="49.9586%" y="591.50"></text></g><g><title>schedule (45 samples, 0.02%)</title><rect x="49.7093%" y="565" width="0.0152%" height="15" fill="rgb(228,143,26)" fg:x="147135" fg:w="45"/><text x="49.9593%" y="575.50"></text></g><g><title>__schedule (45 samples, 0.02%)</title><rect x="49.7093%" y="549" width="0.0152%" height="15" fill="rgb(216,218,46)" fg:x="147135" fg:w="45"/><text x="49.9593%" y="559.50"></text></g><g><title>finish_task_switch (42 samples, 0.01%)</title><rect x="49.7103%" y="533" width="0.0142%" height="15" fill="rgb(206,6,19)" fg:x="147138" fg:w="42"/><text x="49.9603%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.01%)</title><rect x="49.7106%" y="517" width="0.0139%" height="15" fill="rgb(239,177,51)" fg:x="147139" fg:w="41"/><text x="49.9606%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.01%)</title><rect x="49.7106%" y="501" width="0.0139%" height="15" fill="rgb(216,55,25)" fg:x="147139" fg:w="41"/><text x="49.9606%" y="511.50"></text></g><g><title>native_write_msr (41 samples, 0.01%)</title><rect x="49.7106%" y="485" width="0.0139%" height="15" fill="rgb(231,163,29)" fg:x="147139" fg:w="41"/><text x="49.9606%" y="495.50"></text></g><g><title>expand_word_leave_quoted (236 samples, 0.08%)</title><rect x="49.6454%" y="741" width="0.0797%" height="15" fill="rgb(232,149,50)" fg:x="146946" fg:w="236"/><text x="49.8954%" y="751.50"></text></g><g><title>[bash] (236 samples, 0.08%)</title><rect x="49.6454%" y="725" width="0.0797%" height="15" fill="rgb(223,142,48)" fg:x="146946" fg:w="236"/><text x="49.8954%" y="735.50"></text></g><g><title>command_substitute (236 samples, 0.08%)</title><rect x="49.6454%" y="709" width="0.0797%" height="15" fill="rgb(245,83,23)" fg:x="146946" fg:w="236"/><text x="49.8954%" y="719.50"></text></g><g><title>zread (51 samples, 0.02%)</title><rect x="49.7079%" y="693" width="0.0172%" height="15" fill="rgb(224,63,2)" fg:x="147131" fg:w="51"/><text x="49.9579%" y="703.50"></text></g><g><title>__GI___libc_read (50 samples, 0.02%)</title><rect x="49.7083%" y="677" width="0.0169%" height="15" fill="rgb(218,65,53)" fg:x="147132" fg:w="50"/><text x="49.9583%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="49.7083%" y="661" width="0.0169%" height="15" fill="rgb(221,84,29)" fg:x="147132" fg:w="50"/><text x="49.9583%" y="671.50"></text></g><g><title>execute_command (263 samples, 0.09%)</title><rect x="49.6393%" y="773" width="0.0889%" height="15" fill="rgb(234,0,32)" fg:x="146928" fg:w="263"/><text x="49.8893%" y="783.50"></text></g><g><title>execute_command_internal (263 samples, 0.09%)</title><rect x="49.6393%" y="757" width="0.0889%" height="15" fill="rgb(206,20,16)" fg:x="146928" fg:w="263"/><text x="49.8893%" y="767.50"></text></g><g><title>__libc_fork (43 samples, 0.01%)</title><rect x="49.7329%" y="661" width="0.0145%" height="15" fill="rgb(244,172,18)" fg:x="147205" fg:w="43"/><text x="49.9829%" y="671.50"></text></g><g><title>arch_fork (42 samples, 0.01%)</title><rect x="49.7333%" y="645" width="0.0142%" height="15" fill="rgb(254,133,1)" fg:x="147206" fg:w="42"/><text x="49.9833%" y="655.50"></text></g><g><title>ret_from_fork (39 samples, 0.01%)</title><rect x="49.7343%" y="629" width="0.0132%" height="15" fill="rgb(222,206,41)" fg:x="147209" fg:w="39"/><text x="49.9843%" y="639.50"></text></g><g><title>schedule_tail (39 samples, 0.01%)</title><rect x="49.7343%" y="613" width="0.0132%" height="15" fill="rgb(212,3,42)" fg:x="147209" fg:w="39"/><text x="49.9843%" y="623.50"></text></g><g><title>finish_task_switch (36 samples, 0.01%)</title><rect x="49.7353%" y="597" width="0.0122%" height="15" fill="rgb(241,11,4)" fg:x="147212" fg:w="36"/><text x="49.9853%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.01%)</title><rect x="49.7360%" y="581" width="0.0115%" height="15" fill="rgb(205,19,26)" fg:x="147214" fg:w="34"/><text x="49.9860%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.01%)</title><rect x="49.7360%" y="565" width="0.0115%" height="15" fill="rgb(210,179,32)" fg:x="147214" fg:w="34"/><text x="49.9860%" y="575.50"></text></g><g><title>native_write_msr (34 samples, 0.01%)</title><rect x="49.7360%" y="549" width="0.0115%" height="15" fill="rgb(227,116,49)" fg:x="147214" fg:w="34"/><text x="49.9860%" y="559.50"></text></g><g><title>make_child (46 samples, 0.02%)</title><rect x="49.7326%" y="677" width="0.0155%" height="15" fill="rgb(211,146,6)" fg:x="147204" fg:w="46"/><text x="49.9826%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.03%)</title><rect x="49.7701%" y="501" width="0.0280%" height="15" fill="rgb(219,44,39)" fg:x="147315" fg:w="83"/><text x="50.0201%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.03%)</title><rect x="49.7704%" y="485" width="0.0277%" height="15" fill="rgb(234,128,11)" fg:x="147316" fg:w="82"/><text x="50.0204%" y="495.50"></text></g><g><title>native_write_msr (81 samples, 0.03%)</title><rect x="49.7708%" y="469" width="0.0274%" height="15" fill="rgb(220,183,53)" fg:x="147317" fg:w="81"/><text x="50.0208%" y="479.50"></text></g><g><title>arch_fork (99 samples, 0.03%)</title><rect x="49.7650%" y="565" width="0.0334%" height="15" fill="rgb(213,219,32)" fg:x="147300" fg:w="99"/><text x="50.0150%" y="575.50"></text></g><g><title>ret_from_fork (88 samples, 0.03%)</title><rect x="49.7687%" y="549" width="0.0297%" height="15" fill="rgb(232,156,16)" fg:x="147311" fg:w="88"/><text x="50.0187%" y="559.50"></text></g><g><title>schedule_tail (88 samples, 0.03%)</title><rect x="49.7687%" y="533" width="0.0297%" height="15" fill="rgb(246,135,34)" fg:x="147311" fg:w="88"/><text x="50.0187%" y="543.50"></text></g><g><title>finish_task_switch (87 samples, 0.03%)</title><rect x="49.7691%" y="517" width="0.0294%" height="15" fill="rgb(241,99,0)" fg:x="147312" fg:w="87"/><text x="50.0191%" y="527.50"></text></g><g><title>__libc_fork (103 samples, 0.03%)</title><rect x="49.7647%" y="581" width="0.0348%" height="15" fill="rgb(222,103,45)" fg:x="147299" fg:w="103"/><text x="50.0147%" y="591.50"></text></g><g><title>make_child (115 samples, 0.04%)</title><rect x="49.7647%" y="597" width="0.0389%" height="15" fill="rgb(212,57,4)" fg:x="147299" fg:w="115"/><text x="50.0147%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.02%)</title><rect x="49.8046%" y="437" width="0.0196%" height="15" fill="rgb(215,68,47)" fg:x="147417" fg:w="58"/><text x="50.0546%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.02%)</title><rect x="49.8052%" y="421" width="0.0189%" height="15" fill="rgb(230,84,2)" fg:x="147419" fg:w="56"/><text x="50.0552%" y="431.50"></text></g><g><title>native_write_msr (56 samples, 0.02%)</title><rect x="49.8052%" y="405" width="0.0189%" height="15" fill="rgb(220,102,14)" fg:x="147419" fg:w="56"/><text x="50.0552%" y="415.50"></text></g><g><title>schedule (62 samples, 0.02%)</title><rect x="49.8035%" y="485" width="0.0209%" height="15" fill="rgb(240,10,32)" fg:x="147414" fg:w="62"/><text x="50.0535%" y="495.50"></text></g><g><title>__schedule (62 samples, 0.02%)</title><rect x="49.8035%" y="469" width="0.0209%" height="15" fill="rgb(215,47,27)" fg:x="147414" fg:w="62"/><text x="50.0535%" y="479.50"></text></g><g><title>finish_task_switch (61 samples, 0.02%)</title><rect x="49.8039%" y="453" width="0.0206%" height="15" fill="rgb(233,188,43)" fg:x="147415" fg:w="61"/><text x="50.0539%" y="463.50"></text></g><g><title>__GI___wait4 (68 samples, 0.02%)</title><rect x="49.8035%" y="565" width="0.0230%" height="15" fill="rgb(253,190,1)" fg:x="147414" fg:w="68"/><text x="50.0535%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="49.8035%" y="549" width="0.0230%" height="15" fill="rgb(206,114,52)" fg:x="147414" fg:w="68"/><text x="50.0535%" y="559.50"></text></g><g><title>do_syscall_64 (68 samples, 0.02%)</title><rect x="49.8035%" y="533" width="0.0230%" height="15" fill="rgb(233,120,37)" fg:x="147414" fg:w="68"/><text x="50.0535%" y="543.50"></text></g><g><title>kernel_wait4 (68 samples, 0.02%)</title><rect x="49.8035%" y="517" width="0.0230%" height="15" fill="rgb(214,52,39)" fg:x="147414" fg:w="68"/><text x="50.0535%" y="527.50"></text></g><g><title>do_wait (68 samples, 0.02%)</title><rect x="49.8035%" y="501" width="0.0230%" height="15" fill="rgb(223,80,29)" fg:x="147414" fg:w="68"/><text x="50.0535%" y="511.50"></text></g><g><title>parse_and_execute (233 samples, 0.08%)</title><rect x="49.7481%" y="677" width="0.0787%" height="15" fill="rgb(230,101,40)" fg:x="147250" fg:w="233"/><text x="49.9981%" y="687.50"></text></g><g><title>execute_command_internal (231 samples, 0.08%)</title><rect x="49.7488%" y="661" width="0.0780%" height="15" fill="rgb(219,211,8)" fg:x="147252" fg:w="231"/><text x="49.9988%" y="671.50"></text></g><g><title>[bash] (231 samples, 0.08%)</title><rect x="49.7488%" y="645" width="0.0780%" height="15" fill="rgb(252,126,28)" fg:x="147252" fg:w="231"/><text x="49.9988%" y="655.50"></text></g><g><title>[bash] (231 samples, 0.08%)</title><rect x="49.7488%" y="629" width="0.0780%" height="15" fill="rgb(215,56,38)" fg:x="147252" fg:w="231"/><text x="49.9988%" y="639.50"></text></g><g><title>execute_command_internal (229 samples, 0.08%)</title><rect x="49.7495%" y="613" width="0.0774%" height="15" fill="rgb(249,55,44)" fg:x="147254" fg:w="229"/><text x="49.9995%" y="623.50"></text></g><g><title>wait_for (69 samples, 0.02%)</title><rect x="49.8035%" y="597" width="0.0233%" height="15" fill="rgb(220,221,32)" fg:x="147414" fg:w="69"/><text x="50.0535%" y="607.50"></text></g><g><title>[bash] (69 samples, 0.02%)</title><rect x="49.8035%" y="581" width="0.0233%" height="15" fill="rgb(212,216,41)" fg:x="147414" fg:w="69"/><text x="50.0535%" y="591.50"></text></g><g><title>[bash] (304 samples, 0.10%)</title><rect x="49.7296%" y="725" width="0.1027%" height="15" fill="rgb(228,213,43)" fg:x="147195" fg:w="304"/><text x="49.9796%" y="735.50"></text></g><g><title>[bash] (304 samples, 0.10%)</title><rect x="49.7296%" y="709" width="0.1027%" height="15" fill="rgb(211,31,26)" fg:x="147195" fg:w="304"/><text x="49.9796%" y="719.50"></text></g><g><title>command_substitute (301 samples, 0.10%)</title><rect x="49.7306%" y="693" width="0.1017%" height="15" fill="rgb(229,202,19)" fg:x="147198" fg:w="301"/><text x="49.9806%" y="703.50"></text></g><g><title>[bash] (310 samples, 0.10%)</title><rect x="49.7285%" y="741" width="0.1047%" height="15" fill="rgb(229,105,46)" fg:x="147192" fg:w="310"/><text x="49.9785%" y="751.50"></text></g><g><title>[bash] (314 samples, 0.11%)</title><rect x="49.7282%" y="757" width="0.1061%" height="15" fill="rgb(235,108,1)" fg:x="147191" fg:w="314"/><text x="49.9782%" y="767.50"></text></g><g><title>expand_words (315 samples, 0.11%)</title><rect x="49.7282%" y="773" width="0.1064%" height="15" fill="rgb(245,111,35)" fg:x="147191" fg:w="315"/><text x="49.9782%" y="783.50"></text></g><g><title>execute_command (797 samples, 0.27%)</title><rect x="49.5667%" y="805" width="0.2693%" height="15" fill="rgb(219,185,31)" fg:x="146713" fg:w="797"/><text x="49.8167%" y="815.50"></text></g><g><title>execute_command_internal (797 samples, 0.27%)</title><rect x="49.5667%" y="789" width="0.2693%" height="15" fill="rgb(214,4,43)" fg:x="146713" fg:w="797"/><text x="49.8167%" y="799.50"></text></g><g><title>[bash] (33 samples, 0.01%)</title><rect x="49.9181%" y="725" width="0.0111%" height="15" fill="rgb(235,227,40)" fg:x="147753" fg:w="33"/><text x="50.1681%" y="735.50"></text></g><g><title>buffered_getchar (34 samples, 0.01%)</title><rect x="49.9296%" y="725" width="0.0115%" height="15" fill="rgb(230,88,30)" fg:x="147787" fg:w="34"/><text x="50.1796%" y="735.50"></text></g><g><title>[bash] (184 samples, 0.06%)</title><rect x="49.8796%" y="741" width="0.0622%" height="15" fill="rgb(216,217,1)" fg:x="147639" fg:w="184"/><text x="50.1296%" y="751.50"></text></g><g><title>[bash] (332 samples, 0.11%)</title><rect x="49.8508%" y="757" width="0.1122%" height="15" fill="rgb(248,139,50)" fg:x="147554" fg:w="332"/><text x="50.1008%" y="767.50"></text></g><g><title>reader_loop (1,214 samples, 0.41%)</title><rect x="49.5606%" y="821" width="0.4101%" height="15" fill="rgb(233,1,21)" fg:x="146695" fg:w="1214"/><text x="49.8106%" y="831.50"></text></g><g><title>read_command (399 samples, 0.13%)</title><rect x="49.8360%" y="805" width="0.1348%" height="15" fill="rgb(215,183,12)" fg:x="147510" fg:w="399"/><text x="50.0860%" y="815.50"></text></g><g><title>parse_command (399 samples, 0.13%)</title><rect x="49.8360%" y="789" width="0.1348%" height="15" fill="rgb(229,104,42)" fg:x="147510" fg:w="399"/><text x="50.0860%" y="799.50"></text></g><g><title>yyparse (398 samples, 0.13%)</title><rect x="49.8363%" y="773" width="0.1345%" height="15" fill="rgb(243,34,48)" fg:x="147511" fg:w="398"/><text x="50.0863%" y="783.50"></text></g><g><title>__libc_start_main (1,224 samples, 0.41%)</title><rect x="49.5576%" y="853" width="0.4135%" height="15" fill="rgb(239,11,44)" fg:x="146686" fg:w="1224"/><text x="49.8076%" y="863.50"></text></g><g><title>main (1,224 samples, 0.41%)</title><rect x="49.5576%" y="837" width="0.4135%" height="15" fill="rgb(231,98,35)" fg:x="146686" fg:w="1224"/><text x="49.8076%" y="847.50"></text></g><g><title>_start (1,239 samples, 0.42%)</title><rect x="49.5576%" y="869" width="0.4186%" height="15" fill="rgb(233,28,25)" fg:x="146686" fg:w="1239"/><text x="49.8076%" y="879.50"></text></g><g><title>asm_exc_page_fault (36 samples, 0.01%)</title><rect x="49.9762%" y="869" width="0.0122%" height="15" fill="rgb(234,123,11)" fg:x="147925" fg:w="36"/><text x="50.2262%" y="879.50"></text></g><g><title>mmput (35 samples, 0.01%)</title><rect x="49.9941%" y="789" width="0.0118%" height="15" fill="rgb(220,69,3)" fg:x="147978" fg:w="35"/><text x="50.2441%" y="799.50"></text></g><g><title>exit_mmap (35 samples, 0.01%)</title><rect x="49.9941%" y="773" width="0.0118%" height="15" fill="rgb(214,64,36)" fg:x="147978" fg:w="35"/><text x="50.2441%" y="783.50"></text></g><g><title>__x64_sys_exit_group (38 samples, 0.01%)</title><rect x="49.9934%" y="837" width="0.0128%" height="15" fill="rgb(211,138,32)" fg:x="147976" fg:w="38"/><text x="50.2434%" y="847.50"></text></g><g><title>do_group_exit (38 samples, 0.01%)</title><rect x="49.9934%" y="821" width="0.0128%" height="15" fill="rgb(213,118,47)" fg:x="147976" fg:w="38"/><text x="50.2434%" y="831.50"></text></g><g><title>do_exit (38 samples, 0.01%)</title><rect x="49.9934%" y="805" width="0.0128%" height="15" fill="rgb(243,124,49)" fg:x="147976" fg:w="38"/><text x="50.2434%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.02%)</title><rect x="49.9887%" y="869" width="0.0179%" height="15" fill="rgb(221,30,28)" fg:x="147962" fg:w="53"/><text x="50.2387%" y="879.50"></text></g><g><title>do_syscall_64 (53 samples, 0.02%)</title><rect x="49.9887%" y="853" width="0.0179%" height="15" fill="rgb(246,37,13)" fg:x="147962" fg:w="53"/><text x="50.2387%" y="863.50"></text></g><g><title>libtool (1,667 samples, 0.56%)</title><rect x="49.4441%" y="885" width="0.5632%" height="15" fill="rgb(249,66,14)" fg:x="146350" fg:w="1667"/><text x="49.6941%" y="895.50"></text></g><g><title>[[stack]] (31 samples, 0.01%)</title><rect x="50.0154%" y="869" width="0.0105%" height="15" fill="rgb(213,166,5)" fg:x="148041" fg:w="31"/><text x="50.2654%" y="879.50"></text></g><g><title>_dl_start_user (35 samples, 0.01%)</title><rect x="50.0343%" y="869" width="0.0118%" height="15" fill="rgb(221,66,24)" fg:x="148097" fg:w="35"/><text x="50.2843%" y="879.50"></text></g><g><title>_dl_init (35 samples, 0.01%)</title><rect x="50.0343%" y="853" width="0.0118%" height="15" fill="rgb(210,132,17)" fg:x="148097" fg:w="35"/><text x="50.2843%" y="863.50"></text></g><g><title>call_init (35 samples, 0.01%)</title><rect x="50.0343%" y="837" width="0.0118%" height="15" fill="rgb(243,202,5)" fg:x="148097" fg:w="35"/><text x="50.2843%" y="847.50"></text></g><g><title>call_init (35 samples, 0.01%)</title><rect x="50.0343%" y="821" width="0.0118%" height="15" fill="rgb(233,70,48)" fg:x="148097" fg:w="35"/><text x="50.2843%" y="831.50"></text></g><g><title>[libstdc++.so.6.0.28] (30 samples, 0.01%)</title><rect x="50.0546%" y="741" width="0.0101%" height="15" fill="rgb(238,41,26)" fg:x="148157" fg:w="30"/><text x="50.3046%" y="751.50"></text></g><g><title>std::locale::_Impl::_Impl (30 samples, 0.01%)</title><rect x="50.0546%" y="725" width="0.0101%" height="15" fill="rgb(241,19,31)" fg:x="148157" fg:w="30"/><text x="50.3046%" y="735.50"></text></g><g><title>_GLOBAL__sub_I__Z12SwitchToEuidv (42 samples, 0.01%)</title><rect x="50.0522%" y="821" width="0.0142%" height="15" fill="rgb(214,76,10)" fg:x="148150" fg:w="42"/><text x="50.3022%" y="831.50"></text></g><g><title>std::ios_base::Init::Init (42 samples, 0.01%)</title><rect x="50.0522%" y="805" width="0.0142%" height="15" fill="rgb(254,202,22)" fg:x="148150" fg:w="42"/><text x="50.3022%" y="815.50"></text></g><g><title>std::locale::locale (35 samples, 0.01%)</title><rect x="50.0546%" y="789" width="0.0118%" height="15" fill="rgb(214,72,24)" fg:x="148157" fg:w="35"/><text x="50.3046%" y="799.50"></text></g><g><title>[libstdc++.so.6.0.28] (35 samples, 0.01%)</title><rect x="50.0546%" y="773" width="0.0118%" height="15" fill="rgb(221,92,46)" fg:x="148157" fg:w="35"/><text x="50.3046%" y="783.50"></text></g><g><title>__pthread_once_slow (35 samples, 0.01%)</title><rect x="50.0546%" y="757" width="0.0118%" height="15" fill="rgb(246,13,50)" fg:x="148157" fg:w="35"/><text x="50.3046%" y="767.50"></text></g><g><title>__libc_csu_init (47 samples, 0.02%)</title><rect x="50.0522%" y="837" width="0.0159%" height="15" fill="rgb(240,165,38)" fg:x="148150" fg:w="47"/><text x="50.3022%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.01%)</title><rect x="50.0981%" y="597" width="0.0122%" height="15" fill="rgb(241,24,51)" fg:x="148286" fg:w="36"/><text x="50.3481%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.01%)</title><rect x="50.0988%" y="581" width="0.0115%" height="15" fill="rgb(227,51,44)" fg:x="148288" fg:w="34"/><text x="50.3488%" y="591.50"></text></g><g><title>native_write_msr (34 samples, 0.01%)</title><rect x="50.0988%" y="565" width="0.0115%" height="15" fill="rgb(231,121,3)" fg:x="148288" fg:w="34"/><text x="50.3488%" y="575.50"></text></g><g><title>sched_exec (39 samples, 0.01%)</title><rect x="50.0978%" y="677" width="0.0132%" height="15" fill="rgb(245,3,41)" fg:x="148285" fg:w="39"/><text x="50.3478%" y="687.50"></text></g><g><title>stop_one_cpu (39 samples, 0.01%)</title><rect x="50.0978%" y="661" width="0.0132%" height="15" fill="rgb(214,13,26)" fg:x="148285" fg:w="39"/><text x="50.3478%" y="671.50"></text></g><g><title>_cond_resched (39 samples, 0.01%)</title><rect x="50.0978%" y="645" width="0.0132%" height="15" fill="rgb(252,75,11)" fg:x="148285" fg:w="39"/><text x="50.3478%" y="655.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="50.0978%" y="629" width="0.0132%" height="15" fill="rgb(218,226,17)" fg:x="148285" fg:w="39"/><text x="50.3478%" y="639.50"></text></g><g><title>finish_task_switch (39 samples, 0.01%)</title><rect x="50.0978%" y="613" width="0.0132%" height="15" fill="rgb(248,89,38)" fg:x="148285" fg:w="39"/><text x="50.3478%" y="623.50"></text></g><g><title>bprm_execve (97 samples, 0.03%)</title><rect x="50.0829%" y="693" width="0.0328%" height="15" fill="rgb(237,73,46)" fg:x="148241" fg:w="97"/><text x="50.3329%" y="703.50"></text></g><g><title>__execvpe_common (122 samples, 0.04%)</title><rect x="50.0779%" y="789" width="0.0412%" height="15" fill="rgb(242,78,33)" fg:x="148226" fg:w="122"/><text x="50.3279%" y="799.50"></text></g><g><title>__GI_execve (118 samples, 0.04%)</title><rect x="50.0792%" y="773" width="0.0399%" height="15" fill="rgb(235,60,3)" fg:x="148230" fg:w="118"/><text x="50.3292%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.04%)</title><rect x="50.0792%" y="757" width="0.0399%" height="15" fill="rgb(216,172,19)" fg:x="148230" fg:w="118"/><text x="50.3292%" y="767.50"></text></g><g><title>do_syscall_64 (118 samples, 0.04%)</title><rect x="50.0792%" y="741" width="0.0399%" height="15" fill="rgb(227,6,42)" fg:x="148230" fg:w="118"/><text x="50.3292%" y="751.50"></text></g><g><title>__x64_sys_execve (118 samples, 0.04%)</title><rect x="50.0792%" y="725" width="0.0399%" height="15" fill="rgb(223,207,42)" fg:x="148230" fg:w="118"/><text x="50.3292%" y="735.50"></text></g><g><title>do_execveat_common (118 samples, 0.04%)</title><rect x="50.0792%" y="709" width="0.0399%" height="15" fill="rgb(246,138,30)" fg:x="148230" fg:w="118"/><text x="50.3292%" y="719.50"></text></g><g><title>dup_mm (31 samples, 0.01%)</title><rect x="50.1299%" y="677" width="0.0105%" height="15" fill="rgb(251,199,47)" fg:x="148380" fg:w="31"/><text x="50.3799%" y="687.50"></text></g><g><title>copy_process (46 samples, 0.02%)</title><rect x="50.1272%" y="693" width="0.0155%" height="15" fill="rgb(228,218,44)" fg:x="148372" fg:w="46"/><text x="50.3772%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="50.1272%" y="757" width="0.0166%" height="15" fill="rgb(220,68,6)" fg:x="148372" fg:w="49"/><text x="50.3772%" y="767.50"></text></g><g><title>do_syscall_64 (49 samples, 0.02%)</title><rect x="50.1272%" y="741" width="0.0166%" height="15" fill="rgb(240,60,26)" fg:x="148372" fg:w="49"/><text x="50.3772%" y="751.50"></text></g><g><title>__do_sys_clone (49 samples, 0.02%)</title><rect x="50.1272%" y="725" width="0.0166%" height="15" fill="rgb(211,200,19)" fg:x="148372" fg:w="49"/><text x="50.3772%" y="735.50"></text></g><g><title>kernel_clone (49 samples, 0.02%)</title><rect x="50.1272%" y="709" width="0.0166%" height="15" fill="rgb(242,145,30)" fg:x="148372" fg:w="49"/><text x="50.3772%" y="719.50"></text></g><g><title>__put_user_nocheck_4 (34 samples, 0.01%)</title><rect x="50.1444%" y="725" width="0.0115%" height="15" fill="rgb(225,64,13)" fg:x="148423" fg:w="34"/><text x="50.3944%" y="735.50"></text></g><g><title>asm_exc_page_fault (32 samples, 0.01%)</title><rect x="50.1451%" y="709" width="0.0108%" height="15" fill="rgb(218,103,35)" fg:x="148425" fg:w="32"/><text x="50.3951%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (320 samples, 0.11%)</title><rect x="50.1603%" y="709" width="0.1081%" height="15" fill="rgb(216,93,46)" fg:x="148470" fg:w="320"/><text x="50.4103%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (313 samples, 0.11%)</title><rect x="50.1627%" y="693" width="0.1057%" height="15" fill="rgb(225,159,27)" fg:x="148477" fg:w="313"/><text x="50.4127%" y="703.50"></text></g><g><title>native_write_msr (312 samples, 0.11%)</title><rect x="50.1630%" y="677" width="0.1054%" height="15" fill="rgb(225,204,11)" fg:x="148478" fg:w="312"/><text x="50.4130%" y="687.50"></text></g><g><title>schedule_tail (383 samples, 0.13%)</title><rect x="50.1444%" y="741" width="0.1294%" height="15" fill="rgb(205,56,4)" fg:x="148423" fg:w="383"/><text x="50.3944%" y="751.50"></text></g><g><title>finish_task_switch (347 samples, 0.12%)</title><rect x="50.1566%" y="725" width="0.1172%" height="15" fill="rgb(206,6,35)" fg:x="148459" fg:w="347"/><text x="50.4066%" y="735.50"></text></g><g><title>arch_fork (446 samples, 0.15%)</title><rect x="50.1235%" y="773" width="0.1507%" height="15" fill="rgb(247,73,52)" fg:x="148361" fg:w="446"/><text x="50.3735%" y="783.50"></text></g><g><title>ret_from_fork (385 samples, 0.13%)</title><rect x="50.1441%" y="757" width="0.1301%" height="15" fill="rgb(246,97,4)" fg:x="148422" fg:w="385"/><text x="50.3941%" y="767.50"></text></g><g><title>__libc_fork (468 samples, 0.16%)</title><rect x="50.1191%" y="789" width="0.1581%" height="15" fill="rgb(212,37,15)" fg:x="148348" fg:w="468"/><text x="50.3691%" y="799.50"></text></g><g><title>__setsid (45 samples, 0.02%)</title><rect x="50.2772%" y="789" width="0.0152%" height="15" fill="rgb(208,130,40)" fg:x="148816" fg:w="45"/><text x="50.5272%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.02%)</title><rect x="50.2772%" y="773" width="0.0152%" height="15" fill="rgb(236,55,29)" fg:x="148816" fg:w="45"/><text x="50.5272%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (30 samples, 0.01%)</title><rect x="50.2823%" y="757" width="0.0101%" height="15" fill="rgb(209,156,45)" fg:x="148831" fg:w="30"/><text x="50.5323%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (30 samples, 0.01%)</title><rect x="50.2823%" y="741" width="0.0101%" height="15" fill="rgb(249,107,4)" fg:x="148831" fg:w="30"/><text x="50.5323%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (670 samples, 0.23%)</title><rect x="50.0681%" y="821" width="0.2264%" height="15" fill="rgb(227,7,13)" fg:x="148197" fg:w="670"/><text x="50.3181%" y="831.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (670 samples, 0.23%)</title><rect x="50.0681%" y="805" width="0.2264%" height="15" fill="rgb(250,129,14)" fg:x="148197" fg:w="670"/><text x="50.3181%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (175 samples, 0.06%)</title><rect x="50.3036%" y="661" width="0.0591%" height="15" fill="rgb(229,92,13)" fg:x="148894" fg:w="175"/><text x="50.5536%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (172 samples, 0.06%)</title><rect x="50.3046%" y="645" width="0.0581%" height="15" fill="rgb(245,98,39)" fg:x="148897" fg:w="172"/><text x="50.5546%" y="655.50"></text></g><g><title>native_write_msr (171 samples, 0.06%)</title><rect x="50.3049%" y="629" width="0.0578%" height="15" fill="rgb(234,135,48)" fg:x="148898" fg:w="171"/><text x="50.5549%" y="639.50"></text></g><g><title>finish_task_switch (194 samples, 0.07%)</title><rect x="50.3009%" y="677" width="0.0655%" height="15" fill="rgb(230,98,28)" fg:x="148886" fg:w="194"/><text x="50.5509%" y="687.50"></text></g><g><title>schedule (197 samples, 0.07%)</title><rect x="50.3002%" y="709" width="0.0666%" height="15" fill="rgb(223,121,0)" fg:x="148884" fg:w="197"/><text x="50.5502%" y="719.50"></text></g><g><title>__schedule (196 samples, 0.07%)</title><rect x="50.3005%" y="693" width="0.0662%" height="15" fill="rgb(234,173,33)" fg:x="148885" fg:w="196"/><text x="50.5505%" y="703.50"></text></g><g><title>WaitChild (221 samples, 0.07%)</title><rect x="50.2998%" y="805" width="0.0747%" height="15" fill="rgb(245,47,8)" fg:x="148883" fg:w="221"/><text x="50.5498%" y="815.50"></text></g><g><title>__GI___wait4 (221 samples, 0.07%)</title><rect x="50.2998%" y="789" width="0.0747%" height="15" fill="rgb(205,17,20)" fg:x="148883" fg:w="221"/><text x="50.5498%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (221 samples, 0.07%)</title><rect x="50.2998%" y="773" width="0.0747%" height="15" fill="rgb(232,151,16)" fg:x="148883" fg:w="221"/><text x="50.5498%" y="783.50"></text></g><g><title>do_syscall_64 (221 samples, 0.07%)</title><rect x="50.2998%" y="757" width="0.0747%" height="15" fill="rgb(208,30,32)" fg:x="148883" fg:w="221"/><text x="50.5498%" y="767.50"></text></g><g><title>kernel_wait4 (221 samples, 0.07%)</title><rect x="50.2998%" y="741" width="0.0747%" height="15" fill="rgb(254,26,3)" fg:x="148883" fg:w="221"/><text x="50.5498%" y="751.50"></text></g><g><title>do_wait (221 samples, 0.07%)</title><rect x="50.2998%" y="725" width="0.0747%" height="15" fill="rgb(240,177,30)" fg:x="148883" fg:w="221"/><text x="50.5498%" y="735.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (304 samples, 0.10%)</title><rect x="50.2944%" y="821" width="0.1027%" height="15" fill="rgb(248,76,44)" fg:x="148867" fg:w="304"/><text x="50.5444%" y="831.50"></text></g><g><title>__GI_exit (67 samples, 0.02%)</title><rect x="50.3745%" y="805" width="0.0226%" height="15" fill="rgb(241,186,54)" fg:x="149104" fg:w="67"/><text x="50.6245%" y="815.50"></text></g><g><title>__run_exit_handlers (67 samples, 0.02%)</title><rect x="50.3745%" y="789" width="0.0226%" height="15" fill="rgb(249,171,29)" fg:x="149104" fg:w="67"/><text x="50.6245%" y="799.50"></text></g><g><title>std::ios_base::Init::~Init (31 samples, 0.01%)</title><rect x="50.3867%" y="773" width="0.0105%" height="15" fill="rgb(237,151,44)" fg:x="149140" fg:w="31"/><text x="50.6367%" y="783.50"></text></g><g><title>__libc_start_main (1,030 samples, 0.35%)</title><rect x="50.0522%" y="853" width="0.3480%" height="15" fill="rgb(228,174,30)" fg:x="148150" fg:w="1030"/><text x="50.3022%" y="863.50"></text></g><g><title>main (983 samples, 0.33%)</title><rect x="50.0681%" y="837" width="0.3321%" height="15" fill="rgb(252,14,37)" fg:x="148197" fg:w="983"/><text x="50.3181%" y="847.50"></text></g><g><title>__do_munmap (34 samples, 0.01%)</title><rect x="50.4177%" y="565" width="0.0115%" height="15" fill="rgb(207,111,40)" fg:x="149232" fg:w="34"/><text x="50.6677%" y="575.50"></text></g><g><title>do_mmap (67 samples, 0.02%)</title><rect x="50.4167%" y="597" width="0.0226%" height="15" fill="rgb(248,171,54)" fg:x="149229" fg:w="67"/><text x="50.6667%" y="607.50"></text></g><g><title>mmap_region (65 samples, 0.02%)</title><rect x="50.4174%" y="581" width="0.0220%" height="15" fill="rgb(211,127,2)" fg:x="149231" fg:w="65"/><text x="50.6674%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (72 samples, 0.02%)</title><rect x="50.4157%" y="629" width="0.0243%" height="15" fill="rgb(236,87,47)" fg:x="149226" fg:w="72"/><text x="50.6657%" y="639.50"></text></g><g><title>vm_mmap_pgoff (69 samples, 0.02%)</title><rect x="50.4167%" y="613" width="0.0233%" height="15" fill="rgb(223,190,45)" fg:x="149229" fg:w="69"/><text x="50.6667%" y="623.50"></text></g><g><title>_dl_map_segments (87 samples, 0.03%)</title><rect x="50.4127%" y="709" width="0.0294%" height="15" fill="rgb(215,5,16)" fg:x="149217" fg:w="87"/><text x="50.6627%" y="719.50"></text></g><g><title>__mmap64 (79 samples, 0.03%)</title><rect x="50.4154%" y="693" width="0.0267%" height="15" fill="rgb(252,82,33)" fg:x="149225" fg:w="79"/><text x="50.6654%" y="703.50"></text></g><g><title>__mmap64 (79 samples, 0.03%)</title><rect x="50.4154%" y="677" width="0.0267%" height="15" fill="rgb(247,213,44)" fg:x="149225" fg:w="79"/><text x="50.6654%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.03%)</title><rect x="50.4157%" y="661" width="0.0264%" height="15" fill="rgb(205,196,44)" fg:x="149226" fg:w="78"/><text x="50.6657%" y="671.50"></text></g><g><title>do_syscall_64 (78 samples, 0.03%)</title><rect x="50.4157%" y="645" width="0.0264%" height="15" fill="rgb(237,96,54)" fg:x="149226" fg:w="78"/><text x="50.6657%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (121 samples, 0.04%)</title><rect x="50.4103%" y="725" width="0.0409%" height="15" fill="rgb(230,113,34)" fg:x="149210" fg:w="121"/><text x="50.6603%" y="735.50"></text></g><g><title>_dl_catch_exception (161 samples, 0.05%)</title><rect x="50.4042%" y="773" width="0.0544%" height="15" fill="rgb(221,224,12)" fg:x="149192" fg:w="161"/><text x="50.6542%" y="783.50"></text></g><g><title>openaux (160 samples, 0.05%)</title><rect x="50.4046%" y="757" width="0.0541%" height="15" fill="rgb(219,112,44)" fg:x="149193" fg:w="160"/><text x="50.6546%" y="767.50"></text></g><g><title>_dl_map_object (160 samples, 0.05%)</title><rect x="50.4046%" y="741" width="0.0541%" height="15" fill="rgb(210,31,13)" fg:x="149193" fg:w="160"/><text x="50.6546%" y="751.50"></text></g><g><title>_dl_map_object_deps (168 samples, 0.06%)</title><rect x="50.4042%" y="789" width="0.0568%" height="15" fill="rgb(230,25,16)" fg:x="149192" fg:w="168"/><text x="50.6542%" y="799.50"></text></g><g><title>dl_new_hash (78 samples, 0.03%)</title><rect x="50.5036%" y="725" width="0.0264%" height="15" fill="rgb(246,108,53)" fg:x="149486" fg:w="78"/><text x="50.7536%" y="735.50"></text></g><g><title>check_match (43 samples, 0.01%)</title><rect x="50.5752%" y="709" width="0.0145%" height="15" fill="rgb(241,172,50)" fg:x="149698" fg:w="43"/><text x="50.8252%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (278 samples, 0.09%)</title><rect x="50.4988%" y="741" width="0.0939%" height="15" fill="rgb(235,141,10)" fg:x="149472" fg:w="278"/><text x="50.7488%" y="751.50"></text></g><g><title>do_lookup_x (186 samples, 0.06%)</title><rect x="50.5299%" y="725" width="0.0628%" height="15" fill="rgb(220,174,43)" fg:x="149564" fg:w="186"/><text x="50.7799%" y="735.50"></text></g><g><title>elf_machine_rela (345 samples, 0.12%)</title><rect x="50.4779%" y="757" width="0.1166%" height="15" fill="rgb(215,181,40)" fg:x="149410" fg:w="345"/><text x="50.7279%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (384 samples, 0.13%)</title><rect x="50.4694%" y="773" width="0.1297%" height="15" fill="rgb(230,97,2)" fg:x="149385" fg:w="384"/><text x="50.7194%" y="783.50"></text></g><g><title>_dl_relocate_object (406 samples, 0.14%)</title><rect x="50.4627%" y="789" width="0.1372%" height="15" fill="rgb(211,25,27)" fg:x="149365" fg:w="406"/><text x="50.7127%" y="799.50"></text></g><g><title>[ld-2.31.so] (602 samples, 0.20%)</title><rect x="50.4005%" y="805" width="0.2034%" height="15" fill="rgb(230,87,26)" fg:x="149181" fg:w="602"/><text x="50.6505%" y="815.50"></text></g><g><title>_dl_start_final (611 samples, 0.21%)</title><rect x="50.4002%" y="837" width="0.2064%" height="15" fill="rgb(227,160,17)" fg:x="149180" fg:w="611"/><text x="50.6502%" y="847.50"></text></g><g><title>_dl_sysdep_start (610 samples, 0.21%)</title><rect x="50.4005%" y="821" width="0.2061%" height="15" fill="rgb(244,85,34)" fg:x="149181" fg:w="610"/><text x="50.6505%" y="831.50"></text></g><g><title>_dl_start (629 samples, 0.21%)</title><rect x="50.4002%" y="853" width="0.2125%" height="15" fill="rgb(207,70,0)" fg:x="149180" fg:w="629"/><text x="50.6502%" y="863.50"></text></g><g><title>_start (1,683 samples, 0.57%)</title><rect x="50.0519%" y="869" width="0.5686%" height="15" fill="rgb(223,129,7)" fg:x="148149" fg:w="1683"/><text x="50.3019%" y="879.50"></text></g><g><title>asm_exc_page_fault (39 samples, 0.01%)</title><rect x="50.6205%" y="869" width="0.0132%" height="15" fill="rgb(246,105,7)" fg:x="149832" fg:w="39"/><text x="50.8705%" y="879.50"></text></g><g><title>mmput (40 samples, 0.01%)</title><rect x="50.6363%" y="757" width="0.0135%" height="15" fill="rgb(215,154,42)" fg:x="149879" fg:w="40"/><text x="50.8863%" y="767.50"></text></g><g><title>exit_mmap (40 samples, 0.01%)</title><rect x="50.6363%" y="741" width="0.0135%" height="15" fill="rgb(220,215,30)" fg:x="149879" fg:w="40"/><text x="50.8863%" y="751.50"></text></g><g><title>begin_new_exec (49 samples, 0.02%)</title><rect x="50.6353%" y="773" width="0.0166%" height="15" fill="rgb(228,81,51)" fg:x="149876" fg:w="49"/><text x="50.8853%" y="783.50"></text></g><g><title>load_elf_binary (89 samples, 0.03%)</title><rect x="50.6336%" y="789" width="0.0301%" height="15" fill="rgb(247,71,54)" fg:x="149871" fg:w="89"/><text x="50.8836%" y="799.50"></text></g><g><title>__x64_sys_execve (90 samples, 0.03%)</title><rect x="50.6336%" y="837" width="0.0304%" height="15" fill="rgb(234,176,34)" fg:x="149871" fg:w="90"/><text x="50.8836%" y="847.50"></text></g><g><title>do_execveat_common (90 samples, 0.03%)</title><rect x="50.6336%" y="821" width="0.0304%" height="15" fill="rgb(241,103,54)" fg:x="149871" fg:w="90"/><text x="50.8836%" y="831.50"></text></g><g><title>bprm_execve (90 samples, 0.03%)</title><rect x="50.6336%" y="805" width="0.0304%" height="15" fill="rgb(228,22,34)" fg:x="149871" fg:w="90"/><text x="50.8836%" y="815.50"></text></g><g><title>mmput (102 samples, 0.03%)</title><rect x="50.6644%" y="789" width="0.0345%" height="15" fill="rgb(241,179,48)" fg:x="149962" fg:w="102"/><text x="50.9144%" y="799.50"></text></g><g><title>exit_mmap (102 samples, 0.03%)</title><rect x="50.6644%" y="773" width="0.0345%" height="15" fill="rgb(235,167,37)" fg:x="149962" fg:w="102"/><text x="50.9144%" y="783.50"></text></g><g><title>unmap_vmas (60 samples, 0.02%)</title><rect x="50.6786%" y="757" width="0.0203%" height="15" fill="rgb(213,109,30)" fg:x="150004" fg:w="60"/><text x="50.9286%" y="767.50"></text></g><g><title>unmap_page_range (60 samples, 0.02%)</title><rect x="50.6786%" y="741" width="0.0203%" height="15" fill="rgb(222,172,16)" fg:x="150004" fg:w="60"/><text x="50.9286%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (206 samples, 0.07%)</title><rect x="50.6336%" y="869" width="0.0696%" height="15" fill="rgb(233,192,5)" fg:x="149871" fg:w="206"/><text x="50.8836%" y="879.50"></text></g><g><title>do_syscall_64 (206 samples, 0.07%)</title><rect x="50.6336%" y="853" width="0.0696%" height="15" fill="rgb(247,189,41)" fg:x="149871" fg:w="206"/><text x="50.8836%" y="863.50"></text></g><g><title>__x64_sys_exit_group (116 samples, 0.04%)</title><rect x="50.6640%" y="837" width="0.0392%" height="15" fill="rgb(218,134,47)" fg:x="149961" fg:w="116"/><text x="50.9140%" y="847.50"></text></g><g><title>do_group_exit (116 samples, 0.04%)</title><rect x="50.6640%" y="821" width="0.0392%" height="15" fill="rgb(216,29,3)" fg:x="149961" fg:w="116"/><text x="50.9140%" y="831.50"></text></g><g><title>do_exit (116 samples, 0.04%)</title><rect x="50.6640%" y="805" width="0.0392%" height="15" fill="rgb(246,140,12)" fg:x="149961" fg:w="116"/><text x="50.9140%" y="815.50"></text></g><g><title>process-wrapper (2,041 samples, 0.69%)</title><rect x="50.0150%" y="885" width="0.6895%" height="15" fill="rgb(230,136,11)" fg:x="148040" fg:w="2041"/><text x="50.2650%" y="895.50"></text></g><g><title>ObjectMonitor::enter (33 samples, 0.01%)</title><rect x="50.7303%" y="837" width="0.0111%" height="15" fill="rgb(247,22,47)" fg:x="150157" fg:w="33"/><text x="50.9803%" y="847.50"></text></g><g><title>InterpreterRuntime::monitorenter (53 samples, 0.02%)</title><rect x="50.7296%" y="853" width="0.0179%" height="15" fill="rgb(218,84,22)" fg:x="150155" fg:w="53"/><text x="50.9796%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (262 samples, 0.09%)</title><rect x="50.7897%" y="709" width="0.0885%" height="15" fill="rgb(216,87,39)" fg:x="150333" fg:w="262"/><text x="51.0397%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (255 samples, 0.09%)</title><rect x="50.7921%" y="693" width="0.0862%" height="15" fill="rgb(221,178,8)" fg:x="150340" fg:w="255"/><text x="51.0421%" y="703.50"></text></g><g><title>native_write_msr (253 samples, 0.09%)</title><rect x="50.7928%" y="677" width="0.0855%" height="15" fill="rgb(230,42,11)" fg:x="150342" fg:w="253"/><text x="51.0428%" y="687.50"></text></g><g><title>finish_task_switch (299 samples, 0.10%)</title><rect x="50.7843%" y="725" width="0.1010%" height="15" fill="rgb(237,229,4)" fg:x="150317" fg:w="299"/><text x="51.0343%" y="735.50"></text></g><g><title>schedule (306 samples, 0.10%)</title><rect x="50.7830%" y="757" width="0.1034%" height="15" fill="rgb(222,31,33)" fg:x="150313" fg:w="306"/><text x="51.0330%" y="767.50"></text></g><g><title>__schedule (306 samples, 0.10%)</title><rect x="50.7830%" y="741" width="0.1034%" height="15" fill="rgb(210,17,39)" fg:x="150313" fg:w="306"/><text x="51.0330%" y="751.50"></text></g><g><title>d_invalidate (37 samples, 0.01%)</title><rect x="50.8904%" y="709" width="0.0125%" height="15" fill="rgb(244,93,20)" fg:x="150631" fg:w="37"/><text x="51.1404%" y="719.50"></text></g><g><title>shrink_dcache_parent (35 samples, 0.01%)</title><rect x="50.8911%" y="693" width="0.0118%" height="15" fill="rgb(210,40,47)" fg:x="150633" fg:w="35"/><text x="51.1411%" y="703.50"></text></g><g><title>proc_invalidate_siblings_dcache (41 samples, 0.01%)</title><rect x="50.8897%" y="725" width="0.0139%" height="15" fill="rgb(239,211,47)" fg:x="150629" fg:w="41"/><text x="51.1397%" y="735.50"></text></g><g><title>release_task (47 samples, 0.02%)</title><rect x="50.8880%" y="741" width="0.0159%" height="15" fill="rgb(251,223,49)" fg:x="150624" fg:w="47"/><text x="51.1380%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (437 samples, 0.15%)</title><rect x="50.7566%" y="821" width="0.1476%" height="15" fill="rgb(221,149,5)" fg:x="150235" fg:w="437"/><text x="51.0066%" y="831.50"></text></g><g><title>do_syscall_64 (437 samples, 0.15%)</title><rect x="50.7566%" y="805" width="0.1476%" height="15" fill="rgb(219,224,51)" fg:x="150235" fg:w="437"/><text x="51.0066%" y="815.50"></text></g><g><title>kernel_wait4 (437 samples, 0.15%)</title><rect x="50.7566%" y="789" width="0.1476%" height="15" fill="rgb(223,7,8)" fg:x="150235" fg:w="437"/><text x="51.0066%" y="799.50"></text></g><g><title>do_wait (435 samples, 0.15%)</title><rect x="50.7573%" y="773" width="0.1470%" height="15" fill="rgb(241,217,22)" fg:x="150237" fg:w="435"/><text x="51.0073%" y="783.50"></text></g><g><title>wait_consider_task (53 samples, 0.02%)</title><rect x="50.8863%" y="757" width="0.0179%" height="15" fill="rgb(248,209,0)" fg:x="150619" fg:w="53"/><text x="51.1363%" y="767.50"></text></g><g><title>__GI___wait4 (438 samples, 0.15%)</title><rect x="50.7566%" y="837" width="0.1480%" height="15" fill="rgb(217,205,4)" fg:x="150235" fg:w="438"/><text x="51.0066%" y="847.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (440 samples, 0.15%)</title><rect x="50.7563%" y="853" width="0.1487%" height="15" fill="rgb(228,124,39)" fg:x="150234" fg:w="440"/><text x="51.0063%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.02%)</title><rect x="50.9137%" y="629" width="0.0216%" height="15" fill="rgb(250,116,42)" fg:x="150700" fg:w="64"/><text x="51.1637%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.02%)</title><rect x="50.9144%" y="613" width="0.0209%" height="15" fill="rgb(223,202,9)" fg:x="150702" fg:w="62"/><text x="51.1644%" y="623.50"></text></g><g><title>native_write_msr (61 samples, 0.02%)</title><rect x="50.9147%" y="597" width="0.0206%" height="15" fill="rgb(242,222,40)" fg:x="150703" fg:w="61"/><text x="51.1647%" y="607.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.02%)</title><rect x="50.9117%" y="693" width="0.0243%" height="15" fill="rgb(229,99,46)" fg:x="150694" fg:w="72"/><text x="51.1617%" y="703.50"></text></g><g><title>schedule (71 samples, 0.02%)</title><rect x="50.9120%" y="677" width="0.0240%" height="15" fill="rgb(225,56,46)" fg:x="150695" fg:w="71"/><text x="51.1620%" y="687.50"></text></g><g><title>__schedule (70 samples, 0.02%)</title><rect x="50.9124%" y="661" width="0.0236%" height="15" fill="rgb(227,94,5)" fg:x="150696" fg:w="70"/><text x="51.1624%" y="671.50"></text></g><g><title>finish_task_switch (69 samples, 0.02%)</title><rect x="50.9127%" y="645" width="0.0233%" height="15" fill="rgb(205,112,38)" fg:x="150697" fg:w="69"/><text x="51.1627%" y="655.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="50.9117%" y="757" width="0.0247%" height="15" fill="rgb(231,133,46)" fg:x="150694" fg:w="73"/><text x="51.1617%" y="767.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.02%)</title><rect x="50.9117%" y="741" width="0.0247%" height="15" fill="rgb(217,16,9)" fg:x="150694" fg:w="73"/><text x="51.1617%" y="751.50"></text></g><g><title>do_futex (73 samples, 0.02%)</title><rect x="50.9117%" y="725" width="0.0247%" height="15" fill="rgb(249,173,9)" fg:x="150694" fg:w="73"/><text x="51.1617%" y="735.50"></text></g><g><title>futex_wait (73 samples, 0.02%)</title><rect x="50.9117%" y="709" width="0.0247%" height="15" fill="rgb(205,163,53)" fg:x="150694" fg:w="73"/><text x="51.1617%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (75 samples, 0.03%)</title><rect x="50.9113%" y="821" width="0.0253%" height="15" fill="rgb(217,54,41)" fg:x="150693" fg:w="75"/><text x="51.1613%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (75 samples, 0.03%)</title><rect x="50.9113%" y="805" width="0.0253%" height="15" fill="rgb(228,216,12)" fg:x="150693" fg:w="75"/><text x="51.1613%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (74 samples, 0.03%)</title><rect x="50.9117%" y="789" width="0.0250%" height="15" fill="rgb(244,228,15)" fg:x="150694" fg:w="74"/><text x="51.1617%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.03%)</title><rect x="50.9117%" y="773" width="0.0250%" height="15" fill="rgb(221,176,53)" fg:x="150694" fg:w="74"/><text x="51.1617%" y="783.50"></text></g><g><title>Unsafe_Park (91 samples, 0.03%)</title><rect x="50.9063%" y="853" width="0.0307%" height="15" fill="rgb(205,94,34)" fg:x="150678" fg:w="91"/><text x="51.1563%" y="863.50"></text></g><g><title>Parker::park (89 samples, 0.03%)</title><rect x="50.9070%" y="837" width="0.0301%" height="15" fill="rgb(213,110,48)" fg:x="150680" fg:w="89"/><text x="51.1570%" y="847.50"></text></g><g><title>[perf-12570.map] (686 samples, 0.23%)</title><rect x="50.7059%" y="869" width="0.2318%" height="15" fill="rgb(236,142,28)" fg:x="150085" fg:w="686"/><text x="50.9559%" y="879.50"></text></g><g><title>tlb_flush_mmu (34 samples, 0.01%)</title><rect x="50.9492%" y="693" width="0.0115%" height="15" fill="rgb(225,135,29)" fg:x="150805" fg:w="34"/><text x="51.1992%" y="703.50"></text></g><g><title>release_pages (34 samples, 0.01%)</title><rect x="50.9492%" y="677" width="0.0115%" height="15" fill="rgb(252,45,31)" fg:x="150805" fg:w="34"/><text x="51.1992%" y="687.50"></text></g><g><title>process_reaper (760 samples, 0.26%)</title><rect x="50.7046%" y="885" width="0.2568%" height="15" fill="rgb(211,187,50)" fg:x="150081" fg:w="760"/><text x="50.9546%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.02%)</title><rect x="50.9424%" y="869" width="0.0189%" height="15" fill="rgb(229,109,7)" fg:x="150785" fg:w="56"/><text x="51.1924%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (55 samples, 0.02%)</title><rect x="50.9428%" y="853" width="0.0186%" height="15" fill="rgb(251,131,51)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (55 samples, 0.02%)</title><rect x="50.9428%" y="837" width="0.0186%" height="15" fill="rgb(251,180,35)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="847.50"></text></g><g><title>arch_do_signal (55 samples, 0.02%)</title><rect x="50.9428%" y="821" width="0.0186%" height="15" fill="rgb(211,46,32)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="831.50"></text></g><g><title>get_signal (55 samples, 0.02%)</title><rect x="50.9428%" y="805" width="0.0186%" height="15" fill="rgb(248,123,17)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="815.50"></text></g><g><title>do_group_exit (55 samples, 0.02%)</title><rect x="50.9428%" y="789" width="0.0186%" height="15" fill="rgb(227,141,18)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="799.50"></text></g><g><title>do_exit (55 samples, 0.02%)</title><rect x="50.9428%" y="773" width="0.0186%" height="15" fill="rgb(216,102,9)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="783.50"></text></g><g><title>mmput (55 samples, 0.02%)</title><rect x="50.9428%" y="757" width="0.0186%" height="15" fill="rgb(253,47,13)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="767.50"></text></g><g><title>exit_mmap (55 samples, 0.02%)</title><rect x="50.9428%" y="741" width="0.0186%" height="15" fill="rgb(226,93,23)" fg:x="150786" fg:w="55"/><text x="51.1928%" y="751.50"></text></g><g><title>unmap_vmas (53 samples, 0.02%)</title><rect x="50.9434%" y="725" width="0.0179%" height="15" fill="rgb(247,104,17)" fg:x="150788" fg:w="53"/><text x="51.1934%" y="735.50"></text></g><g><title>unmap_page_range (53 samples, 0.02%)</title><rect x="50.9434%" y="709" width="0.0179%" height="15" fill="rgb(233,203,26)" fg:x="150788" fg:w="53"/><text x="51.1934%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (387 samples, 0.13%)</title><rect x="51.1154%" y="629" width="0.1307%" height="15" fill="rgb(244,98,49)" fg:x="151297" fg:w="387"/><text x="51.3654%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (381 samples, 0.13%)</title><rect x="51.1174%" y="613" width="0.1287%" height="15" fill="rgb(235,134,22)" fg:x="151303" fg:w="381"/><text x="51.3674%" y="623.50"></text></g><g><title>native_write_msr (379 samples, 0.13%)</title><rect x="51.1181%" y="597" width="0.1280%" height="15" fill="rgb(221,70,32)" fg:x="151305" fg:w="379"/><text x="51.3681%" y="607.50"></text></g><g><title>finish_task_switch (401 samples, 0.14%)</title><rect x="51.1130%" y="645" width="0.1355%" height="15" fill="rgb(238,15,50)" fg:x="151290" fg:w="401"/><text x="51.3630%" y="655.50"></text></g><g><title>futex_wait_queue_me (432 samples, 0.15%)</title><rect x="51.1066%" y="693" width="0.1460%" height="15" fill="rgb(215,221,48)" fg:x="151271" fg:w="432"/><text x="51.3566%" y="703.50"></text></g><g><title>schedule (430 samples, 0.15%)</title><rect x="51.1073%" y="677" width="0.1453%" height="15" fill="rgb(236,73,3)" fg:x="151273" fg:w="430"/><text x="51.3573%" y="687.50"></text></g><g><title>__schedule (426 samples, 0.14%)</title><rect x="51.1086%" y="661" width="0.1439%" height="15" fill="rgb(250,107,11)" fg:x="151277" fg:w="426"/><text x="51.3586%" y="671.50"></text></g><g><title>__x64_sys_futex (442 samples, 0.15%)</title><rect x="51.1036%" y="741" width="0.1493%" height="15" fill="rgb(242,39,14)" fg:x="151262" fg:w="442"/><text x="51.3536%" y="751.50"></text></g><g><title>do_futex (442 samples, 0.15%)</title><rect x="51.1036%" y="725" width="0.1493%" height="15" fill="rgb(248,164,37)" fg:x="151262" fg:w="442"/><text x="51.3536%" y="735.50"></text></g><g><title>futex_wait (437 samples, 0.15%)</title><rect x="51.1053%" y="709" width="0.1476%" height="15" fill="rgb(217,60,12)" fg:x="151267" fg:w="437"/><text x="51.3553%" y="719.50"></text></g><g><title>do_syscall_64 (443 samples, 0.15%)</title><rect x="51.1036%" y="757" width="0.1497%" height="15" fill="rgb(240,125,29)" fg:x="151262" fg:w="443"/><text x="51.3536%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (453 samples, 0.15%)</title><rect x="51.1036%" y="773" width="0.1530%" height="15" fill="rgb(208,207,28)" fg:x="151262" fg:w="453"/><text x="51.3536%" y="783.50"></text></g><g><title>__pthread_cond_wait (470 samples, 0.16%)</title><rect x="51.0982%" y="821" width="0.1588%" height="15" fill="rgb(209,159,27)" fg:x="151246" fg:w="470"/><text x="51.3482%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (470 samples, 0.16%)</title><rect x="51.0982%" y="805" width="0.1588%" height="15" fill="rgb(251,176,53)" fg:x="151246" fg:w="470"/><text x="51.3482%" y="815.50"></text></g><g><title>futex_wait_cancelable (463 samples, 0.16%)</title><rect x="51.1005%" y="789" width="0.1564%" height="15" fill="rgb(211,85,7)" fg:x="151253" fg:w="463"/><text x="51.3505%" y="799.50"></text></g><g><title>Parker::park (495 samples, 0.17%)</title><rect x="51.0928%" y="837" width="0.1672%" height="15" fill="rgb(216,64,54)" fg:x="151230" fg:w="495"/><text x="51.3428%" y="847.50"></text></g><g><title>Unsafe_Park (502 samples, 0.17%)</title><rect x="51.0907%" y="853" width="0.1696%" height="15" fill="rgb(217,54,24)" fg:x="151224" fg:w="502"/><text x="51.3407%" y="863.50"></text></g><g><title>[perf-12570.map] (875 samples, 0.30%)</title><rect x="50.9657%" y="869" width="0.2956%" height="15" fill="rgb(208,206,53)" fg:x="150854" fg:w="875"/><text x="51.2157%" y="879.50"></text></g><g><title>profile-writer- (913 samples, 0.31%)</title><rect x="50.9613%" y="885" width="0.3085%" height="15" fill="rgb(251,74,39)" fg:x="150841" fg:w="913"/><text x="51.2113%" y="895.50"></text></g><g><title>[python3.9] (76 samples, 0.03%)</title><rect x="51.2941%" y="853" width="0.0257%" height="15" fill="rgb(226,47,5)" fg:x="151826" fg:w="76"/><text x="51.5441%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (104 samples, 0.04%)</title><rect x="51.3218%" y="853" width="0.0351%" height="15" fill="rgb(234,111,33)" fg:x="151908" fg:w="104"/><text x="51.5718%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="51.3347%" y="837" width="0.0223%" height="15" fill="rgb(251,14,10)" fg:x="151946" fg:w="66"/><text x="51.5847%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (57 samples, 0.02%)</title><rect x="51.3377%" y="821" width="0.0193%" height="15" fill="rgb(232,43,0)" fg:x="151955" fg:w="57"/><text x="51.5877%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (56 samples, 0.02%)</title><rect x="51.3380%" y="805" width="0.0189%" height="15" fill="rgb(222,68,43)" fg:x="151956" fg:w="56"/><text x="51.5880%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (51 samples, 0.02%)</title><rect x="51.3397%" y="789" width="0.0172%" height="15" fill="rgb(217,24,23)" fg:x="151961" fg:w="51"/><text x="51.5897%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (50 samples, 0.02%)</title><rect x="51.3401%" y="773" width="0.0169%" height="15" fill="rgb(229,209,14)" fg:x="151962" fg:w="50"/><text x="51.5901%" y="783.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (30 samples, 0.01%)</title><rect x="51.3668%" y="853" width="0.0101%" height="15" fill="rgb(250,149,48)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="863.50"></text></g><g><title>[python3.9] (30 samples, 0.01%)</title><rect x="51.3668%" y="837" width="0.0101%" height="15" fill="rgb(210,120,37)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="51.3668%" y="821" width="0.0101%" height="15" fill="rgb(210,21,8)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="51.3668%" y="805" width="0.0101%" height="15" fill="rgb(243,145,7)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="51.3668%" y="789" width="0.0101%" height="15" fill="rgb(238,178,32)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="51.3668%" y="773" width="0.0101%" height="15" fill="rgb(222,4,10)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="51.3668%" y="757" width="0.0101%" height="15" fill="rgb(239,7,37)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="51.3668%" y="741" width="0.0101%" height="15" fill="rgb(215,31,37)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="51.3668%" y="725" width="0.0101%" height="15" fill="rgb(224,83,33)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="51.3668%" y="709" width="0.0101%" height="15" fill="rgb(239,55,3)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="51.3668%" y="693" width="0.0101%" height="15" fill="rgb(247,92,11)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="703.50"></text></g><g><title>[python3.9] (30 samples, 0.01%)</title><rect x="51.3668%" y="677" width="0.0101%" height="15" fill="rgb(239,200,7)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="51.3668%" y="661" width="0.0101%" height="15" fill="rgb(227,115,8)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="671.50"></text></g><g><title>[python3.9] (30 samples, 0.01%)</title><rect x="51.3668%" y="645" width="0.0101%" height="15" fill="rgb(215,189,27)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="655.50"></text></g><g><title>[python3.9] (30 samples, 0.01%)</title><rect x="51.3668%" y="629" width="0.0101%" height="15" fill="rgb(251,216,39)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="639.50"></text></g><g><title>PyEval_EvalCode (30 samples, 0.01%)</title><rect x="51.3668%" y="613" width="0.0101%" height="15" fill="rgb(207,29,47)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (30 samples, 0.01%)</title><rect x="51.3668%" y="597" width="0.0101%" height="15" fill="rgb(210,71,34)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="607.50"></text></g><g><title>[python3.9] (30 samples, 0.01%)</title><rect x="51.3668%" y="581" width="0.0101%" height="15" fill="rgb(253,217,51)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="51.3668%" y="565" width="0.0101%" height="15" fill="rgb(222,117,46)" fg:x="152041" fg:w="30"/><text x="51.6168%" y="575.50"></text></g><g><title>[unknown] (301 samples, 0.10%)</title><rect x="51.2782%" y="869" width="0.1017%" height="15" fill="rgb(226,132,6)" fg:x="151779" fg:w="301"/><text x="51.5282%" y="879.50"></text></g><g><title>Py_RunMain (56 samples, 0.02%)</title><rect x="51.3803%" y="821" width="0.0189%" height="15" fill="rgb(254,145,51)" fg:x="152081" fg:w="56"/><text x="51.6303%" y="831.50"></text></g><g><title>Py_FinalizeEx (46 samples, 0.02%)</title><rect x="51.3837%" y="805" width="0.0155%" height="15" fill="rgb(231,199,27)" fg:x="152091" fg:w="46"/><text x="51.6337%" y="815.50"></text></g><g><title>Py_InitializeFromConfig (71 samples, 0.02%)</title><rect x="51.3992%" y="789" width="0.0240%" height="15" fill="rgb(245,158,14)" fg:x="152137" fg:w="71"/><text x="51.6492%" y="799.50"></text></g><g><title>[python3.9] (71 samples, 0.02%)</title><rect x="51.3992%" y="773" width="0.0240%" height="15" fill="rgb(240,113,14)" fg:x="152137" fg:w="71"/><text x="51.6492%" y="783.50"></text></g><g><title>[python3.9] (71 samples, 0.02%)</title><rect x="51.3992%" y="757" width="0.0240%" height="15" fill="rgb(210,20,13)" fg:x="152137" fg:w="71"/><text x="51.6492%" y="767.50"></text></g><g><title>Py_BytesMain (129 samples, 0.04%)</title><rect x="51.3803%" y="837" width="0.0436%" height="15" fill="rgb(241,144,13)" fg:x="152081" fg:w="129"/><text x="51.6303%" y="847.50"></text></g><g><title>[python3.9] (73 samples, 0.02%)</title><rect x="51.3992%" y="821" width="0.0247%" height="15" fill="rgb(235,43,34)" fg:x="152137" fg:w="73"/><text x="51.6492%" y="831.50"></text></g><g><title>[python3.9] (73 samples, 0.02%)</title><rect x="51.3992%" y="805" width="0.0247%" height="15" fill="rgb(208,36,20)" fg:x="152137" fg:w="73"/><text x="51.6492%" y="815.50"></text></g><g><title>__libc_start_main (130 samples, 0.04%)</title><rect x="51.3803%" y="853" width="0.0439%" height="15" fill="rgb(239,204,10)" fg:x="152081" fg:w="130"/><text x="51.6303%" y="863.50"></text></g><g><title>_start (135 samples, 0.05%)</title><rect x="51.3803%" y="869" width="0.0456%" height="15" fill="rgb(217,84,43)" fg:x="152081" fg:w="135"/><text x="51.6303%" y="879.50"></text></g><g><title>python3 (473 samples, 0.16%)</title><rect x="51.2718%" y="885" width="0.1598%" height="15" fill="rgb(241,170,50)" fg:x="151760" fg:w="473"/><text x="51.5218%" y="895.50"></text></g><g><title>__run_exit_handlers (35 samples, 0.01%)</title><rect x="51.4475%" y="853" width="0.0118%" height="15" fill="rgb(226,205,29)" fg:x="152280" fg:w="35"/><text x="51.6975%" y="863.50"></text></g><g><title>[[stack]] (99 samples, 0.03%)</title><rect x="51.4391%" y="869" width="0.0334%" height="15" fill="rgb(233,113,1)" fg:x="152255" fg:w="99"/><text x="51.6891%" y="879.50"></text></g><g><title>__GI___libc_malloc (34 samples, 0.01%)</title><rect x="51.5576%" y="725" width="0.0115%" height="15" fill="rgb(253,98,13)" fg:x="152606" fg:w="34"/><text x="51.8076%" y="735.50"></text></g><g><title>[sed] (85 samples, 0.03%)</title><rect x="51.5462%" y="741" width="0.0287%" height="15" fill="rgb(211,115,12)" fg:x="152572" fg:w="85"/><text x="51.7962%" y="751.50"></text></g><g><title>[sed] (165 samples, 0.06%)</title><rect x="51.5296%" y="757" width="0.0557%" height="15" fill="rgb(208,12,16)" fg:x="152523" fg:w="165"/><text x="51.7796%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (489 samples, 0.17%)</title><rect x="51.6215%" y="565" width="0.1652%" height="15" fill="rgb(237,193,54)" fg:x="152795" fg:w="489"/><text x="51.8715%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (484 samples, 0.16%)</title><rect x="51.6232%" y="549" width="0.1635%" height="15" fill="rgb(243,22,42)" fg:x="152800" fg:w="484"/><text x="51.8732%" y="559.50"></text></g><g><title>native_write_msr (483 samples, 0.16%)</title><rect x="51.6235%" y="533" width="0.1632%" height="15" fill="rgb(233,151,36)" fg:x="152801" fg:w="483"/><text x="51.8735%" y="543.50"></text></g><g><title>finish_task_switch (520 samples, 0.18%)</title><rect x="51.6161%" y="581" width="0.1757%" height="15" fill="rgb(237,57,45)" fg:x="152779" fg:w="520"/><text x="51.8661%" y="591.50"></text></g><g><title>schedule (541 samples, 0.18%)</title><rect x="51.6120%" y="613" width="0.1828%" height="15" fill="rgb(221,88,17)" fg:x="152767" fg:w="541"/><text x="51.8620%" y="623.50"></text></g><g><title>__schedule (538 samples, 0.18%)</title><rect x="51.6131%" y="597" width="0.1818%" height="15" fill="rgb(230,79,15)" fg:x="152770" fg:w="538"/><text x="51.8631%" y="607.50"></text></g><g><title>new_sync_read (580 samples, 0.20%)</title><rect x="51.6029%" y="645" width="0.1960%" height="15" fill="rgb(213,57,13)" fg:x="152740" fg:w="580"/><text x="51.8529%" y="655.50"></text></g><g><title>pipe_read (580 samples, 0.20%)</title><rect x="51.6029%" y="629" width="0.1960%" height="15" fill="rgb(222,116,39)" fg:x="152740" fg:w="580"/><text x="51.8529%" y="639.50"></text></g><g><title>do_syscall_64 (589 samples, 0.20%)</title><rect x="51.6006%" y="693" width="0.1990%" height="15" fill="rgb(245,107,2)" fg:x="152733" fg:w="589"/><text x="51.8506%" y="703.50"></text></g><g><title>ksys_read (589 samples, 0.20%)</title><rect x="51.6006%" y="677" width="0.1990%" height="15" fill="rgb(238,1,10)" fg:x="152733" fg:w="589"/><text x="51.8506%" y="687.50"></text></g><g><title>vfs_read (589 samples, 0.20%)</title><rect x="51.6006%" y="661" width="0.1990%" height="15" fill="rgb(249,4,48)" fg:x="152733" fg:w="589"/><text x="51.8506%" y="671.50"></text></g><g><title>_IO_new_file_underflow (631 samples, 0.21%)</title><rect x="51.5881%" y="741" width="0.2132%" height="15" fill="rgb(223,151,18)" fg:x="152696" fg:w="631"/><text x="51.8381%" y="751.50"></text></g><g><title>__GI___libc_read (598 samples, 0.20%)</title><rect x="51.5992%" y="725" width="0.2020%" height="15" fill="rgb(227,65,43)" fg:x="152729" fg:w="598"/><text x="51.8492%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (596 samples, 0.20%)</title><rect x="51.5999%" y="709" width="0.2014%" height="15" fill="rgb(218,40,45)" fg:x="152731" fg:w="596"/><text x="51.8499%" y="719.50"></text></g><g><title>_IO_getdelim (640 samples, 0.22%)</title><rect x="51.5854%" y="757" width="0.2162%" height="15" fill="rgb(252,121,31)" fg:x="152688" fg:w="640"/><text x="51.8354%" y="767.50"></text></g><g><title>[sed] (899 samples, 0.30%)</title><rect x="51.5242%" y="773" width="0.3037%" height="15" fill="rgb(219,158,43)" fg:x="152507" fg:w="899"/><text x="51.7742%" y="783.50"></text></g><g><title>[sed] (958 samples, 0.32%)</title><rect x="51.5147%" y="789" width="0.3237%" height="15" fill="rgb(231,162,42)" fg:x="152479" fg:w="958"/><text x="51.7647%" y="799.50"></text></g><g><title>__wake_up_common_lock (43 samples, 0.01%)</title><rect x="51.8445%" y="581" width="0.0145%" height="15" fill="rgb(217,179,25)" fg:x="153455" fg:w="43"/><text x="52.0945%" y="591.50"></text></g><g><title>__wake_up_common (43 samples, 0.01%)</title><rect x="51.8445%" y="565" width="0.0145%" height="15" fill="rgb(206,212,31)" fg:x="153455" fg:w="43"/><text x="52.0945%" y="575.50"></text></g><g><title>autoremove_wake_function (41 samples, 0.01%)</title><rect x="51.8452%" y="549" width="0.0139%" height="15" fill="rgb(235,144,12)" fg:x="153457" fg:w="41"/><text x="52.0952%" y="559.50"></text></g><g><title>try_to_wake_up (40 samples, 0.01%)</title><rect x="51.8455%" y="533" width="0.0135%" height="15" fill="rgb(213,51,10)" fg:x="153458" fg:w="40"/><text x="52.0955%" y="543.50"></text></g><g><title>new_sync_write (57 samples, 0.02%)</title><rect x="51.8414%" y="613" width="0.0193%" height="15" fill="rgb(231,145,14)" fg:x="153446" fg:w="57"/><text x="52.0914%" y="623.50"></text></g><g><title>pipe_write (57 samples, 0.02%)</title><rect x="51.8414%" y="597" width="0.0193%" height="15" fill="rgb(235,15,28)" fg:x="153446" fg:w="57"/><text x="52.0914%" y="607.50"></text></g><g><title>do_syscall_64 (66 samples, 0.02%)</title><rect x="51.8398%" y="661" width="0.0223%" height="15" fill="rgb(237,206,10)" fg:x="153441" fg:w="66"/><text x="52.0898%" y="671.50"></text></g><g><title>ksys_write (65 samples, 0.02%)</title><rect x="51.8401%" y="645" width="0.0220%" height="15" fill="rgb(236,227,27)" fg:x="153442" fg:w="65"/><text x="52.0901%" y="655.50"></text></g><g><title>vfs_write (63 samples, 0.02%)</title><rect x="51.8408%" y="629" width="0.0213%" height="15" fill="rgb(246,83,35)" fg:x="153444" fg:w="63"/><text x="52.0908%" y="639.50"></text></g><g><title>__GI___fflush_unlocked (94 samples, 0.03%)</title><rect x="51.8384%" y="789" width="0.0318%" height="15" fill="rgb(220,136,24)" fg:x="153437" fg:w="94"/><text x="52.0884%" y="799.50"></text></g><g><title>_IO_new_file_sync (94 samples, 0.03%)</title><rect x="51.8384%" y="773" width="0.0318%" height="15" fill="rgb(217,3,25)" fg:x="153437" fg:w="94"/><text x="52.0884%" y="783.50"></text></g><g><title>_IO_new_do_write (93 samples, 0.03%)</title><rect x="51.8387%" y="757" width="0.0314%" height="15" fill="rgb(239,24,14)" fg:x="153438" fg:w="93"/><text x="52.0887%" y="767.50"></text></g><g><title>_IO_new_do_write (93 samples, 0.03%)</title><rect x="51.8387%" y="741" width="0.0314%" height="15" fill="rgb(244,16,53)" fg:x="153438" fg:w="93"/><text x="52.0887%" y="751.50"></text></g><g><title>new_do_write (93 samples, 0.03%)</title><rect x="51.8387%" y="725" width="0.0314%" height="15" fill="rgb(208,175,44)" fg:x="153438" fg:w="93"/><text x="52.0887%" y="735.50"></text></g><g><title>_IO_new_file_write (92 samples, 0.03%)</title><rect x="51.8391%" y="709" width="0.0311%" height="15" fill="rgb(252,18,48)" fg:x="153439" fg:w="92"/><text x="52.0891%" y="719.50"></text></g><g><title>__GI___libc_write (90 samples, 0.03%)</title><rect x="51.8398%" y="693" width="0.0304%" height="15" fill="rgb(234,199,32)" fg:x="153441" fg:w="90"/><text x="52.0898%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.03%)</title><rect x="51.8398%" y="677" width="0.0304%" height="15" fill="rgb(225,77,54)" fg:x="153441" fg:w="90"/><text x="52.0898%" y="687.50"></text></g><g><title>__gconv_transform_ascii_internal (33 samples, 0.01%)</title><rect x="51.8779%" y="773" width="0.0111%" height="15" fill="rgb(225,42,25)" fg:x="153554" fg:w="33"/><text x="52.1279%" y="783.50"></text></g><g><title>__GI___mbrtowc (60 samples, 0.02%)</title><rect x="51.8702%" y="789" width="0.0203%" height="15" fill="rgb(242,227,46)" fg:x="153531" fg:w="60"/><text x="52.1202%" y="799.50"></text></g><g><title>_dl_runtime_resolve_xsavec (31 samples, 0.01%)</title><rect x="51.8918%" y="789" width="0.0105%" height="15" fill="rgb(246,197,35)" fg:x="153595" fg:w="31"/><text x="52.1418%" y="799.50"></text></g><g><title>[sed] (1,176 samples, 0.40%)</title><rect x="51.5060%" y="805" width="0.3973%" height="15" fill="rgb(215,159,26)" fg:x="152453" fg:w="1176"/><text x="51.7560%" y="815.50"></text></g><g><title>[sed] (1,217 samples, 0.41%)</title><rect x="51.5033%" y="821" width="0.4112%" height="15" fill="rgb(212,194,50)" fg:x="152445" fg:w="1217"/><text x="51.7533%" y="831.50"></text></g><g><title>__GI_setlocale (38 samples, 0.01%)</title><rect x="51.9178%" y="821" width="0.0128%" height="15" fill="rgb(246,132,1)" fg:x="153672" fg:w="38"/><text x="52.1678%" y="831.50"></text></g><g><title>[sed] (1,325 samples, 0.45%)</title><rect x="51.5016%" y="837" width="0.4476%" height="15" fill="rgb(217,71,7)" fg:x="152440" fg:w="1325"/><text x="51.7516%" y="847.50"></text></g><g><title>__GI__exit (33 samples, 0.01%)</title><rect x="51.9560%" y="805" width="0.0111%" height="15" fill="rgb(252,59,32)" fg:x="153785" fg:w="33"/><text x="52.2060%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="51.9570%" y="789" width="0.0101%" height="15" fill="rgb(253,204,25)" fg:x="153788" fg:w="30"/><text x="52.2070%" y="799.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="51.9570%" y="773" width="0.0101%" height="15" fill="rgb(232,21,16)" fg:x="153788" fg:w="30"/><text x="52.2070%" y="783.50"></text></g><g><title>__x64_sys_exit_group (30 samples, 0.01%)</title><rect x="51.9570%" y="757" width="0.0101%" height="15" fill="rgb(248,90,29)" fg:x="153788" fg:w="30"/><text x="52.2070%" y="767.50"></text></g><g><title>do_group_exit (30 samples, 0.01%)</title><rect x="51.9570%" y="741" width="0.0101%" height="15" fill="rgb(249,223,7)" fg:x="153788" fg:w="30"/><text x="52.2070%" y="751.50"></text></g><g><title>[libselinux.so.1] (31 samples, 0.01%)</title><rect x="51.9722%" y="789" width="0.0105%" height="15" fill="rgb(231,119,42)" fg:x="153833" fg:w="31"/><text x="52.2222%" y="799.50"></text></g><g><title>__libc_start_main (1,442 samples, 0.49%)</title><rect x="51.5016%" y="853" width="0.4872%" height="15" fill="rgb(215,41,35)" fg:x="152440" fg:w="1442"/><text x="51.7516%" y="863.50"></text></g><g><title>__GI_exit (101 samples, 0.03%)</title><rect x="51.9546%" y="837" width="0.0341%" height="15" fill="rgb(220,44,45)" fg:x="153781" fg:w="101"/><text x="52.2046%" y="847.50"></text></g><g><title>__run_exit_handlers (101 samples, 0.03%)</title><rect x="51.9546%" y="821" width="0.0341%" height="15" fill="rgb(253,197,36)" fg:x="153781" fg:w="101"/><text x="52.2046%" y="831.50"></text></g><g><title>_dl_fini (64 samples, 0.02%)</title><rect x="51.9671%" y="805" width="0.0216%" height="15" fill="rgb(245,225,54)" fg:x="153818" fg:w="64"/><text x="52.2171%" y="815.50"></text></g><g><title>[sed] (1,468 samples, 0.50%)</title><rect x="51.4985%" y="869" width="0.4960%" height="15" fill="rgb(239,94,37)" fg:x="152431" fg:w="1468"/><text x="51.7485%" y="879.50"></text></g><g><title>[unknown] (99 samples, 0.03%)</title><rect x="51.9945%" y="869" width="0.0334%" height="15" fill="rgb(242,217,10)" fg:x="153899" fg:w="99"/><text x="52.2445%" y="879.50"></text></g><g><title>filename_lookup (34 samples, 0.01%)</title><rect x="52.0350%" y="693" width="0.0115%" height="15" fill="rgb(250,193,7)" fg:x="154019" fg:w="34"/><text x="52.2850%" y="703.50"></text></g><g><title>path_lookupat (32 samples, 0.01%)</title><rect x="52.0357%" y="677" width="0.0108%" height="15" fill="rgb(230,104,19)" fg:x="154021" fg:w="32"/><text x="52.2857%" y="687.50"></text></g><g><title>do_syscall_64 (59 samples, 0.02%)</title><rect x="52.0344%" y="741" width="0.0199%" height="15" fill="rgb(230,181,4)" fg:x="154017" fg:w="59"/><text x="52.2844%" y="751.50"></text></g><g><title>__do_sys_statfs (59 samples, 0.02%)</title><rect x="52.0344%" y="725" width="0.0199%" height="15" fill="rgb(216,219,49)" fg:x="154017" fg:w="59"/><text x="52.2844%" y="735.50"></text></g><g><title>user_statfs (58 samples, 0.02%)</title><rect x="52.0347%" y="709" width="0.0196%" height="15" fill="rgb(254,144,0)" fg:x="154018" fg:w="58"/><text x="52.2847%" y="719.50"></text></g><g><title>[libselinux.so.1] (66 samples, 0.02%)</title><rect x="52.0323%" y="789" width="0.0223%" height="15" fill="rgb(205,209,38)" fg:x="154011" fg:w="66"/><text x="52.2823%" y="799.50"></text></g><g><title>__GI___statfs (64 samples, 0.02%)</title><rect x="52.0330%" y="773" width="0.0216%" height="15" fill="rgb(240,21,42)" fg:x="154013" fg:w="64"/><text x="52.2830%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.02%)</title><rect x="52.0344%" y="757" width="0.0203%" height="15" fill="rgb(241,132,3)" fg:x="154017" fg:w="60"/><text x="52.2844%" y="767.50"></text></g><g><title>filesystems_proc_show (59 samples, 0.02%)</title><rect x="52.0817%" y="613" width="0.0199%" height="15" fill="rgb(225,14,2)" fg:x="154157" fg:w="59"/><text x="52.3317%" y="623.50"></text></g><g><title>seq_printf (51 samples, 0.02%)</title><rect x="52.0844%" y="597" width="0.0172%" height="15" fill="rgb(210,141,35)" fg:x="154165" fg:w="51"/><text x="52.3344%" y="607.50"></text></g><g><title>vsnprintf (50 samples, 0.02%)</title><rect x="52.0847%" y="581" width="0.0169%" height="15" fill="rgb(251,14,44)" fg:x="154166" fg:w="50"/><text x="52.3347%" y="591.50"></text></g><g><title>new_sync_read (68 samples, 0.02%)</title><rect x="52.0800%" y="661" width="0.0230%" height="15" fill="rgb(247,48,18)" fg:x="154152" fg:w="68"/><text x="52.3300%" y="671.50"></text></g><g><title>proc_reg_read_iter (68 samples, 0.02%)</title><rect x="52.0800%" y="645" width="0.0230%" height="15" fill="rgb(225,0,40)" fg:x="154152" fg:w="68"/><text x="52.3300%" y="655.50"></text></g><g><title>seq_read_iter (68 samples, 0.02%)</title><rect x="52.0800%" y="629" width="0.0230%" height="15" fill="rgb(221,31,33)" fg:x="154152" fg:w="68"/><text x="52.3300%" y="639.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="52.0789%" y="709" width="0.0247%" height="15" fill="rgb(237,42,40)" fg:x="154149" fg:w="73"/><text x="52.3289%" y="719.50"></text></g><g><title>ksys_read (73 samples, 0.02%)</title><rect x="52.0789%" y="693" width="0.0247%" height="15" fill="rgb(233,51,29)" fg:x="154149" fg:w="73"/><text x="52.3289%" y="703.50"></text></g><g><title>vfs_read (72 samples, 0.02%)</title><rect x="52.0793%" y="677" width="0.0243%" height="15" fill="rgb(226,58,20)" fg:x="154150" fg:w="72"/><text x="52.3293%" y="687.50"></text></g><g><title>_IO_new_file_underflow (86 samples, 0.03%)</title><rect x="52.0749%" y="757" width="0.0291%" height="15" fill="rgb(208,98,7)" fg:x="154137" fg:w="86"/><text x="52.3249%" y="767.50"></text></g><g><title>__GI___libc_read (74 samples, 0.03%)</title><rect x="52.0789%" y="741" width="0.0250%" height="15" fill="rgb(228,143,44)" fg:x="154149" fg:w="74"/><text x="52.3289%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.03%)</title><rect x="52.0789%" y="725" width="0.0250%" height="15" fill="rgb(246,55,38)" fg:x="154149" fg:w="74"/><text x="52.3289%" y="735.50"></text></g><g><title>_IO_getdelim (104 samples, 0.04%)</title><rect x="52.0702%" y="773" width="0.0351%" height="15" fill="rgb(247,87,16)" fg:x="154123" fg:w="104"/><text x="52.3202%" y="783.50"></text></g><g><title>__GI__IO_file_open (35 samples, 0.01%)</title><rect x="52.1168%" y="741" width="0.0118%" height="15" fill="rgb(234,129,42)" fg:x="154261" fg:w="35"/><text x="52.3668%" y="751.50"></text></g><g><title>__libc_open64 (35 samples, 0.01%)</title><rect x="52.1168%" y="725" width="0.0118%" height="15" fill="rgb(220,82,16)" fg:x="154261" fg:w="35"/><text x="52.3668%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="52.1168%" y="709" width="0.0118%" height="15" fill="rgb(211,88,4)" fg:x="154261" fg:w="35"/><text x="52.3668%" y="719.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="52.1168%" y="693" width="0.0118%" height="15" fill="rgb(248,151,21)" fg:x="154261" fg:w="35"/><text x="52.3668%" y="703.50"></text></g><g><title>__x64_sys_openat (35 samples, 0.01%)</title><rect x="52.1168%" y="677" width="0.0118%" height="15" fill="rgb(238,163,6)" fg:x="154261" fg:w="35"/><text x="52.3668%" y="687.50"></text></g><g><title>do_sys_openat2 (34 samples, 0.01%)</title><rect x="52.1171%" y="661" width="0.0115%" height="15" fill="rgb(209,183,11)" fg:x="154262" fg:w="34"/><text x="52.3671%" y="671.50"></text></g><g><title>_IO_new_file_fopen (39 samples, 0.01%)</title><rect x="52.1164%" y="757" width="0.0132%" height="15" fill="rgb(219,37,20)" fg:x="154260" fg:w="39"/><text x="52.3664%" y="767.50"></text></g><g><title>__GI___libc_malloc (43 samples, 0.01%)</title><rect x="52.1313%" y="757" width="0.0145%" height="15" fill="rgb(210,158,4)" fg:x="154304" fg:w="43"/><text x="52.3813%" y="767.50"></text></g><g><title>tcache_init (43 samples, 0.01%)</title><rect x="52.1313%" y="741" width="0.0145%" height="15" fill="rgb(221,167,53)" fg:x="154304" fg:w="43"/><text x="52.3813%" y="751.50"></text></g><g><title>tcache_init (43 samples, 0.01%)</title><rect x="52.1313%" y="725" width="0.0145%" height="15" fill="rgb(237,151,45)" fg:x="154304" fg:w="43"/><text x="52.3813%" y="735.50"></text></g><g><title>_int_malloc (43 samples, 0.01%)</title><rect x="52.1313%" y="709" width="0.0145%" height="15" fill="rgb(231,39,3)" fg:x="154304" fg:w="43"/><text x="52.3813%" y="719.50"></text></g><g><title>sysmalloc (42 samples, 0.01%)</title><rect x="52.1317%" y="693" width="0.0142%" height="15" fill="rgb(212,167,28)" fg:x="154305" fg:w="42"/><text x="52.3817%" y="703.50"></text></g><g><title>determine_info (284 samples, 0.10%)</title><rect x="52.1560%" y="693" width="0.0959%" height="15" fill="rgb(232,178,8)" fg:x="154377" fg:w="284"/><text x="52.4060%" y="703.50"></text></g><g><title>__GI__dl_addr (310 samples, 0.10%)</title><rect x="52.1475%" y="709" width="0.1047%" height="15" fill="rgb(225,151,20)" fg:x="154352" fg:w="310"/><text x="52.3975%" y="719.50"></text></g><g><title>__fopen_internal (419 samples, 0.14%)</title><rect x="52.1164%" y="773" width="0.1416%" height="15" fill="rgb(238,3,37)" fg:x="154260" fg:w="419"/><text x="52.3664%" y="783.50"></text></g><g><title>malloc_hook_ini (332 samples, 0.11%)</title><rect x="52.1458%" y="757" width="0.1122%" height="15" fill="rgb(251,147,42)" fg:x="154347" fg:w="332"/><text x="52.3958%" y="767.50"></text></g><g><title>ptmalloc_init (332 samples, 0.11%)</title><rect x="52.1458%" y="741" width="0.1122%" height="15" fill="rgb(208,173,10)" fg:x="154347" fg:w="332"/><text x="52.3958%" y="751.50"></text></g><g><title>ptmalloc_init (332 samples, 0.11%)</title><rect x="52.1458%" y="725" width="0.1122%" height="15" fill="rgb(246,225,4)" fg:x="154347" fg:w="332"/><text x="52.3958%" y="735.50"></text></g><g><title>selinuxfs_exists (560 samples, 0.19%)</title><rect x="52.0702%" y="789" width="0.1892%" height="15" fill="rgb(248,102,6)" fg:x="154123" fg:w="560"/><text x="52.3202%" y="799.50"></text></g><g><title>[libselinux.so.1] (674 samples, 0.23%)</title><rect x="52.0320%" y="805" width="0.2277%" height="15" fill="rgb(232,6,21)" fg:x="154010" fg:w="674"/><text x="52.2820%" y="815.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.01%)</title><rect x="52.2688%" y="789" width="0.0111%" height="15" fill="rgb(221,179,22)" fg:x="154711" fg:w="33"/><text x="52.5188%" y="799.50"></text></g><g><title>exc_page_fault (33 samples, 0.01%)</title><rect x="52.2688%" y="773" width="0.0111%" height="15" fill="rgb(252,50,20)" fg:x="154711" fg:w="33"/><text x="52.5188%" y="783.50"></text></g><g><title>do_user_addr_fault (32 samples, 0.01%)</title><rect x="52.2692%" y="757" width="0.0108%" height="15" fill="rgb(222,56,38)" fg:x="154712" fg:w="32"/><text x="52.5192%" y="767.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="52.2695%" y="741" width="0.0105%" height="15" fill="rgb(206,193,29)" fg:x="154713" fg:w="31"/><text x="52.5195%" y="751.50"></text></g><g><title>_init (61 samples, 0.02%)</title><rect x="52.2600%" y="805" width="0.0206%" height="15" fill="rgb(239,192,45)" fg:x="154685" fg:w="61"/><text x="52.5100%" y="815.50"></text></g><g><title>_dl_start_user (781 samples, 0.26%)</title><rect x="52.0303%" y="869" width="0.2639%" height="15" fill="rgb(254,18,36)" fg:x="154005" fg:w="781"/><text x="52.2803%" y="879.50"></text></g><g><title>_dl_init (779 samples, 0.26%)</title><rect x="52.0310%" y="853" width="0.2632%" height="15" fill="rgb(221,127,11)" fg:x="154007" fg:w="779"/><text x="52.2810%" y="863.50"></text></g><g><title>call_init (779 samples, 0.26%)</title><rect x="52.0310%" y="837" width="0.2632%" height="15" fill="rgb(234,146,35)" fg:x="154007" fg:w="779"/><text x="52.2810%" y="847.50"></text></g><g><title>call_init (778 samples, 0.26%)</title><rect x="52.0313%" y="821" width="0.2628%" height="15" fill="rgb(254,201,37)" fg:x="154008" fg:w="778"/><text x="52.2813%" y="831.50"></text></g><g><title>init_cacheinfo (39 samples, 0.01%)</title><rect x="52.2810%" y="805" width="0.0132%" height="15" fill="rgb(211,202,23)" fg:x="154747" fg:w="39"/><text x="52.5310%" y="815.50"></text></g><g><title>handle_intel (32 samples, 0.01%)</title><rect x="52.2833%" y="789" width="0.0108%" height="15" fill="rgb(237,91,2)" fg:x="154754" fg:w="32"/><text x="52.5333%" y="799.50"></text></g><g><title>__pthread_initialize_minimal_internal (81 samples, 0.03%)</title><rect x="52.2972%" y="853" width="0.0274%" height="15" fill="rgb(226,228,36)" fg:x="154795" fg:w="81"/><text x="52.5472%" y="863.50"></text></g><g><title>_init (114 samples, 0.04%)</title><rect x="52.2942%" y="869" width="0.0385%" height="15" fill="rgb(213,63,50)" fg:x="154786" fg:w="114"/><text x="52.5442%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="52.3506%" y="773" width="0.0101%" height="15" fill="rgb(235,194,19)" fg:x="154953" fg:w="30"/><text x="52.6006%" y="783.50"></text></g><g><title>__access (31 samples, 0.01%)</title><rect x="52.3506%" y="789" width="0.0105%" height="15" fill="rgb(207,204,18)" fg:x="154953" fg:w="31"/><text x="52.6006%" y="799.50"></text></g><g><title>_dl_cache_libcmp (56 samples, 0.02%)</title><rect x="52.3962%" y="709" width="0.0189%" height="15" fill="rgb(248,8,7)" fg:x="155088" fg:w="56"/><text x="52.6462%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="52.4185%" y="677" width="0.0105%" height="15" fill="rgb(223,145,47)" fg:x="155154" fg:w="31"/><text x="52.6685%" y="687.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="52.4185%" y="661" width="0.0105%" height="15" fill="rgb(228,84,11)" fg:x="155154" fg:w="31"/><text x="52.6685%" y="671.50"></text></g><g><title>__x64_sys_openat (30 samples, 0.01%)</title><rect x="52.4188%" y="645" width="0.0101%" height="15" fill="rgb(218,76,45)" fg:x="155155" fg:w="30"/><text x="52.6688%" y="655.50"></text></g><g><title>__GI___open64_nocancel (33 samples, 0.01%)</title><rect x="52.4181%" y="693" width="0.0111%" height="15" fill="rgb(223,80,15)" fg:x="155153" fg:w="33"/><text x="52.6681%" y="703.50"></text></g><g><title>_dl_sysdep_read_whole_file (65 samples, 0.02%)</title><rect x="52.4151%" y="709" width="0.0220%" height="15" fill="rgb(219,218,33)" fg:x="155144" fg:w="65"/><text x="52.6651%" y="719.50"></text></g><g><title>_dl_load_cache_lookup (184 samples, 0.06%)</title><rect x="52.3850%" y="725" width="0.0622%" height="15" fill="rgb(208,51,11)" fg:x="155055" fg:w="184"/><text x="52.6350%" y="735.50"></text></g><g><title>exc_page_fault (137 samples, 0.05%)</title><rect x="52.4719%" y="661" width="0.0463%" height="15" fill="rgb(229,165,39)" fg:x="155312" fg:w="137"/><text x="52.7219%" y="671.50"></text></g><g><title>do_user_addr_fault (137 samples, 0.05%)</title><rect x="52.4719%" y="645" width="0.0463%" height="15" fill="rgb(241,100,24)" fg:x="155312" fg:w="137"/><text x="52.7219%" y="655.50"></text></g><g><title>handle_mm_fault (130 samples, 0.04%)</title><rect x="52.4742%" y="629" width="0.0439%" height="15" fill="rgb(228,14,23)" fg:x="155319" fg:w="130"/><text x="52.7242%" y="639.50"></text></g><g><title>asm_exc_page_fault (138 samples, 0.05%)</title><rect x="52.4719%" y="677" width="0.0466%" height="15" fill="rgb(247,116,52)" fg:x="155312" fg:w="138"/><text x="52.7219%" y="687.50"></text></g><g><title>[ld-2.31.so] (154 samples, 0.05%)</title><rect x="52.4678%" y="693" width="0.0520%" height="15" fill="rgb(216,149,33)" fg:x="155300" fg:w="154"/><text x="52.7178%" y="703.50"></text></g><g><title>vma_interval_tree_insert (78 samples, 0.03%)</title><rect x="52.5803%" y="517" width="0.0264%" height="15" fill="rgb(238,142,29)" fg:x="155633" fg:w="78"/><text x="52.8303%" y="527.50"></text></g><g><title>__vma_adjust (204 samples, 0.07%)</title><rect x="52.5533%" y="533" width="0.0689%" height="15" fill="rgb(224,83,40)" fg:x="155553" fg:w="204"/><text x="52.8033%" y="543.50"></text></g><g><title>vma_interval_tree_remove (46 samples, 0.02%)</title><rect x="52.6067%" y="517" width="0.0155%" height="15" fill="rgb(234,165,11)" fg:x="155711" fg:w="46"/><text x="52.8567%" y="527.50"></text></g><g><title>vm_area_dup (60 samples, 0.02%)</title><rect x="52.6225%" y="533" width="0.0203%" height="15" fill="rgb(215,96,23)" fg:x="155758" fg:w="60"/><text x="52.8725%" y="543.50"></text></g><g><title>kmem_cache_alloc (41 samples, 0.01%)</title><rect x="52.6290%" y="517" width="0.0139%" height="15" fill="rgb(233,179,26)" fg:x="155777" fg:w="41"/><text x="52.8790%" y="527.50"></text></g><g><title>__split_vma (274 samples, 0.09%)</title><rect x="52.5506%" y="549" width="0.0926%" height="15" fill="rgb(225,129,33)" fg:x="155545" fg:w="274"/><text x="52.8006%" y="559.50"></text></g><g><title>lru_add_drain (43 samples, 0.01%)</title><rect x="52.6661%" y="533" width="0.0145%" height="15" fill="rgb(237,49,13)" fg:x="155887" fg:w="43"/><text x="52.9161%" y="543.50"></text></g><g><title>lru_add_drain_cpu (42 samples, 0.01%)</title><rect x="52.6665%" y="517" width="0.0142%" height="15" fill="rgb(211,3,31)" fg:x="155888" fg:w="42"/><text x="52.9165%" y="527.50"></text></g><g><title>pagevec_lru_move_fn (39 samples, 0.01%)</title><rect x="52.6675%" y="501" width="0.0132%" height="15" fill="rgb(216,152,19)" fg:x="155891" fg:w="39"/><text x="52.9175%" y="511.50"></text></g><g><title>unmap_page_range (38 samples, 0.01%)</title><rect x="52.6857%" y="517" width="0.0128%" height="15" fill="rgb(251,121,35)" fg:x="155945" fg:w="38"/><text x="52.9357%" y="527.50"></text></g><g><title>unmap_region (120 samples, 0.04%)</title><rect x="52.6584%" y="549" width="0.0405%" height="15" fill="rgb(210,217,47)" fg:x="155864" fg:w="120"/><text x="52.9084%" y="559.50"></text></g><g><title>unmap_vmas (49 samples, 0.02%)</title><rect x="52.6823%" y="533" width="0.0166%" height="15" fill="rgb(244,116,22)" fg:x="155935" fg:w="49"/><text x="52.9323%" y="543.50"></text></g><g><title>__do_munmap (454 samples, 0.15%)</title><rect x="52.5465%" y="565" width="0.1534%" height="15" fill="rgb(228,17,21)" fg:x="155533" fg:w="454"/><text x="52.7965%" y="575.50"></text></g><g><title>d_path (30 samples, 0.01%)</title><rect x="52.7067%" y="549" width="0.0101%" height="15" fill="rgb(240,149,34)" fg:x="156007" fg:w="30"/><text x="52.9567%" y="559.50"></text></g><g><title>kmem_cache_alloc_trace (36 samples, 0.01%)</title><rect x="52.7222%" y="549" width="0.0122%" height="15" fill="rgb(208,125,47)" fg:x="156053" fg:w="36"/><text x="52.9722%" y="559.50"></text></g><g><title>perf_iterate_sb (98 samples, 0.03%)</title><rect x="52.7357%" y="549" width="0.0331%" height="15" fill="rgb(249,186,39)" fg:x="156093" fg:w="98"/><text x="52.9857%" y="559.50"></text></g><g><title>perf_iterate_ctx (91 samples, 0.03%)</title><rect x="52.7381%" y="533" width="0.0307%" height="15" fill="rgb(240,220,33)" fg:x="156100" fg:w="91"/><text x="52.9881%" y="543.50"></text></g><g><title>perf_event_mmap_output (78 samples, 0.03%)</title><rect x="52.7425%" y="517" width="0.0264%" height="15" fill="rgb(243,110,23)" fg:x="156113" fg:w="78"/><text x="52.9925%" y="527.50"></text></g><g><title>perf_output_copy (41 samples, 0.01%)</title><rect x="52.7550%" y="501" width="0.0139%" height="15" fill="rgb(219,163,46)" fg:x="156150" fg:w="41"/><text x="53.0050%" y="511.50"></text></g><g><title>perf_event_mmap (210 samples, 0.07%)</title><rect x="52.7030%" y="565" width="0.0709%" height="15" fill="rgb(216,126,30)" fg:x="155996" fg:w="210"/><text x="52.9530%" y="575.50"></text></g><g><title>vma_link (82 samples, 0.03%)</title><rect x="52.7830%" y="565" width="0.0277%" height="15" fill="rgb(208,139,11)" fg:x="156233" fg:w="82"/><text x="53.0330%" y="575.50"></text></g><g><title>vma_interval_tree_insert (60 samples, 0.02%)</title><rect x="52.7905%" y="549" width="0.0203%" height="15" fill="rgb(213,118,36)" fg:x="156255" fg:w="60"/><text x="53.0405%" y="559.50"></text></g><g><title>vma_merge (39 samples, 0.01%)</title><rect x="52.8107%" y="565" width="0.0132%" height="15" fill="rgb(226,43,17)" fg:x="156315" fg:w="39"/><text x="53.0607%" y="575.50"></text></g><g><title>mmap_region (848 samples, 0.29%)</title><rect x="52.5384%" y="581" width="0.2865%" height="15" fill="rgb(254,217,4)" fg:x="155509" fg:w="848"/><text x="52.7884%" y="591.50"></text></g><g><title>do_mmap (882 samples, 0.30%)</title><rect x="52.5293%" y="597" width="0.2980%" height="15" fill="rgb(210,134,47)" fg:x="155482" fg:w="882"/><text x="52.7793%" y="607.50"></text></g><g><title>ksys_mmap_pgoff (909 samples, 0.31%)</title><rect x="52.5259%" y="629" width="0.3071%" height="15" fill="rgb(237,24,49)" fg:x="155472" fg:w="909"/><text x="52.7759%" y="639.50"></text></g><g><title>vm_mmap_pgoff (901 samples, 0.30%)</title><rect x="52.5286%" y="613" width="0.3044%" height="15" fill="rgb(251,39,46)" fg:x="155480" fg:w="901"/><text x="52.7786%" y="623.50"></text></g><g><title>__do_munmap (37 samples, 0.01%)</title><rect x="52.8361%" y="581" width="0.0125%" height="15" fill="rgb(251,220,3)" fg:x="156390" fg:w="37"/><text x="53.0861%" y="591.50"></text></g><g><title>do_mmap (68 samples, 0.02%)</title><rect x="52.8334%" y="613" width="0.0230%" height="15" fill="rgb(228,105,12)" fg:x="156382" fg:w="68"/><text x="53.0834%" y="623.50"></text></g><g><title>mmap_region (65 samples, 0.02%)</title><rect x="52.8344%" y="597" width="0.0220%" height="15" fill="rgb(215,196,1)" fg:x="156385" fg:w="65"/><text x="53.0844%" y="607.50"></text></g><g><title>do_syscall_64 (981 samples, 0.33%)</title><rect x="52.5256%" y="645" width="0.3314%" height="15" fill="rgb(214,33,39)" fg:x="155471" fg:w="981"/><text x="52.7756%" y="655.50"></text></g><g><title>vm_mmap_pgoff (70 samples, 0.02%)</title><rect x="52.8334%" y="629" width="0.0236%" height="15" fill="rgb(220,19,52)" fg:x="156382" fg:w="70"/><text x="53.0834%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (997 samples, 0.34%)</title><rect x="52.5242%" y="661" width="0.3368%" height="15" fill="rgb(221,78,38)" fg:x="155467" fg:w="997"/><text x="52.7742%" y="671.50"></text></g><g><title>__mmap64 (1,018 samples, 0.34%)</title><rect x="52.5198%" y="693" width="0.3439%" height="15" fill="rgb(253,30,16)" fg:x="155454" fg:w="1018"/><text x="52.7698%" y="703.50"></text></g><g><title>__mmap64 (1,018 samples, 0.34%)</title><rect x="52.5198%" y="677" width="0.3439%" height="15" fill="rgb(242,65,0)" fg:x="155454" fg:w="1018"/><text x="52.7698%" y="687.50"></text></g><g><title>_dl_map_segments (1,184 samples, 0.40%)</title><rect x="52.4651%" y="709" width="0.4000%" height="15" fill="rgb(235,201,12)" fg:x="155292" fg:w="1184"/><text x="52.7151%" y="719.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.01%)</title><rect x="52.8699%" y="693" width="0.0115%" height="15" fill="rgb(233,161,9)" fg:x="156490" fg:w="34"/><text x="53.1199%" y="703.50"></text></g><g><title>exc_page_fault (34 samples, 0.01%)</title><rect x="52.8699%" y="677" width="0.0115%" height="15" fill="rgb(241,207,41)" fg:x="156490" fg:w="34"/><text x="53.1199%" y="687.50"></text></g><g><title>do_user_addr_fault (34 samples, 0.01%)</title><rect x="52.8699%" y="661" width="0.0115%" height="15" fill="rgb(212,69,46)" fg:x="156490" fg:w="34"/><text x="53.1199%" y="671.50"></text></g><g><title>_dl_new_object (72 samples, 0.02%)</title><rect x="52.8651%" y="709" width="0.0243%" height="15" fill="rgb(239,69,45)" fg:x="156476" fg:w="72"/><text x="53.1151%" y="719.50"></text></g><g><title>filemap_map_pages (39 samples, 0.01%)</title><rect x="52.8972%" y="629" width="0.0132%" height="15" fill="rgb(242,117,48)" fg:x="156571" fg:w="39"/><text x="53.1472%" y="639.50"></text></g><g><title>handle_mm_fault (50 samples, 0.02%)</title><rect x="52.8955%" y="645" width="0.0169%" height="15" fill="rgb(228,41,36)" fg:x="156566" fg:w="50"/><text x="53.1455%" y="655.50"></text></g><g><title>exc_page_fault (63 samples, 0.02%)</title><rect x="52.8915%" y="677" width="0.0213%" height="15" fill="rgb(212,3,32)" fg:x="156554" fg:w="63"/><text x="53.1415%" y="687.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.02%)</title><rect x="52.8915%" y="661" width="0.0213%" height="15" fill="rgb(233,41,49)" fg:x="156554" fg:w="63"/><text x="53.1415%" y="671.50"></text></g><g><title>asm_exc_page_fault (64 samples, 0.02%)</title><rect x="52.8915%" y="693" width="0.0216%" height="15" fill="rgb(252,170,49)" fg:x="156554" fg:w="64"/><text x="53.1415%" y="703.50"></text></g><g><title>_dl_setup_hash (78 samples, 0.03%)</title><rect x="52.8894%" y="709" width="0.0264%" height="15" fill="rgb(229,53,26)" fg:x="156548" fg:w="78"/><text x="53.1394%" y="719.50"></text></g><g><title>exc_page_fault (93 samples, 0.03%)</title><rect x="52.9286%" y="677" width="0.0314%" height="15" fill="rgb(217,157,12)" fg:x="156664" fg:w="93"/><text x="53.1786%" y="687.50"></text></g><g><title>do_user_addr_fault (93 samples, 0.03%)</title><rect x="52.9286%" y="661" width="0.0314%" height="15" fill="rgb(227,17,9)" fg:x="156664" fg:w="93"/><text x="53.1786%" y="671.50"></text></g><g><title>handle_mm_fault (87 samples, 0.03%)</title><rect x="52.9307%" y="645" width="0.0294%" height="15" fill="rgb(218,84,12)" fg:x="156670" fg:w="87"/><text x="53.1807%" y="655.50"></text></g><g><title>wp_page_copy (53 samples, 0.02%)</title><rect x="52.9422%" y="629" width="0.0179%" height="15" fill="rgb(212,79,24)" fg:x="156704" fg:w="53"/><text x="53.1922%" y="639.50"></text></g><g><title>asm_exc_page_fault (101 samples, 0.03%)</title><rect x="52.9283%" y="693" width="0.0341%" height="15" fill="rgb(217,222,37)" fg:x="156663" fg:w="101"/><text x="53.1783%" y="703.50"></text></g><g><title>_dl_map_object_from_fd (1,530 samples, 0.52%)</title><rect x="52.4472%" y="725" width="0.5169%" height="15" fill="rgb(246,208,8)" fg:x="155239" fg:w="1530"/><text x="52.6972%" y="735.50"></text></g><g><title>elf_get_dynamic_info (143 samples, 0.05%)</title><rect x="52.9158%" y="709" width="0.0483%" height="15" fill="rgb(244,133,10)" fg:x="156626" fg:w="143"/><text x="53.1658%" y="719.50"></text></g><g><title>link_path_walk.part.0 (39 samples, 0.01%)</title><rect x="52.9935%" y="597" width="0.0132%" height="15" fill="rgb(209,219,41)" fg:x="156856" fg:w="39"/><text x="53.2435%" y="607.50"></text></g><g><title>do_filp_open (140 samples, 0.05%)</title><rect x="52.9773%" y="629" width="0.0473%" height="15" fill="rgb(253,175,45)" fg:x="156808" fg:w="140"/><text x="53.2273%" y="639.50"></text></g><g><title>path_openat (138 samples, 0.05%)</title><rect x="52.9780%" y="613" width="0.0466%" height="15" fill="rgb(235,100,37)" fg:x="156810" fg:w="138"/><text x="53.2280%" y="623.50"></text></g><g><title>__x64_sys_openat (173 samples, 0.06%)</title><rect x="52.9739%" y="661" width="0.0584%" height="15" fill="rgb(225,87,19)" fg:x="156798" fg:w="173"/><text x="53.2239%" y="671.50"></text></g><g><title>do_sys_openat2 (171 samples, 0.06%)</title><rect x="52.9746%" y="645" width="0.0578%" height="15" fill="rgb(217,152,17)" fg:x="156800" fg:w="171"/><text x="53.2246%" y="655.50"></text></g><g><title>__GI___open64_nocancel (179 samples, 0.06%)</title><rect x="52.9722%" y="709" width="0.0605%" height="15" fill="rgb(235,72,13)" fg:x="156793" fg:w="179"/><text x="53.2222%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (175 samples, 0.06%)</title><rect x="52.9736%" y="693" width="0.0591%" height="15" fill="rgb(233,140,18)" fg:x="156797" fg:w="175"/><text x="53.2236%" y="703.50"></text></g><g><title>do_syscall_64 (175 samples, 0.06%)</title><rect x="52.9736%" y="677" width="0.0591%" height="15" fill="rgb(207,212,28)" fg:x="156797" fg:w="175"/><text x="53.2236%" y="687.50"></text></g><g><title>new_sync_read (35 samples, 0.01%)</title><rect x="53.0367%" y="629" width="0.0118%" height="15" fill="rgb(220,130,25)" fg:x="156984" fg:w="35"/><text x="53.2867%" y="639.50"></text></g><g><title>do_syscall_64 (48 samples, 0.02%)</title><rect x="53.0337%" y="677" width="0.0162%" height="15" fill="rgb(205,55,34)" fg:x="156975" fg:w="48"/><text x="53.2837%" y="687.50"></text></g><g><title>ksys_read (48 samples, 0.02%)</title><rect x="53.0337%" y="661" width="0.0162%" height="15" fill="rgb(237,54,35)" fg:x="156975" fg:w="48"/><text x="53.2837%" y="671.50"></text></g><g><title>vfs_read (43 samples, 0.01%)</title><rect x="53.0354%" y="645" width="0.0145%" height="15" fill="rgb(208,67,23)" fg:x="156980" fg:w="43"/><text x="53.2854%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="53.0337%" y="693" width="0.0166%" height="15" fill="rgb(206,207,50)" fg:x="156975" fg:w="49"/><text x="53.2837%" y="703.50"></text></g><g><title>__GI___read_nocancel (53 samples, 0.02%)</title><rect x="53.0327%" y="709" width="0.0179%" height="15" fill="rgb(213,211,42)" fg:x="156972" fg:w="53"/><text x="53.2827%" y="719.50"></text></g><g><title>open_verify (233 samples, 0.08%)</title><rect x="52.9722%" y="725" width="0.0787%" height="15" fill="rgb(252,197,50)" fg:x="156793" fg:w="233"/><text x="53.2222%" y="735.50"></text></g><g><title>_dl_catch_exception (2,027 samples, 0.68%)</title><rect x="52.3763%" y="773" width="0.6848%" height="15" fill="rgb(251,211,41)" fg:x="155029" fg:w="2027"/><text x="52.6263%" y="783.50"></text></g><g><title>openaux (2,025 samples, 0.68%)</title><rect x="52.3769%" y="757" width="0.6841%" height="15" fill="rgb(229,211,5)" fg:x="155031" fg:w="2025"/><text x="52.6269%" y="767.50"></text></g><g><title>_dl_map_object (2,024 samples, 0.68%)</title><rect x="52.3773%" y="741" width="0.6838%" height="15" fill="rgb(239,36,31)" fg:x="155032" fg:w="2024"/><text x="52.6273%" y="751.50"></text></g><g><title>strcmp (30 samples, 0.01%)</title><rect x="53.0509%" y="725" width="0.0101%" height="15" fill="rgb(248,67,31)" fg:x="157026" fg:w="30"/><text x="53.3009%" y="735.50"></text></g><g><title>_dl_map_object_deps (2,092 samples, 0.71%)</title><rect x="52.3719%" y="789" width="0.7068%" height="15" fill="rgb(249,55,44)" fg:x="155016" fg:w="2092"/><text x="52.6219%" y="799.50"></text></g><g><title>_dl_check_map_versions (86 samples, 0.03%)</title><rect x="53.0803%" y="741" width="0.0291%" height="15" fill="rgb(216,82,12)" fg:x="157113" fg:w="86"/><text x="53.3303%" y="751.50"></text></g><g><title>match_symbol (32 samples, 0.01%)</title><rect x="53.0986%" y="725" width="0.0108%" height="15" fill="rgb(242,174,1)" fg:x="157167" fg:w="32"/><text x="53.3486%" y="735.50"></text></g><g><title>_dl_receive_error (87 samples, 0.03%)</title><rect x="53.0803%" y="789" width="0.0294%" height="15" fill="rgb(208,120,29)" fg:x="157113" fg:w="87"/><text x="53.3303%" y="799.50"></text></g><g><title>version_check_doit (87 samples, 0.03%)</title><rect x="53.0803%" y="773" width="0.0294%" height="15" fill="rgb(221,105,43)" fg:x="157113" fg:w="87"/><text x="53.3303%" y="783.50"></text></g><g><title>_dl_check_all_versions (87 samples, 0.03%)</title><rect x="53.0803%" y="757" width="0.0294%" height="15" fill="rgb(234,124,22)" fg:x="157113" fg:w="87"/><text x="53.3303%" y="767.50"></text></g><g><title>__vma_adjust (62 samples, 0.02%)</title><rect x="53.1205%" y="645" width="0.0209%" height="15" fill="rgb(212,23,30)" fg:x="157232" fg:w="62"/><text x="53.3705%" y="655.50"></text></g><g><title>__split_vma (105 samples, 0.04%)</title><rect x="53.1199%" y="661" width="0.0355%" height="15" fill="rgb(219,122,53)" fg:x="157230" fg:w="105"/><text x="53.3699%" y="671.50"></text></g><g><title>perf_iterate_sb (30 samples, 0.01%)</title><rect x="53.1746%" y="645" width="0.0101%" height="15" fill="rgb(248,84,24)" fg:x="157392" fg:w="30"/><text x="53.4246%" y="655.50"></text></g><g><title>perf_event_mmap (62 samples, 0.02%)</title><rect x="53.1645%" y="661" width="0.0209%" height="15" fill="rgb(245,115,18)" fg:x="157362" fg:w="62"/><text x="53.4145%" y="671.50"></text></g><g><title>mprotect_fixup (205 samples, 0.07%)</title><rect x="53.1195%" y="677" width="0.0693%" height="15" fill="rgb(227,176,51)" fg:x="157229" fg:w="205"/><text x="53.3695%" y="687.50"></text></g><g><title>__x64_sys_mprotect (228 samples, 0.08%)</title><rect x="53.1141%" y="709" width="0.0770%" height="15" fill="rgb(229,63,42)" fg:x="157213" fg:w="228"/><text x="53.3641%" y="719.50"></text></g><g><title>do_mprotect_pkey (228 samples, 0.08%)</title><rect x="53.1141%" y="693" width="0.0770%" height="15" fill="rgb(247,202,24)" fg:x="157213" fg:w="228"/><text x="53.3641%" y="703.50"></text></g><g><title>do_syscall_64 (229 samples, 0.08%)</title><rect x="53.1141%" y="725" width="0.0774%" height="15" fill="rgb(244,173,20)" fg:x="157213" fg:w="229"/><text x="53.3641%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (240 samples, 0.08%)</title><rect x="53.1134%" y="741" width="0.0811%" height="15" fill="rgb(242,81,47)" fg:x="157211" fg:w="240"/><text x="53.3634%" y="751.50"></text></g><g><title>_dl_protect_relro (246 samples, 0.08%)</title><rect x="53.1121%" y="773" width="0.0831%" height="15" fill="rgb(231,185,54)" fg:x="157207" fg:w="246"/><text x="53.3621%" y="783.50"></text></g><g><title>__mprotect (246 samples, 0.08%)</title><rect x="53.1121%" y="757" width="0.0831%" height="15" fill="rgb(243,55,32)" fg:x="157207" fg:w="246"/><text x="53.3621%" y="767.50"></text></g><g><title>elf_machine_lazy_rel (52 samples, 0.02%)</title><rect x="53.2128%" y="757" width="0.0176%" height="15" fill="rgb(208,167,19)" fg:x="157505" fg:w="52"/><text x="53.4628%" y="767.50"></text></g><g><title>dl_new_hash (84 samples, 0.03%)</title><rect x="53.2827%" y="725" width="0.0284%" height="15" fill="rgb(231,72,35)" fg:x="157712" fg:w="84"/><text x="53.5327%" y="735.50"></text></g><g><title>check_match (216 samples, 0.07%)</title><rect x="53.4297%" y="709" width="0.0730%" height="15" fill="rgb(250,173,51)" fg:x="158147" fg:w="216"/><text x="53.6797%" y="719.50"></text></g><g><title>strcmp (133 samples, 0.04%)</title><rect x="53.4577%" y="693" width="0.0449%" height="15" fill="rgb(209,5,22)" fg:x="158230" fg:w="133"/><text x="53.7077%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (715 samples, 0.24%)</title><rect x="53.2651%" y="741" width="0.2416%" height="15" fill="rgb(250,174,19)" fg:x="157660" fg:w="715"/><text x="53.5151%" y="751.50"></text></g><g><title>do_lookup_x (579 samples, 0.20%)</title><rect x="53.3111%" y="725" width="0.1956%" height="15" fill="rgb(217,3,49)" fg:x="157796" fg:w="579"/><text x="53.5611%" y="735.50"></text></g><g><title>elf_machine_rela (834 samples, 0.28%)</title><rect x="53.2303%" y="757" width="0.2818%" height="15" fill="rgb(218,225,5)" fg:x="157557" fg:w="834"/><text x="53.4803%" y="767.50"></text></g><g><title>exc_page_fault (38 samples, 0.01%)</title><rect x="53.5226%" y="725" width="0.0128%" height="15" fill="rgb(236,89,11)" fg:x="158422" fg:w="38"/><text x="53.7726%" y="735.50"></text></g><g><title>do_user_addr_fault (38 samples, 0.01%)</title><rect x="53.5226%" y="709" width="0.0128%" height="15" fill="rgb(206,33,28)" fg:x="158422" fg:w="38"/><text x="53.7726%" y="719.50"></text></g><g><title>handle_mm_fault (37 samples, 0.01%)</title><rect x="53.5229%" y="693" width="0.0125%" height="15" fill="rgb(241,56,42)" fg:x="158423" fg:w="37"/><text x="53.7729%" y="703.50"></text></g><g><title>wp_page_copy (30 samples, 0.01%)</title><rect x="53.5253%" y="677" width="0.0101%" height="15" fill="rgb(222,44,11)" fg:x="158430" fg:w="30"/><text x="53.7753%" y="687.50"></text></g><g><title>asm_exc_page_fault (46 samples, 0.02%)</title><rect x="53.5222%" y="741" width="0.0155%" height="15" fill="rgb(234,111,20)" fg:x="158421" fg:w="46"/><text x="53.7722%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (1,016 samples, 0.34%)</title><rect x="53.1952%" y="773" width="0.3433%" height="15" fill="rgb(237,77,6)" fg:x="157453" fg:w="1016"/><text x="53.4452%" y="783.50"></text></g><g><title>elf_machine_rela_relative (78 samples, 0.03%)</title><rect x="53.5121%" y="757" width="0.0264%" height="15" fill="rgb(235,111,23)" fg:x="158391" fg:w="78"/><text x="53.7621%" y="767.50"></text></g><g><title>_dl_relocate_object (1,289 samples, 0.44%)</title><rect x="53.1097%" y="789" width="0.4355%" height="15" fill="rgb(251,135,29)" fg:x="157200" fg:w="1289"/><text x="53.3597%" y="799.50"></text></g><g><title>tlb_finish_mmu (30 samples, 0.01%)</title><rect x="53.5513%" y="661" width="0.0101%" height="15" fill="rgb(217,57,1)" fg:x="158507" fg:w="30"/><text x="53.8013%" y="671.50"></text></g><g><title>__do_munmap (72 samples, 0.02%)</title><rect x="53.5455%" y="693" width="0.0243%" height="15" fill="rgb(249,119,31)" fg:x="158490" fg:w="72"/><text x="53.7955%" y="703.50"></text></g><g><title>unmap_region (67 samples, 0.02%)</title><rect x="53.5472%" y="677" width="0.0226%" height="15" fill="rgb(233,164,33)" fg:x="158495" fg:w="67"/><text x="53.7972%" y="687.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="53.5455%" y="741" width="0.0247%" height="15" fill="rgb(250,217,43)" fg:x="158490" fg:w="73"/><text x="53.7955%" y="751.50"></text></g><g><title>__x64_sys_munmap (73 samples, 0.02%)</title><rect x="53.5455%" y="725" width="0.0247%" height="15" fill="rgb(232,154,50)" fg:x="158490" fg:w="73"/><text x="53.7955%" y="735.50"></text></g><g><title>__vm_munmap (73 samples, 0.02%)</title><rect x="53.5455%" y="709" width="0.0247%" height="15" fill="rgb(227,190,8)" fg:x="158490" fg:w="73"/><text x="53.7955%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.03%)</title><rect x="53.5455%" y="757" width="0.0274%" height="15" fill="rgb(209,217,32)" fg:x="158490" fg:w="81"/><text x="53.7955%" y="767.50"></text></g><g><title>_dl_unload_cache (83 samples, 0.03%)</title><rect x="53.5452%" y="789" width="0.0280%" height="15" fill="rgb(243,203,50)" fg:x="158489" fg:w="83"/><text x="53.7952%" y="799.50"></text></g><g><title>munmap (82 samples, 0.03%)</title><rect x="53.5455%" y="773" width="0.0277%" height="15" fill="rgb(232,152,27)" fg:x="158490" fg:w="82"/><text x="53.7955%" y="783.50"></text></g><g><title>exc_page_fault (53 samples, 0.02%)</title><rect x="53.5733%" y="773" width="0.0179%" height="15" fill="rgb(240,34,29)" fg:x="158572" fg:w="53"/><text x="53.8233%" y="783.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.02%)</title><rect x="53.5736%" y="757" width="0.0176%" height="15" fill="rgb(215,185,52)" fg:x="158573" fg:w="52"/><text x="53.8236%" y="767.50"></text></g><g><title>handle_mm_fault (48 samples, 0.02%)</title><rect x="53.5749%" y="741" width="0.0162%" height="15" fill="rgb(240,89,49)" fg:x="158577" fg:w="48"/><text x="53.8249%" y="751.50"></text></g><g><title>asm_exc_page_fault (61 samples, 0.02%)</title><rect x="53.5733%" y="789" width="0.0206%" height="15" fill="rgb(225,12,52)" fg:x="158572" fg:w="61"/><text x="53.8233%" y="799.50"></text></g><g><title>[ld-2.31.so] (3,753 samples, 1.27%)</title><rect x="52.3374%" y="805" width="1.2679%" height="15" fill="rgb(239,128,45)" fg:x="154914" fg:w="3753"/><text x="52.5874%" y="815.50"></text></g><g><title>handle_mm_fault (39 samples, 0.01%)</title><rect x="53.6118%" y="757" width="0.0132%" height="15" fill="rgb(211,78,47)" fg:x="158686" fg:w="39"/><text x="53.8618%" y="767.50"></text></g><g><title>asm_exc_page_fault (45 samples, 0.02%)</title><rect x="53.6101%" y="805" width="0.0152%" height="15" fill="rgb(232,31,21)" fg:x="158681" fg:w="45"/><text x="53.8601%" y="815.50"></text></g><g><title>exc_page_fault (44 samples, 0.01%)</title><rect x="53.6104%" y="789" width="0.0149%" height="15" fill="rgb(222,168,14)" fg:x="158682" fg:w="44"/><text x="53.8604%" y="799.50"></text></g><g><title>do_user_addr_fault (43 samples, 0.01%)</title><rect x="53.6108%" y="773" width="0.0145%" height="15" fill="rgb(209,128,24)" fg:x="158683" fg:w="43"/><text x="53.8608%" y="783.50"></text></g><g><title>_dl_start_final (3,852 samples, 1.30%)</title><rect x="52.3347%" y="837" width="1.3014%" height="15" fill="rgb(249,35,13)" fg:x="154906" fg:w="3852"/><text x="52.5847%" y="847.50"></text></g><g><title>_dl_sysdep_start (3,851 samples, 1.30%)</title><rect x="52.3350%" y="821" width="1.3011%" height="15" fill="rgb(218,7,2)" fg:x="154907" fg:w="3851"/><text x="52.5850%" y="831.50"></text></g><g><title>_dl_start (3,936 samples, 1.33%)</title><rect x="52.3337%" y="853" width="1.3298%" height="15" fill="rgb(238,107,27)" fg:x="154903" fg:w="3936"/><text x="52.5837%" y="863.50"></text></g><g><title>rtld_timer_start (31 samples, 0.01%)</title><rect x="53.6530%" y="837" width="0.0105%" height="15" fill="rgb(217,88,38)" fg:x="158808" fg:w="31"/><text x="53.9030%" y="847.50"></text></g><g><title>asm_exc_page_fault (49 samples, 0.02%)</title><rect x="53.6635%" y="853" width="0.0166%" height="15" fill="rgb(230,207,0)" fg:x="158839" fg:w="49"/><text x="53.9135%" y="863.50"></text></g><g><title>exc_page_fault (48 samples, 0.02%)</title><rect x="53.6638%" y="837" width="0.0162%" height="15" fill="rgb(249,64,54)" fg:x="158840" fg:w="48"/><text x="53.9138%" y="847.50"></text></g><g><title>do_user_addr_fault (47 samples, 0.02%)</title><rect x="53.6641%" y="821" width="0.0159%" height="15" fill="rgb(231,7,11)" fg:x="158841" fg:w="47"/><text x="53.9141%" y="831.50"></text></g><g><title>handle_mm_fault (45 samples, 0.02%)</title><rect x="53.6648%" y="805" width="0.0152%" height="15" fill="rgb(205,149,21)" fg:x="158843" fg:w="45"/><text x="53.9148%" y="815.50"></text></g><g><title>_start (4,000 samples, 1.35%)</title><rect x="52.3327%" y="869" width="1.3514%" height="15" fill="rgb(215,126,34)" fg:x="154900" fg:w="4000"/><text x="52.5827%" y="879.50"></text></g><g><title>asm_exc_page_fault (235 samples, 0.08%)</title><rect x="53.6841%" y="869" width="0.0794%" height="15" fill="rgb(241,132,45)" fg:x="158900" fg:w="235"/><text x="53.9341%" y="879.50"></text></g><g><title>handle_mm_fault (53 samples, 0.02%)</title><rect x="53.7746%" y="709" width="0.0179%" height="15" fill="rgb(252,69,32)" fg:x="159168" fg:w="53"/><text x="54.0246%" y="719.50"></text></g><g><title>__clear_user (67 samples, 0.02%)</title><rect x="53.7706%" y="773" width="0.0226%" height="15" fill="rgb(232,204,19)" fg:x="159156" fg:w="67"/><text x="54.0206%" y="783.50"></text></g><g><title>asm_exc_page_fault (63 samples, 0.02%)</title><rect x="53.7719%" y="757" width="0.0213%" height="15" fill="rgb(249,15,47)" fg:x="159160" fg:w="63"/><text x="54.0219%" y="767.50"></text></g><g><title>exc_page_fault (57 samples, 0.02%)</title><rect x="53.7739%" y="741" width="0.0193%" height="15" fill="rgb(209,227,23)" fg:x="159166" fg:w="57"/><text x="54.0239%" y="751.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.02%)</title><rect x="53.7743%" y="725" width="0.0189%" height="15" fill="rgb(248,92,24)" fg:x="159167" fg:w="56"/><text x="54.0243%" y="735.50"></text></g><g><title>__vm_munmap (62 samples, 0.02%)</title><rect x="53.8081%" y="757" width="0.0209%" height="15" fill="rgb(247,59,2)" fg:x="159267" fg:w="62"/><text x="54.0581%" y="767.50"></text></g><g><title>__do_munmap (60 samples, 0.02%)</title><rect x="53.8087%" y="741" width="0.0203%" height="15" fill="rgb(221,30,5)" fg:x="159269" fg:w="60"/><text x="54.0587%" y="751.50"></text></g><g><title>do_mmap (69 samples, 0.02%)</title><rect x="53.8290%" y="741" width="0.0233%" height="15" fill="rgb(208,108,53)" fg:x="159329" fg:w="69"/><text x="54.0790%" y="751.50"></text></g><g><title>mmap_region (60 samples, 0.02%)</title><rect x="53.8320%" y="725" width="0.0203%" height="15" fill="rgb(211,183,26)" fg:x="159338" fg:w="60"/><text x="54.0820%" y="735.50"></text></g><g><title>elf_map (135 samples, 0.05%)</title><rect x="53.8077%" y="773" width="0.0456%" height="15" fill="rgb(232,132,4)" fg:x="159266" fg:w="135"/><text x="54.0577%" y="783.50"></text></g><g><title>vm_mmap_pgoff (72 samples, 0.02%)</title><rect x="53.8290%" y="757" width="0.0243%" height="15" fill="rgb(253,128,37)" fg:x="159329" fg:w="72"/><text x="54.0790%" y="767.50"></text></g><g><title>setup_arg_pages (64 samples, 0.02%)</title><rect x="53.8665%" y="773" width="0.0216%" height="15" fill="rgb(221,58,24)" fg:x="159440" fg:w="64"/><text x="54.1165%" y="783.50"></text></g><g><title>shift_arg_pages (34 samples, 0.01%)</title><rect x="53.8766%" y="757" width="0.0115%" height="15" fill="rgb(230,54,45)" fg:x="159470" fg:w="34"/><text x="54.1266%" y="767.50"></text></g><g><title>perf_event_mmap (49 samples, 0.02%)</title><rect x="53.9094%" y="725" width="0.0166%" height="15" fill="rgb(254,21,18)" fg:x="159567" fg:w="49"/><text x="54.1594%" y="735.50"></text></g><g><title>do_mmap (110 samples, 0.04%)</title><rect x="53.9040%" y="757" width="0.0372%" height="15" fill="rgb(221,108,0)" fg:x="159551" fg:w="110"/><text x="54.1540%" y="767.50"></text></g><g><title>mmap_region (109 samples, 0.04%)</title><rect x="53.9043%" y="741" width="0.0368%" height="15" fill="rgb(206,95,1)" fg:x="159552" fg:w="109"/><text x="54.1543%" y="751.50"></text></g><g><title>__x64_sys_execve (523 samples, 0.18%)</title><rect x="53.7655%" y="837" width="0.1767%" height="15" fill="rgb(237,52,5)" fg:x="159141" fg:w="523"/><text x="54.0155%" y="847.50"></text></g><g><title>do_execveat_common (523 samples, 0.18%)</title><rect x="53.7655%" y="821" width="0.1767%" height="15" fill="rgb(218,150,34)" fg:x="159141" fg:w="523"/><text x="54.0155%" y="831.50"></text></g><g><title>bprm_execve (523 samples, 0.18%)</title><rect x="53.7655%" y="805" width="0.1767%" height="15" fill="rgb(235,194,28)" fg:x="159141" fg:w="523"/><text x="54.0155%" y="815.50"></text></g><g><title>load_elf_binary (523 samples, 0.18%)</title><rect x="53.7655%" y="789" width="0.1767%" height="15" fill="rgb(245,92,18)" fg:x="159141" fg:w="523"/><text x="54.0155%" y="799.50"></text></g><g><title>vm_mmap_pgoff (116 samples, 0.04%)</title><rect x="53.9030%" y="773" width="0.0392%" height="15" fill="rgb(253,203,53)" fg:x="159548" fg:w="116"/><text x="54.1530%" y="783.50"></text></g><g><title>unlink_anon_vmas (54 samples, 0.02%)</title><rect x="53.9520%" y="741" width="0.0182%" height="15" fill="rgb(249,185,47)" fg:x="159693" fg:w="54"/><text x="54.2020%" y="751.50"></text></g><g><title>unlink_file_vma (33 samples, 0.01%)</title><rect x="53.9702%" y="741" width="0.0111%" height="15" fill="rgb(252,194,52)" fg:x="159747" fg:w="33"/><text x="54.2202%" y="751.50"></text></g><g><title>free_pgtables (103 samples, 0.03%)</title><rect x="53.9489%" y="757" width="0.0348%" height="15" fill="rgb(210,53,36)" fg:x="159684" fg:w="103"/><text x="54.1989%" y="767.50"></text></g><g><title>remove_vma (76 samples, 0.03%)</title><rect x="53.9898%" y="757" width="0.0257%" height="15" fill="rgb(237,37,25)" fg:x="159805" fg:w="76"/><text x="54.2398%" y="767.50"></text></g><g><title>kmem_cache_free (64 samples, 0.02%)</title><rect x="53.9939%" y="741" width="0.0216%" height="15" fill="rgb(242,116,27)" fg:x="159817" fg:w="64"/><text x="54.2439%" y="751.50"></text></g><g><title>tlb_finish_mmu (149 samples, 0.05%)</title><rect x="54.0155%" y="757" width="0.0503%" height="15" fill="rgb(213,185,26)" fg:x="159881" fg:w="149"/><text x="54.2655%" y="767.50"></text></g><g><title>release_pages (129 samples, 0.04%)</title><rect x="54.0223%" y="741" width="0.0436%" height="15" fill="rgb(225,204,8)" fg:x="159901" fg:w="129"/><text x="54.2723%" y="751.50"></text></g><g><title>mark_page_accessed (39 samples, 0.01%)</title><rect x="54.1236%" y="725" width="0.0132%" height="15" fill="rgb(254,111,37)" fg:x="160201" fg:w="39"/><text x="54.3736%" y="735.50"></text></g><g><title>page_remove_rmap (84 samples, 0.03%)</title><rect x="54.1368%" y="725" width="0.0284%" height="15" fill="rgb(242,35,9)" fg:x="160240" fg:w="84"/><text x="54.3868%" y="735.50"></text></g><g><title>unmap_page_range (308 samples, 0.10%)</title><rect x="54.0665%" y="741" width="0.1041%" height="15" fill="rgb(232,138,49)" fg:x="160032" fg:w="308"/><text x="54.3165%" y="751.50"></text></g><g><title>exit_mmap (672 samples, 0.23%)</title><rect x="53.9459%" y="773" width="0.2270%" height="15" fill="rgb(247,56,4)" fg:x="159675" fg:w="672"/><text x="54.1959%" y="783.50"></text></g><g><title>unmap_vmas (316 samples, 0.11%)</title><rect x="54.0662%" y="757" width="0.1068%" height="15" fill="rgb(226,179,17)" fg:x="160031" fg:w="316"/><text x="54.3162%" y="767.50"></text></g><g><title>mmput (673 samples, 0.23%)</title><rect x="53.9459%" y="789" width="0.2274%" height="15" fill="rgb(216,163,45)" fg:x="159675" fg:w="673"/><text x="54.1959%" y="799.50"></text></g><g><title>__fput (42 samples, 0.01%)</title><rect x="54.1750%" y="773" width="0.0142%" height="15" fill="rgb(211,157,3)" fg:x="160353" fg:w="42"/><text x="54.4250%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,264 samples, 0.43%)</title><rect x="53.7645%" y="869" width="0.4270%" height="15" fill="rgb(234,44,20)" fg:x="159138" fg:w="1264"/><text x="54.0145%" y="879.50"></text></g><g><title>do_syscall_64 (1,261 samples, 0.43%)</title><rect x="53.7655%" y="853" width="0.4260%" height="15" fill="rgb(254,138,23)" fg:x="159141" fg:w="1261"/><text x="54.0155%" y="863.50"></text></g><g><title>__x64_sys_exit_group (738 samples, 0.25%)</title><rect x="53.9422%" y="837" width="0.2493%" height="15" fill="rgb(206,119,39)" fg:x="159664" fg:w="738"/><text x="54.1922%" y="847.50"></text></g><g><title>do_group_exit (738 samples, 0.25%)</title><rect x="53.9422%" y="821" width="0.2493%" height="15" fill="rgb(231,105,52)" fg:x="159664" fg:w="738"/><text x="54.1922%" y="831.50"></text></g><g><title>do_exit (738 samples, 0.25%)</title><rect x="53.9422%" y="805" width="0.2493%" height="15" fill="rgb(250,20,5)" fg:x="159664" fg:w="738"/><text x="54.1922%" y="815.50"></text></g><g><title>task_work_run (49 samples, 0.02%)</title><rect x="54.1750%" y="789" width="0.0166%" height="15" fill="rgb(215,198,30)" fg:x="160353" fg:w="49"/><text x="54.4250%" y="799.50"></text></g><g><title>sed (8,178 samples, 2.76%)</title><rect x="51.4316%" y="885" width="2.7629%" height="15" fill="rgb(246,142,8)" fg:x="152233" fg:w="8178"/><text x="51.6816%" y="895.50">sed</text></g><g><title>[anon] (537 samples, 0.18%)</title><rect x="54.2033%" y="869" width="0.1814%" height="15" fill="rgb(243,26,38)" fg:x="160437" fg:w="537"/><text x="54.4533%" y="879.50"></text></g><g><title>inode_permission.part.0 (43 samples, 0.01%)</title><rect x="54.4459%" y="725" width="0.0145%" height="15" fill="rgb(205,133,28)" fg:x="161155" fg:w="43"/><text x="54.6959%" y="735.50"></text></g><g><title>lookup_fast (63 samples, 0.02%)</title><rect x="54.4621%" y="709" width="0.0213%" height="15" fill="rgb(212,34,0)" fg:x="161203" fg:w="63"/><text x="54.7121%" y="719.50"></text></g><g><title>__d_lookup_rcu (57 samples, 0.02%)</title><rect x="54.4642%" y="693" width="0.0193%" height="15" fill="rgb(251,226,22)" fg:x="161209" fg:w="57"/><text x="54.7142%" y="703.50"></text></g><g><title>link_path_walk.part.0 (138 samples, 0.05%)</title><rect x="54.4388%" y="741" width="0.0466%" height="15" fill="rgb(252,119,9)" fg:x="161134" fg:w="138"/><text x="54.6888%" y="751.50"></text></g><g><title>walk_component (73 samples, 0.02%)</title><rect x="54.4608%" y="725" width="0.0247%" height="15" fill="rgb(213,150,50)" fg:x="161199" fg:w="73"/><text x="54.7108%" y="735.50"></text></g><g><title>path_lookupat (194 samples, 0.07%)</title><rect x="54.4348%" y="757" width="0.0655%" height="15" fill="rgb(212,24,39)" fg:x="161122" fg:w="194"/><text x="54.6848%" y="767.50"></text></g><g><title>filename_lookup (214 samples, 0.07%)</title><rect x="54.4283%" y="773" width="0.0723%" height="15" fill="rgb(213,46,39)" fg:x="161103" fg:w="214"/><text x="54.6783%" y="783.50"></text></g><g><title>user_path_at_empty (43 samples, 0.01%)</title><rect x="54.5091%" y="773" width="0.0145%" height="15" fill="rgb(239,106,12)" fg:x="161342" fg:w="43"/><text x="54.7591%" y="783.50"></text></g><g><title>getname_flags.part.0 (40 samples, 0.01%)</title><rect x="54.5101%" y="757" width="0.0135%" height="15" fill="rgb(249,229,21)" fg:x="161345" fg:w="40"/><text x="54.7601%" y="767.50"></text></g><g><title>__do_sys_newlstat (302 samples, 0.10%)</title><rect x="54.4219%" y="805" width="0.1020%" height="15" fill="rgb(212,158,3)" fg:x="161084" fg:w="302"/><text x="54.6719%" y="815.50"></text></g><g><title>vfs_statx (295 samples, 0.10%)</title><rect x="54.4243%" y="789" width="0.0997%" height="15" fill="rgb(253,26,48)" fg:x="161091" fg:w="295"/><text x="54.6743%" y="799.50"></text></g><g><title>do_syscall_64 (306 samples, 0.10%)</title><rect x="54.4216%" y="821" width="0.1034%" height="15" fill="rgb(238,178,20)" fg:x="161083" fg:w="306"/><text x="54.6716%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (311 samples, 0.11%)</title><rect x="54.4216%" y="837" width="0.1051%" height="15" fill="rgb(208,86,15)" fg:x="161083" fg:w="311"/><text x="54.6716%" y="847.50"></text></g><g><title>__GI___lxstat (321 samples, 0.11%)</title><rect x="54.4185%" y="853" width="0.1084%" height="15" fill="rgb(239,42,53)" fg:x="161074" fg:w="321"/><text x="54.6685%" y="863.50"></text></g><g><title>__GI___mkdir (30 samples, 0.01%)</title><rect x="54.5270%" y="853" width="0.0101%" height="15" fill="rgb(245,226,8)" fg:x="161395" fg:w="30"/><text x="54.7770%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="54.5270%" y="837" width="0.0101%" height="15" fill="rgb(216,176,32)" fg:x="161395" fg:w="30"/><text x="54.7770%" y="847.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="54.5270%" y="821" width="0.0101%" height="15" fill="rgb(231,186,21)" fg:x="161395" fg:w="30"/><text x="54.7770%" y="831.50"></text></g><g><title>do_mkdirat (30 samples, 0.01%)</title><rect x="54.5270%" y="805" width="0.0101%" height="15" fill="rgb(205,95,49)" fg:x="161395" fg:w="30"/><text x="54.7770%" y="815.50"></text></g><g><title>btrfs_search_slot (31 samples, 0.01%)</title><rect x="54.5466%" y="741" width="0.0105%" height="15" fill="rgb(217,145,8)" fg:x="161453" fg:w="31"/><text x="54.7966%" y="751.50"></text></g><g><title>btrfs_real_readdir (65 samples, 0.02%)</title><rect x="54.5402%" y="757" width="0.0220%" height="15" fill="rgb(239,144,48)" fg:x="161434" fg:w="65"/><text x="54.7902%" y="767.50"></text></g><g><title>do_syscall_64 (74 samples, 0.03%)</title><rect x="54.5385%" y="805" width="0.0250%" height="15" fill="rgb(214,189,23)" fg:x="161429" fg:w="74"/><text x="54.7885%" y="815.50"></text></g><g><title>__x64_sys_getdents64 (74 samples, 0.03%)</title><rect x="54.5385%" y="789" width="0.0250%" height="15" fill="rgb(229,157,17)" fg:x="161429" fg:w="74"/><text x="54.7885%" y="799.50"></text></g><g><title>iterate_dir (71 samples, 0.02%)</title><rect x="54.5395%" y="773" width="0.0240%" height="15" fill="rgb(230,5,48)" fg:x="161432" fg:w="71"/><text x="54.7895%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.03%)</title><rect x="54.5385%" y="821" width="0.0253%" height="15" fill="rgb(224,156,48)" fg:x="161429" fg:w="75"/><text x="54.7885%" y="831.50"></text></g><g><title>__GI___readdir64 (81 samples, 0.03%)</title><rect x="54.5371%" y="853" width="0.0274%" height="15" fill="rgb(223,14,29)" fg:x="161425" fg:w="81"/><text x="54.7871%" y="863.50"></text></g><g><title>__GI___getdents64 (77 samples, 0.03%)</title><rect x="54.5385%" y="837" width="0.0260%" height="15" fill="rgb(229,96,36)" fg:x="161429" fg:w="77"/><text x="54.7885%" y="847.50"></text></g><g><title>inode_permission.part.0 (30 samples, 0.01%)</title><rect x="54.5844%" y="725" width="0.0101%" height="15" fill="rgb(231,102,53)" fg:x="161565" fg:w="30"/><text x="54.8344%" y="735.50"></text></g><g><title>lookup_fast (37 samples, 0.01%)</title><rect x="54.5966%" y="709" width="0.0125%" height="15" fill="rgb(210,77,38)" fg:x="161601" fg:w="37"/><text x="54.8466%" y="719.50"></text></g><g><title>__d_lookup_rcu (33 samples, 0.01%)</title><rect x="54.5979%" y="693" width="0.0111%" height="15" fill="rgb(235,131,6)" fg:x="161605" fg:w="33"/><text x="54.8479%" y="703.50"></text></g><g><title>link_path_walk.part.0 (100 samples, 0.03%)</title><rect x="54.5790%" y="741" width="0.0338%" height="15" fill="rgb(252,55,38)" fg:x="161549" fg:w="100"/><text x="54.8290%" y="751.50"></text></g><g><title>walk_component (54 samples, 0.02%)</title><rect x="54.5946%" y="725" width="0.0182%" height="15" fill="rgb(246,38,14)" fg:x="161595" fg:w="54"/><text x="54.8446%" y="735.50"></text></g><g><title>path_lookupat (118 samples, 0.04%)</title><rect x="54.5763%" y="757" width="0.0399%" height="15" fill="rgb(242,27,5)" fg:x="161541" fg:w="118"/><text x="54.8263%" y="767.50"></text></g><g><title>filename_lookup (132 samples, 0.04%)</title><rect x="54.5719%" y="773" width="0.0446%" height="15" fill="rgb(228,65,35)" fg:x="161528" fg:w="132"/><text x="54.8219%" y="783.50"></text></g><g><title>user_path_at_empty (34 samples, 0.01%)</title><rect x="54.6226%" y="773" width="0.0115%" height="15" fill="rgb(245,93,11)" fg:x="161678" fg:w="34"/><text x="54.8726%" y="783.50"></text></g><g><title>getname_flags.part.0 (34 samples, 0.01%)</title><rect x="54.6226%" y="757" width="0.0115%" height="15" fill="rgb(213,1,31)" fg:x="161678" fg:w="34"/><text x="54.8726%" y="767.50"></text></g><g><title>__do_sys_newstat (204 samples, 0.07%)</title><rect x="54.5655%" y="805" width="0.0689%" height="15" fill="rgb(237,205,14)" fg:x="161509" fg:w="204"/><text x="54.8155%" y="815.50"></text></g><g><title>vfs_statx (192 samples, 0.06%)</title><rect x="54.5696%" y="789" width="0.0649%" height="15" fill="rgb(232,118,45)" fg:x="161521" fg:w="192"/><text x="54.8196%" y="799.50"></text></g><g><title>do_syscall_64 (206 samples, 0.07%)</title><rect x="54.5655%" y="821" width="0.0696%" height="15" fill="rgb(218,5,6)" fg:x="161509" fg:w="206"/><text x="54.8155%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (209 samples, 0.07%)</title><rect x="54.5652%" y="837" width="0.0706%" height="15" fill="rgb(251,87,51)" fg:x="161508" fg:w="209"/><text x="54.8152%" y="847.50"></text></g><g><title>__GI___xstat (213 samples, 0.07%)</title><rect x="54.5645%" y="853" width="0.0720%" height="15" fill="rgb(207,225,20)" fg:x="161506" fg:w="213"/><text x="54.8145%" y="863.50"></text></g><g><title>__GI_remove (70 samples, 0.02%)</title><rect x="54.6365%" y="853" width="0.0236%" height="15" fill="rgb(222,78,54)" fg:x="161719" fg:w="70"/><text x="54.8865%" y="863.50"></text></g><g><title>__unlink (41 samples, 0.01%)</title><rect x="54.6463%" y="837" width="0.0139%" height="15" fill="rgb(232,85,16)" fg:x="161748" fg:w="41"/><text x="54.8963%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="54.6463%" y="821" width="0.0139%" height="15" fill="rgb(244,25,33)" fg:x="161748" fg:w="41"/><text x="54.8963%" y="831.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="54.6463%" y="805" width="0.0139%" height="15" fill="rgb(233,24,36)" fg:x="161748" fg:w="41"/><text x="54.8963%" y="815.50"></text></g><g><title>do_unlinkat (37 samples, 0.01%)</title><rect x="54.6476%" y="789" width="0.0125%" height="15" fill="rgb(253,49,54)" fg:x="161752" fg:w="37"/><text x="54.8976%" y="799.50"></text></g><g><title>do_rmdir (41 samples, 0.01%)</title><rect x="54.6604%" y="805" width="0.0139%" height="15" fill="rgb(245,12,22)" fg:x="161790" fg:w="41"/><text x="54.9104%" y="815.50"></text></g><g><title>vfs_rmdir.part.0 (41 samples, 0.01%)</title><rect x="54.6604%" y="789" width="0.0139%" height="15" fill="rgb(253,141,28)" fg:x="161790" fg:w="41"/><text x="54.9104%" y="799.50"></text></g><g><title>__GI_unlinkat (51 samples, 0.02%)</title><rect x="54.6601%" y="853" width="0.0172%" height="15" fill="rgb(225,207,27)" fg:x="161789" fg:w="51"/><text x="54.9101%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="54.6601%" y="837" width="0.0172%" height="15" fill="rgb(220,84,2)" fg:x="161789" fg:w="51"/><text x="54.9101%" y="847.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="54.6601%" y="821" width="0.0172%" height="15" fill="rgb(224,37,37)" fg:x="161789" fg:w="51"/><text x="54.9101%" y="831.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="54.6949%" y="805" width="0.0108%" height="15" fill="rgb(220,143,18)" fg:x="161892" fg:w="32"/><text x="54.9449%" y="815.50"></text></g><g><title>__x64_sys_openat (32 samples, 0.01%)</title><rect x="54.6949%" y="789" width="0.0108%" height="15" fill="rgb(210,88,33)" fg:x="161892" fg:w="32"/><text x="54.9449%" y="799.50"></text></g><g><title>do_sys_openat2 (32 samples, 0.01%)</title><rect x="54.6949%" y="773" width="0.0108%" height="15" fill="rgb(219,87,51)" fg:x="161892" fg:w="32"/><text x="54.9449%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.01%)</title><rect x="54.6949%" y="821" width="0.0115%" height="15" fill="rgb(211,7,35)" fg:x="161892" fg:w="34"/><text x="54.9449%" y="831.50"></text></g><g><title>__GI___open64_nocancel (35 samples, 0.01%)</title><rect x="54.6949%" y="837" width="0.0118%" height="15" fill="rgb(232,77,2)" fg:x="161892" fg:w="35"/><text x="54.9449%" y="847.50"></text></g><g><title>__opendir (36 samples, 0.01%)</title><rect x="54.6949%" y="853" width="0.0122%" height="15" fill="rgb(249,94,25)" fg:x="161892" fg:w="36"/><text x="54.9449%" y="863.50"></text></g><g><title>jni_GetByteArrayRegion (35 samples, 0.01%)</title><rect x="54.7108%" y="853" width="0.0118%" height="15" fill="rgb(215,112,2)" fg:x="161939" fg:w="35"/><text x="54.9608%" y="863.50"></text></g><g><title>jni_GetObjectField (32 samples, 0.01%)</title><rect x="54.7226%" y="853" width="0.0108%" height="15" fill="rgb(226,115,48)" fg:x="161974" fg:w="32"/><text x="54.9726%" y="863.50"></text></g><g><title>InstanceKlass::allocate_instance (33 samples, 0.01%)</title><rect x="54.7490%" y="837" width="0.0111%" height="15" fill="rgb(249,196,10)" fg:x="162052" fg:w="33"/><text x="54.9990%" y="847.50"></text></g><g><title>JavaCalls::call_helper (66 samples, 0.02%)</title><rect x="54.7807%" y="821" width="0.0223%" height="15" fill="rgb(237,109,14)" fg:x="162146" fg:w="66"/><text x="55.0307%" y="831.50"></text></g><g><title>jni_NewObjectV (182 samples, 0.06%)</title><rect x="54.7436%" y="853" width="0.0615%" height="15" fill="rgb(217,103,53)" fg:x="162036" fg:w="182"/><text x="54.9936%" y="863.50"></text></g><g><title>jni_invoke_nonstatic (97 samples, 0.03%)</title><rect x="54.7723%" y="837" width="0.0328%" height="15" fill="rgb(244,137,9)" fg:x="162121" fg:w="97"/><text x="55.0223%" y="847.50"></text></g><g><title>[libunix_jni.so] (1,311 samples, 0.44%)</title><rect x="54.3848%" y="869" width="0.4429%" height="15" fill="rgb(227,201,3)" fg:x="160974" fg:w="1311"/><text x="54.6348%" y="879.50"></text></g><g><title>InstanceKlass::link_class_impl (74 samples, 0.03%)</title><rect x="76.6459%" y="821" width="0.0250%" height="15" fill="rgb(243,94,6)" fg:x="226865" fg:w="74"/><text x="76.8959%" y="831.50"></text></g><g><title>InterpreterRuntime::_new (117 samples, 0.04%)</title><rect x="76.6324%" y="853" width="0.0395%" height="15" fill="rgb(235,118,5)" fg:x="226825" fg:w="117"/><text x="76.8824%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (78 samples, 0.03%)</title><rect x="76.6456%" y="837" width="0.0264%" height="15" fill="rgb(247,10,30)" fg:x="226864" fg:w="78"/><text x="76.8956%" y="847.50"></text></g><g><title>ObjArrayAllocator::initialize (38 samples, 0.01%)</title><rect x="76.7013%" y="789" width="0.0128%" height="15" fill="rgb(205,26,28)" fg:x="227029" fg:w="38"/><text x="76.9513%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (63 samples, 0.02%)</title><rect x="76.6949%" y="821" width="0.0213%" height="15" fill="rgb(206,99,35)" fg:x="227010" fg:w="63"/><text x="76.9449%" y="831.50"></text></g><g><title>MemAllocator::allocate (61 samples, 0.02%)</title><rect x="76.6956%" y="805" width="0.0206%" height="15" fill="rgb(238,130,40)" fg:x="227012" fg:w="61"/><text x="76.9456%" y="815.50"></text></g><g><title>InstanceKlass::allocate_objArray (101 samples, 0.03%)</title><rect x="76.6888%" y="837" width="0.0341%" height="15" fill="rgb(224,126,31)" fg:x="226992" fg:w="101"/><text x="76.9388%" y="847.50"></text></g><g><title>InterpreterRuntime::anewarray (157 samples, 0.05%)</title><rect x="76.6719%" y="853" width="0.0530%" height="15" fill="rgb(254,105,17)" fg:x="226942" fg:w="157"/><text x="76.9219%" y="863.50"></text></g><g><title>TieredThresholdPolicy::call_event (47 samples, 0.02%)</title><rect x="76.7723%" y="789" width="0.0159%" height="15" fill="rgb(216,87,36)" fg:x="227239" fg:w="47"/><text x="77.0223%" y="799.50"></text></g><g><title>Monitor::lock (35 samples, 0.01%)</title><rect x="76.7956%" y="725" width="0.0118%" height="15" fill="rgb(240,21,12)" fg:x="227308" fg:w="35"/><text x="77.0456%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="76.8084%" y="693" width="0.0105%" height="15" fill="rgb(245,192,34)" fg:x="227346" fg:w="31"/><text x="77.0584%" y="703.50"></text></g><g><title>__pthread_cond_signal (32 samples, 0.01%)</title><rect x="76.8084%" y="725" width="0.0108%" height="15" fill="rgb(226,100,49)" fg:x="227346" fg:w="32"/><text x="77.0584%" y="735.50"></text></g><g><title>futex_wake (32 samples, 0.01%)</title><rect x="76.8084%" y="709" width="0.0108%" height="15" fill="rgb(245,188,27)" fg:x="227346" fg:w="32"/><text x="77.0584%" y="719.50"></text></g><g><title>CompileBroker::compile_method_base (82 samples, 0.03%)</title><rect x="76.7922%" y="741" width="0.0277%" height="15" fill="rgb(212,170,8)" fg:x="227298" fg:w="82"/><text x="77.0422%" y="751.50"></text></g><g><title>CompileBroker::compile_method (99 samples, 0.03%)</title><rect x="76.7888%" y="757" width="0.0334%" height="15" fill="rgb(217,113,29)" fg:x="227288" fg:w="99"/><text x="77.0388%" y="767.50"></text></g><g><title>TieredThresholdPolicy::compile (104 samples, 0.04%)</title><rect x="76.7885%" y="789" width="0.0351%" height="15" fill="rgb(237,30,3)" fg:x="227287" fg:w="104"/><text x="77.0385%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (104 samples, 0.04%)</title><rect x="76.7885%" y="773" width="0.0351%" height="15" fill="rgb(227,19,28)" fg:x="227287" fg:w="104"/><text x="77.0385%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (214 samples, 0.07%)</title><rect x="76.7517%" y="821" width="0.0723%" height="15" fill="rgb(239,172,45)" fg:x="227178" fg:w="214"/><text x="77.0017%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (181 samples, 0.06%)</title><rect x="76.7628%" y="805" width="0.0612%" height="15" fill="rgb(254,55,39)" fg:x="227211" fg:w="181"/><text x="77.0128%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (258 samples, 0.09%)</title><rect x="76.7375%" y="853" width="0.0872%" height="15" fill="rgb(249,208,12)" fg:x="227136" fg:w="258"/><text x="76.9875%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (258 samples, 0.09%)</title><rect x="76.7375%" y="837" width="0.0872%" height="15" fill="rgb(240,52,13)" fg:x="227136" fg:w="258"/><text x="76.9875%" y="847.50"></text></g><g><title>CodeCache::find_blob (31 samples, 0.01%)</title><rect x="76.8395%" y="821" width="0.0105%" height="15" fill="rgb(252,149,13)" fg:x="227438" fg:w="31"/><text x="77.0895%" y="831.50"></text></g><g><title>JavaThread::pd_last_frame (33 samples, 0.01%)</title><rect x="76.8392%" y="837" width="0.0111%" height="15" fill="rgb(232,81,48)" fg:x="227437" fg:w="33"/><text x="77.0892%" y="847.50"></text></g><g><title>InterpreterRuntime::ldc (86 samples, 0.03%)</title><rect x="76.8246%" y="853" width="0.0291%" height="15" fill="rgb(222,144,2)" fg:x="227394" fg:w="86"/><text x="77.0746%" y="863.50"></text></g><g><title>ObjectMonitor::enter (36 samples, 0.01%)</title><rect x="76.8537%" y="837" width="0.0122%" height="15" fill="rgb(216,81,32)" fg:x="227480" fg:w="36"/><text x="77.1037%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.01%)</title><rect x="76.8675%" y="549" width="0.0101%" height="15" fill="rgb(244,78,51)" fg:x="227521" fg:w="30"/><text x="77.1175%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="76.8675%" y="533" width="0.0101%" height="15" fill="rgb(217,66,21)" fg:x="227521" fg:w="30"/><text x="77.1175%" y="543.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="76.8675%" y="517" width="0.0101%" height="15" fill="rgb(247,101,42)" fg:x="227521" fg:w="30"/><text x="77.1175%" y="527.50"></text></g><g><title>finish_task_switch (31 samples, 0.01%)</title><rect x="76.8675%" y="565" width="0.0105%" height="15" fill="rgb(227,81,39)" fg:x="227521" fg:w="31"/><text x="77.1175%" y="575.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.01%)</title><rect x="76.8669%" y="741" width="0.0118%" height="15" fill="rgb(220,223,44)" fg:x="227519" fg:w="35"/><text x="77.1169%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.01%)</title><rect x="76.8669%" y="725" width="0.0118%" height="15" fill="rgb(205,218,2)" fg:x="227519" fg:w="35"/><text x="77.1169%" y="735.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.01%)</title><rect x="76.8669%" y="709" width="0.0118%" height="15" fill="rgb(212,207,28)" fg:x="227519" fg:w="35"/><text x="77.1169%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.01%)</title><rect x="76.8672%" y="693" width="0.0115%" height="15" fill="rgb(224,12,41)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="703.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="76.8672%" y="677" width="0.0115%" height="15" fill="rgb(216,118,12)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="687.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.01%)</title><rect x="76.8672%" y="661" width="0.0115%" height="15" fill="rgb(252,97,46)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="671.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="76.8672%" y="645" width="0.0115%" height="15" fill="rgb(244,206,19)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="655.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="76.8672%" y="629" width="0.0115%" height="15" fill="rgb(231,84,31)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="639.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="76.8672%" y="613" width="0.0115%" height="15" fill="rgb(244,133,0)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="623.50"></text></g><g><title>schedule (34 samples, 0.01%)</title><rect x="76.8672%" y="597" width="0.0115%" height="15" fill="rgb(223,15,50)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="607.50"></text></g><g><title>__schedule (34 samples, 0.01%)</title><rect x="76.8672%" y="581" width="0.0115%" height="15" fill="rgb(250,118,49)" fg:x="227520" fg:w="34"/><text x="77.1172%" y="591.50"></text></g><g><title>Monitor::IWait (38 samples, 0.01%)</title><rect x="76.8665%" y="773" width="0.0128%" height="15" fill="rgb(248,25,38)" fg:x="227518" fg:w="38"/><text x="77.1165%" y="783.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.01%)</title><rect x="76.8669%" y="757" width="0.0125%" height="15" fill="rgb(215,70,14)" fg:x="227519" fg:w="37"/><text x="77.1169%" y="767.50"></text></g><g><title>Monitor::wait (46 samples, 0.02%)</title><rect x="76.8665%" y="789" width="0.0155%" height="15" fill="rgb(215,28,15)" fg:x="227518" fg:w="46"/><text x="77.1165%" y="799.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (51 samples, 0.02%)</title><rect x="76.8662%" y="821" width="0.0172%" height="15" fill="rgb(243,6,28)" fg:x="227517" fg:w="51"/><text x="77.1162%" y="831.50"></text></g><g><title>VMThread::execute (51 samples, 0.02%)</title><rect x="76.8662%" y="805" width="0.0172%" height="15" fill="rgb(222,130,1)" fg:x="227517" fg:w="51"/><text x="77.1162%" y="815.50"></text></g><g><title>ObjectSynchronizer::fast_enter (53 samples, 0.02%)</title><rect x="76.8659%" y="837" width="0.0179%" height="15" fill="rgb(236,166,44)" fg:x="227516" fg:w="53"/><text x="77.1159%" y="847.50"></text></g><g><title>InterpreterRuntime::monitorenter (96 samples, 0.03%)</title><rect x="76.8537%" y="853" width="0.0324%" height="15" fill="rgb(221,108,14)" fg:x="227480" fg:w="96"/><text x="77.1037%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (49 samples, 0.02%)</title><rect x="76.9054%" y="837" width="0.0166%" height="15" fill="rgb(252,3,45)" fg:x="227633" fg:w="49"/><text x="77.1554%" y="847.50"></text></g><g><title>LinkResolver::resolve_field_access (44 samples, 0.01%)</title><rect x="76.9071%" y="821" width="0.0149%" height="15" fill="rgb(237,68,30)" fg:x="227638" fg:w="44"/><text x="77.1571%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (48 samples, 0.02%)</title><rect x="76.9490%" y="805" width="0.0162%" height="15" fill="rgb(211,79,22)" fg:x="227762" fg:w="48"/><text x="77.1990%" y="815.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (31 samples, 0.01%)</title><rect x="76.9709%" y="789" width="0.0105%" height="15" fill="rgb(252,185,21)" fg:x="227827" fg:w="31"/><text x="77.2209%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (56 samples, 0.02%)</title><rect x="76.9652%" y="805" width="0.0189%" height="15" fill="rgb(225,189,26)" fg:x="227810" fg:w="56"/><text x="77.2152%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (34 samples, 0.01%)</title><rect x="76.9848%" y="789" width="0.0115%" height="15" fill="rgb(241,30,40)" fg:x="227868" fg:w="34"/><text x="77.2348%" y="799.50"></text></g><g><title>LinkResolver::resolve_static_call (48 samples, 0.02%)</title><rect x="76.9841%" y="805" width="0.0162%" height="15" fill="rgb(235,215,44)" fg:x="227866" fg:w="48"/><text x="77.2341%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (195 samples, 0.07%)</title><rect x="76.9365%" y="821" width="0.0659%" height="15" fill="rgb(205,8,29)" fg:x="227725" fg:w="195"/><text x="77.1865%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (260 samples, 0.09%)</title><rect x="76.9219%" y="837" width="0.0878%" height="15" fill="rgb(241,137,42)" fg:x="227682" fg:w="260"/><text x="77.1719%" y="847.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (34 samples, 0.01%)</title><rect x="77.0115%" y="773" width="0.0115%" height="15" fill="rgb(237,155,2)" fg:x="227947" fg:w="34"/><text x="77.2615%" y="783.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (34 samples, 0.01%)</title><rect x="77.0115%" y="757" width="0.0115%" height="15" fill="rgb(245,29,42)" fg:x="227947" fg:w="34"/><text x="77.2615%" y="767.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (58 samples, 0.02%)</title><rect x="77.0111%" y="789" width="0.0196%" height="15" fill="rgb(234,101,35)" fg:x="227946" fg:w="58"/><text x="77.2611%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (80 samples, 0.03%)</title><rect x="77.0098%" y="837" width="0.0270%" height="15" fill="rgb(228,64,37)" fg:x="227942" fg:w="80"/><text x="77.2598%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (76 samples, 0.03%)</title><rect x="77.0111%" y="821" width="0.0257%" height="15" fill="rgb(217,214,36)" fg:x="227946" fg:w="76"/><text x="77.2611%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (76 samples, 0.03%)</title><rect x="77.0111%" y="805" width="0.0257%" height="15" fill="rgb(243,70,3)" fg:x="227946" fg:w="76"/><text x="77.2611%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (403 samples, 0.14%)</title><rect x="76.9013%" y="853" width="0.1362%" height="15" fill="rgb(253,158,52)" fg:x="227621" fg:w="403"/><text x="77.1513%" y="863.50"></text></g><g><title>JVM_Clone (86 samples, 0.03%)</title><rect x="77.0466%" y="853" width="0.0291%" height="15" fill="rgb(234,111,54)" fg:x="228051" fg:w="86"/><text x="77.2966%" y="863.50"></text></g><g><title>JVM_GetClassDeclaredMethods (35 samples, 0.01%)</title><rect x="77.1071%" y="853" width="0.0118%" height="15" fill="rgb(217,70,32)" fg:x="228230" fg:w="35"/><text x="77.3571%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (35 samples, 0.01%)</title><rect x="77.1071%" y="837" width="0.0118%" height="15" fill="rgb(234,18,33)" fg:x="228230" fg:w="35"/><text x="77.3571%" y="847.50"></text></g><g><title>Reflection::new_method (33 samples, 0.01%)</title><rect x="77.1077%" y="821" width="0.0111%" height="15" fill="rgb(234,12,49)" fg:x="228232" fg:w="33"/><text x="77.3577%" y="831.50"></text></g><g><title>Monitor::wait (30 samples, 0.01%)</title><rect x="77.1263%" y="789" width="0.0101%" height="15" fill="rgb(236,10,21)" fg:x="228287" fg:w="30"/><text x="77.3763%" y="799.50"></text></g><g><title>VMThread::execute (32 samples, 0.01%)</title><rect x="77.1263%" y="805" width="0.0108%" height="15" fill="rgb(248,182,45)" fg:x="228287" fg:w="32"/><text x="77.3763%" y="815.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (41 samples, 0.01%)</title><rect x="77.1236%" y="821" width="0.0139%" height="15" fill="rgb(217,95,36)" fg:x="228279" fg:w="41"/><text x="77.3736%" y="831.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (53 samples, 0.02%)</title><rect x="77.1206%" y="837" width="0.0179%" height="15" fill="rgb(212,110,31)" fg:x="228270" fg:w="53"/><text x="77.3706%" y="847.50"></text></g><g><title>JVM_IHashCode (64 samples, 0.02%)</title><rect x="77.1203%" y="853" width="0.0216%" height="15" fill="rgb(206,32,53)" fg:x="228269" fg:w="64"/><text x="77.3703%" y="863.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (61 samples, 0.02%)</title><rect x="77.1473%" y="821" width="0.0206%" height="15" fill="rgb(246,141,37)" fg:x="228349" fg:w="61"/><text x="77.3973%" y="831.50"></text></g><g><title>JVM_InitStackTraceElementArray (71 samples, 0.02%)</title><rect x="77.1442%" y="853" width="0.0240%" height="15" fill="rgb(219,16,7)" fg:x="228340" fg:w="71"/><text x="77.3942%" y="863.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (66 samples, 0.02%)</title><rect x="77.1459%" y="837" width="0.0223%" height="15" fill="rgb(230,205,45)" fg:x="228345" fg:w="66"/><text x="77.3959%" y="847.50"></text></g><g><title>JVM_IsInterrupted (64 samples, 0.02%)</title><rect x="77.1780%" y="853" width="0.0216%" height="15" fill="rgb(231,43,49)" fg:x="228440" fg:w="64"/><text x="77.4280%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.04%)</title><rect x="77.2067%" y="597" width="0.0372%" height="15" fill="rgb(212,106,34)" fg:x="228525" fg:w="110"/><text x="77.4567%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (110 samples, 0.04%)</title><rect x="77.2067%" y="581" width="0.0372%" height="15" fill="rgb(206,83,17)" fg:x="228525" fg:w="110"/><text x="77.4567%" y="591.50"></text></g><g><title>native_write_msr (110 samples, 0.04%)</title><rect x="77.2067%" y="565" width="0.0372%" height="15" fill="rgb(244,154,49)" fg:x="228525" fg:w="110"/><text x="77.4567%" y="575.50"></text></g><g><title>finish_task_switch (127 samples, 0.04%)</title><rect x="77.2047%" y="613" width="0.0429%" height="15" fill="rgb(244,149,49)" fg:x="228519" fg:w="127"/><text x="77.4547%" y="623.50"></text></g><g><title>do_syscall_64 (130 samples, 0.04%)</title><rect x="77.2040%" y="725" width="0.0439%" height="15" fill="rgb(227,134,18)" fg:x="228517" fg:w="130"/><text x="77.4540%" y="735.50"></text></g><g><title>__x64_sys_futex (130 samples, 0.04%)</title><rect x="77.2040%" y="709" width="0.0439%" height="15" fill="rgb(237,116,36)" fg:x="228517" fg:w="130"/><text x="77.4540%" y="719.50"></text></g><g><title>do_futex (130 samples, 0.04%)</title><rect x="77.2040%" y="693" width="0.0439%" height="15" fill="rgb(205,129,40)" fg:x="228517" fg:w="130"/><text x="77.4540%" y="703.50"></text></g><g><title>futex_wait (129 samples, 0.04%)</title><rect x="77.2044%" y="677" width="0.0436%" height="15" fill="rgb(236,178,4)" fg:x="228518" fg:w="129"/><text x="77.4544%" y="687.50"></text></g><g><title>futex_wait_queue_me (129 samples, 0.04%)</title><rect x="77.2044%" y="661" width="0.0436%" height="15" fill="rgb(251,76,53)" fg:x="228518" fg:w="129"/><text x="77.4544%" y="671.50"></text></g><g><title>schedule (128 samples, 0.04%)</title><rect x="77.2047%" y="645" width="0.0432%" height="15" fill="rgb(242,92,40)" fg:x="228519" fg:w="128"/><text x="77.4547%" y="655.50"></text></g><g><title>__schedule (128 samples, 0.04%)</title><rect x="77.2047%" y="629" width="0.0432%" height="15" fill="rgb(209,45,30)" fg:x="228519" fg:w="128"/><text x="77.4547%" y="639.50"></text></g><g><title>__pthread_cond_wait (136 samples, 0.05%)</title><rect x="77.2023%" y="789" width="0.0459%" height="15" fill="rgb(218,157,36)" fg:x="228512" fg:w="136"/><text x="77.4523%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (136 samples, 0.05%)</title><rect x="77.2023%" y="773" width="0.0459%" height="15" fill="rgb(222,186,16)" fg:x="228512" fg:w="136"/><text x="77.4523%" y="783.50"></text></g><g><title>futex_wait_cancelable (134 samples, 0.05%)</title><rect x="77.2030%" y="757" width="0.0453%" height="15" fill="rgb(254,72,35)" fg:x="228514" fg:w="134"/><text x="77.4530%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.04%)</title><rect x="77.2040%" y="741" width="0.0443%" height="15" fill="rgb(224,25,35)" fg:x="228517" fg:w="131"/><text x="77.4540%" y="751.50"></text></g><g><title>ObjectMonitor::wait (150 samples, 0.05%)</title><rect x="77.2007%" y="821" width="0.0507%" height="15" fill="rgb(206,135,52)" fg:x="228507" fg:w="150"/><text x="77.4507%" y="831.50"></text></g><g><title>os::PlatformEvent::park (145 samples, 0.05%)</title><rect x="77.2023%" y="805" width="0.0490%" height="15" fill="rgb(229,174,47)" fg:x="228512" fg:w="145"/><text x="77.4523%" y="815.50"></text></g><g><title>JVM_MonitorWait (155 samples, 0.05%)</title><rect x="77.1996%" y="853" width="0.0524%" height="15" fill="rgb(242,184,21)" fg:x="228504" fg:w="155"/><text x="77.4496%" y="863.50"></text></g><g><title>ObjectSynchronizer::wait (154 samples, 0.05%)</title><rect x="77.2000%" y="837" width="0.0520%" height="15" fill="rgb(213,22,45)" fg:x="228505" fg:w="154"/><text x="77.4500%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (278 samples, 0.09%)</title><rect x="77.2804%" y="725" width="0.0939%" height="15" fill="rgb(237,81,54)" fg:x="228743" fg:w="278"/><text x="77.5304%" y="735.50"></text></g><g><title>SymbolTable::lookup_only (250 samples, 0.08%)</title><rect x="77.2899%" y="709" width="0.0845%" height="15" fill="rgb(248,177,18)" fg:x="228771" fg:w="250"/><text x="77.5399%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool (282 samples, 0.10%)</title><rect x="77.2797%" y="741" width="0.0953%" height="15" fill="rgb(254,31,16)" fg:x="228741" fg:w="282"/><text x="77.5297%" y="751.50"></text></g><g><title>ClassFileParser::parse_methods (65 samples, 0.02%)</title><rect x="77.3774%" y="741" width="0.0220%" height="15" fill="rgb(235,20,31)" fg:x="229030" fg:w="65"/><text x="77.6274%" y="751.50"></text></g><g><title>ClassFileParser::parse_method (65 samples, 0.02%)</title><rect x="77.3774%" y="725" width="0.0220%" height="15" fill="rgb(240,56,43)" fg:x="229030" fg:w="65"/><text x="77.6274%" y="735.50"></text></g><g><title>ClassFileParser::ClassFileParser (366 samples, 0.12%)</title><rect x="77.2784%" y="773" width="0.1237%" height="15" fill="rgb(237,197,51)" fg:x="228737" fg:w="366"/><text x="77.5284%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (366 samples, 0.12%)</title><rect x="77.2784%" y="757" width="0.1237%" height="15" fill="rgb(241,162,44)" fg:x="228737" fg:w="366"/><text x="77.5284%" y="767.50"></text></g><g><title>DefaultMethods::generate_default_methods (46 samples, 0.02%)</title><rect x="77.4051%" y="741" width="0.0155%" height="15" fill="rgb(224,23,20)" fg:x="229112" fg:w="46"/><text x="77.6551%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (74 samples, 0.03%)</title><rect x="77.4020%" y="757" width="0.0250%" height="15" fill="rgb(250,109,34)" fg:x="229103" fg:w="74"/><text x="77.6520%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (75 samples, 0.03%)</title><rect x="77.4020%" y="773" width="0.0253%" height="15" fill="rgb(214,175,50)" fg:x="229103" fg:w="75"/><text x="77.6520%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (466 samples, 0.16%)</title><rect x="77.2784%" y="789" width="0.1574%" height="15" fill="rgb(213,182,5)" fg:x="228737" fg:w="466"/><text x="77.5284%" y="799.50"></text></g><g><title>JVM_DefineClassWithSource (497 samples, 0.17%)</title><rect x="77.2743%" y="837" width="0.1679%" height="15" fill="rgb(209,199,19)" fg:x="228725" fg:w="497"/><text x="77.5243%" y="847.50"></text></g><g><title>jvm_define_class_common (497 samples, 0.17%)</title><rect x="77.2743%" y="821" width="0.1679%" height="15" fill="rgb(236,224,42)" fg:x="228725" fg:w="497"/><text x="77.5243%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (487 samples, 0.16%)</title><rect x="77.2777%" y="805" width="0.1645%" height="15" fill="rgb(246,226,29)" fg:x="228735" fg:w="487"/><text x="77.5277%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (520 samples, 0.18%)</title><rect x="77.2743%" y="853" width="0.1757%" height="15" fill="rgb(227,223,11)" fg:x="228725" fg:w="520"/><text x="77.5243%" y="863.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (35 samples, 0.01%)</title><rect x="77.4500%" y="853" width="0.0118%" height="15" fill="rgb(219,7,51)" fg:x="229245" fg:w="35"/><text x="77.7000%" y="863.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (35 samples, 0.01%)</title><rect x="77.4662%" y="853" width="0.0118%" height="15" fill="rgb(245,167,10)" fg:x="229293" fg:w="35"/><text x="77.7162%" y="863.50"></text></g><g><title>os_getParentPidAndTimings (35 samples, 0.01%)</title><rect x="77.4662%" y="837" width="0.0118%" height="15" fill="rgb(237,224,16)" fg:x="229293" fg:w="35"/><text x="77.7162%" y="847.50"></text></g><g><title>readFully (30 samples, 0.01%)</title><rect x="77.4922%" y="837" width="0.0101%" height="15" fill="rgb(226,132,13)" fg:x="229370" fg:w="30"/><text x="77.7422%" y="847.50"></text></g><g><title>copy_process (37 samples, 0.01%)</title><rect x="77.5047%" y="741" width="0.0125%" height="15" fill="rgb(214,140,3)" fg:x="229407" fg:w="37"/><text x="77.7547%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (114 samples, 0.04%)</title><rect x="77.5199%" y="645" width="0.0385%" height="15" fill="rgb(221,177,4)" fg:x="229452" fg:w="114"/><text x="77.7699%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (114 samples, 0.04%)</title><rect x="77.5199%" y="629" width="0.0385%" height="15" fill="rgb(238,139,3)" fg:x="229452" fg:w="114"/><text x="77.7699%" y="639.50"></text></g><g><title>native_write_msr (114 samples, 0.04%)</title><rect x="77.5199%" y="613" width="0.0385%" height="15" fill="rgb(216,17,39)" fg:x="229452" fg:w="114"/><text x="77.7699%" y="623.50"></text></g><g><title>finish_task_switch (119 samples, 0.04%)</title><rect x="77.5192%" y="661" width="0.0402%" height="15" fill="rgb(238,120,9)" fg:x="229450" fg:w="119"/><text x="77.7692%" y="671.50"></text></g><g><title>wait_for_completion_killable (128 samples, 0.04%)</title><rect x="77.5176%" y="741" width="0.0432%" height="15" fill="rgb(244,92,53)" fg:x="229445" fg:w="128"/><text x="77.7676%" y="751.50"></text></g><g><title>__wait_for_common (128 samples, 0.04%)</title><rect x="77.5176%" y="725" width="0.0432%" height="15" fill="rgb(224,148,33)" fg:x="229445" fg:w="128"/><text x="77.7676%" y="735.50"></text></g><g><title>schedule_timeout (123 samples, 0.04%)</title><rect x="77.5192%" y="709" width="0.0416%" height="15" fill="rgb(243,6,36)" fg:x="229450" fg:w="123"/><text x="77.7692%" y="719.50"></text></g><g><title>schedule (123 samples, 0.04%)</title><rect x="77.5192%" y="693" width="0.0416%" height="15" fill="rgb(230,102,11)" fg:x="229450" fg:w="123"/><text x="77.7692%" y="703.50"></text></g><g><title>__schedule (123 samples, 0.04%)</title><rect x="77.5192%" y="677" width="0.0416%" height="15" fill="rgb(234,148,36)" fg:x="229450" fg:w="123"/><text x="77.7692%" y="687.50"></text></g><g><title>do_syscall_64 (171 samples, 0.06%)</title><rect x="77.5037%" y="789" width="0.0578%" height="15" fill="rgb(251,153,25)" fg:x="229404" fg:w="171"/><text x="77.7537%" y="799.50"></text></g><g><title>__x64_sys_vfork (171 samples, 0.06%)</title><rect x="77.5037%" y="773" width="0.0578%" height="15" fill="rgb(215,129,8)" fg:x="229404" fg:w="171"/><text x="77.7537%" y="783.50"></text></g><g><title>kernel_clone (171 samples, 0.06%)</title><rect x="77.5037%" y="757" width="0.0578%" height="15" fill="rgb(224,128,35)" fg:x="229404" fg:w="171"/><text x="77.7537%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (172 samples, 0.06%)</title><rect x="77.5037%" y="805" width="0.0581%" height="15" fill="rgb(237,56,52)" fg:x="229404" fg:w="172"/><text x="77.7537%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (394 samples, 0.13%)</title><rect x="77.5676%" y="757" width="0.1331%" height="15" fill="rgb(234,213,19)" fg:x="229593" fg:w="394"/><text x="77.8176%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (391 samples, 0.13%)</title><rect x="77.5686%" y="741" width="0.1321%" height="15" fill="rgb(252,82,23)" fg:x="229596" fg:w="391"/><text x="77.8186%" y="751.50"></text></g><g><title>native_write_msr (391 samples, 0.13%)</title><rect x="77.5686%" y="725" width="0.1321%" height="15" fill="rgb(254,201,21)" fg:x="229596" fg:w="391"/><text x="77.8186%" y="735.50"></text></g><g><title>schedule_tail (420 samples, 0.14%)</title><rect x="77.5642%" y="789" width="0.1419%" height="15" fill="rgb(250,186,11)" fg:x="229583" fg:w="420"/><text x="77.8142%" y="799.50"></text></g><g><title>finish_task_switch (419 samples, 0.14%)</title><rect x="77.5645%" y="773" width="0.1416%" height="15" fill="rgb(211,174,5)" fg:x="229584" fg:w="419"/><text x="77.8145%" y="783.50"></text></g><g><title>__libc_vfork (608 samples, 0.21%)</title><rect x="77.5024%" y="821" width="0.2054%" height="15" fill="rgb(214,121,10)" fg:x="229400" fg:w="608"/><text x="77.7524%" y="831.50"></text></g><g><title>ret_from_fork (432 samples, 0.15%)</title><rect x="77.5618%" y="805" width="0.1460%" height="15" fill="rgb(241,66,2)" fg:x="229576" fg:w="432"/><text x="77.8118%" y="815.50"></text></g><g><title>bprm_execve (88 samples, 0.03%)</title><rect x="77.7108%" y="709" width="0.0297%" height="15" fill="rgb(220,167,19)" fg:x="230017" fg:w="88"/><text x="77.9608%" y="719.50"></text></g><g><title>JDK_execvpe (114 samples, 0.04%)</title><rect x="77.7078%" y="805" width="0.0385%" height="15" fill="rgb(231,54,50)" fg:x="230008" fg:w="114"/><text x="77.9578%" y="815.50"></text></g><g><title>__GI_execve (114 samples, 0.04%)</title><rect x="77.7078%" y="789" width="0.0385%" height="15" fill="rgb(239,217,53)" fg:x="230008" fg:w="114"/><text x="77.9578%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.04%)</title><rect x="77.7078%" y="773" width="0.0385%" height="15" fill="rgb(248,8,0)" fg:x="230008" fg:w="114"/><text x="77.9578%" y="783.50"></text></g><g><title>do_syscall_64 (114 samples, 0.04%)</title><rect x="77.7078%" y="757" width="0.0385%" height="15" fill="rgb(229,118,37)" fg:x="230008" fg:w="114"/><text x="77.9578%" y="767.50"></text></g><g><title>__x64_sys_execve (114 samples, 0.04%)</title><rect x="77.7078%" y="741" width="0.0385%" height="15" fill="rgb(253,223,43)" fg:x="230008" fg:w="114"/><text x="77.9578%" y="751.50"></text></g><g><title>do_execveat_common (114 samples, 0.04%)</title><rect x="77.7078%" y="725" width="0.0385%" height="15" fill="rgb(211,77,36)" fg:x="230008" fg:w="114"/><text x="77.9578%" y="735.50"></text></g><g><title>proc_readfd_common (33 samples, 0.01%)</title><rect x="77.7588%" y="693" width="0.0111%" height="15" fill="rgb(219,3,53)" fg:x="230159" fg:w="33"/><text x="78.0088%" y="703.50"></text></g><g><title>__GI___readdir64 (35 samples, 0.01%)</title><rect x="77.7584%" y="789" width="0.0118%" height="15" fill="rgb(244,45,42)" fg:x="230158" fg:w="35"/><text x="78.0084%" y="799.50"></text></g><g><title>__GI___getdents64 (35 samples, 0.01%)</title><rect x="77.7584%" y="773" width="0.0118%" height="15" fill="rgb(225,95,27)" fg:x="230158" fg:w="35"/><text x="78.0084%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="77.7584%" y="757" width="0.0118%" height="15" fill="rgb(207,74,8)" fg:x="230158" fg:w="35"/><text x="78.0084%" y="767.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="77.7584%" y="741" width="0.0118%" height="15" fill="rgb(243,63,36)" fg:x="230158" fg:w="35"/><text x="78.0084%" y="751.50"></text></g><g><title>__x64_sys_getdents64 (35 samples, 0.01%)</title><rect x="77.7584%" y="725" width="0.0118%" height="15" fill="rgb(211,180,12)" fg:x="230158" fg:w="35"/><text x="78.0084%" y="735.50"></text></g><g><title>iterate_dir (34 samples, 0.01%)</title><rect x="77.7588%" y="709" width="0.0115%" height="15" fill="rgb(254,166,49)" fg:x="230159" fg:w="34"/><text x="78.0088%" y="719.50"></text></g><g><title>link_path_walk.part.0 (34 samples, 0.01%)</title><rect x="77.7753%" y="661" width="0.0115%" height="15" fill="rgb(205,19,0)" fg:x="230208" fg:w="34"/><text x="78.0253%" y="671.50"></text></g><g><title>walk_component (34 samples, 0.01%)</title><rect x="77.7753%" y="645" width="0.0115%" height="15" fill="rgb(224,172,32)" fg:x="230208" fg:w="34"/><text x="78.0253%" y="655.50"></text></g><g><title>do_filp_open (51 samples, 0.02%)</title><rect x="77.7723%" y="693" width="0.0172%" height="15" fill="rgb(254,136,30)" fg:x="230199" fg:w="51"/><text x="78.0223%" y="703.50"></text></g><g><title>path_openat (51 samples, 0.02%)</title><rect x="77.7723%" y="677" width="0.0172%" height="15" fill="rgb(246,19,35)" fg:x="230199" fg:w="51"/><text x="78.0223%" y="687.50"></text></g><g><title>__opendir (55 samples, 0.02%)</title><rect x="77.7720%" y="789" width="0.0186%" height="15" fill="rgb(219,24,36)" fg:x="230198" fg:w="55"/><text x="78.0220%" y="799.50"></text></g><g><title>__GI___open64_nocancel (55 samples, 0.02%)</title><rect x="77.7720%" y="773" width="0.0186%" height="15" fill="rgb(251,55,1)" fg:x="230198" fg:w="55"/><text x="78.0220%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="77.7720%" y="757" width="0.0186%" height="15" fill="rgb(218,117,39)" fg:x="230198" fg:w="55"/><text x="78.0220%" y="767.50"></text></g><g><title>do_syscall_64 (55 samples, 0.02%)</title><rect x="77.7720%" y="741" width="0.0186%" height="15" fill="rgb(248,169,11)" fg:x="230198" fg:w="55"/><text x="78.0220%" y="751.50"></text></g><g><title>__x64_sys_openat (55 samples, 0.02%)</title><rect x="77.7720%" y="725" width="0.0186%" height="15" fill="rgb(244,40,44)" fg:x="230198" fg:w="55"/><text x="78.0220%" y="735.50"></text></g><g><title>do_sys_openat2 (55 samples, 0.02%)</title><rect x="77.7720%" y="709" width="0.0186%" height="15" fill="rgb(234,62,37)" fg:x="230198" fg:w="55"/><text x="78.0220%" y="719.50"></text></g><g><title>closeDescriptors (109 samples, 0.04%)</title><rect x="77.7557%" y="805" width="0.0368%" height="15" fill="rgb(207,117,42)" fg:x="230150" fg:w="109"/><text x="78.0057%" y="815.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (940 samples, 0.32%)</title><rect x="77.4780%" y="853" width="0.3176%" height="15" fill="rgb(213,43,2)" fg:x="229328" fg:w="940"/><text x="77.7280%" y="863.50"></text></g><g><title>vforkChild (868 samples, 0.29%)</title><rect x="77.5024%" y="837" width="0.2933%" height="15" fill="rgb(244,202,51)" fg:x="229400" fg:w="868"/><text x="77.7524%" y="847.50"></text></g><g><title>childProcess (260 samples, 0.09%)</title><rect x="77.7078%" y="821" width="0.0878%" height="15" fill="rgb(253,174,46)" fg:x="230008" fg:w="260"/><text x="77.9578%" y="831.50"></text></g><g><title>JVM_FillInStackTrace (47 samples, 0.02%)</title><rect x="77.7956%" y="837" width="0.0159%" height="15" fill="rgb(251,23,1)" fg:x="230268" fg:w="47"/><text x="78.0456%" y="847.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (47 samples, 0.02%)</title><rect x="77.7956%" y="821" width="0.0159%" height="15" fill="rgb(253,26,1)" fg:x="230268" fg:w="47"/><text x="78.0456%" y="831.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (45 samples, 0.02%)</title><rect x="77.7963%" y="805" width="0.0152%" height="15" fill="rgb(216,89,31)" fg:x="230270" fg:w="45"/><text x="78.0463%" y="815.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (48 samples, 0.02%)</title><rect x="77.7956%" y="853" width="0.0162%" height="15" fill="rgb(209,109,5)" fg:x="230268" fg:w="48"/><text x="78.0456%" y="863.50"></text></g><g><title>InstanceKlass::allocate_objArray (68 samples, 0.02%)</title><rect x="77.8240%" y="837" width="0.0230%" height="15" fill="rgb(229,63,13)" fg:x="230352" fg:w="68"/><text x="78.0740%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (67 samples, 0.02%)</title><rect x="77.8243%" y="821" width="0.0226%" height="15" fill="rgb(238,137,54)" fg:x="230353" fg:w="67"/><text x="78.0743%" y="831.50"></text></g><g><title>MemAllocator::allocate (67 samples, 0.02%)</title><rect x="77.8243%" y="805" width="0.0226%" height="15" fill="rgb(228,1,9)" fg:x="230353" fg:w="67"/><text x="78.0743%" y="815.50"></text></g><g><title>ObjArrayAllocator::initialize (62 samples, 0.02%)</title><rect x="77.8260%" y="789" width="0.0209%" height="15" fill="rgb(249,120,48)" fg:x="230358" fg:w="62"/><text x="78.0760%" y="799.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.02%)</title><rect x="77.8287%" y="773" width="0.0182%" height="15" fill="rgb(209,72,36)" fg:x="230366" fg:w="54"/><text x="78.0787%" y="783.50"></text></g><g><title>exc_page_fault (54 samples, 0.02%)</title><rect x="77.8287%" y="757" width="0.0182%" height="15" fill="rgb(247,98,49)" fg:x="230366" fg:w="54"/><text x="78.0787%" y="767.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.02%)</title><rect x="77.8287%" y="741" width="0.0182%" height="15" fill="rgb(233,75,36)" fg:x="230366" fg:w="54"/><text x="78.0787%" y="751.50"></text></g><g><title>handle_mm_fault (54 samples, 0.02%)</title><rect x="77.8287%" y="725" width="0.0182%" height="15" fill="rgb(225,14,24)" fg:x="230366" fg:w="54"/><text x="78.0787%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (54 samples, 0.02%)</title><rect x="77.8287%" y="709" width="0.0182%" height="15" fill="rgb(237,193,20)" fg:x="230366" fg:w="54"/><text x="78.0787%" y="719.50"></text></g><g><title>ObjArrayAllocator::initialize (58 samples, 0.02%)</title><rect x="77.8493%" y="789" width="0.0196%" height="15" fill="rgb(239,122,19)" fg:x="230427" fg:w="58"/><text x="78.0993%" y="799.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.02%)</title><rect x="77.8500%" y="773" width="0.0189%" height="15" fill="rgb(231,220,10)" fg:x="230429" fg:w="56"/><text x="78.1000%" y="783.50"></text></g><g><title>exc_page_fault (56 samples, 0.02%)</title><rect x="77.8500%" y="757" width="0.0189%" height="15" fill="rgb(220,66,15)" fg:x="230429" fg:w="56"/><text x="78.1000%" y="767.50"></text></g><g><title>do_user_addr_fault (55 samples, 0.02%)</title><rect x="77.8503%" y="741" width="0.0186%" height="15" fill="rgb(215,171,52)" fg:x="230430" fg:w="55"/><text x="78.1003%" y="751.50"></text></g><g><title>handle_mm_fault (55 samples, 0.02%)</title><rect x="77.8503%" y="725" width="0.0186%" height="15" fill="rgb(241,169,50)" fg:x="230430" fg:w="55"/><text x="78.1003%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (55 samples, 0.02%)</title><rect x="77.8503%" y="709" width="0.0186%" height="15" fill="rgb(236,189,0)" fg:x="230430" fg:w="55"/><text x="78.1003%" y="719.50"></text></g><g><title>TypeArrayKlass::allocate_common (66 samples, 0.02%)</title><rect x="77.8470%" y="837" width="0.0223%" height="15" fill="rgb(217,147,20)" fg:x="230420" fg:w="66"/><text x="78.0970%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (66 samples, 0.02%)</title><rect x="77.8470%" y="821" width="0.0223%" height="15" fill="rgb(206,188,39)" fg:x="230420" fg:w="66"/><text x="78.0970%" y="831.50"></text></g><g><title>MemAllocator::allocate (66 samples, 0.02%)</title><rect x="77.8470%" y="805" width="0.0223%" height="15" fill="rgb(227,118,25)" fg:x="230420" fg:w="66"/><text x="78.0970%" y="815.50"></text></g><g><title>OptoRuntime::new_array_C (137 samples, 0.05%)</title><rect x="77.8233%" y="853" width="0.0463%" height="15" fill="rgb(248,171,40)" fg:x="230350" fg:w="137"/><text x="78.0733%" y="863.50"></text></g><g><title>kernel_init_free_pages (76 samples, 0.03%)</title><rect x="77.8878%" y="629" width="0.0257%" height="15" fill="rgb(251,90,54)" fg:x="230541" fg:w="76"/><text x="78.1378%" y="639.50"></text></g><g><title>clear_page_erms (72 samples, 0.02%)</title><rect x="77.8892%" y="613" width="0.0243%" height="15" fill="rgb(234,11,46)" fg:x="230545" fg:w="72"/><text x="78.1392%" y="623.50"></text></g><g><title>alloc_pages_vma (87 samples, 0.03%)</title><rect x="77.8851%" y="693" width="0.0294%" height="15" fill="rgb(229,134,13)" fg:x="230533" fg:w="87"/><text x="78.1351%" y="703.50"></text></g><g><title>__alloc_pages_nodemask (87 samples, 0.03%)</title><rect x="77.8851%" y="677" width="0.0294%" height="15" fill="rgb(223,129,3)" fg:x="230533" fg:w="87"/><text x="78.1351%" y="687.50"></text></g><g><title>get_page_from_freelist (87 samples, 0.03%)</title><rect x="77.8851%" y="661" width="0.0294%" height="15" fill="rgb(221,124,13)" fg:x="230533" fg:w="87"/><text x="78.1351%" y="671.50"></text></g><g><title>prep_new_page (79 samples, 0.03%)</title><rect x="77.8878%" y="645" width="0.0267%" height="15" fill="rgb(234,3,18)" fg:x="230541" fg:w="79"/><text x="78.1378%" y="655.50"></text></g><g><title>clear_huge_page (50 samples, 0.02%)</title><rect x="77.9145%" y="693" width="0.0169%" height="15" fill="rgb(249,199,20)" fg:x="230620" fg:w="50"/><text x="78.1645%" y="703.50"></text></g><g><title>clear_subpage (48 samples, 0.02%)</title><rect x="77.9152%" y="677" width="0.0162%" height="15" fill="rgb(224,134,6)" fg:x="230622" fg:w="48"/><text x="78.1652%" y="687.50"></text></g><g><title>clear_page_erms (48 samples, 0.02%)</title><rect x="77.9152%" y="661" width="0.0162%" height="15" fill="rgb(254,83,26)" fg:x="230622" fg:w="48"/><text x="78.1652%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (160 samples, 0.05%)</title><rect x="77.8784%" y="837" width="0.0541%" height="15" fill="rgb(217,88,9)" fg:x="230513" fg:w="160"/><text x="78.1284%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (159 samples, 0.05%)</title><rect x="77.8787%" y="821" width="0.0537%" height="15" fill="rgb(225,73,2)" fg:x="230514" fg:w="159"/><text x="78.1287%" y="831.50"></text></g><g><title>MemAllocator::allocate (159 samples, 0.05%)</title><rect x="77.8787%" y="805" width="0.0537%" height="15" fill="rgb(226,44,39)" fg:x="230514" fg:w="159"/><text x="78.1287%" y="815.50"></text></g><g><title>ObjAllocator::initialize (145 samples, 0.05%)</title><rect x="77.8834%" y="789" width="0.0490%" height="15" fill="rgb(228,53,17)" fg:x="230528" fg:w="145"/><text x="78.1334%" y="799.50"></text></g><g><title>asm_exc_page_fault (143 samples, 0.05%)</title><rect x="77.8841%" y="773" width="0.0483%" height="15" fill="rgb(212,27,27)" fg:x="230530" fg:w="143"/><text x="78.1341%" y="783.50"></text></g><g><title>exc_page_fault (143 samples, 0.05%)</title><rect x="77.8841%" y="757" width="0.0483%" height="15" fill="rgb(241,50,6)" fg:x="230530" fg:w="143"/><text x="78.1341%" y="767.50"></text></g><g><title>do_user_addr_fault (143 samples, 0.05%)</title><rect x="77.8841%" y="741" width="0.0483%" height="15" fill="rgb(225,28,51)" fg:x="230530" fg:w="143"/><text x="78.1341%" y="751.50"></text></g><g><title>handle_mm_fault (143 samples, 0.05%)</title><rect x="77.8841%" y="725" width="0.0483%" height="15" fill="rgb(215,33,16)" fg:x="230530" fg:w="143"/><text x="78.1341%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (142 samples, 0.05%)</title><rect x="77.8845%" y="709" width="0.0480%" height="15" fill="rgb(243,40,39)" fg:x="230531" fg:w="142"/><text x="78.1345%" y="719.50"></text></g><g><title>OptoRuntime::new_instance_C (165 samples, 0.06%)</title><rect x="77.8770%" y="853" width="0.0557%" height="15" fill="rgb(225,11,42)" fg:x="230509" fg:w="165"/><text x="78.1270%" y="863.50"></text></g><g><title>TieredThresholdPolicy::call_event (37 samples, 0.01%)</title><rect x="77.9547%" y="805" width="0.0125%" height="15" fill="rgb(241,220,38)" fg:x="230739" fg:w="37"/><text x="78.2047%" y="815.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (59 samples, 0.02%)</title><rect x="77.9544%" y="821" width="0.0199%" height="15" fill="rgb(244,52,35)" fg:x="230738" fg:w="59"/><text x="78.2044%" y="831.50"></text></g><g><title>TieredThresholdPolicy::event (87 samples, 0.03%)</title><rect x="77.9453%" y="837" width="0.0294%" height="15" fill="rgb(246,42,46)" fg:x="230711" fg:w="87"/><text x="78.1953%" y="847.50"></text></g><g><title>frame::sender (33 samples, 0.01%)</title><rect x="77.9747%" y="837" width="0.0111%" height="15" fill="rgb(205,184,13)" fg:x="230798" fg:w="33"/><text x="78.2247%" y="847.50"></text></g><g><title>Runtime1::counter_overflow (159 samples, 0.05%)</title><rect x="77.9328%" y="853" width="0.0537%" height="15" fill="rgb(209,48,36)" fg:x="230674" fg:w="159"/><text x="78.1828%" y="863.50"></text></g><g><title>ObjectMonitor::enter (69 samples, 0.02%)</title><rect x="77.9987%" y="837" width="0.0233%" height="15" fill="rgb(244,34,51)" fg:x="230869" fg:w="69"/><text x="78.2487%" y="847.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="78.0348%" y="645" width="0.0115%" height="15" fill="rgb(221,107,33)" fg:x="230976" fg:w="34"/><text x="78.2848%" y="655.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.01%)</title><rect x="78.0348%" y="629" width="0.0115%" height="15" fill="rgb(224,203,12)" fg:x="230976" fg:w="34"/><text x="78.2848%" y="639.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="78.0348%" y="613" width="0.0115%" height="15" fill="rgb(230,215,18)" fg:x="230976" fg:w="34"/><text x="78.2848%" y="623.50"></text></g><g><title>futex_wait (34 samples, 0.01%)</title><rect x="78.0348%" y="597" width="0.0115%" height="15" fill="rgb(206,185,35)" fg:x="230976" fg:w="34"/><text x="78.2848%" y="607.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.01%)</title><rect x="78.0348%" y="581" width="0.0115%" height="15" fill="rgb(228,140,34)" fg:x="230976" fg:w="34"/><text x="78.2848%" y="591.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="78.0351%" y="565" width="0.0111%" height="15" fill="rgb(208,93,13)" fg:x="230977" fg:w="33"/><text x="78.2851%" y="575.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="78.0358%" y="549" width="0.0105%" height="15" fill="rgb(221,193,39)" fg:x="230979" fg:w="31"/><text x="78.2858%" y="559.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.01%)</title><rect x="78.0348%" y="709" width="0.0118%" height="15" fill="rgb(241,132,34)" fg:x="230976" fg:w="35"/><text x="78.2848%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.01%)</title><rect x="78.0348%" y="693" width="0.0118%" height="15" fill="rgb(221,141,10)" fg:x="230976" fg:w="35"/><text x="78.2848%" y="703.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.01%)</title><rect x="78.0348%" y="677" width="0.0118%" height="15" fill="rgb(226,90,31)" fg:x="230976" fg:w="35"/><text x="78.2848%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="78.0348%" y="661" width="0.0118%" height="15" fill="rgb(243,75,5)" fg:x="230976" fg:w="35"/><text x="78.2848%" y="671.50"></text></g><g><title>Monitor::wait (66 samples, 0.02%)</title><rect x="78.0247%" y="789" width="0.0223%" height="15" fill="rgb(227,156,21)" fg:x="230946" fg:w="66"/><text x="78.2747%" y="799.50"></text></g><g><title>SafepointSynchronize::block (37 samples, 0.01%)</title><rect x="78.0345%" y="773" width="0.0125%" height="15" fill="rgb(250,195,8)" fg:x="230975" fg:w="37"/><text x="78.2845%" y="783.50"></text></g><g><title>Monitor::lock_without_safepoint_check (37 samples, 0.01%)</title><rect x="78.0345%" y="757" width="0.0125%" height="15" fill="rgb(220,134,5)" fg:x="230975" fg:w="37"/><text x="78.2845%" y="767.50"></text></g><g><title>Monitor::ILock (37 samples, 0.01%)</title><rect x="78.0345%" y="741" width="0.0125%" height="15" fill="rgb(246,106,34)" fg:x="230975" fg:w="37"/><text x="78.2845%" y="751.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.01%)</title><rect x="78.0348%" y="725" width="0.0122%" height="15" fill="rgb(205,1,4)" fg:x="230976" fg:w="36"/><text x="78.2848%" y="735.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (75 samples, 0.03%)</title><rect x="78.0230%" y="821" width="0.0253%" height="15" fill="rgb(224,151,29)" fg:x="230941" fg:w="75"/><text x="78.2730%" y="831.50"></text></g><g><title>VMThread::execute (70 samples, 0.02%)</title><rect x="78.0247%" y="805" width="0.0236%" height="15" fill="rgb(251,196,0)" fg:x="230946" fg:w="70"/><text x="78.2747%" y="815.50"></text></g><g><title>Runtime1::monitorenter (185 samples, 0.06%)</title><rect x="77.9892%" y="853" width="0.0625%" height="15" fill="rgb(212,127,0)" fg:x="230841" fg:w="185"/><text x="78.2392%" y="863.50"></text></g><g><title>ObjectSynchronizer::fast_enter (88 samples, 0.03%)</title><rect x="78.0220%" y="837" width="0.0297%" height="15" fill="rgb(236,71,53)" fg:x="230938" fg:w="88"/><text x="78.2720%" y="847.50"></text></g><g><title>Runtime1::monitorexit (53 samples, 0.02%)</title><rect x="78.0517%" y="853" width="0.0179%" height="15" fill="rgb(227,99,0)" fg:x="231026" fg:w="53"/><text x="78.3017%" y="863.50"></text></g><g><title>kernel_init_free_pages (81 samples, 0.03%)</title><rect x="78.0757%" y="629" width="0.0274%" height="15" fill="rgb(239,89,21)" fg:x="231097" fg:w="81"/><text x="78.3257%" y="639.50"></text></g><g><title>clear_page_erms (79 samples, 0.03%)</title><rect x="78.0764%" y="613" width="0.0267%" height="15" fill="rgb(243,122,19)" fg:x="231099" fg:w="79"/><text x="78.3264%" y="623.50"></text></g><g><title>alloc_pages_vma (87 samples, 0.03%)</title><rect x="78.0750%" y="693" width="0.0294%" height="15" fill="rgb(229,192,45)" fg:x="231095" fg:w="87"/><text x="78.3250%" y="703.50"></text></g><g><title>__alloc_pages_nodemask (87 samples, 0.03%)</title><rect x="78.0750%" y="677" width="0.0294%" height="15" fill="rgb(235,165,35)" fg:x="231095" fg:w="87"/><text x="78.3250%" y="687.50"></text></g><g><title>get_page_from_freelist (86 samples, 0.03%)</title><rect x="78.0753%" y="661" width="0.0291%" height="15" fill="rgb(253,202,0)" fg:x="231096" fg:w="86"/><text x="78.3253%" y="671.50"></text></g><g><title>prep_new_page (85 samples, 0.03%)</title><rect x="78.0757%" y="645" width="0.0287%" height="15" fill="rgb(235,51,20)" fg:x="231097" fg:w="85"/><text x="78.3257%" y="655.50"></text></g><g><title>clear_huge_page (41 samples, 0.01%)</title><rect x="78.1044%" y="693" width="0.0139%" height="15" fill="rgb(218,95,46)" fg:x="231182" fg:w="41"/><text x="78.3544%" y="703.50"></text></g><g><title>clear_subpage (39 samples, 0.01%)</title><rect x="78.1051%" y="677" width="0.0132%" height="15" fill="rgb(212,81,10)" fg:x="231184" fg:w="39"/><text x="78.3551%" y="687.50"></text></g><g><title>clear_page_erms (39 samples, 0.01%)</title><rect x="78.1051%" y="661" width="0.0132%" height="15" fill="rgb(240,59,0)" fg:x="231184" fg:w="39"/><text x="78.3551%" y="671.50"></text></g><g><title>exc_page_fault (132 samples, 0.04%)</title><rect x="78.0743%" y="757" width="0.0446%" height="15" fill="rgb(212,191,42)" fg:x="231093" fg:w="132"/><text x="78.3243%" y="767.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.04%)</title><rect x="78.0743%" y="741" width="0.0446%" height="15" fill="rgb(233,140,3)" fg:x="231093" fg:w="132"/><text x="78.3243%" y="751.50"></text></g><g><title>handle_mm_fault (132 samples, 0.04%)</title><rect x="78.0743%" y="725" width="0.0446%" height="15" fill="rgb(215,69,23)" fg:x="231093" fg:w="132"/><text x="78.3243%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (132 samples, 0.04%)</title><rect x="78.0743%" y="709" width="0.0446%" height="15" fill="rgb(240,202,20)" fg:x="231093" fg:w="132"/><text x="78.3243%" y="719.50"></text></g><g><title>Runtime1::new_instance (147 samples, 0.05%)</title><rect x="78.0696%" y="853" width="0.0497%" height="15" fill="rgb(209,146,50)" fg:x="231079" fg:w="147"/><text x="78.3196%" y="863.50"></text></g><g><title>InstanceKlass::allocate_instance (146 samples, 0.05%)</title><rect x="78.0699%" y="837" width="0.0493%" height="15" fill="rgb(253,102,54)" fg:x="231080" fg:w="146"/><text x="78.3199%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (145 samples, 0.05%)</title><rect x="78.0703%" y="821" width="0.0490%" height="15" fill="rgb(250,173,47)" fg:x="231081" fg:w="145"/><text x="78.3203%" y="831.50"></text></g><g><title>MemAllocator::allocate (145 samples, 0.05%)</title><rect x="78.0703%" y="805" width="0.0490%" height="15" fill="rgb(232,142,7)" fg:x="231081" fg:w="145"/><text x="78.3203%" y="815.50"></text></g><g><title>ObjAllocator::initialize (134 samples, 0.05%)</title><rect x="78.0740%" y="789" width="0.0453%" height="15" fill="rgb(230,157,47)" fg:x="231092" fg:w="134"/><text x="78.3240%" y="799.50"></text></g><g><title>asm_exc_page_fault (133 samples, 0.04%)</title><rect x="78.0743%" y="773" width="0.0449%" height="15" fill="rgb(214,177,35)" fg:x="231093" fg:w="133"/><text x="78.3243%" y="783.50"></text></g><g><title>Runtime1::new_type_array (47 samples, 0.02%)</title><rect x="78.1216%" y="853" width="0.0159%" height="15" fill="rgb(234,119,46)" fg:x="231233" fg:w="47"/><text x="78.3716%" y="863.50"></text></g><g><title>TypeArrayKlass::allocate_common (47 samples, 0.02%)</title><rect x="78.1216%" y="837" width="0.0159%" height="15" fill="rgb(241,180,50)" fg:x="231233" fg:w="47"/><text x="78.3716%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (47 samples, 0.02%)</title><rect x="78.1216%" y="821" width="0.0159%" height="15" fill="rgb(221,54,25)" fg:x="231233" fg:w="47"/><text x="78.3716%" y="831.50"></text></g><g><title>MemAllocator::allocate (47 samples, 0.02%)</title><rect x="78.1216%" y="805" width="0.0159%" height="15" fill="rgb(209,157,44)" fg:x="231233" fg:w="47"/><text x="78.3716%" y="815.50"></text></g><g><title>ObjArrayAllocator::initialize (46 samples, 0.02%)</title><rect x="78.1220%" y="789" width="0.0155%" height="15" fill="rgb(246,115,41)" fg:x="231234" fg:w="46"/><text x="78.3720%" y="799.50"></text></g><g><title>asm_exc_page_fault (44 samples, 0.01%)</title><rect x="78.1226%" y="773" width="0.0149%" height="15" fill="rgb(229,86,1)" fg:x="231236" fg:w="44"/><text x="78.3726%" y="783.50"></text></g><g><title>exc_page_fault (44 samples, 0.01%)</title><rect x="78.1226%" y="757" width="0.0149%" height="15" fill="rgb(240,108,53)" fg:x="231236" fg:w="44"/><text x="78.3726%" y="767.50"></text></g><g><title>do_user_addr_fault (44 samples, 0.01%)</title><rect x="78.1226%" y="741" width="0.0149%" height="15" fill="rgb(227,134,2)" fg:x="231236" fg:w="44"/><text x="78.3726%" y="751.50"></text></g><g><title>handle_mm_fault (44 samples, 0.01%)</title><rect x="78.1226%" y="725" width="0.0149%" height="15" fill="rgb(213,129,25)" fg:x="231236" fg:w="44"/><text x="78.3726%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (44 samples, 0.01%)</title><rect x="78.1226%" y="709" width="0.0149%" height="15" fill="rgb(226,35,21)" fg:x="231236" fg:w="44"/><text x="78.3726%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.01%)</title><rect x="78.1436%" y="613" width="0.0122%" height="15" fill="rgb(208,129,26)" fg:x="231298" fg:w="36"/><text x="78.3936%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.01%)</title><rect x="78.1439%" y="597" width="0.0118%" height="15" fill="rgb(224,83,6)" fg:x="231299" fg:w="35"/><text x="78.3939%" y="607.50"></text></g><g><title>native_write_msr (35 samples, 0.01%)</title><rect x="78.1439%" y="581" width="0.0118%" height="15" fill="rgb(227,52,39)" fg:x="231299" fg:w="35"/><text x="78.3939%" y="591.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="78.1436%" y="677" width="0.0125%" height="15" fill="rgb(241,30,17)" fg:x="231298" fg:w="37"/><text x="78.3936%" y="687.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="78.1436%" y="661" width="0.0125%" height="15" fill="rgb(246,186,42)" fg:x="231298" fg:w="37"/><text x="78.3936%" y="671.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="78.1436%" y="645" width="0.0125%" height="15" fill="rgb(221,169,15)" fg:x="231298" fg:w="37"/><text x="78.3936%" y="655.50"></text></g><g><title>finish_task_switch (37 samples, 0.01%)</title><rect x="78.1436%" y="629" width="0.0125%" height="15" fill="rgb(235,108,21)" fg:x="231298" fg:w="37"/><text x="78.3936%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (42 samples, 0.01%)</title><rect x="78.1422%" y="805" width="0.0142%" height="15" fill="rgb(219,148,30)" fg:x="231294" fg:w="42"/><text x="78.3922%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (42 samples, 0.01%)</title><rect x="78.1422%" y="789" width="0.0142%" height="15" fill="rgb(220,109,5)" fg:x="231294" fg:w="42"/><text x="78.3922%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (40 samples, 0.01%)</title><rect x="78.1429%" y="773" width="0.0135%" height="15" fill="rgb(213,203,48)" fg:x="231296" fg:w="40"/><text x="78.3929%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="78.1429%" y="757" width="0.0135%" height="15" fill="rgb(244,71,33)" fg:x="231296" fg:w="40"/><text x="78.3929%" y="767.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="78.1433%" y="741" width="0.0132%" height="15" fill="rgb(209,23,2)" fg:x="231297" fg:w="39"/><text x="78.3933%" y="751.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.01%)</title><rect x="78.1433%" y="725" width="0.0132%" height="15" fill="rgb(219,97,7)" fg:x="231297" fg:w="39"/><text x="78.3933%" y="735.50"></text></g><g><title>do_futex (39 samples, 0.01%)</title><rect x="78.1433%" y="709" width="0.0132%" height="15" fill="rgb(216,161,23)" fg:x="231297" fg:w="39"/><text x="78.3933%" y="719.50"></text></g><g><title>futex_wait (38 samples, 0.01%)</title><rect x="78.1436%" y="693" width="0.0128%" height="15" fill="rgb(207,45,42)" fg:x="231298" fg:w="38"/><text x="78.3936%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.02%)</title><rect x="78.1588%" y="613" width="0.0243%" height="15" fill="rgb(241,61,4)" fg:x="231343" fg:w="72"/><text x="78.4088%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.02%)</title><rect x="78.1588%" y="597" width="0.0243%" height="15" fill="rgb(236,170,1)" fg:x="231343" fg:w="72"/><text x="78.4088%" y="607.50"></text></g><g><title>native_write_msr (71 samples, 0.02%)</title><rect x="78.1591%" y="581" width="0.0240%" height="15" fill="rgb(239,72,5)" fg:x="231344" fg:w="71"/><text x="78.4091%" y="591.50"></text></g><g><title>finish_task_switch (73 samples, 0.02%)</title><rect x="78.1588%" y="629" width="0.0247%" height="15" fill="rgb(214,13,50)" fg:x="231343" fg:w="73"/><text x="78.4088%" y="639.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.03%)</title><rect x="78.1581%" y="677" width="0.0257%" height="15" fill="rgb(224,88,9)" fg:x="231341" fg:w="76"/><text x="78.4081%" y="687.50"></text></g><g><title>schedule (76 samples, 0.03%)</title><rect x="78.1581%" y="661" width="0.0257%" height="15" fill="rgb(238,192,34)" fg:x="231341" fg:w="76"/><text x="78.4081%" y="671.50"></text></g><g><title>__schedule (76 samples, 0.03%)</title><rect x="78.1581%" y="645" width="0.0257%" height="15" fill="rgb(217,203,50)" fg:x="231341" fg:w="76"/><text x="78.4081%" y="655.50"></text></g><g><title>__pthread_cond_wait (82 samples, 0.03%)</title><rect x="78.1564%" y="805" width="0.0277%" height="15" fill="rgb(241,123,32)" fg:x="231336" fg:w="82"/><text x="78.4064%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (82 samples, 0.03%)</title><rect x="78.1564%" y="789" width="0.0277%" height="15" fill="rgb(248,151,39)" fg:x="231336" fg:w="82"/><text x="78.4064%" y="799.50"></text></g><g><title>futex_wait_cancelable (80 samples, 0.03%)</title><rect x="78.1571%" y="773" width="0.0270%" height="15" fill="rgb(208,89,6)" fg:x="231338" fg:w="80"/><text x="78.4071%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.03%)</title><rect x="78.1578%" y="757" width="0.0264%" height="15" fill="rgb(254,43,26)" fg:x="231340" fg:w="78"/><text x="78.4078%" y="767.50"></text></g><g><title>do_syscall_64 (78 samples, 0.03%)</title><rect x="78.1578%" y="741" width="0.0264%" height="15" fill="rgb(216,158,13)" fg:x="231340" fg:w="78"/><text x="78.4078%" y="751.50"></text></g><g><title>__x64_sys_futex (78 samples, 0.03%)</title><rect x="78.1578%" y="725" width="0.0264%" height="15" fill="rgb(212,47,37)" fg:x="231340" fg:w="78"/><text x="78.4078%" y="735.50"></text></g><g><title>do_futex (78 samples, 0.03%)</title><rect x="78.1578%" y="709" width="0.0264%" height="15" fill="rgb(254,16,10)" fg:x="231340" fg:w="78"/><text x="78.4078%" y="719.50"></text></g><g><title>futex_wait (78 samples, 0.03%)</title><rect x="78.1578%" y="693" width="0.0264%" height="15" fill="rgb(223,228,16)" fg:x="231340" fg:w="78"/><text x="78.4078%" y="703.50"></text></g><g><title>ObjectMonitor::enter (140 samples, 0.05%)</title><rect x="78.1385%" y="837" width="0.0473%" height="15" fill="rgb(249,108,50)" fg:x="231283" fg:w="140"/><text x="78.3885%" y="847.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.04%)</title><rect x="78.1416%" y="821" width="0.0443%" height="15" fill="rgb(208,220,5)" fg:x="231292" fg:w="131"/><text x="78.3916%" y="831.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (156 samples, 0.05%)</title><rect x="78.1378%" y="853" width="0.0527%" height="15" fill="rgb(217,89,48)" fg:x="231281" fg:w="156"/><text x="78.3878%" y="863.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (54 samples, 0.02%)</title><rect x="78.1983%" y="853" width="0.0182%" height="15" fill="rgb(212,113,41)" fg:x="231460" fg:w="54"/><text x="78.4483%" y="863.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (53 samples, 0.02%)</title><rect x="78.1987%" y="837" width="0.0179%" height="15" fill="rgb(231,127,5)" fg:x="231461" fg:w="53"/><text x="78.4487%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (32 samples, 0.01%)</title><rect x="78.2294%" y="805" width="0.0108%" height="15" fill="rgb(217,141,17)" fg:x="231552" fg:w="32"/><text x="78.4794%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (31 samples, 0.01%)</title><rect x="78.2297%" y="789" width="0.0105%" height="15" fill="rgb(245,125,54)" fg:x="231553" fg:w="31"/><text x="78.4797%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (56 samples, 0.02%)</title><rect x="78.2291%" y="821" width="0.0189%" height="15" fill="rgb(248,125,3)" fg:x="231551" fg:w="56"/><text x="78.4791%" y="831.50"></text></g><g><title>SystemDictionary::parse_stream (75 samples, 0.03%)</title><rect x="78.2250%" y="837" width="0.0253%" height="15" fill="rgb(236,119,51)" fg:x="231539" fg:w="75"/><text x="78.4750%" y="847.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (81 samples, 0.03%)</title><rect x="78.2233%" y="853" width="0.0274%" height="15" fill="rgb(239,99,8)" fg:x="231534" fg:w="81"/><text x="78.4733%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (331 samples, 0.11%)</title><rect x="78.2963%" y="629" width="0.1118%" height="15" fill="rgb(224,228,4)" fg:x="231750" fg:w="331"/><text x="78.5463%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (324 samples, 0.11%)</title><rect x="78.2987%" y="613" width="0.1095%" height="15" fill="rgb(220,131,45)" fg:x="231757" fg:w="324"/><text x="78.5487%" y="623.50"></text></g><g><title>native_write_msr (323 samples, 0.11%)</title><rect x="78.2990%" y="597" width="0.1091%" height="15" fill="rgb(215,62,5)" fg:x="231758" fg:w="323"/><text x="78.5490%" y="607.50"></text></g><g><title>finish_task_switch (355 samples, 0.12%)</title><rect x="78.2939%" y="645" width="0.1199%" height="15" fill="rgb(253,12,24)" fg:x="231743" fg:w="355"/><text x="78.5439%" y="655.50"></text></g><g><title>futex_wait_queue_me (440 samples, 0.15%)</title><rect x="78.2781%" y="693" width="0.1487%" height="15" fill="rgb(248,120,50)" fg:x="231696" fg:w="440"/><text x="78.5281%" y="703.50"></text></g><g><title>schedule (436 samples, 0.15%)</title><rect x="78.2794%" y="677" width="0.1473%" height="15" fill="rgb(245,194,10)" fg:x="231700" fg:w="436"/><text x="78.5294%" y="687.50"></text></g><g><title>__schedule (431 samples, 0.15%)</title><rect x="78.2811%" y="661" width="0.1456%" height="15" fill="rgb(241,149,38)" fg:x="231705" fg:w="431"/><text x="78.5311%" y="671.50"></text></g><g><title>__x64_sys_futex (448 samples, 0.15%)</title><rect x="78.2767%" y="741" width="0.1514%" height="15" fill="rgb(219,215,7)" fg:x="231692" fg:w="448"/><text x="78.5267%" y="751.50"></text></g><g><title>do_futex (447 samples, 0.15%)</title><rect x="78.2770%" y="725" width="0.1510%" height="15" fill="rgb(208,120,31)" fg:x="231693" fg:w="447"/><text x="78.5270%" y="735.50"></text></g><g><title>futex_wait (444 samples, 0.15%)</title><rect x="78.2781%" y="709" width="0.1500%" height="15" fill="rgb(244,30,8)" fg:x="231696" fg:w="444"/><text x="78.5281%" y="719.50"></text></g><g><title>do_syscall_64 (452 samples, 0.15%)</title><rect x="78.2757%" y="757" width="0.1527%" height="15" fill="rgb(238,35,44)" fg:x="231689" fg:w="452"/><text x="78.5257%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (460 samples, 0.16%)</title><rect x="78.2757%" y="773" width="0.1554%" height="15" fill="rgb(243,218,37)" fg:x="231689" fg:w="460"/><text x="78.5257%" y="783.50"></text></g><g><title>__pthread_cond_wait (475 samples, 0.16%)</title><rect x="78.2713%" y="821" width="0.1605%" height="15" fill="rgb(218,169,10)" fg:x="231676" fg:w="475"/><text x="78.5213%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (475 samples, 0.16%)</title><rect x="78.2713%" y="805" width="0.1605%" height="15" fill="rgb(221,144,10)" fg:x="231676" fg:w="475"/><text x="78.5213%" y="815.50"></text></g><g><title>futex_wait_cancelable (467 samples, 0.16%)</title><rect x="78.2740%" y="789" width="0.1578%" height="15" fill="rgb(226,41,38)" fg:x="231684" fg:w="467"/><text x="78.5240%" y="799.50"></text></g><g><title>Unsafe_Park (523 samples, 0.18%)</title><rect x="78.2605%" y="853" width="0.1767%" height="15" fill="rgb(228,3,1)" fg:x="231644" fg:w="523"/><text x="78.5105%" y="863.50"></text></g><g><title>Parker::park (515 samples, 0.17%)</title><rect x="78.2632%" y="837" width="0.1740%" height="15" fill="rgb(209,129,12)" fg:x="231652" fg:w="515"/><text x="78.5132%" y="847.50"></text></g><g><title>select_task_rq_fair (41 samples, 0.01%)</title><rect x="78.4801%" y="693" width="0.0139%" height="15" fill="rgb(213,136,33)" fg:x="232294" fg:w="41"/><text x="78.7301%" y="703.50"></text></g><g><title>enqueue_entity (52 samples, 0.02%)</title><rect x="78.5044%" y="661" width="0.0176%" height="15" fill="rgb(209,181,29)" fg:x="232366" fg:w="52"/><text x="78.7544%" y="671.50"></text></g><g><title>enqueue_task_fair (77 samples, 0.03%)</title><rect x="78.4987%" y="677" width="0.0260%" height="15" fill="rgb(234,173,18)" fg:x="232349" fg:w="77"/><text x="78.7487%" y="687.50"></text></g><g><title>ttwu_do_activate (145 samples, 0.05%)</title><rect x="78.4946%" y="693" width="0.0490%" height="15" fill="rgb(227,73,47)" fg:x="232337" fg:w="145"/><text x="78.7446%" y="703.50"></text></g><g><title>psi_task_change (56 samples, 0.02%)</title><rect x="78.5247%" y="677" width="0.0189%" height="15" fill="rgb(234,9,34)" fg:x="232426" fg:w="56"/><text x="78.7747%" y="687.50"></text></g><g><title>psi_group_change (42 samples, 0.01%)</title><rect x="78.5294%" y="661" width="0.0142%" height="15" fill="rgb(235,172,15)" fg:x="232440" fg:w="42"/><text x="78.7794%" y="671.50"></text></g><g><title>__x64_sys_futex (271 samples, 0.09%)</title><rect x="78.4575%" y="773" width="0.0916%" height="15" fill="rgb(245,61,2)" fg:x="232227" fg:w="271"/><text x="78.7075%" y="783.50"></text></g><g><title>do_futex (270 samples, 0.09%)</title><rect x="78.4578%" y="757" width="0.0912%" height="15" fill="rgb(238,39,47)" fg:x="232228" fg:w="270"/><text x="78.7078%" y="767.50"></text></g><g><title>futex_wake (264 samples, 0.09%)</title><rect x="78.4598%" y="741" width="0.0892%" height="15" fill="rgb(234,37,24)" fg:x="232234" fg:w="264"/><text x="78.7098%" y="751.50"></text></g><g><title>wake_up_q (226 samples, 0.08%)</title><rect x="78.4727%" y="725" width="0.0764%" height="15" fill="rgb(248,223,24)" fg:x="232272" fg:w="226"/><text x="78.7227%" y="735.50"></text></g><g><title>try_to_wake_up (223 samples, 0.08%)</title><rect x="78.4737%" y="709" width="0.0753%" height="15" fill="rgb(223,12,15)" fg:x="232275" fg:w="223"/><text x="78.7237%" y="719.50"></text></g><g><title>do_syscall_64 (274 samples, 0.09%)</title><rect x="78.4571%" y="789" width="0.0926%" height="15" fill="rgb(249,6,3)" fg:x="232226" fg:w="274"/><text x="78.7071%" y="799.50"></text></g><g><title>__pthread_cond_signal (309 samples, 0.10%)</title><rect x="78.4534%" y="837" width="0.1044%" height="15" fill="rgb(237,105,33)" fg:x="232215" fg:w="309"/><text x="78.7034%" y="847.50"></text></g><g><title>futex_wake (303 samples, 0.10%)</title><rect x="78.4554%" y="821" width="0.1024%" height="15" fill="rgb(252,208,35)" fg:x="232221" fg:w="303"/><text x="78.7054%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (298 samples, 0.10%)</title><rect x="78.4571%" y="805" width="0.1007%" height="15" fill="rgb(215,181,35)" fg:x="232226" fg:w="298"/><text x="78.7071%" y="815.50"></text></g><g><title>Unsafe_Unpark (357 samples, 0.12%)</title><rect x="78.4392%" y="853" width="0.1206%" height="15" fill="rgb(246,212,3)" fg:x="232173" fg:w="357"/><text x="78.6892%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="78.5777%" y="757" width="0.0247%" height="15" fill="rgb(247,156,24)" fg:x="232583" fg:w="73"/><text x="78.8277%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (73 samples, 0.02%)</title><rect x="78.5777%" y="741" width="0.0247%" height="15" fill="rgb(248,9,31)" fg:x="232583" fg:w="73"/><text x="78.8277%" y="751.50"></text></g><g><title>native_write_msr (73 samples, 0.02%)</title><rect x="78.5777%" y="725" width="0.0247%" height="15" fill="rgb(234,26,45)" fg:x="232583" fg:w="73"/><text x="78.8277%" y="735.50"></text></g><g><title>finish_task_switch (83 samples, 0.03%)</title><rect x="78.5764%" y="773" width="0.0280%" height="15" fill="rgb(249,11,32)" fg:x="232579" fg:w="83"/><text x="78.8264%" y="783.50"></text></g><g><title>schedule (87 samples, 0.03%)</title><rect x="78.5754%" y="805" width="0.0294%" height="15" fill="rgb(249,162,33)" fg:x="232576" fg:w="87"/><text x="78.8254%" y="815.50"></text></g><g><title>__schedule (87 samples, 0.03%)</title><rect x="78.5754%" y="789" width="0.0294%" height="15" fill="rgb(232,4,32)" fg:x="232576" fg:w="87"/><text x="78.8254%" y="799.50"></text></g><g><title>irqentry_exit_to_user_mode (93 samples, 0.03%)</title><rect x="78.5737%" y="837" width="0.0314%" height="15" fill="rgb(212,5,45)" fg:x="232571" fg:w="93"/><text x="78.8237%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (93 samples, 0.03%)</title><rect x="78.5737%" y="821" width="0.0314%" height="15" fill="rgb(227,95,13)" fg:x="232571" fg:w="93"/><text x="78.8237%" y="831.50"></text></g><g><title>scheduler_tick (32 samples, 0.01%)</title><rect x="78.6186%" y="725" width="0.0108%" height="15" fill="rgb(223,205,10)" fg:x="232704" fg:w="32"/><text x="78.8686%" y="735.50"></text></g><g><title>tick_sched_handle (55 samples, 0.02%)</title><rect x="78.6118%" y="757" width="0.0186%" height="15" fill="rgb(222,178,8)" fg:x="232684" fg:w="55"/><text x="78.8618%" y="767.50"></text></g><g><title>update_process_times (52 samples, 0.02%)</title><rect x="78.6129%" y="741" width="0.0176%" height="15" fill="rgb(216,13,22)" fg:x="232687" fg:w="52"/><text x="78.8629%" y="751.50"></text></g><g><title>tick_sched_timer (62 samples, 0.02%)</title><rect x="78.6108%" y="773" width="0.0209%" height="15" fill="rgb(240,167,12)" fg:x="232681" fg:w="62"/><text x="78.8608%" y="783.50"></text></g><g><title>__hrtimer_run_queues (80 samples, 0.03%)</title><rect x="78.6075%" y="789" width="0.0270%" height="15" fill="rgb(235,68,35)" fg:x="232671" fg:w="80"/><text x="78.8575%" y="799.50"></text></g><g><title>hrtimer_interrupt (94 samples, 0.03%)</title><rect x="78.6058%" y="805" width="0.0318%" height="15" fill="rgb(253,40,27)" fg:x="232666" fg:w="94"/><text x="78.8558%" y="815.50"></text></g><g><title>__sysvec_apic_timer_interrupt (99 samples, 0.03%)</title><rect x="78.6051%" y="821" width="0.0334%" height="15" fill="rgb(214,19,28)" fg:x="232664" fg:w="99"/><text x="78.8551%" y="831.50"></text></g><g><title>kmem_cache_free (54 samples, 0.02%)</title><rect x="78.6470%" y="741" width="0.0182%" height="15" fill="rgb(210,167,45)" fg:x="232788" fg:w="54"/><text x="78.8970%" y="751.50"></text></g><g><title>rcu_core (109 samples, 0.04%)</title><rect x="78.6399%" y="757" width="0.0368%" height="15" fill="rgb(232,97,40)" fg:x="232767" fg:w="109"/><text x="78.8899%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (323 samples, 0.11%)</title><rect x="78.5737%" y="853" width="0.1091%" height="15" fill="rgb(250,35,23)" fg:x="232571" fg:w="323"/><text x="78.8237%" y="863.50"></text></g><g><title>sysvec_apic_timer_interrupt (230 samples, 0.08%)</title><rect x="78.6051%" y="837" width="0.0777%" height="15" fill="rgb(248,47,53)" fg:x="232664" fg:w="230"/><text x="78.8551%" y="847.50"></text></g><g><title>irq_exit_rcu (130 samples, 0.04%)</title><rect x="78.6389%" y="821" width="0.0439%" height="15" fill="rgb(226,58,50)" fg:x="232764" fg:w="130"/><text x="78.8889%" y="831.50"></text></g><g><title>do_softirq_own_stack (129 samples, 0.04%)</title><rect x="78.6392%" y="805" width="0.0436%" height="15" fill="rgb(217,105,26)" fg:x="232765" fg:w="129"/><text x="78.8892%" y="815.50"></text></g><g><title>asm_call_sysvec_on_stack (129 samples, 0.04%)</title><rect x="78.6392%" y="789" width="0.0436%" height="15" fill="rgb(208,64,1)" fg:x="232765" fg:w="129"/><text x="78.8892%" y="799.50"></text></g><g><title>__softirqentry_text_start (129 samples, 0.04%)</title><rect x="78.6392%" y="773" width="0.0436%" height="15" fill="rgb(214,80,1)" fg:x="232765" fg:w="129"/><text x="78.8892%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (223 samples, 0.08%)</title><rect x="78.6912%" y="757" width="0.0753%" height="15" fill="rgb(206,175,26)" fg:x="232919" fg:w="223"/><text x="78.9412%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (220 samples, 0.07%)</title><rect x="78.6923%" y="741" width="0.0743%" height="15" fill="rgb(235,156,37)" fg:x="232922" fg:w="220"/><text x="78.9423%" y="751.50"></text></g><g><title>native_write_msr (219 samples, 0.07%)</title><rect x="78.6926%" y="725" width="0.0740%" height="15" fill="rgb(213,100,9)" fg:x="232923" fg:w="219"/><text x="78.9426%" y="735.50"></text></g><g><title>finish_task_switch (244 samples, 0.08%)</title><rect x="78.6896%" y="773" width="0.0824%" height="15" fill="rgb(241,15,13)" fg:x="232914" fg:w="244"/><text x="78.9396%" y="783.50"></text></g><g><title>schedule (271 samples, 0.09%)</title><rect x="78.6835%" y="805" width="0.0916%" height="15" fill="rgb(205,97,43)" fg:x="232896" fg:w="271"/><text x="78.9335%" y="815.50"></text></g><g><title>__schedule (270 samples, 0.09%)</title><rect x="78.6838%" y="789" width="0.0912%" height="15" fill="rgb(216,106,32)" fg:x="232897" fg:w="270"/><text x="78.9338%" y="799.50"></text></g><g><title>irqentry_exit_to_user_mode (283 samples, 0.10%)</title><rect x="78.6831%" y="837" width="0.0956%" height="15" fill="rgb(226,200,8)" fg:x="232895" fg:w="283"/><text x="78.9331%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (283 samples, 0.10%)</title><rect x="78.6831%" y="821" width="0.0956%" height="15" fill="rgb(244,54,29)" fg:x="232895" fg:w="283"/><text x="78.9331%" y="831.50"></text></g><g><title>asm_sysvec_reschedule_ipi (288 samples, 0.10%)</title><rect x="78.6831%" y="853" width="0.0973%" height="15" fill="rgb(252,169,12)" fg:x="232895" fg:w="288"/><text x="78.9331%" y="863.50"></text></g><g><title>asm_sysvec_thermal (31 samples, 0.01%)</title><rect x="78.7804%" y="853" width="0.0105%" height="15" fill="rgb(231,199,11)" fg:x="233183" fg:w="31"/><text x="79.0304%" y="863.50"></text></g><g><title>__fput (32 samples, 0.01%)</title><rect x="78.8065%" y="757" width="0.0108%" height="15" fill="rgb(233,191,18)" fg:x="233260" fg:w="32"/><text x="79.0565%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.02%)</title><rect x="78.7973%" y="821" width="0.0216%" height="15" fill="rgb(215,83,47)" fg:x="233233" fg:w="64"/><text x="79.0473%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (47 samples, 0.02%)</title><rect x="78.8031%" y="805" width="0.0159%" height="15" fill="rgb(251,67,19)" fg:x="233250" fg:w="47"/><text x="79.0531%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (46 samples, 0.02%)</title><rect x="78.8034%" y="789" width="0.0155%" height="15" fill="rgb(240,7,20)" fg:x="233251" fg:w="46"/><text x="79.0534%" y="799.50"></text></g><g><title>task_work_run (39 samples, 0.01%)</title><rect x="78.8058%" y="773" width="0.0132%" height="15" fill="rgb(210,150,26)" fg:x="233258" fg:w="39"/><text x="79.0558%" y="783.50"></text></g><g><title>__close (73 samples, 0.02%)</title><rect x="78.7950%" y="837" width="0.0247%" height="15" fill="rgb(228,75,42)" fg:x="233226" fg:w="73"/><text x="79.0450%" y="847.50"></text></g><g><title>fileDescriptorClose (82 samples, 0.03%)</title><rect x="78.7943%" y="853" width="0.0277%" height="15" fill="rgb(237,134,48)" fg:x="233224" fg:w="82"/><text x="79.0443%" y="863.50"></text></g><g><title>JNU_GetStringPlatformChars (55 samples, 0.02%)</title><rect x="78.8223%" y="837" width="0.0186%" height="15" fill="rgb(205,80,50)" fg:x="233307" fg:w="55"/><text x="79.0723%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="78.8467%" y="821" width="0.0105%" height="15" fill="rgb(217,74,48)" fg:x="233379" fg:w="31"/><text x="79.0967%" y="831.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="78.8470%" y="805" width="0.0101%" height="15" fill="rgb(205,82,50)" fg:x="233380" fg:w="30"/><text x="79.0970%" y="815.50"></text></g><g><title>__do_sys_newfstat (30 samples, 0.01%)</title><rect x="78.8470%" y="789" width="0.0101%" height="15" fill="rgb(228,1,33)" fg:x="233380" fg:w="30"/><text x="79.0970%" y="799.50"></text></g><g><title>__GI___fxstat (39 samples, 0.01%)</title><rect x="78.8443%" y="837" width="0.0132%" height="15" fill="rgb(214,50,23)" fg:x="233372" fg:w="39"/><text x="79.0943%" y="847.50"></text></g><g><title>kmem_cache_alloc (47 samples, 0.02%)</title><rect x="78.8733%" y="693" width="0.0159%" height="15" fill="rgb(210,62,9)" fg:x="233458" fg:w="47"/><text x="79.1233%" y="703.50"></text></g><g><title>__alloc_file (57 samples, 0.02%)</title><rect x="78.8730%" y="709" width="0.0193%" height="15" fill="rgb(210,104,37)" fg:x="233457" fg:w="57"/><text x="79.1230%" y="719.50"></text></g><g><title>alloc_empty_file (61 samples, 0.02%)</title><rect x="78.8720%" y="725" width="0.0206%" height="15" fill="rgb(232,104,43)" fg:x="233454" fg:w="61"/><text x="79.1220%" y="735.50"></text></g><g><title>do_dentry_open (31 samples, 0.01%)</title><rect x="78.9044%" y="725" width="0.0105%" height="15" fill="rgb(244,52,6)" fg:x="233550" fg:w="31"/><text x="79.1544%" y="735.50"></text></g><g><title>lookup_fast (30 samples, 0.01%)</title><rect x="78.9264%" y="693" width="0.0101%" height="15" fill="rgb(211,174,52)" fg:x="233615" fg:w="30"/><text x="79.1764%" y="703.50"></text></g><g><title>link_path_walk.part.0 (71 samples, 0.02%)</title><rect x="78.9149%" y="725" width="0.0240%" height="15" fill="rgb(229,48,4)" fg:x="233581" fg:w="71"/><text x="79.1649%" y="735.50"></text></g><g><title>walk_component (40 samples, 0.01%)</title><rect x="78.9254%" y="709" width="0.0135%" height="15" fill="rgb(205,155,16)" fg:x="233612" fg:w="40"/><text x="79.1754%" y="719.50"></text></g><g><title>do_filp_open (220 samples, 0.07%)</title><rect x="78.8706%" y="757" width="0.0743%" height="15" fill="rgb(211,141,53)" fg:x="233450" fg:w="220"/><text x="79.1206%" y="767.50"></text></g><g><title>path_openat (218 samples, 0.07%)</title><rect x="78.8713%" y="741" width="0.0737%" height="15" fill="rgb(240,148,11)" fg:x="233452" fg:w="218"/><text x="79.1213%" y="751.50"></text></g><g><title>do_syscall_64 (282 samples, 0.10%)</title><rect x="78.8605%" y="805" width="0.0953%" height="15" fill="rgb(214,45,23)" fg:x="233420" fg:w="282"/><text x="79.1105%" y="815.50"></text></g><g><title>__x64_sys_openat (279 samples, 0.09%)</title><rect x="78.8615%" y="789" width="0.0943%" height="15" fill="rgb(248,74,26)" fg:x="233423" fg:w="279"/><text x="79.1115%" y="799.50"></text></g><g><title>do_sys_openat2 (279 samples, 0.09%)</title><rect x="78.8615%" y="773" width="0.0943%" height="15" fill="rgb(218,121,16)" fg:x="233423" fg:w="279"/><text x="79.1115%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (287 samples, 0.10%)</title><rect x="78.8598%" y="821" width="0.0970%" height="15" fill="rgb(218,10,47)" fg:x="233418" fg:w="287"/><text x="79.1098%" y="831.50"></text></g><g><title>__libc_open64 (294 samples, 0.10%)</title><rect x="78.8581%" y="837" width="0.0993%" height="15" fill="rgb(227,99,14)" fg:x="233413" fg:w="294"/><text x="79.1081%" y="847.50"></text></g><g><title>fileOpen (415 samples, 0.14%)</title><rect x="78.8220%" y="853" width="0.1402%" height="15" fill="rgb(229,83,46)" fg:x="233306" fg:w="415"/><text x="79.0720%" y="863.50"></text></g><g><title>jni_IsAssignableFrom (32 samples, 0.01%)</title><rect x="78.9656%" y="853" width="0.0108%" height="15" fill="rgb(228,25,1)" fg:x="233731" fg:w="32"/><text x="79.2156%" y="863.50"></text></g><g><title>[perf-12570.map] (71,541 samples, 24.17%)</title><rect x="54.8277%" y="869" width="24.1700%" height="15" fill="rgb(252,190,15)" fg:x="162285" fg:w="71541"/><text x="55.0777%" y="879.50">[perf-12570.map]</text></g><g><title>os::javaTimeNanos (60 samples, 0.02%)</title><rect x="78.9774%" y="853" width="0.0203%" height="15" fill="rgb(213,103,51)" fg:x="233766" fg:w="60"/><text x="79.2274%" y="863.50"></text></g><g><title>__GI___clock_gettime (55 samples, 0.02%)</title><rect x="78.9791%" y="837" width="0.0186%" height="15" fill="rgb(220,38,44)" fg:x="233771" fg:w="55"/><text x="79.2291%" y="847.50"></text></g><g><title>__vdso_clock_gettime (42 samples, 0.01%)</title><rect x="78.9835%" y="821" width="0.0142%" height="15" fill="rgb(210,45,26)" fg:x="233784" fg:w="42"/><text x="79.2335%" y="831.50"></text></g><g><title>Deoptimization::fetch_unroll_info_helper (33 samples, 0.01%)</title><rect x="78.9983%" y="853" width="0.0111%" height="15" fill="rgb(205,95,48)" fg:x="233828" fg:w="33"/><text x="79.2483%" y="863.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.01%)</title><rect x="79.0311%" y="853" width="0.0115%" height="15" fill="rgb(225,179,37)" fg:x="233925" fg:w="34"/><text x="79.2811%" y="863.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (34 samples, 0.01%)</title><rect x="79.0311%" y="837" width="0.0115%" height="15" fill="rgb(230,209,3)" fg:x="233925" fg:w="34"/><text x="79.2811%" y="847.50"></text></g><g><title>LinkResolver::resolve_method_statically (47 samples, 0.02%)</title><rect x="79.0744%" y="805" width="0.0159%" height="15" fill="rgb(248,12,46)" fg:x="234053" fg:w="47"/><text x="79.3244%" y="815.50"></text></g><g><title>Bytecode_invoke::static_target (49 samples, 0.02%)</title><rect x="79.0744%" y="821" width="0.0166%" height="15" fill="rgb(234,18,0)" fg:x="234053" fg:w="49"/><text x="79.3244%" y="831.50"></text></g><g><title>LinkResolver::resolve_invoke (39 samples, 0.01%)</title><rect x="79.0923%" y="821" width="0.0132%" height="15" fill="rgb(238,197,14)" fg:x="234106" fg:w="39"/><text x="79.3423%" y="831.50"></text></g><g><title>SharedRuntime::extract_attached_method (41 samples, 0.01%)</title><rect x="79.1061%" y="821" width="0.0139%" height="15" fill="rgb(251,162,48)" fg:x="234147" fg:w="41"/><text x="79.3561%" y="831.50"></text></g><g><title>frame::sender (49 samples, 0.02%)</title><rect x="79.1206%" y="821" width="0.0166%" height="15" fill="rgb(237,73,42)" fg:x="234190" fg:w="49"/><text x="79.3706%" y="831.50"></text></g><g><title>OopMapSet::update_register_map (47 samples, 0.02%)</title><rect x="79.1213%" y="805" width="0.0159%" height="15" fill="rgb(211,108,8)" fg:x="234192" fg:w="47"/><text x="79.3713%" y="815.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (189 samples, 0.06%)</title><rect x="79.0737%" y="837" width="0.0639%" height="15" fill="rgb(213,45,22)" fg:x="234051" fg:w="189"/><text x="79.3237%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (288 samples, 0.10%)</title><rect x="79.0470%" y="853" width="0.0973%" height="15" fill="rgb(252,154,5)" fg:x="233972" fg:w="288"/><text x="79.2970%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (238 samples, 0.08%)</title><rect x="79.1568%" y="581" width="0.0804%" height="15" fill="rgb(221,79,52)" fg:x="234297" fg:w="238"/><text x="79.4068%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (235 samples, 0.08%)</title><rect x="79.1578%" y="565" width="0.0794%" height="15" fill="rgb(229,220,36)" fg:x="234300" fg:w="235"/><text x="79.4078%" y="575.50"></text></g><g><title>native_write_msr (235 samples, 0.08%)</title><rect x="79.1578%" y="549" width="0.0794%" height="15" fill="rgb(211,17,16)" fg:x="234300" fg:w="235"/><text x="79.4078%" y="559.50"></text></g><g><title>finish_task_switch (250 samples, 0.08%)</title><rect x="79.1554%" y="597" width="0.0845%" height="15" fill="rgb(222,55,31)" fg:x="234293" fg:w="250"/><text x="79.4054%" y="607.50"></text></g><g><title>futex_wait_queue_me (264 samples, 0.09%)</title><rect x="79.1531%" y="645" width="0.0892%" height="15" fill="rgb(221,221,31)" fg:x="234286" fg:w="264"/><text x="79.4031%" y="655.50"></text></g><g><title>schedule (262 samples, 0.09%)</title><rect x="79.1538%" y="629" width="0.0885%" height="15" fill="rgb(227,168,26)" fg:x="234288" fg:w="262"/><text x="79.4038%" y="639.50"></text></g><g><title>__schedule (261 samples, 0.09%)</title><rect x="79.1541%" y="613" width="0.0882%" height="15" fill="rgb(224,139,9)" fg:x="234289" fg:w="261"/><text x="79.4041%" y="623.50"></text></g><g><title>do_syscall_64 (271 samples, 0.09%)</title><rect x="79.1511%" y="709" width="0.0916%" height="15" fill="rgb(254,172,0)" fg:x="234280" fg:w="271"/><text x="79.4011%" y="719.50"></text></g><g><title>__x64_sys_futex (270 samples, 0.09%)</title><rect x="79.1514%" y="693" width="0.0912%" height="15" fill="rgb(235,203,1)" fg:x="234281" fg:w="270"/><text x="79.4014%" y="703.50"></text></g><g><title>do_futex (269 samples, 0.09%)</title><rect x="79.1517%" y="677" width="0.0909%" height="15" fill="rgb(216,205,24)" fg:x="234282" fg:w="269"/><text x="79.4017%" y="687.50"></text></g><g><title>futex_wait (268 samples, 0.09%)</title><rect x="79.1521%" y="661" width="0.0905%" height="15" fill="rgb(233,24,6)" fg:x="234283" fg:w="268"/><text x="79.4021%" y="671.50"></text></g><g><title>__pthread_cond_wait (286 samples, 0.10%)</title><rect x="79.1484%" y="773" width="0.0966%" height="15" fill="rgb(244,110,9)" fg:x="234272" fg:w="286"/><text x="79.3984%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (286 samples, 0.10%)</title><rect x="79.1484%" y="757" width="0.0966%" height="15" fill="rgb(239,222,42)" fg:x="234272" fg:w="286"/><text x="79.3984%" y="767.50"></text></g><g><title>futex_wait_cancelable (283 samples, 0.10%)</title><rect x="79.1494%" y="741" width="0.0956%" height="15" fill="rgb(218,145,13)" fg:x="234275" fg:w="283"/><text x="79.3994%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (278 samples, 0.09%)</title><rect x="79.1511%" y="725" width="0.0939%" height="15" fill="rgb(207,69,11)" fg:x="234280" fg:w="278"/><text x="79.4011%" y="735.50"></text></g><g><title>Monitor::lock_without_safepoint_check (297 samples, 0.10%)</title><rect x="79.1463%" y="821" width="0.1003%" height="15" fill="rgb(220,223,22)" fg:x="234266" fg:w="297"/><text x="79.3963%" y="831.50"></text></g><g><title>Monitor::ILock (297 samples, 0.10%)</title><rect x="79.1463%" y="805" width="0.1003%" height="15" fill="rgb(245,102,5)" fg:x="234266" fg:w="297"/><text x="79.3963%" y="815.50"></text></g><g><title>os::PlatformEvent::park (291 samples, 0.10%)</title><rect x="79.1484%" y="789" width="0.0983%" height="15" fill="rgb(211,148,2)" fg:x="234272" fg:w="291"/><text x="79.3984%" y="799.50"></text></g><g><title>SafepointSynchronize::block (319 samples, 0.11%)</title><rect x="79.1456%" y="837" width="0.1078%" height="15" fill="rgb(241,13,44)" fg:x="234264" fg:w="319"/><text x="79.3956%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (329 samples, 0.11%)</title><rect x="79.1443%" y="853" width="0.1112%" height="15" fill="rgb(219,137,21)" fg:x="234260" fg:w="329"/><text x="79.3943%" y="863.50"></text></g><g><title>copy_page_to_iter (153 samples, 0.05%)</title><rect x="79.3000%" y="693" width="0.0517%" height="15" fill="rgb(242,206,5)" fg:x="234721" fg:w="153"/><text x="79.5500%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (142 samples, 0.05%)</title><rect x="79.3038%" y="677" width="0.0480%" height="15" fill="rgb(217,114,22)" fg:x="234732" fg:w="142"/><text x="79.5538%" y="687.50"></text></g><g><title>pagecache_get_page (38 samples, 0.01%)</title><rect x="79.3534%" y="693" width="0.0128%" height="15" fill="rgb(253,206,42)" fg:x="234879" fg:w="38"/><text x="79.6034%" y="703.50"></text></g><g><title>find_get_entry (32 samples, 0.01%)</title><rect x="79.3555%" y="677" width="0.0108%" height="15" fill="rgb(236,102,18)" fg:x="234885" fg:w="32"/><text x="79.6055%" y="687.50"></text></g><g><title>generic_file_buffered_read (250 samples, 0.08%)</title><rect x="79.2923%" y="709" width="0.0845%" height="15" fill="rgb(208,59,49)" fg:x="234698" fg:w="250"/><text x="79.5423%" y="719.50"></text></g><g><title>new_sync_read (263 samples, 0.09%)</title><rect x="79.2882%" y="725" width="0.0889%" height="15" fill="rgb(215,194,28)" fg:x="234686" fg:w="263"/><text x="79.5382%" y="735.50"></text></g><g><title>ksys_read (333 samples, 0.11%)</title><rect x="79.2707%" y="757" width="0.1125%" height="15" fill="rgb(243,207,11)" fg:x="234634" fg:w="333"/><text x="79.5207%" y="767.50"></text></g><g><title>vfs_read (300 samples, 0.10%)</title><rect x="79.2818%" y="741" width="0.1014%" height="15" fill="rgb(254,179,35)" fg:x="234667" fg:w="300"/><text x="79.5318%" y="751.50"></text></g><g><title>do_syscall_64 (341 samples, 0.12%)</title><rect x="79.2693%" y="773" width="0.1152%" height="15" fill="rgb(235,97,3)" fg:x="234630" fg:w="341"/><text x="79.5193%" y="783.50"></text></g><g><title>handleRead (366 samples, 0.12%)</title><rect x="79.2629%" y="837" width="0.1237%" height="15" fill="rgb(215,155,33)" fg:x="234611" fg:w="366"/><text x="79.5129%" y="847.50"></text></g><g><title>__libc_read (363 samples, 0.12%)</title><rect x="79.2639%" y="821" width="0.1226%" height="15" fill="rgb(223,128,12)" fg:x="234614" fg:w="363"/><text x="79.5139%" y="831.50"></text></g><g><title>__libc_read (363 samples, 0.12%)</title><rect x="79.2639%" y="805" width="0.1226%" height="15" fill="rgb(208,157,18)" fg:x="234614" fg:w="363"/><text x="79.5139%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (348 samples, 0.12%)</title><rect x="79.2690%" y="789" width="0.1176%" height="15" fill="rgb(249,70,54)" fg:x="234629" fg:w="348"/><text x="79.5190%" y="799.50"></text></g><g><title>jni_GetObjectField (38 samples, 0.01%)</title><rect x="79.3913%" y="837" width="0.0128%" height="15" fill="rgb(244,118,24)" fg:x="234991" fg:w="38"/><text x="79.6413%" y="847.50"></text></g><g><title>[libc-2.31.so] (32 samples, 0.01%)</title><rect x="79.4075%" y="821" width="0.0108%" height="15" fill="rgb(211,54,0)" fg:x="235039" fg:w="32"/><text x="79.6575%" y="831.50"></text></g><g><title>readBytes (473 samples, 0.16%)</title><rect x="79.2598%" y="853" width="0.1598%" height="15" fill="rgb(245,137,45)" fg:x="234602" fg:w="473"/><text x="79.5098%" y="863.50"></text></g><g><title>jni_SetByteArrayRegion (46 samples, 0.02%)</title><rect x="79.4041%" y="837" width="0.0155%" height="15" fill="rgb(232,154,31)" fg:x="235029" fg:w="46"/><text x="79.6541%" y="847.50"></text></g><g><title>[unknown] (1,259 samples, 0.43%)</title><rect x="78.9977%" y="869" width="0.4254%" height="15" fill="rgb(253,6,39)" fg:x="233826" fg:w="1259"/><text x="79.2477%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.04%)</title><rect x="79.4264%" y="805" width="0.0375%" height="15" fill="rgb(234,183,24)" fg:x="235095" fg:w="111"/><text x="79.6764%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (110 samples, 0.04%)</title><rect x="79.4267%" y="789" width="0.0372%" height="15" fill="rgb(252,84,40)" fg:x="235096" fg:w="110"/><text x="79.6767%" y="799.50"></text></g><g><title>native_write_msr (110 samples, 0.04%)</title><rect x="79.4267%" y="773" width="0.0372%" height="15" fill="rgb(224,65,2)" fg:x="235096" fg:w="110"/><text x="79.6767%" y="783.50"></text></g><g><title>schedule_tail (113 samples, 0.04%)</title><rect x="79.4264%" y="837" width="0.0382%" height="15" fill="rgb(229,38,24)" fg:x="235095" fg:w="113"/><text x="79.6764%" y="847.50"></text></g><g><title>finish_task_switch (113 samples, 0.04%)</title><rect x="79.4264%" y="821" width="0.0382%" height="15" fill="rgb(218,131,50)" fg:x="235095" fg:w="113"/><text x="79.6764%" y="831.50"></text></g><g><title>ret_from_fork (114 samples, 0.04%)</title><rect x="79.4264%" y="853" width="0.0385%" height="15" fill="rgb(233,106,18)" fg:x="235095" fg:w="114"/><text x="79.6764%" y="863.50"></text></g><g><title>Thread::call_run (41 samples, 0.01%)</title><rect x="79.4696%" y="821" width="0.0139%" height="15" fill="rgb(220,216,11)" fg:x="235223" fg:w="41"/><text x="79.7196%" y="831.50"></text></g><g><title>__GI___clone (189 samples, 0.06%)</title><rect x="79.4234%" y="869" width="0.0639%" height="15" fill="rgb(251,100,45)" fg:x="235086" fg:w="189"/><text x="79.6734%" y="879.50"></text></g><g><title>start_thread (66 samples, 0.02%)</title><rect x="79.4649%" y="853" width="0.0223%" height="15" fill="rgb(235,143,32)" fg:x="235209" fg:w="66"/><text x="79.7149%" y="863.50"></text></g><g><title>thread_native_entry (54 samples, 0.02%)</title><rect x="79.4690%" y="837" width="0.0182%" height="15" fill="rgb(248,124,34)" fg:x="235221" fg:w="54"/><text x="79.7190%" y="847.50"></text></g><g><title>skyframe-evalua (74,934 samples, 25.32%)</title><rect x="54.1946%" y="885" width="25.3163%" height="15" fill="rgb(225,221,4)" fg:x="160411" fg:w="74934"/><text x="54.4446%" y="895.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (43 samples, 0.01%)</title><rect x="79.5247%" y="629" width="0.0145%" height="15" fill="rgb(242,27,43)" fg:x="235386" fg:w="43"/><text x="79.7747%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.01%)</title><rect x="79.5247%" y="613" width="0.0145%" height="15" fill="rgb(227,54,8)" fg:x="235386" fg:w="43"/><text x="79.7747%" y="623.50"></text></g><g><title>native_write_msr (42 samples, 0.01%)</title><rect x="79.5251%" y="597" width="0.0142%" height="15" fill="rgb(253,139,49)" fg:x="235387" fg:w="42"/><text x="79.7751%" y="607.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.02%)</title><rect x="79.5237%" y="821" width="0.0159%" height="15" fill="rgb(231,26,43)" fg:x="235383" fg:w="47"/><text x="79.7737%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.02%)</title><rect x="79.5237%" y="805" width="0.0159%" height="15" fill="rgb(207,121,39)" fg:x="235383" fg:w="47"/><text x="79.7737%" y="815.50"></text></g><g><title>futex_wait_cancelable (46 samples, 0.02%)</title><rect x="79.5240%" y="789" width="0.0155%" height="15" fill="rgb(223,101,35)" fg:x="235384" fg:w="46"/><text x="79.7740%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="79.5240%" y="773" width="0.0155%" height="15" fill="rgb(232,87,23)" fg:x="235384" fg:w="46"/><text x="79.7740%" y="783.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="79.5240%" y="757" width="0.0155%" height="15" fill="rgb(225,180,29)" fg:x="235384" fg:w="46"/><text x="79.7740%" y="767.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.02%)</title><rect x="79.5240%" y="741" width="0.0155%" height="15" fill="rgb(225,25,17)" fg:x="235384" fg:w="46"/><text x="79.7740%" y="751.50"></text></g><g><title>do_futex (45 samples, 0.02%)</title><rect x="79.5244%" y="725" width="0.0152%" height="15" fill="rgb(223,8,52)" fg:x="235385" fg:w="45"/><text x="79.7744%" y="735.50"></text></g><g><title>futex_wait (44 samples, 0.01%)</title><rect x="79.5247%" y="709" width="0.0149%" height="15" fill="rgb(246,42,21)" fg:x="235386" fg:w="44"/><text x="79.7747%" y="719.50"></text></g><g><title>futex_wait_queue_me (44 samples, 0.01%)</title><rect x="79.5247%" y="693" width="0.0149%" height="15" fill="rgb(205,64,43)" fg:x="235386" fg:w="44"/><text x="79.7747%" y="703.50"></text></g><g><title>schedule (44 samples, 0.01%)</title><rect x="79.5247%" y="677" width="0.0149%" height="15" fill="rgb(221,160,13)" fg:x="235386" fg:w="44"/><text x="79.7747%" y="687.50"></text></g><g><title>__schedule (44 samples, 0.01%)</title><rect x="79.5247%" y="661" width="0.0149%" height="15" fill="rgb(239,58,35)" fg:x="235386" fg:w="44"/><text x="79.7747%" y="671.50"></text></g><g><title>finish_task_switch (44 samples, 0.01%)</title><rect x="79.5247%" y="645" width="0.0149%" height="15" fill="rgb(251,26,40)" fg:x="235386" fg:w="44"/><text x="79.7747%" y="655.50"></text></g><g><title>Unsafe_Park (49 samples, 0.02%)</title><rect x="79.5237%" y="853" width="0.0166%" height="15" fill="rgb(247,0,4)" fg:x="235383" fg:w="49"/><text x="79.7737%" y="863.50"></text></g><g><title>Parker::park (49 samples, 0.02%)</title><rect x="79.5237%" y="837" width="0.0166%" height="15" fill="rgb(218,130,10)" fg:x="235383" fg:w="49"/><text x="79.7737%" y="847.50"></text></g><g><title>[perf-12570.map] (91 samples, 0.03%)</title><rect x="79.5112%" y="869" width="0.0307%" height="15" fill="rgb(239,32,7)" fg:x="235346" fg:w="91"/><text x="79.7612%" y="879.50"></text></g><g><title>skyframe-invali (119 samples, 0.04%)</title><rect x="79.5109%" y="885" width="0.0402%" height="15" fill="rgb(210,192,24)" fg:x="235345" fg:w="119"/><text x="79.7609%" y="895.50"></text></g><g><title>[anon] (33 samples, 0.01%)</title><rect x="79.5609%" y="869" width="0.0111%" height="15" fill="rgb(226,212,17)" fg:x="235493" fg:w="33"/><text x="79.8109%" y="879.50"></text></g><g><title>[zig] (33 samples, 0.01%)</title><rect x="79.5609%" y="853" width="0.0111%" height="15" fill="rgb(219,201,28)" fg:x="235493" fg:w="33"/><text x="79.8109%" y="863.50"></text></g><g><title>[unknown] (148 samples, 0.05%)</title><rect x="79.5724%" y="869" width="0.0500%" height="15" fill="rgb(235,207,41)" fg:x="235527" fg:w="148"/><text x="79.8224%" y="879.50"></text></g><g><title>[zig] (148 samples, 0.05%)</title><rect x="79.5724%" y="853" width="0.0500%" height="15" fill="rgb(241,95,54)" fg:x="235527" fg:w="148"/><text x="79.8224%" y="863.50"></text></g><g><title>__irqentry_text_end (51 samples, 0.02%)</title><rect x="86.9226%" y="853" width="0.0172%" height="15" fill="rgb(248,12,23)" fg:x="257283" fg:w="51"/><text x="87.1726%" y="863.50"></text></g><g><title>_cond_resched (31 samples, 0.01%)</title><rect x="86.9820%" y="805" width="0.0105%" height="15" fill="rgb(228,173,4)" fg:x="257459" fg:w="31"/><text x="87.2320%" y="815.50"></text></g><g><title>down_read_trylock (36 samples, 0.01%)</title><rect x="87.0010%" y="805" width="0.0122%" height="15" fill="rgb(254,99,5)" fg:x="257515" fg:w="36"/><text x="87.2510%" y="815.50"></text></g><g><title>vmacache_find (46 samples, 0.02%)</title><rect x="87.0263%" y="789" width="0.0155%" height="15" fill="rgb(212,184,17)" fg:x="257590" fg:w="46"/><text x="87.2763%" y="799.50"></text></g><g><title>find_vma (89 samples, 0.03%)</title><rect x="87.0131%" y="805" width="0.0301%" height="15" fill="rgb(252,174,1)" fg:x="257551" fg:w="89"/><text x="87.2631%" y="815.50"></text></g><g><title>__count_memcg_events.part.0 (38 samples, 0.01%)</title><rect x="87.1567%" y="789" width="0.0128%" height="15" fill="rgb(241,118,51)" fg:x="257976" fg:w="38"/><text x="87.4067%" y="799.50"></text></g><g><title>finish_task_switch (31 samples, 0.01%)</title><rect x="87.1817%" y="693" width="0.0105%" height="15" fill="rgb(227,94,47)" fg:x="258050" fg:w="31"/><text x="87.4317%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.01%)</title><rect x="87.1820%" y="677" width="0.0101%" height="15" fill="rgb(229,104,2)" fg:x="258051" fg:w="30"/><text x="87.4320%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="87.1820%" y="661" width="0.0101%" height="15" fill="rgb(219,28,31)" fg:x="258051" fg:w="30"/><text x="87.4320%" y="671.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="87.1820%" y="645" width="0.0101%" height="15" fill="rgb(233,109,36)" fg:x="258051" fg:w="30"/><text x="87.4320%" y="655.50"></text></g><g><title>wait_on_page_bit_common (33 samples, 0.01%)</title><rect x="87.1814%" y="757" width="0.0111%" height="15" fill="rgb(246,88,11)" fg:x="258049" fg:w="33"/><text x="87.4314%" y="767.50"></text></g><g><title>io_schedule (33 samples, 0.01%)</title><rect x="87.1814%" y="741" width="0.0111%" height="15" fill="rgb(209,212,17)" fg:x="258049" fg:w="33"/><text x="87.4314%" y="751.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="87.1814%" y="725" width="0.0111%" height="15" fill="rgb(243,59,29)" fg:x="258049" fg:w="33"/><text x="87.4314%" y="735.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="87.1814%" y="709" width="0.0111%" height="15" fill="rgb(244,205,48)" fg:x="258049" fg:w="33"/><text x="87.4314%" y="719.50"></text></g><g><title>__do_fault (70 samples, 0.02%)</title><rect x="87.1695%" y="789" width="0.0236%" height="15" fill="rgb(227,30,6)" fg:x="258014" fg:w="70"/><text x="87.4195%" y="799.50"></text></g><g><title>filemap_fault (70 samples, 0.02%)</title><rect x="87.1695%" y="773" width="0.0236%" height="15" fill="rgb(220,205,48)" fg:x="258014" fg:w="70"/><text x="87.4195%" y="783.50"></text></g><g><title>_raw_spin_lock (30 samples, 0.01%)</title><rect x="87.1979%" y="789" width="0.0101%" height="15" fill="rgb(250,94,14)" fg:x="258098" fg:w="30"/><text x="87.4479%" y="799.50"></text></g><g><title>__next_zones_zonelist (38 samples, 0.01%)</title><rect x="87.2331%" y="757" width="0.0128%" height="15" fill="rgb(216,119,42)" fg:x="258202" fg:w="38"/><text x="87.4831%" y="767.50"></text></g><g><title>__list_del_entry_valid (62 samples, 0.02%)</title><rect x="87.2969%" y="741" width="0.0209%" height="15" fill="rgb(232,155,0)" fg:x="258391" fg:w="62"/><text x="87.5469%" y="751.50"></text></g><g><title>kernel_init_free_pages (390 samples, 0.13%)</title><rect x="87.3253%" y="725" width="0.1318%" height="15" fill="rgb(212,24,32)" fg:x="258475" fg:w="390"/><text x="87.5753%" y="735.50"></text></g><g><title>clear_page_erms (384 samples, 0.13%)</title><rect x="87.3273%" y="709" width="0.1297%" height="15" fill="rgb(216,69,20)" fg:x="258481" fg:w="384"/><text x="87.5773%" y="719.50"></text></g><g><title>get_page_from_freelist (617 samples, 0.21%)</title><rect x="87.2489%" y="757" width="0.2085%" height="15" fill="rgb(229,73,31)" fg:x="258249" fg:w="617"/><text x="87.4989%" y="767.50"></text></g><g><title>prep_new_page (408 samples, 0.14%)</title><rect x="87.3195%" y="741" width="0.1378%" height="15" fill="rgb(224,219,20)" fg:x="258458" fg:w="408"/><text x="87.5695%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (698 samples, 0.24%)</title><rect x="87.2222%" y="773" width="0.2358%" height="15" fill="rgb(215,146,41)" fg:x="258170" fg:w="698"/><text x="87.4722%" y="783.50"></text></g><g><title>alloc_pages_vma (765 samples, 0.26%)</title><rect x="87.2084%" y="789" width="0.2585%" height="15" fill="rgb(244,71,31)" fg:x="258129" fg:w="765"/><text x="87.4584%" y="799.50"></text></g><g><title>cgroup_throttle_swaprate (50 samples, 0.02%)</title><rect x="87.4706%" y="789" width="0.0169%" height="15" fill="rgb(224,24,11)" fg:x="258905" fg:w="50"/><text x="87.7206%" y="799.50"></text></g><g><title>kernel_init_free_pages (61 samples, 0.02%)</title><rect x="87.4885%" y="709" width="0.0206%" height="15" fill="rgb(229,76,15)" fg:x="258958" fg:w="61"/><text x="87.7385%" y="719.50"></text></g><g><title>clear_page_erms (59 samples, 0.02%)</title><rect x="87.4891%" y="693" width="0.0199%" height="15" fill="rgb(209,93,2)" fg:x="258960" fg:w="59"/><text x="87.7391%" y="703.50"></text></g><g><title>alloc_pages_vma (66 samples, 0.02%)</title><rect x="87.4878%" y="773" width="0.0223%" height="15" fill="rgb(216,200,50)" fg:x="258956" fg:w="66"/><text x="87.7378%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (66 samples, 0.02%)</title><rect x="87.4878%" y="757" width="0.0223%" height="15" fill="rgb(211,67,34)" fg:x="258956" fg:w="66"/><text x="87.7378%" y="767.50"></text></g><g><title>get_page_from_freelist (66 samples, 0.02%)</title><rect x="87.4878%" y="741" width="0.0223%" height="15" fill="rgb(225,87,47)" fg:x="258956" fg:w="66"/><text x="87.7378%" y="751.50"></text></g><g><title>prep_new_page (64 samples, 0.02%)</title><rect x="87.4885%" y="725" width="0.0216%" height="15" fill="rgb(217,185,16)" fg:x="258958" fg:w="64"/><text x="87.7385%" y="735.50"></text></g><g><title>clear_huge_page (46 samples, 0.02%)</title><rect x="87.5101%" y="773" width="0.0155%" height="15" fill="rgb(205,0,0)" fg:x="259022" fg:w="46"/><text x="87.7601%" y="783.50"></text></g><g><title>clear_subpage (46 samples, 0.02%)</title><rect x="87.5101%" y="757" width="0.0155%" height="15" fill="rgb(207,116,45)" fg:x="259022" fg:w="46"/><text x="87.7601%" y="767.50"></text></g><g><title>clear_page_erms (42 samples, 0.01%)</title><rect x="87.5114%" y="741" width="0.0142%" height="15" fill="rgb(221,156,26)" fg:x="259026" fg:w="42"/><text x="87.7614%" y="751.50"></text></g><g><title>do_huge_pmd_anonymous_page (118 samples, 0.04%)</title><rect x="87.4875%" y="789" width="0.0399%" height="15" fill="rgb(213,140,4)" fg:x="258955" fg:w="118"/><text x="87.7375%" y="799.50"></text></g><g><title>do_page_mkwrite (89 samples, 0.03%)</title><rect x="87.5273%" y="789" width="0.0301%" height="15" fill="rgb(231,224,15)" fg:x="259073" fg:w="89"/><text x="87.7773%" y="799.50"></text></g><g><title>btrfs_page_mkwrite (89 samples, 0.03%)</title><rect x="87.5273%" y="773" width="0.0301%" height="15" fill="rgb(244,76,20)" fg:x="259073" fg:w="89"/><text x="87.7773%" y="783.50"></text></g><g><title>page_add_file_rmap (185 samples, 0.06%)</title><rect x="87.7574%" y="757" width="0.0625%" height="15" fill="rgb(238,117,7)" fg:x="259754" fg:w="185"/><text x="88.0074%" y="767.50"></text></g><g><title>lock_page_memcg (33 samples, 0.01%)</title><rect x="87.8088%" y="741" width="0.0111%" height="15" fill="rgb(235,1,10)" fg:x="259906" fg:w="33"/><text x="88.0588%" y="751.50"></text></g><g><title>alloc_set_pte (337 samples, 0.11%)</title><rect x="87.7108%" y="773" width="0.1139%" height="15" fill="rgb(216,165,6)" fg:x="259616" fg:w="337"/><text x="87.9608%" y="783.50"></text></g><g><title>unlock_page (83 samples, 0.03%)</title><rect x="87.8267%" y="773" width="0.0280%" height="15" fill="rgb(246,91,35)" fg:x="259959" fg:w="83"/><text x="88.0767%" y="783.50"></text></g><g><title>filemap_map_pages (957 samples, 0.32%)</title><rect x="87.5641%" y="789" width="0.3233%" height="15" fill="rgb(228,96,24)" fg:x="259182" fg:w="957"/><text x="87.8141%" y="799.50"></text></g><g><title>xas_find (97 samples, 0.03%)</title><rect x="87.8547%" y="773" width="0.0328%" height="15" fill="rgb(254,217,53)" fg:x="260042" fg:w="97"/><text x="88.1047%" y="783.50"></text></g><g><title>xas_load (75 samples, 0.03%)</title><rect x="87.8621%" y="757" width="0.0253%" height="15" fill="rgb(209,60,0)" fg:x="260064" fg:w="75"/><text x="88.1121%" y="767.50"></text></g><g><title>__pagevec_lru_add_fn (147 samples, 0.05%)</title><rect x="87.9044%" y="757" width="0.0497%" height="15" fill="rgb(250,93,26)" fg:x="260189" fg:w="147"/><text x="88.1544%" y="767.50"></text></g><g><title>lru_cache_add (237 samples, 0.08%)</title><rect x="87.8892%" y="789" width="0.0801%" height="15" fill="rgb(211,9,40)" fg:x="260144" fg:w="237"/><text x="88.1392%" y="799.50"></text></g><g><title>pagevec_lru_move_fn (209 samples, 0.07%)</title><rect x="87.8986%" y="773" width="0.0706%" height="15" fill="rgb(242,57,20)" fg:x="260172" fg:w="209"/><text x="88.1486%" y="783.50"></text></g><g><title>get_mem_cgroup_from_mm (61 samples, 0.02%)</title><rect x="87.9817%" y="773" width="0.0206%" height="15" fill="rgb(248,85,48)" fg:x="260418" fg:w="61"/><text x="88.2317%" y="783.50"></text></g><g><title>mem_cgroup_charge_statistics.constprop.0 (31 samples, 0.01%)</title><rect x="88.0023%" y="773" width="0.0105%" height="15" fill="rgb(212,117,2)" fg:x="260479" fg:w="31"/><text x="88.2523%" y="783.50"></text></g><g><title>mem_cgroup_charge (235 samples, 0.08%)</title><rect x="87.9699%" y="789" width="0.0794%" height="15" fill="rgb(243,19,3)" fg:x="260383" fg:w="235"/><text x="88.2199%" y="799.50"></text></g><g><title>try_charge (105 samples, 0.04%)</title><rect x="88.0138%" y="773" width="0.0355%" height="15" fill="rgb(232,217,24)" fg:x="260513" fg:w="105"/><text x="88.2638%" y="783.50"></text></g><g><title>__mod_node_page_state (30 samples, 0.01%)</title><rect x="88.0689%" y="757" width="0.0101%" height="15" fill="rgb(224,175,40)" fg:x="260676" fg:w="30"/><text x="88.3189%" y="767.50"></text></g><g><title>__mod_lruvec_state (39 samples, 0.01%)</title><rect x="88.0665%" y="773" width="0.0132%" height="15" fill="rgb(212,162,32)" fg:x="260669" fg:w="39"/><text x="88.3165%" y="783.50"></text></g><g><title>page_add_new_anon_rmap (93 samples, 0.03%)</title><rect x="88.0561%" y="789" width="0.0314%" height="15" fill="rgb(215,9,4)" fg:x="260638" fg:w="93"/><text x="88.3061%" y="799.50"></text></g><g><title>pte_alloc_one (31 samples, 0.01%)</title><rect x="88.0875%" y="789" width="0.0105%" height="15" fill="rgb(242,42,7)" fg:x="260731" fg:w="31"/><text x="88.3375%" y="799.50"></text></g><g><title>handle_mm_fault (3,180 samples, 1.07%)</title><rect x="87.0432%" y="805" width="1.0744%" height="15" fill="rgb(242,184,45)" fg:x="257640" fg:w="3180"/><text x="87.2932%" y="815.50"></text></g><g><title>wp_page_copy (43 samples, 0.01%)</title><rect x="88.1030%" y="789" width="0.0145%" height="15" fill="rgb(228,111,51)" fg:x="260777" fg:w="43"/><text x="88.3530%" y="799.50"></text></g><g><title>do_user_addr_fault (3,457 samples, 1.17%)</title><rect x="86.9601%" y="821" width="1.1679%" height="15" fill="rgb(236,147,17)" fg:x="257394" fg:w="3457"/><text x="87.2101%" y="831.50"></text></g><g><title>up_read (31 samples, 0.01%)</title><rect x="88.1175%" y="805" width="0.0105%" height="15" fill="rgb(210,75,22)" fg:x="260820" fg:w="31"/><text x="88.3675%" y="815.50"></text></g><g><title>exc_page_fault (3,474 samples, 1.17%)</title><rect x="86.9557%" y="837" width="1.1737%" height="15" fill="rgb(217,159,45)" fg:x="257381" fg:w="3474"/><text x="87.2057%" y="847.50"></text></g><g><title>asm_exc_page_fault (3,560 samples, 1.20%)</title><rect x="86.9445%" y="853" width="1.2027%" height="15" fill="rgb(245,165,53)" fg:x="257348" fg:w="3560"/><text x="87.1945%" y="863.50"></text></g><g><title>irqentry_exit_to_user_mode (48 samples, 0.02%)</title><rect x="88.1311%" y="837" width="0.0162%" height="15" fill="rgb(251,190,50)" fg:x="260860" fg:w="48"/><text x="88.3811%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (47 samples, 0.02%)</title><rect x="88.1314%" y="821" width="0.0159%" height="15" fill="rgb(208,203,29)" fg:x="260861" fg:w="47"/><text x="88.3814%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.02%)</title><rect x="88.1486%" y="757" width="0.0169%" height="15" fill="rgb(207,209,35)" fg:x="260912" fg:w="50"/><text x="88.3986%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="88.1490%" y="741" width="0.0166%" height="15" fill="rgb(230,144,49)" fg:x="260913" fg:w="49"/><text x="88.3990%" y="751.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="88.1490%" y="725" width="0.0166%" height="15" fill="rgb(229,31,6)" fg:x="260913" fg:w="49"/><text x="88.3990%" y="735.50"></text></g><g><title>finish_task_switch (55 samples, 0.02%)</title><rect x="88.1486%" y="773" width="0.0186%" height="15" fill="rgb(251,129,24)" fg:x="260912" fg:w="55"/><text x="88.3986%" y="783.50"></text></g><g><title>schedule (58 samples, 0.02%)</title><rect x="88.1486%" y="805" width="0.0196%" height="15" fill="rgb(235,105,15)" fg:x="260912" fg:w="58"/><text x="88.3986%" y="815.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="88.1486%" y="789" width="0.0196%" height="15" fill="rgb(216,52,43)" fg:x="260912" fg:w="58"/><text x="88.3986%" y="799.50"></text></g><g><title>irqentry_exit_to_user_mode (63 samples, 0.02%)</title><rect x="88.1473%" y="837" width="0.0213%" height="15" fill="rgb(238,144,41)" fg:x="260908" fg:w="63"/><text x="88.3973%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.02%)</title><rect x="88.1476%" y="821" width="0.0209%" height="15" fill="rgb(243,63,9)" fg:x="260909" fg:w="62"/><text x="88.3976%" y="831.50"></text></g><g><title>__sysvec_apic_timer_interrupt (31 samples, 0.01%)</title><rect x="88.1686%" y="821" width="0.0105%" height="15" fill="rgb(246,208,1)" fg:x="260971" fg:w="31"/><text x="88.4186%" y="831.50"></text></g><g><title>hrtimer_interrupt (31 samples, 0.01%)</title><rect x="88.1686%" y="805" width="0.0105%" height="15" fill="rgb(233,182,18)" fg:x="260971" fg:w="31"/><text x="88.4186%" y="815.50"></text></g><g><title>file_free_rcu (42 samples, 0.01%)</title><rect x="88.1824%" y="741" width="0.0142%" height="15" fill="rgb(242,224,8)" fg:x="261012" fg:w="42"/><text x="88.4324%" y="751.50"></text></g><g><title>refill_obj_stock (37 samples, 0.01%)</title><rect x="88.2510%" y="725" width="0.0125%" height="15" fill="rgb(243,54,37)" fg:x="261215" fg:w="37"/><text x="88.5010%" y="735.50"></text></g><g><title>kmem_cache_free (204 samples, 0.07%)</title><rect x="88.1996%" y="741" width="0.0689%" height="15" fill="rgb(233,192,12)" fg:x="261063" fg:w="204"/><text x="88.4496%" y="751.50"></text></g><g><title>rcu_cblist_dequeue (66 samples, 0.02%)</title><rect x="88.2692%" y="741" width="0.0223%" height="15" fill="rgb(251,192,53)" fg:x="261269" fg:w="66"/><text x="88.5192%" y="751.50"></text></g><g><title>rcu_core (333 samples, 0.11%)</title><rect x="88.1794%" y="757" width="0.1125%" height="15" fill="rgb(246,141,26)" fg:x="261003" fg:w="333"/><text x="88.4294%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (435 samples, 0.15%)</title><rect x="88.1473%" y="853" width="0.1470%" height="15" fill="rgb(239,195,19)" fg:x="260908" fg:w="435"/><text x="88.3973%" y="863.50"></text></g><g><title>sysvec_apic_timer_interrupt (372 samples, 0.13%)</title><rect x="88.1686%" y="837" width="0.1257%" height="15" fill="rgb(241,16,39)" fg:x="260971" fg:w="372"/><text x="88.4186%" y="847.50"></text></g><g><title>irq_exit_rcu (341 samples, 0.12%)</title><rect x="88.1790%" y="821" width="0.1152%" height="15" fill="rgb(223,13,53)" fg:x="261002" fg:w="341"/><text x="88.4290%" y="831.50"></text></g><g><title>do_softirq_own_stack (340 samples, 0.11%)</title><rect x="88.1794%" y="805" width="0.1149%" height="15" fill="rgb(214,227,0)" fg:x="261003" fg:w="340"/><text x="88.4294%" y="815.50"></text></g><g><title>asm_call_sysvec_on_stack (340 samples, 0.11%)</title><rect x="88.1794%" y="789" width="0.1149%" height="15" fill="rgb(228,103,26)" fg:x="261003" fg:w="340"/><text x="88.4294%" y="799.50"></text></g><g><title>__softirqentry_text_start (340 samples, 0.11%)</title><rect x="88.1794%" y="773" width="0.1149%" height="15" fill="rgb(254,177,53)" fg:x="261003" fg:w="340"/><text x="88.4294%" y="783.50"></text></g><g><title>finish_task_switch (42 samples, 0.01%)</title><rect x="88.2963%" y="773" width="0.0142%" height="15" fill="rgb(208,201,34)" fg:x="261349" fg:w="42"/><text x="88.5463%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.01%)</title><rect x="88.2969%" y="757" width="0.0135%" height="15" fill="rgb(212,39,5)" fg:x="261351" fg:w="40"/><text x="88.5469%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="88.2973%" y="741" width="0.0132%" height="15" fill="rgb(246,117,3)" fg:x="261352" fg:w="39"/><text x="88.5473%" y="751.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="88.2973%" y="725" width="0.0132%" height="15" fill="rgb(244,118,39)" fg:x="261352" fg:w="39"/><text x="88.5473%" y="735.50"></text></g><g><title>asm_sysvec_reschedule_ipi (49 samples, 0.02%)</title><rect x="88.2949%" y="853" width="0.0166%" height="15" fill="rgb(241,64,10)" fg:x="261345" fg:w="49"/><text x="88.5449%" y="863.50"></text></g><g><title>irqentry_exit_to_user_mode (49 samples, 0.02%)</title><rect x="88.2949%" y="837" width="0.0166%" height="15" fill="rgb(229,39,44)" fg:x="261345" fg:w="49"/><text x="88.5449%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (49 samples, 0.02%)</title><rect x="88.2949%" y="821" width="0.0166%" height="15" fill="rgb(230,226,3)" fg:x="261345" fg:w="49"/><text x="88.5449%" y="831.50"></text></g><g><title>schedule (49 samples, 0.02%)</title><rect x="88.2949%" y="805" width="0.0166%" height="15" fill="rgb(222,13,42)" fg:x="261345" fg:w="49"/><text x="88.5449%" y="815.50"></text></g><g><title>__schedule (49 samples, 0.02%)</title><rect x="88.2949%" y="789" width="0.0166%" height="15" fill="rgb(247,180,54)" fg:x="261345" fg:w="49"/><text x="88.5449%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (585 samples, 0.20%)</title><rect x="88.3213%" y="853" width="0.1976%" height="15" fill="rgb(205,96,16)" fg:x="261423" fg:w="585"/><text x="88.5713%" y="863.50"></text></g><g><title>perf_try_init_event (31 samples, 0.01%)</title><rect x="88.6882%" y="709" width="0.0105%" height="15" fill="rgb(205,100,21)" fg:x="262509" fg:w="31"/><text x="88.9382%" y="719.50"></text></g><g><title>x86_pmu_event_init (31 samples, 0.01%)</title><rect x="88.6882%" y="693" width="0.0105%" height="15" fill="rgb(248,51,4)" fg:x="262509" fg:w="31"/><text x="88.9382%" y="703.50"></text></g><g><title>perf_event_alloc (52 samples, 0.02%)</title><rect x="88.6818%" y="725" width="0.0176%" height="15" fill="rgb(217,197,30)" fg:x="262490" fg:w="52"/><text x="88.9318%" y="735.50"></text></g><g><title>inherit_task_group.isra.0 (62 samples, 0.02%)</title><rect x="88.6787%" y="757" width="0.0209%" height="15" fill="rgb(240,179,40)" fg:x="262481" fg:w="62"/><text x="88.9287%" y="767.50"></text></g><g><title>inherit_event.constprop.0 (62 samples, 0.02%)</title><rect x="88.6787%" y="741" width="0.0209%" height="15" fill="rgb(212,185,35)" fg:x="262481" fg:w="62"/><text x="88.9287%" y="751.50"></text></g><g><title>perf_event_init_task (65 samples, 0.02%)</title><rect x="88.6780%" y="773" width="0.0220%" height="15" fill="rgb(251,222,31)" fg:x="262479" fg:w="65"/><text x="88.9280%" y="783.50"></text></g><g><title>copy_process (137 samples, 0.05%)</title><rect x="88.6564%" y="789" width="0.0463%" height="15" fill="rgb(208,140,36)" fg:x="262415" fg:w="137"/><text x="88.9064%" y="799.50"></text></g><g><title>__do_sys_clone (160 samples, 0.05%)</title><rect x="88.6564%" y="821" width="0.0541%" height="15" fill="rgb(220,148,1)" fg:x="262415" fg:w="160"/><text x="88.9064%" y="831.50"></text></g><g><title>kernel_clone (160 samples, 0.05%)</title><rect x="88.6564%" y="805" width="0.0541%" height="15" fill="rgb(254,4,28)" fg:x="262415" fg:w="160"/><text x="88.9064%" y="815.50"></text></g><g><title>_copy_to_user (296 samples, 0.10%)</title><rect x="88.7517%" y="789" width="0.1000%" height="15" fill="rgb(222,185,44)" fg:x="262697" fg:w="296"/><text x="89.0017%" y="799.50"></text></g><g><title>copy_user_enhanced_fast_string (264 samples, 0.09%)</title><rect x="88.7625%" y="773" width="0.0892%" height="15" fill="rgb(215,74,39)" fg:x="262729" fg:w="264"/><text x="89.0125%" y="783.50"></text></g><g><title>from_kgid_munged (54 samples, 0.02%)</title><rect x="88.8517%" y="789" width="0.0182%" height="15" fill="rgb(247,86,4)" fg:x="262993" fg:w="54"/><text x="89.1017%" y="799.50"></text></g><g><title>map_id_up (49 samples, 0.02%)</title><rect x="88.8534%" y="773" width="0.0166%" height="15" fill="rgb(231,105,32)" fg:x="262998" fg:w="49"/><text x="89.1034%" y="783.50"></text></g><g><title>cp_new_stat (493 samples, 0.17%)</title><rect x="88.7179%" y="805" width="0.1666%" height="15" fill="rgb(222,65,35)" fg:x="262597" fg:w="493"/><text x="88.9679%" y="815.50"></text></g><g><title>from_kuid_munged (43 samples, 0.01%)</title><rect x="88.8699%" y="789" width="0.0145%" height="15" fill="rgb(218,145,35)" fg:x="263047" fg:w="43"/><text x="89.1199%" y="799.50"></text></g><g><title>map_id_up (32 samples, 0.01%)</title><rect x="88.8736%" y="773" width="0.0108%" height="15" fill="rgb(208,7,15)" fg:x="263058" fg:w="32"/><text x="89.1236%" y="783.50"></text></g><g><title>__fget_light (190 samples, 0.06%)</title><rect x="88.8943%" y="789" width="0.0642%" height="15" fill="rgb(209,83,13)" fg:x="263119" fg:w="190"/><text x="89.1443%" y="799.50"></text></g><g><title>__fget_files (166 samples, 0.06%)</title><rect x="88.9024%" y="773" width="0.0561%" height="15" fill="rgb(218,3,10)" fg:x="263143" fg:w="166"/><text x="89.1524%" y="783.50"></text></g><g><title>_raw_spin_lock (145 samples, 0.05%)</title><rect x="89.1416%" y="773" width="0.0490%" height="15" fill="rgb(211,219,4)" fg:x="263851" fg:w="145"/><text x="89.3916%" y="783.50"></text></g><g><title>generic_fillattr (51 samples, 0.02%)</title><rect x="89.1963%" y="773" width="0.0172%" height="15" fill="rgb(228,194,12)" fg:x="264013" fg:w="51"/><text x="89.4463%" y="783.50"></text></g><g><title>btrfs_getattr (855 samples, 0.29%)</title><rect x="88.9584%" y="789" width="0.2889%" height="15" fill="rgb(210,175,7)" fg:x="263309" fg:w="855"/><text x="89.2084%" y="799.50"></text></g><g><title>inode_get_bytes (100 samples, 0.03%)</title><rect x="89.2135%" y="773" width="0.0338%" height="15" fill="rgb(243,132,6)" fg:x="264064" fg:w="100"/><text x="89.4635%" y="783.50"></text></g><g><title>_raw_spin_lock (88 samples, 0.03%)</title><rect x="89.2176%" y="757" width="0.0297%" height="15" fill="rgb(207,72,18)" fg:x="264076" fg:w="88"/><text x="89.4676%" y="767.50"></text></g><g><title>fput_many (79 samples, 0.03%)</title><rect x="89.2473%" y="789" width="0.0267%" height="15" fill="rgb(236,1,18)" fg:x="264164" fg:w="79"/><text x="89.4973%" y="799.50"></text></g><g><title>apparmor_inode_getattr (147 samples, 0.05%)</title><rect x="89.2838%" y="773" width="0.0497%" height="15" fill="rgb(227,0,18)" fg:x="264272" fg:w="147"/><text x="89.5338%" y="783.50"></text></g><g><title>security_inode_getattr (543 samples, 0.18%)</title><rect x="89.2740%" y="789" width="0.1835%" height="15" fill="rgb(247,37,5)" fg:x="264243" fg:w="543"/><text x="89.5240%" y="799.50"></text></g><g><title>tomoyo_path_perm (357 samples, 0.12%)</title><rect x="89.3368%" y="773" width="0.1206%" height="15" fill="rgb(237,179,24)" fg:x="264429" fg:w="357"/><text x="89.5868%" y="783.50"></text></g><g><title>tomoyo_init_request_info (188 samples, 0.06%)</title><rect x="89.3939%" y="757" width="0.0635%" height="15" fill="rgb(226,53,20)" fg:x="264598" fg:w="188"/><text x="89.6439%" y="767.50"></text></g><g><title>tomoyo_domain (72 samples, 0.02%)</title><rect x="89.4331%" y="741" width="0.0243%" height="15" fill="rgb(247,75,7)" fg:x="264714" fg:w="72"/><text x="89.6831%" y="751.50"></text></g><g><title>__do_sys_newfstat (2,441 samples, 0.82%)</title><rect x="88.7105%" y="821" width="0.8247%" height="15" fill="rgb(233,96,12)" fg:x="262575" fg:w="2441"/><text x="88.9605%" y="831.50"></text></g><g><title>vfs_fstat (1,926 samples, 0.65%)</title><rect x="88.8845%" y="805" width="0.6507%" height="15" fill="rgb(224,125,0)" fg:x="263090" fg:w="1926"/><text x="89.1345%" y="815.50"></text></g><g><title>vfs_getattr_nosec (230 samples, 0.08%)</title><rect x="89.4574%" y="789" width="0.0777%" height="15" fill="rgb(224,92,25)" fg:x="264786" fg:w="230"/><text x="89.7074%" y="799.50"></text></g><g><title>filename_lookup (36 samples, 0.01%)</title><rect x="89.5358%" y="789" width="0.0122%" height="15" fill="rgb(224,42,24)" fg:x="265018" fg:w="36"/><text x="89.7858%" y="799.50"></text></g><g><title>path_lookupat (34 samples, 0.01%)</title><rect x="89.5365%" y="773" width="0.0115%" height="15" fill="rgb(234,132,49)" fg:x="265020" fg:w="34"/><text x="89.7865%" y="783.50"></text></g><g><title>__do_sys_newstat (48 samples, 0.02%)</title><rect x="89.5352%" y="821" width="0.0162%" height="15" fill="rgb(248,100,35)" fg:x="265016" fg:w="48"/><text x="89.7852%" y="831.50"></text></g><g><title>vfs_statx (46 samples, 0.02%)</title><rect x="89.5358%" y="805" width="0.0155%" height="15" fill="rgb(239,94,40)" fg:x="265018" fg:w="46"/><text x="89.7858%" y="815.50"></text></g><g><title>__close_fd (137 samples, 0.05%)</title><rect x="89.5558%" y="805" width="0.0463%" height="15" fill="rgb(235,139,28)" fg:x="265077" fg:w="137"/><text x="89.8058%" y="815.50"></text></g><g><title>pick_file (132 samples, 0.04%)</title><rect x="89.5575%" y="789" width="0.0446%" height="15" fill="rgb(217,144,7)" fg:x="265082" fg:w="132"/><text x="89.8075%" y="799.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.03%)</title><rect x="89.5693%" y="773" width="0.0328%" height="15" fill="rgb(227,55,4)" fg:x="265117" fg:w="97"/><text x="89.8193%" y="783.50"></text></g><g><title>fput_many (316 samples, 0.11%)</title><rect x="89.6223%" y="789" width="0.1068%" height="15" fill="rgb(252,82,54)" fg:x="265274" fg:w="316"/><text x="89.8723%" y="799.50"></text></g><g><title>task_work_add (237 samples, 0.08%)</title><rect x="89.6490%" y="773" width="0.0801%" height="15" fill="rgb(245,172,4)" fg:x="265353" fg:w="237"/><text x="89.8990%" y="783.50"></text></g><g><title>__x64_sys_close (584 samples, 0.20%)</title><rect x="89.5517%" y="821" width="0.1973%" height="15" fill="rgb(207,26,27)" fg:x="265065" fg:w="584"/><text x="89.8017%" y="831.50"></text></g><g><title>filp_close (435 samples, 0.15%)</title><rect x="89.6020%" y="805" width="0.1470%" height="15" fill="rgb(252,98,18)" fg:x="265214" fg:w="435"/><text x="89.8520%" y="815.50"></text></g><g><title>locks_remove_posix (59 samples, 0.02%)</title><rect x="89.7291%" y="789" width="0.0199%" height="15" fill="rgb(244,8,26)" fg:x="265590" fg:w="59"/><text x="89.9791%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (125 samples, 0.04%)</title><rect x="89.7548%" y="693" width="0.0422%" height="15" fill="rgb(237,173,45)" fg:x="265666" fg:w="125"/><text x="90.0048%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (123 samples, 0.04%)</title><rect x="89.7554%" y="677" width="0.0416%" height="15" fill="rgb(208,213,49)" fg:x="265668" fg:w="123"/><text x="90.0054%" y="687.50"></text></g><g><title>native_write_msr (122 samples, 0.04%)</title><rect x="89.7558%" y="661" width="0.0412%" height="15" fill="rgb(212,122,37)" fg:x="265669" fg:w="122"/><text x="90.0058%" y="671.50"></text></g><g><title>finish_task_switch (138 samples, 0.05%)</title><rect x="89.7534%" y="709" width="0.0466%" height="15" fill="rgb(213,80,17)" fg:x="265662" fg:w="138"/><text x="90.0034%" y="719.50"></text></g><g><title>schedule (141 samples, 0.05%)</title><rect x="89.7527%" y="741" width="0.0476%" height="15" fill="rgb(206,210,43)" fg:x="265660" fg:w="141"/><text x="90.0027%" y="751.50"></text></g><g><title>__schedule (140 samples, 0.05%)</title><rect x="89.7531%" y="725" width="0.0473%" height="15" fill="rgb(229,214,3)" fg:x="265661" fg:w="140"/><text x="90.0031%" y="735.50"></text></g><g><title>load_elf_binary (158 samples, 0.05%)</title><rect x="89.7510%" y="773" width="0.0534%" height="15" fill="rgb(235,213,29)" fg:x="265655" fg:w="158"/><text x="90.0010%" y="783.50"></text></g><g><title>begin_new_exec (158 samples, 0.05%)</title><rect x="89.7510%" y="757" width="0.0534%" height="15" fill="rgb(248,135,26)" fg:x="265655" fg:w="158"/><text x="90.0010%" y="767.50"></text></g><g><title>bprm_execve (200 samples, 0.07%)</title><rect x="89.7500%" y="789" width="0.0676%" height="15" fill="rgb(242,188,12)" fg:x="265652" fg:w="200"/><text x="90.0000%" y="799.50"></text></g><g><title>copy_strings.isra.0 (38 samples, 0.01%)</title><rect x="89.8196%" y="789" width="0.0128%" height="15" fill="rgb(245,38,12)" fg:x="265858" fg:w="38"/><text x="90.0696%" y="799.50"></text></g><g><title>__x64_sys_execve (251 samples, 0.08%)</title><rect x="89.7494%" y="821" width="0.0848%" height="15" fill="rgb(218,42,13)" fg:x="265650" fg:w="251"/><text x="89.9994%" y="831.50"></text></g><g><title>do_execveat_common (251 samples, 0.08%)</title><rect x="89.7494%" y="805" width="0.0848%" height="15" fill="rgb(238,132,49)" fg:x="265650" fg:w="251"/><text x="89.9994%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.03%)</title><rect x="89.8497%" y="741" width="0.0280%" height="15" fill="rgb(209,196,19)" fg:x="265947" fg:w="83"/><text x="90.0997%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.03%)</title><rect x="89.8500%" y="725" width="0.0277%" height="15" fill="rgb(244,131,22)" fg:x="265948" fg:w="82"/><text x="90.1000%" y="735.50"></text></g><g><title>native_write_msr (82 samples, 0.03%)</title><rect x="89.8500%" y="709" width="0.0277%" height="15" fill="rgb(223,18,34)" fg:x="265948" fg:w="82"/><text x="90.1000%" y="719.50"></text></g><g><title>finish_task_switch (90 samples, 0.03%)</title><rect x="89.8480%" y="757" width="0.0304%" height="15" fill="rgb(252,124,54)" fg:x="265942" fg:w="90"/><text x="90.0980%" y="767.50"></text></g><g><title>locks_lock_inode_wait (99 samples, 0.03%)</title><rect x="89.8456%" y="805" width="0.0334%" height="15" fill="rgb(229,106,42)" fg:x="265935" fg:w="99"/><text x="90.0956%" y="815.50"></text></g><g><title>schedule (92 samples, 0.03%)</title><rect x="89.8480%" y="789" width="0.0311%" height="15" fill="rgb(221,129,1)" fg:x="265942" fg:w="92"/><text x="90.0980%" y="799.50"></text></g><g><title>__schedule (92 samples, 0.03%)</title><rect x="89.8480%" y="773" width="0.0311%" height="15" fill="rgb(229,74,15)" fg:x="265942" fg:w="92"/><text x="90.0980%" y="783.50"></text></g><g><title>__x64_sys_flock (102 samples, 0.03%)</title><rect x="89.8450%" y="821" width="0.0345%" height="15" fill="rgb(210,206,50)" fg:x="265933" fg:w="102"/><text x="90.0950%" y="831.50"></text></g><g><title>dequeue_entity (64 samples, 0.02%)</title><rect x="89.9754%" y="709" width="0.0216%" height="15" fill="rgb(251,114,31)" fg:x="266319" fg:w="64"/><text x="90.2254%" y="719.50"></text></g><g><title>update_load_avg (32 samples, 0.01%)</title><rect x="89.9862%" y="693" width="0.0108%" height="15" fill="rgb(215,225,28)" fg:x="266351" fg:w="32"/><text x="90.2362%" y="703.50"></text></g><g><title>dequeue_task_fair (94 samples, 0.03%)</title><rect x="89.9727%" y="725" width="0.0318%" height="15" fill="rgb(237,109,14)" fg:x="266311" fg:w="94"/><text x="90.2227%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (3,783 samples, 1.28%)</title><rect x="90.0250%" y="709" width="1.2781%" height="15" fill="rgb(230,13,37)" fg:x="266466" fg:w="3783"/><text x="90.2750%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,738 samples, 1.26%)</title><rect x="90.0402%" y="693" width="1.2629%" height="15" fill="rgb(231,40,28)" fg:x="266511" fg:w="3738"/><text x="90.2902%" y="703.50"></text></g><g><title>native_write_msr (3,732 samples, 1.26%)</title><rect x="90.0423%" y="677" width="1.2608%" height="15" fill="rgb(231,202,18)" fg:x="266517" fg:w="3732"/><text x="90.2923%" y="687.50"></text></g><g><title>asm_call_sysvec_on_stack (41 samples, 0.01%)</title><rect x="91.3214%" y="677" width="0.0139%" height="15" fill="rgb(225,33,18)" fg:x="270303" fg:w="41"/><text x="91.5714%" y="687.50"></text></g><g><title>__sysvec_irq_work (32 samples, 0.01%)</title><rect x="91.3244%" y="661" width="0.0108%" height="15" fill="rgb(223,64,47)" fg:x="270312" fg:w="32"/><text x="91.5744%" y="671.50"></text></g><g><title>asm_sysvec_irq_work (80 samples, 0.03%)</title><rect x="91.3095%" y="709" width="0.0270%" height="15" fill="rgb(234,114,13)" fg:x="270268" fg:w="80"/><text x="91.5595%" y="719.50"></text></g><g><title>sysvec_irq_work (47 samples, 0.02%)</title><rect x="91.3207%" y="693" width="0.0159%" height="15" fill="rgb(248,56,40)" fg:x="270301" fg:w="47"/><text x="91.5707%" y="703.50"></text></g><g><title>kprobe_flush_task (30 samples, 0.01%)</title><rect x="91.3406%" y="709" width="0.0101%" height="15" fill="rgb(221,194,21)" fg:x="270360" fg:w="30"/><text x="91.5906%" y="719.50"></text></g><g><title>put_task_stack (60 samples, 0.02%)</title><rect x="91.3508%" y="709" width="0.0203%" height="15" fill="rgb(242,108,46)" fg:x="270390" fg:w="60"/><text x="91.6008%" y="719.50"></text></g><g><title>finish_task_switch (4,061 samples, 1.37%)</title><rect x="90.0044%" y="725" width="1.3720%" height="15" fill="rgb(220,106,10)" fg:x="266405" fg:w="4061"/><text x="90.2544%" y="735.50"></text></g><g><title>pick_next_task_fair (57 samples, 0.02%)</title><rect x="91.3764%" y="725" width="0.0193%" height="15" fill="rgb(211,88,4)" fg:x="270466" fg:w="57"/><text x="91.6264%" y="735.50"></text></g><g><title>psi_task_change (79 samples, 0.03%)</title><rect x="91.3987%" y="725" width="0.0267%" height="15" fill="rgb(214,95,34)" fg:x="270532" fg:w="79"/><text x="91.6487%" y="735.50"></text></g><g><title>psi_group_change (72 samples, 0.02%)</title><rect x="91.4011%" y="709" width="0.0243%" height="15" fill="rgb(250,160,33)" fg:x="270539" fg:w="72"/><text x="91.6511%" y="719.50"></text></g><g><title>psi_task_switch (46 samples, 0.02%)</title><rect x="91.4254%" y="725" width="0.0155%" height="15" fill="rgb(225,29,10)" fg:x="270611" fg:w="46"/><text x="91.6754%" y="735.50"></text></g><g><title>psi_group_change (38 samples, 0.01%)</title><rect x="91.4281%" y="709" width="0.0128%" height="15" fill="rgb(224,28,30)" fg:x="270619" fg:w="38"/><text x="91.6781%" y="719.50"></text></g><g><title>futex_wait_queue_me (4,518 samples, 1.53%)</title><rect x="89.9183%" y="773" width="1.5264%" height="15" fill="rgb(231,77,4)" fg:x="266150" fg:w="4518"/><text x="90.1683%" y="783.50"></text></g><g><title>schedule (4,473 samples, 1.51%)</title><rect x="89.9335%" y="757" width="1.5112%" height="15" fill="rgb(209,63,21)" fg:x="266195" fg:w="4473"/><text x="90.1835%" y="767.50"></text></g><g><title>__schedule (4,459 samples, 1.51%)</title><rect x="89.9382%" y="741" width="1.5065%" height="15" fill="rgb(226,22,11)" fg:x="266209" fg:w="4459"/><text x="90.1882%" y="751.50"></text></g><g><title>futex_wait (4,583 samples, 1.55%)</title><rect x="89.9017%" y="789" width="1.5484%" height="15" fill="rgb(216,82,30)" fg:x="266101" fg:w="4583"/><text x="90.1517%" y="799.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.02%)</title><rect x="91.4710%" y="741" width="0.0203%" height="15" fill="rgb(246,227,38)" fg:x="270746" fg:w="60"/><text x="91.7210%" y="751.50"></text></g><g><title>native_queued_spin_lock_slowpath (55 samples, 0.02%)</title><rect x="91.4727%" y="725" width="0.0186%" height="15" fill="rgb(251,203,53)" fg:x="270751" fg:w="55"/><text x="91.7227%" y="735.50"></text></g><g><title>select_task_rq_fair (43 samples, 0.01%)</title><rect x="91.4937%" y="741" width="0.0145%" height="15" fill="rgb(254,101,1)" fg:x="270813" fg:w="43"/><text x="91.7437%" y="751.50"></text></g><g><title>enqueue_entity (38 samples, 0.01%)</title><rect x="91.5109%" y="709" width="0.0128%" height="15" fill="rgb(241,180,5)" fg:x="270864" fg:w="38"/><text x="91.7609%" y="719.50"></text></g><g><title>enqueue_task_fair (57 samples, 0.02%)</title><rect x="91.5089%" y="725" width="0.0193%" height="15" fill="rgb(218,168,4)" fg:x="270858" fg:w="57"/><text x="91.7589%" y="735.50"></text></g><g><title>ttwu_do_activate (104 samples, 0.04%)</title><rect x="91.5085%" y="741" width="0.0351%" height="15" fill="rgb(224,223,32)" fg:x="270857" fg:w="104"/><text x="91.7585%" y="751.50"></text></g><g><title>psi_task_change (46 samples, 0.02%)</title><rect x="91.5281%" y="725" width="0.0155%" height="15" fill="rgb(236,106,22)" fg:x="270915" fg:w="46"/><text x="91.7781%" y="735.50"></text></g><g><title>psi_group_change (41 samples, 0.01%)</title><rect x="91.5298%" y="709" width="0.0139%" height="15" fill="rgb(206,121,5)" fg:x="270920" fg:w="41"/><text x="91.7798%" y="719.50"></text></g><g><title>__x64_sys_futex (4,917 samples, 1.66%)</title><rect x="89.8885%" y="821" width="1.6612%" height="15" fill="rgb(233,87,28)" fg:x="266062" fg:w="4917"/><text x="90.1385%" y="831.50"></text></g><g><title>do_futex (4,905 samples, 1.66%)</title><rect x="89.8926%" y="805" width="1.6571%" height="15" fill="rgb(236,137,17)" fg:x="266074" fg:w="4905"/><text x="90.1426%" y="815.50"></text></g><g><title>futex_wake (295 samples, 0.10%)</title><rect x="91.4501%" y="789" width="0.0997%" height="15" fill="rgb(209,183,38)" fg:x="270684" fg:w="295"/><text x="91.7001%" y="799.50"></text></g><g><title>wake_up_q (259 samples, 0.09%)</title><rect x="91.4622%" y="773" width="0.0875%" height="15" fill="rgb(206,162,44)" fg:x="270720" fg:w="259"/><text x="91.7122%" y="783.50"></text></g><g><title>try_to_wake_up (255 samples, 0.09%)</title><rect x="91.4636%" y="757" width="0.0862%" height="15" fill="rgb(237,70,39)" fg:x="270724" fg:w="255"/><text x="91.7136%" y="767.50"></text></g><g><title>__vma_adjust (50 samples, 0.02%)</title><rect x="91.5727%" y="757" width="0.0169%" height="15" fill="rgb(212,176,5)" fg:x="271047" fg:w="50"/><text x="91.8227%" y="767.50"></text></g><g><title>anon_vma_clone (44 samples, 0.01%)</title><rect x="91.5896%" y="757" width="0.0149%" height="15" fill="rgb(232,95,16)" fg:x="271097" fg:w="44"/><text x="91.8396%" y="767.50"></text></g><g><title>__split_vma (152 samples, 0.05%)</title><rect x="91.5720%" y="773" width="0.0514%" height="15" fill="rgb(219,115,35)" fg:x="271045" fg:w="152"/><text x="91.8220%" y="783.50"></text></g><g><title>vm_area_dup (56 samples, 0.02%)</title><rect x="91.6045%" y="757" width="0.0189%" height="15" fill="rgb(251,67,27)" fg:x="271141" fg:w="56"/><text x="91.8545%" y="767.50"></text></g><g><title>kmem_cache_alloc (36 samples, 0.01%)</title><rect x="91.6112%" y="741" width="0.0122%" height="15" fill="rgb(222,95,40)" fg:x="271161" fg:w="36"/><text x="91.8612%" y="751.50"></text></g><g><title>remove_vma (37 samples, 0.01%)</title><rect x="91.6339%" y="773" width="0.0125%" height="15" fill="rgb(250,35,16)" fg:x="271228" fg:w="37"/><text x="91.8839%" y="783.50"></text></g><g><title>unlink_anon_vmas (32 samples, 0.01%)</title><rect x="91.6494%" y="741" width="0.0108%" height="15" fill="rgb(224,86,44)" fg:x="271274" fg:w="32"/><text x="91.8994%" y="751.50"></text></g><g><title>free_pgtables (35 samples, 0.01%)</title><rect x="91.6491%" y="757" width="0.0118%" height="15" fill="rgb(237,53,53)" fg:x="271273" fg:w="35"/><text x="91.8991%" y="767.50"></text></g><g><title>__pagevec_lru_add_fn (35 samples, 0.01%)</title><rect x="91.6646%" y="709" width="0.0118%" height="15" fill="rgb(208,171,33)" fg:x="271319" fg:w="35"/><text x="91.9146%" y="719.50"></text></g><g><title>lru_add_drain_cpu (61 samples, 0.02%)</title><rect x="91.6622%" y="741" width="0.0206%" height="15" fill="rgb(222,64,27)" fg:x="271312" fg:w="61"/><text x="91.9122%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (58 samples, 0.02%)</title><rect x="91.6633%" y="725" width="0.0196%" height="15" fill="rgb(221,121,35)" fg:x="271315" fg:w="58"/><text x="91.9133%" y="735.50"></text></g><g><title>lru_add_drain (66 samples, 0.02%)</title><rect x="91.6609%" y="757" width="0.0223%" height="15" fill="rgb(228,137,42)" fg:x="271308" fg:w="66"/><text x="91.9109%" y="767.50"></text></g><g><title>flush_tlb_func_common.constprop.0 (42 samples, 0.01%)</title><rect x="91.6872%" y="725" width="0.0142%" height="15" fill="rgb(227,54,21)" fg:x="271386" fg:w="42"/><text x="91.9372%" y="735.50"></text></g><g><title>native_flush_tlb_one_user (37 samples, 0.01%)</title><rect x="91.6889%" y="709" width="0.0125%" height="15" fill="rgb(240,168,33)" fg:x="271391" fg:w="37"/><text x="91.9389%" y="719.50"></text></g><g><title>flush_tlb_mm_range (61 samples, 0.02%)</title><rect x="91.6845%" y="741" width="0.0206%" height="15" fill="rgb(243,159,6)" fg:x="271378" fg:w="61"/><text x="91.9345%" y="751.50"></text></g><g><title>__free_one_page (38 samples, 0.01%)</title><rect x="91.7815%" y="693" width="0.0128%" height="15" fill="rgb(205,211,41)" fg:x="271665" fg:w="38"/><text x="92.0315%" y="703.50"></text></g><g><title>free_pcppages_bulk (63 samples, 0.02%)</title><rect x="91.7788%" y="709" width="0.0213%" height="15" fill="rgb(253,30,1)" fg:x="271657" fg:w="63"/><text x="92.0288%" y="719.50"></text></g><g><title>free_unref_page_list (125 samples, 0.04%)</title><rect x="91.7646%" y="725" width="0.0422%" height="15" fill="rgb(226,80,18)" fg:x="271615" fg:w="125"/><text x="92.0146%" y="735.50"></text></g><g><title>mem_cgroup_uncharge_list (43 samples, 0.01%)</title><rect x="91.8082%" y="725" width="0.0145%" height="15" fill="rgb(253,156,46)" fg:x="271744" fg:w="43"/><text x="92.0582%" y="735.50"></text></g><g><title>tlb_finish_mmu (416 samples, 0.14%)</title><rect x="91.6832%" y="757" width="0.1405%" height="15" fill="rgb(248,87,27)" fg:x="271374" fg:w="416"/><text x="91.9332%" y="767.50"></text></g><g><title>release_pages (337 samples, 0.11%)</title><rect x="91.7099%" y="741" width="0.1139%" height="15" fill="rgb(227,122,2)" fg:x="271453" fg:w="337"/><text x="91.9599%" y="751.50"></text></g><g><title>__tlb_remove_page_size (31 samples, 0.01%)</title><rect x="91.8568%" y="725" width="0.0105%" height="15" fill="rgb(229,94,39)" fg:x="271888" fg:w="31"/><text x="92.1068%" y="735.50"></text></g><g><title>page_remove_rmap (71 samples, 0.02%)</title><rect x="91.8727%" y="725" width="0.0240%" height="15" fill="rgb(225,173,31)" fg:x="271935" fg:w="71"/><text x="92.1227%" y="735.50"></text></g><g><title>unmap_page_range (231 samples, 0.08%)</title><rect x="91.8261%" y="741" width="0.0780%" height="15" fill="rgb(239,176,30)" fg:x="271797" fg:w="231"/><text x="92.0761%" y="751.50"></text></g><g><title>unmap_region (766 samples, 0.26%)</title><rect x="91.6464%" y="773" width="0.2588%" height="15" fill="rgb(212,104,21)" fg:x="271265" fg:w="766"/><text x="91.8964%" y="783.50"></text></g><g><title>unmap_vmas (237 samples, 0.08%)</title><rect x="91.8251%" y="757" width="0.0801%" height="15" fill="rgb(240,209,40)" fg:x="271794" fg:w="237"/><text x="92.0751%" y="767.50"></text></g><g><title>__do_munmap (1,006 samples, 0.34%)</title><rect x="91.5656%" y="789" width="0.3399%" height="15" fill="rgb(234,195,5)" fg:x="271026" fg:w="1006"/><text x="91.8156%" y="799.50"></text></g><g><title>__vm_munmap (1,012 samples, 0.34%)</title><rect x="91.5649%" y="805" width="0.3419%" height="15" fill="rgb(238,213,1)" fg:x="271024" fg:w="1012"/><text x="91.8149%" y="815.50"></text></g><g><title>__x64_sys_munmap (1,015 samples, 0.34%)</title><rect x="91.5646%" y="821" width="0.3429%" height="15" fill="rgb(235,182,54)" fg:x="271023" fg:w="1015"/><text x="91.8146%" y="831.50"></text></g><g><title>link_path_walk.part.0 (39 samples, 0.01%)</title><rect x="91.9315%" y="757" width="0.0132%" height="15" fill="rgb(229,50,46)" fg:x="272109" fg:w="39"/><text x="92.1815%" y="767.50"></text></g><g><title>do_filp_open (114 samples, 0.04%)</title><rect x="91.9119%" y="789" width="0.0385%" height="15" fill="rgb(219,145,13)" fg:x="272051" fg:w="114"/><text x="92.1619%" y="799.50"></text></g><g><title>path_openat (113 samples, 0.04%)</title><rect x="91.9123%" y="773" width="0.0382%" height="15" fill="rgb(220,226,10)" fg:x="272052" fg:w="113"/><text x="92.1623%" y="783.50"></text></g><g><title>__x64_sys_open (138 samples, 0.05%)</title><rect x="91.9099%" y="821" width="0.0466%" height="15" fill="rgb(248,47,30)" fg:x="272045" fg:w="138"/><text x="92.1599%" y="831.50"></text></g><g><title>do_sys_openat2 (138 samples, 0.05%)</title><rect x="91.9099%" y="805" width="0.0466%" height="15" fill="rgb(231,209,44)" fg:x="272045" fg:w="138"/><text x="92.1599%" y="815.50"></text></g><g><title>_find_next_bit.constprop.0 (36 samples, 0.01%)</title><rect x="92.0555%" y="773" width="0.0122%" height="15" fill="rgb(209,80,30)" fg:x="272476" fg:w="36"/><text x="92.3055%" y="783.50"></text></g><g><title>_raw_spin_lock (87 samples, 0.03%)</title><rect x="92.0677%" y="773" width="0.0294%" height="15" fill="rgb(232,9,14)" fg:x="272512" fg:w="87"/><text x="92.3177%" y="783.50"></text></g><g><title>expand_files (40 samples, 0.01%)</title><rect x="92.0977%" y="773" width="0.0135%" height="15" fill="rgb(243,91,43)" fg:x="272601" fg:w="40"/><text x="92.3477%" y="783.50"></text></g><g><title>__alloc_fd (336 samples, 0.11%)</title><rect x="92.0031%" y="789" width="0.1135%" height="15" fill="rgb(231,90,52)" fg:x="272321" fg:w="336"/><text x="92.2531%" y="799.50"></text></g><g><title>__fd_install (76 samples, 0.03%)</title><rect x="92.1167%" y="789" width="0.0257%" height="15" fill="rgb(253,192,44)" fg:x="272657" fg:w="76"/><text x="92.3667%" y="799.50"></text></g><g><title>__fsnotify_parent (79 samples, 0.03%)</title><rect x="92.1423%" y="789" width="0.0267%" height="15" fill="rgb(241,66,31)" fg:x="272733" fg:w="79"/><text x="92.3923%" y="799.50"></text></g><g><title>build_open_flags (98 samples, 0.03%)</title><rect x="92.1704%" y="789" width="0.0331%" height="15" fill="rgb(235,81,37)" fg:x="272816" fg:w="98"/><text x="92.4204%" y="799.50"></text></g><g><title>kernel_init_free_pages (91 samples, 0.03%)</title><rect x="92.5454%" y="613" width="0.0307%" height="15" fill="rgb(223,221,9)" fg:x="273926" fg:w="91"/><text x="92.7954%" y="623.50"></text></g><g><title>clear_page_erms (90 samples, 0.03%)</title><rect x="92.5457%" y="597" width="0.0304%" height="15" fill="rgb(242,180,7)" fg:x="273927" fg:w="90"/><text x="92.7957%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (192 samples, 0.06%)</title><rect x="92.5126%" y="661" width="0.0649%" height="15" fill="rgb(243,78,19)" fg:x="273829" fg:w="192"/><text x="92.7626%" y="671.50"></text></g><g><title>get_page_from_freelist (168 samples, 0.06%)</title><rect x="92.5207%" y="645" width="0.0568%" height="15" fill="rgb(233,23,17)" fg:x="273853" fg:w="168"/><text x="92.7707%" y="655.50"></text></g><g><title>prep_new_page (97 samples, 0.03%)</title><rect x="92.5447%" y="629" width="0.0328%" height="15" fill="rgb(252,122,45)" fg:x="273924" fg:w="97"/><text x="92.7947%" y="639.50"></text></g><g><title>allocate_slab (296 samples, 0.10%)</title><rect x="92.4950%" y="677" width="0.1000%" height="15" fill="rgb(247,108,20)" fg:x="273777" fg:w="296"/><text x="92.7450%" y="687.50"></text></g><g><title>__slab_alloc (357 samples, 0.12%)</title><rect x="92.4785%" y="709" width="0.1206%" height="15" fill="rgb(235,84,21)" fg:x="273728" fg:w="357"/><text x="92.7285%" y="719.50"></text></g><g><title>___slab_alloc (348 samples, 0.12%)</title><rect x="92.4815%" y="693" width="0.1176%" height="15" fill="rgb(247,129,10)" fg:x="273737" fg:w="348"/><text x="92.7315%" y="703.50"></text></g><g><title>__mod_memcg_lruvec_state (117 samples, 0.04%)</title><rect x="92.7275%" y="693" width="0.0395%" height="15" fill="rgb(208,173,14)" fg:x="274465" fg:w="117"/><text x="92.9775%" y="703.50"></text></g><g><title>__mod_memcg_state.part.0 (76 samples, 0.03%)</title><rect x="92.7413%" y="677" width="0.0257%" height="15" fill="rgb(236,31,38)" fg:x="274506" fg:w="76"/><text x="92.9913%" y="687.50"></text></g><g><title>memcg_alloc_page_obj_cgroups (60 samples, 0.02%)</title><rect x="92.7755%" y="693" width="0.0203%" height="15" fill="rgb(232,65,17)" fg:x="274607" fg:w="60"/><text x="93.0255%" y="703.50"></text></g><g><title>__kmalloc_node (49 samples, 0.02%)</title><rect x="92.7792%" y="677" width="0.0166%" height="15" fill="rgb(224,45,49)" fg:x="274618" fg:w="49"/><text x="93.0292%" y="687.50"></text></g><g><title>memcg_slab_post_alloc_hook (603 samples, 0.20%)</title><rect x="92.6001%" y="709" width="0.2037%" height="15" fill="rgb(225,2,53)" fg:x="274088" fg:w="603"/><text x="92.8501%" y="719.50"></text></g><g><title>memset_erms (97 samples, 0.03%)</title><rect x="92.8048%" y="709" width="0.0328%" height="15" fill="rgb(248,210,53)" fg:x="274694" fg:w="97"/><text x="93.0548%" y="719.50"></text></g><g><title>get_obj_cgroup_from_current (333 samples, 0.11%)</title><rect x="92.8748%" y="693" width="0.1125%" height="15" fill="rgb(211,1,30)" fg:x="274901" fg:w="333"/><text x="93.1248%" y="703.50"></text></g><g><title>obj_cgroup_charge (183 samples, 0.06%)</title><rect x="92.9873%" y="693" width="0.0618%" height="15" fill="rgb(224,96,15)" fg:x="275234" fg:w="183"/><text x="93.2373%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,905 samples, 0.64%)</title><rect x="92.4079%" y="725" width="0.6436%" height="15" fill="rgb(252,45,11)" fg:x="273519" fg:w="1905"/><text x="92.6579%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (629 samples, 0.21%)</title><rect x="92.8390%" y="709" width="0.2125%" height="15" fill="rgb(220,125,38)" fg:x="274795" fg:w="629"/><text x="93.0890%" y="719.50"></text></g><g><title>apparmor_file_alloc_security (481 samples, 0.16%)</title><rect x="93.0734%" y="709" width="0.1625%" height="15" fill="rgb(243,161,33)" fg:x="275489" fg:w="481"/><text x="93.3234%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (43 samples, 0.01%)</title><rect x="93.2927%" y="693" width="0.0145%" height="15" fill="rgb(248,197,34)" fg:x="276138" fg:w="43"/><text x="93.5427%" y="703.50"></text></g><g><title>memset_erms (102 samples, 0.03%)</title><rect x="93.3076%" y="693" width="0.0345%" height="15" fill="rgb(228,165,23)" fg:x="276182" fg:w="102"/><text x="93.5576%" y="703.50"></text></g><g><title>_cond_resched (35 samples, 0.01%)</title><rect x="93.3511%" y="677" width="0.0118%" height="15" fill="rgb(236,94,38)" fg:x="276311" fg:w="35"/><text x="93.6011%" y="687.50"></text></g><g><title>__alloc_file (3,040 samples, 1.03%)</title><rect x="92.3379%" y="741" width="1.0271%" height="15" fill="rgb(220,13,23)" fg:x="273312" fg:w="3040"/><text x="92.5879%" y="751.50"></text></g><g><title>security_file_alloc (928 samples, 0.31%)</title><rect x="93.0515%" y="725" width="0.3135%" height="15" fill="rgb(234,26,39)" fg:x="275424" fg:w="928"/><text x="93.3015%" y="735.50"></text></g><g><title>kmem_cache_alloc (382 samples, 0.13%)</title><rect x="93.2359%" y="709" width="0.1291%" height="15" fill="rgb(205,117,44)" fg:x="275970" fg:w="382"/><text x="93.4859%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (68 samples, 0.02%)</title><rect x="93.3420%" y="693" width="0.0230%" height="15" fill="rgb(250,42,2)" fg:x="276284" fg:w="68"/><text x="93.5920%" y="703.50"></text></g><g><title>alloc_empty_file (3,107 samples, 1.05%)</title><rect x="92.3258%" y="757" width="1.0497%" height="15" fill="rgb(223,83,14)" fg:x="273276" fg:w="3107"/><text x="92.5758%" y="767.50"></text></g><g><title>percpu_counter_add_batch (30 samples, 0.01%)</title><rect x="93.3653%" y="741" width="0.0101%" height="15" fill="rgb(241,147,50)" fg:x="276353" fg:w="30"/><text x="93.6153%" y="751.50"></text></g><g><title>__legitimize_mnt (218 samples, 0.07%)</title><rect x="93.4093%" y="709" width="0.0737%" height="15" fill="rgb(218,90,6)" fg:x="276483" fg:w="218"/><text x="93.6593%" y="719.50"></text></g><g><title>__legitimize_path (377 samples, 0.13%)</title><rect x="93.3995%" y="725" width="0.1274%" height="15" fill="rgb(210,191,5)" fg:x="276454" fg:w="377"/><text x="93.6495%" y="735.50"></text></g><g><title>lockref_get_not_dead (128 samples, 0.04%)</title><rect x="93.4836%" y="709" width="0.0432%" height="15" fill="rgb(225,139,19)" fg:x="276703" fg:w="128"/><text x="93.7336%" y="719.50"></text></g><g><title>complete_walk (478 samples, 0.16%)</title><rect x="93.3765%" y="757" width="0.1615%" height="15" fill="rgb(210,1,33)" fg:x="276386" fg:w="478"/><text x="93.6265%" y="767.50"></text></g><g><title>try_to_unlazy (449 samples, 0.15%)</title><rect x="93.3863%" y="741" width="0.1517%" height="15" fill="rgb(213,50,3)" fg:x="276415" fg:w="449"/><text x="93.6363%" y="751.50"></text></g><g><title>__fsnotify_parent (81 samples, 0.03%)</title><rect x="93.6633%" y="741" width="0.0274%" height="15" fill="rgb(234,227,4)" fg:x="277235" fg:w="81"/><text x="93.9133%" y="751.50"></text></g><g><title>errseq_sample (254 samples, 0.09%)</title><rect x="93.6971%" y="741" width="0.0858%" height="15" fill="rgb(246,63,5)" fg:x="277335" fg:w="254"/><text x="93.9471%" y="751.50"></text></g><g><title>file_ra_state_init (94 samples, 0.03%)</title><rect x="93.7829%" y="741" width="0.0318%" height="15" fill="rgb(245,136,27)" fg:x="277589" fg:w="94"/><text x="94.0329%" y="751.50"></text></g><g><title>lockref_get (98 samples, 0.03%)</title><rect x="93.8167%" y="741" width="0.0331%" height="15" fill="rgb(247,199,27)" fg:x="277689" fg:w="98"/><text x="94.0667%" y="751.50"></text></g><g><title>path_get (43 samples, 0.01%)</title><rect x="93.8498%" y="741" width="0.0145%" height="15" fill="rgb(252,158,49)" fg:x="277787" fg:w="43"/><text x="94.0998%" y="751.50"></text></g><g><title>mntget (30 samples, 0.01%)</title><rect x="93.8542%" y="725" width="0.0101%" height="15" fill="rgb(254,73,1)" fg:x="277800" fg:w="30"/><text x="94.1042%" y="735.50"></text></g><g><title>apparmor_file_open (400 samples, 0.14%)</title><rect x="93.8836%" y="725" width="0.1351%" height="15" fill="rgb(248,93,19)" fg:x="277887" fg:w="400"/><text x="94.1336%" y="735.50"></text></g><g><title>__srcu_read_lock (121 samples, 0.04%)</title><rect x="94.0684%" y="709" width="0.0409%" height="15" fill="rgb(206,67,5)" fg:x="278434" fg:w="121"/><text x="94.3184%" y="719.50"></text></g><g><title>__srcu_read_unlock (86 samples, 0.03%)</title><rect x="94.1093%" y="709" width="0.0291%" height="15" fill="rgb(209,210,4)" fg:x="278555" fg:w="86"/><text x="94.3593%" y="719.50"></text></g><g><title>kfree (33 samples, 0.01%)</title><rect x="94.1393%" y="709" width="0.0111%" height="15" fill="rgb(214,185,36)" fg:x="278644" fg:w="33"/><text x="94.3893%" y="719.50"></text></g><g><title>tomoyo_check_open_permission (488 samples, 0.16%)</title><rect x="94.0187%" y="725" width="0.1649%" height="15" fill="rgb(233,191,26)" fg:x="278287" fg:w="488"/><text x="94.2687%" y="735.50"></text></g><g><title>tomoyo_init_request_info (98 samples, 0.03%)</title><rect x="94.1505%" y="709" width="0.0331%" height="15" fill="rgb(248,94,17)" fg:x="278677" fg:w="98"/><text x="94.4005%" y="719.50"></text></g><g><title>security_file_open (969 samples, 0.33%)</title><rect x="93.8643%" y="741" width="0.3274%" height="15" fill="rgb(250,64,4)" fg:x="277830" fg:w="969"/><text x="94.1143%" y="751.50"></text></g><g><title>do_dentry_open (1,941 samples, 0.66%)</title><rect x="93.5380%" y="757" width="0.6558%" height="15" fill="rgb(218,41,53)" fg:x="276864" fg:w="1941"/><text x="93.7880%" y="767.50"></text></g><g><title>inode_permission.part.0 (530 samples, 0.18%)</title><rect x="94.4400%" y="741" width="0.1791%" height="15" fill="rgb(251,176,28)" fg:x="279534" fg:w="530"/><text x="94.6900%" y="751.50"></text></g><g><title>generic_permission (147 samples, 0.05%)</title><rect x="94.5694%" y="725" width="0.0497%" height="15" fill="rgb(247,22,9)" fg:x="279917" fg:w="147"/><text x="94.8194%" y="735.50"></text></g><g><title>security_inode_permission (61 samples, 0.02%)</title><rect x="94.6191%" y="741" width="0.0206%" height="15" fill="rgb(218,201,14)" fg:x="280064" fg:w="61"/><text x="94.8691%" y="751.50"></text></g><g><title>__d_lookup_rcu (556 samples, 0.19%)</title><rect x="94.7573%" y="709" width="0.1878%" height="15" fill="rgb(218,94,10)" fg:x="280473" fg:w="556"/><text x="95.0073%" y="719.50"></text></g><g><title>lookup_fast (702 samples, 0.24%)</title><rect x="94.7086%" y="725" width="0.2372%" height="15" fill="rgb(222,183,52)" fg:x="280329" fg:w="702"/><text x="94.9586%" y="735.50"></text></g><g><title>link_path_walk.part.0 (2,398 samples, 0.81%)</title><rect x="94.1948%" y="757" width="0.8102%" height="15" fill="rgb(242,140,25)" fg:x="278808" fg:w="2398"/><text x="94.4448%" y="767.50"></text></g><g><title>walk_component (1,081 samples, 0.37%)</title><rect x="94.6397%" y="741" width="0.3652%" height="15" fill="rgb(235,197,38)" fg:x="280125" fg:w="1081"/><text x="94.8897%" y="751.50"></text></g><g><title>step_into (175 samples, 0.06%)</title><rect x="94.9458%" y="725" width="0.0591%" height="15" fill="rgb(237,136,15)" fg:x="281031" fg:w="175"/><text x="95.1958%" y="735.50"></text></g><g><title>__d_lookup_rcu (801 samples, 0.27%)</title><rect x="95.0164%" y="741" width="0.2706%" height="15" fill="rgb(223,44,49)" fg:x="281240" fg:w="801"/><text x="95.2664%" y="751.50"></text></g><g><title>lookup_fast (838 samples, 0.28%)</title><rect x="95.0049%" y="757" width="0.2831%" height="15" fill="rgb(227,71,15)" fg:x="281206" fg:w="838"/><text x="95.2549%" y="767.50"></text></g><g><title>inode_permission.part.0 (176 samples, 0.06%)</title><rect x="95.4002%" y="741" width="0.0595%" height="15" fill="rgb(225,153,20)" fg:x="282376" fg:w="176"/><text x="95.6502%" y="751.50"></text></g><g><title>may_open (515 samples, 0.17%)</title><rect x="95.2880%" y="757" width="0.1740%" height="15" fill="rgb(210,190,26)" fg:x="282044" fg:w="515"/><text x="95.5380%" y="767.50"></text></g><g><title>__fget_light (229 samples, 0.08%)</title><rect x="95.4982%" y="741" width="0.0774%" height="15" fill="rgb(223,147,5)" fg:x="282666" fg:w="229"/><text x="95.7482%" y="751.50"></text></g><g><title>__fget_files (200 samples, 0.07%)</title><rect x="95.5080%" y="725" width="0.0676%" height="15" fill="rgb(207,14,23)" fg:x="282695" fg:w="200"/><text x="95.7580%" y="735.50"></text></g><g><title>path_init (416 samples, 0.14%)</title><rect x="95.4620%" y="757" width="0.1405%" height="15" fill="rgb(211,195,53)" fg:x="282559" fg:w="416"/><text x="95.7120%" y="767.50"></text></g><g><title>fput_many (74 samples, 0.03%)</title><rect x="95.5776%" y="741" width="0.0250%" height="15" fill="rgb(237,75,46)" fg:x="282901" fg:w="74"/><text x="95.8276%" y="751.50"></text></g><g><title>step_into (53 samples, 0.02%)</title><rect x="95.6039%" y="757" width="0.0179%" height="15" fill="rgb(254,55,14)" fg:x="282979" fg:w="53"/><text x="95.8539%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.02%)</title><rect x="95.6522%" y="677" width="0.0166%" height="15" fill="rgb(230,185,30)" fg:x="283122" fg:w="49"/><text x="95.9022%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.02%)</title><rect x="95.6526%" y="661" width="0.0162%" height="15" fill="rgb(220,14,11)" fg:x="283123" fg:w="48"/><text x="95.9026%" y="671.50"></text></g><g><title>native_write_msr (48 samples, 0.02%)</title><rect x="95.6526%" y="645" width="0.0162%" height="15" fill="rgb(215,169,44)" fg:x="283123" fg:w="48"/><text x="95.9026%" y="655.50"></text></g><g><title>finish_task_switch (56 samples, 0.02%)</title><rect x="95.6516%" y="693" width="0.0189%" height="15" fill="rgb(253,203,20)" fg:x="283120" fg:w="56"/><text x="95.9016%" y="703.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="95.6516%" y="709" width="0.0196%" height="15" fill="rgb(229,225,17)" fg:x="283120" fg:w="58"/><text x="95.9016%" y="719.50"></text></g><g><title>_cond_resched (83 samples, 0.03%)</title><rect x="95.6462%" y="725" width="0.0280%" height="15" fill="rgb(236,76,26)" fg:x="283104" fg:w="83"/><text x="95.8962%" y="735.50"></text></g><g><title>dput (240 samples, 0.08%)</title><rect x="95.6353%" y="741" width="0.0811%" height="15" fill="rgb(234,15,30)" fg:x="283072" fg:w="240"/><text x="95.8853%" y="751.50"></text></g><g><title>lockref_put_or_lock (125 samples, 0.04%)</title><rect x="95.6742%" y="725" width="0.0422%" height="15" fill="rgb(211,113,48)" fg:x="283187" fg:w="125"/><text x="95.9242%" y="735.50"></text></g><g><title>terminate_walk (359 samples, 0.12%)</title><rect x="95.6218%" y="757" width="0.1213%" height="15" fill="rgb(221,31,36)" fg:x="283032" fg:w="359"/><text x="95.8718%" y="767.50"></text></g><g><title>mntput_no_expire (71 samples, 0.02%)</title><rect x="95.7191%" y="741" width="0.0240%" height="15" fill="rgb(215,118,52)" fg:x="283320" fg:w="71"/><text x="95.9691%" y="751.50"></text></g><g><title>do_filp_open (10,503 samples, 3.55%)</title><rect x="92.2035%" y="789" width="3.5484%" height="15" fill="rgb(241,151,27)" fg:x="272914" fg:w="10503"/><text x="92.4535%" y="799.50">do_f..</text></g><g><title>path_openat (10,371 samples, 3.50%)</title><rect x="92.2481%" y="773" width="3.5038%" height="15" fill="rgb(253,51,3)" fg:x="273046" fg:w="10371"/><text x="92.4981%" y="783.50">pat..</text></g><g><title>fd_install (34 samples, 0.01%)</title><rect x="95.7519%" y="789" width="0.0115%" height="15" fill="rgb(216,201,24)" fg:x="283417" fg:w="34"/><text x="96.0019%" y="799.50"></text></g><g><title>get_unused_fd_flags (108 samples, 0.04%)</title><rect x="95.7637%" y="789" width="0.0365%" height="15" fill="rgb(231,107,4)" fg:x="283452" fg:w="108"/><text x="96.0137%" y="799.50"></text></g><g><title>getname (46 samples, 0.02%)</title><rect x="95.8002%" y="789" width="0.0155%" height="15" fill="rgb(243,97,54)" fg:x="283560" fg:w="46"/><text x="96.0502%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (44 samples, 0.01%)</title><rect x="95.9147%" y="757" width="0.0149%" height="15" fill="rgb(221,32,51)" fg:x="283899" fg:w="44"/><text x="96.1647%" y="767.50"></text></g><g><title>memset_erms (948 samples, 0.32%)</title><rect x="95.9313%" y="757" width="0.3203%" height="15" fill="rgb(218,171,35)" fg:x="283948" fg:w="948"/><text x="96.1813%" y="767.50"></text></g><g><title>_cond_resched (65 samples, 0.02%)</title><rect x="96.2739%" y="741" width="0.0220%" height="15" fill="rgb(214,20,53)" fg:x="284962" fg:w="65"/><text x="96.5239%" y="751.50"></text></g><g><title>kmem_cache_alloc (1,350 samples, 0.46%)</title><rect x="95.8408%" y="773" width="0.4561%" height="15" fill="rgb(239,9,52)" fg:x="283680" fg:w="1350"/><text x="96.0908%" y="783.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (134 samples, 0.05%)</title><rect x="96.2516%" y="757" width="0.0453%" height="15" fill="rgb(215,114,45)" fg:x="284896" fg:w="134"/><text x="96.5016%" y="767.50"></text></g><g><title>__check_heap_object (135 samples, 0.05%)</title><rect x="96.4698%" y="741" width="0.0456%" height="15" fill="rgb(208,118,9)" fg:x="285542" fg:w="135"/><text x="96.7198%" y="751.50"></text></g><g><title>__virt_addr_valid (173 samples, 0.06%)</title><rect x="96.5154%" y="741" width="0.0584%" height="15" fill="rgb(235,7,39)" fg:x="285677" fg:w="173"/><text x="96.7654%" y="751.50"></text></g><g><title>__check_object_size (449 samples, 0.15%)</title><rect x="96.4293%" y="757" width="0.1517%" height="15" fill="rgb(243,225,15)" fg:x="285422" fg:w="449"/><text x="96.6793%" y="767.50"></text></g><g><title>getname_flags.part.0 (2,271 samples, 0.77%)</title><rect x="95.8158%" y="789" width="0.7673%" height="15" fill="rgb(225,216,18)" fg:x="283606" fg:w="2271"/><text x="96.0658%" y="799.50"></text></g><g><title>strncpy_from_user (847 samples, 0.29%)</title><rect x="96.2968%" y="773" width="0.2862%" height="15" fill="rgb(233,36,38)" fg:x="285030" fg:w="847"/><text x="96.5468%" y="783.50"></text></g><g><title>kmem_cache_free (406 samples, 0.14%)</title><rect x="96.5830%" y="789" width="0.1372%" height="15" fill="rgb(239,88,23)" fg:x="285877" fg:w="406"/><text x="96.8330%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (87 samples, 0.03%)</title><rect x="96.6908%" y="773" width="0.0294%" height="15" fill="rgb(219,181,35)" fg:x="286196" fg:w="87"/><text x="96.9408%" y="783.50"></text></g><g><title>__x64_sys_openat (14,130 samples, 4.77%)</title><rect x="91.9565%" y="821" width="4.7738%" height="15" fill="rgb(215,18,46)" fg:x="272183" fg:w="14130"/><text x="92.2065%" y="831.50">__x64_..</text></g><g><title>do_sys_openat2 (14,095 samples, 4.76%)</title><rect x="91.9683%" y="805" width="4.7620%" height="15" fill="rgb(241,38,11)" fg:x="272218" fg:w="14095"/><text x="92.2183%" y="815.50">do_sys..</text></g><g><title>putname (30 samples, 0.01%)</title><rect x="96.7202%" y="789" width="0.0101%" height="15" fill="rgb(248,169,45)" fg:x="286283" fg:w="30"/><text x="96.9702%" y="799.50"></text></g><g><title>filename_lookup (36 samples, 0.01%)</title><rect x="96.7367%" y="789" width="0.0122%" height="15" fill="rgb(239,50,49)" fg:x="286332" fg:w="36"/><text x="96.9867%" y="799.50"></text></g><g><title>path_lookupat (35 samples, 0.01%)</title><rect x="96.7371%" y="773" width="0.0118%" height="15" fill="rgb(231,96,31)" fg:x="286333" fg:w="35"/><text x="96.9871%" y="783.50"></text></g><g><title>__x64_sys_readlink (58 samples, 0.02%)</title><rect x="96.7364%" y="821" width="0.0196%" height="15" fill="rgb(224,193,37)" fg:x="286331" fg:w="58"/><text x="96.9864%" y="831.50"></text></g><g><title>do_readlinkat (58 samples, 0.02%)</title><rect x="96.7364%" y="805" width="0.0196%" height="15" fill="rgb(227,153,50)" fg:x="286331" fg:w="58"/><text x="96.9864%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.02%)</title><rect x="96.7874%" y="741" width="0.0243%" height="15" fill="rgb(249,228,3)" fg:x="286482" fg:w="72"/><text x="97.0374%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.02%)</title><rect x="96.7874%" y="725" width="0.0243%" height="15" fill="rgb(219,164,43)" fg:x="286482" fg:w="72"/><text x="97.0374%" y="735.50"></text></g><g><title>native_write_msr (72 samples, 0.02%)</title><rect x="96.7874%" y="709" width="0.0243%" height="15" fill="rgb(216,45,41)" fg:x="286482" fg:w="72"/><text x="97.0374%" y="719.50"></text></g><g><title>finish_task_switch (83 samples, 0.03%)</title><rect x="96.7854%" y="757" width="0.0280%" height="15" fill="rgb(210,226,51)" fg:x="286476" fg:w="83"/><text x="97.0354%" y="767.50"></text></g><g><title>schedule (85 samples, 0.03%)</title><rect x="96.7850%" y="789" width="0.0287%" height="15" fill="rgb(209,117,49)" fg:x="286475" fg:w="85"/><text x="97.0350%" y="799.50"></text></g><g><title>__schedule (85 samples, 0.03%)</title><rect x="96.7850%" y="773" width="0.0287%" height="15" fill="rgb(206,196,24)" fg:x="286475" fg:w="85"/><text x="97.0350%" y="783.50"></text></g><g><title>kernel_wait4 (89 samples, 0.03%)</title><rect x="96.7850%" y="821" width="0.0301%" height="15" fill="rgb(253,218,3)" fg:x="286475" fg:w="89"/><text x="97.0350%" y="831.50"></text></g><g><title>do_wait (89 samples, 0.03%)</title><rect x="96.7850%" y="805" width="0.0301%" height="15" fill="rgb(252,166,2)" fg:x="286475" fg:w="89"/><text x="97.0350%" y="815.50"></text></g><g><title>__alloc_pages_nodemask (51 samples, 0.02%)</title><rect x="96.9148%" y="645" width="0.0172%" height="15" fill="rgb(236,218,26)" fg:x="286859" fg:w="51"/><text x="97.1648%" y="655.50"></text></g><g><title>get_page_from_freelist (43 samples, 0.01%)</title><rect x="96.9175%" y="629" width="0.0145%" height="15" fill="rgb(254,84,19)" fg:x="286867" fg:w="43"/><text x="97.1675%" y="639.50"></text></g><g><title>prep_new_page (34 samples, 0.01%)</title><rect x="96.9205%" y="613" width="0.0115%" height="15" fill="rgb(219,137,29)" fg:x="286876" fg:w="34"/><text x="97.1705%" y="623.50"></text></g><g><title>kernel_init_free_pages (32 samples, 0.01%)</title><rect x="96.9212%" y="597" width="0.0108%" height="15" fill="rgb(227,47,52)" fg:x="286878" fg:w="32"/><text x="97.1712%" y="607.50"></text></g><g><title>clear_page_erms (32 samples, 0.01%)</title><rect x="96.9212%" y="581" width="0.0108%" height="15" fill="rgb(229,167,24)" fg:x="286878" fg:w="32"/><text x="97.1712%" y="591.50"></text></g><g><title>alloc_pages_vma (57 samples, 0.02%)</title><rect x="96.9131%" y="661" width="0.0193%" height="15" fill="rgb(233,164,1)" fg:x="286854" fg:w="57"/><text x="97.1631%" y="671.50"></text></g><g><title>handle_mm_fault (139 samples, 0.05%)</title><rect x="96.9056%" y="677" width="0.0470%" height="15" fill="rgb(218,88,48)" fg:x="286832" fg:w="139"/><text x="97.1556%" y="687.50"></text></g><g><title>exc_page_fault (148 samples, 0.05%)</title><rect x="96.9040%" y="709" width="0.0500%" height="15" fill="rgb(226,214,24)" fg:x="286827" fg:w="148"/><text x="97.1540%" y="719.50"></text></g><g><title>do_user_addr_fault (147 samples, 0.05%)</title><rect x="96.9043%" y="693" width="0.0497%" height="15" fill="rgb(233,29,12)" fg:x="286828" fg:w="147"/><text x="97.1543%" y="703.50"></text></g><g><title>asm_exc_page_fault (319 samples, 0.11%)</title><rect x="96.8465%" y="725" width="0.1078%" height="15" fill="rgb(219,120,34)" fg:x="286657" fg:w="319"/><text x="97.0965%" y="735.50"></text></g><g><title>copy_page_to_iter (384 samples, 0.13%)</title><rect x="96.8256%" y="757" width="0.1297%" height="15" fill="rgb(226,78,44)" fg:x="286595" fg:w="384"/><text x="97.0756%" y="767.50"></text></g><g><title>copy_user_enhanced_fast_string (378 samples, 0.13%)</title><rect x="96.8276%" y="741" width="0.1277%" height="15" fill="rgb(240,15,48)" fg:x="286601" fg:w="378"/><text x="97.0776%" y="751.50"></text></g><g><title>pagecache_get_page (32 samples, 0.01%)</title><rect x="96.9557%" y="757" width="0.0108%" height="15" fill="rgb(253,176,7)" fg:x="286980" fg:w="32"/><text x="97.2057%" y="767.50"></text></g><g><title>find_get_entry (32 samples, 0.01%)</title><rect x="96.9557%" y="741" width="0.0108%" height="15" fill="rgb(206,166,28)" fg:x="286980" fg:w="32"/><text x="97.2057%" y="751.50"></text></g><g><title>generic_file_buffered_read (429 samples, 0.14%)</title><rect x="96.8229%" y="773" width="0.1449%" height="15" fill="rgb(241,53,51)" fg:x="286587" fg:w="429"/><text x="97.0729%" y="783.50"></text></g><g><title>new_sync_read (432 samples, 0.15%)</title><rect x="96.8229%" y="789" width="0.1460%" height="15" fill="rgb(249,112,30)" fg:x="286587" fg:w="432"/><text x="97.0729%" y="799.50"></text></g><g><title>ksys_read (447 samples, 0.15%)</title><rect x="96.8208%" y="821" width="0.1510%" height="15" fill="rgb(217,85,30)" fg:x="286581" fg:w="447"/><text x="97.0708%" y="831.50"></text></g><g><title>vfs_read (444 samples, 0.15%)</title><rect x="96.8219%" y="805" width="0.1500%" height="15" fill="rgb(233,49,7)" fg:x="286584" fg:w="444"/><text x="97.0719%" y="815.50"></text></g><g><title>syscall_enter_from_user_mode (86 samples, 0.03%)</title><rect x="96.9763%" y="821" width="0.0291%" height="15" fill="rgb(234,109,9)" fg:x="287041" fg:w="86"/><text x="97.2263%" y="831.50"></text></g><g><title>arch_get_unmapped_area_topdown (50 samples, 0.02%)</title><rect x="97.0097%" y="773" width="0.0169%" height="15" fill="rgb(253,95,22)" fg:x="287140" fg:w="50"/><text x="97.2597%" y="783.50"></text></g><g><title>vm_unmapped_area (43 samples, 0.01%)</title><rect x="97.0121%" y="757" width="0.0145%" height="15" fill="rgb(233,176,25)" fg:x="287147" fg:w="43"/><text x="97.2621%" y="767.50"></text></g><g><title>get_unmapped_area (53 samples, 0.02%)</title><rect x="97.0090%" y="789" width="0.0179%" height="15" fill="rgb(236,33,39)" fg:x="287138" fg:w="53"/><text x="97.2590%" y="799.50"></text></g><g><title>perf_iterate_sb (140 samples, 0.05%)</title><rect x="97.0405%" y="757" width="0.0473%" height="15" fill="rgb(223,226,42)" fg:x="287231" fg:w="140"/><text x="97.2905%" y="767.50"></text></g><g><title>perf_iterate_ctx (116 samples, 0.04%)</title><rect x="97.0486%" y="741" width="0.0392%" height="15" fill="rgb(216,99,33)" fg:x="287255" fg:w="116"/><text x="97.2986%" y="751.50"></text></g><g><title>perf_event_mmap_output (76 samples, 0.03%)</title><rect x="97.0621%" y="725" width="0.0257%" height="15" fill="rgb(235,84,23)" fg:x="287295" fg:w="76"/><text x="97.3121%" y="735.50"></text></g><g><title>perf_output_copy (35 samples, 0.01%)</title><rect x="97.0759%" y="709" width="0.0118%" height="15" fill="rgb(232,2,27)" fg:x="287336" fg:w="35"/><text x="97.3259%" y="719.50"></text></g><g><title>perf_event_mmap (155 samples, 0.05%)</title><rect x="97.0364%" y="773" width="0.0524%" height="15" fill="rgb(241,23,22)" fg:x="287219" fg:w="155"/><text x="97.2864%" y="783.50"></text></g><g><title>__vma_adjust (61 samples, 0.02%)</title><rect x="97.0972%" y="757" width="0.0206%" height="15" fill="rgb(211,73,27)" fg:x="287399" fg:w="61"/><text x="97.3472%" y="767.50"></text></g><g><title>vma_merge (81 samples, 0.03%)</title><rect x="97.0945%" y="773" width="0.0274%" height="15" fill="rgb(235,109,49)" fg:x="287391" fg:w="81"/><text x="97.3445%" y="783.50"></text></g><g><title>do_mmap (354 samples, 0.12%)</title><rect x="97.0057%" y="805" width="0.1196%" height="15" fill="rgb(230,99,29)" fg:x="287128" fg:w="354"/><text x="97.2557%" y="815.50"></text></g><g><title>mmap_region (291 samples, 0.10%)</title><rect x="97.0269%" y="789" width="0.0983%" height="15" fill="rgb(245,199,7)" fg:x="287191" fg:w="291"/><text x="97.2769%" y="799.50"></text></g><g><title>do_syscall_64 (25,280 samples, 8.54%)</title><rect x="88.5963%" y="837" width="8.5408%" height="15" fill="rgb(217,179,10)" fg:x="262237" fg:w="25280"/><text x="88.8463%" y="847.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (390 samples, 0.13%)</title><rect x="97.0053%" y="821" width="0.1318%" height="15" fill="rgb(254,99,47)" fg:x="287127" fg:w="390"/><text x="97.2553%" y="831.50"></text></g><g><title>do_group_exit (52 samples, 0.02%)</title><rect x="97.2391%" y="773" width="0.0176%" height="15" fill="rgb(251,121,7)" fg:x="287819" fg:w="52"/><text x="97.4891%" y="783.50"></text></g><g><title>do_exit (52 samples, 0.02%)</title><rect x="97.2391%" y="757" width="0.0176%" height="15" fill="rgb(250,177,26)" fg:x="287819" fg:w="52"/><text x="97.4891%" y="767.50"></text></g><g><title>arch_do_signal (77 samples, 0.03%)</title><rect x="97.2327%" y="805" width="0.0260%" height="15" fill="rgb(232,88,15)" fg:x="287800" fg:w="77"/><text x="97.4827%" y="815.50"></text></g><g><title>get_signal (76 samples, 0.03%)</title><rect x="97.2330%" y="789" width="0.0257%" height="15" fill="rgb(251,54,54)" fg:x="287801" fg:w="76"/><text x="97.4830%" y="799.50"></text></g><g><title>blkcg_maybe_throttle_current (41 samples, 0.01%)</title><rect x="97.2587%" y="805" width="0.0139%" height="15" fill="rgb(208,177,15)" fg:x="287877" fg:w="41"/><text x="97.5087%" y="815.50"></text></g><g><title>fpregs_assert_state_consistent (84 samples, 0.03%)</title><rect x="97.2726%" y="805" width="0.0284%" height="15" fill="rgb(205,97,32)" fg:x="287918" fg:w="84"/><text x="97.5226%" y="815.50"></text></g><g><title>mem_cgroup_handle_over_high (45 samples, 0.02%)</title><rect x="97.3009%" y="805" width="0.0152%" height="15" fill="rgb(217,192,13)" fg:x="288002" fg:w="45"/><text x="97.5509%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (117 samples, 0.04%)</title><rect x="97.3209%" y="757" width="0.0395%" height="15" fill="rgb(215,163,41)" fg:x="288061" fg:w="117"/><text x="97.5709%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (115 samples, 0.04%)</title><rect x="97.3215%" y="741" width="0.0389%" height="15" fill="rgb(246,83,29)" fg:x="288063" fg:w="115"/><text x="97.5715%" y="751.50"></text></g><g><title>native_write_msr (115 samples, 0.04%)</title><rect x="97.3215%" y="725" width="0.0389%" height="15" fill="rgb(219,2,45)" fg:x="288063" fg:w="115"/><text x="97.5715%" y="735.50"></text></g><g><title>finish_task_switch (128 samples, 0.04%)</title><rect x="97.3202%" y="773" width="0.0432%" height="15" fill="rgb(242,215,33)" fg:x="288059" fg:w="128"/><text x="97.5702%" y="783.50"></text></g><g><title>schedule (149 samples, 0.05%)</title><rect x="97.3161%" y="805" width="0.0503%" height="15" fill="rgb(217,1,6)" fg:x="288047" fg:w="149"/><text x="97.5661%" y="815.50"></text></g><g><title>__schedule (148 samples, 0.05%)</title><rect x="97.3165%" y="789" width="0.0500%" height="15" fill="rgb(207,85,52)" fg:x="288048" fg:w="148"/><text x="97.5665%" y="799.50"></text></g><g><title>switch_fpu_return (49 samples, 0.02%)</title><rect x="97.3665%" y="805" width="0.0166%" height="15" fill="rgb(231,171,19)" fg:x="288196" fg:w="49"/><text x="97.6165%" y="815.50"></text></g><g><title>copy_kernel_to_fpregs (33 samples, 0.01%)</title><rect x="97.3719%" y="789" width="0.0111%" height="15" fill="rgb(207,128,4)" fg:x="288212" fg:w="33"/><text x="97.6219%" y="799.50"></text></g><g><title>__fsnotify_parent (70 samples, 0.02%)</title><rect x="97.4918%" y="773" width="0.0236%" height="15" fill="rgb(219,208,4)" fg:x="288567" fg:w="70"/><text x="97.7418%" y="783.50"></text></g><g><title>btrfs_release_file (304 samples, 0.10%)</title><rect x="97.5226%" y="773" width="0.1027%" height="15" fill="rgb(235,161,42)" fg:x="288658" fg:w="304"/><text x="97.7726%" y="783.50"></text></g><g><title>kfree (63 samples, 0.02%)</title><rect x="97.6040%" y="757" width="0.0213%" height="15" fill="rgb(247,218,18)" fg:x="288899" fg:w="63"/><text x="97.8540%" y="767.50"></text></g><g><title>lockref_put_or_lock (146 samples, 0.05%)</title><rect x="97.6614%" y="757" width="0.0493%" height="15" fill="rgb(232,114,51)" fg:x="289069" fg:w="146"/><text x="97.9114%" y="767.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.03%)</title><rect x="97.6759%" y="741" width="0.0348%" height="15" fill="rgb(222,95,3)" fg:x="289112" fg:w="103"/><text x="97.9259%" y="751.50"></text></g><g><title>dput (257 samples, 0.09%)</title><rect x="97.6253%" y="773" width="0.0868%" height="15" fill="rgb(240,65,29)" fg:x="288962" fg:w="257"/><text x="97.8753%" y="783.50"></text></g><g><title>kmem_cache_free (225 samples, 0.08%)</title><rect x="97.7124%" y="773" width="0.0760%" height="15" fill="rgb(249,209,20)" fg:x="289220" fg:w="225"/><text x="97.9624%" y="783.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (55 samples, 0.02%)</title><rect x="97.7699%" y="757" width="0.0186%" height="15" fill="rgb(241,48,37)" fg:x="289390" fg:w="55"/><text x="98.0199%" y="767.50"></text></g><g><title>locks_remove_file (47 samples, 0.02%)</title><rect x="97.7884%" y="773" width="0.0159%" height="15" fill="rgb(230,140,42)" fg:x="289445" fg:w="47"/><text x="98.0384%" y="783.50"></text></g><g><title>mntput_no_expire (82 samples, 0.03%)</title><rect x="97.8101%" y="773" width="0.0277%" height="15" fill="rgb(230,176,45)" fg:x="289509" fg:w="82"/><text x="98.0601%" y="783.50"></text></g><g><title>percpu_counter_add_batch (51 samples, 0.02%)</title><rect x="97.8398%" y="773" width="0.0172%" height="15" fill="rgb(245,112,21)" fg:x="289597" fg:w="51"/><text x="98.0898%" y="783.50"></text></g><g><title>apparmor_file_free_security (344 samples, 0.12%)</title><rect x="97.8641%" y="757" width="0.1162%" height="15" fill="rgb(207,183,35)" fg:x="289669" fg:w="344"/><text x="98.1141%" y="767.50"></text></g><g><title>__fput (1,651 samples, 0.56%)</title><rect x="97.4239%" y="789" width="0.5578%" height="15" fill="rgb(227,44,33)" fg:x="288366" fg:w="1651"/><text x="97.6739%" y="799.50"></text></g><g><title>security_file_free (368 samples, 0.12%)</title><rect x="97.8574%" y="773" width="0.1243%" height="15" fill="rgb(246,120,21)" fg:x="289649" fg:w="368"/><text x="98.1074%" y="783.50"></text></g><g><title>_raw_spin_lock_irq (61 samples, 0.02%)</title><rect x="97.9868%" y="789" width="0.0206%" height="15" fill="rgb(235,57,52)" fg:x="290032" fg:w="61"/><text x="98.2368%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28,555 samples, 9.65%)</title><rect x="88.5189%" y="853" width="9.6473%" height="15" fill="rgb(238,84,10)" fg:x="262008" fg:w="28555"/><text x="88.7689%" y="863.50">entry_SYSCALL_..</text></g><g><title>syscall_exit_to_user_mode (3,046 samples, 1.03%)</title><rect x="97.1371%" y="837" width="1.0291%" height="15" fill="rgb(251,200,32)" fg:x="287517" fg:w="3046"/><text x="97.3871%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (2,966 samples, 1.00%)</title><rect x="97.1641%" y="821" width="1.0021%" height="15" fill="rgb(247,159,13)" fg:x="287597" fg:w="2966"/><text x="97.4141%" y="831.50"></text></g><g><title>task_work_run (2,318 samples, 0.78%)</title><rect x="97.3830%" y="805" width="0.7831%" height="15" fill="rgb(238,64,4)" fg:x="288245" fg:w="2318"/><text x="97.6330%" y="815.50"></text></g><g><title>call_rcu (465 samples, 0.16%)</title><rect x="98.0091%" y="789" width="0.1571%" height="15" fill="rgb(221,131,51)" fg:x="290098" fg:w="465"/><text x="98.2591%" y="799.50"></text></g><g><title>rcu_segcblist_enqueue (223 samples, 0.08%)</title><rect x="98.0908%" y="773" width="0.0753%" height="15" fill="rgb(242,5,29)" fg:x="290340" fg:w="223"/><text x="98.3408%" y="783.50"></text></g><g><title>error_entry (329 samples, 0.11%)</title><rect x="98.1662%" y="853" width="0.1112%" height="15" fill="rgb(214,130,32)" fg:x="290563" fg:w="329"/><text x="98.4162%" y="863.50"></text></g><g><title>sync_regs (278 samples, 0.09%)</title><rect x="98.1834%" y="837" width="0.0939%" height="15" fill="rgb(244,210,16)" fg:x="290614" fg:w="278"/><text x="98.4334%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (2,163 samples, 0.73%)</title><rect x="98.3239%" y="805" width="0.7308%" height="15" fill="rgb(234,48,26)" fg:x="291030" fg:w="2163"/><text x="98.5739%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,142 samples, 0.72%)</title><rect x="98.3310%" y="789" width="0.7237%" height="15" fill="rgb(231,82,38)" fg:x="291051" fg:w="2142"/><text x="98.5810%" y="799.50"></text></g><g><title>native_write_msr (2,133 samples, 0.72%)</title><rect x="98.3341%" y="773" width="0.7206%" height="15" fill="rgb(254,128,41)" fg:x="291060" fg:w="2133"/><text x="98.5841%" y="783.50"></text></g><g><title>asm_call_sysvec_on_stack (30 samples, 0.01%)</title><rect x="99.0635%" y="773" width="0.0101%" height="15" fill="rgb(212,73,49)" fg:x="293219" fg:w="30"/><text x="99.3135%" y="783.50"></text></g><g><title>asm_sysvec_irq_work (51 samples, 0.02%)</title><rect x="99.0567%" y="805" width="0.0172%" height="15" fill="rgb(205,62,54)" fg:x="293199" fg:w="51"/><text x="99.3067%" y="815.50"></text></g><g><title>sysvec_irq_work (32 samples, 0.01%)</title><rect x="99.0631%" y="789" width="0.0108%" height="15" fill="rgb(228,0,8)" fg:x="293218" fg:w="32"/><text x="99.3131%" y="799.50"></text></g><g><title>schedule_tail (2,299 samples, 0.78%)</title><rect x="98.3057%" y="837" width="0.7767%" height="15" fill="rgb(251,28,17)" fg:x="290976" fg:w="2299"/><text x="98.5557%" y="847.50"></text></g><g><title>finish_task_switch (2,291 samples, 0.77%)</title><rect x="98.3084%" y="821" width="0.7740%" height="15" fill="rgb(238,105,27)" fg:x="290984" fg:w="2291"/><text x="98.5584%" y="831.50"></text></g><g><title>ret_from_fork (2,389 samples, 0.81%)</title><rect x="98.2966%" y="853" width="0.8071%" height="15" fill="rgb(237,216,33)" fg:x="290949" fg:w="2389"/><text x="98.5466%" y="863.50"></text></g><g><title>syscall_exit_to_user_mode (63 samples, 0.02%)</title><rect x="99.0824%" y="837" width="0.0213%" height="15" fill="rgb(229,228,25)" fg:x="293275" fg:w="63"/><text x="99.3324%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.02%)</title><rect x="99.0827%" y="821" width="0.0209%" height="15" fill="rgb(233,75,23)" fg:x="293276" fg:w="62"/><text x="99.3327%" y="831.50"></text></g><g><title>syscall_return_via_sysret (251 samples, 0.08%)</title><rect x="99.1037%" y="853" width="0.0848%" height="15" fill="rgb(231,207,16)" fg:x="293338" fg:w="251"/><text x="99.3537%" y="863.50"></text></g><g><title>[zig] (57,918 samples, 19.57%)</title><rect x="79.6224%" y="869" width="19.5675%" height="15" fill="rgb(231,191,45)" fg:x="235675" fg:w="57918"/><text x="79.8724%" y="879.50">[zig]</text></g><g><title>asm_exc_page_fault (761 samples, 0.26%)</title><rect x="99.1932%" y="869" width="0.2571%" height="15" fill="rgb(224,133,17)" fg:x="293603" fg:w="761"/><text x="99.4432%" y="879.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.02%)</title><rect x="99.4828%" y="725" width="0.0182%" height="15" fill="rgb(209,178,27)" fg:x="294460" fg:w="54"/><text x="99.7328%" y="735.50"></text></g><g><title>release_pages (35 samples, 0.01%)</title><rect x="99.4892%" y="709" width="0.0118%" height="15" fill="rgb(218,37,11)" fg:x="294479" fg:w="35"/><text x="99.7392%" y="719.50"></text></g><g><title>page_remove_rmap (72 samples, 0.02%)</title><rect x="99.5439%" y="693" width="0.0243%" height="15" fill="rgb(251,226,25)" fg:x="294641" fg:w="72"/><text x="99.7939%" y="703.50"></text></g><g><title>unmap_page_range (213 samples, 0.07%)</title><rect x="99.5013%" y="709" width="0.0720%" height="15" fill="rgb(209,222,27)" fg:x="294515" fg:w="213"/><text x="99.7513%" y="719.50"></text></g><g><title>mmput (283 samples, 0.10%)</title><rect x="99.4787%" y="757" width="0.0956%" height="15" fill="rgb(238,22,21)" fg:x="294448" fg:w="283"/><text x="99.7287%" y="767.50"></text></g><g><title>exit_mmap (283 samples, 0.10%)</title><rect x="99.4787%" y="741" width="0.0956%" height="15" fill="rgb(233,161,25)" fg:x="294448" fg:w="283"/><text x="99.7287%" y="751.50"></text></g><g><title>unmap_vmas (217 samples, 0.07%)</title><rect x="99.5010%" y="725" width="0.0733%" height="15" fill="rgb(226,122,53)" fg:x="294514" fg:w="217"/><text x="99.7510%" y="735.50"></text></g><g><title>begin_new_exec (288 samples, 0.10%)</title><rect x="99.4777%" y="773" width="0.0973%" height="15" fill="rgb(220,123,17)" fg:x="294445" fg:w="288"/><text x="99.7277%" y="783.50"></text></g><g><title>__x64_sys_execve (338 samples, 0.11%)</title><rect x="99.4726%" y="837" width="0.1142%" height="15" fill="rgb(230,224,35)" fg:x="294430" fg:w="338"/><text x="99.7226%" y="847.50"></text></g><g><title>do_execveat_common (338 samples, 0.11%)</title><rect x="99.4726%" y="821" width="0.1142%" height="15" fill="rgb(246,83,8)" fg:x="294430" fg:w="338"/><text x="99.7226%" y="831.50"></text></g><g><title>bprm_execve (338 samples, 0.11%)</title><rect x="99.4726%" y="805" width="0.1142%" height="15" fill="rgb(230,214,17)" fg:x="294430" fg:w="338"/><text x="99.7226%" y="815.50"></text></g><g><title>load_elf_binary (338 samples, 0.11%)</title><rect x="99.4726%" y="789" width="0.1142%" height="15" fill="rgb(222,97,18)" fg:x="294430" fg:w="338"/><text x="99.7226%" y="799.50"></text></g><g><title>mmput (84 samples, 0.03%)</title><rect x="99.5922%" y="805" width="0.0284%" height="15" fill="rgb(206,79,1)" fg:x="294784" fg:w="84"/><text x="99.8422%" y="815.50"></text></g><g><title>exit_mmap (83 samples, 0.03%)</title><rect x="99.5926%" y="789" width="0.0280%" height="15" fill="rgb(214,121,34)" fg:x="294785" fg:w="83"/><text x="99.8426%" y="799.50"></text></g><g><title>unmap_vmas (56 samples, 0.02%)</title><rect x="99.6017%" y="773" width="0.0189%" height="15" fill="rgb(249,199,46)" fg:x="294812" fg:w="56"/><text x="99.8517%" y="783.50"></text></g><g><title>unmap_page_range (56 samples, 0.02%)</title><rect x="99.6017%" y="757" width="0.0189%" height="15" fill="rgb(214,222,46)" fg:x="294812" fg:w="56"/><text x="99.8517%" y="767.50"></text></g><g><title>__x64_sys_exit (104 samples, 0.04%)</title><rect x="99.5868%" y="837" width="0.0351%" height="15" fill="rgb(248,168,30)" fg:x="294768" fg:w="104"/><text x="99.8368%" y="847.50"></text></g><g><title>do_exit (104 samples, 0.04%)</title><rect x="99.5868%" y="821" width="0.0351%" height="15" fill="rgb(226,14,28)" fg:x="294768" fg:w="104"/><text x="99.8368%" y="831.50"></text></g><g><title>free_unref_page_list (35 samples, 0.01%)</title><rect x="99.6574%" y="725" width="0.0118%" height="15" fill="rgb(253,123,1)" fg:x="294977" fg:w="35"/><text x="99.9074%" y="735.50"></text></g><g><title>tlb_finish_mmu (115 samples, 0.04%)</title><rect x="99.6321%" y="757" width="0.0389%" height="15" fill="rgb(225,24,42)" fg:x="294902" fg:w="115"/><text x="99.8821%" y="767.50"></text></g><g><title>release_pages (89 samples, 0.03%)</title><rect x="99.6409%" y="741" width="0.0301%" height="15" fill="rgb(216,161,37)" fg:x="294928" fg:w="89"/><text x="99.8909%" y="751.50"></text></g><g><title>mark_page_accessed (41 samples, 0.01%)</title><rect x="99.7182%" y="725" width="0.0139%" height="15" fill="rgb(251,164,26)" fg:x="295157" fg:w="41"/><text x="99.9682%" y="735.50"></text></g><g><title>page_remove_rmap (109 samples, 0.04%)</title><rect x="99.7321%" y="725" width="0.0368%" height="15" fill="rgb(219,177,3)" fg:x="295198" fg:w="109"/><text x="99.9821%" y="735.50"></text></g><g><title>tlb_flush_mmu (42 samples, 0.01%)</title><rect x="99.7689%" y="725" width="0.0142%" height="15" fill="rgb(222,65,0)" fg:x="295307" fg:w="42"/><text x="100.0189%" y="735.50"></text></g><g><title>unmap_page_range (353 samples, 0.12%)</title><rect x="99.6709%" y="741" width="0.1193%" height="15" fill="rgb(223,69,54)" fg:x="295017" fg:w="353"/><text x="99.9209%" y="751.50"></text></g><g><title>mmput (483 samples, 0.16%)</title><rect x="99.6274%" y="789" width="0.1632%" height="15" fill="rgb(235,30,27)" fg:x="294888" fg:w="483"/><text x="99.8774%" y="799.50"></text></g><g><title>exit_mmap (482 samples, 0.16%)</title><rect x="99.6277%" y="773" width="0.1628%" height="15" fill="rgb(220,183,50)" fg:x="294889" fg:w="482"/><text x="99.8777%" y="783.50"></text></g><g><title>unmap_vmas (354 samples, 0.12%)</title><rect x="99.6709%" y="757" width="0.1196%" height="15" fill="rgb(248,198,15)" fg:x="295017" fg:w="354"/><text x="99.9209%" y="767.50"></text></g><g><title>__x64_sys_exit_group (501 samples, 0.17%)</title><rect x="99.6219%" y="837" width="0.1693%" height="15" fill="rgb(222,211,4)" fg:x="294872" fg:w="501"/><text x="99.8719%" y="847.50"></text></g><g><title>do_group_exit (501 samples, 0.17%)</title><rect x="99.6219%" y="821" width="0.1693%" height="15" fill="rgb(214,102,34)" fg:x="294872" fg:w="501"/><text x="99.8719%" y="831.50"></text></g><g><title>do_exit (501 samples, 0.17%)</title><rect x="99.6219%" y="805" width="0.1693%" height="15" fill="rgb(245,92,5)" fg:x="294872" fg:w="501"/><text x="99.8719%" y="815.50"></text></g><g><title>do_syscall_64 (949 samples, 0.32%)</title><rect x="99.4726%" y="853" width="0.3206%" height="15" fill="rgb(252,72,51)" fg:x="294430" fg:w="949"/><text x="99.7226%" y="863.50"></text></g><g><title>mm_update_next_owner (57 samples, 0.02%)</title><rect x="99.7949%" y="757" width="0.0193%" height="15" fill="rgb(252,208,19)" fg:x="295384" fg:w="57"/><text x="100.0449%" y="767.50"></text></g><g><title>tlb_finish_mmu (66 samples, 0.02%)</title><rect x="99.8172%" y="725" width="0.0223%" height="15" fill="rgb(211,69,7)" fg:x="295450" fg:w="66"/><text x="100.0672%" y="735.50"></text></g><g><title>release_pages (49 samples, 0.02%)</title><rect x="99.8230%" y="709" width="0.0166%" height="15" fill="rgb(211,27,16)" fg:x="295467" fg:w="49"/><text x="100.0730%" y="719.50"></text></g><g><title>page_remove_rmap (76 samples, 0.03%)</title><rect x="99.8983%" y="693" width="0.0257%" height="15" fill="rgb(219,216,14)" fg:x="295690" fg:w="76"/><text x="100.1483%" y="703.50"></text></g><g><title>unmap_page_range (266 samples, 0.09%)</title><rect x="99.8402%" y="709" width="0.0899%" height="15" fill="rgb(219,71,8)" fg:x="295518" fg:w="266"/><text x="100.0902%" y="719.50"></text></g><g><title>mmput (344 samples, 0.12%)</title><rect x="99.8142%" y="757" width="0.1162%" height="15" fill="rgb(223,170,53)" fg:x="295441" fg:w="344"/><text x="100.0642%" y="767.50"></text></g><g><title>exit_mmap (343 samples, 0.12%)</title><rect x="99.8145%" y="741" width="0.1159%" height="15" fill="rgb(246,21,26)" fg:x="295442" fg:w="343"/><text x="100.0645%" y="751.50"></text></g><g><title>unmap_vmas (269 samples, 0.09%)</title><rect x="99.8395%" y="725" width="0.0909%" height="15" fill="rgb(248,20,46)" fg:x="295516" fg:w="269"/><text x="100.0895%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,425 samples, 0.48%)</title><rect x="99.4527%" y="869" width="0.4814%" height="15" fill="rgb(252,94,11)" fg:x="294371" fg:w="1425"/><text x="99.7027%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (417 samples, 0.14%)</title><rect x="99.7932%" y="853" width="0.1409%" height="15" fill="rgb(236,163,8)" fg:x="295379" fg:w="417"/><text x="100.0432%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (417 samples, 0.14%)</title><rect x="99.7932%" y="837" width="0.1409%" height="15" fill="rgb(217,221,45)" fg:x="295379" fg:w="417"/><text x="100.0432%" y="847.50"></text></g><g><title>arch_do_signal (417 samples, 0.14%)</title><rect x="99.7932%" y="821" width="0.1409%" height="15" fill="rgb(238,38,17)" fg:x="295379" fg:w="417"/><text x="100.0432%" y="831.50"></text></g><g><title>get_signal (417 samples, 0.14%)</title><rect x="99.7932%" y="805" width="0.1409%" height="15" fill="rgb(242,210,23)" fg:x="295379" fg:w="417"/><text x="100.0432%" y="815.50"></text></g><g><title>do_group_exit (417 samples, 0.14%)</title><rect x="99.7932%" y="789" width="0.1409%" height="15" fill="rgb(250,86,53)" fg:x="295379" fg:w="417"/><text x="100.0432%" y="799.50"></text></g><g><title>do_exit (417 samples, 0.14%)</title><rect x="99.7932%" y="773" width="0.1409%" height="15" fill="rgb(223,168,25)" fg:x="295379" fg:w="417"/><text x="100.0432%" y="783.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (127 samples, 0.04%)</title><rect x="99.9341%" y="869" width="0.0429%" height="15" fill="rgb(251,189,4)" fg:x="295796" fg:w="127"/><text x="100.1841%" y="879.50"></text></g><g><title>all (295,991 samples, 100%)</title><rect x="0.0000%" y="901" width="100.0000%" height="15" fill="rgb(245,19,28)" fg:x="0" fg:w="295991"/><text x="0.2500%" y="911.50"></text></g><g><title>zig (60,526 samples, 20.45%)</title><rect x="79.5514%" y="885" width="20.4486%" height="15" fill="rgb(207,10,34)" fg:x="235465" fg:w="60526"/><text x="79.8014%" y="895.50">zig</text></g><g><title>syscall_return_via_sysret (50 samples, 0.02%)</title><rect x="99.9831%" y="869" width="0.0169%" height="15" fill="rgb(235,153,31)" fg:x="295941" fg:w="50"/><text x="100.2331%" y="879.50"></text></g></svg></svg> |