491 lines
1.2 MiB
491 lines
1.2 MiB
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="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="151062"><g><title>ActionLookupVal (19 samples, 0.01%)</title><rect x="0.0000%" y="885" width="0.0126%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="19"/><text x="0.2500%" y="895.50"></text></g><g><title>JavaThread::is_Java_thread (16 samples, 0.01%)</title><rect x="0.2727%" y="853" width="0.0106%" height="15" fill="rgb(217,0,24)" fg:x="412" fg:w="16"/><text x="0.5227%" y="863.50"></text></g><g><title>_dl_update_slotinfo (112 samples, 0.07%)</title><rect x="0.5700%" y="853" width="0.0741%" height="15" fill="rgb(221,193,54)" fg:x="861" fg:w="112"/><text x="0.8200%" y="863.50"></text></g><g><title>resource_allocate_bytes (18 samples, 0.01%)</title><rect x="0.7169%" y="853" width="0.0119%" height="15" fill="rgb(248,212,6)" fg:x="1083" fg:w="18"/><text x="0.9669%" y="863.50"></text></g><g><title>update_get_addr (36 samples, 0.02%)</title><rect x="0.7374%" y="853" width="0.0238%" height="15" fill="rgb(208,68,35)" fg:x="1114" fg:w="36"/><text x="0.9874%" y="863.50"></text></g><g><title>[anon] (1,104 samples, 0.73%)</title><rect x="0.0311%" y="869" width="0.7308%" height="15" fill="rgb(232,128,0)" fg:x="47" fg:w="1104"/><text x="0.2811%" y="879.50"></text></g><g><title>[perf-983083.map] (141 samples, 0.09%)</title><rect x="0.7633%" y="869" width="0.0933%" height="15" fill="rgb(207,160,47)" fg:x="1153" fg:w="141"/><text x="1.0133%" y="879.50"></text></g><g><title>_dl_update_slotinfo (24 samples, 0.02%)</title><rect x="0.8930%" y="853" width="0.0159%" height="15" fill="rgb(228,23,34)" fg:x="1349" fg:w="24"/><text x="1.1430%" y="863.50"></text></g><g><title>[unknown] (91 samples, 0.06%)</title><rect x="0.8566%" y="869" width="0.0602%" height="15" fill="rgb(218,30,26)" fg:x="1294" fg:w="91"/><text x="1.1066%" y="879.50"></text></g><g><title>CompileBroker::collect_statistics (16 samples, 0.01%)</title><rect x="0.9334%" y="757" width="0.0106%" height="15" fill="rgb(220,122,19)" fg:x="1410" fg:w="16"/><text x="1.1834%" y="767.50"></text></g><g><title>jio_vsnprintf (34 samples, 0.02%)</title><rect x="0.9480%" y="725" width="0.0225%" height="15" fill="rgb(250,228,42)" fg:x="1432" fg:w="34"/><text x="1.1980%" y="735.50"></text></g><g><title>os::vsnprintf (34 samples, 0.02%)</title><rect x="0.9480%" y="709" width="0.0225%" height="15" fill="rgb(240,193,28)" fg:x="1432" fg:w="34"/><text x="1.1980%" y="719.50"></text></g><g><title>__vsnprintf_internal (34 samples, 0.02%)</title><rect x="0.9480%" y="693" width="0.0225%" height="15" fill="rgb(216,20,37)" fg:x="1432" fg:w="34"/><text x="1.1980%" y="703.50"></text></g><g><title>__vfprintf_internal (32 samples, 0.02%)</title><rect x="0.9493%" y="677" width="0.0212%" height="15" fill="rgb(206,188,39)" fg:x="1434" fg:w="32"/><text x="1.1993%" y="687.50"></text></g><g><title>CompileBroker::post_compile (42 samples, 0.03%)</title><rect x="0.9440%" y="757" width="0.0278%" height="15" fill="rgb(217,207,13)" fg:x="1426" fg:w="42"/><text x="1.1940%" y="767.50"></text></g><g><title>StringEventLog::log (41 samples, 0.03%)</title><rect x="0.9446%" y="741" width="0.0271%" height="15" fill="rgb(231,73,38)" fg:x="1427" fg:w="41"/><text x="1.1946%" y="751.50"></text></g><g><title>Symbol::print_symbol_on (21 samples, 0.01%)</title><rect x="0.9963%" y="725" width="0.0139%" height="15" fill="rgb(225,20,46)" fg:x="1505" fg:w="21"/><text x="1.2463%" y="735.50"></text></g><g><title>Method::print_short_name (50 samples, 0.03%)</title><rect x="0.9850%" y="741" width="0.0331%" height="15" fill="rgb(210,31,41)" fg:x="1488" fg:w="50"/><text x="1.2350%" y="751.50"></text></g><g><title>os::vsnprintf (30 samples, 0.02%)</title><rect x="1.0234%" y="709" width="0.0199%" height="15" fill="rgb(221,200,47)" fg:x="1546" fg:w="30"/><text x="1.2734%" y="719.50"></text></g><g><title>__vsnprintf_internal (27 samples, 0.02%)</title><rect x="1.0254%" y="693" width="0.0179%" height="15" fill="rgb(226,26,5)" fg:x="1549" fg:w="27"/><text x="1.2754%" y="703.50"></text></g><g><title>__vfprintf_internal (25 samples, 0.02%)</title><rect x="1.0267%" y="677" width="0.0165%" height="15" fill="rgb(249,33,26)" fg:x="1551" fg:w="25"/><text x="1.2767%" y="687.50"></text></g><g><title>CompileTask::print (100 samples, 0.07%)</title><rect x="0.9830%" y="757" width="0.0662%" height="15" fill="rgb(235,183,28)" fg:x="1485" fg:w="100"/><text x="1.2330%" y="767.50"></text></g><g><title>outputStream::print (47 samples, 0.03%)</title><rect x="1.0181%" y="741" width="0.0311%" height="15" fill="rgb(221,5,38)" fg:x="1538" fg:w="47"/><text x="1.2681%" y="751.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (46 samples, 0.03%)</title><rect x="1.0188%" y="725" width="0.0305%" height="15" fill="rgb(247,18,42)" fg:x="1539" fg:w="46"/><text x="1.2688%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="1.1254%" y="549" width="0.0113%" height="15" fill="rgb(241,131,45)" fg:x="1700" fg:w="17"/><text x="1.3754%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.02%)</title><rect x="1.1240%" y="565" width="0.0165%" height="15" fill="rgb(249,31,29)" fg:x="1698" fg:w="25"/><text x="1.3740%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (34 samples, 0.02%)</title><rect x="1.1234%" y="581" width="0.0225%" height="15" fill="rgb(225,111,53)" fg:x="1697" fg:w="34"/><text x="1.3734%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (45 samples, 0.03%)</title><rect x="1.1227%" y="597" width="0.0298%" height="15" fill="rgb(238,160,17)" fg:x="1696" fg:w="45"/><text x="1.3727%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (74 samples, 0.05%)</title><rect x="1.1194%" y="613" width="0.0490%" height="15" fill="rgb(214,148,48)" fg:x="1691" fg:w="74"/><text x="1.3694%" y="623.50"></text></g><g><title>SubstitutionResolver::block_do (24 samples, 0.02%)</title><rect x="1.1525%" y="597" width="0.0159%" height="15" fill="rgb(232,36,49)" fg:x="1741" fg:w="24"/><text x="1.4025%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (114 samples, 0.08%)</title><rect x="1.1194%" y="629" width="0.0755%" height="15" fill="rgb(209,103,24)" fg:x="1691" fg:w="114"/><text x="1.3694%" y="639.50"></text></g><g><title>SubstitutionResolver::block_do (40 samples, 0.03%)</title><rect x="1.1684%" y="613" width="0.0265%" height="15" fill="rgb(229,88,8)" fg:x="1765" fg:w="40"/><text x="1.4184%" y="623.50"></text></g><g><title>ValueStack::values_do (17 samples, 0.01%)</title><rect x="1.1836%" y="597" width="0.0113%" height="15" fill="rgb(213,181,19)" fg:x="1788" fg:w="17"/><text x="1.4336%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (169 samples, 0.11%)</title><rect x="1.1148%" y="645" width="0.1119%" height="15" fill="rgb(254,191,54)" fg:x="1684" fg:w="169"/><text x="1.3648%" y="655.50"></text></g><g><title>SubstitutionResolver::block_do (48 samples, 0.03%)</title><rect x="1.1949%" y="629" width="0.0318%" height="15" fill="rgb(241,83,37)" fg:x="1805" fg:w="48"/><text x="1.4449%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (170 samples, 0.11%)</title><rect x="1.1148%" y="661" width="0.1125%" height="15" fill="rgb(233,36,39)" fg:x="1684" fg:w="170"/><text x="1.3648%" y="671.50"></text></g><g><title>ValueMap::ValueMap (19 samples, 0.01%)</title><rect x="1.2306%" y="661" width="0.0126%" height="15" fill="rgb(226,3,54)" fg:x="1859" fg:w="19"/><text x="1.4806%" y="671.50"></text></g><g><title>ValueMap::find_insert (45 samples, 0.03%)</title><rect x="1.2432%" y="661" width="0.0298%" height="15" fill="rgb(245,192,40)" fg:x="1878" fg:w="45"/><text x="1.4932%" y="671.50"></text></g><g><title>ValueMap::kill_memory (24 samples, 0.02%)</title><rect x="1.2756%" y="661" width="0.0159%" height="15" fill="rgb(238,167,29)" fg:x="1927" fg:w="24"/><text x="1.5256%" y="671.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (333 samples, 0.22%)</title><rect x="1.0764%" y="677" width="0.2204%" height="15" fill="rgb(232,182,51)" fg:x="1626" fg:w="333"/><text x="1.3264%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (21 samples, 0.01%)</title><rect x="1.3180%" y="549" width="0.0139%" height="15" fill="rgb(231,60,39)" fg:x="1991" fg:w="21"/><text x="1.5680%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.02%)</title><rect x="1.3173%" y="565" width="0.0165%" height="15" fill="rgb(208,69,12)" fg:x="1990" fg:w="25"/><text x="1.5673%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (38 samples, 0.03%)</title><rect x="1.3154%" y="581" width="0.0252%" height="15" fill="rgb(235,93,37)" fg:x="1987" fg:w="38"/><text x="1.5654%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.03%)</title><rect x="1.3140%" y="597" width="0.0318%" height="15" fill="rgb(213,116,39)" fg:x="1985" fg:w="48"/><text x="1.5640%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (71 samples, 0.05%)</title><rect x="1.3101%" y="613" width="0.0470%" height="15" fill="rgb(222,207,29)" fg:x="1979" fg:w="71"/><text x="1.5601%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (92 samples, 0.06%)</title><rect x="1.3028%" y="629" width="0.0609%" height="15" fill="rgb(206,96,30)" fg:x="1968" fg:w="92"/><text x="1.5528%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (95 samples, 0.06%)</title><rect x="1.3015%" y="645" width="0.0629%" height="15" fill="rgb(218,138,4)" fg:x="1966" fg:w="95"/><text x="1.5515%" y="655.50"></text></g><g><title>BlockListBuilder::make_block_at (16 samples, 0.01%)</title><rect x="1.3875%" y="613" width="0.0106%" height="15" fill="rgb(250,191,14)" fg:x="2096" fg:w="16"/><text x="1.6375%" y="623.50"></text></g><g><title>ciMethod::get_method_blocks (25 samples, 0.02%)</title><rect x="1.4365%" y="565" width="0.0165%" height="15" fill="rgb(239,60,40)" fg:x="2170" fg:w="25"/><text x="1.6865%" y="575.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (25 samples, 0.02%)</title><rect x="1.4365%" y="549" width="0.0165%" height="15" fill="rgb(206,27,48)" fg:x="2170" fg:w="25"/><text x="1.6865%" y="559.50"></text></g><g><title>ciMethodBlocks::do_analysis (16 samples, 0.01%)</title><rect x="1.4425%" y="533" width="0.0106%" height="15" fill="rgb(225,35,8)" fg:x="2179" fg:w="16"/><text x="1.6925%" y="543.50"></text></g><g><title>MethodLiveness::init_basic_blocks (57 samples, 0.04%)</title><rect x="1.4160%" y="581" width="0.0377%" height="15" fill="rgb(250,213,24)" fg:x="2139" fg:w="57"/><text x="1.6660%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (129 samples, 0.09%)</title><rect x="1.3690%" y="645" width="0.0854%" height="15" fill="rgb(247,123,22)" fg:x="2068" fg:w="129"/><text x="1.6190%" y="655.50"></text></g><g><title>BlockListBuilder::set_leaders (114 samples, 0.08%)</title><rect x="1.3789%" y="629" width="0.0755%" height="15" fill="rgb(231,138,38)" fg:x="2083" fg:w="114"/><text x="1.6289%" y="639.50"></text></g><g><title>ciMethod::bci_block_start (84 samples, 0.06%)</title><rect x="1.3988%" y="613" width="0.0556%" height="15" fill="rgb(231,145,46)" fg:x="2113" fg:w="84"/><text x="1.6488%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (82 samples, 0.05%)</title><rect x="1.4001%" y="597" width="0.0543%" height="15" fill="rgb(251,118,11)" fg:x="2115" fg:w="82"/><text x="1.6501%" y="607.50"></text></g><g><title>ValueStack::ValueStack (20 samples, 0.01%)</title><rect x="1.4676%" y="613" width="0.0132%" height="15" fill="rgb(217,147,25)" fg:x="2217" fg:w="20"/><text x="1.7176%" y="623.50"></text></g><g><title>GraphBuilder::connect_to_end (27 samples, 0.02%)</title><rect x="1.4643%" y="629" width="0.0179%" height="15" fill="rgb(247,81,37)" fg:x="2212" fg:w="27"/><text x="1.7143%" y="639.50"></text></g><g><title>BlockBegin::try_merge (33 samples, 0.02%)</title><rect x="1.5133%" y="613" width="0.0218%" height="15" fill="rgb(209,12,38)" fg:x="2286" fg:w="33"/><text x="1.7633%" y="623.50"></text></g><g><title>SymbolTable::lookup (17 samples, 0.01%)</title><rect x="1.5934%" y="517" width="0.0113%" height="15" fill="rgb(227,1,9)" fg:x="2407" fg:w="17"/><text x="1.8434%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (19 samples, 0.01%)</title><rect x="1.6073%" y="517" width="0.0126%" height="15" fill="rgb(248,47,43)" fg:x="2428" fg:w="19"/><text x="1.8573%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (52 samples, 0.03%)</title><rect x="1.5927%" y="533" width="0.0344%" height="15" fill="rgb(221,10,30)" fg:x="2406" fg:w="52"/><text x="1.8427%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (67 samples, 0.04%)</title><rect x="1.5854%" y="549" width="0.0444%" height="15" fill="rgb(210,229,1)" fg:x="2395" fg:w="67"/><text x="1.8354%" y="559.50"></text></g><g><title>ciField::ciField (96 samples, 0.06%)</title><rect x="1.5749%" y="565" width="0.0636%" height="15" fill="rgb(222,148,37)" fg:x="2379" fg:w="96"/><text x="1.8249%" y="575.50"></text></g><g><title>ciEnv::get_field_by_index (106 samples, 0.07%)</title><rect x="1.5709%" y="581" width="0.0702%" height="15" fill="rgb(234,67,33)" fg:x="2373" fg:w="106"/><text x="1.8209%" y="591.50"></text></g><g><title>ciBytecodeStream::get_field (123 samples, 0.08%)</title><rect x="1.5676%" y="597" width="0.0814%" height="15" fill="rgb(247,98,35)" fg:x="2368" fg:w="123"/><text x="1.8176%" y="607.50"></text></g><g><title>GraphBuilder::access_field (178 samples, 0.12%)</title><rect x="1.5391%" y="613" width="0.1178%" height="15" fill="rgb(247,138,52)" fg:x="2325" fg:w="178"/><text x="1.7891%" y="623.50"></text></g><g><title>GraphBuilder::append_with_bci (21 samples, 0.01%)</title><rect x="1.6569%" y="613" width="0.0139%" height="15" fill="rgb(213,79,30)" fg:x="2503" fg:w="21"/><text x="1.9069%" y="623.50"></text></g><g><title>GraphBuilder::check_cast (16 samples, 0.01%)</title><rect x="1.6715%" y="613" width="0.0106%" height="15" fill="rgb(246,177,23)" fg:x="2525" fg:w="16"/><text x="1.9215%" y="623.50"></text></g><g><title>GraphBuilder::append_with_bci (21 samples, 0.01%)</title><rect x="1.7211%" y="597" width="0.0139%" height="15" fill="rgb(230,62,27)" fg:x="2600" fg:w="21"/><text x="1.9711%" y="607.50"></text></g><g><title>BlockBegin::try_merge (36 samples, 0.02%)</title><rect x="1.8092%" y="533" width="0.0238%" height="15" fill="rgb(216,154,8)" fg:x="2733" fg:w="36"/><text x="2.0592%" y="543.50"></text></g><g><title>GraphBuilder::append_with_bci (16 samples, 0.01%)</title><rect x="1.8430%" y="517" width="0.0106%" height="15" fill="rgb(244,35,45)" fg:x="2784" fg:w="16"/><text x="2.0930%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (31 samples, 0.02%)</title><rect x="1.8754%" y="453" width="0.0205%" height="15" fill="rgb(251,115,12)" fg:x="2833" fg:w="31"/><text x="2.1254%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (38 samples, 0.03%)</title><rect x="1.8741%" y="469" width="0.0252%" height="15" fill="rgb(240,54,50)" fg:x="2831" fg:w="38"/><text x="2.1241%" y="479.50"></text></g><g><title>ciField::ciField (64 samples, 0.04%)</title><rect x="1.8648%" y="485" width="0.0424%" height="15" fill="rgb(233,84,52)" fg:x="2817" fg:w="64"/><text x="2.1148%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (72 samples, 0.05%)</title><rect x="1.8608%" y="501" width="0.0477%" height="15" fill="rgb(207,117,47)" fg:x="2811" fg:w="72"/><text x="2.1108%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (82 samples, 0.05%)</title><rect x="1.8608%" y="517" width="0.0543%" height="15" fill="rgb(249,43,39)" fg:x="2811" fg:w="82"/><text x="2.1108%" y="527.50"></text></g><g><title>GraphBuilder::access_field (120 samples, 0.08%)</title><rect x="1.8390%" y="533" width="0.0794%" height="15" fill="rgb(209,38,44)" fg:x="2778" fg:w="120"/><text x="2.0890%" y="543.50"></text></g><g><title>BlockBegin::try_merge (17 samples, 0.01%)</title><rect x="1.9873%" y="453" width="0.0113%" height="15" fill="rgb(236,212,23)" fg:x="3002" fg:w="17"/><text x="2.2373%" y="463.50"></text></g><g><title>ciField::ciField (37 samples, 0.02%)</title><rect x="2.0137%" y="405" width="0.0245%" height="15" fill="rgb(242,79,21)" fg:x="3042" fg:w="37"/><text x="2.2637%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (41 samples, 0.03%)</title><rect x="2.0118%" y="421" width="0.0271%" height="15" fill="rgb(211,96,35)" fg:x="3039" fg:w="41"/><text x="2.2618%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (47 samples, 0.03%)</title><rect x="2.0118%" y="437" width="0.0311%" height="15" fill="rgb(253,215,40)" fg:x="3039" fg:w="47"/><text x="2.2618%" y="447.50"></text></g><g><title>GraphBuilder::access_field (62 samples, 0.04%)</title><rect x="2.0038%" y="453" width="0.0410%" height="15" fill="rgb(211,81,21)" fg:x="3027" fg:w="62"/><text x="2.2538%" y="463.50"></text></g><g><title>ciEnv::get_field_by_index (17 samples, 0.01%)</title><rect x="2.0859%" y="341" width="0.0113%" height="15" fill="rgb(208,190,38)" fg:x="3151" fg:w="17"/><text x="2.3359%" y="351.50"></text></g><g><title>ciBytecodeStream::get_field (20 samples, 0.01%)</title><rect x="2.0859%" y="357" width="0.0132%" height="15" fill="rgb(235,213,38)" fg:x="3151" fg:w="20"/><text x="2.3359%" y="367.50"></text></g><g><title>GraphBuilder::access_field (28 samples, 0.02%)</title><rect x="2.0819%" y="373" width="0.0185%" height="15" fill="rgb(237,122,38)" fg:x="3145" fg:w="28"/><text x="2.3319%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (18 samples, 0.01%)</title><rect x="2.1309%" y="245" width="0.0119%" height="15" fill="rgb(244,218,35)" fg:x="3219" fg:w="18"/><text x="2.3809%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (18 samples, 0.01%)</title><rect x="2.1309%" y="229" width="0.0119%" height="15" fill="rgb(240,68,47)" fg:x="3219" fg:w="18"/><text x="2.3809%" y="239.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.02%)</title><rect x="2.1296%" y="277" width="0.0185%" height="15" fill="rgb(210,16,53)" fg:x="3217" fg:w="28"/><text x="2.3796%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.1296%" y="261" width="0.0185%" height="15" fill="rgb(235,124,12)" fg:x="3217" fg:w="28"/><text x="2.3796%" y="271.50"></text></g><g><title>GraphBuilder::invoke (43 samples, 0.03%)</title><rect x="2.1283%" y="293" width="0.0285%" height="15" fill="rgb(224,169,11)" fg:x="3215" fg:w="43"/><text x="2.3783%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (72 samples, 0.05%)</title><rect x="2.1170%" y="325" width="0.0477%" height="15" fill="rgb(250,166,2)" fg:x="3198" fg:w="72"/><text x="2.3670%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (70 samples, 0.05%)</title><rect x="2.1183%" y="309" width="0.0463%" height="15" fill="rgb(242,216,29)" fg:x="3200" fg:w="70"/><text x="2.3683%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (112 samples, 0.07%)</title><rect x="2.1130%" y="341" width="0.0741%" height="15" fill="rgb(230,116,27)" fg:x="3192" fg:w="112"/><text x="2.3630%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (123 samples, 0.08%)</title><rect x="2.1124%" y="357" width="0.0814%" height="15" fill="rgb(228,99,48)" fg:x="3191" fg:w="123"/><text x="2.3624%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (32 samples, 0.02%)</title><rect x="2.1958%" y="357" width="0.0212%" height="15" fill="rgb(253,11,6)" fg:x="3317" fg:w="32"/><text x="2.4458%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (29 samples, 0.02%)</title><rect x="2.1978%" y="341" width="0.0192%" height="15" fill="rgb(247,143,39)" fg:x="3320" fg:w="29"/><text x="2.4478%" y="351.50"></text></g><g><title>ciObjectFactory::get_metadata (16 samples, 0.01%)</title><rect x="2.2064%" y="325" width="0.0106%" height="15" fill="rgb(236,97,10)" fg:x="3333" fg:w="16"/><text x="2.4564%" y="335.50"></text></g><g><title>GraphBuilder::invoke (172 samples, 0.11%)</title><rect x="2.1071%" y="373" width="0.1139%" height="15" fill="rgb(233,208,19)" fg:x="3183" fg:w="172"/><text x="2.3571%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (243 samples, 0.16%)</title><rect x="2.0713%" y="405" width="0.1609%" height="15" fill="rgb(216,164,2)" fg:x="3129" fg:w="243"/><text x="2.3213%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (238 samples, 0.16%)</title><rect x="2.0746%" y="389" width="0.1576%" height="15" fill="rgb(220,129,5)" fg:x="3134" fg:w="238"/><text x="2.3246%" y="399.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (19 samples, 0.01%)</title><rect x="2.2348%" y="389" width="0.0126%" height="15" fill="rgb(242,17,10)" fg:x="3376" fg:w="19"/><text x="2.4848%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (41 samples, 0.03%)</title><rect x="2.2335%" y="405" width="0.0271%" height="15" fill="rgb(242,107,0)" fg:x="3374" fg:w="41"/><text x="2.4835%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (24 samples, 0.02%)</title><rect x="2.2626%" y="405" width="0.0159%" height="15" fill="rgb(251,28,31)" fg:x="3418" fg:w="24"/><text x="2.5126%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (22 samples, 0.01%)</title><rect x="2.2640%" y="389" width="0.0146%" height="15" fill="rgb(233,223,10)" fg:x="3420" fg:w="22"/><text x="2.5140%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (327 samples, 0.22%)</title><rect x="2.0634%" y="421" width="0.2165%" height="15" fill="rgb(215,21,27)" fg:x="3117" fg:w="327"/><text x="2.3134%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (20 samples, 0.01%)</title><rect x="2.2818%" y="325" width="0.0132%" height="15" fill="rgb(232,23,21)" fg:x="3447" fg:w="20"/><text x="2.5318%" y="335.50"></text></g><g><title>GraphBuilder::invoke (23 samples, 0.02%)</title><rect x="2.2818%" y="341" width="0.0152%" height="15" fill="rgb(244,5,23)" fg:x="3447" fg:w="23"/><text x="2.5318%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.2805%" y="373" width="0.0172%" height="15" fill="rgb(226,81,46)" fg:x="3445" fg:w="26"/><text x="2.5305%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (26 samples, 0.02%)</title><rect x="2.2805%" y="357" width="0.0172%" height="15" fill="rgb(247,70,30)" fg:x="3445" fg:w="26"/><text x="2.5305%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (358 samples, 0.24%)</title><rect x="2.0621%" y="437" width="0.2370%" height="15" fill="rgb(212,68,19)" fg:x="3115" fg:w="358"/><text x="2.3121%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (28 samples, 0.02%)</title><rect x="2.2805%" y="421" width="0.0185%" height="15" fill="rgb(240,187,13)" fg:x="3445" fg:w="28"/><text x="2.5305%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.02%)</title><rect x="2.2805%" y="405" width="0.0185%" height="15" fill="rgb(223,113,26)" fg:x="3445" fg:w="28"/><text x="2.5305%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.2805%" y="389" width="0.0185%" height="15" fill="rgb(206,192,2)" fg:x="3445" fg:w="28"/><text x="2.5305%" y="399.50"></text></g><g><title>ciMethod::ciMethod (32 samples, 0.02%)</title><rect x="2.3361%" y="373" width="0.0212%" height="15" fill="rgb(241,108,4)" fg:x="3529" fg:w="32"/><text x="2.5861%" y="383.50"></text></g><g><title>ciSignature::ciSignature (22 samples, 0.01%)</title><rect x="2.3427%" y="357" width="0.0146%" height="15" fill="rgb(247,173,49)" fg:x="3539" fg:w="22"/><text x="2.5927%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (75 samples, 0.05%)</title><rect x="2.3083%" y="437" width="0.0496%" height="15" fill="rgb(224,114,35)" fg:x="3487" fg:w="75"/><text x="2.5583%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (68 samples, 0.05%)</title><rect x="2.3130%" y="421" width="0.0450%" height="15" fill="rgb(245,159,27)" fg:x="3494" fg:w="68"/><text x="2.5630%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (42 samples, 0.03%)</title><rect x="2.3302%" y="405" width="0.0278%" height="15" fill="rgb(245,172,44)" fg:x="3520" fg:w="42"/><text x="2.5802%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (38 samples, 0.03%)</title><rect x="2.3328%" y="389" width="0.0252%" height="15" fill="rgb(236,23,11)" fg:x="3524" fg:w="38"/><text x="2.5828%" y="399.50"></text></g><g><title>GraphBuilder::invoke (475 samples, 0.31%)</title><rect x="2.0548%" y="453" width="0.3144%" height="15" fill="rgb(205,117,38)" fg:x="3104" fg:w="475"/><text x="2.3048%" y="463.50"></text></g><g><title>GraphBuilder::method_return (22 samples, 0.01%)</title><rect x="2.3705%" y="453" width="0.0146%" height="15" fill="rgb(237,72,25)" fg:x="3581" fg:w="22"/><text x="2.6205%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (636 samples, 0.42%)</title><rect x="1.9734%" y="485" width="0.4210%" height="15" fill="rgb(244,70,9)" fg:x="2981" fg:w="636"/><text x="2.2234%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (629 samples, 0.42%)</title><rect x="1.9780%" y="469" width="0.4164%" height="15" fill="rgb(217,125,39)" fg:x="2988" fg:w="629"/><text x="2.2280%" y="479.50"></text></g><g><title>MethodLiveness::compute_liveness (26 samples, 0.02%)</title><rect x="2.4156%" y="421" width="0.0172%" height="15" fill="rgb(235,36,10)" fg:x="3649" fg:w="26"/><text x="2.6656%" y="431.50"></text></g><g><title>MethodLiveness::init_basic_blocks (19 samples, 0.01%)</title><rect x="2.4202%" y="405" width="0.0126%" height="15" fill="rgb(251,123,47)" fg:x="3656" fg:w="19"/><text x="2.6702%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (47 samples, 0.03%)</title><rect x="2.4023%" y="469" width="0.0311%" height="15" fill="rgb(221,13,13)" fg:x="3629" fg:w="47"/><text x="2.6523%" y="479.50"></text></g><g><title>BlockListBuilder::set_leaders (40 samples, 0.03%)</title><rect x="2.4070%" y="453" width="0.0265%" height="15" fill="rgb(238,131,9)" fg:x="3636" fg:w="40"/><text x="2.6570%" y="463.50"></text></g><g><title>ciMethod::bci_block_start (27 samples, 0.02%)</title><rect x="2.4156%" y="437" width="0.0179%" height="15" fill="rgb(211,50,8)" fg:x="3649" fg:w="27"/><text x="2.6656%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (74 samples, 0.05%)</title><rect x="2.4010%" y="485" width="0.0490%" height="15" fill="rgb(245,182,24)" fg:x="3627" fg:w="74"/><text x="2.6510%" y="495.50"></text></g><g><title>ciMethodData::load_data (25 samples, 0.02%)</title><rect x="2.4672%" y="453" width="0.0165%" height="15" fill="rgb(242,14,37)" fg:x="3727" fg:w="25"/><text x="2.7172%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (57 samples, 0.04%)</title><rect x="2.4546%" y="485" width="0.0377%" height="15" fill="rgb(246,228,12)" fg:x="3708" fg:w="57"/><text x="2.7046%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (53 samples, 0.04%)</title><rect x="2.4573%" y="469" width="0.0351%" height="15" fill="rgb(213,55,15)" fg:x="3712" fg:w="53"/><text x="2.7073%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (806 samples, 0.53%)</title><rect x="1.9601%" y="501" width="0.5336%" height="15" fill="rgb(209,9,3)" fg:x="2961" fg:w="806"/><text x="2.2101%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (18 samples, 0.01%)</title><rect x="2.4983%" y="389" width="0.0119%" height="15" fill="rgb(230,59,30)" fg:x="3774" fg:w="18"/><text x="2.7483%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (24 samples, 0.02%)</title><rect x="2.4983%" y="405" width="0.0159%" height="15" fill="rgb(209,121,21)" fg:x="3774" fg:w="24"/><text x="2.7483%" y="415.50"></text></g><g><title>GraphBuilder::invoke (26 samples, 0.02%)</title><rect x="2.4983%" y="421" width="0.0172%" height="15" fill="rgb(220,109,13)" fg:x="3774" fg:w="26"/><text x="2.7483%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (31 samples, 0.02%)</title><rect x="2.4957%" y="453" width="0.0205%" height="15" fill="rgb(232,18,1)" fg:x="3770" fg:w="31"/><text x="2.7457%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (31 samples, 0.02%)</title><rect x="2.4957%" y="437" width="0.0205%" height="15" fill="rgb(215,41,42)" fg:x="3770" fg:w="31"/><text x="2.7457%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (32 samples, 0.02%)</title><rect x="2.4957%" y="485" width="0.0212%" height="15" fill="rgb(224,123,36)" fg:x="3770" fg:w="32"/><text x="2.7457%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (32 samples, 0.02%)</title><rect x="2.4957%" y="469" width="0.0212%" height="15" fill="rgb(240,125,3)" fg:x="3770" fg:w="32"/><text x="2.7457%" y="479.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (34 samples, 0.02%)</title><rect x="2.4957%" y="501" width="0.0225%" height="15" fill="rgb(205,98,50)" fg:x="3770" fg:w="34"/><text x="2.7457%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (851 samples, 0.56%)</title><rect x="1.9562%" y="517" width="0.5633%" height="15" fill="rgb(205,185,37)" fg:x="2955" fg:w="851"/><text x="2.2062%" y="527.50"></text></g><g><title>ciEnv::lookup_method (46 samples, 0.03%)</title><rect x="2.5533%" y="485" width="0.0305%" height="15" fill="rgb(238,207,15)" fg:x="3857" fg:w="46"/><text x="2.8033%" y="495.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (17 samples, 0.01%)</title><rect x="2.5725%" y="469" width="0.0113%" height="15" fill="rgb(213,199,42)" fg:x="3886" fg:w="17"/><text x="2.8225%" y="479.50"></text></g><g><title>LinkResolver::resolve_static_call (17 samples, 0.01%)</title><rect x="2.5725%" y="453" width="0.0113%" height="15" fill="rgb(235,201,11)" fg:x="3886" fg:w="17"/><text x="2.8225%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (29 samples, 0.02%)</title><rect x="2.6128%" y="421" width="0.0192%" height="15" fill="rgb(207,46,11)" fg:x="3947" fg:w="29"/><text x="2.8628%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (80 samples, 0.05%)</title><rect x="2.5837%" y="485" width="0.0530%" height="15" fill="rgb(241,35,35)" fg:x="3903" fg:w="80"/><text x="2.8337%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (72 samples, 0.05%)</title><rect x="2.5890%" y="469" width="0.0477%" height="15" fill="rgb(243,32,47)" fg:x="3911" fg:w="72"/><text x="2.8390%" y="479.50"></text></g><g><title>ciMethod::ciMethod (66 samples, 0.04%)</title><rect x="2.5930%" y="453" width="0.0437%" height="15" fill="rgb(247,202,23)" fg:x="3917" fg:w="66"/><text x="2.8430%" y="463.50"></text></g><g><title>ciSignature::ciSignature (55 samples, 0.04%)</title><rect x="2.6003%" y="437" width="0.0364%" height="15" fill="rgb(219,102,11)" fg:x="3928" fg:w="55"/><text x="2.8503%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (143 samples, 0.09%)</title><rect x="2.5433%" y="501" width="0.0947%" height="15" fill="rgb(243,110,44)" fg:x="3842" fg:w="143"/><text x="2.7933%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (155 samples, 0.10%)</title><rect x="2.5360%" y="517" width="0.1026%" height="15" fill="rgb(222,74,54)" fg:x="3831" fg:w="155"/><text x="2.7860%" y="527.50"></text></g><g><title>GraphBuilder::invoke (1,080 samples, 0.71%)</title><rect x="1.9356%" y="533" width="0.7149%" height="15" fill="rgb(216,99,12)" fg:x="2924" fg:w="1080"/><text x="2.1856%" y="543.50"></text></g><g><title>GraphBuilder::append_with_bci (23 samples, 0.02%)</title><rect x="2.6585%" y="517" width="0.0152%" height="15" fill="rgb(226,22,26)" fg:x="4016" fg:w="23"/><text x="2.9085%" y="527.50"></text></g><g><title>ValueStack::ValueStack (16 samples, 0.01%)</title><rect x="2.6631%" y="501" width="0.0106%" height="15" fill="rgb(217,163,10)" fg:x="4023" fg:w="16"/><text x="2.9131%" y="511.50"></text></g><g><title>GraphBuilder::method_return (52 samples, 0.03%)</title><rect x="2.6526%" y="533" width="0.0344%" height="15" fill="rgb(213,25,53)" fg:x="4007" fg:w="52"/><text x="2.9026%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,373 samples, 0.91%)</title><rect x="1.7940%" y="549" width="0.9089%" height="15" fill="rgb(252,105,26)" fg:x="2710" fg:w="1373"/><text x="2.0440%" y="559.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,388 samples, 0.92%)</title><rect x="1.7847%" y="565" width="0.9188%" height="15" fill="rgb(220,39,43)" fg:x="2696" fg:w="1388"/><text x="2.0347%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (49 samples, 0.03%)</title><rect x="2.7274%" y="533" width="0.0324%" height="15" fill="rgb(229,68,48)" fg:x="4120" fg:w="49"/><text x="2.9774%" y="543.50"></text></g><g><title>ciMethod::bci_block_start (35 samples, 0.02%)</title><rect x="2.7366%" y="517" width="0.0232%" height="15" fill="rgb(252,8,32)" fg:x="4134" fg:w="35"/><text x="2.9866%" y="527.50"></text></g><g><title>MethodLiveness::compute_liveness (32 samples, 0.02%)</title><rect x="2.7386%" y="501" width="0.0212%" height="15" fill="rgb(223,20,43)" fg:x="4137" fg:w="32"/><text x="2.9886%" y="511.50"></text></g><g><title>MethodLiveness::init_basic_blocks (21 samples, 0.01%)</title><rect x="2.7459%" y="485" width="0.0139%" height="15" fill="rgb(229,81,49)" fg:x="4148" fg:w="21"/><text x="2.9959%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (65 samples, 0.04%)</title><rect x="2.7188%" y="549" width="0.0430%" height="15" fill="rgb(236,28,36)" fg:x="4107" fg:w="65"/><text x="2.9688%" y="559.50"></text></g><g><title>GraphBuilder::push_scope (110 samples, 0.07%)</title><rect x="2.7161%" y="565" width="0.0728%" height="15" fill="rgb(249,185,26)" fg:x="4103" fg:w="110"/><text x="2.9661%" y="575.50"></text></g><g><title>Method::build_interpreter_method_data (46 samples, 0.03%)</title><rect x="2.8041%" y="533" width="0.0305%" height="15" fill="rgb(249,174,33)" fg:x="4236" fg:w="46"/><text x="3.0541%" y="543.50"></text></g><g><title>MethodData::allocate (45 samples, 0.03%)</title><rect x="2.8048%" y="517" width="0.0298%" height="15" fill="rgb(233,201,37)" fg:x="4237" fg:w="45"/><text x="3.0548%" y="527.50"></text></g><g><title>MethodData::initialize (29 samples, 0.02%)</title><rect x="2.8154%" y="501" width="0.0192%" height="15" fill="rgb(221,78,26)" fg:x="4253" fg:w="29"/><text x="3.0654%" y="511.50"></text></g><g><title>ciMethodData::load_data (51 samples, 0.03%)</title><rect x="2.8386%" y="533" width="0.0338%" height="15" fill="rgb(250,127,30)" fg:x="4288" fg:w="51"/><text x="3.0886%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (122 samples, 0.08%)</title><rect x="2.7995%" y="565" width="0.0808%" height="15" fill="rgb(230,49,44)" fg:x="4229" fg:w="122"/><text x="3.0495%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (117 samples, 0.08%)</title><rect x="2.8028%" y="549" width="0.0775%" height="15" fill="rgb(229,67,23)" fg:x="4234" fg:w="117"/><text x="3.0528%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (1,718 samples, 1.14%)</title><rect x="1.7496%" y="581" width="1.1373%" height="15" fill="rgb(249,83,47)" fg:x="2643" fg:w="1718"/><text x="1.9996%" y="591.50"></text></g><g><title>GraphBuilder::try_inline (1,732 samples, 1.15%)</title><rect x="1.7443%" y="597" width="1.1465%" height="15" fill="rgb(215,43,3)" fg:x="2635" fg:w="1732"/><text x="1.9943%" y="607.50"></text></g><g><title>ciBytecodeStream::get_declared_method_holder (19 samples, 0.01%)</title><rect x="2.9021%" y="597" width="0.0126%" height="15" fill="rgb(238,154,13)" fg:x="4384" fg:w="19"/><text x="3.1521%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (16 samples, 0.01%)</title><rect x="2.9346%" y="565" width="0.0106%" height="15" fill="rgb(219,56,2)" fg:x="4433" fg:w="16"/><text x="3.1846%" y="575.50"></text></g><g><title>LinkResolver::resolve_interface_method (16 samples, 0.01%)</title><rect x="2.9485%" y="533" width="0.0106%" height="15" fill="rgb(233,0,4)" fg:x="4454" fg:w="16"/><text x="3.1985%" y="543.50"></text></g><g><title>LinkResolver::linktime_resolve_interface_method_or_null (20 samples, 0.01%)</title><rect x="2.9478%" y="549" width="0.0132%" height="15" fill="rgb(235,30,7)" fg:x="4453" fg:w="20"/><text x="3.1978%" y="559.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (18 samples, 0.01%)</title><rect x="2.9730%" y="517" width="0.0119%" height="15" fill="rgb(250,79,13)" fg:x="4491" fg:w="18"/><text x="3.2230%" y="527.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (16 samples, 0.01%)</title><rect x="2.9743%" y="501" width="0.0106%" height="15" fill="rgb(211,146,34)" fg:x="4493" fg:w="16"/><text x="3.2243%" y="511.50"></text></g><g><title>LinkResolver::resolve_method (32 samples, 0.02%)</title><rect x="2.9643%" y="533" width="0.0212%" height="15" fill="rgb(228,22,38)" fg:x="4478" fg:w="32"/><text x="3.2143%" y="543.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (40 samples, 0.03%)</title><rect x="2.9610%" y="549" width="0.0265%" height="15" fill="rgb(235,168,5)" fg:x="4473" fg:w="40"/><text x="3.2110%" y="559.50"></text></g><g><title>ciEnv::lookup_method (87 samples, 0.06%)</title><rect x="2.9451%" y="565" width="0.0576%" height="15" fill="rgb(221,155,16)" fg:x="4449" fg:w="87"/><text x="3.1951%" y="575.50"></text></g><g><title>SignatureStream::as_symbol (32 samples, 0.02%)</title><rect x="3.0425%" y="501" width="0.0212%" height="15" fill="rgb(215,215,53)" fg:x="4596" fg:w="32"/><text x="3.2925%" y="511.50"></text></g><g><title>SymbolTable::lookup (30 samples, 0.02%)</title><rect x="3.0438%" y="485" width="0.0199%" height="15" fill="rgb(223,4,10)" fg:x="4598" fg:w="30"/><text x="3.2938%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (37 samples, 0.02%)</title><rect x="3.0676%" y="501" width="0.0245%" height="15" fill="rgb(234,103,6)" fg:x="4634" fg:w="37"/><text x="3.3176%" y="511.50"></text></g><g><title>ciMethod::ciMethod (125 samples, 0.08%)</title><rect x="3.0160%" y="533" width="0.0827%" height="15" fill="rgb(227,97,0)" fg:x="4556" fg:w="125"/><text x="3.2660%" y="543.50"></text></g><g><title>ciSignature::ciSignature (99 samples, 0.07%)</title><rect x="3.0332%" y="517" width="0.0655%" height="15" fill="rgb(234,150,53)" fg:x="4582" fg:w="99"/><text x="3.2832%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (147 samples, 0.10%)</title><rect x="3.0027%" y="565" width="0.0973%" height="15" fill="rgb(228,201,54)" fg:x="4536" fg:w="147"/><text x="3.2527%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (134 samples, 0.09%)</title><rect x="3.0113%" y="549" width="0.0887%" height="15" fill="rgb(222,22,37)" fg:x="4549" fg:w="134"/><text x="3.2613%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (268 samples, 0.18%)</title><rect x="2.9279%" y="581" width="0.1774%" height="15" fill="rgb(237,53,32)" fg:x="4423" fg:w="268"/><text x="3.1779%" y="591.50"></text></g><g><title>ciBytecodeStream::get_method (289 samples, 0.19%)</title><rect x="2.9147%" y="597" width="0.1913%" height="15" fill="rgb(233,25,53)" fg:x="4403" fg:w="289"/><text x="3.1647%" y="607.50"></text></g><g><title>Dependencies::find_unique_concrete_method (21 samples, 0.01%)</title><rect x="3.1186%" y="581" width="0.0139%" height="15" fill="rgb(210,40,34)" fg:x="4711" fg:w="21"/><text x="3.3686%" y="591.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (21 samples, 0.01%)</title><rect x="3.1186%" y="565" width="0.0139%" height="15" fill="rgb(241,220,44)" fg:x="4711" fg:w="21"/><text x="3.3686%" y="575.50"></text></g><g><title>ClassHierarchyWalker::is_witness (21 samples, 0.01%)</title><rect x="3.1186%" y="549" width="0.0139%" height="15" fill="rgb(235,28,35)" fg:x="4711" fg:w="21"/><text x="3.3686%" y="559.50"></text></g><g><title>InstanceKlass::find_instance_method (20 samples, 0.01%)</title><rect x="3.1192%" y="533" width="0.0132%" height="15" fill="rgb(210,56,17)" fg:x="4712" fg:w="20"/><text x="3.3692%" y="543.50"></text></g><g><title>InstanceKlass::find_method_index (18 samples, 0.01%)</title><rect x="3.1206%" y="517" width="0.0119%" height="15" fill="rgb(224,130,29)" fg:x="4714" fg:w="18"/><text x="3.3706%" y="527.50"></text></g><g><title>ciMethod::find_monomorphic_target (27 samples, 0.02%)</title><rect x="3.1186%" y="597" width="0.0179%" height="15" fill="rgb(235,212,8)" fg:x="4711" fg:w="27"/><text x="3.3686%" y="607.50"></text></g><g><title>GraphBuilder::invoke (2,186 samples, 1.45%)</title><rect x="1.6980%" y="613" width="1.4471%" height="15" fill="rgb(223,33,50)" fg:x="2565" fg:w="2186"/><text x="1.9480%" y="623.50"></text></g><g><title>GraphBuilder::load_constant (17 samples, 0.01%)</title><rect x="3.1451%" y="613" width="0.0113%" height="15" fill="rgb(219,149,13)" fg:x="4751" fg:w="17"/><text x="3.3951%" y="623.50"></text></g><g><title>ciBytecodeStream::get_constant (16 samples, 0.01%)</title><rect x="3.1457%" y="597" width="0.0106%" height="15" fill="rgb(250,156,29)" fg:x="4752" fg:w="16"/><text x="3.3957%" y="607.50"></text></g><g><title>GraphBuilder::method_return (19 samples, 0.01%)</title><rect x="3.1576%" y="613" width="0.0126%" height="15" fill="rgb(216,193,19)" fg:x="4770" fg:w="19"/><text x="3.4076%" y="623.50"></text></g><g><title>GraphBuilder::new_instance (16 samples, 0.01%)</title><rect x="3.1702%" y="613" width="0.0106%" height="15" fill="rgb(216,135,14)" fg:x="4789" fg:w="16"/><text x="3.4202%" y="623.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,581 samples, 1.71%)</title><rect x="1.4822%" y="629" width="1.7086%" height="15" fill="rgb(241,47,5)" fg:x="2239" fg:w="2581"/><text x="1.7322%" y="639.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,616 samples, 1.73%)</title><rect x="1.4617%" y="645" width="1.7317%" height="15" fill="rgb(233,42,35)" fg:x="2208" fg:w="2616"/><text x="1.7117%" y="655.50"></text></g><g><title>GraphBuilder::setup_start_block (30 samples, 0.02%)</title><rect x="3.1941%" y="645" width="0.0199%" height="15" fill="rgb(231,13,6)" fg:x="4825" fg:w="30"/><text x="3.4441%" y="655.50"></text></g><g><title>GraphBuilder::GraphBuilder (2,909 samples, 1.93%)</title><rect x="1.2981%" y="661" width="1.9257%" height="15" fill="rgb(207,181,40)" fg:x="1961" fg:w="2909"/><text x="1.5481%" y="671.50">G..</text></g><g><title>IR::IR (2,929 samples, 1.94%)</title><rect x="1.2968%" y="677" width="1.9389%" height="15" fill="rgb(254,173,49)" fg:x="1959" fg:w="2929"/><text x="1.5468%" y="687.50">I..</text></g><g><title>ComputeLinearScanOrder::compute_order (23 samples, 0.02%)</title><rect x="3.2411%" y="645" width="0.0152%" height="15" fill="rgb(221,1,38)" fg:x="4896" fg:w="23"/><text x="3.4911%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (58 samples, 0.04%)</title><rect x="3.2364%" y="661" width="0.0384%" height="15" fill="rgb(206,124,46)" fg:x="4889" fg:w="58"/><text x="3.4864%" y="671.50"></text></g><g><title>IR::compute_code (66 samples, 0.04%)</title><rect x="3.2358%" y="677" width="0.0437%" height="15" fill="rgb(249,21,11)" fg:x="4888" fg:w="66"/><text x="3.4858%" y="687.50"></text></g><g><title>BlockList::iterate_backward (79 samples, 0.05%)</title><rect x="3.2828%" y="661" width="0.0523%" height="15" fill="rgb(222,201,40)" fg:x="4959" fg:w="79"/><text x="3.5328%" y="671.50"></text></g><g><title>UseCountComputer::block_do (79 samples, 0.05%)</title><rect x="3.2828%" y="645" width="0.0523%" height="15" fill="rgb(235,61,29)" fg:x="4959" fg:w="79"/><text x="3.5328%" y="655.50"></text></g><g><title>ValueStack::values_do (35 samples, 0.02%)</title><rect x="3.3119%" y="629" width="0.0232%" height="15" fill="rgb(219,207,3)" fg:x="5003" fg:w="35"/><text x="3.5619%" y="639.50"></text></g><g><title>IR::compute_use_counts (110 samples, 0.07%)</title><rect x="3.2794%" y="677" width="0.0728%" height="15" fill="rgb(222,56,46)" fg:x="4954" fg:w="110"/><text x="3.5294%" y="687.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (26 samples, 0.02%)</title><rect x="3.3351%" y="661" width="0.0172%" height="15" fill="rgb(239,76,54)" fg:x="5038" fg:w="26"/><text x="3.5851%" y="671.50"></text></g><g><title>NullCheckEliminator::merge_state_for (26 samples, 0.02%)</title><rect x="3.4350%" y="629" width="0.0172%" height="15" fill="rgb(231,124,27)" fg:x="5189" fg:w="26"/><text x="3.6850%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (138 samples, 0.09%)</title><rect x="3.3682%" y="645" width="0.0914%" height="15" fill="rgb(249,195,6)" fg:x="5088" fg:w="138"/><text x="3.6182%" y="655.50"></text></g><g><title>IR::eliminate_null_checks (172 samples, 0.11%)</title><rect x="3.3523%" y="677" width="0.1139%" height="15" fill="rgb(237,174,47)" fg:x="5064" fg:w="172"/><text x="3.6023%" y="687.50"></text></g><g><title>Optimizer::eliminate_null_checks (172 samples, 0.11%)</title><rect x="3.3523%" y="661" width="0.1139%" height="15" fill="rgb(206,201,31)" fg:x="5064" fg:w="172"/><text x="3.6023%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (18 samples, 0.01%)</title><rect x="3.4741%" y="581" width="0.0119%" height="15" fill="rgb(231,57,52)" fg:x="5248" fg:w="18"/><text x="3.7241%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.02%)</title><rect x="3.4741%" y="597" width="0.0165%" height="15" fill="rgb(248,177,22)" fg:x="5248" fg:w="25"/><text x="3.7241%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.02%)</title><rect x="3.4734%" y="613" width="0.0212%" height="15" fill="rgb(215,211,37)" fg:x="5247" fg:w="32"/><text x="3.7234%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (36 samples, 0.02%)</title><rect x="3.4727%" y="629" width="0.0238%" height="15" fill="rgb(241,128,51)" fg:x="5246" fg:w="36"/><text x="3.7227%" y="639.50"></text></g><g><title>IR::optimize_blocks (47 samples, 0.03%)</title><rect x="3.4661%" y="677" width="0.0311%" height="15" fill="rgb(227,165,31)" fg:x="5236" fg:w="47"/><text x="3.7161%" y="687.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (38 samples, 0.03%)</title><rect x="3.4721%" y="661" width="0.0252%" height="15" fill="rgb(228,167,24)" fg:x="5245" fg:w="38"/><text x="3.7221%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (38 samples, 0.03%)</title><rect x="3.4721%" y="645" width="0.0252%" height="15" fill="rgb(228,143,12)" fg:x="5245" fg:w="38"/><text x="3.7221%" y="655.50"></text></g><g><title>BlockBegin::insert_block_between (16 samples, 0.01%)</title><rect x="3.4979%" y="661" width="0.0106%" height="15" fill="rgb(249,149,8)" fg:x="5284" fg:w="16"/><text x="3.7479%" y="671.50"></text></g><g><title>IR::split_critical_edges (38 samples, 0.03%)</title><rect x="3.4972%" y="677" width="0.0252%" height="15" fill="rgb(243,35,44)" fg:x="5283" fg:w="38"/><text x="3.7472%" y="687.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (16 samples, 0.01%)</title><rect x="3.5343%" y="565" width="0.0106%" height="15" fill="rgb(246,89,9)" fg:x="5339" fg:w="16"/><text x="3.7843%" y="575.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (19 samples, 0.01%)</title><rect x="3.5330%" y="581" width="0.0126%" height="15" fill="rgb(233,213,13)" fg:x="5337" fg:w="19"/><text x="3.7830%" y="591.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (21 samples, 0.01%)</title><rect x="3.5330%" y="597" width="0.0139%" height="15" fill="rgb(233,141,41)" fg:x="5337" fg:w="21"/><text x="3.7830%" y="607.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (22 samples, 0.01%)</title><rect x="3.5330%" y="613" width="0.0146%" height="15" fill="rgb(239,167,4)" fg:x="5337" fg:w="22"/><text x="3.7830%" y="623.50"></text></g><g><title>RangeCheckElimination::eliminate (38 samples, 0.03%)</title><rect x="3.5231%" y="677" width="0.0252%" height="15" fill="rgb(209,217,16)" fg:x="5322" fg:w="38"/><text x="3.7731%" y="687.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (24 samples, 0.02%)</title><rect x="3.5323%" y="661" width="0.0159%" height="15" fill="rgb(219,88,35)" fg:x="5336" fg:w="24"/><text x="3.7823%" y="671.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (24 samples, 0.02%)</title><rect x="3.5323%" y="645" width="0.0159%" height="15" fill="rgb(220,193,23)" fg:x="5336" fg:w="24"/><text x="3.7823%" y="655.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (23 samples, 0.02%)</title><rect x="3.5330%" y="629" width="0.0152%" height="15" fill="rgb(230,90,52)" fg:x="5337" fg:w="23"/><text x="3.7830%" y="639.50"></text></g><g><title>Compilation::build_hir (3,742 samples, 2.48%)</title><rect x="1.0731%" y="693" width="2.4771%" height="15" fill="rgb(252,106,19)" fg:x="1621" fg:w="3742"/><text x="1.3231%" y="703.50">Co..</text></g><g><title>CodeEmitInfo::record_debug_info (24 samples, 0.02%)</title><rect x="3.6124%" y="629" width="0.0159%" height="15" fill="rgb(206,74,20)" fg:x="5457" fg:w="24"/><text x="3.8624%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (25 samples, 0.02%)</title><rect x="3.6124%" y="645" width="0.0165%" height="15" fill="rgb(230,138,44)" fg:x="5457" fg:w="25"/><text x="3.8624%" y="655.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (17 samples, 0.01%)</title><rect x="3.6468%" y="581" width="0.0113%" height="15" fill="rgb(235,182,43)" fg:x="5509" fg:w="17"/><text x="3.8968%" y="591.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (29 samples, 0.02%)</title><rect x="3.6409%" y="597" width="0.0192%" height="15" fill="rgb(242,16,51)" fg:x="5500" fg:w="29"/><text x="3.8909%" y="607.50"></text></g><g><title>DebugInformationRecorder::describe_scope (22 samples, 0.01%)</title><rect x="3.6601%" y="597" width="0.0146%" height="15" fill="rgb(248,9,4)" fg:x="5529" fg:w="22"/><text x="3.9101%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (73 samples, 0.05%)</title><rect x="3.6316%" y="629" width="0.0483%" height="15" fill="rgb(210,31,22)" fg:x="5486" fg:w="73"/><text x="3.8816%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (71 samples, 0.05%)</title><rect x="3.6329%" y="613" width="0.0470%" height="15" fill="rgb(239,54,39)" fg:x="5488" fg:w="71"/><text x="3.8829%" y="623.50"></text></g><g><title>LIR_Assembler::call (81 samples, 0.05%)</title><rect x="3.6290%" y="645" width="0.0536%" height="15" fill="rgb(230,99,41)" fg:x="5482" fg:w="81"/><text x="3.8790%" y="655.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (21 samples, 0.01%)</title><rect x="3.6833%" y="645" width="0.0139%" height="15" fill="rgb(253,106,12)" fg:x="5564" fg:w="21"/><text x="3.9333%" y="655.50"></text></g><g><title>LIR_Assembler::emit_call (135 samples, 0.09%)</title><rect x="3.6104%" y="661" width="0.0894%" height="15" fill="rgb(213,46,41)" fg:x="5454" fg:w="135"/><text x="3.8604%" y="671.50"></text></g><g><title>LIR_Assembler::check_icache (21 samples, 0.01%)</title><rect x="3.7064%" y="645" width="0.0139%" height="15" fill="rgb(215,133,35)" fg:x="5599" fg:w="21"/><text x="3.9564%" y="655.50"></text></g><g><title>C1_MacroAssembler::inline_cache_check (20 samples, 0.01%)</title><rect x="3.7071%" y="629" width="0.0132%" height="15" fill="rgb(213,28,5)" fg:x="5600" fg:w="20"/><text x="3.9571%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op0 (34 samples, 0.02%)</title><rect x="3.6998%" y="661" width="0.0225%" height="15" fill="rgb(215,77,49)" fg:x="5589" fg:w="34"/><text x="3.9498%" y="671.50"></text></g><g><title>LIR_Assembler::mem2reg (26 samples, 0.02%)</title><rect x="3.7442%" y="645" width="0.0172%" height="15" fill="rgb(248,100,22)" fg:x="5656" fg:w="26"/><text x="3.9942%" y="655.50"></text></g><g><title>LIR_Assembler::reg2mem (17 samples, 0.01%)</title><rect x="3.7706%" y="645" width="0.0113%" height="15" fill="rgb(208,67,9)" fg:x="5696" fg:w="17"/><text x="4.0206%" y="655.50"></text></g><g><title>LIR_Assembler::emit_op1 (125 samples, 0.08%)</title><rect x="3.7223%" y="661" width="0.0827%" height="15" fill="rgb(219,133,21)" fg:x="5623" fg:w="125"/><text x="3.9723%" y="671.50"></text></g><g><title>LIR_Assembler::emit_op2 (21 samples, 0.01%)</title><rect x="3.8051%" y="661" width="0.0139%" height="15" fill="rgb(246,46,29)" fg:x="5748" fg:w="21"/><text x="4.0551%" y="671.50"></text></g><g><title>LIR_Assembler::emit_profile_call (54 samples, 0.04%)</title><rect x="3.8196%" y="661" width="0.0357%" height="15" fill="rgb(246,185,52)" fg:x="5770" fg:w="54"/><text x="4.0696%" y="671.50"></text></g><g><title>ciMethodData::bci_to_data (20 samples, 0.01%)</title><rect x="3.8421%" y="645" width="0.0132%" height="15" fill="rgb(252,136,11)" fg:x="5804" fg:w="20"/><text x="4.0921%" y="655.50"></text></g><g><title>LIR_OpAllocObj::emit_code (21 samples, 0.01%)</title><rect x="3.8812%" y="661" width="0.0139%" height="15" fill="rgb(219,138,53)" fg:x="5863" fg:w="21"/><text x="4.1312%" y="671.50"></text></g><g><title>LIR_Assembler::emit_alloc_obj (21 samples, 0.01%)</title><rect x="3.8812%" y="645" width="0.0139%" height="15" fill="rgb(211,51,23)" fg:x="5863" fg:w="21"/><text x="4.1312%" y="655.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (21 samples, 0.01%)</title><rect x="3.9090%" y="629" width="0.0139%" height="15" fill="rgb(247,221,28)" fg:x="5905" fg:w="21"/><text x="4.1590%" y="639.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (36 samples, 0.02%)</title><rect x="3.9070%" y="661" width="0.0238%" height="15" fill="rgb(251,222,45)" fg:x="5902" fg:w="36"/><text x="4.1570%" y="671.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (36 samples, 0.02%)</title><rect x="3.9070%" y="645" width="0.0238%" height="15" fill="rgb(217,162,53)" fg:x="5902" fg:w="36"/><text x="4.1570%" y="655.50"></text></g><g><title>LIR_Assembler::emit_code (569 samples, 0.38%)</title><rect x="3.5595%" y="677" width="0.3767%" height="15" fill="rgb(229,93,14)" fg:x="5377" fg:w="569"/><text x="3.8095%" y="687.50"></text></g><g><title>Assembler::movq (17 samples, 0.01%)</title><rect x="3.9567%" y="629" width="0.0113%" height="15" fill="rgb(209,67,49)" fg:x="5977" fg:w="17"/><text x="4.2067%" y="639.50"></text></g><g><title>Assembler::pusha (23 samples, 0.02%)</title><rect x="3.9533%" y="645" width="0.0152%" height="15" fill="rgb(213,87,29)" fg:x="5972" fg:w="23"/><text x="4.2033%" y="655.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (40 samples, 0.03%)</title><rect x="3.9428%" y="677" width="0.0265%" height="15" fill="rgb(205,151,52)" fg:x="5956" fg:w="40"/><text x="4.1928%" y="687.50"></text></g><g><title>MacroAssembler::stop (32 samples, 0.02%)</title><rect x="3.9480%" y="661" width="0.0212%" height="15" fill="rgb(253,215,39)" fg:x="5964" fg:w="32"/><text x="4.1980%" y="671.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (17 samples, 0.01%)</title><rect x="3.9937%" y="597" width="0.0113%" height="15" fill="rgb(221,220,41)" fg:x="6033" fg:w="17"/><text x="4.2437%" y="607.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (38 samples, 0.03%)</title><rect x="3.9851%" y="613" width="0.0252%" height="15" fill="rgb(218,133,21)" fg:x="6020" fg:w="38"/><text x="4.2351%" y="623.50"></text></g><g><title>DebugInformationRecorder::describe_scope (28 samples, 0.02%)</title><rect x="4.0103%" y="613" width="0.0185%" height="15" fill="rgb(221,193,43)" fg:x="6058" fg:w="28"/><text x="4.2603%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (92 samples, 0.06%)</title><rect x="3.9772%" y="629" width="0.0609%" height="15" fill="rgb(240,128,52)" fg:x="6008" fg:w="92"/><text x="4.2272%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (93 samples, 0.06%)</title><rect x="3.9772%" y="645" width="0.0616%" height="15" fill="rgb(253,114,12)" fg:x="6008" fg:w="93"/><text x="4.2272%" y="655.50"></text></g><g><title>CounterOverflowStub::emit_code (109 samples, 0.07%)</title><rect x="3.9732%" y="661" width="0.0722%" height="15" fill="rgb(215,223,47)" fg:x="6002" fg:w="109"/><text x="4.2232%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (46 samples, 0.03%)</title><rect x="4.0593%" y="645" width="0.0305%" height="15" fill="rgb(248,225,23)" fg:x="6132" fg:w="46"/><text x="4.3093%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (46 samples, 0.03%)</title><rect x="4.0593%" y="629" width="0.0305%" height="15" fill="rgb(250,108,0)" fg:x="6132" fg:w="46"/><text x="4.3093%" y="639.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (59 samples, 0.04%)</title><rect x="4.0533%" y="661" width="0.0391%" height="15" fill="rgb(228,208,7)" fg:x="6123" fg:w="59"/><text x="4.3033%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (20 samples, 0.01%)</title><rect x="4.0970%" y="645" width="0.0132%" height="15" fill="rgb(244,45,10)" fg:x="6189" fg:w="20"/><text x="4.3470%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (20 samples, 0.01%)</title><rect x="4.0970%" y="629" width="0.0132%" height="15" fill="rgb(207,125,25)" fg:x="6189" fg:w="20"/><text x="4.3470%" y="639.50"></text></g><g><title>NewInstanceStub::emit_code (24 samples, 0.02%)</title><rect x="4.0950%" y="661" width="0.0159%" height="15" fill="rgb(210,195,18)" fg:x="6186" fg:w="24"/><text x="4.3450%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (20 samples, 0.01%)</title><rect x="4.1169%" y="645" width="0.0132%" height="15" fill="rgb(249,80,12)" fg:x="6219" fg:w="20"/><text x="4.3669%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (20 samples, 0.01%)</title><rect x="4.1169%" y="629" width="0.0132%" height="15" fill="rgb(221,65,9)" fg:x="6219" fg:w="20"/><text x="4.3669%" y="639.50"></text></g><g><title>PatchingStub::emit_code (31 samples, 0.02%)</title><rect x="4.1122%" y="661" width="0.0205%" height="15" fill="rgb(235,49,36)" fg:x="6212" fg:w="31"/><text x="4.3622%" y="671.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (258 samples, 0.17%)</title><rect x="3.9692%" y="677" width="0.1708%" height="15" fill="rgb(225,32,20)" fg:x="5996" fg:w="258"/><text x="4.2192%" y="687.50"></text></g><g><title>Compilation::emit_code_body (900 samples, 0.60%)</title><rect x="3.5502%" y="693" width="0.5958%" height="15" fill="rgb(215,141,46)" fg:x="5363" fg:w="900"/><text x="3.8002%" y="703.50"></text></g><g><title>LIRGenerator::block_do_prolog (21 samples, 0.01%)</title><rect x="4.1672%" y="645" width="0.0139%" height="15" fill="rgb(250,160,47)" fg:x="6295" fg:w="21"/><text x="4.4172%" y="655.50"></text></g><g><title>GrowableArray<Instruction*>::grow (20 samples, 0.01%)</title><rect x="4.1996%" y="629" width="0.0132%" height="15" fill="rgb(216,222,40)" fg:x="6344" fg:w="20"/><text x="4.4496%" y="639.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (17 samples, 0.01%)</title><rect x="4.2135%" y="613" width="0.0113%" height="15" fill="rgb(234,217,39)" fg:x="6365" fg:w="17"/><text x="4.4635%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter (22 samples, 0.01%)</title><rect x="4.2128%" y="629" width="0.0146%" height="15" fill="rgb(207,178,40)" fg:x="6364" fg:w="22"/><text x="4.4628%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (82 samples, 0.05%)</title><rect x="4.1844%" y="645" width="0.0543%" height="15" fill="rgb(221,136,13)" fg:x="6321" fg:w="82"/><text x="4.4344%" y="655.50"></text></g><g><title>LIRGenerator::move_to_phi (33 samples, 0.02%)</title><rect x="4.2658%" y="613" width="0.0218%" height="15" fill="rgb(249,199,10)" fg:x="6444" fg:w="33"/><text x="4.5158%" y="623.50"></text></g><g><title>PhiResolver::create_node (28 samples, 0.02%)</title><rect x="4.2691%" y="597" width="0.0185%" height="15" fill="rgb(249,222,13)" fg:x="6449" fg:w="28"/><text x="4.5191%" y="607.50"></text></g><g><title>GrowableArray<ResolveNode*>::grow (32 samples, 0.02%)</title><rect x="4.3380%" y="597" width="0.0212%" height="15" fill="rgb(244,185,38)" fg:x="6553" fg:w="32"/><text x="4.5880%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (157 samples, 0.10%)</title><rect x="4.2559%" y="629" width="0.1039%" height="15" fill="rgb(236,202,9)" fg:x="6429" fg:w="157"/><text x="4.5059%" y="639.50"></text></g><g><title>PhiResolverState::reset (107 samples, 0.07%)</title><rect x="4.2890%" y="613" width="0.0708%" height="15" fill="rgb(250,229,37)" fg:x="6479" fg:w="107"/><text x="4.5390%" y="623.50"></text></g><g><title>LIRGenerator::do_Goto (183 samples, 0.12%)</title><rect x="4.2426%" y="645" width="0.1211%" height="15" fill="rgb(206,174,23)" fg:x="6409" fg:w="183"/><text x="4.4926%" y="655.50"></text></g><g><title>LIRGenerator::profile_branch (18 samples, 0.01%)</title><rect x="4.3717%" y="629" width="0.0119%" height="15" fill="rgb(211,33,43)" fg:x="6604" fg:w="18"/><text x="4.6217%" y="639.50"></text></g><g><title>LIRGenerator::do_If (42 samples, 0.03%)</title><rect x="4.3638%" y="645" width="0.0278%" height="15" fill="rgb(245,58,50)" fg:x="6592" fg:w="42"/><text x="4.6138%" y="655.50"></text></g><g><title>FrameMap::java_calling_convention (19 samples, 0.01%)</title><rect x="4.3989%" y="629" width="0.0126%" height="15" fill="rgb(244,68,36)" fg:x="6645" fg:w="19"/><text x="4.6489%" y="639.50"></text></g><g><title>MethodLiveness::get_liveness_at (36 samples, 0.02%)</title><rect x="4.4392%" y="597" width="0.0238%" height="15" fill="rgb(232,229,15)" fg:x="6706" fg:w="36"/><text x="4.6892%" y="607.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (26 samples, 0.02%)</title><rect x="4.4459%" y="581" width="0.0172%" height="15" fill="rgb(254,30,23)" fg:x="6716" fg:w="26"/><text x="4.6959%" y="591.50"></text></g><g><title>LIRGenerator::state_for (51 samples, 0.03%)</title><rect x="4.4306%" y="629" width="0.0338%" height="15" fill="rgb(235,160,14)" fg:x="6693" fg:w="51"/><text x="4.6806%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (41 samples, 0.03%)</title><rect x="4.4373%" y="613" width="0.0271%" height="15" fill="rgb(212,155,44)" fg:x="6703" fg:w="41"/><text x="4.6873%" y="623.50"></text></g><g><title>LIRGenerator::do_Invoke (121 samples, 0.08%)</title><rect x="4.3936%" y="645" width="0.0801%" height="15" fill="rgb(226,2,50)" fg:x="6637" fg:w="121"/><text x="4.6436%" y="655.50"></text></g><g><title>LIRGenerator::do_LoadField (31 samples, 0.02%)</title><rect x="4.4737%" y="645" width="0.0205%" height="15" fill="rgb(234,177,6)" fg:x="6758" fg:w="31"/><text x="4.7237%" y="655.50"></text></g><g><title>LIRGenerator::do_NewInstance (35 samples, 0.02%)</title><rect x="4.5001%" y="645" width="0.0232%" height="15" fill="rgb(217,24,9)" fg:x="6798" fg:w="35"/><text x="4.7501%" y="655.50"></text></g><g><title>LIRGenerator::state_for (21 samples, 0.01%)</title><rect x="4.5094%" y="629" width="0.0139%" height="15" fill="rgb(220,13,46)" fg:x="6812" fg:w="21"/><text x="4.7594%" y="639.50"></text></g><g><title>LIRGenerator::do_ProfileCall (19 samples, 0.01%)</title><rect x="4.5306%" y="645" width="0.0126%" height="15" fill="rgb(239,221,27)" fg:x="6844" fg:w="19"/><text x="4.7806%" y="655.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (25 samples, 0.02%)</title><rect x="4.5465%" y="629" width="0.0165%" height="15" fill="rgb(222,198,25)" fg:x="6868" fg:w="25"/><text x="4.7965%" y="639.50"></text></g><g><title>MethodLiveness::get_liveness_at (32 samples, 0.02%)</title><rect x="4.5736%" y="597" width="0.0212%" height="15" fill="rgb(211,99,13)" fg:x="6909" fg:w="32"/><text x="4.8236%" y="607.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (21 samples, 0.01%)</title><rect x="4.5809%" y="581" width="0.0139%" height="15" fill="rgb(232,111,31)" fg:x="6920" fg:w="21"/><text x="4.8309%" y="591.50"></text></g><g><title>LIRGenerator::state_for (49 samples, 0.03%)</title><rect x="4.5630%" y="629" width="0.0324%" height="15" fill="rgb(245,82,37)" fg:x="6893" fg:w="49"/><text x="4.8130%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (36 samples, 0.02%)</title><rect x="4.5716%" y="613" width="0.0238%" height="15" fill="rgb(227,149,46)" fg:x="6906" fg:w="36"/><text x="4.8216%" y="623.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (83 samples, 0.05%)</title><rect x="4.5432%" y="645" width="0.0549%" height="15" fill="rgb(218,36,50)" fg:x="6863" fg:w="83"/><text x="4.7932%" y="655.50"></text></g><g><title>LIRGenerator::access_store_at (22 samples, 0.01%)</title><rect x="4.6061%" y="629" width="0.0146%" height="15" fill="rgb(226,80,48)" fg:x="6958" fg:w="22"/><text x="4.8561%" y="639.50"></text></g><g><title>LIRGenerator::do_StoreField (29 samples, 0.02%)</title><rect x="4.6047%" y="645" width="0.0192%" height="15" fill="rgb(238,224,15)" fg:x="6956" fg:w="29"/><text x="4.8547%" y="655.50"></text></g><g><title>LIRGenerator::block_do (733 samples, 0.49%)</title><rect x="4.1533%" y="661" width="0.4852%" height="15" fill="rgb(241,136,10)" fg:x="6274" fg:w="733"/><text x="4.4033%" y="671.50"></text></g><g><title>BlockList::iterate_forward (737 samples, 0.49%)</title><rect x="4.1519%" y="677" width="0.4879%" height="15" fill="rgb(208,32,45)" fg:x="6272" fg:w="737"/><text x="4.4019%" y="687.50"></text></g><g><title>ControlFlowOptimizer::optimize (27 samples, 0.02%)</title><rect x="4.6398%" y="677" width="0.0179%" height="15" fill="rgb(207,135,9)" fg:x="7009" fg:w="27"/><text x="4.8898%" y="687.50"></text></g><g><title>IntervalWalker::walk_to (110 samples, 0.07%)</title><rect x="4.7199%" y="629" width="0.0728%" height="15" fill="rgb(206,86,44)" fg:x="7130" fg:w="110"/><text x="4.9699%" y="639.50"></text></g><g><title>IntervalWalker::append_to_unhandled (25 samples, 0.02%)</title><rect x="4.8457%" y="597" width="0.0165%" height="15" fill="rgb(245,177,15)" fg:x="7320" fg:w="25"/><text x="5.0957%" y="607.50"></text></g><g><title>LinearScanWalker::find_free_reg (82 samples, 0.05%)</title><rect x="4.8622%" y="597" width="0.0543%" height="15" fill="rgb(206,64,50)" fg:x="7345" fg:w="82"/><text x="5.1122%" y="607.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_any (26 samples, 0.02%)</title><rect x="4.9165%" y="597" width="0.0172%" height="15" fill="rgb(234,36,40)" fg:x="7427" fg:w="26"/><text x="5.1665%" y="607.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (140 samples, 0.09%)</title><rect x="4.9337%" y="597" width="0.0927%" height="15" fill="rgb(213,64,8)" fg:x="7453" fg:w="140"/><text x="5.1837%" y="607.50"></text></g><g><title>Range::intersects_at (24 samples, 0.02%)</title><rect x="5.0105%" y="581" width="0.0159%" height="15" fill="rgb(210,75,36)" fg:x="7569" fg:w="24"/><text x="5.2605%" y="591.50"></text></g><g><title>Interval::Interval (16 samples, 0.01%)</title><rect x="5.0555%" y="549" width="0.0106%" height="15" fill="rgb(229,88,21)" fg:x="7637" fg:w="16"/><text x="5.3055%" y="559.50"></text></g><g><title>Interval::new_split_child (32 samples, 0.02%)</title><rect x="5.0489%" y="565" width="0.0212%" height="15" fill="rgb(252,204,47)" fg:x="7627" fg:w="32"/><text x="5.2989%" y="575.50"></text></g><g><title>Interval::split (56 samples, 0.04%)</title><rect x="5.0383%" y="581" width="0.0371%" height="15" fill="rgb(208,77,27)" fg:x="7611" fg:w="56"/><text x="5.2883%" y="591.50"></text></g><g><title>LinearScanWalker::split_before_usage (79 samples, 0.05%)</title><rect x="5.0264%" y="597" width="0.0523%" height="15" fill="rgb(221,76,26)" fg:x="7593" fg:w="79"/><text x="5.2764%" y="607.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (402 samples, 0.27%)</title><rect x="4.8139%" y="613" width="0.2661%" height="15" fill="rgb(225,139,18)" fg:x="7272" fg:w="402"/><text x="5.0639%" y="623.50"></text></g><g><title>IntervalWalker::append_to_unhandled (25 samples, 0.02%)</title><rect x="5.1012%" y="581" width="0.0165%" height="15" fill="rgb(230,137,11)" fg:x="7706" fg:w="25"/><text x="5.3512%" y="591.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (57 samples, 0.04%)</title><rect x="5.0992%" y="597" width="0.0377%" height="15" fill="rgb(212,28,1)" fg:x="7703" fg:w="57"/><text x="5.3492%" y="607.50"></text></g><g><title>LinearScanWalker::split_before_usage (29 samples, 0.02%)</title><rect x="5.1178%" y="581" width="0.0192%" height="15" fill="rgb(248,164,17)" fg:x="7731" fg:w="29"/><text x="5.3678%" y="591.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (104 samples, 0.07%)</title><rect x="5.0800%" y="613" width="0.0688%" height="15" fill="rgb(222,171,42)" fg:x="7674" fg:w="104"/><text x="5.3300%" y="623.50"></text></g><g><title>LinearScanWalker::split_for_spilling (18 samples, 0.01%)</title><rect x="5.1370%" y="597" width="0.0119%" height="15" fill="rgb(243,84,45)" fg:x="7760" fg:w="18"/><text x="5.3870%" y="607.50"></text></g><g><title>LinearScanWalker::insert_move (22 samples, 0.01%)</title><rect x="5.1668%" y="613" width="0.0146%" height="15" fill="rgb(252,49,23)" fg:x="7805" fg:w="22"/><text x="5.4168%" y="623.50"></text></g><g><title>LinearScanWalker::activate_current (595 samples, 0.39%)</title><rect x="4.7927%" y="629" width="0.3939%" height="15" fill="rgb(215,19,7)" fg:x="7240" fg:w="595"/><text x="5.0427%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (764 samples, 0.51%)</title><rect x="4.6815%" y="645" width="0.5058%" height="15" fill="rgb(238,81,41)" fg:x="7072" fg:w="764"/><text x="4.9315%" y="655.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (58 samples, 0.04%)</title><rect x="5.1879%" y="645" width="0.0384%" height="15" fill="rgb(210,199,37)" fg:x="7837" fg:w="58"/><text x="5.4379%" y="655.50"></text></g><g><title>resource_allocate_bytes (36 samples, 0.02%)</title><rect x="5.2025%" y="629" width="0.0238%" height="15" fill="rgb(244,192,49)" fg:x="7859" fg:w="36"/><text x="5.4525%" y="639.50"></text></g><g><title>LinearScan::allocate_registers (837 samples, 0.55%)</title><rect x="4.6749%" y="661" width="0.5541%" height="15" fill="rgb(226,211,11)" fg:x="7062" fg:w="837"/><text x="4.9249%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (68 samples, 0.05%)</title><rect x="5.3243%" y="629" width="0.0450%" height="15" fill="rgb(236,162,54)" fg:x="8043" fg:w="68"/><text x="5.5743%" y="639.50"></text></g><g><title>LIR_OpVisitState::append (25 samples, 0.02%)</title><rect x="5.3528%" y="613" width="0.0165%" height="15" fill="rgb(220,229,9)" fg:x="8086" fg:w="25"/><text x="5.6028%" y="623.50"></text></g><g><title>Interval::split_child_at_op_id (18 samples, 0.01%)</title><rect x="5.3951%" y="613" width="0.0119%" height="15" fill="rgb(250,87,22)" fg:x="8150" fg:w="18"/><text x="5.6451%" y="623.50"></text></g><g><title>LinearScan::color_lir_opr (66 samples, 0.04%)</title><rect x="5.3700%" y="629" width="0.0437%" height="15" fill="rgb(239,43,17)" fg:x="8112" fg:w="66"/><text x="5.6200%" y="639.50"></text></g><g><title>LinearScan::append_scope_value (20 samples, 0.01%)</title><rect x="5.4256%" y="613" width="0.0132%" height="15" fill="rgb(231,177,25)" fg:x="8196" fg:w="20"/><text x="5.6756%" y="623.50"></text></g><g><title>LinearScan::append_scope_value (18 samples, 0.01%)</title><rect x="5.4521%" y="597" width="0.0119%" height="15" fill="rgb(219,179,1)" fg:x="8236" fg:w="18"/><text x="5.7021%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (17 samples, 0.01%)</title><rect x="5.4726%" y="581" width="0.0113%" height="15" fill="rgb(238,219,53)" fg:x="8267" fg:w="17"/><text x="5.7226%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (29 samples, 0.02%)</title><rect x="5.4673%" y="597" width="0.0192%" height="15" fill="rgb(232,167,36)" fg:x="8259" fg:w="29"/><text x="5.7173%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (69 samples, 0.05%)</title><rect x="5.4454%" y="613" width="0.0457%" height="15" fill="rgb(244,19,51)" fg:x="8226" fg:w="69"/><text x="5.6954%" y="623.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (128 samples, 0.08%)</title><rect x="5.4137%" y="629" width="0.0847%" height="15" fill="rgb(224,6,22)" fg:x="8178" fg:w="128"/><text x="5.6637%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (77 samples, 0.05%)</title><rect x="5.5229%" y="597" width="0.0510%" height="15" fill="rgb(224,145,5)" fg:x="8343" fg:w="77"/><text x="5.7729%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (133 samples, 0.09%)</title><rect x="5.5077%" y="613" width="0.0880%" height="15" fill="rgb(234,130,49)" fg:x="8320" fg:w="133"/><text x="5.7577%" y="623.50"></text></g><g><title>LinearScan::compute_oop_map (148 samples, 0.10%)</title><rect x="5.4984%" y="629" width="0.0980%" height="15" fill="rgb(254,6,2)" fg:x="8306" fg:w="148"/><text x="5.7484%" y="639.50"></text></g><g><title>LinearScan::assign_reg_num (554 samples, 0.37%)</title><rect x="5.2303%" y="645" width="0.3667%" height="15" fill="rgb(208,96,46)" fg:x="7901" fg:w="554"/><text x="5.4803%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (582 samples, 0.39%)</title><rect x="5.2290%" y="661" width="0.3853%" height="15" fill="rgb(239,3,39)" fg:x="7899" fg:w="582"/><text x="5.4790%" y="671.50"></text></g><g><title>LinearScan::init_compute_oop_maps (22 samples, 0.01%)</title><rect x="5.5997%" y="645" width="0.0146%" height="15" fill="rgb(233,210,1)" fg:x="8459" fg:w="22"/><text x="5.8497%" y="655.50"></text></g><g><title>BitMap::get_next_one_offset (30 samples, 0.02%)</title><rect x="5.7294%" y="645" width="0.0199%" height="15" fill="rgb(244,137,37)" fg:x="8655" fg:w="30"/><text x="5.9794%" y="655.50"></text></g><g><title>Interval::add_use_pos (23 samples, 0.02%)</title><rect x="5.7586%" y="645" width="0.0152%" height="15" fill="rgb(240,136,2)" fg:x="8699" fg:w="23"/><text x="6.0086%" y="655.50"></text></g><g><title>LIR_OpVisitState::append (20 samples, 0.01%)</title><rect x="5.8075%" y="629" width="0.0132%" height="15" fill="rgb(239,18,37)" fg:x="8773" fg:w="20"/><text x="6.0575%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (61 samples, 0.04%)</title><rect x="5.7811%" y="645" width="0.0404%" height="15" fill="rgb(218,185,22)" fg:x="8733" fg:w="61"/><text x="6.0311%" y="655.50"></text></g><g><title>LinearScan::add_def (51 samples, 0.03%)</title><rect x="5.8215%" y="645" width="0.0338%" height="15" fill="rgb(225,218,4)" fg:x="8794" fg:w="51"/><text x="6.0715%" y="655.50"></text></g><g><title>LinearScan::add_register_hints (19 samples, 0.01%)</title><rect x="5.8552%" y="645" width="0.0126%" height="15" fill="rgb(230,182,32)" fg:x="8845" fg:w="19"/><text x="6.1052%" y="655.50"></text></g><g><title>Interval::add_range (35 samples, 0.02%)</title><rect x="5.8698%" y="629" width="0.0232%" height="15" fill="rgb(242,56,43)" fg:x="8867" fg:w="35"/><text x="6.1198%" y="639.50"></text></g><g><title>Interval::Interval (31 samples, 0.02%)</title><rect x="5.8949%" y="613" width="0.0205%" height="15" fill="rgb(233,99,24)" fg:x="8905" fg:w="31"/><text x="6.1449%" y="623.50"></text></g><g><title>LinearScan::create_interval (39 samples, 0.03%)</title><rect x="5.8929%" y="629" width="0.0258%" height="15" fill="rgb(234,209,42)" fg:x="8902" fg:w="39"/><text x="6.1429%" y="639.50"></text></g><g><title>LinearScan::add_temp (78 samples, 0.05%)</title><rect x="5.8678%" y="645" width="0.0516%" height="15" fill="rgb(227,7,12)" fg:x="8864" fg:w="78"/><text x="6.1178%" y="655.50"></text></g><g><title>Interval::add_range (30 samples, 0.02%)</title><rect x="5.9525%" y="629" width="0.0199%" height="15" fill="rgb(245,203,43)" fg:x="8992" fg:w="30"/><text x="6.2025%" y="639.50"></text></g><g><title>Interval::Interval (58 samples, 0.04%)</title><rect x="5.9810%" y="613" width="0.0384%" height="15" fill="rgb(238,205,33)" fg:x="9035" fg:w="58"/><text x="6.2310%" y="623.50"></text></g><g><title>resource_allocate_bytes (29 samples, 0.02%)</title><rect x="6.0002%" y="597" width="0.0192%" height="15" fill="rgb(231,56,7)" fg:x="9064" fg:w="29"/><text x="6.2502%" y="607.50"></text></g><g><title>LinearScan::create_interval (81 samples, 0.05%)</title><rect x="5.9724%" y="629" width="0.0536%" height="15" fill="rgb(244,186,29)" fg:x="9022" fg:w="81"/><text x="6.2224%" y="639.50"></text></g><g><title>LinearScan::add_use (162 samples, 0.11%)</title><rect x="5.9194%" y="645" width="0.1072%" height="15" fill="rgb(234,111,31)" fg:x="8942" fg:w="162"/><text x="6.1694%" y="655.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.02%)</title><rect x="6.0293%" y="645" width="0.0159%" height="15" fill="rgb(241,149,10)" fg:x="9108" fg:w="24"/><text x="6.2793%" y="655.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (25 samples, 0.02%)</title><rect x="6.0452%" y="645" width="0.0165%" height="15" fill="rgb(249,206,44)" fg:x="9132" fg:w="25"/><text x="6.2952%" y="655.50"></text></g><g><title>LinearScan::build_intervals (682 samples, 0.45%)</title><rect x="5.6143%" y="661" width="0.4515%" height="15" fill="rgb(251,153,30)" fg:x="8481" fg:w="682"/><text x="5.8643%" y="671.50"></text></g><g><title>LinearScan::compute_global_live_sets (52 samples, 0.03%)</title><rect x="6.0657%" y="661" width="0.0344%" height="15" fill="rgb(239,152,38)" fg:x="9163" fg:w="52"/><text x="6.3157%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (79 samples, 0.05%)</title><rect x="6.1650%" y="645" width="0.0523%" height="15" fill="rgb(249,139,47)" fg:x="9313" fg:w="79"/><text x="6.4150%" y="655.50"></text></g><g><title>LIR_OpVisitState::append (21 samples, 0.01%)</title><rect x="6.2034%" y="629" width="0.0139%" height="15" fill="rgb(244,64,35)" fg:x="9371" fg:w="21"/><text x="6.4534%" y="639.50"></text></g><g><title>LinearScan::compute_local_live_sets (219 samples, 0.14%)</title><rect x="6.1001%" y="661" width="0.1450%" height="15" fill="rgb(216,46,15)" fg:x="9215" fg:w="219"/><text x="6.3501%" y="671.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (28 samples, 0.02%)</title><rect x="6.2266%" y="645" width="0.0185%" height="15" fill="rgb(250,74,19)" fg:x="9406" fg:w="28"/><text x="6.4766%" y="655.50"></text></g><g><title>LinearScan::eliminate_spill_moves (57 samples, 0.04%)</title><rect x="6.2451%" y="661" width="0.0377%" height="15" fill="rgb(249,42,33)" fg:x="9434" fg:w="57"/><text x="6.4951%" y="671.50"></text></g><g><title>LinearScan::number_instructions (36 samples, 0.02%)</title><rect x="6.2829%" y="661" width="0.0238%" height="15" fill="rgb(242,149,17)" fg:x="9491" fg:w="36"/><text x="6.5329%" y="671.50"></text></g><g><title>BitMap::get_next_one_offset (19 samples, 0.01%)</title><rect x="6.3345%" y="629" width="0.0126%" height="15" fill="rgb(244,29,21)" fg:x="9569" fg:w="19"/><text x="6.5845%" y="639.50"></text></g><g><title>Interval::split_child_at_op_id (32 samples, 0.02%)</title><rect x="6.3471%" y="629" width="0.0212%" height="15" fill="rgb(220,130,37)" fg:x="9588" fg:w="32"/><text x="6.5971%" y="639.50"></text></g><g><title>LinearScan::resolve_collect_mappings (76 samples, 0.05%)</title><rect x="6.3193%" y="645" width="0.0503%" height="15" fill="rgb(211,67,2)" fg:x="9546" fg:w="76"/><text x="6.5693%" y="655.50"></text></g><g><title>LinearScan::resolve_data_flow (109 samples, 0.07%)</title><rect x="6.3073%" y="661" width="0.0722%" height="15" fill="rgb(235,68,52)" fg:x="9528" fg:w="109"/><text x="6.5573%" y="671.50"></text></g><g><title>LinearScan::resolve_exception_handlers (38 samples, 0.03%)</title><rect x="6.3795%" y="661" width="0.0252%" height="15" fill="rgb(246,142,3)" fg:x="9637" fg:w="38"/><text x="6.6295%" y="671.50"></text></g><g><title>__GI___qsort_r (23 samples, 0.02%)</title><rect x="6.4113%" y="645" width="0.0152%" height="15" fill="rgb(241,25,7)" fg:x="9685" fg:w="23"/><text x="6.6613%" y="655.50"></text></g><g><title>msort_with_tmp (21 samples, 0.01%)</title><rect x="6.4126%" y="629" width="0.0139%" height="15" fill="rgb(242,119,39)" fg:x="9687" fg:w="21"/><text x="6.6626%" y="639.50"></text></g><g><title>msort_with_tmp (20 samples, 0.01%)</title><rect x="6.4133%" y="613" width="0.0132%" height="15" fill="rgb(241,98,45)" fg:x="9688" fg:w="20"/><text x="6.6633%" y="623.50"></text></g><g><title>msort_with_tmp (18 samples, 0.01%)</title><rect x="6.4146%" y="597" width="0.0119%" height="15" fill="rgb(254,28,30)" fg:x="9690" fg:w="18"/><text x="6.6646%" y="607.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="6.4159%" y="581" width="0.0106%" height="15" fill="rgb(241,142,54)" fg:x="9692" fg:w="16"/><text x="6.6659%" y="591.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (35 samples, 0.02%)</title><rect x="6.4047%" y="661" width="0.0232%" height="15" fill="rgb(222,85,15)" fg:x="9675" fg:w="35"/><text x="6.6547%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (52 samples, 0.03%)</title><rect x="6.4278%" y="661" width="0.0344%" height="15" fill="rgb(210,85,47)" fg:x="9710" fg:w="52"/><text x="6.6778%" y="671.50"></text></g><g><title>LinearScan::do_linear_scan (2,720 samples, 1.80%)</title><rect x="4.6623%" y="677" width="1.8006%" height="15" fill="rgb(224,206,25)" fg:x="7043" fg:w="2720"/><text x="4.9123%" y="687.50">L..</text></g><g><title>Compilation::emit_lir (3,509 samples, 2.32%)</title><rect x="4.1460%" y="693" width="2.3229%" height="15" fill="rgb(243,201,19)" fg:x="6263" fg:w="3509"/><text x="4.3960%" y="703.50">C..</text></g><g><title>FrameMap::FrameMap (18 samples, 0.01%)</title><rect x="6.4689%" y="693" width="0.0119%" height="15" fill="rgb(236,59,4)" fg:x="9772" fg:w="18"/><text x="6.7189%" y="703.50"></text></g><g><title>Metaspace::allocate (17 samples, 0.01%)</title><rect x="6.4927%" y="629" width="0.0113%" height="15" fill="rgb(254,179,45)" fg:x="9808" fg:w="17"/><text x="6.7427%" y="639.50"></text></g><g><title>MethodData::initialize (23 samples, 0.02%)</title><rect x="6.5106%" y="629" width="0.0152%" height="15" fill="rgb(226,14,10)" fg:x="9835" fg:w="23"/><text x="6.7606%" y="639.50"></text></g><g><title>MethodData::allocate (51 samples, 0.03%)</title><rect x="6.4927%" y="645" width="0.0338%" height="15" fill="rgb(244,27,41)" fg:x="9808" fg:w="51"/><text x="6.7427%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (54 samples, 0.04%)</title><rect x="6.4914%" y="661" width="0.0357%" height="15" fill="rgb(235,35,32)" fg:x="9806" fg:w="54"/><text x="6.7414%" y="671.50"></text></g><g><title>ciMethodData::load_data (37 samples, 0.02%)</title><rect x="6.5271%" y="661" width="0.0245%" height="15" fill="rgb(218,68,31)" fg:x="9860" fg:w="37"/><text x="6.7771%" y="671.50"></text></g><g><title>Compilation::compile_java_method (8,292 samples, 5.49%)</title><rect x="1.0671%" y="709" width="5.4891%" height="15" fill="rgb(207,120,37)" fg:x="1612" fg:w="8292"/><text x="1.3171%" y="719.50">Compila..</text></g><g><title>ciMethod::ensure_method_data (104 samples, 0.07%)</title><rect x="6.4874%" y="693" width="0.0688%" height="15" fill="rgb(227,98,0)" fg:x="9800" fg:w="104"/><text x="6.7374%" y="703.50"></text></g><g><title>ciMethod::ensure_method_data (99 samples, 0.07%)</title><rect x="6.4907%" y="677" width="0.0655%" height="15" fill="rgb(207,7,3)" fg:x="9805" fg:w="99"/><text x="6.7407%" y="687.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (21 samples, 0.01%)</title><rect x="6.5569%" y="693" width="0.0139%" height="15" fill="rgb(206,98,19)" fg:x="9905" fg:w="21"/><text x="6.8069%" y="703.50"></text></g><g><title>Dependencies::initialize (17 samples, 0.01%)</title><rect x="6.5708%" y="693" width="0.0113%" height="15" fill="rgb(217,5,26)" fg:x="9926" fg:w="17"/><text x="6.8208%" y="703.50"></text></g><g><title>Compilation::initialize (43 samples, 0.03%)</title><rect x="6.5569%" y="709" width="0.0285%" height="15" fill="rgb(235,190,38)" fg:x="9905" fg:w="43"/><text x="6.8069%" y="719.50"></text></g><g><title>CodeBuffer::finalize_oop_references (67 samples, 0.04%)</title><rect x="6.6191%" y="677" width="0.0444%" height="15" fill="rgb(247,86,24)" fg:x="9999" fg:w="67"/><text x="6.8691%" y="687.50"></text></g><g><title>CodeHeap::allocate (17 samples, 0.01%)</title><rect x="6.6635%" y="661" width="0.0113%" height="15" fill="rgb(205,101,16)" fg:x="10066" fg:w="17"/><text x="6.9135%" y="671.50"></text></g><g><title>CodeCache::allocate (34 samples, 0.02%)</title><rect x="6.6635%" y="677" width="0.0225%" height="15" fill="rgb(246,168,33)" fg:x="10066" fg:w="34"/><text x="6.9135%" y="687.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (31 samples, 0.02%)</title><rect x="6.7264%" y="629" width="0.0205%" height="15" fill="rgb(231,114,1)" fg:x="10161" fg:w="31"/><text x="6.9764%" y="639.50"></text></g><g><title>Relocation::pd_call_destination (29 samples, 0.02%)</title><rect x="6.7277%" y="613" width="0.0192%" height="15" fill="rgb(207,184,53)" fg:x="10163" fg:w="29"/><text x="6.9777%" y="623.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="6.7668%" y="581" width="0.0152%" height="15" fill="rgb(224,95,51)" fg:x="10222" fg:w="23"/><text x="7.0168%" y="591.50"></text></g><g><title>handle_mm_fault (20 samples, 0.01%)</title><rect x="6.7687%" y="565" width="0.0132%" height="15" fill="rgb(212,188,45)" fg:x="10225" fg:w="20"/><text x="7.0187%" y="575.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="6.7668%" y="613" width="0.0159%" height="15" fill="rgb(223,154,38)" fg:x="10222" fg:w="24"/><text x="7.0168%" y="623.50"></text></g><g><title>exc_page_fault (24 samples, 0.02%)</title><rect x="6.7668%" y="597" width="0.0159%" height="15" fill="rgb(251,22,52)" fg:x="10222" fg:w="24"/><text x="7.0168%" y="607.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (33 samples, 0.02%)</title><rect x="6.7615%" y="629" width="0.0218%" height="15" fill="rgb(229,209,22)" fg:x="10214" fg:w="33"/><text x="7.0115%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (107 samples, 0.07%)</title><rect x="6.7138%" y="645" width="0.0708%" height="15" fill="rgb(234,138,34)" fg:x="10142" fg:w="107"/><text x="6.9638%" y="655.50"></text></g><g><title>CodeBuffer::copy_code_to (118 samples, 0.08%)</title><rect x="6.7105%" y="661" width="0.0781%" height="15" fill="rgb(212,95,11)" fg:x="10137" fg:w="118"/><text x="6.9605%" y="671.50"></text></g><g><title>__GI___libc_malloc (16 samples, 0.01%)</title><rect x="6.8025%" y="581" width="0.0106%" height="15" fill="rgb(240,179,47)" fg:x="10276" fg:w="16"/><text x="7.0525%" y="591.50"></text></g><g><title>AllocateHeap (20 samples, 0.01%)</title><rect x="6.8005%" y="613" width="0.0132%" height="15" fill="rgb(240,163,11)" fg:x="10273" fg:w="20"/><text x="7.0505%" y="623.50"></text></g><g><title>os::malloc (20 samples, 0.01%)</title><rect x="6.8005%" y="597" width="0.0132%" height="15" fill="rgb(236,37,12)" fg:x="10273" fg:w="20"/><text x="7.0505%" y="607.50"></text></g><g><title>CodeBlob::CodeBlob (37 samples, 0.02%)</title><rect x="6.7946%" y="645" width="0.0245%" height="15" fill="rgb(232,164,16)" fg:x="10264" fg:w="37"/><text x="7.0446%" y="655.50"></text></g><g><title>ImmutableOopMapSet::build_from (37 samples, 0.02%)</title><rect x="6.7946%" y="629" width="0.0245%" height="15" fill="rgb(244,205,15)" fg:x="10264" fg:w="37"/><text x="7.0446%" y="639.50"></text></g><g><title>CompiledMethod::CompiledMethod (45 samples, 0.03%)</title><rect x="6.7946%" y="661" width="0.0298%" height="15" fill="rgb(223,117,47)" fg:x="10264" fg:w="45"/><text x="7.0446%" y="671.50"></text></g><g><title>G1CodeRootSet::add (20 samples, 0.01%)</title><rect x="6.8349%" y="629" width="0.0132%" height="15" fill="rgb(244,107,35)" fg:x="10325" fg:w="20"/><text x="7.0849%" y="639.50"></text></g><g><title>G1CollectedHeap::register_nmethod (39 samples, 0.03%)</title><rect x="6.8270%" y="661" width="0.0258%" height="15" fill="rgb(205,140,8)" fg:x="10313" fg:w="39"/><text x="7.0770%" y="671.50"></text></g><g><title>nmethod::oops_do (39 samples, 0.03%)</title><rect x="6.8270%" y="645" width="0.0258%" height="15" fill="rgb(228,84,46)" fg:x="10313" fg:w="39"/><text x="7.0770%" y="655.50"></text></g><g><title>nmethod::fix_oop_relocations (19 samples, 0.01%)</title><rect x="6.8654%" y="661" width="0.0126%" height="15" fill="rgb(254,188,9)" fg:x="10371" fg:w="19"/><text x="7.1154%" y="671.50"></text></g><g><title>nmethod::nmethod (257 samples, 0.17%)</title><rect x="6.7085%" y="677" width="0.1701%" height="15" fill="rgb(206,112,54)" fg:x="10134" fg:w="257"/><text x="6.9585%" y="687.50"></text></g><g><title>nmethod::new_nmethod (400 samples, 0.26%)</title><rect x="6.6145%" y="693" width="0.2648%" height="15" fill="rgb(216,84,49)" fg:x="9992" fg:w="400"/><text x="6.8645%" y="703.50"></text></g><g><title>ciEnv::register_method (445 samples, 0.29%)</title><rect x="6.5854%" y="709" width="0.2946%" height="15" fill="rgb(214,194,35)" fg:x="9948" fg:w="445"/><text x="6.8354%" y="719.50"></text></g><g><title>Compilation::compile_method (8,785 samples, 5.82%)</title><rect x="1.0651%" y="725" width="5.8155%" height="15" fill="rgb(249,28,3)" fg:x="1609" fg:w="8785"/><text x="1.3151%" y="735.50">Compila..</text></g><g><title>Compilation::Compilation (8,799 samples, 5.82%)</title><rect x="1.0618%" y="741" width="5.8248%" height="15" fill="rgb(222,56,52)" fg:x="1604" fg:w="8799"/><text x="1.3118%" y="751.50">Compila..</text></g><g><title>Compiler::compile_method (8,820 samples, 5.84%)</title><rect x="1.0492%" y="757" width="5.8387%" height="15" fill="rgb(245,217,50)" fg:x="1585" fg:w="8820"/><text x="1.2992%" y="767.50">Compile..</text></g><g><title>ciObjectFactory::ciObjectFactory (20 samples, 0.01%)</title><rect x="6.9203%" y="741" width="0.0132%" height="15" fill="rgb(213,201,24)" fg:x="10454" fg:w="20"/><text x="7.1703%" y="751.50"></text></g><g><title>ciObjectFactory::get (48 samples, 0.03%)</title><rect x="6.9336%" y="741" width="0.0318%" height="15" fill="rgb(248,116,28)" fg:x="10474" fg:w="48"/><text x="7.1836%" y="751.50"></text></g><g><title>ciObjectFactory::get_metadata (29 samples, 0.02%)</title><rect x="6.9462%" y="725" width="0.0192%" height="15" fill="rgb(219,72,43)" fg:x="10493" fg:w="29"/><text x="7.1962%" y="735.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.02%)</title><rect x="6.9488%" y="709" width="0.0165%" height="15" fill="rgb(209,138,14)" fg:x="10497" fg:w="25"/><text x="7.1988%" y="719.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (22 samples, 0.01%)</title><rect x="6.9508%" y="693" width="0.0146%" height="15" fill="rgb(222,18,33)" fg:x="10500" fg:w="22"/><text x="7.2008%" y="703.50"></text></g><g><title>ciEnv::ciEnv (84 samples, 0.06%)</title><rect x="6.9117%" y="757" width="0.0556%" height="15" fill="rgb(213,199,7)" fg:x="10441" fg:w="84"/><text x="7.1617%" y="767.50"></text></g><g><title>SignatureStream::as_symbol (25 samples, 0.02%)</title><rect x="6.9786%" y="677" width="0.0165%" height="15" fill="rgb(250,110,10)" fg:x="10542" fg:w="25"/><text x="7.2286%" y="687.50"></text></g><g><title>SymbolTable::lookup (25 samples, 0.02%)</title><rect x="6.9786%" y="661" width="0.0165%" height="15" fill="rgb(248,123,6)" fg:x="10542" fg:w="25"/><text x="7.2286%" y="671.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (16 samples, 0.01%)</title><rect x="7.0037%" y="661" width="0.0106%" height="15" fill="rgb(206,91,31)" fg:x="10580" fg:w="16"/><text x="7.2537%" y="671.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (31 samples, 0.02%)</title><rect x="6.9998%" y="677" width="0.0205%" height="15" fill="rgb(211,154,13)" fg:x="10574" fg:w="31"/><text x="7.2498%" y="687.50"></text></g><g><title>ciMethod::ciMethod (91 samples, 0.06%)</title><rect x="6.9693%" y="709" width="0.0602%" height="15" fill="rgb(225,148,7)" fg:x="10528" fg:w="91"/><text x="7.2193%" y="719.50"></text></g><g><title>ciSignature::ciSignature (84 samples, 0.06%)</title><rect x="6.9740%" y="693" width="0.0556%" height="15" fill="rgb(220,160,43)" fg:x="10535" fg:w="84"/><text x="7.2240%" y="703.50"></text></g><g><title>ciEnv::get_method_from_handle (103 samples, 0.07%)</title><rect x="6.9673%" y="757" width="0.0682%" height="15" fill="rgb(213,52,39)" fg:x="10525" fg:w="103"/><text x="7.2173%" y="767.50"></text></g><g><title>ciObjectFactory::get_metadata (102 samples, 0.07%)</title><rect x="6.9680%" y="741" width="0.0675%" height="15" fill="rgb(243,137,7)" fg:x="10526" fg:w="102"/><text x="7.2180%" y="751.50"></text></g><g><title>ciObjectFactory::create_new_metadata (101 samples, 0.07%)</title><rect x="6.9687%" y="725" width="0.0669%" height="15" fill="rgb(230,79,13)" fg:x="10527" fg:w="101"/><text x="7.2187%" y="735.50"></text></g><g><title>ciEnv::~ciEnv (26 samples, 0.02%)</title><rect x="7.0355%" y="757" width="0.0172%" height="15" fill="rgb(247,105,23)" fg:x="10628" fg:w="26"/><text x="7.2855%" y="767.50"></text></g><g><title>ciObjectFactory::remove_symbols (24 samples, 0.02%)</title><rect x="7.0368%" y="741" width="0.0159%" height="15" fill="rgb(223,179,41)" fg:x="10630" fg:w="24"/><text x="7.2868%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,256 samples, 6.13%)</title><rect x="0.9261%" y="773" width="6.1273%" height="15" fill="rgb(218,9,34)" fg:x="1399" fg:w="9256"/><text x="1.1761%" y="783.50">CompileB..</text></g><g><title>__do_sys_sysinfo (17 samples, 0.01%)</title><rect x="7.0627%" y="693" width="0.0113%" height="15" fill="rgb(222,106,8)" fg:x="10669" fg:w="17"/><text x="7.3127%" y="703.50"></text></g><g><title>do_sysinfo.isra.0 (16 samples, 0.01%)</title><rect x="7.0633%" y="677" width="0.0106%" height="15" fill="rgb(211,220,0)" fg:x="10670" fg:w="16"/><text x="7.3133%" y="687.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="7.0620%" y="709" width="0.0126%" height="15" fill="rgb(229,52,16)" fg:x="10668" fg:w="19"/><text x="7.3120%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="7.0620%" y="725" width="0.0132%" height="15" fill="rgb(212,155,18)" fg:x="10668" fg:w="20"/><text x="7.3120%" y="735.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (34 samples, 0.02%)</title><rect x="7.0534%" y="773" width="0.0225%" height="15" fill="rgb(242,21,14)" fg:x="10655" fg:w="34"/><text x="7.3034%" y="783.50"></text></g><g><title>os::available_memory (28 samples, 0.02%)</title><rect x="7.0574%" y="757" width="0.0185%" height="15" fill="rgb(222,19,48)" fg:x="10661" fg:w="28"/><text x="7.3074%" y="767.50"></text></g><g><title>__sysinfo (25 samples, 0.02%)</title><rect x="7.0594%" y="741" width="0.0165%" height="15" fill="rgb(232,45,27)" fg:x="10664" fg:w="25"/><text x="7.3094%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.03%)</title><rect x="7.1044%" y="517" width="0.0324%" height="15" fill="rgb(249,103,42)" fg:x="10732" fg:w="49"/><text x="7.3544%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="7.1050%" y="501" width="0.0318%" height="15" fill="rgb(246,81,33)" fg:x="10733" fg:w="48"/><text x="7.3550%" y="511.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="7.1050%" y="485" width="0.0318%" height="15" fill="rgb(252,33,42)" fg:x="10733" fg:w="48"/><text x="7.3550%" y="495.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="7.1037%" y="533" width="0.0351%" height="15" fill="rgb(209,212,41)" fg:x="10731" fg:w="53"/><text x="7.3537%" y="543.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.05%)</title><rect x="7.0971%" y="581" width="0.0450%" height="15" fill="rgb(207,154,6)" fg:x="10721" fg:w="68"/><text x="7.3471%" y="591.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="7.0997%" y="565" width="0.0424%" height="15" fill="rgb(223,64,47)" fg:x="10725" fg:w="64"/><text x="7.3497%" y="575.50"></text></g><g><title>__schedule (64 samples, 0.04%)</title><rect x="7.0997%" y="549" width="0.0424%" height="15" fill="rgb(211,161,38)" fg:x="10725" fg:w="64"/><text x="7.3497%" y="559.50"></text></g><g><title>do_futex (75 samples, 0.05%)</title><rect x="7.0958%" y="613" width="0.0496%" height="15" fill="rgb(219,138,40)" fg:x="10719" fg:w="75"/><text x="7.3458%" y="623.50"></text></g><g><title>futex_wait (74 samples, 0.05%)</title><rect x="7.0964%" y="597" width="0.0490%" height="15" fill="rgb(241,228,46)" fg:x="10720" fg:w="74"/><text x="7.3464%" y="607.50"></text></g><g><title>do_syscall_64 (78 samples, 0.05%)</title><rect x="7.0944%" y="645" width="0.0516%" height="15" fill="rgb(223,209,38)" fg:x="10717" fg:w="78"/><text x="7.3444%" y="655.50"></text></g><g><title>__x64_sys_futex (77 samples, 0.05%)</title><rect x="7.0951%" y="629" width="0.0510%" height="15" fill="rgb(236,164,45)" fg:x="10718" fg:w="77"/><text x="7.3451%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (81 samples, 0.05%)</title><rect x="7.0938%" y="709" width="0.0536%" height="15" fill="rgb(231,15,5)" fg:x="10716" fg:w="81"/><text x="7.3438%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (81 samples, 0.05%)</title><rect x="7.0938%" y="693" width="0.0536%" height="15" fill="rgb(252,35,15)" fg:x="10716" fg:w="81"/><text x="7.3438%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (80 samples, 0.05%)</title><rect x="7.0944%" y="677" width="0.0530%" height="15" fill="rgb(248,181,18)" fg:x="10717" fg:w="80"/><text x="7.3444%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.05%)</title><rect x="7.0944%" y="661" width="0.0530%" height="15" fill="rgb(233,39,42)" fg:x="10717" fg:w="80"/><text x="7.3444%" y="671.50"></text></g><g><title>Monitor::wait (92 samples, 0.06%)</title><rect x="7.0898%" y="757" width="0.0609%" height="15" fill="rgb(238,110,33)" fg:x="10710" fg:w="92"/><text x="7.3398%" y="767.50"></text></g><g><title>Monitor::IWait (90 samples, 0.06%)</title><rect x="7.0911%" y="741" width="0.0596%" height="15" fill="rgb(233,195,10)" fg:x="10712" fg:w="90"/><text x="7.3411%" y="751.50"></text></g><g><title>os::PlatformEvent::park (89 samples, 0.06%)</title><rect x="7.0918%" y="725" width="0.0589%" height="15" fill="rgb(254,105,3)" fg:x="10713" fg:w="89"/><text x="7.3418%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (40 samples, 0.03%)</title><rect x="7.1507%" y="757" width="0.0265%" height="15" fill="rgb(221,225,9)" fg:x="10802" fg:w="40"/><text x="7.4007%" y="767.50"></text></g><g><title>CompileQueue::get (154 samples, 0.10%)</title><rect x="7.0759%" y="773" width="0.1019%" height="15" fill="rgb(224,227,45)" fg:x="10689" fg:w="154"/><text x="7.3259%" y="783.50"></text></g><g><title>Thread::call_run (9,457 samples, 6.26%)</title><rect x="0.9248%" y="821" width="6.2603%" height="15" fill="rgb(229,198,43)" fg:x="1397" fg:w="9457"/><text x="1.1748%" y="831.50">Thread::..</text></g><g><title>JavaThread::thread_main_inner (9,457 samples, 6.26%)</title><rect x="0.9248%" y="805" width="6.2603%" height="15" fill="rgb(206,209,35)" fg:x="1397" fg:w="9457"/><text x="1.1748%" y="815.50">JavaThre..</text></g><g><title>CompileBroker::compiler_thread_loop (9,457 samples, 6.26%)</title><rect x="0.9248%" y="789" width="6.2603%" height="15" fill="rgb(245,195,53)" fg:x="1397" fg:w="9457"/><text x="1.1748%" y="799.50">CompileB..</text></g><g><title>__GI___clone (9,465 samples, 6.27%)</title><rect x="0.9202%" y="869" width="6.2656%" height="15" fill="rgb(240,92,26)" fg:x="1390" fg:w="9465"/><text x="1.1702%" y="879.50">__GI___c..</text></g><g><title>start_thread (9,458 samples, 6.26%)</title><rect x="0.9248%" y="853" width="6.2610%" height="15" fill="rgb(207,40,23)" fg:x="1397" fg:w="9458"/><text x="1.1748%" y="863.50">start_th..</text></g><g><title>thread_native_entry (9,458 samples, 6.26%)</title><rect x="0.9248%" y="837" width="6.2610%" height="15" fill="rgb(223,111,35)" fg:x="1397" fg:w="9458"/><text x="1.1748%" y="847.50">thread_n..</text></g><g><title>C1_CompilerThre (10,891 samples, 7.21%)</title><rect x="0.0126%" y="885" width="7.2096%" height="15" fill="rgb(229,147,28)" fg:x="19" fg:w="10891"/><text x="0.2626%" y="895.50">C1_Compile..</text></g><g><title>Dict::Insert (16 samples, 0.01%)</title><rect x="7.2242%" y="869" width="0.0106%" height="15" fill="rgb(211,29,28)" fg:x="10913" fg:w="16"/><text x="7.4742%" y="879.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (29 samples, 0.02%)</title><rect x="7.2712%" y="869" width="0.0192%" height="15" fill="rgb(228,72,33)" fg:x="10984" fg:w="29"/><text x="7.5212%" y="879.50"></text></g><g><title>RegMask::is_UP (28 samples, 0.02%)</title><rect x="7.2718%" y="853" width="0.0185%" height="15" fill="rgb(205,214,31)" fg:x="10985" fg:w="28"/><text x="7.5218%" y="863.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (19 samples, 0.01%)</title><rect x="7.2910%" y="869" width="0.0126%" height="15" fill="rgb(224,111,15)" fg:x="11014" fg:w="19"/><text x="7.5410%" y="879.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (57 samples, 0.04%)</title><rect x="7.3308%" y="869" width="0.0377%" height="15" fill="rgb(253,21,26)" fg:x="11074" fg:w="57"/><text x="7.5808%" y="879.50"></text></g><g><title>ProjNode::pinned (56 samples, 0.04%)</title><rect x="7.3314%" y="853" width="0.0371%" height="15" fill="rgb(245,139,43)" fg:x="11075" fg:w="56"/><text x="7.5814%" y="863.50"></text></g><g><title>CProjNode::is_CFG (20 samples, 0.01%)</title><rect x="7.4751%" y="853" width="0.0132%" height="15" fill="rgb(252,170,7)" fg:x="11292" fg:w="20"/><text x="7.7251%" y="863.50"></text></g><g><title>ConINode::Opcode (16 samples, 0.01%)</title><rect x="7.5909%" y="853" width="0.0106%" height="15" fill="rgb(231,118,14)" fg:x="11467" fg:w="16"/><text x="7.8409%" y="863.50"></text></g><g><title>IfFalseNode::Opcode (17 samples, 0.01%)</title><rect x="7.7035%" y="853" width="0.0113%" height="15" fill="rgb(238,83,0)" fg:x="11637" fg:w="17"/><text x="7.9535%" y="863.50"></text></g><g><title>IfTrueNode::Opcode (24 samples, 0.02%)</title><rect x="7.7299%" y="853" width="0.0159%" height="15" fill="rgb(221,39,39)" fg:x="11677" fg:w="24"/><text x="7.9799%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (32 samples, 0.02%)</title><rect x="7.7571%" y="853" width="0.0212%" height="15" fill="rgb(222,119,46)" fg:x="11718" fg:w="32"/><text x="8.0071%" y="863.50"></text></g><g><title>MultiNode::is_CFG (50 samples, 0.03%)</title><rect x="7.9749%" y="853" width="0.0331%" height="15" fill="rgb(222,165,49)" fg:x="12047" fg:w="50"/><text x="8.2249%" y="863.50"></text></g><g><title>Node::is_CFG (46 samples, 0.03%)</title><rect x="8.0371%" y="853" width="0.0305%" height="15" fill="rgb(219,113,52)" fg:x="12141" fg:w="46"/><text x="8.2871%" y="863.50"></text></g><g><title>Node::pinned (32 samples, 0.02%)</title><rect x="8.0781%" y="853" width="0.0212%" height="15" fill="rgb(214,7,15)" fg:x="12203" fg:w="32"/><text x="8.3281%" y="863.50"></text></g><g><title>PhiNode::Opcode (28 samples, 0.02%)</title><rect x="8.2469%" y="853" width="0.0185%" height="15" fill="rgb(235,32,4)" fg:x="12458" fg:w="28"/><text x="8.4969%" y="863.50"></text></g><g><title>ProjNode::is_CFG (20 samples, 0.01%)</title><rect x="8.2920%" y="853" width="0.0132%" height="15" fill="rgb(238,90,54)" fg:x="12526" fg:w="20"/><text x="8.5420%" y="863.50"></text></g><g><title>ProjNode::pinned (18 samples, 0.01%)</title><rect x="8.3052%" y="853" width="0.0119%" height="15" fill="rgb(213,208,19)" fg:x="12546" fg:w="18"/><text x="8.5552%" y="863.50"></text></g><g><title>RegMask::Size (17 samples, 0.01%)</title><rect x="8.3251%" y="853" width="0.0113%" height="15" fill="rgb(233,156,4)" fg:x="12576" fg:w="17"/><text x="8.5751%" y="863.50"></text></g><g><title>RegionNode::is_CFG (47 samples, 0.03%)</title><rect x="8.3661%" y="853" width="0.0311%" height="15" fill="rgb(207,194,5)" fg:x="12638" fg:w="47"/><text x="8.6161%" y="863.50"></text></g><g><title>TypeNode::bottom_type (26 samples, 0.02%)</title><rect x="8.5349%" y="853" width="0.0172%" height="15" fill="rgb(206,111,30)" fg:x="12893" fg:w="26"/><text x="8.7849%" y="863.50"></text></g><g><title>_dl_update_slotinfo (175 samples, 0.12%)</title><rect x="8.6163%" y="853" width="0.1158%" height="15" fill="rgb(243,70,54)" fg:x="13016" fg:w="175"/><text x="8.8663%" y="863.50"></text></g><g><title>find_lowest_bit (29 samples, 0.02%)</title><rect x="8.8275%" y="853" width="0.0192%" height="15" fill="rgb(242,28,8)" fg:x="13335" fg:w="29"/><text x="9.0775%" y="863.50"></text></g><g><title>jmpDirNode::is_block_proj (21 samples, 0.01%)</title><rect x="8.8705%" y="853" width="0.0139%" height="15" fill="rgb(219,106,18)" fg:x="13400" fg:w="21"/><text x="9.1205%" y="863.50"></text></g><g><title>update_get_addr (43 samples, 0.03%)</title><rect x="8.9870%" y="853" width="0.0285%" height="15" fill="rgb(244,222,10)" fg:x="13576" fg:w="43"/><text x="9.2370%" y="863.50"></text></g><g><title>[anon] (2,472 samples, 1.64%)</title><rect x="7.3837%" y="869" width="1.6364%" height="15" fill="rgb(236,179,52)" fg:x="11154" fg:w="2472"/><text x="7.6337%" y="879.50"></text></g><g><title>Compile::call_generator (27 samples, 0.02%)</title><rect x="9.0479%" y="709" width="0.0179%" height="15" fill="rgb(213,23,39)" fg:x="13668" fg:w="27"/><text x="9.2979%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (27 samples, 0.02%)</title><rect x="9.0479%" y="693" width="0.0179%" height="15" fill="rgb(238,48,10)" fg:x="13668" fg:w="27"/><text x="9.2979%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (22 samples, 0.01%)</title><rect x="9.0513%" y="677" width="0.0146%" height="15" fill="rgb(251,196,23)" fg:x="13673" fg:w="22"/><text x="9.3013%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (20 samples, 0.01%)</title><rect x="9.0526%" y="661" width="0.0132%" height="15" fill="rgb(250,152,24)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (20 samples, 0.01%)</title><rect x="9.0526%" y="645" width="0.0132%" height="15" fill="rgb(209,150,17)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (20 samples, 0.01%)</title><rect x="9.0526%" y="629" width="0.0132%" height="15" fill="rgb(234,202,34)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="639.50"></text></g><g><title>ciTypeFlow::flow_block (20 samples, 0.01%)</title><rect x="9.0526%" y="613" width="0.0132%" height="15" fill="rgb(253,148,53)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (18 samples, 0.01%)</title><rect x="9.0757%" y="597" width="0.0119%" height="15" fill="rgb(218,129,16)" fg:x="13710" fg:w="18"/><text x="9.3257%" y="607.50"></text></g><g><title>ciBytecodeStream::get_field (17 samples, 0.01%)</title><rect x="9.0764%" y="581" width="0.0113%" height="15" fill="rgb(216,85,19)" fg:x="13711" fg:w="17"/><text x="9.3264%" y="591.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (39 samples, 0.03%)</title><rect x="9.0877%" y="597" width="0.0258%" height="15" fill="rgb(235,228,7)" fg:x="13728" fg:w="39"/><text x="9.3377%" y="607.50"></text></g><g><title>ciBytecodeStream::get_method (39 samples, 0.03%)</title><rect x="9.0877%" y="581" width="0.0258%" height="15" fill="rgb(245,175,0)" fg:x="13728" fg:w="39"/><text x="9.3377%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (36 samples, 0.02%)</title><rect x="9.0896%" y="565" width="0.0238%" height="15" fill="rgb(208,168,36)" fg:x="13731" fg:w="36"/><text x="9.3396%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (28 samples, 0.02%)</title><rect x="9.0949%" y="549" width="0.0185%" height="15" fill="rgb(246,171,24)" fg:x="13739" fg:w="28"/><text x="9.3449%" y="559.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.02%)</title><rect x="9.0969%" y="533" width="0.0165%" height="15" fill="rgb(215,142,24)" fg:x="13742" fg:w="25"/><text x="9.3469%" y="543.50"></text></g><g><title>ciMethod::ciMethod (22 samples, 0.01%)</title><rect x="9.0989%" y="517" width="0.0146%" height="15" fill="rgb(250,187,7)" fg:x="13745" fg:w="22"/><text x="9.3489%" y="527.50"></text></g><g><title>ciSignature::ciSignature (17 samples, 0.01%)</title><rect x="9.1022%" y="501" width="0.0113%" height="15" fill="rgb(228,66,33)" fg:x="13750" fg:w="17"/><text x="9.3522%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (66 samples, 0.04%)</title><rect x="9.0731%" y="613" width="0.0437%" height="15" fill="rgb(234,215,21)" fg:x="13706" fg:w="66"/><text x="9.3231%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (74 samples, 0.05%)</title><rect x="9.0691%" y="645" width="0.0490%" height="15" fill="rgb(222,191,20)" fg:x="13700" fg:w="74"/><text x="9.3191%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (74 samples, 0.05%)</title><rect x="9.0691%" y="629" width="0.0490%" height="15" fill="rgb(245,79,54)" fg:x="13700" fg:w="74"/><text x="9.3191%" y="639.50"></text></g><g><title>InlineTree::ok_to_inline (81 samples, 0.05%)</title><rect x="9.0658%" y="709" width="0.0536%" height="15" fill="rgb(240,10,37)" fg:x="13695" fg:w="81"/><text x="9.3158%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (77 samples, 0.05%)</title><rect x="9.0685%" y="693" width="0.0510%" height="15" fill="rgb(214,192,32)" fg:x="13699" fg:w="77"/><text x="9.3185%" y="703.50"></text></g><g><title>ciTypeFlow::do_flow (77 samples, 0.05%)</title><rect x="9.0685%" y="677" width="0.0510%" height="15" fill="rgb(209,36,54)" fg:x="13699" fg:w="77"/><text x="9.3185%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (77 samples, 0.05%)</title><rect x="9.0685%" y="661" width="0.0510%" height="15" fill="rgb(220,10,11)" fg:x="13699" fg:w="77"/><text x="9.3185%" y="671.50"></text></g><g><title>Compile::call_generator (116 samples, 0.08%)</title><rect x="9.0479%" y="725" width="0.0768%" height="15" fill="rgb(221,106,17)" fg:x="13668" fg:w="116"/><text x="9.2979%" y="735.50"></text></g><g><title>ciEnv::get_method_by_index_impl (29 samples, 0.02%)</title><rect x="9.1956%" y="469" width="0.0192%" height="15" fill="rgb(251,142,44)" fg:x="13891" fg:w="29"/><text x="9.4456%" y="479.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (31 samples, 0.02%)</title><rect x="9.1949%" y="501" width="0.0205%" height="15" fill="rgb(238,13,15)" fg:x="13890" fg:w="31"/><text x="9.4449%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (31 samples, 0.02%)</title><rect x="9.1949%" y="485" width="0.0205%" height="15" fill="rgb(208,107,27)" fg:x="13890" fg:w="31"/><text x="9.4449%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (50 samples, 0.03%)</title><rect x="9.1856%" y="533" width="0.0331%" height="15" fill="rgb(205,136,37)" fg:x="13876" fg:w="50"/><text x="9.4356%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (46 samples, 0.03%)</title><rect x="9.1883%" y="517" width="0.0305%" height="15" fill="rgb(250,205,27)" fg:x="13880" fg:w="46"/><text x="9.4383%" y="527.50"></text></g><g><title>ciTypeFlow::df_flow_types (59 samples, 0.04%)</title><rect x="9.1803%" y="549" width="0.0391%" height="15" fill="rgb(210,80,43)" fg:x="13868" fg:w="59"/><text x="9.4303%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (67 samples, 0.04%)</title><rect x="9.1777%" y="581" width="0.0444%" height="15" fill="rgb(247,160,36)" fg:x="13864" fg:w="67"/><text x="9.4277%" y="591.50"></text></g><g><title>ciTypeFlow::flow_types (67 samples, 0.04%)</title><rect x="9.1777%" y="565" width="0.0444%" height="15" fill="rgb(234,13,49)" fg:x="13864" fg:w="67"/><text x="9.4277%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (91 samples, 0.06%)</title><rect x="9.1625%" y="613" width="0.0602%" height="15" fill="rgb(234,122,0)" fg:x="13841" fg:w="91"/><text x="9.4125%" y="623.50"></text></g><g><title>ciMethod::get_flow_analysis (74 samples, 0.05%)</title><rect x="9.1737%" y="597" width="0.0490%" height="15" fill="rgb(207,146,38)" fg:x="13858" fg:w="74"/><text x="9.4237%" y="607.50"></text></g><g><title>Compile::call_generator (111 samples, 0.07%)</title><rect x="9.1499%" y="629" width="0.0735%" height="15" fill="rgb(207,177,25)" fg:x="13822" fg:w="111"/><text x="9.3999%" y="639.50"></text></g><g><title>LibraryIntrinsic::generate (16 samples, 0.01%)</title><rect x="9.2386%" y="629" width="0.0106%" height="15" fill="rgb(211,178,42)" fg:x="13956" fg:w="16"/><text x="9.4886%" y="639.50"></text></g><g><title>ciTypeFlow::df_flow_types (25 samples, 0.02%)</title><rect x="9.3160%" y="453" width="0.0165%" height="15" fill="rgb(230,69,54)" fg:x="14073" fg:w="25"/><text x="9.5660%" y="463.50"></text></g><g><title>ciTypeFlow::flow_block (23 samples, 0.02%)</title><rect x="9.3174%" y="437" width="0.0152%" height="15" fill="rgb(214,135,41)" fg:x="14075" fg:w="23"/><text x="9.5674%" y="447.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (20 samples, 0.01%)</title><rect x="9.3194%" y="421" width="0.0132%" height="15" fill="rgb(237,67,25)" fg:x="14078" fg:w="20"/><text x="9.5694%" y="431.50"></text></g><g><title>Compile::call_generator (46 samples, 0.03%)</title><rect x="9.3028%" y="533" width="0.0305%" height="15" fill="rgb(222,189,50)" fg:x="14053" fg:w="46"/><text x="9.5528%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (41 samples, 0.03%)</title><rect x="9.3061%" y="517" width="0.0271%" height="15" fill="rgb(245,148,34)" fg:x="14058" fg:w="41"/><text x="9.5561%" y="527.50"></text></g><g><title>ciMethod::get_flow_analysis (31 samples, 0.02%)</title><rect x="9.3127%" y="501" width="0.0205%" height="15" fill="rgb(222,29,6)" fg:x="14068" fg:w="31"/><text x="9.5627%" y="511.50"></text></g><g><title>ciTypeFlow::do_flow (28 samples, 0.02%)</title><rect x="9.3147%" y="485" width="0.0185%" height="15" fill="rgb(221,189,43)" fg:x="14071" fg:w="28"/><text x="9.5647%" y="495.50"></text></g><g><title>ciTypeFlow::flow_types (28 samples, 0.02%)</title><rect x="9.3147%" y="469" width="0.0185%" height="15" fill="rgb(207,36,27)" fg:x="14071" fg:w="28"/><text x="9.5647%" y="479.50"></text></g><g><title>Compile::call_generator (19 samples, 0.01%)</title><rect x="9.3869%" y="437" width="0.0126%" height="15" fill="rgb(217,90,24)" fg:x="14180" fg:w="19"/><text x="9.6369%" y="447.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="9.4259%" y="389" width="0.0238%" height="15" fill="rgb(224,66,35)" fg:x="14239" fg:w="36"/><text x="9.6759%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="9.4279%" y="373" width="0.0218%" height="15" fill="rgb(221,13,50)" fg:x="14242" fg:w="33"/><text x="9.6779%" y="383.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="9.4253%" y="405" width="0.0265%" height="15" fill="rgb(236,68,49)" fg:x="14238" fg:w="40"/><text x="9.6753%" y="415.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.04%)</title><rect x="9.4173%" y="437" width="0.0410%" height="15" fill="rgb(229,146,28)" fg:x="14226" fg:w="62"/><text x="9.6673%" y="447.50"></text></g><g><title>Parse::Parse (62 samples, 0.04%)</title><rect x="9.4173%" y="421" width="0.0410%" height="15" fill="rgb(225,31,38)" fg:x="14226" fg:w="62"/><text x="9.6673%" y="431.50"></text></g><g><title>Parse::do_call (134 samples, 0.09%)</title><rect x="9.3849%" y="453" width="0.0887%" height="15" fill="rgb(250,208,3)" fg:x="14177" fg:w="134"/><text x="9.6349%" y="463.50"></text></g><g><title>Parse::do_field_access (41 samples, 0.03%)</title><rect x="9.4749%" y="453" width="0.0271%" height="15" fill="rgb(246,54,23)" fg:x="14313" fg:w="41"/><text x="9.7249%" y="463.50"></text></g><g><title>Parse::do_if (20 samples, 0.01%)</title><rect x="9.5021%" y="453" width="0.0132%" height="15" fill="rgb(243,76,11)" fg:x="14354" fg:w="20"/><text x="9.7521%" y="463.50"></text></g><g><title>Parse::do_one_block (234 samples, 0.15%)</title><rect x="9.3723%" y="485" width="0.1549%" height="15" fill="rgb(245,21,50)" fg:x="14158" fg:w="234"/><text x="9.6223%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (232 samples, 0.15%)</title><rect x="9.3736%" y="469" width="0.1536%" height="15" fill="rgb(228,9,43)" fg:x="14160" fg:w="232"/><text x="9.6236%" y="479.50"></text></g><g><title>Parse::do_all_blocks (240 samples, 0.16%)</title><rect x="9.3716%" y="501" width="0.1589%" height="15" fill="rgb(208,100,47)" fg:x="14157" fg:w="240"/><text x="9.6216%" y="511.50"></text></g><g><title>ParseGenerator::generate (282 samples, 0.19%)</title><rect x="9.3531%" y="533" width="0.1867%" height="15" fill="rgb(232,26,8)" fg:x="14129" fg:w="282"/><text x="9.6031%" y="543.50"></text></g><g><title>Parse::Parse (281 samples, 0.19%)</title><rect x="9.3538%" y="517" width="0.1860%" height="15" fill="rgb(216,166,38)" fg:x="14130" fg:w="281"/><text x="9.6038%" y="527.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="9.5444%" y="517" width="0.0113%" height="15" fill="rgb(251,202,51)" fg:x="14418" fg:w="17"/><text x="9.7944%" y="527.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="9.5444%" y="501" width="0.0113%" height="15" fill="rgb(254,216,34)" fg:x="14418" fg:w="17"/><text x="9.7944%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (29 samples, 0.02%)</title><rect x="9.5398%" y="533" width="0.0192%" height="15" fill="rgb(251,32,27)" fg:x="14411" fg:w="29"/><text x="9.7898%" y="543.50"></text></g><g><title>Parse::do_call (410 samples, 0.27%)</title><rect x="9.3008%" y="549" width="0.2714%" height="15" fill="rgb(208,127,28)" fg:x="14050" fg:w="410"/><text x="9.5508%" y="559.50"></text></g><g><title>Parse::do_get_xxx (17 samples, 0.01%)</title><rect x="9.5808%" y="533" width="0.0113%" height="15" fill="rgb(224,137,22)" fg:x="14473" fg:w="17"/><text x="9.8308%" y="543.50"></text></g><g><title>G1BarrierSetC2::post_barrier (16 samples, 0.01%)</title><rect x="9.5947%" y="469" width="0.0106%" height="15" fill="rgb(254,70,32)" fg:x="14494" fg:w="16"/><text x="9.8447%" y="479.50"></text></g><g><title>GraphKit::access_store_at (29 samples, 0.02%)</title><rect x="9.5921%" y="517" width="0.0192%" height="15" fill="rgb(229,75,37)" fg:x="14490" fg:w="29"/><text x="9.8421%" y="527.50"></text></g><g><title>BarrierSetC2::store_at (28 samples, 0.02%)</title><rect x="9.5927%" y="501" width="0.0185%" height="15" fill="rgb(252,64,23)" fg:x="14491" fg:w="28"/><text x="9.8427%" y="511.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (25 samples, 0.02%)</title><rect x="9.5947%" y="485" width="0.0165%" height="15" fill="rgb(232,162,48)" fg:x="14494" fg:w="25"/><text x="9.8447%" y="495.50"></text></g><g><title>Parse::do_put_xxx (33 samples, 0.02%)</title><rect x="9.5921%" y="533" width="0.0218%" height="15" fill="rgb(246,160,12)" fg:x="14490" fg:w="33"/><text x="9.8421%" y="543.50"></text></g><g><title>Parse::do_field_access (65 samples, 0.04%)</title><rect x="9.5769%" y="549" width="0.0430%" height="15" fill="rgb(247,166,0)" fg:x="14467" fg:w="65"/><text x="9.8269%" y="559.50"></text></g><g><title>Parse::do_if (26 samples, 0.02%)</title><rect x="9.6199%" y="549" width="0.0172%" height="15" fill="rgb(249,219,21)" fg:x="14532" fg:w="26"/><text x="9.8699%" y="559.50"></text></g><g><title>Parse::do_one_block (590 samples, 0.39%)</title><rect x="9.2743%" y="581" width="0.3906%" height="15" fill="rgb(205,209,3)" fg:x="14010" fg:w="590"/><text x="9.5243%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (582 samples, 0.39%)</title><rect x="9.2796%" y="565" width="0.3853%" height="15" fill="rgb(243,44,1)" fg:x="14018" fg:w="582"/><text x="9.5296%" y="575.50"></text></g><g><title>Parse::do_all_blocks (600 samples, 0.40%)</title><rect x="9.2730%" y="597" width="0.3972%" height="15" fill="rgb(206,159,16)" fg:x="14008" fg:w="600"/><text x="9.5230%" y="607.50"></text></g><g><title>ParseGenerator::generate (657 samples, 0.43%)</title><rect x="9.2492%" y="629" width="0.4349%" height="15" fill="rgb(244,77,30)" fg:x="13972" fg:w="657"/><text x="9.4992%" y="639.50"></text></g><g><title>Parse::Parse (656 samples, 0.43%)</title><rect x="9.2498%" y="613" width="0.4343%" height="15" fill="rgb(218,69,12)" fg:x="13973" fg:w="656"/><text x="9.4998%" y="623.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="9.7073%" y="469" width="0.0146%" height="15" fill="rgb(212,87,7)" fg:x="14664" fg:w="22"/><text x="9.9573%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="9.7073%" y="453" width="0.0146%" height="15" fill="rgb(245,114,25)" fg:x="14664" fg:w="22"/><text x="9.9573%" y="463.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="9.7073%" y="517" width="0.0159%" height="15" fill="rgb(210,61,42)" fg:x="14664" fg:w="24"/><text x="9.9573%" y="527.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="9.7073%" y="501" width="0.0159%" height="15" fill="rgb(211,52,33)" fg:x="14664" fg:w="24"/><text x="9.9573%" y="511.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="9.7073%" y="485" width="0.0159%" height="15" fill="rgb(234,58,33)" fg:x="14664" fg:w="24"/><text x="9.9573%" y="495.50"></text></g><g><title>Parse::do_call (50 samples, 0.03%)</title><rect x="9.6954%" y="533" width="0.0331%" height="15" fill="rgb(220,115,36)" fg:x="14646" fg:w="50"/><text x="9.9454%" y="543.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.04%)</title><rect x="9.6927%" y="565" width="0.0424%" height="15" fill="rgb(243,153,54)" fg:x="14642" fg:w="64"/><text x="9.9427%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.04%)</title><rect x="9.6934%" y="549" width="0.0417%" height="15" fill="rgb(251,47,18)" fg:x="14643" fg:w="63"/><text x="9.9434%" y="559.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.04%)</title><rect x="9.6927%" y="581" width="0.0430%" height="15" fill="rgb(242,102,42)" fg:x="14642" fg:w="65"/><text x="9.9427%" y="591.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.05%)</title><rect x="9.6914%" y="613" width="0.0457%" height="15" fill="rgb(234,31,38)" fg:x="14640" fg:w="69"/><text x="9.9414%" y="623.50"></text></g><g><title>Parse::Parse (69 samples, 0.05%)</title><rect x="9.6914%" y="597" width="0.0457%" height="15" fill="rgb(221,117,51)" fg:x="14640" fg:w="69"/><text x="9.9414%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (96 samples, 0.06%)</title><rect x="9.6848%" y="629" width="0.0636%" height="15" fill="rgb(212,20,18)" fg:x="14630" fg:w="96"/><text x="9.9348%" y="639.50"></text></g><g><title>Parse::do_call (922 samples, 0.61%)</title><rect x="9.1499%" y="645" width="0.6103%" height="15" fill="rgb(245,133,36)" fg:x="13822" fg:w="922"/><text x="9.3999%" y="655.50"></text></g><g><title>GraphKit::access_load_at (23 samples, 0.02%)</title><rect x="9.7741%" y="613" width="0.0152%" height="15" fill="rgb(212,6,19)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="623.50"></text></g><g><title>BarrierSetC2::load_at (23 samples, 0.02%)</title><rect x="9.7741%" y="597" width="0.0152%" height="15" fill="rgb(218,1,36)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="607.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (23 samples, 0.02%)</title><rect x="9.7741%" y="581" width="0.0152%" height="15" fill="rgb(246,84,54)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="591.50"></text></g><g><title>BarrierSetC2::load_at_resolved (23 samples, 0.02%)</title><rect x="9.7741%" y="565" width="0.0152%" height="15" fill="rgb(242,110,6)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="575.50"></text></g><g><title>GraphKit::make_load (22 samples, 0.01%)</title><rect x="9.7748%" y="549" width="0.0146%" height="15" fill="rgb(214,47,5)" fg:x="14766" fg:w="22"/><text x="10.0248%" y="559.50"></text></g><g><title>Parse::do_get_xxx (46 samples, 0.03%)</title><rect x="9.7688%" y="629" width="0.0305%" height="15" fill="rgb(218,159,25)" fg:x="14757" fg:w="46"/><text x="10.0188%" y="639.50"></text></g><g><title>G1BarrierSetC2::post_barrier (23 samples, 0.02%)</title><rect x="9.8026%" y="565" width="0.0152%" height="15" fill="rgb(215,211,28)" fg:x="14808" fg:w="23"/><text x="10.0526%" y="575.50"></text></g><g><title>GraphKit::access_store_at (44 samples, 0.03%)</title><rect x="9.7993%" y="613" width="0.0291%" height="15" fill="rgb(238,59,32)" fg:x="14803" fg:w="44"/><text x="10.0493%" y="623.50"></text></g><g><title>BarrierSetC2::store_at (44 samples, 0.03%)</title><rect x="9.7993%" y="597" width="0.0291%" height="15" fill="rgb(226,82,3)" fg:x="14803" fg:w="44"/><text x="10.0493%" y="607.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (41 samples, 0.03%)</title><rect x="9.8013%" y="581" width="0.0271%" height="15" fill="rgb(240,164,32)" fg:x="14806" fg:w="41"/><text x="10.0513%" y="591.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (16 samples, 0.01%)</title><rect x="9.8178%" y="565" width="0.0106%" height="15" fill="rgb(232,46,7)" fg:x="14831" fg:w="16"/><text x="10.0678%" y="575.50"></text></g><g><title>Parse::do_put_xxx (46 samples, 0.03%)</title><rect x="9.7993%" y="629" width="0.0305%" height="15" fill="rgb(229,129,53)" fg:x="14803" fg:w="46"/><text x="10.0493%" y="639.50"></text></g><g><title>Parse::do_field_access (99 samples, 0.07%)</title><rect x="9.7649%" y="645" width="0.0655%" height="15" fill="rgb(234,188,29)" fg:x="14751" fg:w="99"/><text x="10.0149%" y="655.50"></text></g><g><title>Parse::do_if (17 samples, 0.01%)</title><rect x="9.8304%" y="645" width="0.0113%" height="15" fill="rgb(246,141,4)" fg:x="14850" fg:w="17"/><text x="10.0804%" y="655.50"></text></g><g><title>Parse::do_one_block (1,082 samples, 0.72%)</title><rect x="9.1347%" y="677" width="0.7163%" height="15" fill="rgb(229,23,39)" fg:x="13799" fg:w="1082"/><text x="9.3847%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (1,078 samples, 0.71%)</title><rect x="9.1373%" y="661" width="0.7136%" height="15" fill="rgb(206,12,3)" fg:x="13803" fg:w="1078"/><text x="9.3873%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,083 samples, 0.72%)</title><rect x="9.1347%" y="693" width="0.7169%" height="15" fill="rgb(252,226,20)" fg:x="13799" fg:w="1083"/><text x="9.3847%" y="703.50"></text></g><g><title>ParseGenerator::generate (1,096 samples, 0.73%)</title><rect x="9.1267%" y="725" width="0.7255%" height="15" fill="rgb(216,123,35)" fg:x="13787" fg:w="1096"/><text x="9.3767%" y="735.50"></text></g><g><title>Parse::Parse (1,096 samples, 0.73%)</title><rect x="9.1267%" y="709" width="0.7255%" height="15" fill="rgb(212,68,40)" fg:x="13787" fg:w="1096"/><text x="9.3767%" y="719.50"></text></g><g><title>Compile::call_generator (18 samples, 0.01%)</title><rect x="9.8602%" y="613" width="0.0119%" height="15" fill="rgb(254,125,32)" fg:x="14895" fg:w="18"/><text x="10.1102%" y="623.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.03%)</title><rect x="9.8913%" y="469" width="0.0271%" height="15" fill="rgb(253,97,22)" fg:x="14942" fg:w="41"/><text x="10.1413%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.03%)</title><rect x="9.8913%" y="453" width="0.0271%" height="15" fill="rgb(241,101,14)" fg:x="14942" fg:w="41"/><text x="10.1413%" y="463.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.03%)</title><rect x="9.8913%" y="485" width="0.0278%" height="15" fill="rgb(238,103,29)" fg:x="14942" fg:w="42"/><text x="10.1413%" y="495.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="9.8906%" y="517" width="0.0291%" height="15" fill="rgb(233,195,47)" fg:x="14941" fg:w="44"/><text x="10.1406%" y="527.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="9.8906%" y="501" width="0.0291%" height="15" fill="rgb(246,218,30)" fg:x="14941" fg:w="44"/><text x="10.1406%" y="511.50"></text></g><g><title>Parse::do_call (60 samples, 0.04%)</title><rect x="9.8834%" y="533" width="0.0397%" height="15" fill="rgb(219,145,47)" fg:x="14930" fg:w="60"/><text x="10.1334%" y="543.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.06%)</title><rect x="9.8787%" y="581" width="0.0576%" height="15" fill="rgb(243,12,26)" fg:x="14923" fg:w="87"/><text x="10.1287%" y="591.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.06%)</title><rect x="9.8787%" y="565" width="0.0576%" height="15" fill="rgb(214,87,16)" fg:x="14923" fg:w="87"/><text x="10.1287%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (85 samples, 0.06%)</title><rect x="9.8800%" y="549" width="0.0563%" height="15" fill="rgb(208,99,42)" fg:x="14925" fg:w="85"/><text x="10.1300%" y="559.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.06%)</title><rect x="9.8767%" y="613" width="0.0636%" height="15" fill="rgb(253,99,2)" fg:x="14920" fg:w="96"/><text x="10.1267%" y="623.50"></text></g><g><title>Parse::Parse (96 samples, 0.06%)</title><rect x="9.8767%" y="597" width="0.0636%" height="15" fill="rgb(220,168,23)" fg:x="14920" fg:w="96"/><text x="10.1267%" y="607.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="9.9410%" y="597" width="0.0126%" height="15" fill="rgb(242,38,24)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="607.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="9.9410%" y="581" width="0.0126%" height="15" fill="rgb(225,182,9)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="591.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="9.9410%" y="565" width="0.0126%" height="15" fill="rgb(243,178,37)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="575.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="9.9410%" y="549" width="0.0126%" height="15" fill="rgb(232,139,19)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="9.9410%" y="533" width="0.0126%" height="15" fill="rgb(225,201,24)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (21 samples, 0.01%)</title><rect x="9.9403%" y="613" width="0.0139%" height="15" fill="rgb(221,47,46)" fg:x="15016" fg:w="21"/><text x="10.1903%" y="623.50"></text></g><g><title>Parse::do_call (148 samples, 0.10%)</title><rect x="9.8589%" y="629" width="0.0980%" height="15" fill="rgb(249,23,13)" fg:x="14893" fg:w="148"/><text x="10.1089%" y="639.50"></text></g><g><title>Parse::do_all_blocks (172 samples, 0.11%)</title><rect x="9.8549%" y="677" width="0.1139%" height="15" fill="rgb(219,9,5)" fg:x="14887" fg:w="172"/><text x="10.1049%" y="687.50"></text></g><g><title>Parse::do_one_block (172 samples, 0.11%)</title><rect x="9.8549%" y="661" width="0.1139%" height="15" fill="rgb(254,171,16)" fg:x="14887" fg:w="172"/><text x="10.1049%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.11%)</title><rect x="9.8556%" y="645" width="0.1132%" height="15" fill="rgb(230,171,20)" fg:x="14888" fg:w="171"/><text x="10.1056%" y="655.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.12%)</title><rect x="9.8529%" y="709" width="0.1165%" height="15" fill="rgb(210,71,41)" fg:x="14884" fg:w="176"/><text x="10.1029%" y="719.50"></text></g><g><title>Parse::Parse (176 samples, 0.12%)</title><rect x="9.8529%" y="693" width="0.1165%" height="15" fill="rgb(206,173,20)" fg:x="14884" fg:w="176"/><text x="10.1029%" y="703.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="9.9714%" y="613" width="0.0152%" height="15" fill="rgb(233,88,34)" fg:x="15063" fg:w="23"/><text x="10.2214%" y="623.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="9.9701%" y="661" width="0.0212%" height="15" fill="rgb(223,209,46)" fg:x="15061" fg:w="32"/><text x="10.2201%" y="671.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="9.9701%" y="645" width="0.0212%" height="15" fill="rgb(250,43,18)" fg:x="15061" fg:w="32"/><text x="10.2201%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="9.9701%" y="629" width="0.0212%" height="15" fill="rgb(208,13,10)" fg:x="15061" fg:w="32"/><text x="10.2201%" y="639.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="9.9701%" y="693" width="0.0225%" height="15" fill="rgb(212,200,36)" fg:x="15061" fg:w="34"/><text x="10.2201%" y="703.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="9.9701%" y="677" width="0.0225%" height="15" fill="rgb(225,90,30)" fg:x="15061" fg:w="34"/><text x="10.2201%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (36 samples, 0.02%)</title><rect x="9.9694%" y="709" width="0.0238%" height="15" fill="rgb(236,182,39)" fg:x="15060" fg:w="36"/><text x="10.2194%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (215 samples, 0.14%)</title><rect x="9.8522%" y="725" width="0.1423%" height="15" fill="rgb(212,144,35)" fg:x="14883" fg:w="215"/><text x="10.1022%" y="735.50"></text></g><g><title>Parse::do_call (1,446 samples, 0.96%)</title><rect x="9.0479%" y="741" width="0.9572%" height="15" fill="rgb(228,63,44)" fg:x="13668" fg:w="1446"/><text x="9.2979%" y="751.50"></text></g><g><title>C2Compiler::compile_method (1,487 samples, 0.98%)</title><rect x="9.0314%" y="853" width="0.9844%" height="15" fill="rgb(228,109,6)" fg:x="13643" fg:w="1487"/><text x="9.2814%" y="863.50"></text></g><g><title>Compile::Compile (1,487 samples, 0.98%)</title><rect x="9.0314%" y="837" width="0.9844%" height="15" fill="rgb(238,117,24)" fg:x="13643" fg:w="1487"/><text x="9.2814%" y="847.50"></text></g><g><title>ParseGenerator::generate (1,462 samples, 0.97%)</title><rect x="9.0479%" y="821" width="0.9678%" height="15" fill="rgb(242,26,26)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="831.50"></text></g><g><title>Parse::Parse (1,462 samples, 0.97%)</title><rect x="9.0479%" y="805" width="0.9678%" height="15" fill="rgb(221,92,48)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="815.50"></text></g><g><title>Parse::do_all_blocks (1,462 samples, 0.97%)</title><rect x="9.0479%" y="789" width="0.9678%" height="15" fill="rgb(209,209,32)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="799.50"></text></g><g><title>Parse::do_one_block (1,462 samples, 0.97%)</title><rect x="9.0479%" y="773" width="0.9678%" height="15" fill="rgb(221,70,22)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (1,462 samples, 0.97%)</title><rect x="9.0479%" y="757" width="0.9678%" height="15" fill="rgb(248,145,5)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="767.50"></text></g><g><title>Parse::do_field_access (16 samples, 0.01%)</title><rect x="10.0052%" y="741" width="0.0106%" height="15" fill="rgb(226,116,26)" fg:x="15114" fg:w="16"/><text x="10.2552%" y="751.50"></text></g><g><title>MachSpillCopyNode::implementation (40 samples, 0.03%)</title><rect x="10.0224%" y="773" width="0.0265%" height="15" fill="rgb(244,5,17)" fg:x="15140" fg:w="40"/><text x="10.2724%" y="783.50"></text></g><g><title>Compile::Output (49 samples, 0.03%)</title><rect x="10.0171%" y="837" width="0.0324%" height="15" fill="rgb(252,159,33)" fg:x="15132" fg:w="49"/><text x="10.2671%" y="847.50"></text></g><g><title>Compile::init_buffer (49 samples, 0.03%)</title><rect x="10.0171%" y="821" width="0.0324%" height="15" fill="rgb(206,71,0)" fg:x="15132" fg:w="49"/><text x="10.2671%" y="831.50"></text></g><g><title>Compile::shorten_branches (41 samples, 0.03%)</title><rect x="10.0224%" y="805" width="0.0271%" height="15" fill="rgb(233,118,54)" fg:x="15140" fg:w="41"/><text x="10.2724%" y="815.50"></text></g><g><title>Compile::scratch_emit_size (41 samples, 0.03%)</title><rect x="10.0224%" y="789" width="0.0271%" height="15" fill="rgb(234,83,48)" fg:x="15140" fg:w="41"/><text x="10.2724%" y="799.50"></text></g><g><title>Compile::fill_buffer (16 samples, 0.01%)</title><rect x="10.0495%" y="837" width="0.0106%" height="15" fill="rgb(228,3,54)" fg:x="15181" fg:w="16"/><text x="10.2995%" y="847.50"></text></g><g><title>MachNode::adr_type (30 samples, 0.02%)</title><rect x="10.0733%" y="773" width="0.0199%" height="15" fill="rgb(226,155,13)" fg:x="15217" fg:w="30"/><text x="10.3233%" y="783.50"></text></g><g><title>TypeInstPtr::add_offset (20 samples, 0.01%)</title><rect x="10.0800%" y="757" width="0.0132%" height="15" fill="rgb(241,28,37)" fg:x="15227" fg:w="20"/><text x="10.3300%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (44 samples, 0.03%)</title><rect x="10.0647%" y="805" width="0.0291%" height="15" fill="rgb(233,93,10)" fg:x="15204" fg:w="44"/><text x="10.3147%" y="815.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (43 samples, 0.03%)</title><rect x="10.0654%" y="789" width="0.0285%" height="15" fill="rgb(225,113,19)" fg:x="15205" fg:w="43"/><text x="10.3154%" y="799.50"></text></g><g><title>PhaseCFG::sched_call (134 samples, 0.09%)</title><rect x="10.0939%" y="789" width="0.0887%" height="15" fill="rgb(241,2,18)" fg:x="15248" fg:w="134"/><text x="10.3439%" y="799.50"></text></g><g><title>PhaseCFG::schedule_local (135 samples, 0.09%)</title><rect x="10.0939%" y="805" width="0.0894%" height="15" fill="rgb(228,207,21)" fg:x="15248" fg:w="135"/><text x="10.3439%" y="815.50"></text></g><g><title>PhaseCFG::do_global_code_motion (184 samples, 0.12%)</title><rect x="10.0628%" y="837" width="0.1218%" height="15" fill="rgb(213,211,35)" fg:x="15201" fg:w="184"/><text x="10.3128%" y="847.50"></text></g><g><title>PhaseCFG::global_code_motion (184 samples, 0.12%)</title><rect x="10.0628%" y="821" width="0.1218%" height="15" fill="rgb(209,83,10)" fg:x="15201" fg:w="184"/><text x="10.3128%" y="831.50"></text></g><g><title>PhaseChaitin::Split (26 samples, 0.02%)</title><rect x="10.1846%" y="821" width="0.0172%" height="15" fill="rgb(209,164,1)" fg:x="15385" fg:w="26"/><text x="10.4346%" y="831.50"></text></g><g><title>PhaseChaitin::split_USE (23 samples, 0.02%)</title><rect x="10.1865%" y="805" width="0.0152%" height="15" fill="rgb(213,184,43)" fg:x="15388" fg:w="23"/><text x="10.4365%" y="815.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (23 samples, 0.02%)</title><rect x="10.1865%" y="789" width="0.0152%" height="15" fill="rgb(231,61,34)" fg:x="15388" fg:w="23"/><text x="10.4365%" y="799.50"></text></g><g><title>Compile::Code_Gen (285 samples, 0.19%)</title><rect x="10.0171%" y="853" width="0.1887%" height="15" fill="rgb(235,75,3)" fg:x="15132" fg:w="285"/><text x="10.2671%" y="863.50"></text></g><g><title>PhaseChaitin::Register_Allocate (32 samples, 0.02%)</title><rect x="10.1846%" y="837" width="0.0212%" height="15" fill="rgb(220,106,47)" fg:x="15385" fg:w="32"/><text x="10.4346%" y="847.50"></text></g><g><title>OopFlow::compute_reach (140 samples, 0.09%)</title><rect x="10.4500%" y="789" width="0.0927%" height="15" fill="rgb(210,196,33)" fg:x="15786" fg:w="140"/><text x="10.7000%" y="799.50"></text></g><g><title>OopFlow::build_oop_map (80 samples, 0.05%)</title><rect x="10.4897%" y="773" width="0.0530%" height="15" fill="rgb(229,154,42)" fg:x="15846" fg:w="80"/><text x="10.7397%" y="783.50"></text></g><g><title>Compile::BuildOopMaps (557 samples, 0.37%)</title><rect x="10.2150%" y="805" width="0.3687%" height="15" fill="rgb(228,114,26)" fg:x="15431" fg:w="557"/><text x="10.4650%" y="815.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (59 samples, 0.04%)</title><rect x="10.5447%" y="789" width="0.0391%" height="15" fill="rgb(208,144,1)" fg:x="15929" fg:w="59"/><text x="10.7947%" y="799.50"></text></g><g><title>BufferBlob::create (26 samples, 0.02%)</title><rect x="10.5983%" y="773" width="0.0172%" height="15" fill="rgb(239,112,37)" fg:x="16010" fg:w="26"/><text x="10.8483%" y="783.50"></text></g><g><title>Compile::init_scratch_buffer_blob (27 samples, 0.02%)</title><rect x="10.5983%" y="789" width="0.0179%" height="15" fill="rgb(210,96,50)" fg:x="16010" fg:w="27"/><text x="10.8483%" y="799.50"></text></g><g><title>Compile::scratch_emit_size (125 samples, 0.08%)</title><rect x="10.6883%" y="773" width="0.0827%" height="15" fill="rgb(222,178,2)" fg:x="16146" fg:w="125"/><text x="10.9383%" y="783.50"></text></g><g><title>Compile::shorten_branches (254 samples, 0.17%)</title><rect x="10.6162%" y="789" width="0.1681%" height="15" fill="rgb(226,74,18)" fg:x="16037" fg:w="254"/><text x="10.8662%" y="799.50"></text></g><g><title>Compile::init_buffer (305 samples, 0.20%)</title><rect x="10.5837%" y="805" width="0.2019%" height="15" fill="rgb(225,67,54)" fg:x="15988" fg:w="305"/><text x="10.8337%" y="815.50"></text></g><g><title>Compile::Output (875 samples, 0.58%)</title><rect x="10.2084%" y="821" width="0.5792%" height="15" fill="rgb(251,92,32)" fg:x="15421" fg:w="875"/><text x="10.4584%" y="831.50"></text></g><g><title>Compile::FillExceptionTables (20 samples, 0.01%)</title><rect x="10.8571%" y="805" width="0.0132%" height="15" fill="rgb(228,149,22)" fg:x="16401" fg:w="20"/><text x="11.1071%" y="815.50"></text></g><g><title>Compile::FillLocArray (31 samples, 0.02%)</title><rect x="10.8829%" y="789" width="0.0205%" height="15" fill="rgb(243,54,13)" fg:x="16440" fg:w="31"/><text x="11.1329%" y="799.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (19 samples, 0.01%)</title><rect x="10.9074%" y="773" width="0.0126%" height="15" fill="rgb(243,180,28)" fg:x="16477" fg:w="19"/><text x="11.1574%" y="783.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (32 samples, 0.02%)</title><rect x="10.9041%" y="789" width="0.0212%" height="15" fill="rgb(208,167,24)" fg:x="16472" fg:w="32"/><text x="11.1541%" y="799.50"></text></g><g><title>DebugInformationRecorder::describe_scope (27 samples, 0.02%)</title><rect x="10.9253%" y="789" width="0.0179%" height="15" fill="rgb(245,73,45)" fg:x="16504" fg:w="27"/><text x="11.1753%" y="799.50"></text></g><g><title>Compile::Process_OopMap_Node (142 samples, 0.09%)</title><rect x="10.8704%" y="805" width="0.0940%" height="15" fill="rgb(237,203,48)" fg:x="16421" fg:w="142"/><text x="11.1204%" y="815.50"></text></g><g><title>resource_allocate_bytes (22 samples, 0.01%)</title><rect x="10.9498%" y="789" width="0.0146%" height="15" fill="rgb(211,197,16)" fg:x="16541" fg:w="22"/><text x="11.1998%" y="799.50"></text></g><g><title>Compile::valid_bundle_info (35 samples, 0.02%)</title><rect x="10.9664%" y="805" width="0.0232%" height="15" fill="rgb(243,99,51)" fg:x="16566" fg:w="35"/><text x="11.2164%" y="815.50"></text></g><g><title>MachSpillCopyNode::implementation (24 samples, 0.02%)</title><rect x="10.9942%" y="805" width="0.0159%" height="15" fill="rgb(215,123,29)" fg:x="16608" fg:w="24"/><text x="11.2442%" y="815.50"></text></g><g><title>Compile::fill_buffer (382 samples, 0.25%)</title><rect x="10.7876%" y="821" width="0.2529%" height="15" fill="rgb(239,186,37)" fg:x="16296" fg:w="382"/><text x="11.0376%" y="831.50"></text></g><g><title>Arena::contains (17 samples, 0.01%)</title><rect x="11.0471%" y="805" width="0.0113%" height="15" fill="rgb(252,136,39)" fg:x="16688" fg:w="17"/><text x="11.2971%" y="815.50"></text></g><g><title>Matcher::init_first_stack_mask (30 samples, 0.02%)</title><rect x="11.0690%" y="789" width="0.0199%" height="15" fill="rgb(223,213,32)" fg:x="16721" fg:w="30"/><text x="11.3190%" y="799.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (37 samples, 0.02%)</title><rect x="11.0650%" y="805" width="0.0245%" height="15" fill="rgb(233,115,5)" fg:x="16715" fg:w="37"/><text x="11.3150%" y="815.50"></text></g><g><title>Matcher::is_bmi_pattern (20 samples, 0.01%)</title><rect x="11.2351%" y="789" width="0.0132%" height="15" fill="rgb(207,226,44)" fg:x="16972" fg:w="20"/><text x="11.4851%" y="799.50"></text></g><g><title>Matcher::find_shared (259 samples, 0.17%)</title><rect x="11.0895%" y="805" width="0.1715%" height="15" fill="rgb(208,126,0)" fg:x="16752" fg:w="259"/><text x="11.3395%" y="815.50"></text></g><g><title>Arena::contains (403 samples, 0.27%)</title><rect x="11.4377%" y="789" width="0.2668%" height="15" fill="rgb(244,66,21)" fg:x="17278" fg:w="403"/><text x="11.6877%" y="799.50"></text></g><g><title>Matcher::ReduceInst (17 samples, 0.01%)</title><rect x="11.7515%" y="757" width="0.0113%" height="15" fill="rgb(222,97,12)" fg:x="17752" fg:w="17"/><text x="12.0015%" y="767.50"></text></g><g><title>Matcher::match_tree (62 samples, 0.04%)</title><rect x="11.7343%" y="773" width="0.0410%" height="15" fill="rgb(219,213,19)" fg:x="17726" fg:w="62"/><text x="11.9843%" y="783.50"></text></g><g><title>Node::add_req (19 samples, 0.01%)</title><rect x="11.7627%" y="757" width="0.0126%" height="15" fill="rgb(252,169,30)" fg:x="17769" fg:w="19"/><text x="12.0127%" y="767.50"></text></g><g><title>Matcher::match_sfpt (94 samples, 0.06%)</title><rect x="11.7197%" y="789" width="0.0622%" height="15" fill="rgb(206,32,51)" fg:x="17704" fg:w="94"/><text x="11.9697%" y="799.50"></text></g><g><title>Matcher::Label_Root (37 samples, 0.02%)</title><rect x="11.9938%" y="725" width="0.0245%" height="15" fill="rgb(250,172,42)" fg:x="18118" fg:w="37"/><text x="12.2438%" y="735.50"></text></g><g><title>State::DFA (29 samples, 0.02%)</title><rect x="12.0196%" y="725" width="0.0192%" height="15" fill="rgb(209,34,43)" fg:x="18157" fg:w="29"/><text x="12.2696%" y="735.50"></text></g><g><title>Matcher::Label_Root (97 samples, 0.06%)</title><rect x="11.9792%" y="741" width="0.0642%" height="15" fill="rgb(223,11,35)" fg:x="18096" fg:w="97"/><text x="12.2292%" y="751.50"></text></g><g><title>State::_sub_Op_AddP (26 samples, 0.02%)</title><rect x="12.0533%" y="725" width="0.0172%" height="15" fill="rgb(251,219,26)" fg:x="18208" fg:w="26"/><text x="12.3033%" y="735.50"></text></g><g><title>State::DFA (51 samples, 0.03%)</title><rect x="12.0447%" y="741" width="0.0338%" height="15" fill="rgb(231,119,3)" fg:x="18195" fg:w="51"/><text x="12.2947%" y="751.50"></text></g><g><title>Matcher::Label_Root (223 samples, 0.15%)</title><rect x="11.9335%" y="757" width="0.1476%" height="15" fill="rgb(216,97,11)" fg:x="18027" fg:w="223"/><text x="12.1835%" y="767.50"></text></g><g><title>State::DFA (38 samples, 0.03%)</title><rect x="12.0818%" y="757" width="0.0252%" height="15" fill="rgb(223,59,9)" fg:x="18251" fg:w="38"/><text x="12.3318%" y="767.50"></text></g><g><title>Matcher::Label_Root (351 samples, 0.23%)</title><rect x="11.8872%" y="773" width="0.2324%" height="15" fill="rgb(233,93,31)" fg:x="17957" fg:w="351"/><text x="12.1372%" y="783.50"></text></g><g><title>Matcher::ReduceInst (16 samples, 0.01%)</title><rect x="12.1460%" y="709" width="0.0106%" height="15" fill="rgb(239,81,33)" fg:x="18348" fg:w="16"/><text x="12.3960%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (39 samples, 0.03%)</title><rect x="12.1447%" y="725" width="0.0258%" height="15" fill="rgb(213,120,34)" fg:x="18346" fg:w="39"/><text x="12.3947%" y="735.50"></text></g><g><title>State::MachNodeGenerator (17 samples, 0.01%)</title><rect x="12.1712%" y="725" width="0.0113%" height="15" fill="rgb(243,49,53)" fg:x="18386" fg:w="17"/><text x="12.4212%" y="735.50"></text></g><g><title>Matcher::ReduceInst (68 samples, 0.05%)</title><rect x="12.1414%" y="741" width="0.0450%" height="15" fill="rgb(247,216,33)" fg:x="18341" fg:w="68"/><text x="12.3914%" y="751.50"></text></g><g><title>Matcher::ReduceOper (16 samples, 0.01%)</title><rect x="12.1910%" y="741" width="0.0106%" height="15" fill="rgb(226,26,14)" fg:x="18416" fg:w="16"/><text x="12.4410%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (126 samples, 0.08%)</title><rect x="12.1308%" y="757" width="0.0834%" height="15" fill="rgb(215,49,53)" fg:x="18325" fg:w="126"/><text x="12.3808%" y="767.50"></text></g><g><title>State::MachOperGenerator (17 samples, 0.01%)</title><rect x="12.2029%" y="741" width="0.0113%" height="15" fill="rgb(245,162,40)" fg:x="18434" fg:w="17"/><text x="12.4529%" y="751.50"></text></g><g><title>State::MachNodeGenerator (47 samples, 0.03%)</title><rect x="12.2215%" y="757" width="0.0311%" height="15" fill="rgb(229,68,17)" fg:x="18462" fg:w="47"/><text x="12.4715%" y="767.50"></text></g><g><title>Matcher::ReduceInst (220 samples, 0.15%)</title><rect x="12.1195%" y="773" width="0.1456%" height="15" fill="rgb(213,182,10)" fg:x="18308" fg:w="220"/><text x="12.3695%" y="783.50"></text></g><g><title>Matcher::match_tree (744 samples, 0.49%)</title><rect x="11.7819%" y="789" width="0.4925%" height="15" fill="rgb(245,125,30)" fg:x="17798" fg:w="744"/><text x="12.0319%" y="799.50"></text></g><g><title>Node::clone (42 samples, 0.03%)</title><rect x="12.2771%" y="789" width="0.0278%" height="15" fill="rgb(232,202,2)" fg:x="18546" fg:w="42"/><text x="12.5271%" y="799.50"></text></g><g><title>Node::out_grow (27 samples, 0.02%)</title><rect x="12.3055%" y="789" width="0.0179%" height="15" fill="rgb(237,140,51)" fg:x="18589" fg:w="27"/><text x="12.5555%" y="799.50"></text></g><g><title>Matcher::xform (1,602 samples, 1.06%)</title><rect x="11.2669%" y="805" width="1.0605%" height="15" fill="rgb(236,157,25)" fg:x="17020" fg:w="1602"/><text x="11.5169%" y="815.50"></text></g><g><title>Matcher::match (1,940 samples, 1.28%)</title><rect x="11.0451%" y="821" width="1.2842%" height="15" fill="rgb(219,209,0)" fg:x="16685" fg:w="1940"/><text x="11.2951%" y="831.50"></text></g><g><title>PhaseBlockLayout::find_edges (54 samples, 0.04%)</title><rect x="12.3300%" y="805" width="0.0357%" height="15" fill="rgb(240,116,54)" fg:x="18626" fg:w="54"/><text x="12.5800%" y="815.50"></text></g><g><title>PhaseBlockLayout::grow_traces (39 samples, 0.03%)</title><rect x="12.3658%" y="805" width="0.0258%" height="15" fill="rgb(216,10,36)" fg:x="18680" fg:w="39"/><text x="12.6158%" y="815.50"></text></g><g><title>__GI___qsort_r (26 samples, 0.02%)</title><rect x="12.3744%" y="789" width="0.0172%" height="15" fill="rgb(222,72,44)" fg:x="18693" fg:w="26"/><text x="12.6244%" y="799.50"></text></g><g><title>msort_with_tmp (25 samples, 0.02%)</title><rect x="12.3751%" y="773" width="0.0165%" height="15" fill="rgb(232,159,9)" fg:x="18694" fg:w="25"/><text x="12.6251%" y="783.50"></text></g><g><title>msort_with_tmp (25 samples, 0.02%)</title><rect x="12.3751%" y="757" width="0.0165%" height="15" fill="rgb(210,39,32)" fg:x="18694" fg:w="25"/><text x="12.6251%" y="767.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.3764%" y="741" width="0.0152%" height="15" fill="rgb(216,194,45)" fg:x="18696" fg:w="23"/><text x="12.6264%" y="751.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.3764%" y="725" width="0.0152%" height="15" fill="rgb(218,18,35)" fg:x="18696" fg:w="23"/><text x="12.6264%" y="735.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="12.3770%" y="709" width="0.0146%" height="15" fill="rgb(207,83,51)" fg:x="18697" fg:w="22"/><text x="12.6270%" y="719.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="12.3770%" y="693" width="0.0146%" height="15" fill="rgb(225,63,43)" fg:x="18697" fg:w="22"/><text x="12.6270%" y="703.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.3790%" y="677" width="0.0126%" height="15" fill="rgb(207,57,36)" fg:x="18700" fg:w="19"/><text x="12.6290%" y="687.50"></text></g><g><title>msort_with_tmp (18 samples, 0.01%)</title><rect x="12.3797%" y="661" width="0.0119%" height="15" fill="rgb(216,99,33)" fg:x="18701" fg:w="18"/><text x="12.6297%" y="671.50"></text></g><g><title>Trace::fixup_blocks (16 samples, 0.01%)</title><rect x="12.3995%" y="789" width="0.0106%" height="15" fill="rgb(225,42,16)" fg:x="18731" fg:w="16"/><text x="12.6495%" y="799.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (18 samples, 0.01%)</title><rect x="12.3995%" y="805" width="0.0119%" height="15" fill="rgb(220,201,45)" fg:x="18731" fg:w="18"/><text x="12.6495%" y="815.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (125 samples, 0.08%)</title><rect x="12.3294%" y="821" width="0.0827%" height="15" fill="rgb(225,33,4)" fg:x="18625" fg:w="125"/><text x="12.5794%" y="831.50"></text></g><g><title>Node::clone (19 samples, 0.01%)</title><rect x="12.4591%" y="789" width="0.0126%" height="15" fill="rgb(224,33,50)" fg:x="18821" fg:w="19"/><text x="12.7091%" y="799.50"></text></g><g><title>PhaseCFG::PhaseCFG (105 samples, 0.07%)</title><rect x="12.4121%" y="821" width="0.0695%" height="15" fill="rgb(246,198,51)" fg:x="18750" fg:w="105"/><text x="12.6621%" y="831.50"></text></g><g><title>PhaseCFG::build_cfg (99 samples, 0.07%)</title><rect x="12.4161%" y="805" width="0.0655%" height="15" fill="rgb(205,22,4)" fg:x="18756" fg:w="99"/><text x="12.6661%" y="815.50"></text></g><g><title>Block_Stack::most_frequent_successor (17 samples, 0.01%)</title><rect x="12.5061%" y="773" width="0.0113%" height="15" fill="rgb(206,3,8)" fg:x="18892" fg:w="17"/><text x="12.7561%" y="783.50"></text></g><g><title>PhaseCFG::do_DFS (24 samples, 0.02%)</title><rect x="12.5022%" y="789" width="0.0159%" height="15" fill="rgb(251,23,15)" fg:x="18886" fg:w="24"/><text x="12.7522%" y="799.50"></text></g><g><title>PhaseCFG::build_dominator_tree (56 samples, 0.04%)</title><rect x="12.4816%" y="805" width="0.0371%" height="15" fill="rgb(252,88,28)" fg:x="18855" fg:w="56"/><text x="12.7316%" y="815.50"></text></g><g><title>CFGLoop::compute_freq (21 samples, 0.01%)</title><rect x="12.5233%" y="789" width="0.0139%" height="15" fill="rgb(212,127,14)" fg:x="18918" fg:w="21"/><text x="12.7733%" y="799.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (39 samples, 0.03%)</title><rect x="12.5187%" y="805" width="0.0258%" height="15" fill="rgb(247,145,37)" fg:x="18911" fg:w="39"/><text x="12.7687%" y="815.50"></text></g><g><title>PhaseCFG::call_catch_cleanup (19 samples, 0.01%)</title><rect x="12.7034%" y="789" width="0.0126%" height="15" fill="rgb(209,117,53)" fg:x="19190" fg:w="19"/><text x="12.9534%" y="799.50"></text></g><g><title>PhaseCFG::implicit_null_check (32 samples, 0.02%)</title><rect x="12.7160%" y="789" width="0.0212%" height="15" fill="rgb(212,90,42)" fg:x="19209" fg:w="32"/><text x="12.9660%" y="799.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (33 samples, 0.02%)</title><rect x="12.7372%" y="789" width="0.0218%" height="15" fill="rgb(218,164,37)" fg:x="19241" fg:w="33"/><text x="12.9872%" y="799.50"></text></g><g><title>Node_Backward_Iterator::next (187 samples, 0.12%)</title><rect x="12.8126%" y="773" width="0.1238%" height="15" fill="rgb(246,65,34)" fg:x="19355" fg:w="187"/><text x="13.0626%" y="783.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (88 samples, 0.06%)</title><rect x="12.9364%" y="773" width="0.0583%" height="15" fill="rgb(231,100,33)" fg:x="19542" fg:w="88"/><text x="13.1864%" y="783.50"></text></g><g><title>MachNode::adr_type (21 samples, 0.01%)</title><rect x="13.0264%" y="757" width="0.0139%" height="15" fill="rgb(228,126,14)" fg:x="19678" fg:w="21"/><text x="13.2764%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (84 samples, 0.06%)</title><rect x="12.9947%" y="773" width="0.0556%" height="15" fill="rgb(215,173,21)" fg:x="19630" fg:w="84"/><text x="13.2447%" y="783.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (35 samples, 0.02%)</title><rect x="13.0503%" y="773" width="0.0232%" height="15" fill="rgb(210,6,40)" fg:x="19714" fg:w="35"/><text x="13.3003%" y="783.50"></text></g><g><title>PhaseCFG::schedule_late (481 samples, 0.32%)</title><rect x="12.7590%" y="789" width="0.3184%" height="15" fill="rgb(212,48,18)" fg:x="19274" fg:w="481"/><text x="13.0090%" y="799.50"></text></g><g><title>Node::is_iteratively_computed (16 samples, 0.01%)</title><rect x="13.1952%" y="773" width="0.0106%" height="15" fill="rgb(230,214,11)" fg:x="19933" fg:w="16"/><text x="13.4452%" y="783.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (32 samples, 0.02%)</title><rect x="13.2058%" y="773" width="0.0212%" height="15" fill="rgb(254,105,39)" fg:x="19949" fg:w="32"/><text x="13.4558%" y="783.50"></text></g><g><title>PhaseCFG::needed_for_next_call (18 samples, 0.01%)</title><rect x="13.2270%" y="773" width="0.0119%" height="15" fill="rgb(245,158,5)" fg:x="19981" fg:w="18"/><text x="13.4770%" y="783.50"></text></g><g><title>PhaseCFG::select (71 samples, 0.05%)</title><rect x="13.2389%" y="773" width="0.0470%" height="15" fill="rgb(249,208,11)" fg:x="19999" fg:w="71"/><text x="13.4889%" y="783.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (52 samples, 0.03%)</title><rect x="13.2859%" y="773" width="0.0344%" height="15" fill="rgb(210,39,28)" fg:x="20070" fg:w="52"/><text x="13.5359%" y="783.50"></text></g><g><title>PhaseChaitin::raise_pressure (28 samples, 0.02%)</title><rect x="13.3018%" y="757" width="0.0185%" height="15" fill="rgb(211,56,53)" fg:x="20094" fg:w="28"/><text x="13.5518%" y="767.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (38 samples, 0.03%)</title><rect x="13.3204%" y="773" width="0.0252%" height="15" fill="rgb(226,201,30)" fg:x="20122" fg:w="38"/><text x="13.5704%" y="783.50"></text></g><g><title>PhaseCFG::schedule_local (412 samples, 0.27%)</title><rect x="13.0774%" y="789" width="0.2727%" height="15" fill="rgb(239,101,34)" fg:x="19755" fg:w="412"/><text x="13.3274%" y="799.50"></text></g><g><title>RegMask::Size (72 samples, 0.05%)</title><rect x="13.4958%" y="773" width="0.0477%" height="15" fill="rgb(226,209,5)" fg:x="20387" fg:w="72"/><text x="13.7458%" y="783.50"></text></g><g><title>RegMask::clear_to_sets (17 samples, 0.01%)</title><rect x="13.5434%" y="773" width="0.0113%" height="15" fill="rgb(250,105,47)" fg:x="20459" fg:w="17"/><text x="13.7934%" y="783.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (324 samples, 0.21%)</title><rect x="13.3680%" y="789" width="0.2145%" height="15" fill="rgb(230,72,3)" fg:x="20194" fg:w="324"/><text x="13.6180%" y="799.50"></text></g><g><title>PhaseChaitin::mark_ssa (66 samples, 0.04%)</title><rect x="13.5825%" y="789" width="0.0437%" height="15" fill="rgb(232,218,39)" fg:x="20518" fg:w="66"/><text x="13.8325%" y="799.50"></text></g><g><title>IndexSet::initialize (83 samples, 0.05%)</title><rect x="13.6474%" y="773" width="0.0549%" height="15" fill="rgb(248,166,6)" fg:x="20616" fg:w="83"/><text x="13.8974%" y="783.50"></text></g><g><title>PhaseIFG::init (143 samples, 0.09%)</title><rect x="13.6262%" y="789" width="0.0947%" height="15" fill="rgb(247,89,20)" fg:x="20584" fg:w="143"/><text x="13.8762%" y="799.50"></text></g><g><title>[libc-2.31.so] (28 samples, 0.02%)</title><rect x="13.7023%" y="773" width="0.0185%" height="15" fill="rgb(248,130,54)" fg:x="20699" fg:w="28"/><text x="13.9523%" y="783.50"></text></g><g><title>IndexSet::initialize (47 samples, 0.03%)</title><rect x="13.8387%" y="773" width="0.0311%" height="15" fill="rgb(234,196,4)" fg:x="20905" fg:w="47"/><text x="14.0887%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (31 samples, 0.02%)</title><rect x="13.9089%" y="757" width="0.0205%" height="15" fill="rgb(250,143,31)" fg:x="21011" fg:w="31"/><text x="14.1589%" y="767.50"></text></g><g><title>PhaseLive::add_livein (134 samples, 0.09%)</title><rect x="13.8698%" y="773" width="0.0887%" height="15" fill="rgb(211,110,34)" fg:x="20952" fg:w="134"/><text x="14.1198%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (44 samples, 0.03%)</title><rect x="13.9294%" y="757" width="0.0291%" height="15" fill="rgb(215,124,48)" fg:x="21042" fg:w="44"/><text x="14.1794%" y="767.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="14.0677%" y="741" width="0.0106%" height="15" fill="rgb(216,46,13)" fg:x="21251" fg:w="16"/><text x="14.3177%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (49 samples, 0.03%)</title><rect x="14.0492%" y="757" width="0.0324%" height="15" fill="rgb(205,184,25)" fg:x="21223" fg:w="49"/><text x="14.2992%" y="767.50"></text></g><g><title>PhaseLive::add_liveout (269 samples, 0.18%)</title><rect x="13.9585%" y="773" width="0.1781%" height="15" fill="rgb(228,1,10)" fg:x="21086" fg:w="269"/><text x="14.2085%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (69 samples, 0.05%)</title><rect x="14.0909%" y="757" width="0.0457%" height="15" fill="rgb(213,116,27)" fg:x="21286" fg:w="69"/><text x="14.3409%" y="767.50"></text></g><g><title>PhaseLive::compute (629 samples, 0.42%)</title><rect x="13.7209%" y="789" width="0.4164%" height="15" fill="rgb(241,95,50)" fg:x="20727" fg:w="629"/><text x="13.9709%" y="799.50"></text></g><g><title>PhaseCFG::do_global_code_motion (2,515 samples, 1.66%)</title><rect x="12.4816%" y="821" width="1.6649%" height="15" fill="rgb(238,48,32)" fg:x="18855" fg:w="2515"/><text x="12.7316%" y="831.50"></text></g><g><title>PhaseCFG::global_code_motion (2,420 samples, 1.60%)</title><rect x="12.5445%" y="805" width="1.6020%" height="15" fill="rgb(235,113,49)" fg:x="18950" fg:w="2420"/><text x="12.7945%" y="815.50"></text></g><g><title>PhaseCFG::fixup_flow (16 samples, 0.01%)</title><rect x="14.1465%" y="821" width="0.0106%" height="15" fill="rgb(205,127,43)" fg:x="21370" fg:w="16"/><text x="14.3965%" y="831.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (50 samples, 0.03%)</title><rect x="14.1571%" y="821" width="0.0331%" height="15" fill="rgb(250,162,2)" fg:x="21386" fg:w="50"/><text x="14.4071%" y="831.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (845 samples, 0.56%)</title><rect x="14.2637%" y="805" width="0.5594%" height="15" fill="rgb(220,13,41)" fg:x="21547" fg:w="845"/><text x="14.5137%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (189 samples, 0.13%)</title><rect x="15.1123%" y="789" width="0.1251%" height="15" fill="rgb(249,221,25)" fg:x="22829" fg:w="189"/><text x="15.3623%" y="799.50"></text></g><g><title>RegMask::find_first_set (19 samples, 0.01%)</title><rect x="15.2811%" y="773" width="0.0126%" height="15" fill="rgb(215,208,19)" fg:x="23084" fg:w="19"/><text x="15.5311%" y="783.50"></text></g><g><title>PhaseChaitin::bias_color (97 samples, 0.06%)</title><rect x="15.2375%" y="789" width="0.0642%" height="15" fill="rgb(236,175,2)" fg:x="23018" fg:w="97"/><text x="15.4875%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (27 samples, 0.02%)</title><rect x="15.4493%" y="773" width="0.0179%" height="15" fill="rgb(241,52,2)" fg:x="23338" fg:w="27"/><text x="15.6993%" y="783.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (43 samples, 0.03%)</title><rect x="15.4672%" y="773" width="0.0285%" height="15" fill="rgb(248,140,14)" fg:x="23365" fg:w="43"/><text x="15.7172%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (240 samples, 0.16%)</title><rect x="15.4956%" y="773" width="0.1589%" height="15" fill="rgb(253,22,42)" fg:x="23408" fg:w="240"/><text x="15.7456%" y="783.50"></text></g><g><title>PhaseIFG::re_insert (540 samples, 0.36%)</title><rect x="15.3050%" y="789" width="0.3575%" height="15" fill="rgb(234,61,47)" fg:x="23120" fg:w="540"/><text x="15.5550%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (110 samples, 0.07%)</title><rect x="15.6624%" y="789" width="0.0728%" height="15" fill="rgb(208,226,15)" fg:x="23660" fg:w="110"/><text x="15.9124%" y="799.50"></text></g><g><title>PhaseChaitin::Select (1,381 samples, 0.91%)</title><rect x="14.8231%" y="805" width="0.9142%" height="15" fill="rgb(217,221,4)" fg:x="22392" fg:w="1381"/><text x="15.0731%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (227 samples, 0.15%)</title><rect x="15.8591%" y="789" width="0.1503%" height="15" fill="rgb(212,174,34)" fg:x="23957" fg:w="227"/><text x="16.1091%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (47 samples, 0.03%)</title><rect x="16.1914%" y="773" width="0.0311%" height="15" fill="rgb(253,83,4)" fg:x="24459" fg:w="47"/><text x="16.4414%" y="783.50"></text></g><g><title>PhaseChaitin::Simplify (1,015 samples, 0.67%)</title><rect x="15.7372%" y="805" width="0.6719%" height="15" fill="rgb(250,195,49)" fg:x="23773" fg:w="1015"/><text x="15.9872%" y="815.50"></text></g><g><title>PhaseIFG::remove_node (604 samples, 0.40%)</title><rect x="16.0093%" y="789" width="0.3998%" height="15" fill="rgb(241,192,25)" fg:x="24184" fg:w="604"/><text x="16.2593%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (282 samples, 0.19%)</title><rect x="16.2225%" y="773" width="0.1867%" height="15" fill="rgb(208,124,10)" fg:x="24506" fg:w="282"/><text x="16.4725%" y="783.50"></text></g><g><title>MachNode::rematerialize (107 samples, 0.07%)</title><rect x="17.6398%" y="789" width="0.0708%" height="15" fill="rgb(222,33,0)" fg:x="26647" fg:w="107"/><text x="17.8898%" y="799.50"></text></g><g><title>Node::rematerialize (99 samples, 0.07%)</title><rect x="17.7291%" y="789" width="0.0655%" height="15" fill="rgb(234,209,28)" fg:x="26782" fg:w="99"/><text x="17.9791%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (18 samples, 0.01%)</title><rect x="17.8284%" y="773" width="0.0119%" height="15" fill="rgb(224,11,23)" fg:x="26932" fg:w="18"/><text x="18.0784%" y="783.50"></text></g><g><title>PhaseChaitin::split_DEF (25 samples, 0.02%)</title><rect x="17.8258%" y="789" width="0.0165%" height="15" fill="rgb(232,99,1)" fg:x="26928" fg:w="25"/><text x="18.0758%" y="799.50"></text></g><g><title>PhaseChaitin::clone_projs (17 samples, 0.01%)</title><rect x="17.8509%" y="773" width="0.0113%" height="15" fill="rgb(237,95,45)" fg:x="26966" fg:w="17"/><text x="18.1009%" y="783.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (34 samples, 0.02%)</title><rect x="17.8423%" y="789" width="0.0225%" height="15" fill="rgb(208,109,11)" fg:x="26953" fg:w="34"/><text x="18.0923%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (28 samples, 0.02%)</title><rect x="17.9006%" y="757" width="0.0185%" height="15" fill="rgb(216,190,48)" fg:x="27041" fg:w="28"/><text x="18.1506%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (55 samples, 0.04%)</title><rect x="17.8854%" y="773" width="0.0364%" height="15" fill="rgb(251,171,36)" fg:x="27018" fg:w="55"/><text x="18.1354%" y="783.50"></text></g><g><title>PhaseChaitin::insert_proj (20 samples, 0.01%)</title><rect x="17.9218%" y="773" width="0.0132%" height="15" fill="rgb(230,62,22)" fg:x="27073" fg:w="20"/><text x="18.1718%" y="783.50"></text></g><g><title>PhaseChaitin::split_USE (109 samples, 0.07%)</title><rect x="17.8649%" y="789" width="0.0722%" height="15" fill="rgb(225,114,35)" fg:x="26987" fg:w="109"/><text x="18.1149%" y="799.50"></text></g><g><title>RegMask::Size (18 samples, 0.01%)</title><rect x="17.9423%" y="789" width="0.0119%" height="15" fill="rgb(215,118,42)" fg:x="27104" fg:w="18"/><text x="18.1923%" y="799.50"></text></g><g><title>PhaseChaitin::Split (2,361 samples, 1.56%)</title><rect x="16.4092%" y="805" width="1.5629%" height="15" fill="rgb(243,119,21)" fg:x="24788" fg:w="2361"/><text x="16.6592%" y="815.50"></text></g><g><title>_dl_update_slotinfo (16 samples, 0.01%)</title><rect x="18.4871%" y="741" width="0.0106%" height="15" fill="rgb(252,177,53)" fg:x="27927" fg:w="16"/><text x="18.7371%" y="751.50"></text></g><g><title>IndexSet::IndexSet (210 samples, 0.14%)</title><rect x="18.3593%" y="789" width="0.1390%" height="15" fill="rgb(237,209,29)" fg:x="27734" fg:w="210"/><text x="18.6093%" y="799.50"></text></g><g><title>__tls_get_addr (28 samples, 0.02%)</title><rect x="18.4798%" y="773" width="0.0185%" height="15" fill="rgb(212,65,23)" fg:x="27916" fg:w="28"/><text x="18.7298%" y="783.50"></text></g><g><title>update_get_addr (18 samples, 0.01%)</title><rect x="18.4864%" y="757" width="0.0119%" height="15" fill="rgb(230,222,46)" fg:x="27926" fg:w="18"/><text x="18.7364%" y="767.50"></text></g><g><title>MachNode::rematerialize (39 samples, 0.03%)</title><rect x="18.5096%" y="789" width="0.0258%" height="15" fill="rgb(215,135,32)" fg:x="27961" fg:w="39"/><text x="18.7596%" y="799.50"></text></g><g><title>JVMState::debug_start (25 samples, 0.02%)</title><rect x="18.7420%" y="773" width="0.0165%" height="15" fill="rgb(246,101,22)" fg:x="28312" fg:w="25"/><text x="18.9920%" y="783.50"></text></g><g><title>MachNode::ideal_reg (16 samples, 0.01%)</title><rect x="18.7910%" y="757" width="0.0106%" height="15" fill="rgb(206,107,13)" fg:x="28386" fg:w="16"/><text x="19.0410%" y="767.50"></text></g><g><title>MachNode::rematerialize (66 samples, 0.04%)</title><rect x="18.7605%" y="773" width="0.0437%" height="15" fill="rgb(250,100,44)" fg:x="28340" fg:w="66"/><text x="19.0105%" y="783.50"></text></g><g><title>PhaseChaitin::raise_pressure (95 samples, 0.06%)</title><rect x="18.8102%" y="773" width="0.0629%" height="15" fill="rgb(231,147,38)" fg:x="28415" fg:w="95"/><text x="19.0602%" y="783.50"></text></g><g><title>RegMask::is_UP (40 samples, 0.03%)</title><rect x="18.8466%" y="757" width="0.0265%" height="15" fill="rgb(229,8,40)" fg:x="28470" fg:w="40"/><text x="19.0966%" y="767.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (499 samples, 0.33%)</title><rect x="18.5440%" y="789" width="0.3303%" height="15" fill="rgb(221,135,30)" fg:x="28013" fg:w="499"/><text x="18.7940%" y="799.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (44 samples, 0.03%)</title><rect x="18.8744%" y="789" width="0.0291%" height="15" fill="rgb(249,193,18)" fg:x="28512" fg:w="44"/><text x="19.1244%" y="799.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (38 samples, 0.03%)</title><rect x="18.9035%" y="789" width="0.0252%" height="15" fill="rgb(209,133,39)" fg:x="28556" fg:w="38"/><text x="19.1535%" y="799.50"></text></g><g><title>RegMask::Size (26 samples, 0.02%)</title><rect x="18.9114%" y="773" width="0.0172%" height="15" fill="rgb(232,100,14)" fg:x="28568" fg:w="26"/><text x="19.1614%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (122 samples, 0.08%)</title><rect x="19.0465%" y="773" width="0.0808%" height="15" fill="rgb(224,185,1)" fg:x="28772" fg:w="122"/><text x="19.2965%" y="783.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (377 samples, 0.25%)</title><rect x="18.9287%" y="789" width="0.2496%" height="15" fill="rgb(223,139,8)" fg:x="28594" fg:w="377"/><text x="19.1787%" y="799.50"></text></g><g><title>RegMask::is_UP (77 samples, 0.05%)</title><rect x="19.1272%" y="773" width="0.0510%" height="15" fill="rgb(232,213,38)" fg:x="28894" fg:w="77"/><text x="19.3772%" y="783.50"></text></g><g><title>__tls_get_addr (24 samples, 0.02%)</title><rect x="20.1004%" y="757" width="0.0159%" height="15" fill="rgb(207,94,22)" fg:x="30364" fg:w="24"/><text x="20.3504%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (76 samples, 0.05%)</title><rect x="20.0692%" y="773" width="0.0503%" height="15" fill="rgb(219,183,54)" fg:x="30317" fg:w="76"/><text x="20.3192%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (569 samples, 0.38%)</title><rect x="20.1235%" y="773" width="0.3767%" height="15" fill="rgb(216,185,54)" fg:x="30399" fg:w="569"/><text x="20.3735%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (1,999 samples, 1.32%)</title><rect x="19.1782%" y="789" width="1.3233%" height="15" fill="rgb(254,217,39)" fg:x="28971" fg:w="1999"/><text x="19.4282%" y="799.50"></text></g><g><title>PhaseChaitin::lower_pressure (68 samples, 0.05%)</title><rect x="20.5015%" y="789" width="0.0450%" height="15" fill="rgb(240,178,23)" fg:x="30970" fg:w="68"/><text x="20.7515%" y="799.50"></text></g><g><title>RegMask::is_UP (30 samples, 0.02%)</title><rect x="20.5267%" y="773" width="0.0199%" height="15" fill="rgb(218,11,47)" fg:x="31008" fg:w="30"/><text x="20.7767%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (137 samples, 0.09%)</title><rect x="20.7683%" y="773" width="0.0907%" height="15" fill="rgb(218,51,51)" fg:x="31373" fg:w="137"/><text x="21.0183%" y="783.50"></text></g><g><title>RegMask::Size (212 samples, 0.14%)</title><rect x="20.8590%" y="773" width="0.1403%" height="15" fill="rgb(238,126,27)" fg:x="31510" fg:w="212"/><text x="21.1090%" y="783.50"></text></g><g><title>RegMask::smear_to_sets (460 samples, 0.30%)</title><rect x="20.9993%" y="773" width="0.3045%" height="15" fill="rgb(249,202,22)" fg:x="31722" fg:w="460"/><text x="21.2493%" y="783.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,154 samples, 0.76%)</title><rect x="20.5465%" y="789" width="0.7639%" height="15" fill="rgb(254,195,49)" fg:x="31038" fg:w="1154"/><text x="20.7965%" y="799.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (21 samples, 0.01%)</title><rect x="21.3105%" y="789" width="0.0139%" height="15" fill="rgb(208,123,14)" fg:x="32192" fg:w="21"/><text x="21.5605%" y="799.50"></text></g><g><title>RegMask::smear_to_sets (38 samples, 0.03%)</title><rect x="21.3336%" y="789" width="0.0252%" height="15" fill="rgb(224,200,8)" fg:x="32227" fg:w="38"/><text x="21.5836%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (5,117 samples, 3.39%)</title><rect x="17.9741%" y="805" width="3.3874%" height="15" fill="rgb(217,61,36)" fg:x="27152" fg:w="5117"/><text x="18.2241%" y="815.50">Pha..</text></g><g><title>IndexSetIterator::advance_and_next (50 samples, 0.03%)</title><rect x="21.5501%" y="773" width="0.0331%" height="15" fill="rgb(206,35,45)" fg:x="32554" fg:w="50"/><text x="21.8001%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (240 samples, 0.16%)</title><rect x="21.4289%" y="789" width="0.1589%" height="15" fill="rgb(217,65,33)" fg:x="32371" fg:w="240"/><text x="21.6789%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (345 samples, 0.23%)</title><rect x="21.3614%" y="805" width="0.2284%" height="15" fill="rgb(222,158,48)" fg:x="32269" fg:w="345"/><text x="21.6114%" y="815.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (85 samples, 0.06%)</title><rect x="21.5898%" y="805" width="0.0563%" height="15" fill="rgb(254,2,54)" fg:x="32614" fg:w="85"/><text x="21.8398%" y="815.50"></text></g><g><title>find_hihghest_bit (33 samples, 0.02%)</title><rect x="21.6242%" y="789" width="0.0218%" height="15" fill="rgb(250,143,38)" fg:x="32666" fg:w="33"/><text x="21.8742%" y="799.50"></text></g><g><title>PhaseChaitin::compact (42 samples, 0.03%)</title><rect x="21.6461%" y="805" width="0.0278%" height="15" fill="rgb(248,25,0)" fg:x="32699" fg:w="42"/><text x="21.8961%" y="815.50"></text></g><g><title>PhaseChaitin::de_ssa (59 samples, 0.04%)</title><rect x="21.6739%" y="805" width="0.0391%" height="15" fill="rgb(206,152,27)" fg:x="32741" fg:w="59"/><text x="21.9239%" y="815.50"></text></g><g><title>PhaseChaitin::fixup_spills (47 samples, 0.03%)</title><rect x="21.7136%" y="805" width="0.0311%" height="15" fill="rgb(240,77,30)" fg:x="32801" fg:w="47"/><text x="21.9636%" y="815.50"></text></g><g><title>MachCallJavaNode::in_RegMask (42 samples, 0.03%)</title><rect x="22.5927%" y="789" width="0.0278%" height="15" fill="rgb(231,5,3)" fg:x="34129" fg:w="42"/><text x="22.8427%" y="799.50"></text></g><g><title>MachNode::ideal_reg (69 samples, 0.05%)</title><rect x="22.6225%" y="789" width="0.0457%" height="15" fill="rgb(207,226,32)" fg:x="34174" fg:w="69"/><text x="22.8725%" y="799.50"></text></g><g><title>MachNode::in_RegMask (29 samples, 0.02%)</title><rect x="22.6682%" y="789" width="0.0192%" height="15" fill="rgb(222,207,47)" fg:x="34243" fg:w="29"/><text x="22.9182%" y="799.50"></text></g><g><title>MachProjNode::bottom_type (26 samples, 0.02%)</title><rect x="22.6900%" y="789" width="0.0172%" height="15" fill="rgb(229,115,45)" fg:x="34276" fg:w="26"/><text x="22.9400%" y="799.50"></text></g><g><title>RegMask::Size (795 samples, 0.53%)</title><rect x="22.7390%" y="789" width="0.5263%" height="15" fill="rgb(224,191,6)" fg:x="34350" fg:w="795"/><text x="22.9890%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (137 samples, 0.09%)</title><rect x="23.2653%" y="789" width="0.0907%" height="15" fill="rgb(230,227,24)" fg:x="35145" fg:w="137"/><text x="23.5153%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (55 samples, 0.04%)</title><rect x="23.3560%" y="789" width="0.0364%" height="15" fill="rgb(228,80,19)" fg:x="35282" fg:w="55"/><text x="23.6060%" y="799.50"></text></g><g><title>RegMask::is_bound1 (95 samples, 0.06%)</title><rect x="23.3924%" y="789" width="0.0629%" height="15" fill="rgb(247,229,0)" fg:x="35337" fg:w="95"/><text x="23.6424%" y="799.50"></text></g><g><title>RegMask::is_bound_pair (63 samples, 0.04%)</title><rect x="23.4553%" y="789" width="0.0417%" height="15" fill="rgb(237,194,15)" fg:x="35432" fg:w="63"/><text x="23.7053%" y="799.50"></text></g><g><title>RegMask::is_vector (21 samples, 0.01%)</title><rect x="23.4976%" y="789" width="0.0139%" height="15" fill="rgb(219,203,20)" fg:x="35496" fg:w="21"/><text x="23.7476%" y="799.50"></text></g><g><title>Type::hashcons (23 samples, 0.02%)</title><rect x="23.5115%" y="789" width="0.0152%" height="15" fill="rgb(234,128,8)" fg:x="35517" fg:w="23"/><text x="23.7615%" y="799.50"></text></g><g><title>Dict::Insert (23 samples, 0.02%)</title><rect x="23.5115%" y="773" width="0.0152%" height="15" fill="rgb(248,202,8)" fg:x="35517" fg:w="23"/><text x="23.7615%" y="783.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,754 samples, 1.82%)</title><rect x="21.7447%" y="805" width="1.8231%" height="15" fill="rgb(206,104,37)" fg:x="32848" fg:w="2754"/><text x="21.9947%" y="815.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (384 samples, 0.25%)</title><rect x="23.5678%" y="805" width="0.2542%" height="15" fill="rgb(223,8,27)" fg:x="35602" fg:w="384"/><text x="23.8178%" y="815.50"></text></g><g><title>Node::replace_by (25 samples, 0.02%)</title><rect x="24.6601%" y="789" width="0.0165%" height="15" fill="rgb(216,217,28)" fg:x="37252" fg:w="25"/><text x="24.9101%" y="799.50"></text></g><g><title>MachCallJavaNode::in_RegMask (16 samples, 0.01%)</title><rect x="25.4564%" y="757" width="0.0106%" height="15" fill="rgb(249,199,1)" fg:x="38455" fg:w="16"/><text x="25.7064%" y="767.50"></text></g><g><title>RegMask::Size (21 samples, 0.01%)</title><rect x="25.4684%" y="757" width="0.0139%" height="15" fill="rgb(240,85,17)" fg:x="38473" fg:w="21"/><text x="25.7184%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (63 samples, 0.04%)</title><rect x="25.4472%" y="773" width="0.0417%" height="15" fill="rgb(206,108,45)" fg:x="38441" fg:w="63"/><text x="25.6972%" y="783.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (20 samples, 0.01%)</title><rect x="25.4889%" y="773" width="0.0132%" height="15" fill="rgb(245,210,41)" fg:x="38504" fg:w="20"/><text x="25.7389%" y="783.50"></text></g><g><title>PhaseChaitin::elide_copy (1,248 samples, 0.83%)</title><rect x="24.6826%" y="789" width="0.8262%" height="15" fill="rgb(206,13,37)" fg:x="37286" fg:w="1248"/><text x="24.9326%" y="799.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (29 samples, 0.02%)</title><rect x="25.5101%" y="789" width="0.0192%" height="15" fill="rgb(250,61,18)" fg:x="38536" fg:w="29"/><text x="25.7601%" y="799.50"></text></g><g><title>[libc-2.31.so] (56 samples, 0.04%)</title><rect x="25.5332%" y="789" width="0.0371%" height="15" fill="rgb(235,172,48)" fg:x="38571" fg:w="56"/><text x="25.7832%" y="799.50"></text></g><g><title>find_lowest_bit (247 samples, 0.16%)</title><rect x="25.5743%" y="789" width="0.1635%" height="15" fill="rgb(249,201,17)" fg:x="38633" fg:w="247"/><text x="25.8243%" y="799.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (2,897 samples, 1.92%)</title><rect x="23.8227%" y="805" width="1.9178%" height="15" fill="rgb(219,208,6)" fg:x="35987" fg:w="2897"/><text x="24.0727%" y="815.50">P..</text></g><g><title>IndexSet::IndexSet (26 samples, 0.02%)</title><rect x="25.8099%" y="789" width="0.0172%" height="15" fill="rgb(248,31,23)" fg:x="38989" fg:w="26"/><text x="26.0599%" y="799.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (158 samples, 0.10%)</title><rect x="25.7417%" y="805" width="0.1046%" height="15" fill="rgb(245,15,42)" fg:x="38886" fg:w="158"/><text x="25.9917%" y="815.50"></text></g><g><title>PhaseIFG::Union (42 samples, 0.03%)</title><rect x="25.8907%" y="757" width="0.0278%" height="15" fill="rgb(222,217,39)" fg:x="39111" fg:w="42"/><text x="26.1407%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (108 samples, 0.07%)</title><rect x="25.8477%" y="789" width="0.0715%" height="15" fill="rgb(210,219,27)" fg:x="39046" fg:w="108"/><text x="26.0977%" y="799.50"></text></g><g><title>PhaseCoalesce::combine_these_two (55 samples, 0.04%)</title><rect x="25.8828%" y="773" width="0.0364%" height="15" fill="rgb(252,166,36)" fg:x="39099" fg:w="55"/><text x="26.1328%" y="783.50"></text></g><g><title>PhaseCFG::is_uncommon (90 samples, 0.06%)</title><rect x="25.9483%" y="773" width="0.0596%" height="15" fill="rgb(245,132,34)" fg:x="39198" fg:w="90"/><text x="26.1983%" y="783.50"></text></g><g><title>Block::has_uncommon_code (23 samples, 0.02%)</title><rect x="25.9926%" y="757" width="0.0152%" height="15" fill="rgb(236,54,3)" fg:x="39265" fg:w="23"/><text x="26.2426%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (20 samples, 0.01%)</title><rect x="26.1158%" y="741" width="0.0132%" height="15" fill="rgb(241,173,43)" fg:x="39451" fg:w="20"/><text x="26.3658%" y="751.50"></text></g><g><title>IndexSet::lrg_union (163 samples, 0.11%)</title><rect x="26.0251%" y="757" width="0.1079%" height="15" fill="rgb(215,190,9)" fg:x="39314" fg:w="163"/><text x="26.2751%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (16 samples, 0.01%)</title><rect x="26.2349%" y="741" width="0.0106%" height="15" fill="rgb(242,101,16)" fg:x="39631" fg:w="16"/><text x="26.4849%" y="751.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (167 samples, 0.11%)</title><rect x="26.1356%" y="757" width="0.1106%" height="15" fill="rgb(223,190,21)" fg:x="39481" fg:w="167"/><text x="26.3856%" y="767.50"></text></g><g><title>PhaseIFG::effective_degree (49 samples, 0.03%)</title><rect x="26.2462%" y="757" width="0.0324%" height="15" fill="rgb(215,228,25)" fg:x="39648" fg:w="49"/><text x="26.4962%" y="767.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (668 samples, 0.44%)</title><rect x="25.8463%" y="805" width="0.4422%" height="15" fill="rgb(225,36,22)" fg:x="39044" fg:w="668"/><text x="26.0963%" y="815.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (558 samples, 0.37%)</title><rect x="25.9192%" y="789" width="0.3694%" height="15" fill="rgb(251,106,46)" fg:x="39154" fg:w="558"/><text x="26.1692%" y="799.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (424 samples, 0.28%)</title><rect x="26.0079%" y="773" width="0.2807%" height="15" fill="rgb(208,90,1)" fg:x="39288" fg:w="424"/><text x="26.2579%" y="783.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (32 samples, 0.02%)</title><rect x="26.4653%" y="789" width="0.0212%" height="15" fill="rgb(243,10,4)" fg:x="39979" fg:w="32"/><text x="26.7153%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (320 samples, 0.21%)</title><rect x="26.4865%" y="789" width="0.2118%" height="15" fill="rgb(212,137,27)" fg:x="40011" fg:w="320"/><text x="26.7365%" y="799.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (620 samples, 0.41%)</title><rect x="26.2885%" y="805" width="0.4104%" height="15" fill="rgb(231,220,49)" fg:x="39712" fg:w="620"/><text x="26.5385%" y="815.50"></text></g><g><title>IndexSet::alloc_block_containing (27 samples, 0.02%)</title><rect x="26.8671%" y="789" width="0.0179%" height="15" fill="rgb(237,96,20)" fg:x="40586" fg:w="27"/><text x="27.1171%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (54 samples, 0.04%)</title><rect x="26.8850%" y="789" width="0.0357%" height="15" fill="rgb(239,229,30)" fg:x="40613" fg:w="54"/><text x="27.1350%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (276 samples, 0.18%)</title><rect x="26.9207%" y="789" width="0.1827%" height="15" fill="rgb(219,65,33)" fg:x="40667" fg:w="276"/><text x="27.1707%" y="799.50"></text></g><g><title>PhaseIFG::SquareUp (612 samples, 0.41%)</title><rect x="26.6990%" y="805" width="0.4051%" height="15" fill="rgb(243,134,7)" fg:x="40332" fg:w="612"/><text x="26.9490%" y="815.50"></text></g><g><title>IndexSet::initialize (139 samples, 0.09%)</title><rect x="27.1663%" y="789" width="0.0920%" height="15" fill="rgb(216,177,54)" fg:x="41038" fg:w="139"/><text x="27.4163%" y="799.50"></text></g><g><title>[libc-2.31.so] (42 samples, 0.03%)</title><rect x="27.2583%" y="789" width="0.0278%" height="15" fill="rgb(211,160,20)" fg:x="41177" fg:w="42"/><text x="27.5083%" y="799.50"></text></g><g><title>PhaseIFG::init (276 samples, 0.18%)</title><rect x="27.1041%" y="805" width="0.1827%" height="15" fill="rgb(239,85,39)" fg:x="40944" fg:w="276"/><text x="27.3541%" y="815.50"></text></g><g><title>__tls_get_addr (18 samples, 0.01%)</title><rect x="27.8647%" y="773" width="0.0119%" height="15" fill="rgb(232,125,22)" fg:x="42093" fg:w="18"/><text x="28.1147%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (51 samples, 0.03%)</title><rect x="27.8449%" y="789" width="0.0338%" height="15" fill="rgb(244,57,34)" fg:x="42063" fg:w="51"/><text x="28.0949%" y="799.50"></text></g><g><title>IndexSet::free_block (35 samples, 0.02%)</title><rect x="27.8786%" y="789" width="0.0232%" height="15" fill="rgb(214,203,32)" fg:x="42114" fg:w="35"/><text x="28.1286%" y="799.50"></text></g><g><title>IndexSet::initialize (84 samples, 0.06%)</title><rect x="27.9018%" y="789" width="0.0556%" height="15" fill="rgb(207,58,43)" fg:x="42149" fg:w="84"/><text x="28.1518%" y="799.50"></text></g><g><title>__tls_get_addr (39 samples, 0.03%)</title><rect x="28.3625%" y="757" width="0.0258%" height="15" fill="rgb(215,193,15)" fg:x="42845" fg:w="39"/><text x="28.6125%" y="767.50"></text></g><g><title>update_get_addr (25 samples, 0.02%)</title><rect x="28.3718%" y="741" width="0.0165%" height="15" fill="rgb(232,15,44)" fg:x="42859" fg:w="25"/><text x="28.6218%" y="751.50"></text></g><g><title>_dl_update_slotinfo (18 samples, 0.01%)</title><rect x="28.3764%" y="725" width="0.0119%" height="15" fill="rgb(212,3,48)" fg:x="42866" fg:w="18"/><text x="28.6264%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (133 samples, 0.09%)</title><rect x="28.3010%" y="773" width="0.0880%" height="15" fill="rgb(218,128,7)" fg:x="42752" fg:w="133"/><text x="28.5510%" y="783.50"></text></g><g><title>IndexSet::initialize (30 samples, 0.02%)</title><rect x="28.3890%" y="773" width="0.0199%" height="15" fill="rgb(226,216,39)" fg:x="42885" fg:w="30"/><text x="28.6390%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (205 samples, 0.14%)</title><rect x="28.4102%" y="773" width="0.1357%" height="15" fill="rgb(243,47,51)" fg:x="42917" fg:w="205"/><text x="28.6602%" y="783.50"></text></g><g><title>PhaseLive::add_liveout (899 samples, 0.60%)</title><rect x="27.9587%" y="789" width="0.5951%" height="15" fill="rgb(241,183,40)" fg:x="42235" fg:w="899"/><text x="28.2087%" y="799.50"></text></g><g><title>PhaseLive::compute (1,914 samples, 1.27%)</title><rect x="27.2901%" y="805" width="1.2670%" height="15" fill="rgb(231,217,32)" fg:x="41225" fg:w="1914"/><text x="27.5401%" y="815.50"></text></g><g><title>RegMask::Size (32 samples, 0.02%)</title><rect x="28.5605%" y="805" width="0.0212%" height="15" fill="rgb(229,61,38)" fg:x="43144" fg:w="32"/><text x="28.8105%" y="815.50"></text></g><g><title>find_lowest_bit (31 samples, 0.02%)</title><rect x="28.5929%" y="805" width="0.0205%" height="15" fill="rgb(225,210,5)" fg:x="43193" fg:w="31"/><text x="28.8429%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (21,784 samples, 14.42%)</title><rect x="14.2001%" y="821" width="14.4206%" height="15" fill="rgb(231,79,45)" fg:x="21451" fg:w="21784"/><text x="14.4501%" y="831.50">PhaseChaitin::Register..</text></g><g><title>PhasePeephole::do_transform (28 samples, 0.02%)</title><rect x="28.6227%" y="821" width="0.0185%" height="15" fill="rgb(224,100,7)" fg:x="43238" fg:w="28"/><text x="28.8727%" y="831.50"></text></g><g><title>Compile::Code_Gen (27,850 samples, 18.44%)</title><rect x="10.2064%" y="837" width="18.4361%" height="15" fill="rgb(241,198,18)" fg:x="15418" fg:w="27850"/><text x="10.4564%" y="847.50">Compile::Code_Gen</text></g><g><title>Compile::call_generator (17 samples, 0.01%)</title><rect x="28.6485%" y="549" width="0.0113%" height="15" fill="rgb(252,97,53)" fg:x="43277" fg:w="17"/><text x="28.8985%" y="559.50"></text></g><g><title>Compile::call_generator (28 samples, 0.02%)</title><rect x="28.6611%" y="453" width="0.0185%" height="15" fill="rgb(220,88,7)" fg:x="43296" fg:w="28"/><text x="28.9111%" y="463.50"></text></g><g><title>InlineTree::ok_to_inline (23 samples, 0.02%)</title><rect x="28.6644%" y="437" width="0.0152%" height="15" fill="rgb(213,176,14)" fg:x="43301" fg:w="23"/><text x="28.9144%" y="447.50"></text></g><g><title>ciMethod::get_flow_analysis (21 samples, 0.01%)</title><rect x="28.6657%" y="421" width="0.0139%" height="15" fill="rgb(246,73,7)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="431.50"></text></g><g><title>ciTypeFlow::do_flow (21 samples, 0.01%)</title><rect x="28.6657%" y="405" width="0.0139%" height="15" fill="rgb(245,64,36)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="415.50"></text></g><g><title>ciTypeFlow::flow_types (21 samples, 0.01%)</title><rect x="28.6657%" y="389" width="0.0139%" height="15" fill="rgb(245,80,10)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="399.50"></text></g><g><title>ciTypeFlow::df_flow_types (21 samples, 0.01%)</title><rect x="28.6657%" y="373" width="0.0139%" height="15" fill="rgb(232,107,50)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="383.50"></text></g><g><title>ciTypeFlow::flow_block (21 samples, 0.01%)</title><rect x="28.6657%" y="357" width="0.0139%" height="15" fill="rgb(253,3,0)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="367.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (19 samples, 0.01%)</title><rect x="28.6670%" y="341" width="0.0126%" height="15" fill="rgb(212,99,53)" fg:x="43305" fg:w="19"/><text x="28.9170%" y="351.50"></text></g><g><title>InlineTree::ok_to_inline (18 samples, 0.01%)</title><rect x="28.6902%" y="341" width="0.0119%" height="15" fill="rgb(249,111,54)" fg:x="43340" fg:w="18"/><text x="28.9402%" y="351.50"></text></g><g><title>Compile::call_generator (26 samples, 0.02%)</title><rect x="28.6862%" y="357" width="0.0172%" height="15" fill="rgb(249,55,30)" fg:x="43334" fg:w="26"/><text x="28.9362%" y="367.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="28.7802%" y="133" width="0.0119%" height="15" fill="rgb(237,47,42)" fg:x="43476" fg:w="18"/><text x="29.0302%" y="143.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="28.7802%" y="117" width="0.0119%" height="15" fill="rgb(211,20,18)" fg:x="43476" fg:w="18"/><text x="29.0302%" y="127.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="28.7809%" y="101" width="0.0113%" height="15" fill="rgb(231,203,46)" fg:x="43477" fg:w="17"/><text x="29.0309%" y="111.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="28.7756%" y="165" width="0.0199%" height="15" fill="rgb(237,142,3)" fg:x="43469" fg:w="30"/><text x="29.0256%" y="175.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="28.7756%" y="149" width="0.0199%" height="15" fill="rgb(241,107,1)" fg:x="43469" fg:w="30"/><text x="29.0256%" y="159.50"></text></g><g><title>Parse::do_call (59 samples, 0.04%)</title><rect x="28.7597%" y="181" width="0.0391%" height="15" fill="rgb(229,83,13)" fg:x="43445" fg:w="59"/><text x="29.0097%" y="191.50"></text></g><g><title>Parse::do_one_block (92 samples, 0.06%)</title><rect x="28.7564%" y="213" width="0.0609%" height="15" fill="rgb(241,91,40)" fg:x="43440" fg:w="92"/><text x="29.0064%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.06%)</title><rect x="28.7571%" y="197" width="0.0602%" height="15" fill="rgb(225,3,45)" fg:x="43441" fg:w="91"/><text x="29.0071%" y="207.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.06%)</title><rect x="28.7564%" y="229" width="0.0622%" height="15" fill="rgb(244,223,14)" fg:x="43440" fg:w="94"/><text x="29.0064%" y="239.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.07%)</title><rect x="28.7498%" y="261" width="0.0728%" height="15" fill="rgb(224,124,37)" fg:x="43430" fg:w="110"/><text x="28.9998%" y="271.50"></text></g><g><title>Parse::Parse (110 samples, 0.07%)</title><rect x="28.7498%" y="245" width="0.0728%" height="15" fill="rgb(251,171,30)" fg:x="43430" fg:w="110"/><text x="28.9998%" y="255.50"></text></g><g><title>Parse::do_call (155 samples, 0.10%)</title><rect x="28.7306%" y="277" width="0.1026%" height="15" fill="rgb(236,46,54)" fg:x="43401" fg:w="155"/><text x="28.9806%" y="287.50"></text></g><g><title>Parse::do_field_access (32 samples, 0.02%)</title><rect x="28.8345%" y="277" width="0.0212%" height="15" fill="rgb(245,213,5)" fg:x="43558" fg:w="32"/><text x="29.0845%" y="287.50"></text></g><g><title>Parse::do_one_block (224 samples, 0.15%)</title><rect x="28.7220%" y="309" width="0.1483%" height="15" fill="rgb(230,144,27)" fg:x="43388" fg:w="224"/><text x="28.9720%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (222 samples, 0.15%)</title><rect x="28.7233%" y="293" width="0.1470%" height="15" fill="rgb(220,86,6)" fg:x="43390" fg:w="222"/><text x="28.9733%" y="303.50"></text></g><g><title>Parse::do_all_blocks (227 samples, 0.15%)</title><rect x="28.7213%" y="325" width="0.1503%" height="15" fill="rgb(240,20,13)" fg:x="43387" fg:w="227"/><text x="28.9713%" y="335.50"></text></g><g><title>ParseGenerator::generate (244 samples, 0.16%)</title><rect x="28.7134%" y="357" width="0.1615%" height="15" fill="rgb(217,89,34)" fg:x="43375" fg:w="244"/><text x="28.9634%" y="367.50"></text></g><g><title>Parse::Parse (244 samples, 0.16%)</title><rect x="28.7134%" y="341" width="0.1615%" height="15" fill="rgb(229,13,5)" fg:x="43375" fg:w="244"/><text x="28.9634%" y="351.50"></text></g><g><title>PredictedCallGenerator::generate (20 samples, 0.01%)</title><rect x="28.8749%" y="357" width="0.0132%" height="15" fill="rgb(244,67,35)" fg:x="43619" fg:w="20"/><text x="29.1249%" y="367.50"></text></g><g><title>Parse::do_call (312 samples, 0.21%)</title><rect x="28.6862%" y="373" width="0.2065%" height="15" fill="rgb(221,40,2)" fg:x="43334" fg:w="312"/><text x="28.9362%" y="383.50"></text></g><g><title>Parse::do_put_xxx (21 samples, 0.01%)</title><rect x="28.9047%" y="357" width="0.0139%" height="15" fill="rgb(237,157,21)" fg:x="43664" fg:w="21"/><text x="29.1547%" y="367.50"></text></g><g><title>GraphKit::access_store_at (21 samples, 0.01%)</title><rect x="28.9047%" y="341" width="0.0139%" height="15" fill="rgb(222,94,11)" fg:x="43664" fg:w="21"/><text x="29.1547%" y="351.50"></text></g><g><title>BarrierSetC2::store_at (21 samples, 0.01%)</title><rect x="28.9047%" y="325" width="0.0139%" height="15" fill="rgb(249,113,6)" fg:x="43664" fg:w="21"/><text x="29.1547%" y="335.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (20 samples, 0.01%)</title><rect x="28.9054%" y="309" width="0.0132%" height="15" fill="rgb(238,137,36)" fg:x="43665" fg:w="20"/><text x="29.1554%" y="319.50"></text></g><g><title>Parse::do_field_access (37 samples, 0.02%)</title><rect x="28.8948%" y="373" width="0.0245%" height="15" fill="rgb(210,102,26)" fg:x="43649" fg:w="37"/><text x="29.1448%" y="383.50"></text></g><g><title>ParseGenerator::generate (371 samples, 0.25%)</title><rect x="28.6803%" y="453" width="0.2456%" height="15" fill="rgb(218,30,30)" fg:x="43325" fg:w="371"/><text x="28.9303%" y="463.50"></text></g><g><title>Parse::Parse (371 samples, 0.25%)</title><rect x="28.6803%" y="437" width="0.2456%" height="15" fill="rgb(214,67,26)" fg:x="43325" fg:w="371"/><text x="28.9303%" y="447.50"></text></g><g><title>Parse::do_all_blocks (367 samples, 0.24%)</title><rect x="28.6829%" y="421" width="0.2429%" height="15" fill="rgb(251,9,53)" fg:x="43329" fg:w="367"/><text x="28.9329%" y="431.50"></text></g><g><title>Parse::do_one_block (367 samples, 0.24%)</title><rect x="28.6829%" y="405" width="0.2429%" height="15" fill="rgb(228,204,25)" fg:x="43329" fg:w="367"/><text x="28.9329%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (367 samples, 0.24%)</title><rect x="28.6829%" y="389" width="0.2429%" height="15" fill="rgb(207,153,8)" fg:x="43329" fg:w="367"/><text x="28.9329%" y="399.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="28.9305%" y="293" width="0.0119%" height="15" fill="rgb(242,9,16)" fg:x="43703" fg:w="18"/><text x="29.1805%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="28.9305%" y="277" width="0.0119%" height="15" fill="rgb(217,211,10)" fg:x="43703" fg:w="18"/><text x="29.1805%" y="287.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="28.9298%" y="341" width="0.0132%" height="15" fill="rgb(219,228,52)" fg:x="43702" fg:w="20"/><text x="29.1798%" y="351.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="28.9298%" y="325" width="0.0132%" height="15" fill="rgb(231,92,29)" fg:x="43702" fg:w="20"/><text x="29.1798%" y="335.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="28.9305%" y="309" width="0.0126%" height="15" fill="rgb(232,8,23)" fg:x="43703" fg:w="19"/><text x="29.1805%" y="319.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="28.9272%" y="357" width="0.0172%" height="15" fill="rgb(216,211,34)" fg:x="43698" fg:w="26"/><text x="29.1772%" y="367.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.02%)</title><rect x="28.9259%" y="437" width="0.0205%" height="15" fill="rgb(236,151,0)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="447.50"></text></g><g><title>Parse::Parse (31 samples, 0.02%)</title><rect x="28.9259%" y="421" width="0.0205%" height="15" fill="rgb(209,168,3)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="431.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.02%)</title><rect x="28.9259%" y="405" width="0.0205%" height="15" fill="rgb(208,129,28)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="415.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.02%)</title><rect x="28.9259%" y="389" width="0.0205%" height="15" fill="rgb(229,78,22)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="28.9259%" y="373" width="0.0205%" height="15" fill="rgb(228,187,13)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="383.50"></text></g><g><title>PredictedCallGenerator::generate (35 samples, 0.02%)</title><rect x="28.9259%" y="453" width="0.0232%" height="15" fill="rgb(240,119,24)" fg:x="43696" fg:w="35"/><text x="29.1759%" y="463.50"></text></g><g><title>Parse::do_call (438 samples, 0.29%)</title><rect x="28.6611%" y="469" width="0.2899%" height="15" fill="rgb(209,194,42)" fg:x="43296" fg:w="438"/><text x="28.9111%" y="479.50"></text></g><g><title>ParseGenerator::generate (447 samples, 0.30%)</title><rect x="28.6598%" y="549" width="0.2959%" height="15" fill="rgb(247,200,46)" fg:x="43294" fg:w="447"/><text x="28.9098%" y="559.50"></text></g><g><title>Parse::Parse (447 samples, 0.30%)</title><rect x="28.6598%" y="533" width="0.2959%" height="15" fill="rgb(218,76,16)" fg:x="43294" fg:w="447"/><text x="28.9098%" y="543.50"></text></g><g><title>Parse::do_all_blocks (446 samples, 0.30%)</title><rect x="28.6604%" y="517" width="0.2952%" height="15" fill="rgb(225,21,48)" fg:x="43295" fg:w="446"/><text x="28.9104%" y="527.50"></text></g><g><title>Parse::do_one_block (446 samples, 0.30%)</title><rect x="28.6604%" y="501" width="0.2952%" height="15" fill="rgb(239,223,50)" fg:x="43295" fg:w="446"/><text x="28.9104%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (446 samples, 0.30%)</title><rect x="28.6604%" y="485" width="0.2952%" height="15" fill="rgb(244,45,21)" fg:x="43295" fg:w="446"/><text x="28.9104%" y="495.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="28.9629%" y="261" width="0.0113%" height="15" fill="rgb(232,33,43)" fg:x="43752" fg:w="17"/><text x="29.2129%" y="271.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="28.9629%" y="341" width="0.0152%" height="15" fill="rgb(209,8,3)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="351.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="28.9629%" y="325" width="0.0152%" height="15" fill="rgb(214,25,53)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="335.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="28.9629%" y="309" width="0.0152%" height="15" fill="rgb(254,186,54)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="319.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="28.9629%" y="293" width="0.0152%" height="15" fill="rgb(208,174,49)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="28.9629%" y="277" width="0.0152%" height="15" fill="rgb(233,191,51)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="287.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="28.9603%" y="357" width="0.0212%" height="15" fill="rgb(222,134,10)" fg:x="43748" fg:w="32"/><text x="29.2103%" y="367.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="28.9596%" y="437" width="0.0318%" height="15" fill="rgb(230,226,20)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="447.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="28.9596%" y="421" width="0.0318%" height="15" fill="rgb(251,111,25)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="431.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="28.9596%" y="405" width="0.0318%" height="15" fill="rgb(224,40,46)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="415.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="28.9596%" y="389" width="0.0318%" height="15" fill="rgb(236,108,47)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="28.9596%" y="373" width="0.0318%" height="15" fill="rgb(234,93,0)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="383.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.04%)</title><rect x="28.9557%" y="533" width="0.0371%" height="15" fill="rgb(224,213,32)" fg:x="43741" fg:w="56"/><text x="29.2057%" y="543.50"></text></g><g><title>Parse::Parse (56 samples, 0.04%)</title><rect x="28.9557%" y="517" width="0.0371%" height="15" fill="rgb(251,11,48)" fg:x="43741" fg:w="56"/><text x="29.2057%" y="527.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.04%)</title><rect x="28.9563%" y="501" width="0.0364%" height="15" fill="rgb(236,173,5)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="511.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.04%)</title><rect x="28.9563%" y="485" width="0.0364%" height="15" fill="rgb(230,95,12)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.04%)</title><rect x="28.9563%" y="469" width="0.0364%" height="15" fill="rgb(232,209,1)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="479.50"></text></g><g><title>Parse::do_call (55 samples, 0.04%)</title><rect x="28.9563%" y="453" width="0.0364%" height="15" fill="rgb(232,6,1)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="463.50"></text></g><g><title>Parse::do_call (521 samples, 0.34%)</title><rect x="28.6485%" y="565" width="0.3449%" height="15" fill="rgb(210,224,50)" fg:x="43277" fg:w="521"/><text x="28.8985%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (57 samples, 0.04%)</title><rect x="28.9557%" y="549" width="0.0377%" height="15" fill="rgb(228,127,35)" fg:x="43741" fg:w="57"/><text x="29.2057%" y="559.50"></text></g><g><title>Parse::do_all_blocks (523 samples, 0.35%)</title><rect x="28.6485%" y="613" width="0.3462%" height="15" fill="rgb(245,102,45)" fg:x="43277" fg:w="523"/><text x="28.8985%" y="623.50"></text></g><g><title>Parse::do_one_block (523 samples, 0.35%)</title><rect x="28.6485%" y="597" width="0.3462%" height="15" fill="rgb(214,1,49)" fg:x="43277" fg:w="523"/><text x="28.8985%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (523 samples, 0.35%)</title><rect x="28.6485%" y="581" width="0.3462%" height="15" fill="rgb(226,163,40)" fg:x="43277" fg:w="523"/><text x="28.8985%" y="591.50"></text></g><g><title>ParseGenerator::generate (524 samples, 0.35%)</title><rect x="28.6485%" y="645" width="0.3469%" height="15" fill="rgb(239,212,28)" fg:x="43277" fg:w="524"/><text x="28.8985%" y="655.50"></text></g><g><title>Parse::Parse (524 samples, 0.35%)</title><rect x="28.6485%" y="629" width="0.3469%" height="15" fill="rgb(220,20,13)" fg:x="43277" fg:w="524"/><text x="28.8985%" y="639.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="29.0033%" y="357" width="0.0146%" height="15" fill="rgb(210,164,35)" fg:x="43813" fg:w="22"/><text x="29.2533%" y="367.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="29.0020%" y="405" width="0.0225%" height="15" fill="rgb(248,109,41)" fg:x="43811" fg:w="34"/><text x="29.2520%" y="415.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="29.0020%" y="389" width="0.0225%" height="15" fill="rgb(238,23,50)" fg:x="43811" fg:w="34"/><text x="29.2520%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="29.0020%" y="373" width="0.0225%" height="15" fill="rgb(211,48,49)" fg:x="43811" fg:w="34"/><text x="29.2520%" y="383.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.02%)</title><rect x="29.0013%" y="437" width="0.0238%" height="15" fill="rgb(223,36,21)" fg:x="43810" fg:w="36"/><text x="29.2513%" y="447.50"></text></g><g><title>Parse::Parse (36 samples, 0.02%)</title><rect x="29.0013%" y="421" width="0.0238%" height="15" fill="rgb(207,123,46)" fg:x="43810" fg:w="36"/><text x="29.2513%" y="431.50"></text></g><g><title>Parse::do_call (47 samples, 0.03%)</title><rect x="28.9980%" y="453" width="0.0311%" height="15" fill="rgb(240,218,32)" fg:x="43805" fg:w="47"/><text x="29.2480%" y="463.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.03%)</title><rect x="28.9980%" y="533" width="0.0338%" height="15" fill="rgb(252,5,43)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="543.50"></text></g><g><title>Parse::Parse (51 samples, 0.03%)</title><rect x="28.9980%" y="517" width="0.0338%" height="15" fill="rgb(252,84,19)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="527.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.03%)</title><rect x="28.9980%" y="501" width="0.0338%" height="15" fill="rgb(243,152,39)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="511.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.03%)</title><rect x="28.9980%" y="485" width="0.0338%" height="15" fill="rgb(234,160,15)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.03%)</title><rect x="28.9980%" y="469" width="0.0338%" height="15" fill="rgb(237,34,20)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="479.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.04%)</title><rect x="28.9954%" y="629" width="0.0391%" height="15" fill="rgb(229,97,13)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="639.50"></text></g><g><title>Parse::Parse (59 samples, 0.04%)</title><rect x="28.9954%" y="613" width="0.0391%" height="15" fill="rgb(234,71,50)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="623.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.04%)</title><rect x="28.9954%" y="597" width="0.0391%" height="15" fill="rgb(253,155,4)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="607.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.04%)</title><rect x="28.9954%" y="581" width="0.0391%" height="15" fill="rgb(222,185,37)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.04%)</title><rect x="28.9954%" y="565" width="0.0391%" height="15" fill="rgb(251,177,13)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="575.50"></text></g><g><title>Parse::do_call (59 samples, 0.04%)</title><rect x="28.9954%" y="549" width="0.0391%" height="15" fill="rgb(250,179,40)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="559.50"></text></g><g><title>ParseGenerator::generate (591 samples, 0.39%)</title><rect x="28.6465%" y="741" width="0.3912%" height="15" fill="rgb(242,44,2)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="751.50"></text></g><g><title>Parse::Parse (591 samples, 0.39%)</title><rect x="28.6465%" y="725" width="0.3912%" height="15" fill="rgb(216,177,13)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="735.50"></text></g><g><title>Parse::do_all_blocks (591 samples, 0.39%)</title><rect x="28.6465%" y="709" width="0.3912%" height="15" fill="rgb(216,106,43)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="719.50"></text></g><g><title>Parse::do_one_block (591 samples, 0.39%)</title><rect x="28.6465%" y="693" width="0.3912%" height="15" fill="rgb(216,183,2)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (591 samples, 0.39%)</title><rect x="28.6465%" y="677" width="0.3912%" height="15" fill="rgb(249,75,3)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="687.50"></text></g><g><title>Parse::do_call (591 samples, 0.39%)</title><rect x="28.6465%" y="661" width="0.3912%" height="15" fill="rgb(219,67,39)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (64 samples, 0.04%)</title><rect x="28.9954%" y="645" width="0.0424%" height="15" fill="rgb(253,228,2)" fg:x="43801" fg:w="64"/><text x="29.2454%" y="655.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="29.0596%" y="261" width="0.0119%" height="15" fill="rgb(235,138,27)" fg:x="43898" fg:w="18"/><text x="29.3096%" y="271.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="29.0569%" y="309" width="0.0225%" height="15" fill="rgb(236,97,51)" fg:x="43894" fg:w="34"/><text x="29.3069%" y="319.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="29.0569%" y="293" width="0.0225%" height="15" fill="rgb(240,80,30)" fg:x="43894" fg:w="34"/><text x="29.3069%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="29.0583%" y="277" width="0.0212%" height="15" fill="rgb(230,178,19)" fg:x="43896" fg:w="32"/><text x="29.3083%" y="287.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.03%)</title><rect x="29.0569%" y="341" width="0.0258%" height="15" fill="rgb(210,190,27)" fg:x="43894" fg:w="39"/><text x="29.3069%" y="351.50"></text></g><g><title>Parse::Parse (39 samples, 0.03%)</title><rect x="29.0569%" y="325" width="0.0258%" height="15" fill="rgb(222,107,31)" fg:x="43894" fg:w="39"/><text x="29.3069%" y="335.50"></text></g><g><title>Parse::do_call (56 samples, 0.04%)</title><rect x="29.0483%" y="357" width="0.0371%" height="15" fill="rgb(216,127,34)" fg:x="43881" fg:w="56"/><text x="29.2983%" y="367.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.05%)</title><rect x="29.0457%" y="437" width="0.0510%" height="15" fill="rgb(234,116,52)" fg:x="43877" fg:w="77"/><text x="29.2957%" y="447.50"></text></g><g><title>Parse::Parse (77 samples, 0.05%)</title><rect x="29.0457%" y="421" width="0.0510%" height="15" fill="rgb(222,124,15)" fg:x="43877" fg:w="77"/><text x="29.2957%" y="431.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.05%)</title><rect x="29.0464%" y="405" width="0.0503%" height="15" fill="rgb(231,179,28)" fg:x="43878" fg:w="76"/><text x="29.2964%" y="415.50"></text></g><g><title>Parse::do_one_block (76 samples, 0.05%)</title><rect x="29.0464%" y="389" width="0.0503%" height="15" fill="rgb(226,93,45)" fg:x="43878" fg:w="76"/><text x="29.2964%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.05%)</title><rect x="29.0464%" y="373" width="0.0503%" height="15" fill="rgb(215,8,51)" fg:x="43878" fg:w="76"/><text x="29.2964%" y="383.50"></text></g><g><title>Parse::do_call (86 samples, 0.06%)</title><rect x="29.0417%" y="453" width="0.0569%" height="15" fill="rgb(223,106,5)" fg:x="43871" fg:w="86"/><text x="29.2917%" y="463.50"></text></g><g><title>ParseGenerator::generate (90 samples, 0.06%)</title><rect x="29.0411%" y="533" width="0.0596%" height="15" fill="rgb(250,191,5)" fg:x="43870" fg:w="90"/><text x="29.2911%" y="543.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="29.0411%" y="517" width="0.0596%" height="15" fill="rgb(242,132,44)" fg:x="43870" fg:w="90"/><text x="29.2911%" y="527.50"></text></g><g><title>Parse::do_all_blocks (89 samples, 0.06%)</title><rect x="29.0417%" y="501" width="0.0589%" height="15" fill="rgb(251,152,29)" fg:x="43871" fg:w="89"/><text x="29.2917%" y="511.50"></text></g><g><title>Parse::do_one_block (89 samples, 0.06%)</title><rect x="29.0417%" y="485" width="0.0589%" height="15" fill="rgb(218,179,5)" fg:x="43871" fg:w="89"/><text x="29.2917%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (89 samples, 0.06%)</title><rect x="29.0417%" y="469" width="0.0589%" height="15" fill="rgb(227,67,19)" fg:x="43871" fg:w="89"/><text x="29.2917%" y="479.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.06%)</title><rect x="29.0391%" y="629" width="0.0636%" height="15" fill="rgb(233,119,31)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="639.50"></text></g><g><title>Parse::Parse (96 samples, 0.06%)</title><rect x="29.0391%" y="613" width="0.0636%" height="15" fill="rgb(241,120,22)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="623.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.06%)</title><rect x="29.0391%" y="597" width="0.0636%" height="15" fill="rgb(224,102,30)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="607.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.06%)</title><rect x="29.0391%" y="581" width="0.0636%" height="15" fill="rgb(210,164,37)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.06%)</title><rect x="29.0391%" y="565" width="0.0636%" height="15" fill="rgb(226,191,16)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="575.50"></text></g><g><title>Parse::do_call (96 samples, 0.06%)</title><rect x="29.0391%" y="549" width="0.0636%" height="15" fill="rgb(214,40,45)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="559.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.07%)</title><rect x="29.0377%" y="725" width="0.0715%" height="15" fill="rgb(244,29,26)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="735.50"></text></g><g><title>Parse::Parse (108 samples, 0.07%)</title><rect x="29.0377%" y="709" width="0.0715%" height="15" fill="rgb(216,16,5)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="719.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.07%)</title><rect x="29.0377%" y="693" width="0.0715%" height="15" fill="rgb(249,76,35)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="703.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.07%)</title><rect x="29.0377%" y="677" width="0.0715%" height="15" fill="rgb(207,11,44)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.07%)</title><rect x="29.0377%" y="661" width="0.0715%" height="15" fill="rgb(228,190,49)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="671.50"></text></g><g><title>Parse::do_call (108 samples, 0.07%)</title><rect x="29.0377%" y="645" width="0.0715%" height="15" fill="rgb(214,173,12)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="655.50"></text></g><g><title>ParseGenerator::generate (721 samples, 0.48%)</title><rect x="28.6465%" y="837" width="0.4773%" height="15" fill="rgb(218,26,35)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="847.50"></text></g><g><title>Parse::Parse (721 samples, 0.48%)</title><rect x="28.6465%" y="821" width="0.4773%" height="15" fill="rgb(220,200,19)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="831.50"></text></g><g><title>Parse::do_all_blocks (721 samples, 0.48%)</title><rect x="28.6465%" y="805" width="0.4773%" height="15" fill="rgb(239,95,49)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="815.50"></text></g><g><title>Parse::do_one_block (721 samples, 0.48%)</title><rect x="28.6465%" y="789" width="0.4773%" height="15" fill="rgb(235,85,53)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (721 samples, 0.48%)</title><rect x="28.6465%" y="773" width="0.4773%" height="15" fill="rgb(233,133,31)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="783.50"></text></g><g><title>Parse::do_call (721 samples, 0.48%)</title><rect x="28.6465%" y="757" width="0.4773%" height="15" fill="rgb(218,25,20)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (130 samples, 0.09%)</title><rect x="29.0377%" y="741" width="0.0861%" height="15" fill="rgb(252,210,38)" fg:x="43865" fg:w="130"/><text x="29.2877%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (22 samples, 0.01%)</title><rect x="29.1092%" y="725" width="0.0146%" height="15" fill="rgb(242,134,21)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="735.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="29.1092%" y="709" width="0.0146%" height="15" fill="rgb(213,28,48)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="719.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="29.1092%" y="693" width="0.0146%" height="15" fill="rgb(250,196,2)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="703.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="29.1092%" y="677" width="0.0146%" height="15" fill="rgb(227,5,17)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="687.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="29.1092%" y="661" width="0.0146%" height="15" fill="rgb(221,226,24)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="29.1092%" y="645" width="0.0146%" height="15" fill="rgb(211,5,48)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="655.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="29.1092%" y="629" width="0.0146%" height="15" fill="rgb(219,150,6)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="639.50"></text></g><g><title>Compile::Compile (28,585 samples, 18.92%)</title><rect x="10.2057%" y="853" width="18.9227%" height="15" fill="rgb(251,46,16)" fg:x="15417" fg:w="28585"/><text x="10.4557%" y="863.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (77 samples, 0.05%)</title><rect x="29.2066%" y="805" width="0.0510%" height="15" fill="rgb(220,204,40)" fg:x="44120" fg:w="77"/><text x="29.4566%" y="815.50"></text></g><g><title>Compile::final_graph_reshaping (205 samples, 0.14%)</title><rect x="29.1291%" y="837" width="0.1357%" height="15" fill="rgb(211,85,2)" fg:x="44003" fg:w="205"/><text x="29.3791%" y="847.50"></text></g><g><title>Compile::final_graph_reshaping_walk (200 samples, 0.13%)</title><rect x="29.1324%" y="821" width="0.1324%" height="15" fill="rgb(229,17,7)" fg:x="44008" fg:w="200"/><text x="29.3824%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (36 samples, 0.02%)</title><rect x="29.3416%" y="805" width="0.0238%" height="15" fill="rgb(239,72,28)" fg:x="44324" fg:w="36"/><text x="29.5916%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (38 samples, 0.03%)</title><rect x="29.3409%" y="821" width="0.0252%" height="15" fill="rgb(230,47,54)" fg:x="44323" fg:w="38"/><text x="29.5909%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (22 samples, 0.01%)</title><rect x="29.3661%" y="821" width="0.0146%" height="15" fill="rgb(214,50,8)" fg:x="44361" fg:w="22"/><text x="29.6161%" y="831.50"></text></g><g><title>Compile::remove_speculative_types (161 samples, 0.11%)</title><rect x="29.2807%" y="837" width="0.1066%" height="15" fill="rgb(216,198,43)" fg:x="44232" fg:w="161"/><text x="29.5307%" y="847.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (16 samples, 0.01%)</title><rect x="29.4303%" y="725" width="0.0106%" height="15" fill="rgb(234,20,35)" fg:x="44458" fg:w="16"/><text x="29.6803%" y="735.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (18 samples, 0.01%)</title><rect x="29.4296%" y="757" width="0.0119%" height="15" fill="rgb(254,45,19)" fg:x="44457" fg:w="18"/><text x="29.6796%" y="767.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (17 samples, 0.01%)</title><rect x="29.4303%" y="741" width="0.0113%" height="15" fill="rgb(219,14,44)" fg:x="44458" fg:w="17"/><text x="29.6803%" y="751.50"></text></g><g><title>ConnectionGraph::add_call_node (22 samples, 0.01%)</title><rect x="29.4296%" y="805" width="0.0146%" height="15" fill="rgb(217,220,26)" fg:x="44457" fg:w="22"/><text x="29.6796%" y="815.50"></text></g><g><title>ciMethod::get_bcea (22 samples, 0.01%)</title><rect x="29.4296%" y="789" width="0.0146%" height="15" fill="rgb(213,158,28)" fg:x="44457" fg:w="22"/><text x="29.6796%" y="799.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (22 samples, 0.01%)</title><rect x="29.4296%" y="773" width="0.0146%" height="15" fill="rgb(252,51,52)" fg:x="44457" fg:w="22"/><text x="29.6796%" y="783.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (16 samples, 0.01%)</title><rect x="29.4515%" y="741" width="0.0106%" height="15" fill="rgb(246,89,16)" fg:x="44490" fg:w="16"/><text x="29.7015%" y="751.50"></text></g><g><title>ConnectionGraph::add_final_edges (32 samples, 0.02%)</title><rect x="29.4442%" y="805" width="0.0212%" height="15" fill="rgb(216,158,49)" fg:x="44479" fg:w="32"/><text x="29.6942%" y="815.50"></text></g><g><title>ConnectionGraph::process_call_arguments (23 samples, 0.02%)</title><rect x="29.4502%" y="789" width="0.0152%" height="15" fill="rgb(236,107,19)" fg:x="44488" fg:w="23"/><text x="29.7002%" y="799.50"></text></g><g><title>ciMethod::get_bcea (21 samples, 0.01%)</title><rect x="29.4515%" y="773" width="0.0139%" height="15" fill="rgb(228,185,30)" fg:x="44490" fg:w="21"/><text x="29.7015%" y="783.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (21 samples, 0.01%)</title><rect x="29.4515%" y="757" width="0.0139%" height="15" fill="rgb(246,134,8)" fg:x="44490" fg:w="21"/><text x="29.7015%" y="767.50"></text></g><g><title>ConnectionGraph::add_field (16 samples, 0.01%)</title><rect x="29.4826%" y="789" width="0.0106%" height="15" fill="rgb(214,143,50)" fg:x="44537" fg:w="16"/><text x="29.7326%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (45 samples, 0.03%)</title><rect x="29.4660%" y="805" width="0.0298%" height="15" fill="rgb(228,75,8)" fg:x="44512" fg:w="45"/><text x="29.7160%" y="815.50"></text></g><g><title>ConnectionGraph::add_fields_to_worklist (17 samples, 0.01%)</title><rect x="29.5283%" y="773" width="0.0113%" height="15" fill="rgb(207,175,4)" fg:x="44606" fg:w="17"/><text x="29.7783%" y="783.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (48 samples, 0.03%)</title><rect x="29.5084%" y="789" width="0.0318%" height="15" fill="rgb(205,108,24)" fg:x="44576" fg:w="48"/><text x="29.7584%" y="799.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (16 samples, 0.01%)</title><rect x="29.5455%" y="789" width="0.0106%" height="15" fill="rgb(244,120,49)" fg:x="44632" fg:w="16"/><text x="29.7955%" y="799.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (87 samples, 0.06%)</title><rect x="29.4998%" y="805" width="0.0576%" height="15" fill="rgb(223,47,38)" fg:x="44563" fg:w="87"/><text x="29.7498%" y="815.50"></text></g><g><title>ConnectionGraph::split_memory_phi (25 samples, 0.02%)</title><rect x="29.5706%" y="773" width="0.0165%" height="15" fill="rgb(229,179,11)" fg:x="44670" fg:w="25"/><text x="29.8206%" y="783.50"></text></g><g><title>ConnectionGraph::find_inst_mem (20 samples, 0.01%)</title><rect x="29.5739%" y="757" width="0.0132%" height="15" fill="rgb(231,122,1)" fg:x="44675" fg:w="20"/><text x="29.8239%" y="767.50"></text></g><g><title>ConnectionGraph::split_memory_phi (16 samples, 0.01%)</title><rect x="29.5766%" y="741" width="0.0106%" height="15" fill="rgb(245,119,9)" fg:x="44679" fg:w="16"/><text x="29.8266%" y="751.50"></text></g><g><title>ConnectionGraph::find_inst_mem (35 samples, 0.02%)</title><rect x="29.5647%" y="789" width="0.0232%" height="15" fill="rgb(241,163,25)" fg:x="44661" fg:w="35"/><text x="29.8147%" y="799.50"></text></g><g><title>ConnectionGraph::split_unique_types (43 samples, 0.03%)</title><rect x="29.5627%" y="805" width="0.0285%" height="15" fill="rgb(217,214,3)" fg:x="44658" fg:w="43"/><text x="29.8127%" y="815.50"></text></g><g><title>ConnectionGraph::do_analysis (312 samples, 0.21%)</title><rect x="29.3873%" y="837" width="0.2065%" height="15" fill="rgb(240,86,28)" fg:x="44393" fg:w="312"/><text x="29.6373%" y="847.50"></text></g><g><title>ConnectionGraph::compute_escape (307 samples, 0.20%)</title><rect x="29.3906%" y="821" width="0.2032%" height="15" fill="rgb(215,47,9)" fg:x="44398" fg:w="307"/><text x="29.6406%" y="831.50"></text></g><g><title>LoadNode::Value (23 samples, 0.02%)</title><rect x="29.8023%" y="821" width="0.0152%" height="15" fill="rgb(252,25,45)" fg:x="45020" fg:w="23"/><text x="30.0523%" y="831.50"></text></g><g><title>PhiNode::Value (28 samples, 0.02%)</title><rect x="29.8275%" y="821" width="0.0185%" height="15" fill="rgb(251,164,9)" fg:x="45058" fg:w="28"/><text x="30.0775%" y="831.50"></text></g><g><title>TypeAryPtr::add_offset (21 samples, 0.01%)</title><rect x="29.8758%" y="821" width="0.0139%" height="15" fill="rgb(233,194,0)" fg:x="45131" fg:w="21"/><text x="30.1258%" y="831.50"></text></g><g><title>TypeInstPtr::add_offset (22 samples, 0.01%)</title><rect x="29.8897%" y="821" width="0.0146%" height="15" fill="rgb(249,111,24)" fg:x="45152" fg:w="22"/><text x="30.1397%" y="831.50"></text></g><g><title>PhaseCCP::analyze (489 samples, 0.32%)</title><rect x="29.5951%" y="837" width="0.3237%" height="15" fill="rgb(250,223,3)" fg:x="44707" fg:w="489"/><text x="29.8451%" y="847.50"></text></g><g><title>PhaseCCP::transform_once (83 samples, 0.05%)</title><rect x="29.9725%" y="805" width="0.0549%" height="15" fill="rgb(236,178,37)" fg:x="45277" fg:w="83"/><text x="30.2225%" y="815.50"></text></g><g><title>PhaseCCP::do_transform (165 samples, 0.11%)</title><rect x="29.9188%" y="837" width="0.1092%" height="15" fill="rgb(241,158,50)" fg:x="45196" fg:w="165"/><text x="30.1688%" y="847.50"></text></g><g><title>PhaseCCP::transform (165 samples, 0.11%)</title><rect x="29.9188%" y="821" width="0.1092%" height="15" fill="rgb(213,121,41)" fg:x="45196" fg:w="165"/><text x="30.1688%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (28 samples, 0.02%)</title><rect x="30.0539%" y="821" width="0.0185%" height="15" fill="rgb(240,92,3)" fg:x="45400" fg:w="28"/><text x="30.3039%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (27 samples, 0.02%)</title><rect x="30.0545%" y="805" width="0.0179%" height="15" fill="rgb(205,123,3)" fg:x="45401" fg:w="27"/><text x="30.3045%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (18 samples, 0.01%)</title><rect x="30.0830%" y="661" width="0.0119%" height="15" fill="rgb(205,97,47)" fg:x="45444" fg:w="18"/><text x="30.3330%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (22 samples, 0.01%)</title><rect x="30.0830%" y="677" width="0.0146%" height="15" fill="rgb(247,152,14)" fg:x="45444" fg:w="22"/><text x="30.3330%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (26 samples, 0.02%)</title><rect x="30.0824%" y="693" width="0.0172%" height="15" fill="rgb(248,195,53)" fg:x="45443" fg:w="26"/><text x="30.3324%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (30 samples, 0.02%)</title><rect x="30.0824%" y="709" width="0.0199%" height="15" fill="rgb(226,201,16)" fg:x="45443" fg:w="30"/><text x="30.3324%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (36 samples, 0.02%)</title><rect x="30.0817%" y="725" width="0.0238%" height="15" fill="rgb(205,98,0)" fg:x="45442" fg:w="36"/><text x="30.3317%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (41 samples, 0.03%)</title><rect x="30.0817%" y="741" width="0.0271%" height="15" fill="rgb(214,191,48)" fg:x="45442" fg:w="41"/><text x="30.3317%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (49 samples, 0.03%)</title><rect x="30.0804%" y="757" width="0.0324%" height="15" fill="rgb(237,112,39)" fg:x="45440" fg:w="49"/><text x="30.3304%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (16 samples, 0.01%)</title><rect x="30.1128%" y="757" width="0.0106%" height="15" fill="rgb(247,203,27)" fg:x="45489" fg:w="16"/><text x="30.3628%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (69 samples, 0.05%)</title><rect x="30.0784%" y="773" width="0.0457%" height="15" fill="rgb(235,124,28)" fg:x="45437" fg:w="69"/><text x="30.3284%" y="783.50"></text></g><g><title>PhaseIdealLoop::clone_loop (16 samples, 0.01%)</title><rect x="30.1307%" y="741" width="0.0106%" height="15" fill="rgb(208,207,46)" fg:x="45516" fg:w="16"/><text x="30.3807%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_unroll (25 samples, 0.02%)</title><rect x="30.1287%" y="757" width="0.0165%" height="15" fill="rgb(234,176,4)" fg:x="45513" fg:w="25"/><text x="30.3787%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (42 samples, 0.03%)</title><rect x="30.1241%" y="773" width="0.0278%" height="15" fill="rgb(230,133,28)" fg:x="45506" fg:w="42"/><text x="30.3741%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (113 samples, 0.07%)</title><rect x="30.0777%" y="789" width="0.0748%" height="15" fill="rgb(211,137,40)" fg:x="45436" fg:w="113"/><text x="30.3277%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (29 samples, 0.02%)</title><rect x="30.1525%" y="789" width="0.0192%" height="15" fill="rgb(254,35,13)" fg:x="45549" fg:w="29"/><text x="30.4025%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (144 samples, 0.10%)</title><rect x="30.0777%" y="805" width="0.0953%" height="15" fill="rgb(225,49,51)" fg:x="45436" fg:w="144"/><text x="30.3277%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (164 samples, 0.11%)</title><rect x="30.0724%" y="821" width="0.1086%" height="15" fill="rgb(251,10,15)" fg:x="45428" fg:w="164"/><text x="30.3224%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (30 samples, 0.02%)</title><rect x="30.1816%" y="789" width="0.0199%" height="15" fill="rgb(228,207,15)" fg:x="45593" fg:w="30"/><text x="30.4316%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (19 samples, 0.01%)</title><rect x="30.1889%" y="773" width="0.0126%" height="15" fill="rgb(241,99,19)" fg:x="45604" fg:w="19"/><text x="30.4389%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (18 samples, 0.01%)</title><rect x="30.2048%" y="773" width="0.0119%" height="15" fill="rgb(207,104,49)" fg:x="45628" fg:w="18"/><text x="30.4548%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (58 samples, 0.04%)</title><rect x="30.1810%" y="805" width="0.0384%" height="15" fill="rgb(234,99,18)" fg:x="45592" fg:w="58"/><text x="30.4310%" y="815.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (27 samples, 0.02%)</title><rect x="30.2015%" y="789" width="0.0179%" height="15" fill="rgb(213,191,49)" fg:x="45623" fg:w="27"/><text x="30.4515%" y="799.50"></text></g><g><title>PathFrequency::to (21 samples, 0.01%)</title><rect x="30.2280%" y="789" width="0.0139%" height="15" fill="rgb(210,226,19)" fg:x="45663" fg:w="21"/><text x="30.4780%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (36 samples, 0.02%)</title><rect x="30.2419%" y="789" width="0.0238%" height="15" fill="rgb(229,97,18)" fg:x="45684" fg:w="36"/><text x="30.4919%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (21 samples, 0.01%)</title><rect x="30.2657%" y="789" width="0.0139%" height="15" fill="rgb(211,167,15)" fg:x="45720" fg:w="21"/><text x="30.5157%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (161 samples, 0.11%)</title><rect x="30.1810%" y="821" width="0.1066%" height="15" fill="rgb(210,169,34)" fg:x="45592" fg:w="161"/><text x="30.4310%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (103 samples, 0.07%)</title><rect x="30.2194%" y="805" width="0.0682%" height="15" fill="rgb(241,121,31)" fg:x="45650" fg:w="103"/><text x="30.4694%" y="815.50"></text></g><g><title>NTarjan::DFS (212 samples, 0.14%)</title><rect x="30.6530%" y="805" width="0.1403%" height="15" fill="rgb(232,40,11)" fg:x="46305" fg:w="212"/><text x="30.9030%" y="815.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="30.8112%" y="805" width="0.0113%" height="15" fill="rgb(205,86,26)" fg:x="46544" fg:w="17"/><text x="31.0612%" y="815.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="30.8112%" y="789" width="0.0113%" height="15" fill="rgb(231,126,28)" fg:x="46544" fg:w="17"/><text x="31.0612%" y="799.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="30.8112%" y="773" width="0.0113%" height="15" fill="rgb(219,221,18)" fg:x="46544" fg:w="17"/><text x="31.0612%" y="783.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="30.8119%" y="757" width="0.0106%" height="15" fill="rgb(211,40,0)" fg:x="46545" fg:w="16"/><text x="31.0619%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (784 samples, 0.52%)</title><rect x="30.3087%" y="821" width="0.5190%" height="15" fill="rgb(239,85,43)" fg:x="45785" fg:w="784"/><text x="30.5587%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_depth (45 samples, 0.03%)</title><rect x="31.4103%" y="773" width="0.0298%" height="15" fill="rgb(231,55,21)" fg:x="47449" fg:w="45"/><text x="31.6603%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (120 samples, 0.08%)</title><rect x="31.4401%" y="773" width="0.0794%" height="15" fill="rgb(225,184,43)" fg:x="47494" fg:w="120"/><text x="31.6901%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (260 samples, 0.17%)</title><rect x="31.3481%" y="789" width="0.1721%" height="15" fill="rgb(251,158,41)" fg:x="47355" fg:w="260"/><text x="31.5981%" y="799.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (293 samples, 0.19%)</title><rect x="31.3269%" y="805" width="0.1940%" height="15" fill="rgb(234,159,37)" fg:x="47323" fg:w="293"/><text x="31.5769%" y="815.50"></text></g><g><title>PhiNode::pinned (27 samples, 0.02%)</title><rect x="31.5208%" y="805" width="0.0179%" height="15" fill="rgb(216,204,22)" fg:x="47616" fg:w="27"/><text x="31.7708%" y="815.50"></text></g><g><title>ProjNode::pinned (18 samples, 0.01%)</title><rect x="31.5414%" y="805" width="0.0119%" height="15" fill="rgb(214,17,3)" fg:x="47647" fg:w="18"/><text x="31.7914%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,121 samples, 0.74%)</title><rect x="30.8277%" y="821" width="0.7421%" height="15" fill="rgb(212,111,17)" fg:x="46569" fg:w="1121"/><text x="31.0777%" y="831.50"></text></g><g><title>Node_List::push (16 samples, 0.01%)</title><rect x="32.1001%" y="805" width="0.0106%" height="15" fill="rgb(221,157,24)" fg:x="48491" fg:w="16"/><text x="32.3501%" y="815.50"></text></g><g><title>Node::unique_ctrl_out (61 samples, 0.04%)</title><rect x="32.4039%" y="789" width="0.0404%" height="15" fill="rgb(252,16,13)" fg:x="48950" fg:w="61"/><text x="32.6539%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (55 samples, 0.04%)</title><rect x="32.4450%" y="789" width="0.0364%" height="15" fill="rgb(221,62,2)" fg:x="49012" fg:w="55"/><text x="32.6950%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (49 samples, 0.03%)</title><rect x="32.8077%" y="741" width="0.0324%" height="15" fill="rgb(247,87,22)" fg:x="49560" fg:w="49"/><text x="33.0577%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (196 samples, 0.13%)</title><rect x="32.7687%" y="757" width="0.1297%" height="15" fill="rgb(215,73,9)" fg:x="49501" fg:w="196"/><text x="33.0187%" y="767.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (88 samples, 0.06%)</title><rect x="32.8402%" y="741" width="0.0583%" height="15" fill="rgb(207,175,33)" fg:x="49609" fg:w="88"/><text x="33.0902%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.02%)</title><rect x="32.8984%" y="757" width="0.0185%" height="15" fill="rgb(243,129,54)" fg:x="49697" fg:w="28"/><text x="33.1484%" y="767.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (298 samples, 0.20%)</title><rect x="32.7203%" y="773" width="0.1973%" height="15" fill="rgb(227,119,45)" fg:x="49428" fg:w="298"/><text x="32.9703%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (29 samples, 0.02%)</title><rect x="32.9527%" y="757" width="0.0192%" height="15" fill="rgb(205,109,36)" fg:x="49779" fg:w="29"/><text x="33.2027%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (96 samples, 0.06%)</title><rect x="32.9183%" y="773" width="0.0636%" height="15" fill="rgb(205,6,39)" fg:x="49727" fg:w="96"/><text x="33.1683%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (20 samples, 0.01%)</title><rect x="32.9818%" y="773" width="0.0132%" height="15" fill="rgb(221,32,16)" fg:x="49823" fg:w="20"/><text x="33.2318%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (737 samples, 0.49%)</title><rect x="34.8923%" y="757" width="0.4879%" height="15" fill="rgb(228,144,50)" fg:x="52709" fg:w="737"/><text x="35.1423%" y="767.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,608 samples, 2.39%)</title><rect x="32.9951%" y="773" width="2.3884%" height="15" fill="rgb(229,201,53)" fg:x="49843" fg:w="3608"/><text x="33.2451%" y="783.50">Ph..</text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,397 samples, 2.91%)</title><rect x="32.4814%" y="789" width="2.9107%" height="15" fill="rgb(249,153,27)" fg:x="49067" fg:w="4397"/><text x="32.7314%" y="799.50">Ph..</text></g><g><title>PhaseIdealLoop::get_loop (24 samples, 0.02%)</title><rect x="35.3921%" y="789" width="0.0159%" height="15" fill="rgb(227,106,25)" fg:x="53464" fg:w="24"/><text x="35.6421%" y="799.50"></text></g><g><title>CallStaticJavaNode::uncommon_trap_request (16 samples, 0.01%)</title><rect x="35.4120%" y="773" width="0.0106%" height="15" fill="rgb(230,65,29)" fg:x="53494" fg:w="16"/><text x="35.6620%" y="783.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (30 samples, 0.02%)</title><rect x="35.4100%" y="789" width="0.0199%" height="15" fill="rgb(221,57,46)" fg:x="53491" fg:w="30"/><text x="35.6600%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,015 samples, 3.32%)</title><rect x="32.1113%" y="805" width="3.3198%" height="15" fill="rgb(229,161,17)" fg:x="48508" fg:w="5015"/><text x="32.3613%" y="815.50">Pha..</text></g><g><title>PhaseIdealLoop::build_loop_late (5,852 samples, 3.87%)</title><rect x="31.5698%" y="821" width="3.8739%" height="15" fill="rgb(222,213,11)" fg:x="47690" fg:w="5852"/><text x="31.8198%" y="831.50">Phas..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (147 samples, 0.10%)</title><rect x="35.7310%" y="805" width="0.0973%" height="15" fill="rgb(235,35,13)" fg:x="53976" fg:w="147"/><text x="35.9810%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (593 samples, 0.39%)</title><rect x="35.4444%" y="821" width="0.3926%" height="15" fill="rgb(233,158,34)" fg:x="53543" fg:w="593"/><text x="35.6944%" y="831.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (18 samples, 0.01%)</title><rect x="35.8416%" y="805" width="0.0119%" height="15" fill="rgb(215,151,48)" fg:x="54143" fg:w="18"/><text x="36.0916%" y="815.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (22 samples, 0.01%)</title><rect x="35.8403%" y="821" width="0.0146%" height="15" fill="rgb(229,84,14)" fg:x="54141" fg:w="22"/><text x="36.0903%" y="831.50"></text></g><g><title>PhaseIdealLoop::do_split_if (66 samples, 0.04%)</title><rect x="36.0554%" y="805" width="0.0437%" height="15" fill="rgb(229,68,14)" fg:x="54466" fg:w="66"/><text x="36.3054%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (31 samples, 0.02%)</title><rect x="36.1659%" y="789" width="0.0205%" height="15" fill="rgb(243,106,26)" fg:x="54633" fg:w="31"/><text x="36.4159%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (17 samples, 0.01%)</title><rect x="36.2043%" y="789" width="0.0113%" height="15" fill="rgb(206,45,38)" fg:x="54691" fg:w="17"/><text x="36.4543%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (201 samples, 0.13%)</title><rect x="36.1004%" y="805" width="0.1331%" height="15" fill="rgb(226,6,15)" fg:x="54534" fg:w="201"/><text x="36.3504%" y="815.50"></text></g><g><title>ConstraintCastNode::dominating_cast (33 samples, 0.02%)</title><rect x="36.2871%" y="789" width="0.0218%" height="15" fill="rgb(232,22,54)" fg:x="54816" fg:w="33"/><text x="36.5371%" y="799.50"></text></g><g><title>PhaseIdealLoop::conditional_move (17 samples, 0.01%)</title><rect x="36.3103%" y="789" width="0.0113%" height="15" fill="rgb(229,222,32)" fg:x="54851" fg:w="17"/><text x="36.5603%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (34 samples, 0.02%)</title><rect x="36.3255%" y="789" width="0.0225%" height="15" fill="rgb(228,62,29)" fg:x="54874" fg:w="34"/><text x="36.5755%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (17 samples, 0.01%)</title><rect x="36.3718%" y="773" width="0.0113%" height="15" fill="rgb(251,103,34)" fg:x="54944" fg:w="17"/><text x="36.6218%" y="783.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (54 samples, 0.04%)</title><rect x="36.3480%" y="789" width="0.0357%" height="15" fill="rgb(233,12,30)" fg:x="54908" fg:w="54"/><text x="36.5980%" y="799.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (118 samples, 0.08%)</title><rect x="36.3851%" y="789" width="0.0781%" height="15" fill="rgb(238,52,0)" fg:x="54964" fg:w="118"/><text x="36.6351%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (38 samples, 0.03%)</title><rect x="36.4380%" y="773" width="0.0252%" height="15" fill="rgb(223,98,5)" fg:x="55044" fg:w="38"/><text x="36.6880%" y="783.50"></text></g><g><title>NodeHash::hash_find (19 samples, 0.01%)</title><rect x="36.4996%" y="773" width="0.0126%" height="15" fill="rgb(228,75,37)" fg:x="55137" fg:w="19"/><text x="36.7496%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (52 samples, 0.03%)</title><rect x="36.5181%" y="773" width="0.0344%" height="15" fill="rgb(205,115,49)" fg:x="55165" fg:w="52"/><text x="36.7681%" y="783.50"></text></g><g><title>Unique_Node_List::remove (24 samples, 0.02%)</title><rect x="36.5367%" y="757" width="0.0159%" height="15" fill="rgb(250,154,43)" fg:x="55193" fg:w="24"/><text x="36.7867%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (154 samples, 0.10%)</title><rect x="36.4632%" y="789" width="0.1019%" height="15" fill="rgb(226,43,29)" fg:x="55082" fg:w="154"/><text x="36.7132%" y="799.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (16 samples, 0.01%)</title><rect x="36.5651%" y="789" width="0.0106%" height="15" fill="rgb(249,228,39)" fg:x="55236" fg:w="16"/><text x="36.8151%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="36.5790%" y="789" width="0.0106%" height="15" fill="rgb(216,79,43)" fg:x="55257" fg:w="16"/><text x="36.8290%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (539 samples, 0.36%)</title><rect x="36.2335%" y="805" width="0.3568%" height="15" fill="rgb(228,95,12)" fg:x="54735" fg:w="539"/><text x="36.4835%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,102 samples, 0.73%)</title><rect x="35.8634%" y="821" width="0.7295%" height="15" fill="rgb(249,221,15)" fg:x="54176" fg:w="1102"/><text x="36.1134%" y="831.50"></text></g><g><title>CallNode::Ideal (31 samples, 0.02%)</title><rect x="36.6969%" y="789" width="0.0205%" height="15" fill="rgb(233,34,13)" fg:x="55435" fg:w="31"/><text x="36.9469%" y="799.50"></text></g><g><title>Node::remove_dead_region (31 samples, 0.02%)</title><rect x="36.6969%" y="773" width="0.0205%" height="15" fill="rgb(214,103,39)" fg:x="55435" fg:w="31"/><text x="36.9469%" y="783.50"></text></g><g><title>CastIINode::Value (24 samples, 0.02%)</title><rect x="36.7180%" y="789" width="0.0159%" height="15" fill="rgb(251,126,39)" fg:x="55467" fg:w="24"/><text x="36.9680%" y="799.50"></text></g><g><title>TypeInt::filter_helper (17 samples, 0.01%)</title><rect x="36.7227%" y="773" width="0.0113%" height="15" fill="rgb(214,216,36)" fg:x="55474" fg:w="17"/><text x="36.9727%" y="783.50"></text></g><g><title>IfNode::Ideal (23 samples, 0.02%)</title><rect x="36.7697%" y="789" width="0.0152%" height="15" fill="rgb(220,221,8)" fg:x="55545" fg:w="23"/><text x="37.0197%" y="799.50"></text></g><g><title>MemNode::Ideal_common (23 samples, 0.02%)</title><rect x="36.8014%" y="773" width="0.0152%" height="15" fill="rgb(240,216,3)" fg:x="55593" fg:w="23"/><text x="37.0514%" y="783.50"></text></g><g><title>MemNode::all_controls_dominate (16 samples, 0.01%)</title><rect x="36.8200%" y="757" width="0.0106%" height="15" fill="rgb(232,218,17)" fg:x="55621" fg:w="16"/><text x="37.0700%" y="767.50"></text></g><g><title>MemNode::find_previous_store (23 samples, 0.02%)</title><rect x="36.8187%" y="773" width="0.0152%" height="15" fill="rgb(229,163,45)" fg:x="55619" fg:w="23"/><text x="37.0687%" y="783.50"></text></g><g><title>LoadNode::Ideal (66 samples, 0.04%)</title><rect x="36.7909%" y="789" width="0.0437%" height="15" fill="rgb(231,110,42)" fg:x="55577" fg:w="66"/><text x="37.0409%" y="799.50"></text></g><g><title>NodeHash::grow (22 samples, 0.01%)</title><rect x="36.9007%" y="773" width="0.0146%" height="15" fill="rgb(208,170,48)" fg:x="55743" fg:w="22"/><text x="37.1507%" y="783.50"></text></g><g><title>NodeHash::hash_find_insert (93 samples, 0.06%)</title><rect x="36.8577%" y="789" width="0.0616%" height="15" fill="rgb(239,116,25)" fg:x="55678" fg:w="93"/><text x="37.1077%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (41 samples, 0.03%)</title><rect x="36.9199%" y="789" width="0.0271%" height="15" fill="rgb(219,200,50)" fg:x="55772" fg:w="41"/><text x="37.1699%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (30 samples, 0.02%)</title><rect x="36.9650%" y="773" width="0.0199%" height="15" fill="rgb(245,200,0)" fg:x="55840" fg:w="30"/><text x="37.2150%" y="783.50"></text></g><g><title>PhaseIterGVN::subsume_node (63 samples, 0.04%)</title><rect x="36.9477%" y="789" width="0.0417%" height="15" fill="rgb(245,119,33)" fg:x="55814" fg:w="63"/><text x="37.1977%" y="799.50"></text></g><g><title>PhiNode::Ideal (21 samples, 0.01%)</title><rect x="36.9928%" y="789" width="0.0139%" height="15" fill="rgb(231,125,12)" fg:x="55882" fg:w="21"/><text x="37.2428%" y="799.50"></text></g><g><title>PhiNode::Value (28 samples, 0.02%)</title><rect x="37.0093%" y="789" width="0.0185%" height="15" fill="rgb(216,96,41)" fg:x="55907" fg:w="28"/><text x="37.2593%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (97 samples, 0.06%)</title><rect x="37.0861%" y="773" width="0.0642%" height="15" fill="rgb(248,43,45)" fg:x="56023" fg:w="97"/><text x="37.3361%" y="783.50"></text></g><g><title>RegionNode::Ideal (168 samples, 0.11%)</title><rect x="37.0411%" y="789" width="0.1112%" height="15" fill="rgb(217,222,7)" fg:x="55955" fg:w="168"/><text x="37.2911%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (16 samples, 0.01%)</title><rect x="37.1583%" y="549" width="0.0106%" height="15" fill="rgb(233,28,6)" fg:x="56132" fg:w="16"/><text x="37.4083%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (18 samples, 0.01%)</title><rect x="37.1583%" y="565" width="0.0119%" height="15" fill="rgb(231,218,15)" fg:x="56132" fg:w="18"/><text x="37.4083%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (22 samples, 0.01%)</title><rect x="37.1583%" y="581" width="0.0146%" height="15" fill="rgb(226,171,48)" fg:x="56132" fg:w="22"/><text x="37.4083%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="37.1583%" y="597" width="0.0159%" height="15" fill="rgb(235,201,9)" fg:x="56132" fg:w="24"/><text x="37.4083%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (28 samples, 0.02%)</title><rect x="37.1583%" y="613" width="0.0185%" height="15" fill="rgb(217,80,15)" fg:x="56132" fg:w="28"/><text x="37.4083%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.02%)</title><rect x="37.1583%" y="629" width="0.0212%" height="15" fill="rgb(219,152,8)" fg:x="56132" fg:w="32"/><text x="37.4083%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.02%)</title><rect x="37.1583%" y="645" width="0.0218%" height="15" fill="rgb(243,107,38)" fg:x="56132" fg:w="33"/><text x="37.4083%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="37.1583%" y="661" width="0.0225%" height="15" fill="rgb(231,17,5)" fg:x="56132" fg:w="34"/><text x="37.4083%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.02%)</title><rect x="37.1583%" y="677" width="0.0238%" height="15" fill="rgb(209,25,54)" fg:x="56132" fg:w="36"/><text x="37.4083%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="37.1583%" y="709" width="0.0245%" height="15" fill="rgb(219,0,2)" fg:x="56132" fg:w="37"/><text x="37.4083%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="37.1583%" y="693" width="0.0245%" height="15" fill="rgb(246,9,5)" fg:x="56132" fg:w="37"/><text x="37.4083%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (42 samples, 0.03%)</title><rect x="37.1583%" y="725" width="0.0278%" height="15" fill="rgb(226,159,4)" fg:x="56132" fg:w="42"/><text x="37.4083%" y="735.50"></text></g><g><title>InitializeNode::can_capture_store (47 samples, 0.03%)</title><rect x="37.1576%" y="773" width="0.0311%" height="15" fill="rgb(219,175,34)" fg:x="56131" fg:w="47"/><text x="37.4076%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.03%)</title><rect x="37.1576%" y="757" width="0.0311%" height="15" fill="rgb(236,10,46)" fg:x="56131" fg:w="47"/><text x="37.4076%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.03%)</title><rect x="37.1583%" y="741" width="0.0305%" height="15" fill="rgb(240,211,16)" fg:x="56132" fg:w="46"/><text x="37.4083%" y="751.50"></text></g><g><title>StoreNode::Ideal (56 samples, 0.04%)</title><rect x="37.1576%" y="789" width="0.0371%" height="15" fill="rgb(205,3,43)" fg:x="56131" fg:w="56"/><text x="37.4076%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (903 samples, 0.60%)</title><rect x="36.6134%" y="805" width="0.5978%" height="15" fill="rgb(245,7,22)" fg:x="55309" fg:w="903"/><text x="36.8634%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (941 samples, 0.62%)</title><rect x="36.5936%" y="821" width="0.6229%" height="15" fill="rgb(239,132,32)" fg:x="55279" fg:w="941"/><text x="36.8436%" y="831.50"></text></g><g><title>SuperWord::find_adjacent_refs (16 samples, 0.01%)</title><rect x="37.2377%" y="789" width="0.0106%" height="15" fill="rgb(228,202,34)" fg:x="56252" fg:w="16"/><text x="37.4877%" y="799.50"></text></g><g><title>SuperWord::SLP_extract (24 samples, 0.02%)</title><rect x="37.2350%" y="805" width="0.0159%" height="15" fill="rgb(254,200,22)" fg:x="56248" fg:w="24"/><text x="37.4850%" y="815.50"></text></g><g><title>SuperWord::transform_loop (25 samples, 0.02%)</title><rect x="37.2350%" y="821" width="0.0165%" height="15" fill="rgb(219,10,39)" fg:x="56248" fg:w="25"/><text x="37.4850%" y="831.50"></text></g><g><title>[libc-2.31.so] (19 samples, 0.01%)</title><rect x="37.2523%" y="821" width="0.0126%" height="15" fill="rgb(226,210,39)" fg:x="56274" fg:w="19"/><text x="37.5023%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (10,924 samples, 7.23%)</title><rect x="30.0353%" y="837" width="7.2315%" height="15" fill="rgb(208,219,16)" fg:x="45372" fg:w="10924"/><text x="30.2853%" y="847.50">PhaseIdeal..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (89 samples, 0.06%)</title><rect x="37.2668%" y="837" width="0.0589%" height="15" fill="rgb(216,158,51)" fg:x="56296" fg:w="89"/><text x="37.5168%" y="847.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (40 samples, 0.03%)</title><rect x="37.2993%" y="821" width="0.0265%" height="15" fill="rgb(233,14,44)" fg:x="56345" fg:w="40"/><text x="37.5493%" y="831.50"></text></g><g><title>IfNode::search_identical (20 samples, 0.01%)</title><rect x="37.5190%" y="789" width="0.0132%" height="15" fill="rgb(237,97,39)" fg:x="56677" fg:w="20"/><text x="37.7690%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (58 samples, 0.04%)</title><rect x="37.5568%" y="773" width="0.0384%" height="15" fill="rgb(218,198,43)" fg:x="56734" fg:w="58"/><text x="37.8068%" y="783.50"></text></g><g><title>Unique_Node_List::remove (52 samples, 0.03%)</title><rect x="37.5607%" y="757" width="0.0344%" height="15" fill="rgb(231,104,20)" fg:x="56740" fg:w="52"/><text x="37.8107%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (71 samples, 0.05%)</title><rect x="37.5495%" y="789" width="0.0470%" height="15" fill="rgb(254,36,13)" fg:x="56723" fg:w="71"/><text x="37.7995%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (19 samples, 0.01%)</title><rect x="37.6091%" y="773" width="0.0126%" height="15" fill="rgb(248,14,50)" fg:x="56813" fg:w="19"/><text x="37.8591%" y="783.50"></text></g><g><title>IfNode::Ideal (184 samples, 0.12%)</title><rect x="37.5031%" y="805" width="0.1218%" height="15" fill="rgb(217,107,29)" fg:x="56653" fg:w="184"/><text x="37.7531%" y="815.50"></text></g><g><title>split_if (39 samples, 0.03%)</title><rect x="37.5991%" y="789" width="0.0258%" height="15" fill="rgb(251,169,33)" fg:x="56798" fg:w="39"/><text x="37.8491%" y="799.50"></text></g><g><title>MemNode::adr_type (21 samples, 0.01%)</title><rect x="37.6607%" y="773" width="0.0139%" height="15" fill="rgb(217,108,32)" fg:x="56891" fg:w="21"/><text x="37.9107%" y="783.50"></text></g><g><title>MemNode::Ideal_common (41 samples, 0.03%)</title><rect x="37.6534%" y="789" width="0.0271%" height="15" fill="rgb(219,66,42)" fg:x="56880" fg:w="41"/><text x="37.9034%" y="799.50"></text></g><g><title>MemNode::all_controls_dominate (22 samples, 0.01%)</title><rect x="37.6865%" y="773" width="0.0146%" height="15" fill="rgb(206,180,7)" fg:x="56930" fg:w="22"/><text x="37.9365%" y="783.50"></text></g><g><title>Node::dominates (21 samples, 0.01%)</title><rect x="37.6872%" y="757" width="0.0139%" height="15" fill="rgb(208,226,31)" fg:x="56931" fg:w="21"/><text x="37.9372%" y="767.50"></text></g><g><title>MemNode::find_previous_store (42 samples, 0.03%)</title><rect x="37.6819%" y="789" width="0.0278%" height="15" fill="rgb(218,26,49)" fg:x="56923" fg:w="42"/><text x="37.9319%" y="799.50"></text></g><g><title>LoadNode::Ideal (104 samples, 0.07%)</title><rect x="37.6428%" y="805" width="0.0688%" height="15" fill="rgb(233,197,48)" fg:x="56864" fg:w="104"/><text x="37.8928%" y="815.50"></text></g><g><title>LoadNode::Identity (19 samples, 0.01%)</title><rect x="37.7117%" y="805" width="0.0126%" height="15" fill="rgb(252,181,51)" fg:x="56968" fg:w="19"/><text x="37.9617%" y="815.50"></text></g><g><title>MergeMemNode::Ideal (23 samples, 0.02%)</title><rect x="37.7415%" y="805" width="0.0152%" height="15" fill="rgb(253,90,19)" fg:x="57013" fg:w="23"/><text x="37.9915%" y="815.50"></text></g><g><title>NodeHash::grow (24 samples, 0.02%)</title><rect x="37.8116%" y="789" width="0.0159%" height="15" fill="rgb(215,171,30)" fg:x="57119" fg:w="24"/><text x="38.0616%" y="799.50"></text></g><g><title>NodeHash::hash_find_insert (103 samples, 0.07%)</title><rect x="37.7626%" y="805" width="0.0682%" height="15" fill="rgb(214,222,9)" fg:x="57045" fg:w="103"/><text x="38.0126%" y="815.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (36 samples, 0.02%)</title><rect x="37.8308%" y="805" width="0.0238%" height="15" fill="rgb(223,3,22)" fg:x="57148" fg:w="36"/><text x="38.0808%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (50 samples, 0.03%)</title><rect x="37.8931%" y="789" width="0.0331%" height="15" fill="rgb(225,196,46)" fg:x="57242" fg:w="50"/><text x="38.1431%" y="799.50"></text></g><g><title>Unique_Node_List::remove (21 samples, 0.01%)</title><rect x="37.9122%" y="773" width="0.0139%" height="15" fill="rgb(209,110,37)" fg:x="57271" fg:w="21"/><text x="38.1622%" y="783.50"></text></g><g><title>PhaseIterGVN::subsume_node (118 samples, 0.08%)</title><rect x="37.8553%" y="805" width="0.0781%" height="15" fill="rgb(249,89,12)" fg:x="57185" fg:w="118"/><text x="38.1053%" y="815.50"></text></g><g><title>PhiNode::Ideal (91 samples, 0.06%)</title><rect x="37.9348%" y="805" width="0.0602%" height="15" fill="rgb(226,27,33)" fg:x="57305" fg:w="91"/><text x="38.1848%" y="815.50"></text></g><g><title>PhiNode::Value (27 samples, 0.02%)</title><rect x="37.9996%" y="805" width="0.0179%" height="15" fill="rgb(213,82,22)" fg:x="57403" fg:w="27"/><text x="38.2496%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.05%)</title><rect x="38.0897%" y="773" width="0.0496%" height="15" fill="rgb(248,140,0)" fg:x="57539" fg:w="75"/><text x="38.3397%" y="783.50"></text></g><g><title>Unique_Node_List::remove (60 samples, 0.04%)</title><rect x="38.0996%" y="757" width="0.0397%" height="15" fill="rgb(228,106,3)" fg:x="57554" fg:w="60"/><text x="38.3496%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (93 samples, 0.06%)</title><rect x="38.0817%" y="789" width="0.0616%" height="15" fill="rgb(209,23,37)" fg:x="57527" fg:w="93"/><text x="38.3317%" y="799.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (21 samples, 0.01%)</title><rect x="38.1433%" y="789" width="0.0139%" height="15" fill="rgb(241,93,50)" fg:x="57620" fg:w="21"/><text x="38.3933%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (62 samples, 0.04%)</title><rect x="38.1578%" y="789" width="0.0410%" height="15" fill="rgb(253,46,43)" fg:x="57642" fg:w="62"/><text x="38.4078%" y="799.50"></text></g><g><title>RegionNode::Ideal (247 samples, 0.16%)</title><rect x="38.0374%" y="805" width="0.1635%" height="15" fill="rgb(226,206,43)" fg:x="57460" fg:w="247"/><text x="38.2874%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (16 samples, 0.01%)</title><rect x="38.2082%" y="469" width="0.0106%" height="15" fill="rgb(217,54,7)" fg:x="57718" fg:w="16"/><text x="38.4582%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="38.2082%" y="485" width="0.0159%" height="15" fill="rgb(223,5,52)" fg:x="57718" fg:w="24"/><text x="38.4582%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="38.2082%" y="501" width="0.0245%" height="15" fill="rgb(206,52,46)" fg:x="57718" fg:w="37"/><text x="38.4582%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.03%)</title><rect x="38.2082%" y="517" width="0.0311%" height="15" fill="rgb(253,136,11)" fg:x="57718" fg:w="47"/><text x="38.4582%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.03%)</title><rect x="38.2082%" y="533" width="0.0344%" height="15" fill="rgb(208,106,33)" fg:x="57718" fg:w="52"/><text x="38.4582%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (62 samples, 0.04%)</title><rect x="38.2082%" y="549" width="0.0410%" height="15" fill="rgb(206,54,4)" fg:x="57718" fg:w="62"/><text x="38.4582%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.05%)</title><rect x="38.2082%" y="565" width="0.0470%" height="15" fill="rgb(213,3,15)" fg:x="57718" fg:w="71"/><text x="38.4582%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (84 samples, 0.06%)</title><rect x="38.2082%" y="581" width="0.0556%" height="15" fill="rgb(252,211,39)" fg:x="57718" fg:w="84"/><text x="38.4582%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (90 samples, 0.06%)</title><rect x="38.2082%" y="597" width="0.0596%" height="15" fill="rgb(223,6,36)" fg:x="57718" fg:w="90"/><text x="38.4582%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (98 samples, 0.06%)</title><rect x="38.2082%" y="613" width="0.0649%" height="15" fill="rgb(252,169,45)" fg:x="57718" fg:w="98"/><text x="38.4582%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (111 samples, 0.07%)</title><rect x="38.2082%" y="629" width="0.0735%" height="15" fill="rgb(212,48,26)" fg:x="57718" fg:w="111"/><text x="38.4582%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (124 samples, 0.08%)</title><rect x="38.2082%" y="645" width="0.0821%" height="15" fill="rgb(251,102,48)" fg:x="57718" fg:w="124"/><text x="38.4582%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (130 samples, 0.09%)</title><rect x="38.2082%" y="661" width="0.0861%" height="15" fill="rgb(243,208,16)" fg:x="57718" fg:w="130"/><text x="38.4582%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (139 samples, 0.09%)</title><rect x="38.2082%" y="677" width="0.0920%" height="15" fill="rgb(219,96,24)" fg:x="57718" fg:w="139"/><text x="38.4582%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (148 samples, 0.10%)</title><rect x="38.2082%" y="693" width="0.0980%" height="15" fill="rgb(219,33,29)" fg:x="57718" fg:w="148"/><text x="38.4582%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (160 samples, 0.11%)</title><rect x="38.2082%" y="709" width="0.1059%" height="15" fill="rgb(223,176,5)" fg:x="57718" fg:w="160"/><text x="38.4582%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (170 samples, 0.11%)</title><rect x="38.2082%" y="725" width="0.1125%" height="15" fill="rgb(228,140,14)" fg:x="57718" fg:w="170"/><text x="38.4582%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (188 samples, 0.12%)</title><rect x="38.2082%" y="741" width="0.1245%" height="15" fill="rgb(217,179,31)" fg:x="57718" fg:w="188"/><text x="38.4582%" y="751.50"></text></g><g><title>MemNode::all_controls_dominate (18 samples, 0.01%)</title><rect x="38.3207%" y="725" width="0.0119%" height="15" fill="rgb(230,9,30)" fg:x="57888" fg:w="18"/><text x="38.5707%" y="735.50"></text></g><g><title>Node::dominates (17 samples, 0.01%)</title><rect x="38.3214%" y="709" width="0.0113%" height="15" fill="rgb(230,136,20)" fg:x="57889" fg:w="17"/><text x="38.5714%" y="719.50"></text></g><g><title>MemNode::all_controls_dominate (20 samples, 0.01%)</title><rect x="38.3326%" y="741" width="0.0132%" height="15" fill="rgb(215,210,22)" fg:x="57906" fg:w="20"/><text x="38.5826%" y="751.50"></text></g><g><title>Node::dominates (20 samples, 0.01%)</title><rect x="38.3326%" y="725" width="0.0132%" height="15" fill="rgb(218,43,5)" fg:x="57906" fg:w="20"/><text x="38.5826%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (209 samples, 0.14%)</title><rect x="38.2082%" y="757" width="0.1384%" height="15" fill="rgb(216,11,5)" fg:x="57718" fg:w="209"/><text x="38.4582%" y="767.50"></text></g><g><title>InitializeNode::can_capture_store (210 samples, 0.14%)</title><rect x="38.2082%" y="789" width="0.1390%" height="15" fill="rgb(209,82,29)" fg:x="57718" fg:w="210"/><text x="38.4582%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (210 samples, 0.14%)</title><rect x="38.2082%" y="773" width="0.1390%" height="15" fill="rgb(244,115,12)" fg:x="57718" fg:w="210"/><text x="38.4582%" y="783.50"></text></g><g><title>StoreNode::Ideal (230 samples, 0.15%)</title><rect x="38.2068%" y="805" width="0.1523%" height="15" fill="rgb(222,82,18)" fg:x="57716" fg:w="230"/><text x="38.4568%" y="815.50"></text></g><g><title>MemNode::Ideal_common (18 samples, 0.01%)</title><rect x="38.3472%" y="789" width="0.0119%" height="15" fill="rgb(249,227,8)" fg:x="57928" fg:w="18"/><text x="38.5972%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (1,539 samples, 1.02%)</title><rect x="37.3608%" y="821" width="1.0188%" height="15" fill="rgb(253,141,45)" fg:x="56438" fg:w="1539"/><text x="37.6108%" y="831.50"></text></g><g><title>PhaseIterGVN::optimize (1,600 samples, 1.06%)</title><rect x="37.3257%" y="837" width="1.0592%" height="15" fill="rgb(234,184,4)" fg:x="56385" fg:w="1600"/><text x="37.5757%" y="847.50"></text></g><g><title>PhaseIterGVN::transform_old (162 samples, 0.11%)</title><rect x="38.3988%" y="805" width="0.1072%" height="15" fill="rgb(218,194,23)" fg:x="58006" fg:w="162"/><text x="38.6488%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (169 samples, 0.11%)</title><rect x="38.3955%" y="821" width="0.1119%" height="15" fill="rgb(235,66,41)" fg:x="58001" fg:w="169"/><text x="38.6455%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (59 samples, 0.04%)</title><rect x="38.5113%" y="821" width="0.0391%" height="15" fill="rgb(245,217,1)" fg:x="58176" fg:w="59"/><text x="38.7613%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (269 samples, 0.18%)</title><rect x="38.3915%" y="837" width="0.1781%" height="15" fill="rgb(229,91,1)" fg:x="57995" fg:w="269"/><text x="38.6415%" y="847.50"></text></g><g><title>Compile::identify_useful_nodes (47 samples, 0.03%)</title><rect x="38.5815%" y="805" width="0.0311%" height="15" fill="rgb(207,101,30)" fg:x="58282" fg:w="47"/><text x="38.8315%" y="815.50"></text></g><g><title>Compile::remove_useless_nodes (34 samples, 0.02%)</title><rect x="38.6126%" y="805" width="0.0225%" height="15" fill="rgb(223,82,49)" fg:x="58329" fg:w="34"/><text x="38.8626%" y="815.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (108 samples, 0.07%)</title><rect x="38.5696%" y="837" width="0.0715%" height="15" fill="rgb(218,167,17)" fg:x="58264" fg:w="108"/><text x="38.8196%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (100 samples, 0.07%)</title><rect x="38.5749%" y="821" width="0.0662%" height="15" fill="rgb(208,103,14)" fg:x="58272" fg:w="100"/><text x="38.8249%" y="831.50"></text></g><g><title>Compile::Optimize (14,371 samples, 9.51%)</title><rect x="29.1284%" y="853" width="9.5133%" height="15" fill="rgb(238,20,8)" fg:x="44002" fg:w="14371"/><text x="29.3784%" y="863.50">Compile::Optim..</text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="38.6709%" y="709" width="0.0212%" height="15" fill="rgb(218,80,54)" fg:x="58417" fg:w="32"/><text x="38.9209%" y="719.50"></text></g><g><title>Parse::do_field_access (23 samples, 0.02%)</title><rect x="38.6934%" y="709" width="0.0152%" height="15" fill="rgb(240,144,17)" fg:x="58451" fg:w="23"/><text x="38.9434%" y="719.50"></text></g><g><title>Parse::do_if (20 samples, 0.01%)</title><rect x="38.7086%" y="709" width="0.0132%" height="15" fill="rgb(245,27,50)" fg:x="58474" fg:w="20"/><text x="38.9586%" y="719.50"></text></g><g><title>Parse::do_one_block (117 samples, 0.08%)</title><rect x="38.6537%" y="741" width="0.0775%" height="15" fill="rgb(251,51,7)" fg:x="58391" fg:w="117"/><text x="38.9037%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.07%)</title><rect x="38.6590%" y="725" width="0.0722%" height="15" fill="rgb(245,217,29)" fg:x="58399" fg:w="109"/><text x="38.9090%" y="735.50"></text></g><g><title>Parse::do_all_blocks (123 samples, 0.08%)</title><rect x="38.6517%" y="757" width="0.0814%" height="15" fill="rgb(221,176,29)" fg:x="58388" fg:w="123"/><text x="38.9017%" y="767.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.08%)</title><rect x="38.6517%" y="789" width="0.0841%" height="15" fill="rgb(212,180,24)" fg:x="58388" fg:w="127"/><text x="38.9017%" y="799.50"></text></g><g><title>Parse::Parse (127 samples, 0.08%)</title><rect x="38.6517%" y="773" width="0.0841%" height="15" fill="rgb(254,24,2)" fg:x="58388" fg:w="127"/><text x="38.9017%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (149 samples, 0.10%)</title><rect x="38.6424%" y="853" width="0.0986%" height="15" fill="rgb(230,100,2)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (149 samples, 0.10%)</title><rect x="38.6424%" y="837" width="0.0986%" height="15" fill="rgb(219,142,25)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="847.50"></text></g><g><title>C2Compiler::compile_method (149 samples, 0.10%)</title><rect x="38.6424%" y="821" width="0.0986%" height="15" fill="rgb(240,73,43)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="831.50"></text></g><g><title>Compile::Compile (149 samples, 0.10%)</title><rect x="38.6424%" y="805" width="0.0986%" height="15" fill="rgb(214,114,15)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (20 samples, 0.01%)</title><rect x="38.7410%" y="677" width="0.0132%" height="15" fill="rgb(207,130,4)" fg:x="58523" fg:w="20"/><text x="38.9910%" y="687.50"></text></g><g><title>ciBytecodeStream::get_field (20 samples, 0.01%)</title><rect x="38.7410%" y="661" width="0.0132%" height="15" fill="rgb(221,25,40)" fg:x="58523" fg:w="20"/><text x="38.9910%" y="671.50"></text></g><g><title>ciObjectFactory::get_metadata (23 samples, 0.02%)</title><rect x="38.7589%" y="629" width="0.0152%" height="15" fill="rgb(241,184,7)" fg:x="58550" fg:w="23"/><text x="39.0089%" y="639.50"></text></g><g><title>ciObjectFactory::create_new_metadata (20 samples, 0.01%)</title><rect x="38.7609%" y="613" width="0.0132%" height="15" fill="rgb(235,159,4)" fg:x="58553" fg:w="20"/><text x="39.0109%" y="623.50"></text></g><g><title>ciMethod::ciMethod (19 samples, 0.01%)</title><rect x="38.7616%" y="597" width="0.0126%" height="15" fill="rgb(214,87,48)" fg:x="58554" fg:w="19"/><text x="39.0116%" y="607.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (31 samples, 0.02%)</title><rect x="38.7543%" y="677" width="0.0205%" height="15" fill="rgb(246,198,24)" fg:x="58543" fg:w="31"/><text x="39.0043%" y="687.50"></text></g><g><title>ciBytecodeStream::get_method (31 samples, 0.02%)</title><rect x="38.7543%" y="661" width="0.0205%" height="15" fill="rgb(209,66,40)" fg:x="58543" fg:w="31"/><text x="39.0043%" y="671.50"></text></g><g><title>ciEnv::get_method_by_index_impl (30 samples, 0.02%)</title><rect x="38.7549%" y="645" width="0.0199%" height="15" fill="rgb(233,147,39)" fg:x="58544" fg:w="30"/><text x="39.0049%" y="655.50"></text></g><g><title>CallGenerator::for_inline (53 samples, 0.04%)</title><rect x="38.7410%" y="805" width="0.0351%" height="15" fill="rgb(231,145,52)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="815.50"></text></g><g><title>InlineTree::check_can_parse (53 samples, 0.04%)</title><rect x="38.7410%" y="789" width="0.0351%" height="15" fill="rgb(206,20,26)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (53 samples, 0.04%)</title><rect x="38.7410%" y="773" width="0.0351%" height="15" fill="rgb(238,220,4)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (53 samples, 0.04%)</title><rect x="38.7410%" y="757" width="0.0351%" height="15" fill="rgb(252,195,42)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (53 samples, 0.04%)</title><rect x="38.7410%" y="741" width="0.0351%" height="15" fill="rgb(209,10,6)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (53 samples, 0.04%)</title><rect x="38.7410%" y="725" width="0.0351%" height="15" fill="rgb(229,3,52)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (53 samples, 0.04%)</title><rect x="38.7410%" y="709" width="0.0351%" height="15" fill="rgb(253,49,37)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="719.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (53 samples, 0.04%)</title><rect x="38.7410%" y="693" width="0.0351%" height="15" fill="rgb(240,103,49)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="703.50"></text></g><g><title>Parse::array_load (17 samples, 0.01%)</title><rect x="38.7861%" y="725" width="0.0113%" height="15" fill="rgb(250,182,30)" fg:x="58591" fg:w="17"/><text x="39.0361%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (18 samples, 0.01%)</title><rect x="38.8251%" y="661" width="0.0119%" height="15" fill="rgb(248,8,30)" fg:x="58650" fg:w="18"/><text x="39.0751%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (17 samples, 0.01%)</title><rect x="38.8258%" y="645" width="0.0113%" height="15" fill="rgb(237,120,30)" fg:x="58651" fg:w="17"/><text x="39.0758%" y="655.50"></text></g><g><title>InlineTree::ok_to_inline (45 samples, 0.03%)</title><rect x="38.8079%" y="693" width="0.0298%" height="15" fill="rgb(221,146,34)" fg:x="58624" fg:w="45"/><text x="39.0579%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (23 samples, 0.02%)</title><rect x="38.8225%" y="677" width="0.0152%" height="15" fill="rgb(242,55,13)" fg:x="58646" fg:w="23"/><text x="39.0725%" y="687.50"></text></g><g><title>Compile::call_generator (53 samples, 0.04%)</title><rect x="38.8039%" y="709" width="0.0351%" height="15" fill="rgb(242,112,31)" fg:x="58618" fg:w="53"/><text x="39.0539%" y="719.50"></text></g><g><title>LibraryIntrinsic::generate (16 samples, 0.01%)</title><rect x="38.8662%" y="709" width="0.0106%" height="15" fill="rgb(249,192,27)" fg:x="58712" fg:w="16"/><text x="39.1162%" y="719.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.07%)</title><rect x="38.8966%" y="661" width="0.0682%" height="15" fill="rgb(208,204,44)" fg:x="58758" fg:w="103"/><text x="39.1466%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.06%)</title><rect x="38.9032%" y="645" width="0.0616%" height="15" fill="rgb(208,93,54)" fg:x="58768" fg:w="93"/><text x="39.1532%" y="655.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.08%)</title><rect x="38.8940%" y="677" width="0.0755%" height="15" fill="rgb(242,1,31)" fg:x="58754" fg:w="114"/><text x="39.1440%" y="687.50"></text></g><g><title>Parse::do_exits (16 samples, 0.01%)</title><rect x="38.9694%" y="677" width="0.0106%" height="15" fill="rgb(241,83,25)" fg:x="58868" fg:w="16"/><text x="39.2194%" y="687.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.11%)</title><rect x="38.8768%" y="709" width="0.1132%" height="15" fill="rgb(205,169,50)" fg:x="58728" fg:w="171"/><text x="39.1268%" y="719.50"></text></g><g><title>Parse::Parse (170 samples, 0.11%)</title><rect x="38.8774%" y="693" width="0.1125%" height="15" fill="rgb(239,186,37)" fg:x="58729" fg:w="170"/><text x="39.1274%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (42 samples, 0.03%)</title><rect x="38.9900%" y="709" width="0.0278%" height="15" fill="rgb(205,221,10)" fg:x="58899" fg:w="42"/><text x="39.2400%" y="719.50"></text></g><g><title>Parse::do_call (335 samples, 0.22%)</title><rect x="38.8039%" y="725" width="0.2218%" height="15" fill="rgb(218,196,15)" fg:x="58618" fg:w="335"/><text x="39.0539%" y="735.50"></text></g><g><title>GraphKit::access_store_at (17 samples, 0.01%)</title><rect x="39.0449%" y="693" width="0.0113%" height="15" fill="rgb(218,196,35)" fg:x="58982" fg:w="17"/><text x="39.2949%" y="703.50"></text></g><g><title>BarrierSetC2::store_at (17 samples, 0.01%)</title><rect x="39.0449%" y="677" width="0.0113%" height="15" fill="rgb(233,63,24)" fg:x="58982" fg:w="17"/><text x="39.2949%" y="687.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (16 samples, 0.01%)</title><rect x="39.0456%" y="661" width="0.0106%" height="15" fill="rgb(225,8,4)" fg:x="58983" fg:w="16"/><text x="39.2956%" y="671.50"></text></g><g><title>Parse::do_put_xxx (24 samples, 0.02%)</title><rect x="39.0422%" y="709" width="0.0159%" height="15" fill="rgb(234,105,35)" fg:x="58978" fg:w="24"/><text x="39.2922%" y="719.50"></text></g><g><title>Parse::do_field_access (46 samples, 0.03%)</title><rect x="39.0290%" y="725" width="0.0305%" height="15" fill="rgb(236,21,32)" fg:x="58958" fg:w="46"/><text x="39.2790%" y="735.50"></text></g><g><title>Parse::do_if (23 samples, 0.02%)</title><rect x="39.0595%" y="725" width="0.0152%" height="15" fill="rgb(228,109,6)" fg:x="59004" fg:w="23"/><text x="39.3095%" y="735.50"></text></g><g><title>Parse::do_all_blocks (465 samples, 0.31%)</title><rect x="38.7808%" y="773" width="0.3078%" height="15" fill="rgb(229,215,31)" fg:x="58583" fg:w="465"/><text x="39.0308%" y="783.50"></text></g><g><title>Parse::do_one_block (465 samples, 0.31%)</title><rect x="38.7808%" y="757" width="0.3078%" height="15" fill="rgb(221,52,54)" fg:x="58583" fg:w="465"/><text x="39.0308%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (459 samples, 0.30%)</title><rect x="38.7847%" y="741" width="0.3038%" height="15" fill="rgb(252,129,43)" fg:x="58589" fg:w="459"/><text x="39.0347%" y="751.50"></text></g><g><title>ParseGenerator::generate (475 samples, 0.31%)</title><rect x="38.7808%" y="805" width="0.3144%" height="15" fill="rgb(248,183,27)" fg:x="58583" fg:w="475"/><text x="39.0308%" y="815.50"></text></g><g><title>Parse::Parse (475 samples, 0.31%)</title><rect x="38.7808%" y="789" width="0.3144%" height="15" fill="rgb(250,0,22)" fg:x="58583" fg:w="475"/><text x="39.0308%" y="799.50"></text></g><g><title>CodeBuffer::relocate_code_to (16 samples, 0.01%)</title><rect x="39.0952%" y="741" width="0.0106%" height="15" fill="rgb(213,166,10)" fg:x="59058" fg:w="16"/><text x="39.3452%" y="751.50"></text></g><g><title>CodeBuffer::copy_code_to (20 samples, 0.01%)</title><rect x="39.0952%" y="757" width="0.0132%" height="15" fill="rgb(207,163,36)" fg:x="59058" fg:w="20"/><text x="39.3452%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (558 samples, 0.37%)</title><rect x="38.7410%" y="853" width="0.3694%" height="15" fill="rgb(208,122,22)" fg:x="58523" fg:w="558"/><text x="38.9910%" y="863.50"></text></g><g><title>C2Compiler::compile_method (558 samples, 0.37%)</title><rect x="38.7410%" y="837" width="0.3694%" height="15" fill="rgb(207,104,49)" fg:x="58523" fg:w="558"/><text x="38.9910%" y="847.50"></text></g><g><title>Compile::Compile (558 samples, 0.37%)</title><rect x="38.7410%" y="821" width="0.3694%" height="15" fill="rgb(248,211,50)" fg:x="58523" fg:w="558"/><text x="38.9910%" y="831.50"></text></g><g><title>ciEnv::register_method (23 samples, 0.02%)</title><rect x="39.0952%" y="805" width="0.0152%" height="15" fill="rgb(217,13,45)" fg:x="59058" fg:w="23"/><text x="39.3452%" y="815.50"></text></g><g><title>nmethod::new_nmethod (23 samples, 0.02%)</title><rect x="39.0952%" y="789" width="0.0152%" height="15" fill="rgb(211,216,49)" fg:x="59058" fg:w="23"/><text x="39.3452%" y="799.50"></text></g><g><title>nmethod::nmethod (23 samples, 0.02%)</title><rect x="39.0952%" y="773" width="0.0152%" height="15" fill="rgb(221,58,53)" fg:x="59058" fg:w="23"/><text x="39.3452%" y="783.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.02%)</title><rect x="39.1329%" y="725" width="0.0232%" height="15" fill="rgb(220,112,41)" fg:x="59115" fg:w="35"/><text x="39.3829%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="39.1336%" y="709" width="0.0225%" height="15" fill="rgb(236,38,28)" fg:x="59116" fg:w="34"/><text x="39.3836%" y="719.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.03%)</title><rect x="39.1329%" y="741" width="0.0252%" height="15" fill="rgb(227,195,22)" fg:x="59115" fg:w="38"/><text x="39.3829%" y="751.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="39.1323%" y="773" width="0.0291%" height="15" fill="rgb(214,55,33)" fg:x="59114" fg:w="44"/><text x="39.3823%" y="783.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="39.1323%" y="757" width="0.0291%" height="15" fill="rgb(248,80,13)" fg:x="59114" fg:w="44"/><text x="39.3823%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (52 samples, 0.03%)</title><rect x="39.1303%" y="853" width="0.0344%" height="15" fill="rgb(238,52,6)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (52 samples, 0.03%)</title><rect x="39.1303%" y="837" width="0.0344%" height="15" fill="rgb(224,198,47)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="847.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (52 samples, 0.03%)</title><rect x="39.1303%" y="821" width="0.0344%" height="15" fill="rgb(233,171,20)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="831.50"></text></g><g><title>C2Compiler::compile_method (52 samples, 0.03%)</title><rect x="39.1303%" y="805" width="0.0344%" height="15" fill="rgb(241,30,25)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="815.50"></text></g><g><title>Compile::Compile (52 samples, 0.03%)</title><rect x="39.1303%" y="789" width="0.0344%" height="15" fill="rgb(207,171,38)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="799.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="39.1693%" y="389" width="0.0119%" height="15" fill="rgb(234,70,1)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="399.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="39.1693%" y="373" width="0.0119%" height="15" fill="rgb(232,178,18)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="383.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="39.1693%" y="357" width="0.0119%" height="15" fill="rgb(241,78,40)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="367.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="39.1693%" y="341" width="0.0119%" height="15" fill="rgb(222,35,25)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="39.1693%" y="325" width="0.0119%" height="15" fill="rgb(207,92,16)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="335.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="39.1693%" y="309" width="0.0119%" height="15" fill="rgb(216,59,51)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="319.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.1700%" y="293" width="0.0113%" height="15" fill="rgb(213,80,28)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="303.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.1700%" y="277" width="0.0113%" height="15" fill="rgb(220,93,7)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="287.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.1700%" y="261" width="0.0113%" height="15" fill="rgb(225,24,44)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="271.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.1700%" y="245" width="0.0113%" height="15" fill="rgb(243,74,40)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.1700%" y="229" width="0.0113%" height="15" fill="rgb(228,39,7)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="239.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="39.1700%" y="213" width="0.0113%" height="15" fill="rgb(227,79,8)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="223.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.1700%" y="197" width="0.0113%" height="15" fill="rgb(236,58,11)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="207.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.1700%" y="181" width="0.0113%" height="15" fill="rgb(249,63,35)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="191.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.1700%" y="165" width="0.0113%" height="15" fill="rgb(252,114,16)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="175.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.1700%" y="149" width="0.0113%" height="15" fill="rgb(254,151,24)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.1700%" y="133" width="0.0113%" height="15" fill="rgb(253,54,39)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="143.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="39.1693%" y="581" width="0.0132%" height="15" fill="rgb(243,25,45)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="591.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="39.1693%" y="565" width="0.0132%" height="15" fill="rgb(234,134,9)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="575.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="39.1693%" y="549" width="0.0132%" height="15" fill="rgb(227,166,31)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="559.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="39.1693%" y="533" width="0.0132%" height="15" fill="rgb(245,143,41)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="39.1693%" y="517" width="0.0132%" height="15" fill="rgb(238,181,32)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="527.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="39.1693%" y="501" width="0.0132%" height="15" fill="rgb(224,113,18)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="511.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="39.1693%" y="485" width="0.0132%" height="15" fill="rgb(240,229,28)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="495.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="39.1693%" y="469" width="0.0132%" height="15" fill="rgb(250,185,3)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="479.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="39.1693%" y="453" width="0.0132%" height="15" fill="rgb(212,59,25)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="463.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="39.1693%" y="437" width="0.0132%" height="15" fill="rgb(221,87,20)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="39.1693%" y="421" width="0.0132%" height="15" fill="rgb(213,74,28)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="431.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="39.1693%" y="405" width="0.0132%" height="15" fill="rgb(224,132,34)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="415.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="39.1693%" y="677" width="0.0146%" height="15" fill="rgb(222,101,24)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="687.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="39.1693%" y="661" width="0.0146%" height="15" fill="rgb(254,142,4)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="671.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="39.1693%" y="645" width="0.0146%" height="15" fill="rgb(230,229,49)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="655.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="39.1693%" y="629" width="0.0146%" height="15" fill="rgb(238,70,47)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="39.1693%" y="613" width="0.0146%" height="15" fill="rgb(231,160,17)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="623.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="39.1693%" y="597" width="0.0146%" height="15" fill="rgb(218,68,53)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="607.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="39.1693%" y="773" width="0.0152%" height="15" fill="rgb(236,111,10)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="783.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="39.1693%" y="757" width="0.0152%" height="15" fill="rgb(224,34,41)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="767.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="39.1693%" y="741" width="0.0152%" height="15" fill="rgb(241,118,19)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="751.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="39.1693%" y="725" width="0.0152%" height="15" fill="rgb(238,129,25)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="39.1693%" y="709" width="0.0152%" height="15" fill="rgb(238,22,31)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="719.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="39.1693%" y="693" width="0.0152%" height="15" fill="rgb(222,174,48)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="703.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="39.1693%" y="853" width="0.0165%" height="15" fill="rgb(206,152,40)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="863.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="39.1693%" y="837" width="0.0165%" height="15" fill="rgb(218,99,54)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="847.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="39.1693%" y="821" width="0.0165%" height="15" fill="rgb(220,174,26)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="39.1693%" y="805" width="0.0165%" height="15" fill="rgb(245,116,9)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="815.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="39.1693%" y="789" width="0.0165%" height="15" fill="rgb(209,72,35)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="799.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="39.1866%" y="133" width="0.0119%" height="15" fill="rgb(226,126,21)" fg:x="59196" fg:w="18"/><text x="39.4366%" y="143.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="39.1859%" y="229" width="0.0152%" height="15" fill="rgb(227,192,1)" fg:x="59195" fg:w="23"/><text x="39.4359%" y="239.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="39.1866%" y="213" width="0.0146%" height="15" fill="rgb(237,180,29)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="223.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="39.1866%" y="197" width="0.0146%" height="15" fill="rgb(230,197,35)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="207.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="39.1866%" y="181" width="0.0146%" height="15" fill="rgb(246,193,31)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="191.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="39.1866%" y="165" width="0.0146%" height="15" fill="rgb(241,36,4)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="39.1866%" y="149" width="0.0146%" height="15" fill="rgb(241,130,17)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="159.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="39.1859%" y="309" width="0.0159%" height="15" fill="rgb(206,137,32)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="319.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="39.1859%" y="293" width="0.0159%" height="15" fill="rgb(237,228,51)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="303.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="39.1859%" y="277" width="0.0159%" height="15" fill="rgb(243,6,42)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="287.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="39.1859%" y="261" width="0.0159%" height="15" fill="rgb(251,74,28)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="39.1859%" y="245" width="0.0159%" height="15" fill="rgb(218,20,49)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="255.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="39.1859%" y="405" width="0.0165%" height="15" fill="rgb(238,28,14)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="415.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="39.1859%" y="389" width="0.0165%" height="15" fill="rgb(229,40,46)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="399.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="39.1859%" y="373" width="0.0165%" height="15" fill="rgb(244,195,20)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="383.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="39.1859%" y="357" width="0.0165%" height="15" fill="rgb(253,56,35)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="39.1859%" y="341" width="0.0165%" height="15" fill="rgb(210,149,44)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="351.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="39.1859%" y="325" width="0.0165%" height="15" fill="rgb(240,135,12)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="335.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="39.1859%" y="597" width="0.0185%" height="15" fill="rgb(251,24,50)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="607.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="39.1859%" y="581" width="0.0185%" height="15" fill="rgb(243,200,47)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="591.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="39.1859%" y="565" width="0.0185%" height="15" fill="rgb(224,166,26)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="575.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="39.1859%" y="549" width="0.0185%" height="15" fill="rgb(233,0,47)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="39.1859%" y="533" width="0.0185%" height="15" fill="rgb(253,80,5)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="543.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="39.1859%" y="517" width="0.0185%" height="15" fill="rgb(214,133,25)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="527.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="39.1859%" y="501" width="0.0185%" height="15" fill="rgb(209,27,14)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="511.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="39.1859%" y="485" width="0.0185%" height="15" fill="rgb(219,102,51)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="495.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="39.1859%" y="469" width="0.0185%" height="15" fill="rgb(237,18,16)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="479.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="39.1859%" y="453" width="0.0185%" height="15" fill="rgb(241,85,17)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="39.1859%" y="437" width="0.0185%" height="15" fill="rgb(236,90,42)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="447.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="39.1859%" y="421" width="0.0185%" height="15" fill="rgb(249,57,21)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="431.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="39.1859%" y="693" width="0.0192%" height="15" fill="rgb(243,12,36)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="703.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="39.1859%" y="677" width="0.0192%" height="15" fill="rgb(253,128,47)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="687.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="39.1859%" y="661" width="0.0192%" height="15" fill="rgb(207,33,20)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="671.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="39.1859%" y="645" width="0.0192%" height="15" fill="rgb(233,215,35)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="39.1859%" y="629" width="0.0192%" height="15" fill="rgb(249,188,52)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="639.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="39.1859%" y="613" width="0.0192%" height="15" fill="rgb(225,12,32)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="623.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="39.1859%" y="789" width="0.0199%" height="15" fill="rgb(247,98,14)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="799.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="39.1859%" y="773" width="0.0199%" height="15" fill="rgb(247,219,48)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="783.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="39.1859%" y="757" width="0.0199%" height="15" fill="rgb(253,60,48)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="767.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="39.1859%" y="741" width="0.0199%" height="15" fill="rgb(245,15,52)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="39.1859%" y="725" width="0.0199%" height="15" fill="rgb(220,133,28)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="735.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="39.1859%" y="709" width="0.0199%" height="15" fill="rgb(217,180,4)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="719.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="39.1859%" y="853" width="0.0218%" height="15" fill="rgb(251,24,1)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="863.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="39.1859%" y="837" width="0.0218%" height="15" fill="rgb(212,185,49)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="39.1859%" y="821" width="0.0218%" height="15" fill="rgb(215,175,22)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="831.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="39.1859%" y="805" width="0.0218%" height="15" fill="rgb(250,205,14)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="815.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="39.2104%" y="181" width="0.0139%" height="15" fill="rgb(225,211,22)" fg:x="59232" fg:w="21"/><text x="39.4604%" y="191.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="39.2077%" y="357" width="0.0172%" height="15" fill="rgb(251,179,42)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="367.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="39.2077%" y="341" width="0.0172%" height="15" fill="rgb(208,216,51)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="351.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="39.2077%" y="325" width="0.0172%" height="15" fill="rgb(235,36,11)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="335.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="39.2077%" y="309" width="0.0172%" height="15" fill="rgb(213,189,28)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="39.2077%" y="293" width="0.0172%" height="15" fill="rgb(227,203,42)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="303.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="39.2077%" y="277" width="0.0172%" height="15" fill="rgb(244,72,36)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="287.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="39.2097%" y="261" width="0.0152%" height="15" fill="rgb(213,53,17)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="271.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="39.2097%" y="245" width="0.0152%" height="15" fill="rgb(207,167,3)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="255.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="39.2097%" y="229" width="0.0152%" height="15" fill="rgb(216,98,30)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="239.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="39.2097%" y="213" width="0.0152%" height="15" fill="rgb(236,123,15)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="39.2097%" y="197" width="0.0152%" height="15" fill="rgb(248,81,50)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="207.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="39.2077%" y="453" width="0.0199%" height="15" fill="rgb(214,120,4)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="463.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="39.2077%" y="437" width="0.0199%" height="15" fill="rgb(208,179,34)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="447.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="39.2077%" y="421" width="0.0199%" height="15" fill="rgb(227,140,7)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="431.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="39.2077%" y="405" width="0.0199%" height="15" fill="rgb(214,22,6)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="39.2077%" y="389" width="0.0199%" height="15" fill="rgb(207,137,27)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="399.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="39.2077%" y="373" width="0.0199%" height="15" fill="rgb(210,8,46)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="383.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.02%)</title><rect x="39.2077%" y="549" width="0.0205%" height="15" fill="rgb(240,16,54)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="559.50"></text></g><g><title>Parse::Parse (31 samples, 0.02%)</title><rect x="39.2077%" y="533" width="0.0205%" height="15" fill="rgb(211,209,29)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="543.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.02%)</title><rect x="39.2077%" y="517" width="0.0205%" height="15" fill="rgb(226,228,24)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="527.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.02%)</title><rect x="39.2077%" y="501" width="0.0205%" height="15" fill="rgb(222,84,9)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="39.2077%" y="485" width="0.0205%" height="15" fill="rgb(234,203,30)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="495.50"></text></g><g><title>Parse::do_call (31 samples, 0.02%)</title><rect x="39.2077%" y="469" width="0.0205%" height="15" fill="rgb(238,109,14)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="479.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.02%)</title><rect x="39.2077%" y="645" width="0.0245%" height="15" fill="rgb(233,206,34)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="655.50"></text></g><g><title>Parse::Parse (37 samples, 0.02%)</title><rect x="39.2077%" y="629" width="0.0245%" height="15" fill="rgb(220,167,47)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="639.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="39.2077%" y="613" width="0.0245%" height="15" fill="rgb(238,105,10)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="623.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="39.2077%" y="597" width="0.0245%" height="15" fill="rgb(213,227,17)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="39.2077%" y="581" width="0.0245%" height="15" fill="rgb(217,132,38)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="591.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="39.2077%" y="565" width="0.0245%" height="15" fill="rgb(242,146,4)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="575.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.03%)</title><rect x="39.2077%" y="741" width="0.0258%" height="15" fill="rgb(212,61,9)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="751.50"></text></g><g><title>Parse::Parse (39 samples, 0.03%)</title><rect x="39.2077%" y="725" width="0.0258%" height="15" fill="rgb(247,126,22)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="735.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.03%)</title><rect x="39.2077%" y="709" width="0.0258%" height="15" fill="rgb(220,196,2)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="719.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.03%)</title><rect x="39.2077%" y="693" width="0.0258%" height="15" fill="rgb(208,46,4)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="39.2077%" y="677" width="0.0258%" height="15" fill="rgb(252,104,46)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="687.50"></text></g><g><title>Parse::do_call (39 samples, 0.03%)</title><rect x="39.2077%" y="661" width="0.0258%" height="15" fill="rgb(237,152,48)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="671.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="39.2077%" y="837" width="0.0271%" height="15" fill="rgb(221,59,37)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="847.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="39.2077%" y="821" width="0.0271%" height="15" fill="rgb(209,202,51)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="831.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.03%)</title><rect x="39.2077%" y="805" width="0.0271%" height="15" fill="rgb(228,81,30)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="815.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.03%)</title><rect x="39.2077%" y="789" width="0.0271%" height="15" fill="rgb(227,42,39)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.03%)</title><rect x="39.2077%" y="773" width="0.0271%" height="15" fill="rgb(221,26,2)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="783.50"></text></g><g><title>Parse::do_call (41 samples, 0.03%)</title><rect x="39.2077%" y="757" width="0.0271%" height="15" fill="rgb(254,61,31)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="767.50"></text></g><g><title>Parse::do_call (47 samples, 0.03%)</title><rect x="39.2077%" y="853" width="0.0311%" height="15" fill="rgb(222,173,38)" fg:x="59228" fg:w="47"/><text x="39.4577%" y="863.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.2389%" y="613" width="0.0113%" height="15" fill="rgb(218,50,12)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="623.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.2389%" y="597" width="0.0113%" height="15" fill="rgb(223,88,40)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="607.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.2389%" y="581" width="0.0113%" height="15" fill="rgb(237,54,19)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="591.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.2389%" y="565" width="0.0113%" height="15" fill="rgb(251,129,25)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.2389%" y="549" width="0.0113%" height="15" fill="rgb(238,97,19)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="559.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="39.2389%" y="533" width="0.0113%" height="15" fill="rgb(240,169,18)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="543.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="39.2389%" y="709" width="0.0132%" height="15" fill="rgb(230,187,49)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="719.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="39.2389%" y="693" width="0.0132%" height="15" fill="rgb(209,44,26)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="703.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="39.2389%" y="677" width="0.0132%" height="15" fill="rgb(244,0,6)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="687.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="39.2389%" y="661" width="0.0132%" height="15" fill="rgb(248,18,21)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="39.2389%" y="645" width="0.0132%" height="15" fill="rgb(245,180,19)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="655.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="39.2389%" y="629" width="0.0132%" height="15" fill="rgb(252,118,36)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="639.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="39.2389%" y="805" width="0.0139%" height="15" fill="rgb(210,224,19)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="815.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="39.2389%" y="789" width="0.0139%" height="15" fill="rgb(218,30,24)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="799.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="39.2389%" y="773" width="0.0139%" height="15" fill="rgb(219,75,50)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="783.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="39.2389%" y="757" width="0.0139%" height="15" fill="rgb(234,72,50)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="39.2389%" y="741" width="0.0139%" height="15" fill="rgb(219,100,48)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="751.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="39.2389%" y="725" width="0.0139%" height="15" fill="rgb(253,5,41)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="735.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="39.2389%" y="853" width="0.0152%" height="15" fill="rgb(247,181,11)" fg:x="59275" fg:w="23"/><text x="39.4889%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="39.2389%" y="837" width="0.0152%" height="15" fill="rgb(222,223,25)" fg:x="59275" fg:w="23"/><text x="39.4889%" y="847.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="39.2389%" y="821" width="0.0152%" height="15" fill="rgb(214,198,28)" fg:x="59275" fg:w="23"/><text x="39.4889%" y="831.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.2541%" y="725" width="0.0106%" height="15" fill="rgb(230,46,43)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="735.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.2541%" y="709" width="0.0106%" height="15" fill="rgb(233,65,53)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="719.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.2541%" y="693" width="0.0106%" height="15" fill="rgb(221,121,27)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="703.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.2541%" y="677" width="0.0106%" height="15" fill="rgb(247,70,47)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.2541%" y="661" width="0.0106%" height="15" fill="rgb(228,85,35)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="671.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="39.2541%" y="645" width="0.0106%" height="15" fill="rgb(209,50,18)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="655.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.2541%" y="629" width="0.0106%" height="15" fill="rgb(250,19,35)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="639.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.2541%" y="613" width="0.0106%" height="15" fill="rgb(253,107,29)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="623.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.2541%" y="597" width="0.0106%" height="15" fill="rgb(252,179,29)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="607.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.2541%" y="581" width="0.0106%" height="15" fill="rgb(238,194,6)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.2541%" y="565" width="0.0106%" height="15" fill="rgb(238,164,29)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="575.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="39.2541%" y="549" width="0.0106%" height="15" fill="rgb(224,25,9)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="559.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="39.2541%" y="821" width="0.0119%" height="15" fill="rgb(244,153,23)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="831.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="39.2541%" y="805" width="0.0119%" height="15" fill="rgb(212,203,14)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="815.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="39.2541%" y="789" width="0.0119%" height="15" fill="rgb(220,164,20)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="799.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="39.2541%" y="773" width="0.0119%" height="15" fill="rgb(222,203,48)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="39.2541%" y="757" width="0.0119%" height="15" fill="rgb(215,159,22)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="767.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="39.2541%" y="741" width="0.0119%" height="15" fill="rgb(216,183,47)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="39.2541%" y="853" width="0.0126%" height="15" fill="rgb(229,195,25)" fg:x="59298" fg:w="19"/><text x="39.5041%" y="863.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="39.2541%" y="837" width="0.0126%" height="15" fill="rgb(224,132,51)" fg:x="59298" fg:w="19"/><text x="39.5041%" y="847.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="39.2773%" y="101" width="0.0245%" height="15" fill="rgb(240,63,7)" fg:x="59333" fg:w="37"/><text x="39.5273%" y="111.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="39.2859%" y="85" width="0.0159%" height="15" fill="rgb(249,182,41)" fg:x="59346" fg:w="24"/><text x="39.5359%" y="95.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="39.2859%" y="69" width="0.0159%" height="15" fill="rgb(243,47,26)" fg:x="59346" fg:w="24"/><text x="39.5359%" y="79.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.04%)</title><rect x="39.2739%" y="181" width="0.0364%" height="15" fill="rgb(233,48,2)" fg:x="59328" fg:w="55"/><text x="39.5239%" y="191.50"></text></g><g><title>Parse::Parse (55 samples, 0.04%)</title><rect x="39.2739%" y="165" width="0.0364%" height="15" fill="rgb(244,165,34)" fg:x="59328" fg:w="55"/><text x="39.5239%" y="175.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.04%)</title><rect x="39.2746%" y="149" width="0.0357%" height="15" fill="rgb(207,89,7)" fg:x="59329" fg:w="54"/><text x="39.5246%" y="159.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.04%)</title><rect x="39.2746%" y="133" width="0.0357%" height="15" fill="rgb(244,117,36)" fg:x="59329" fg:w="54"/><text x="39.5246%" y="143.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.04%)</title><rect x="39.2753%" y="117" width="0.0351%" height="15" fill="rgb(226,144,34)" fg:x="59330" fg:w="53"/><text x="39.5253%" y="127.50"></text></g><g><title>Parse::do_call (64 samples, 0.04%)</title><rect x="39.2686%" y="197" width="0.0424%" height="15" fill="rgb(213,23,19)" fg:x="59320" fg:w="64"/><text x="39.5186%" y="207.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.04%)</title><rect x="39.2686%" y="277" width="0.0430%" height="15" fill="rgb(217,75,12)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="287.50"></text></g><g><title>Parse::Parse (65 samples, 0.04%)</title><rect x="39.2686%" y="261" width="0.0430%" height="15" fill="rgb(224,159,17)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="271.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.04%)</title><rect x="39.2686%" y="245" width="0.0430%" height="15" fill="rgb(217,118,1)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="255.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.04%)</title><rect x="39.2686%" y="229" width="0.0430%" height="15" fill="rgb(232,180,48)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.04%)</title><rect x="39.2686%" y="213" width="0.0430%" height="15" fill="rgb(230,27,33)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="223.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.05%)</title><rect x="39.2680%" y="373" width="0.0457%" height="15" fill="rgb(205,31,21)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="383.50"></text></g><g><title>Parse::Parse (69 samples, 0.05%)</title><rect x="39.2680%" y="357" width="0.0457%" height="15" fill="rgb(253,59,4)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="367.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.05%)</title><rect x="39.2680%" y="341" width="0.0457%" height="15" fill="rgb(224,201,9)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="351.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.05%)</title><rect x="39.2680%" y="325" width="0.0457%" height="15" fill="rgb(229,206,30)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.05%)</title><rect x="39.2680%" y="309" width="0.0457%" height="15" fill="rgb(212,67,47)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="319.50"></text></g><g><title>Parse::do_call (69 samples, 0.05%)</title><rect x="39.2680%" y="293" width="0.0457%" height="15" fill="rgb(211,96,50)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="303.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.05%)</title><rect x="39.2667%" y="469" width="0.0549%" height="15" fill="rgb(252,114,18)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="479.50"></text></g><g><title>Parse::Parse (83 samples, 0.05%)</title><rect x="39.2667%" y="453" width="0.0549%" height="15" fill="rgb(223,58,37)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="463.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.05%)</title><rect x="39.2667%" y="437" width="0.0549%" height="15" fill="rgb(237,70,4)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="447.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.05%)</title><rect x="39.2667%" y="421" width="0.0549%" height="15" fill="rgb(244,85,46)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.05%)</title><rect x="39.2667%" y="405" width="0.0549%" height="15" fill="rgb(223,39,52)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="415.50"></text></g><g><title>Parse::do_call (83 samples, 0.05%)</title><rect x="39.2667%" y="389" width="0.0549%" height="15" fill="rgb(218,200,14)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="399.50"></text></g><g><title>ParseGenerator::generate (99 samples, 0.07%)</title><rect x="39.2667%" y="565" width="0.0655%" height="15" fill="rgb(208,171,16)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="575.50"></text></g><g><title>Parse::Parse (99 samples, 0.07%)</title><rect x="39.2667%" y="549" width="0.0655%" height="15" fill="rgb(234,200,18)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="559.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.07%)</title><rect x="39.2667%" y="533" width="0.0655%" height="15" fill="rgb(228,45,11)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="543.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.07%)</title><rect x="39.2667%" y="517" width="0.0655%" height="15" fill="rgb(237,182,11)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.07%)</title><rect x="39.2667%" y="501" width="0.0655%" height="15" fill="rgb(241,175,49)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="511.50"></text></g><g><title>Parse::do_call (99 samples, 0.07%)</title><rect x="39.2667%" y="485" width="0.0655%" height="15" fill="rgb(247,38,35)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="495.50"></text></g><g><title>PredictedCallGenerator::generate (16 samples, 0.01%)</title><rect x="39.3216%" y="469" width="0.0106%" height="15" fill="rgb(228,39,49)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="479.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.3216%" y="453" width="0.0106%" height="15" fill="rgb(226,101,26)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="463.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.3216%" y="437" width="0.0106%" height="15" fill="rgb(206,141,19)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="447.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.3216%" y="421" width="0.0106%" height="15" fill="rgb(211,200,13)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="431.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.3216%" y="405" width="0.0106%" height="15" fill="rgb(241,121,6)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.3216%" y="389" width="0.0106%" height="15" fill="rgb(234,221,29)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="399.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="39.3216%" y="373" width="0.0106%" height="15" fill="rgb(229,136,5)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="383.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.3216%" y="357" width="0.0106%" height="15" fill="rgb(238,36,11)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="367.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.3216%" y="341" width="0.0106%" height="15" fill="rgb(251,55,41)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="351.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.3216%" y="325" width="0.0106%" height="15" fill="rgb(242,34,40)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="335.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.3216%" y="309" width="0.0106%" height="15" fill="rgb(215,42,17)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.3216%" y="293" width="0.0106%" height="15" fill="rgb(207,44,46)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="303.50"></text></g><g><title>ParseGenerator::generate (104 samples, 0.07%)</title><rect x="39.2667%" y="661" width="0.0688%" height="15" fill="rgb(211,206,28)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="671.50"></text></g><g><title>Parse::Parse (104 samples, 0.07%)</title><rect x="39.2667%" y="645" width="0.0688%" height="15" fill="rgb(237,167,16)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="655.50"></text></g><g><title>Parse::do_all_blocks (104 samples, 0.07%)</title><rect x="39.2667%" y="629" width="0.0688%" height="15" fill="rgb(233,66,6)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="639.50"></text></g><g><title>Parse::do_one_block (104 samples, 0.07%)</title><rect x="39.2667%" y="613" width="0.0688%" height="15" fill="rgb(246,123,29)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.07%)</title><rect x="39.2667%" y="597" width="0.0688%" height="15" fill="rgb(209,62,40)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="607.50"></text></g><g><title>Parse::do_call (104 samples, 0.07%)</title><rect x="39.2667%" y="581" width="0.0688%" height="15" fill="rgb(218,4,25)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="591.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.07%)</title><rect x="39.2667%" y="757" width="0.0741%" height="15" fill="rgb(253,91,49)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="767.50"></text></g><g><title>Parse::Parse (112 samples, 0.07%)</title><rect x="39.2667%" y="741" width="0.0741%" height="15" fill="rgb(228,155,29)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="751.50"></text></g><g><title>Parse::do_all_blocks (112 samples, 0.07%)</title><rect x="39.2667%" y="725" width="0.0741%" height="15" fill="rgb(243,57,37)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="735.50"></text></g><g><title>Parse::do_one_block (112 samples, 0.07%)</title><rect x="39.2667%" y="709" width="0.0741%" height="15" fill="rgb(244,167,17)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (112 samples, 0.07%)</title><rect x="39.2667%" y="693" width="0.0741%" height="15" fill="rgb(207,181,38)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="703.50"></text></g><g><title>Parse::do_call (112 samples, 0.07%)</title><rect x="39.2667%" y="677" width="0.0741%" height="15" fill="rgb(211,8,23)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="687.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.3408%" y="741" width="0.0113%" height="15" fill="rgb(235,11,44)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="751.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.3408%" y="725" width="0.0113%" height="15" fill="rgb(248,18,52)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="735.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.3408%" y="709" width="0.0113%" height="15" fill="rgb(208,4,7)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="719.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.3408%" y="693" width="0.0113%" height="15" fill="rgb(240,17,39)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.3408%" y="677" width="0.0113%" height="15" fill="rgb(207,170,3)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="687.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="39.3408%" y="661" width="0.0113%" height="15" fill="rgb(236,100,52)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="671.50"></text></g><g><title>ParseGenerator::generate (130 samples, 0.09%)</title><rect x="39.2667%" y="853" width="0.0861%" height="15" fill="rgb(246,78,51)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="863.50"></text></g><g><title>Parse::Parse (130 samples, 0.09%)</title><rect x="39.2667%" y="837" width="0.0861%" height="15" fill="rgb(211,17,15)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="847.50"></text></g><g><title>Parse::do_all_blocks (130 samples, 0.09%)</title><rect x="39.2667%" y="821" width="0.0861%" height="15" fill="rgb(209,59,46)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="831.50"></text></g><g><title>Parse::do_one_block (130 samples, 0.09%)</title><rect x="39.2667%" y="805" width="0.0861%" height="15" fill="rgb(210,92,25)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (130 samples, 0.09%)</title><rect x="39.2667%" y="789" width="0.0861%" height="15" fill="rgb(238,174,52)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="799.50"></text></g><g><title>Parse::do_call (130 samples, 0.09%)</title><rect x="39.2667%" y="773" width="0.0861%" height="15" fill="rgb(230,73,7)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (18 samples, 0.01%)</title><rect x="39.3408%" y="757" width="0.0119%" height="15" fill="rgb(243,124,40)" fg:x="59429" fg:w="18"/><text x="39.5908%" y="767.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="39.3805%" y="757" width="0.0152%" height="15" fill="rgb(244,170,11)" fg:x="59489" fg:w="23"/><text x="39.6305%" y="767.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="39.3805%" y="741" width="0.0152%" height="15" fill="rgb(207,114,54)" fg:x="59489" fg:w="23"/><text x="39.6305%" y="751.50"></text></g><g><title>Thread::call_run (51 samples, 0.03%)</title><rect x="39.3746%" y="853" width="0.0338%" height="15" fill="rgb(205,42,20)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (51 samples, 0.03%)</title><rect x="39.3746%" y="837" width="0.0338%" height="15" fill="rgb(230,30,28)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (51 samples, 0.03%)</title><rect x="39.3746%" y="821" width="0.0338%" height="15" fill="rgb(205,73,54)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (51 samples, 0.03%)</title><rect x="39.3746%" y="805" width="0.0338%" height="15" fill="rgb(254,227,23)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="815.50"></text></g><g><title>C2Compiler::compile_method (51 samples, 0.03%)</title><rect x="39.3746%" y="789" width="0.0338%" height="15" fill="rgb(228,202,34)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="799.50"></text></g><g><title>Compile::Compile (51 samples, 0.03%)</title><rect x="39.3746%" y="773" width="0.0338%" height="15" fill="rgb(222,225,37)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="783.50"></text></g><g><title>ciEnv::register_method (19 samples, 0.01%)</title><rect x="39.3957%" y="757" width="0.0126%" height="15" fill="rgb(221,14,54)" fg:x="59512" fg:w="19"/><text x="39.6457%" y="767.50"></text></g><g><title>nmethod::new_nmethod (18 samples, 0.01%)</title><rect x="39.3964%" y="741" width="0.0119%" height="15" fill="rgb(254,102,2)" fg:x="59513" fg:w="18"/><text x="39.6464%" y="751.50"></text></g><g><title>_dl_update_slotinfo (38 samples, 0.03%)</title><rect x="39.4222%" y="853" width="0.0252%" height="15" fill="rgb(232,104,17)" fg:x="59552" fg:w="38"/><text x="39.6722%" y="863.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="39.4739%" y="725" width="0.0113%" height="15" fill="rgb(250,220,14)" fg:x="59630" fg:w="17"/><text x="39.7239%" y="735.50"></text></g><g><title>start_thread (45 samples, 0.03%)</title><rect x="39.4560%" y="853" width="0.0298%" height="15" fill="rgb(241,158,9)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="863.50"></text></g><g><title>thread_native_entry (45 samples, 0.03%)</title><rect x="39.4560%" y="837" width="0.0298%" height="15" fill="rgb(246,9,43)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="847.50"></text></g><g><title>Thread::call_run (45 samples, 0.03%)</title><rect x="39.4560%" y="821" width="0.0298%" height="15" fill="rgb(206,73,33)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (45 samples, 0.03%)</title><rect x="39.4560%" y="805" width="0.0298%" height="15" fill="rgb(222,79,8)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (45 samples, 0.03%)</title><rect x="39.4560%" y="789" width="0.0298%" height="15" fill="rgb(234,8,54)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (45 samples, 0.03%)</title><rect x="39.4560%" y="773" width="0.0298%" height="15" fill="rgb(209,134,38)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="783.50"></text></g><g><title>C2Compiler::compile_method (45 samples, 0.03%)</title><rect x="39.4560%" y="757" width="0.0298%" height="15" fill="rgb(230,127,29)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="767.50"></text></g><g><title>Compile::Compile (45 samples, 0.03%)</title><rect x="39.4560%" y="741" width="0.0298%" height="15" fill="rgb(242,44,41)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="751.50"></text></g><g><title>[unknown] (46,014 samples, 30.46%)</title><rect x="9.0314%" y="869" width="30.4603%" height="15" fill="rgb(222,56,43)" fg:x="13643" fg:w="46014"/><text x="9.2814%" y="879.50">[unknown]</text></g><g><title>Dict::doubhash (17 samples, 0.01%)</title><rect x="39.5513%" y="677" width="0.0113%" height="15" fill="rgb(238,39,47)" fg:x="59747" fg:w="17"/><text x="39.8013%" y="687.50"></text></g><g><title>Dict::Insert (51 samples, 0.03%)</title><rect x="39.5394%" y="693" width="0.0338%" height="15" fill="rgb(226,79,43)" fg:x="59729" fg:w="51"/><text x="39.7894%" y="703.50"></text></g><g><title>CompileWrapper::CompileWrapper (62 samples, 0.04%)</title><rect x="39.5381%" y="725" width="0.0410%" height="15" fill="rgb(242,105,53)" fg:x="59727" fg:w="62"/><text x="39.7881%" y="735.50"></text></g><g><title>Type::Initialize (61 samples, 0.04%)</title><rect x="39.5387%" y="709" width="0.0404%" height="15" fill="rgb(251,132,46)" fg:x="59728" fg:w="61"/><text x="39.7887%" y="719.50"></text></g><g><title>Compile::identify_useful_nodes (114 samples, 0.08%)</title><rect x="39.6056%" y="709" width="0.0755%" height="15" fill="rgb(231,77,14)" fg:x="59829" fg:w="114"/><text x="39.8556%" y="719.50"></text></g><g><title>Compile::remove_useless_nodes (116 samples, 0.08%)</title><rect x="39.6811%" y="709" width="0.0768%" height="15" fill="rgb(240,135,9)" fg:x="59943" fg:w="116"/><text x="39.9311%" y="719.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (298 samples, 0.20%)</title><rect x="39.5837%" y="725" width="0.1973%" height="15" fill="rgb(248,109,14)" fg:x="59796" fg:w="298"/><text x="39.8337%" y="735.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (21 samples, 0.01%)</title><rect x="39.7671%" y="709" width="0.0139%" height="15" fill="rgb(227,146,52)" fg:x="60073" fg:w="21"/><text x="40.0171%" y="719.50"></text></g><g><title>C2Compiler::compile_method (462 samples, 0.31%)</title><rect x="39.5036%" y="757" width="0.3058%" height="15" fill="rgb(232,54,3)" fg:x="59675" fg:w="462"/><text x="39.7536%" y="767.50"></text></g><g><title>Compile::Compile (455 samples, 0.30%)</title><rect x="39.5083%" y="741" width="0.3012%" height="15" fill="rgb(229,201,43)" fg:x="59682" fg:w="455"/><text x="39.7583%" y="751.50"></text></g><g><title>ciEnv::~ciEnv (19 samples, 0.01%)</title><rect x="39.8532%" y="757" width="0.0126%" height="15" fill="rgb(252,161,33)" fg:x="60203" fg:w="19"/><text x="40.1032%" y="767.50"></text></g><g><title>ciObjectFactory::remove_symbols (18 samples, 0.01%)</title><rect x="39.8538%" y="741" width="0.0119%" height="15" fill="rgb(226,146,40)" fg:x="60204" fg:w="18"/><text x="40.1038%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (553 samples, 0.37%)</title><rect x="39.5003%" y="773" width="0.3661%" height="15" fill="rgb(219,47,25)" fg:x="59670" fg:w="553"/><text x="39.7503%" y="783.50"></text></g><g><title>__pthread_cond_signal (20 samples, 0.01%)</title><rect x="39.8883%" y="725" width="0.0132%" height="15" fill="rgb(250,135,13)" fg:x="60256" fg:w="20"/><text x="40.1383%" y="735.50"></text></g><g><title>futex_wake (19 samples, 0.01%)</title><rect x="39.8889%" y="709" width="0.0126%" height="15" fill="rgb(219,229,18)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="39.8889%" y="693" width="0.0126%" height="15" fill="rgb(217,152,27)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="703.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="39.8889%" y="677" width="0.0126%" height="15" fill="rgb(225,71,47)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="687.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.01%)</title><rect x="39.8889%" y="661" width="0.0126%" height="15" fill="rgb(220,139,14)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="671.50"></text></g><g><title>do_futex (19 samples, 0.01%)</title><rect x="39.8889%" y="645" width="0.0126%" height="15" fill="rgb(247,54,32)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="655.50"></text></g><g><title>futex_wake (19 samples, 0.01%)</title><rect x="39.8889%" y="629" width="0.0126%" height="15" fill="rgb(252,131,39)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="639.50"></text></g><g><title>wake_up_q (16 samples, 0.01%)</title><rect x="39.8909%" y="613" width="0.0106%" height="15" fill="rgb(210,108,39)" fg:x="60260" fg:w="16"/><text x="40.1409%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.07%)</title><rect x="39.9300%" y="517" width="0.0748%" height="15" fill="rgb(205,23,29)" fg:x="60319" fg:w="113"/><text x="40.1800%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (110 samples, 0.07%)</title><rect x="39.9319%" y="501" width="0.0728%" height="15" fill="rgb(246,139,46)" fg:x="60322" fg:w="110"/><text x="40.1819%" y="511.50"></text></g><g><title>native_write_msr (109 samples, 0.07%)</title><rect x="39.9326%" y="485" width="0.0722%" height="15" fill="rgb(250,81,26)" fg:x="60323" fg:w="109"/><text x="40.1826%" y="495.50"></text></g><g><title>finish_task_switch (116 samples, 0.08%)</title><rect x="39.9293%" y="533" width="0.0768%" height="15" fill="rgb(214,104,7)" fg:x="60318" fg:w="116"/><text x="40.1793%" y="543.50"></text></g><g><title>futex_wait_queue_me (155 samples, 0.10%)</title><rect x="39.9134%" y="581" width="0.1026%" height="15" fill="rgb(233,189,8)" fg:x="60294" fg:w="155"/><text x="40.1634%" y="591.50"></text></g><g><title>schedule (142 samples, 0.09%)</title><rect x="39.9220%" y="565" width="0.0940%" height="15" fill="rgb(228,141,17)" fg:x="60307" fg:w="142"/><text x="40.1720%" y="575.50"></text></g><g><title>__schedule (141 samples, 0.09%)</title><rect x="39.9227%" y="549" width="0.0933%" height="15" fill="rgb(247,157,1)" fg:x="60308" fg:w="141"/><text x="40.1727%" y="559.50"></text></g><g><title>do_futex (165 samples, 0.11%)</title><rect x="39.9121%" y="613" width="0.1092%" height="15" fill="rgb(249,225,5)" fg:x="60292" fg:w="165"/><text x="40.1621%" y="623.50"></text></g><g><title>futex_wait (164 samples, 0.11%)</title><rect x="39.9128%" y="597" width="0.1086%" height="15" fill="rgb(242,55,13)" fg:x="60293" fg:w="164"/><text x="40.1628%" y="607.50"></text></g><g><title>do_syscall_64 (169 samples, 0.11%)</title><rect x="39.9101%" y="645" width="0.1119%" height="15" fill="rgb(230,49,50)" fg:x="60289" fg:w="169"/><text x="40.1601%" y="655.50"></text></g><g><title>__x64_sys_futex (168 samples, 0.11%)</title><rect x="39.9108%" y="629" width="0.1112%" height="15" fill="rgb(241,111,38)" fg:x="60290" fg:w="168"/><text x="40.1608%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (182 samples, 0.12%)</title><rect x="39.9041%" y="709" width="0.1205%" height="15" fill="rgb(252,155,4)" fg:x="60280" fg:w="182"/><text x="40.1541%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (182 samples, 0.12%)</title><rect x="39.9041%" y="693" width="0.1205%" height="15" fill="rgb(212,69,32)" fg:x="60280" fg:w="182"/><text x="40.1541%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (181 samples, 0.12%)</title><rect x="39.9048%" y="677" width="0.1198%" height="15" fill="rgb(243,107,47)" fg:x="60281" fg:w="181"/><text x="40.1548%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (174 samples, 0.12%)</title><rect x="39.9094%" y="661" width="0.1152%" height="15" fill="rgb(247,130,12)" fg:x="60288" fg:w="174"/><text x="40.1594%" y="671.50"></text></g><g><title>os::PlatformEvent::park (198 samples, 0.13%)</title><rect x="39.9015%" y="725" width="0.1311%" height="15" fill="rgb(233,74,16)" fg:x="60276" fg:w="198"/><text x="40.1515%" y="735.50"></text></g><g><title>Monitor::IWait (224 samples, 0.15%)</title><rect x="39.8856%" y="741" width="0.1483%" height="15" fill="rgb(208,58,18)" fg:x="60252" fg:w="224"/><text x="40.1356%" y="751.50"></text></g><g><title>Monitor::wait (233 samples, 0.15%)</title><rect x="39.8803%" y="757" width="0.1542%" height="15" fill="rgb(242,225,1)" fg:x="60244" fg:w="233"/><text x="40.1303%" y="767.50"></text></g><g><title>CompileQueue::get (268 samples, 0.18%)</title><rect x="39.8750%" y="773" width="0.1774%" height="15" fill="rgb(249,39,40)" fg:x="60236" fg:w="268"/><text x="40.1250%" y="783.50"></text></g><g><title>__GI___clone (843 samples, 0.56%)</title><rect x="39.4950%" y="869" width="0.5580%" height="15" fill="rgb(207,72,44)" fg:x="59662" fg:w="843"/><text x="39.7450%" y="879.50"></text></g><g><title>start_thread (842 samples, 0.56%)</title><rect x="39.4957%" y="853" width="0.5574%" height="15" fill="rgb(215,193,12)" fg:x="59663" fg:w="842"/><text x="39.7457%" y="863.50"></text></g><g><title>thread_native_entry (841 samples, 0.56%)</title><rect x="39.4964%" y="837" width="0.5567%" height="15" fill="rgb(248,41,39)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="847.50"></text></g><g><title>Thread::call_run (841 samples, 0.56%)</title><rect x="39.4964%" y="821" width="0.5567%" height="15" fill="rgb(253,85,4)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (841 samples, 0.56%)</title><rect x="39.4964%" y="805" width="0.5567%" height="15" fill="rgb(243,70,31)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (841 samples, 0.56%)</title><rect x="39.4964%" y="789" width="0.5567%" height="15" fill="rgb(253,195,26)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="799.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.04%)</title><rect x="40.0571%" y="869" width="0.0371%" height="15" fill="rgb(243,42,11)" fg:x="60511" fg:w="56"/><text x="40.3071%" y="879.50"></text></g><g><title>C2_CompilerThre (49,688 samples, 32.89%)</title><rect x="7.2222%" y="885" width="32.8925%" height="15" fill="rgb(239,66,17)" fg:x="10910" fg:w="49688"/><text x="7.4722%" y="895.50">C2_CompilerThre</text></g><g><title>__pthread_cond_timedwait (18 samples, 0.01%)</title><rect x="40.1617%" y="821" width="0.0119%" height="15" fill="rgb(217,132,21)" fg:x="60669" fg:w="18"/><text x="40.4117%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="40.1617%" y="805" width="0.0119%" height="15" fill="rgb(252,202,21)" fg:x="60669" fg:w="18"/><text x="40.4117%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (18 samples, 0.01%)</title><rect x="40.1617%" y="789" width="0.0119%" height="15" fill="rgb(233,98,36)" fg:x="60669" fg:w="18"/><text x="40.4117%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="40.1623%" y="773" width="0.0113%" height="15" fill="rgb(216,153,54)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="783.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="40.1623%" y="757" width="0.0113%" height="15" fill="rgb(250,99,7)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="767.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="40.1623%" y="741" width="0.0113%" height="15" fill="rgb(207,56,50)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="751.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="40.1623%" y="725" width="0.0113%" height="15" fill="rgb(244,61,34)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="735.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="40.1623%" y="709" width="0.0113%" height="15" fill="rgb(241,50,38)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="719.50"></text></g><g><title>futex_wait_queue_me (17 samples, 0.01%)</title><rect x="40.1623%" y="693" width="0.0113%" height="15" fill="rgb(212,166,30)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="703.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="40.1630%" y="677" width="0.0106%" height="15" fill="rgb(249,127,32)" fg:x="60671" fg:w="16"/><text x="40.4130%" y="687.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="40.1630%" y="661" width="0.0106%" height="15" fill="rgb(209,103,0)" fg:x="60671" fg:w="16"/><text x="40.4130%" y="671.50"></text></g><g><title>Unsafe_Park (21 samples, 0.01%)</title><rect x="40.1610%" y="853" width="0.0139%" height="15" fill="rgb(238,209,51)" fg:x="60668" fg:w="21"/><text x="40.4110%" y="863.50"></text></g><g><title>Parker::park (21 samples, 0.01%)</title><rect x="40.1610%" y="837" width="0.0139%" height="15" fill="rgb(237,56,23)" fg:x="60668" fg:w="21"/><text x="40.4110%" y="847.50"></text></g><g><title>[perf-983083.map] (90 samples, 0.06%)</title><rect x="40.1166%" y="869" width="0.0596%" height="15" fill="rgb(215,153,46)" fg:x="60601" fg:w="90"/><text x="40.3666%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="40.1842%" y="645" width="0.0126%" height="15" fill="rgb(224,49,31)" fg:x="60703" fg:w="19"/><text x="40.4342%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="40.1842%" y="629" width="0.0126%" height="15" fill="rgb(250,18,42)" fg:x="60703" fg:w="19"/><text x="40.4342%" y="639.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="40.1842%" y="613" width="0.0126%" height="15" fill="rgb(215,176,39)" fg:x="60703" fg:w="19"/><text x="40.4342%" y="623.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="40.1835%" y="661" width="0.0139%" height="15" fill="rgb(223,77,29)" fg:x="60702" fg:w="21"/><text x="40.4335%" y="671.50"></text></g><g><title>new_sync_read (26 samples, 0.02%)</title><rect x="40.1815%" y="725" width="0.0172%" height="15" fill="rgb(234,94,52)" fg:x="60699" fg:w="26"/><text x="40.4315%" y="735.50"></text></g><g><title>pipe_read (26 samples, 0.02%)</title><rect x="40.1815%" y="709" width="0.0172%" height="15" fill="rgb(220,154,50)" fg:x="60699" fg:w="26"/><text x="40.4315%" y="719.50"></text></g><g><title>schedule (25 samples, 0.02%)</title><rect x="40.1822%" y="693" width="0.0165%" height="15" fill="rgb(212,11,10)" fg:x="60700" fg:w="25"/><text x="40.4322%" y="703.50"></text></g><g><title>__schedule (25 samples, 0.02%)</title><rect x="40.1822%" y="677" width="0.0165%" height="15" fill="rgb(205,166,19)" fg:x="60700" fg:w="25"/><text x="40.4322%" y="687.50"></text></g><g><title>Command-Accumul (128 samples, 0.08%)</title><rect x="40.1147%" y="885" width="0.0847%" height="15" fill="rgb(244,198,16)" fg:x="60598" fg:w="128"/><text x="40.3647%" y="895.50"></text></g><g><title>[unknown] (35 samples, 0.02%)</title><rect x="40.1762%" y="869" width="0.0232%" height="15" fill="rgb(219,69,12)" fg:x="60691" fg:w="35"/><text x="40.4262%" y="879.50"></text></g><g><title>readBytes (27 samples, 0.02%)</title><rect x="40.1815%" y="853" width="0.0179%" height="15" fill="rgb(245,30,7)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="863.50"></text></g><g><title>handleRead (27 samples, 0.02%)</title><rect x="40.1815%" y="837" width="0.0179%" height="15" fill="rgb(218,221,48)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="847.50"></text></g><g><title>__libc_read (27 samples, 0.02%)</title><rect x="40.1815%" y="821" width="0.0179%" height="15" fill="rgb(216,66,15)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="831.50"></text></g><g><title>__libc_read (27 samples, 0.02%)</title><rect x="40.1815%" y="805" width="0.0179%" height="15" fill="rgb(226,122,50)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="40.1815%" y="789" width="0.0179%" height="15" fill="rgb(239,156,16)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="799.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="40.1815%" y="773" width="0.0179%" height="15" fill="rgb(224,27,38)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="783.50"></text></g><g><title>ksys_read (27 samples, 0.02%)</title><rect x="40.1815%" y="757" width="0.0179%" height="15" fill="rgb(224,39,27)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="767.50"></text></g><g><title>vfs_read (27 samples, 0.02%)</title><rect x="40.1815%" y="741" width="0.0179%" height="15" fill="rgb(215,92,29)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="751.50"></text></g><g><title>InterpreterRuntime::monitorenter (18 samples, 0.01%)</title><rect x="40.2106%" y="853" width="0.0119%" height="15" fill="rgb(207,159,16)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="863.50"></text></g><g><title>ObjectSynchronizer::fast_enter (18 samples, 0.01%)</title><rect x="40.2106%" y="837" width="0.0119%" height="15" fill="rgb(238,163,47)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="847.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (18 samples, 0.01%)</title><rect x="40.2106%" y="821" width="0.0119%" height="15" fill="rgb(219,91,49)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="831.50"></text></g><g><title>VMThread::execute (18 samples, 0.01%)</title><rect x="40.2106%" y="805" width="0.0119%" height="15" fill="rgb(227,167,31)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="815.50"></text></g><g><title>Monitor::wait (18 samples, 0.01%)</title><rect x="40.2106%" y="789" width="0.0119%" height="15" fill="rgb(234,80,54)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="799.50"></text></g><g><title>Monitor::IWait (18 samples, 0.01%)</title><rect x="40.2106%" y="773" width="0.0119%" height="15" fill="rgb(212,114,2)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="783.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="40.2113%" y="757" width="0.0113%" height="15" fill="rgb(234,50,24)" fg:x="60744" fg:w="17"/><text x="40.4613%" y="767.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="40.2113%" y="741" width="0.0113%" height="15" fill="rgb(221,68,8)" fg:x="60744" fg:w="17"/><text x="40.4613%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="40.2113%" y="725" width="0.0113%" height="15" fill="rgb(254,180,31)" fg:x="60744" fg:w="17"/><text x="40.4613%" y="735.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="40.2120%" y="709" width="0.0106%" height="15" fill="rgb(247,130,50)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="40.2120%" y="693" width="0.0106%" height="15" fill="rgb(211,109,4)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="703.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="40.2120%" y="677" width="0.0106%" height="15" fill="rgb(238,50,21)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="687.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="40.2120%" y="661" width="0.0106%" height="15" fill="rgb(225,57,45)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="671.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="40.2120%" y="645" width="0.0106%" height="15" fill="rgb(209,196,50)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="655.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="40.2120%" y="629" width="0.0106%" height="15" fill="rgb(242,140,13)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="639.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="40.2120%" y="613" width="0.0106%" height="15" fill="rgb(217,111,7)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="623.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="40.2120%" y="597" width="0.0106%" height="15" fill="rgb(253,193,51)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="607.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="40.2120%" y="581" width="0.0106%" height="15" fill="rgb(252,70,29)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="591.50"></text></g><g><title>Finalizer (22 samples, 0.01%)</title><rect x="40.2100%" y="885" width="0.0146%" height="15" fill="rgb(232,127,12)" fg:x="60742" fg:w="22"/><text x="40.4600%" y="895.50"></text></g><g><title>[perf-983083.map] (22 samples, 0.01%)</title><rect x="40.2100%" y="869" width="0.0146%" height="15" fill="rgb(211,180,21)" fg:x="60742" fg:w="22"/><text x="40.4600%" y="879.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="40.4814%" y="645" width="0.0232%" height="15" fill="rgb(229,72,13)" fg:x="61152" fg:w="35"/><text x="40.7314%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="40.4821%" y="629" width="0.0225%" height="15" fill="rgb(240,211,49)" fg:x="61153" fg:w="34"/><text x="40.7321%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.02%)</title><rect x="40.4834%" y="613" width="0.0212%" height="15" fill="rgb(219,149,40)" fg:x="61155" fg:w="32"/><text x="40.7334%" y="623.50"></text></g><g><title>native_write_msr (32 samples, 0.02%)</title><rect x="40.4834%" y="597" width="0.0212%" height="15" fill="rgb(210,127,46)" fg:x="61155" fg:w="32"/><text x="40.7334%" y="607.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.05%)</title><rect x="40.4668%" y="693" width="0.0450%" height="15" fill="rgb(220,106,7)" fg:x="61130" fg:w="68"/><text x="40.7168%" y="703.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="40.4695%" y="677" width="0.0424%" height="15" fill="rgb(249,31,22)" fg:x="61134" fg:w="64"/><text x="40.7195%" y="687.50"></text></g><g><title>__schedule (63 samples, 0.04%)</title><rect x="40.4701%" y="661" width="0.0417%" height="15" fill="rgb(253,1,49)" fg:x="61135" fg:w="63"/><text x="40.7201%" y="671.50"></text></g><g><title>do_futex (78 samples, 0.05%)</title><rect x="40.4655%" y="725" width="0.0516%" height="15" fill="rgb(227,144,33)" fg:x="61128" fg:w="78"/><text x="40.7155%" y="735.50"></text></g><g><title>futex_wait (77 samples, 0.05%)</title><rect x="40.4662%" y="709" width="0.0510%" height="15" fill="rgb(249,163,44)" fg:x="61129" fg:w="77"/><text x="40.7162%" y="719.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="40.4648%" y="757" width="0.0530%" height="15" fill="rgb(234,15,39)" fg:x="61127" fg:w="80"/><text x="40.7148%" y="767.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.05%)</title><rect x="40.4648%" y="741" width="0.0530%" height="15" fill="rgb(207,66,16)" fg:x="61127" fg:w="80"/><text x="40.7148%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (92 samples, 0.06%)</title><rect x="40.4582%" y="821" width="0.0609%" height="15" fill="rgb(233,112,24)" fg:x="61117" fg:w="92"/><text x="40.7082%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (92 samples, 0.06%)</title><rect x="40.4582%" y="805" width="0.0609%" height="15" fill="rgb(230,90,22)" fg:x="61117" fg:w="92"/><text x="40.7082%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (87 samples, 0.06%)</title><rect x="40.4615%" y="789" width="0.0576%" height="15" fill="rgb(229,61,13)" fg:x="61122" fg:w="87"/><text x="40.7115%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.05%)</title><rect x="40.4648%" y="773" width="0.0543%" height="15" fill="rgb(225,57,24)" fg:x="61127" fg:w="82"/><text x="40.7148%" y="783.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="40.5211%" y="757" width="0.0199%" height="15" fill="rgb(208,169,48)" fg:x="61212" fg:w="30"/><text x="40.7711%" y="767.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.02%)</title><rect x="40.5218%" y="741" width="0.0192%" height="15" fill="rgb(244,218,51)" fg:x="61213" fg:w="29"/><text x="40.7718%" y="751.50"></text></g><g><title>do_futex (29 samples, 0.02%)</title><rect x="40.5218%" y="725" width="0.0192%" height="15" fill="rgb(214,148,10)" fg:x="61213" fg:w="29"/><text x="40.7718%" y="735.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="40.5224%" y="709" width="0.0185%" height="15" fill="rgb(225,174,27)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="719.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="40.5224%" y="693" width="0.0185%" height="15" fill="rgb(230,96,26)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="703.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="40.5224%" y="677" width="0.0185%" height="15" fill="rgb(232,10,30)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="687.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="40.5224%" y="661" width="0.0185%" height="15" fill="rgb(222,8,50)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="671.50"></text></g><g><title>finish_task_switch (27 samples, 0.02%)</title><rect x="40.5231%" y="645" width="0.0179%" height="15" fill="rgb(213,81,27)" fg:x="61215" fg:w="27"/><text x="40.7731%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="40.5231%" y="629" width="0.0179%" height="15" fill="rgb(245,50,10)" fg:x="61215" fg:w="27"/><text x="40.7731%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="40.5244%" y="613" width="0.0165%" height="15" fill="rgb(216,100,18)" fg:x="61217" fg:w="25"/><text x="40.7744%" y="623.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="40.5244%" y="597" width="0.0165%" height="15" fill="rgb(236,147,54)" fg:x="61217" fg:w="25"/><text x="40.7744%" y="607.50"></text></g><g><title>__pthread_cond_wait (34 samples, 0.02%)</title><rect x="40.5191%" y="821" width="0.0225%" height="15" fill="rgb(205,143,26)" fg:x="61209" fg:w="34"/><text x="40.7691%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (34 samples, 0.02%)</title><rect x="40.5191%" y="805" width="0.0225%" height="15" fill="rgb(236,26,9)" fg:x="61209" fg:w="34"/><text x="40.7691%" y="815.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.02%)</title><rect x="40.5198%" y="789" width="0.0218%" height="15" fill="rgb(221,165,53)" fg:x="61210" fg:w="33"/><text x="40.7698%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="40.5211%" y="773" width="0.0205%" height="15" fill="rgb(214,110,17)" fg:x="61212" fg:w="31"/><text x="40.7711%" y="783.50"></text></g><g><title>Parker::park (152 samples, 0.10%)</title><rect x="40.4509%" y="837" width="0.1006%" height="15" fill="rgb(237,197,12)" fg:x="61106" fg:w="152"/><text x="40.7009%" y="847.50"></text></g><g><title>Unsafe_Park (160 samples, 0.11%)</title><rect x="40.4490%" y="853" width="0.1059%" height="15" fill="rgb(205,84,17)" fg:x="61103" fg:w="160"/><text x="40.6990%" y="863.50"></text></g><g><title>[perf-983083.map] (494 samples, 0.33%)</title><rect x="40.2298%" y="869" width="0.3270%" height="15" fill="rgb(237,18,45)" fg:x="60772" fg:w="494"/><text x="40.4798%" y="879.50"></text></g><g><title>ForkJoinPool.co (523 samples, 0.35%)</title><rect x="40.2245%" y="885" width="0.3462%" height="15" fill="rgb(221,87,14)" fg:x="60764" fg:w="523"/><text x="40.4745%" y="895.50"></text></g><g><title>__GI___clone (31 samples, 0.02%)</title><rect x="40.5721%" y="869" width="0.0205%" height="15" fill="rgb(238,186,15)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="879.50"></text></g><g><title>start_thread (31 samples, 0.02%)</title><rect x="40.5721%" y="853" width="0.0205%" height="15" fill="rgb(208,115,11)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="863.50"></text></g><g><title>thread_native_entry (31 samples, 0.02%)</title><rect x="40.5721%" y="837" width="0.0205%" height="15" fill="rgb(254,175,0)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="847.50"></text></g><g><title>Thread::call_run (31 samples, 0.02%)</title><rect x="40.5721%" y="821" width="0.0205%" height="15" fill="rgb(227,24,42)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="831.50"></text></g><g><title>GangWorker::loop (31 samples, 0.02%)</title><rect x="40.5721%" y="805" width="0.0205%" height="15" fill="rgb(223,211,37)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="815.50"></text></g><g><title>G1_Conc#0 (34 samples, 0.02%)</title><rect x="40.5708%" y="885" width="0.0225%" height="15" fill="rgb(235,49,27)" fg:x="61287" fg:w="34"/><text x="40.8208%" y="895.50"></text></g><g><title>G1CMRootRegionScanTask::work (17 samples, 0.01%)</title><rect x="40.5979%" y="789" width="0.0113%" height="15" fill="rgb(254,97,51)" fg:x="61328" fg:w="17"/><text x="40.8479%" y="799.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (17 samples, 0.01%)</title><rect x="40.5979%" y="773" width="0.0113%" height="15" fill="rgb(249,51,40)" fg:x="61328" fg:w="17"/><text x="40.8479%" y="783.50"></text></g><g><title>__GI___clone (34 samples, 0.02%)</title><rect x="40.5939%" y="869" width="0.0225%" height="15" fill="rgb(210,128,45)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="879.50"></text></g><g><title>start_thread (34 samples, 0.02%)</title><rect x="40.5939%" y="853" width="0.0225%" height="15" fill="rgb(224,137,50)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="863.50"></text></g><g><title>thread_native_entry (34 samples, 0.02%)</title><rect x="40.5939%" y="837" width="0.0225%" height="15" fill="rgb(242,15,9)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="847.50"></text></g><g><title>Thread::call_run (34 samples, 0.02%)</title><rect x="40.5939%" y="821" width="0.0225%" height="15" fill="rgb(233,187,41)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="831.50"></text></g><g><title>GangWorker::loop (34 samples, 0.02%)</title><rect x="40.5939%" y="805" width="0.0225%" height="15" fill="rgb(227,2,29)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="815.50"></text></g><g><title>G1_Conc#1 (37 samples, 0.02%)</title><rect x="40.5933%" y="885" width="0.0245%" height="15" fill="rgb(222,70,3)" fg:x="61321" fg:w="37"/><text x="40.8433%" y="895.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (35 samples, 0.02%)</title><rect x="40.6317%" y="773" width="0.0232%" height="15" fill="rgb(213,11,42)" fg:x="61379" fg:w="35"/><text x="40.8817%" y="783.50"></text></g><g><title>G1RemSet::refine_card_concurrently (35 samples, 0.02%)</title><rect x="40.6317%" y="757" width="0.0232%" height="15" fill="rgb(225,150,9)" fg:x="61379" fg:w="35"/><text x="40.8817%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (51 samples, 0.03%)</title><rect x="40.6317%" y="789" width="0.0338%" height="15" fill="rgb(230,162,45)" fg:x="61379" fg:w="51"/><text x="40.8817%" y="799.50"></text></g><g><title>G1_Refine#0 (64 samples, 0.04%)</title><rect x="40.6237%" y="885" width="0.0424%" height="15" fill="rgb(222,14,52)" fg:x="61367" fg:w="64"/><text x="40.8737%" y="895.50"></text></g><g><title>__GI___clone (61 samples, 0.04%)</title><rect x="40.6257%" y="869" width="0.0404%" height="15" fill="rgb(254,198,14)" fg:x="61370" fg:w="61"/><text x="40.8757%" y="879.50"></text></g><g><title>start_thread (54 samples, 0.04%)</title><rect x="40.6303%" y="853" width="0.0357%" height="15" fill="rgb(220,217,30)" fg:x="61377" fg:w="54"/><text x="40.8803%" y="863.50"></text></g><g><title>thread_native_entry (53 samples, 0.04%)</title><rect x="40.6310%" y="837" width="0.0351%" height="15" fill="rgb(215,146,41)" fg:x="61378" fg:w="53"/><text x="40.8810%" y="847.50"></text></g><g><title>Thread::call_run (52 samples, 0.03%)</title><rect x="40.6317%" y="821" width="0.0344%" height="15" fill="rgb(217,27,36)" fg:x="61379" fg:w="52"/><text x="40.8817%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (52 samples, 0.03%)</title><rect x="40.6317%" y="805" width="0.0344%" height="15" fill="rgb(219,218,39)" fg:x="61379" fg:w="52"/><text x="40.8817%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (22 samples, 0.01%)</title><rect x="40.7058%" y="741" width="0.0146%" height="15" fill="rgb(219,4,42)" fg:x="61491" fg:w="22"/><text x="40.9558%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (38 samples, 0.03%)</title><rect x="40.6985%" y="757" width="0.0252%" height="15" fill="rgb(249,119,36)" fg:x="61480" fg:w="38"/><text x="40.9485%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (100 samples, 0.07%)</title><rect x="40.6952%" y="773" width="0.0662%" height="15" fill="rgb(209,23,33)" fg:x="61475" fg:w="100"/><text x="40.9452%" y="783.50"></text></g><g><title>SpinPause (55 samples, 0.04%)</title><rect x="40.7250%" y="757" width="0.0364%" height="15" fill="rgb(211,10,0)" fg:x="61520" fg:w="55"/><text x="40.9750%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (31 samples, 0.02%)</title><rect x="40.7667%" y="677" width="0.0205%" height="15" fill="rgb(208,99,37)" fg:x="61583" fg:w="31"/><text x="41.0167%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="40.7720%" y="661" width="0.0152%" height="15" fill="rgb(213,132,31)" fg:x="61591" fg:w="23"/><text x="41.0220%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.03%)</title><rect x="40.7621%" y="693" width="0.0258%" height="15" fill="rgb(243,129,40)" fg:x="61576" fg:w="39"/><text x="41.0121%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (50 samples, 0.03%)</title><rect x="40.7614%" y="773" width="0.0331%" height="15" fill="rgb(210,66,33)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (50 samples, 0.03%)</title><rect x="40.7614%" y="757" width="0.0331%" height="15" fill="rgb(209,189,4)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (50 samples, 0.03%)</title><rect x="40.7614%" y="741" width="0.0331%" height="15" fill="rgb(214,107,37)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (50 samples, 0.03%)</title><rect x="40.7614%" y="725" width="0.0331%" height="15" fill="rgb(245,88,54)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (49 samples, 0.03%)</title><rect x="40.7621%" y="709" width="0.0324%" height="15" fill="rgb(205,146,20)" fg:x="61576" fg:w="49"/><text x="41.0121%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="40.7945%" y="693" width="0.0132%" height="15" fill="rgb(220,161,25)" fg:x="61625" fg:w="20"/><text x="41.0445%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (18 samples, 0.01%)</title><rect x="40.7958%" y="677" width="0.0119%" height="15" fill="rgb(215,152,15)" fg:x="61627" fg:w="18"/><text x="41.0458%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (23 samples, 0.02%)</title><rect x="40.7945%" y="709" width="0.0152%" height="15" fill="rgb(233,192,44)" fg:x="61625" fg:w="23"/><text x="41.0445%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (24 samples, 0.02%)</title><rect x="40.7945%" y="725" width="0.0159%" height="15" fill="rgb(240,170,46)" fg:x="61625" fg:w="24"/><text x="41.0445%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (35 samples, 0.02%)</title><rect x="40.7945%" y="773" width="0.0232%" height="15" fill="rgb(207,104,33)" fg:x="61625" fg:w="35"/><text x="41.0445%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (35 samples, 0.02%)</title><rect x="40.7945%" y="757" width="0.0232%" height="15" fill="rgb(219,21,39)" fg:x="61625" fg:w="35"/><text x="41.0445%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (35 samples, 0.02%)</title><rect x="40.7945%" y="741" width="0.0232%" height="15" fill="rgb(214,133,29)" fg:x="61625" fg:w="35"/><text x="41.0445%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (16 samples, 0.01%)</title><rect x="40.8230%" y="677" width="0.0106%" height="15" fill="rgb(226,93,6)" fg:x="61668" fg:w="16"/><text x="41.0730%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (27 samples, 0.02%)</title><rect x="40.8177%" y="757" width="0.0179%" height="15" fill="rgb(252,222,34)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (27 samples, 0.02%)</title><rect x="40.8177%" y="741" width="0.0179%" height="15" fill="rgb(252,92,48)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.02%)</title><rect x="40.8177%" y="725" width="0.0179%" height="15" fill="rgb(245,223,24)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="735.50"></text></g><g><title>JavaThread::oops_do (27 samples, 0.02%)</title><rect x="40.8177%" y="709" width="0.0179%" height="15" fill="rgb(205,176,3)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (19 samples, 0.01%)</title><rect x="40.8230%" y="693" width="0.0126%" height="15" fill="rgb(235,151,15)" fg:x="61668" fg:w="19"/><text x="41.0730%" y="703.50"></text></g><g><title>JNIHandles::oops_do (18 samples, 0.01%)</title><rect x="40.8356%" y="741" width="0.0119%" height="15" fill="rgb(237,209,11)" fg:x="61687" fg:w="18"/><text x="41.0856%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="40.8356%" y="725" width="0.0119%" height="15" fill="rgb(243,227,24)" fg:x="61687" fg:w="18"/><text x="41.0856%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (17 samples, 0.01%)</title><rect x="40.8362%" y="709" width="0.0113%" height="15" fill="rgb(239,193,16)" fg:x="61688" fg:w="17"/><text x="41.0862%" y="719.50"></text></g><g><title>G1RootProcessor::process_vm_roots (20 samples, 0.01%)</title><rect x="40.8356%" y="757" width="0.0132%" height="15" fill="rgb(231,27,9)" fg:x="61687" fg:w="20"/><text x="41.0856%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (63 samples, 0.04%)</title><rect x="40.8177%" y="773" width="0.0417%" height="15" fill="rgb(219,169,10)" fg:x="61660" fg:w="63"/><text x="41.0677%" y="783.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (16 samples, 0.01%)</title><rect x="40.8488%" y="757" width="0.0106%" height="15" fill="rgb(244,229,43)" fg:x="61707" fg:w="16"/><text x="41.0988%" y="767.50"></text></g><g><title>G1ParTask::work (249 samples, 0.16%)</title><rect x="40.6952%" y="789" width="0.1648%" height="15" fill="rgb(254,38,20)" fg:x="61475" fg:w="249"/><text x="40.9452%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (26 samples, 0.02%)</title><rect x="40.8620%" y="757" width="0.0172%" height="15" fill="rgb(250,47,30)" fg:x="61727" fg:w="26"/><text x="41.1120%" y="767.50"></text></g><g><title>SpinPause (25 samples, 0.02%)</title><rect x="40.8627%" y="741" width="0.0165%" height="15" fill="rgb(224,124,36)" fg:x="61728" fg:w="25"/><text x="41.1127%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (28 samples, 0.02%)</title><rect x="40.8620%" y="773" width="0.0185%" height="15" fill="rgb(246,68,51)" fg:x="61727" fg:w="28"/><text x="41.1120%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (35 samples, 0.02%)</title><rect x="40.8620%" y="789" width="0.0232%" height="15" fill="rgb(253,43,49)" fg:x="61727" fg:w="35"/><text x="41.1120%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (19 samples, 0.01%)</title><rect x="40.8852%" y="789" width="0.0126%" height="15" fill="rgb(219,54,36)" fg:x="61762" fg:w="19"/><text x="41.1352%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="40.9031%" y="565" width="0.0331%" height="15" fill="rgb(227,133,34)" fg:x="61789" fg:w="50"/><text x="41.1531%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="40.9031%" y="549" width="0.0331%" height="15" fill="rgb(247,227,15)" fg:x="61789" fg:w="50"/><text x="41.1531%" y="559.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="40.9031%" y="533" width="0.0331%" height="15" fill="rgb(229,96,14)" fg:x="61789" fg:w="50"/><text x="41.1531%" y="543.50"></text></g><g><title>finish_task_switch (54 samples, 0.04%)</title><rect x="40.9024%" y="581" width="0.0357%" height="15" fill="rgb(220,79,17)" fg:x="61788" fg:w="54"/><text x="41.1524%" y="591.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.04%)</title><rect x="40.9004%" y="629" width="0.0424%" height="15" fill="rgb(205,131,53)" fg:x="61785" fg:w="64"/><text x="41.1504%" y="639.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="40.9004%" y="613" width="0.0424%" height="15" fill="rgb(209,50,29)" fg:x="61785" fg:w="64"/><text x="41.1504%" y="623.50"></text></g><g><title>__schedule (64 samples, 0.04%)</title><rect x="40.9004%" y="597" width="0.0424%" height="15" fill="rgb(245,86,46)" fg:x="61785" fg:w="64"/><text x="41.1504%" y="607.50"></text></g><g><title>__GI___clone (381 samples, 0.25%)</title><rect x="40.6912%" y="869" width="0.2522%" height="15" fill="rgb(235,66,46)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="879.50"></text></g><g><title>start_thread (381 samples, 0.25%)</title><rect x="40.6912%" y="853" width="0.2522%" height="15" fill="rgb(232,148,31)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="863.50"></text></g><g><title>thread_native_entry (381 samples, 0.25%)</title><rect x="40.6912%" y="837" width="0.2522%" height="15" fill="rgb(217,149,8)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="847.50"></text></g><g><title>Thread::call_run (381 samples, 0.25%)</title><rect x="40.6912%" y="821" width="0.2522%" height="15" fill="rgb(209,183,11)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="831.50"></text></g><g><title>GangWorker::loop (381 samples, 0.25%)</title><rect x="40.6912%" y="805" width="0.2522%" height="15" fill="rgb(208,55,20)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (68 samples, 0.05%)</title><rect x="40.8984%" y="789" width="0.0450%" height="15" fill="rgb(218,39,14)" fg:x="61782" fg:w="68"/><text x="41.1484%" y="799.50"></text></g><g><title>PosixSemaphore::wait (68 samples, 0.05%)</title><rect x="40.8984%" y="773" width="0.0450%" height="15" fill="rgb(216,169,33)" fg:x="61782" fg:w="68"/><text x="41.1484%" y="783.50"></text></g><g><title>__new_sem_wait_slow (68 samples, 0.05%)</title><rect x="40.8984%" y="757" width="0.0450%" height="15" fill="rgb(233,80,24)" fg:x="61782" fg:w="68"/><text x="41.1484%" y="767.50"></text></g><g><title>do_futex_wait (66 samples, 0.04%)</title><rect x="40.8998%" y="741" width="0.0437%" height="15" fill="rgb(213,179,31)" fg:x="61784" fg:w="66"/><text x="41.1498%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (66 samples, 0.04%)</title><rect x="40.8998%" y="725" width="0.0437%" height="15" fill="rgb(209,19,5)" fg:x="61784" fg:w="66"/><text x="41.1498%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.04%)</title><rect x="40.9004%" y="709" width="0.0430%" height="15" fill="rgb(219,18,35)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="719.50"></text></g><g><title>do_syscall_64 (65 samples, 0.04%)</title><rect x="40.9004%" y="693" width="0.0430%" height="15" fill="rgb(209,169,16)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="703.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.04%)</title><rect x="40.9004%" y="677" width="0.0430%" height="15" fill="rgb(245,90,51)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="687.50"></text></g><g><title>do_futex (65 samples, 0.04%)</title><rect x="40.9004%" y="661" width="0.0430%" height="15" fill="rgb(220,99,45)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="671.50"></text></g><g><title>futex_wait (65 samples, 0.04%)</title><rect x="40.9004%" y="645" width="0.0430%" height="15" fill="rgb(249,89,25)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="655.50"></text></g><g><title>GC_Thread#0 (390 samples, 0.26%)</title><rect x="40.6873%" y="885" width="0.2582%" height="15" fill="rgb(239,193,0)" fg:x="61463" fg:w="390"/><text x="40.9373%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (24 samples, 0.02%)</title><rect x="40.9593%" y="757" width="0.0159%" height="15" fill="rgb(231,126,1)" fg:x="61874" fg:w="24"/><text x="41.2093%" y="767.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="40.9640%" y="741" width="0.0113%" height="15" fill="rgb(243,166,3)" fg:x="61881" fg:w="17"/><text x="41.2140%" y="751.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="40.9766%" y="757" width="0.0159%" height="15" fill="rgb(223,22,34)" fg:x="61900" fg:w="24"/><text x="41.2266%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (58 samples, 0.04%)</title><rect x="40.9547%" y="773" width="0.0384%" height="15" fill="rgb(251,52,51)" fg:x="61867" fg:w="58"/><text x="41.2047%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (30 samples, 0.02%)</title><rect x="40.9938%" y="693" width="0.0199%" height="15" fill="rgb(221,165,28)" fg:x="61926" fg:w="30"/><text x="41.2438%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (24 samples, 0.02%)</title><rect x="40.9977%" y="677" width="0.0159%" height="15" fill="rgb(218,121,47)" fg:x="61932" fg:w="24"/><text x="41.2477%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (19 samples, 0.01%)</title><rect x="41.0010%" y="661" width="0.0126%" height="15" fill="rgb(209,120,9)" fg:x="61937" fg:w="19"/><text x="41.2510%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (32 samples, 0.02%)</title><rect x="40.9938%" y="773" width="0.0212%" height="15" fill="rgb(236,68,12)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (32 samples, 0.02%)</title><rect x="40.9938%" y="757" width="0.0212%" height="15" fill="rgb(225,194,26)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (32 samples, 0.02%)</title><rect x="40.9938%" y="741" width="0.0212%" height="15" fill="rgb(231,84,39)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (32 samples, 0.02%)</title><rect x="40.9938%" y="725" width="0.0212%" height="15" fill="rgb(210,11,45)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (32 samples, 0.02%)</title><rect x="40.9938%" y="709" width="0.0212%" height="15" fill="rgb(224,54,52)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (21 samples, 0.01%)</title><rect x="41.0149%" y="773" width="0.0139%" height="15" fill="rgb(238,102,14)" fg:x="61958" fg:w="21"/><text x="41.2649%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (21 samples, 0.01%)</title><rect x="41.0149%" y="757" width="0.0139%" height="15" fill="rgb(243,160,52)" fg:x="61958" fg:w="21"/><text x="41.2649%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (21 samples, 0.01%)</title><rect x="41.0149%" y="741" width="0.0139%" height="15" fill="rgb(216,114,19)" fg:x="61958" fg:w="21"/><text x="41.2649%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (21 samples, 0.01%)</title><rect x="41.0295%" y="757" width="0.0139%" height="15" fill="rgb(244,166,37)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (21 samples, 0.01%)</title><rect x="41.0295%" y="741" width="0.0139%" height="15" fill="rgb(246,29,44)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (21 samples, 0.01%)</title><rect x="41.0295%" y="725" width="0.0139%" height="15" fill="rgb(215,56,53)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="735.50"></text></g><g><title>JavaThread::oops_do (21 samples, 0.01%)</title><rect x="41.0295%" y="709" width="0.0139%" height="15" fill="rgb(217,60,2)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="719.50"></text></g><g><title>G1ParTask::work (160 samples, 0.11%)</title><rect x="40.9547%" y="789" width="0.1059%" height="15" fill="rgb(207,26,24)" fg:x="61867" fg:w="160"/><text x="41.2047%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (48 samples, 0.03%)</title><rect x="41.0288%" y="773" width="0.0318%" height="15" fill="rgb(252,210,15)" fg:x="61979" fg:w="48"/><text x="41.2788%" y="783.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (25 samples, 0.02%)</title><rect x="41.0441%" y="757" width="0.0165%" height="15" fill="rgb(253,209,26)" fg:x="62002" fg:w="25"/><text x="41.2941%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="41.0487%" y="741" width="0.0119%" height="15" fill="rgb(238,170,14)" fg:x="62009" fg:w="18"/><text x="41.2987%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (16 samples, 0.01%)</title><rect x="41.0500%" y="725" width="0.0106%" height="15" fill="rgb(216,178,15)" fg:x="62011" fg:w="16"/><text x="41.3000%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (28 samples, 0.02%)</title><rect x="41.0646%" y="773" width="0.0185%" height="15" fill="rgb(250,197,2)" fg:x="62033" fg:w="28"/><text x="41.3146%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (28 samples, 0.02%)</title><rect x="41.0646%" y="757" width="0.0185%" height="15" fill="rgb(212,70,42)" fg:x="62033" fg:w="28"/><text x="41.3146%" y="767.50"></text></g><g><title>SpinPause (26 samples, 0.02%)</title><rect x="41.0659%" y="741" width="0.0172%" height="15" fill="rgb(227,213,9)" fg:x="62035" fg:w="26"/><text x="41.3159%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (46 samples, 0.03%)</title><rect x="41.0646%" y="789" width="0.0305%" height="15" fill="rgb(245,99,25)" fg:x="62033" fg:w="46"/><text x="41.3146%" y="799.50"></text></g><g><title>RefProcPhase3Task::work (18 samples, 0.01%)</title><rect x="41.0831%" y="773" width="0.0119%" height="15" fill="rgb(250,82,29)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="783.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (18 samples, 0.01%)</title><rect x="41.0831%" y="757" width="0.0119%" height="15" fill="rgb(241,226,54)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (18 samples, 0.01%)</title><rect x="41.0831%" y="741" width="0.0119%" height="15" fill="rgb(221,99,41)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="751.50"></text></g><g><title>SpinPause (18 samples, 0.01%)</title><rect x="41.0831%" y="725" width="0.0119%" height="15" fill="rgb(213,90,21)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (16 samples, 0.01%)</title><rect x="41.0957%" y="789" width="0.0106%" height="15" fill="rgb(205,208,24)" fg:x="62080" fg:w="16"/><text x="41.3457%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.05%)</title><rect x="41.1123%" y="565" width="0.0496%" height="15" fill="rgb(246,31,12)" fg:x="62105" fg:w="75"/><text x="41.3623%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.05%)</title><rect x="41.1123%" y="549" width="0.0496%" height="15" fill="rgb(213,154,6)" fg:x="62105" fg:w="75"/><text x="41.3623%" y="559.50"></text></g><g><title>native_write_msr (74 samples, 0.05%)</title><rect x="41.1129%" y="533" width="0.0490%" height="15" fill="rgb(222,163,29)" fg:x="62106" fg:w="74"/><text x="41.3629%" y="543.50"></text></g><g><title>finish_task_switch (77 samples, 0.05%)</title><rect x="41.1123%" y="581" width="0.0510%" height="15" fill="rgb(227,201,8)" fg:x="62105" fg:w="77"/><text x="41.3623%" y="591.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.06%)</title><rect x="41.1089%" y="629" width="0.0602%" height="15" fill="rgb(233,9,32)" fg:x="62100" fg:w="91"/><text x="41.3589%" y="639.50"></text></g><g><title>schedule (90 samples, 0.06%)</title><rect x="41.1096%" y="613" width="0.0596%" height="15" fill="rgb(217,54,24)" fg:x="62101" fg:w="90"/><text x="41.3596%" y="623.50"></text></g><g><title>__schedule (90 samples, 0.06%)</title><rect x="41.1096%" y="597" width="0.0596%" height="15" fill="rgb(235,192,0)" fg:x="62101" fg:w="90"/><text x="41.3596%" y="607.50"></text></g><g><title>do_syscall_64 (95 samples, 0.06%)</title><rect x="41.1070%" y="693" width="0.0629%" height="15" fill="rgb(235,45,9)" fg:x="62097" fg:w="95"/><text x="41.3570%" y="703.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.06%)</title><rect x="41.1076%" y="677" width="0.0622%" height="15" fill="rgb(246,42,40)" fg:x="62098" fg:w="94"/><text x="41.3576%" y="687.50"></text></g><g><title>do_futex (93 samples, 0.06%)</title><rect x="41.1083%" y="661" width="0.0616%" height="15" fill="rgb(248,111,24)" fg:x="62099" fg:w="93"/><text x="41.3583%" y="671.50"></text></g><g><title>futex_wait (93 samples, 0.06%)</title><rect x="41.1083%" y="645" width="0.0616%" height="15" fill="rgb(249,65,22)" fg:x="62099" fg:w="93"/><text x="41.3583%" y="655.50"></text></g><g><title>__GI___clone (332 samples, 0.22%)</title><rect x="40.9514%" y="869" width="0.2198%" height="15" fill="rgb(238,111,51)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="879.50"></text></g><g><title>start_thread (332 samples, 0.22%)</title><rect x="40.9514%" y="853" width="0.2198%" height="15" fill="rgb(250,118,22)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="863.50"></text></g><g><title>thread_native_entry (332 samples, 0.22%)</title><rect x="40.9514%" y="837" width="0.2198%" height="15" fill="rgb(234,84,26)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="847.50"></text></g><g><title>Thread::call_run (332 samples, 0.22%)</title><rect x="40.9514%" y="821" width="0.2198%" height="15" fill="rgb(243,172,12)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="831.50"></text></g><g><title>GangWorker::loop (332 samples, 0.22%)</title><rect x="40.9514%" y="805" width="0.2198%" height="15" fill="rgb(236,150,49)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (97 samples, 0.06%)</title><rect x="41.1070%" y="789" width="0.0642%" height="15" fill="rgb(225,197,26)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="799.50"></text></g><g><title>PosixSemaphore::wait (97 samples, 0.06%)</title><rect x="41.1070%" y="773" width="0.0642%" height="15" fill="rgb(214,17,42)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="783.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.06%)</title><rect x="41.1070%" y="757" width="0.0642%" height="15" fill="rgb(224,165,40)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="767.50"></text></g><g><title>do_futex_wait (97 samples, 0.06%)</title><rect x="41.1070%" y="741" width="0.0642%" height="15" fill="rgb(246,100,4)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.06%)</title><rect x="41.1070%" y="725" width="0.0642%" height="15" fill="rgb(222,103,0)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.06%)</title><rect x="41.1070%" y="709" width="0.0642%" height="15" fill="rgb(227,189,26)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="719.50"></text></g><g><title>GC_Thread#1 (342 samples, 0.23%)</title><rect x="40.9454%" y="885" width="0.2264%" height="15" fill="rgb(214,202,17)" fg:x="61853" fg:w="342"/><text x="41.1954%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="41.1917%" y="741" width="0.0119%" height="15" fill="rgb(229,111,3)" fg:x="62225" fg:w="18"/><text x="41.4417%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (30 samples, 0.02%)</title><rect x="41.1844%" y="757" width="0.0199%" height="15" fill="rgb(229,172,15)" fg:x="62214" fg:w="30"/><text x="41.4344%" y="767.50"></text></g><g><title>SpinPause (20 samples, 0.01%)</title><rect x="41.2063%" y="757" width="0.0132%" height="15" fill="rgb(230,224,35)" fg:x="62247" fg:w="20"/><text x="41.4563%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (59 samples, 0.04%)</title><rect x="41.1811%" y="773" width="0.0391%" height="15" fill="rgb(251,141,6)" fg:x="62209" fg:w="59"/><text x="41.4311%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="41.2268%" y="693" width="0.0132%" height="15" fill="rgb(225,208,6)" fg:x="62278" fg:w="20"/><text x="41.4768%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (28 samples, 0.02%)</title><rect x="41.2261%" y="725" width="0.0185%" height="15" fill="rgb(246,181,16)" fg:x="62277" fg:w="28"/><text x="41.4761%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (27 samples, 0.02%)</title><rect x="41.2268%" y="709" width="0.0179%" height="15" fill="rgb(227,129,36)" fg:x="62278" fg:w="27"/><text x="41.4768%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (39 samples, 0.03%)</title><rect x="41.2261%" y="773" width="0.0258%" height="15" fill="rgb(248,117,24)" fg:x="62277" fg:w="39"/><text x="41.4761%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (39 samples, 0.03%)</title><rect x="41.2261%" y="757" width="0.0258%" height="15" fill="rgb(214,185,35)" fg:x="62277" fg:w="39"/><text x="41.4761%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (39 samples, 0.03%)</title><rect x="41.2261%" y="741" width="0.0258%" height="15" fill="rgb(236,150,34)" fg:x="62277" fg:w="39"/><text x="41.4761%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (31 samples, 0.02%)</title><rect x="41.2645%" y="677" width="0.0205%" height="15" fill="rgb(243,228,27)" fg:x="62335" fg:w="31"/><text x="41.5145%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (23 samples, 0.02%)</title><rect x="41.2698%" y="661" width="0.0152%" height="15" fill="rgb(245,77,44)" fg:x="62343" fg:w="23"/><text x="41.5198%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (16 samples, 0.01%)</title><rect x="41.2744%" y="645" width="0.0106%" height="15" fill="rgb(235,214,42)" fg:x="62350" fg:w="16"/><text x="41.5244%" y="655.50"></text></g><g><title>OopOopIterateBackwardsDispatch<G1ScanEvacuatedObjClosure>::Table::oop_oop_iterate_backwards<InstanceKlass, unsigned int> (17 samples, 0.01%)</title><rect x="41.3327%" y="613" width="0.0113%" height="15" fill="rgb(221,74,3)" fg:x="62438" fg:w="17"/><text x="41.5827%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (83 samples, 0.05%)</title><rect x="41.3003%" y="645" width="0.0549%" height="15" fill="rgb(206,121,29)" fg:x="62389" fg:w="83"/><text x="41.5503%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (66 samples, 0.04%)</title><rect x="41.3115%" y="629" width="0.0437%" height="15" fill="rgb(249,131,53)" fg:x="62406" fg:w="66"/><text x="41.5615%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (111 samples, 0.07%)</title><rect x="41.2850%" y="677" width="0.0735%" height="15" fill="rgb(236,170,29)" fg:x="62366" fg:w="111"/><text x="41.5350%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (110 samples, 0.07%)</title><rect x="41.2857%" y="661" width="0.0728%" height="15" fill="rgb(247,96,15)" fg:x="62367" fg:w="110"/><text x="41.5357%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (150 samples, 0.10%)</title><rect x="41.2645%" y="693" width="0.0993%" height="15" fill="rgb(211,210,7)" fg:x="62335" fg:w="150"/><text x="41.5145%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (165 samples, 0.11%)</title><rect x="41.2552%" y="757" width="0.1092%" height="15" fill="rgb(240,88,50)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (165 samples, 0.11%)</title><rect x="41.2552%" y="741" width="0.1092%" height="15" fill="rgb(209,229,26)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (165 samples, 0.11%)</title><rect x="41.2552%" y="725" width="0.1092%" height="15" fill="rgb(210,68,23)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="735.50"></text></g><g><title>JavaThread::oops_do (165 samples, 0.11%)</title><rect x="41.2552%" y="709" width="0.1092%" height="15" fill="rgb(229,180,13)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="719.50"></text></g><g><title>G1ParTask::work (283 samples, 0.19%)</title><rect x="41.1811%" y="789" width="0.1873%" height="15" fill="rgb(236,53,44)" fg:x="62209" fg:w="283"/><text x="41.4311%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.12%)</title><rect x="41.2519%" y="773" width="0.1165%" height="15" fill="rgb(244,214,29)" fg:x="62316" fg:w="176"/><text x="41.5019%" y="783.50"></text></g><g><title>RefProcPhase2Task::work (16 samples, 0.01%)</title><rect x="41.3744%" y="773" width="0.0106%" height="15" fill="rgb(220,75,29)" fg:x="62501" fg:w="16"/><text x="41.6244%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (33 samples, 0.02%)</title><rect x="41.3744%" y="789" width="0.0218%" height="15" fill="rgb(214,183,37)" fg:x="62501" fg:w="33"/><text x="41.6244%" y="799.50"></text></g><g><title>RefProcPhase3Task::work (17 samples, 0.01%)</title><rect x="41.3850%" y="773" width="0.0113%" height="15" fill="rgb(239,117,29)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="783.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (17 samples, 0.01%)</title><rect x="41.3850%" y="757" width="0.0113%" height="15" fill="rgb(237,171,35)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (17 samples, 0.01%)</title><rect x="41.3850%" y="741" width="0.0113%" height="15" fill="rgb(229,178,53)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="751.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="41.3850%" y="725" width="0.0113%" height="15" fill="rgb(210,102,19)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.03%)</title><rect x="41.4148%" y="565" width="0.0324%" height="15" fill="rgb(235,127,22)" fg:x="62562" fg:w="49"/><text x="41.6648%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.03%)</title><rect x="41.4148%" y="549" width="0.0324%" height="15" fill="rgb(244,31,31)" fg:x="62562" fg:w="49"/><text x="41.6648%" y="559.50"></text></g><g><title>native_write_msr (49 samples, 0.03%)</title><rect x="41.4148%" y="533" width="0.0324%" height="15" fill="rgb(231,43,21)" fg:x="62562" fg:w="49"/><text x="41.6648%" y="543.50"></text></g><g><title>finish_task_switch (54 samples, 0.04%)</title><rect x="41.4128%" y="581" width="0.0357%" height="15" fill="rgb(217,131,35)" fg:x="62559" fg:w="54"/><text x="41.6628%" y="591.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="41.4068%" y="693" width="0.0463%" height="15" fill="rgb(221,149,4)" fg:x="62550" fg:w="70"/><text x="41.6568%" y="703.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.05%)</title><rect x="41.4068%" y="677" width="0.0463%" height="15" fill="rgb(232,170,28)" fg:x="62550" fg:w="70"/><text x="41.6568%" y="687.50"></text></g><g><title>do_futex (70 samples, 0.05%)</title><rect x="41.4068%" y="661" width="0.0463%" height="15" fill="rgb(238,56,10)" fg:x="62550" fg:w="70"/><text x="41.6568%" y="671.50"></text></g><g><title>futex_wait (68 samples, 0.05%)</title><rect x="41.4082%" y="645" width="0.0450%" height="15" fill="rgb(235,196,14)" fg:x="62552" fg:w="68"/><text x="41.6582%" y="655.50"></text></g><g><title>futex_wait_queue_me (66 samples, 0.04%)</title><rect x="41.4095%" y="629" width="0.0437%" height="15" fill="rgb(216,45,48)" fg:x="62554" fg:w="66"/><text x="41.6595%" y="639.50"></text></g><g><title>schedule (66 samples, 0.04%)</title><rect x="41.4095%" y="613" width="0.0437%" height="15" fill="rgb(238,213,17)" fg:x="62554" fg:w="66"/><text x="41.6595%" y="623.50"></text></g><g><title>__schedule (66 samples, 0.04%)</title><rect x="41.4095%" y="597" width="0.0437%" height="15" fill="rgb(212,13,2)" fg:x="62554" fg:w="66"/><text x="41.6595%" y="607.50"></text></g><g><title>__GI___clone (417 samples, 0.28%)</title><rect x="41.1785%" y="869" width="0.2760%" height="15" fill="rgb(240,114,20)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="879.50"></text></g><g><title>start_thread (417 samples, 0.28%)</title><rect x="41.1785%" y="853" width="0.2760%" height="15" fill="rgb(228,41,40)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="863.50"></text></g><g><title>thread_native_entry (417 samples, 0.28%)</title><rect x="41.1785%" y="837" width="0.2760%" height="15" fill="rgb(244,132,35)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="847.50"></text></g><g><title>Thread::call_run (417 samples, 0.28%)</title><rect x="41.1785%" y="821" width="0.2760%" height="15" fill="rgb(253,189,4)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="831.50"></text></g><g><title>GangWorker::loop (417 samples, 0.28%)</title><rect x="41.1785%" y="805" width="0.2760%" height="15" fill="rgb(224,37,19)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (73 samples, 0.05%)</title><rect x="41.4062%" y="789" width="0.0483%" height="15" fill="rgb(235,223,18)" fg:x="62549" fg:w="73"/><text x="41.6562%" y="799.50"></text></g><g><title>PosixSemaphore::wait (73 samples, 0.05%)</title><rect x="41.4062%" y="773" width="0.0483%" height="15" fill="rgb(235,163,25)" fg:x="62549" fg:w="73"/><text x="41.6562%" y="783.50"></text></g><g><title>__new_sem_wait_slow (73 samples, 0.05%)</title><rect x="41.4062%" y="757" width="0.0483%" height="15" fill="rgb(217,145,28)" fg:x="62549" fg:w="73"/><text x="41.6562%" y="767.50"></text></g><g><title>do_futex_wait (72 samples, 0.05%)</title><rect x="41.4068%" y="741" width="0.0477%" height="15" fill="rgb(223,223,32)" fg:x="62550" fg:w="72"/><text x="41.6568%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (72 samples, 0.05%)</title><rect x="41.4068%" y="725" width="0.0477%" height="15" fill="rgb(227,189,39)" fg:x="62550" fg:w="72"/><text x="41.6568%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="41.4068%" y="709" width="0.0477%" height="15" fill="rgb(248,10,22)" fg:x="62550" fg:w="72"/><text x="41.6568%" y="719.50"></text></g><g><title>GC_Thread#2 (429 samples, 0.28%)</title><rect x="41.1718%" y="885" width="0.2840%" height="15" fill="rgb(248,46,39)" fg:x="62195" fg:w="429"/><text x="41.4218%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="41.4717%" y="741" width="0.0113%" height="15" fill="rgb(248,113,48)" fg:x="62648" fg:w="17"/><text x="41.7217%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (23 samples, 0.02%)</title><rect x="41.4691%" y="757" width="0.0152%" height="15" fill="rgb(245,16,25)" fg:x="62644" fg:w="23"/><text x="41.7191%" y="767.50"></text></g><g><title>SpinPause (36 samples, 0.02%)</title><rect x="41.4869%" y="757" width="0.0238%" height="15" fill="rgb(249,152,16)" fg:x="62671" fg:w="36"/><text x="41.7369%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (67 samples, 0.04%)</title><rect x="41.4671%" y="773" width="0.0444%" height="15" fill="rgb(250,16,1)" fg:x="62641" fg:w="67"/><text x="41.7171%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (16 samples, 0.01%)</title><rect x="41.5121%" y="773" width="0.0106%" height="15" fill="rgb(249,138,3)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (16 samples, 0.01%)</title><rect x="41.5121%" y="757" width="0.0106%" height="15" fill="rgb(227,71,41)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (16 samples, 0.01%)</title><rect x="41.5121%" y="741" width="0.0106%" height="15" fill="rgb(209,184,23)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (16 samples, 0.01%)</title><rect x="41.5121%" y="725" width="0.0106%" height="15" fill="rgb(223,215,31)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (16 samples, 0.01%)</title><rect x="41.5121%" y="709" width="0.0106%" height="15" fill="rgb(210,146,28)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (78 samples, 0.05%)</title><rect x="41.5300%" y="741" width="0.0516%" height="15" fill="rgb(209,183,41)" fg:x="62736" fg:w="78"/><text x="41.7800%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (78 samples, 0.05%)</title><rect x="41.5300%" y="725" width="0.0516%" height="15" fill="rgb(209,224,45)" fg:x="62736" fg:w="78"/><text x="41.7800%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (78 samples, 0.05%)</title><rect x="41.5300%" y="709" width="0.0516%" height="15" fill="rgb(224,209,51)" fg:x="62736" fg:w="78"/><text x="41.7800%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (67 samples, 0.04%)</title><rect x="41.5372%" y="693" width="0.0444%" height="15" fill="rgb(223,17,39)" fg:x="62747" fg:w="67"/><text x="41.7872%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (57 samples, 0.04%)</title><rect x="41.5439%" y="677" width="0.0377%" height="15" fill="rgb(234,204,37)" fg:x="62757" fg:w="57"/><text x="41.7939%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (38 samples, 0.03%)</title><rect x="41.5564%" y="661" width="0.0252%" height="15" fill="rgb(236,120,5)" fg:x="62776" fg:w="38"/><text x="41.8064%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (84 samples, 0.06%)</title><rect x="41.5300%" y="757" width="0.0556%" height="15" fill="rgb(248,97,27)" fg:x="62736" fg:w="84"/><text x="41.7800%" y="767.50"></text></g><g><title>G1ParTask::work (182 samples, 0.12%)</title><rect x="41.4671%" y="789" width="0.1205%" height="15" fill="rgb(240,66,17)" fg:x="62641" fg:w="182"/><text x="41.7171%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (89 samples, 0.06%)</title><rect x="41.5286%" y="773" width="0.0589%" height="15" fill="rgb(210,79,3)" fg:x="62734" fg:w="89"/><text x="41.7786%" y="783.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="41.5955%" y="741" width="0.0159%" height="15" fill="rgb(214,176,27)" fg:x="62835" fg:w="24"/><text x="41.8455%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (27 samples, 0.02%)</title><rect x="41.5942%" y="757" width="0.0179%" height="15" fill="rgb(235,185,3)" fg:x="62833" fg:w="27"/><text x="41.8442%" y="767.50"></text></g><g><title>RefProcPhase2Task::work (29 samples, 0.02%)</title><rect x="41.5942%" y="773" width="0.0192%" height="15" fill="rgb(227,24,12)" fg:x="62833" fg:w="29"/><text x="41.8442%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (44 samples, 0.03%)</title><rect x="41.5942%" y="789" width="0.0291%" height="15" fill="rgb(252,169,48)" fg:x="62833" fg:w="44"/><text x="41.8442%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.06%)</title><rect x="41.6465%" y="565" width="0.0583%" height="15" fill="rgb(212,65,1)" fg:x="62912" fg:w="88"/><text x="41.8965%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.06%)</title><rect x="41.6478%" y="549" width="0.0569%" height="15" fill="rgb(242,39,24)" fg:x="62914" fg:w="86"/><text x="41.8978%" y="559.50"></text></g><g><title>native_write_msr (86 samples, 0.06%)</title><rect x="41.6478%" y="533" width="0.0569%" height="15" fill="rgb(249,32,23)" fg:x="62914" fg:w="86"/><text x="41.8978%" y="543.50"></text></g><g><title>finish_task_switch (90 samples, 0.06%)</title><rect x="41.6458%" y="581" width="0.0596%" height="15" fill="rgb(251,195,23)" fg:x="62911" fg:w="90"/><text x="41.8958%" y="591.50"></text></g><g><title>futex_wait_queue_me (102 samples, 0.07%)</title><rect x="41.6405%" y="629" width="0.0675%" height="15" fill="rgb(236,174,8)" fg:x="62903" fg:w="102"/><text x="41.8905%" y="639.50"></text></g><g><title>schedule (101 samples, 0.07%)</title><rect x="41.6412%" y="613" width="0.0669%" height="15" fill="rgb(220,197,8)" fg:x="62904" fg:w="101"/><text x="41.8912%" y="623.50"></text></g><g><title>__schedule (100 samples, 0.07%)</title><rect x="41.6418%" y="597" width="0.0662%" height="15" fill="rgb(240,108,37)" fg:x="62905" fg:w="100"/><text x="41.8918%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (105 samples, 0.07%)</title><rect x="41.6392%" y="709" width="0.0695%" height="15" fill="rgb(232,176,24)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="719.50"></text></g><g><title>do_syscall_64 (105 samples, 0.07%)</title><rect x="41.6392%" y="693" width="0.0695%" height="15" fill="rgb(243,35,29)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="703.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.07%)</title><rect x="41.6392%" y="677" width="0.0695%" height="15" fill="rgb(210,37,18)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="687.50"></text></g><g><title>do_futex (105 samples, 0.07%)</title><rect x="41.6392%" y="661" width="0.0695%" height="15" fill="rgb(224,184,40)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="671.50"></text></g><g><title>futex_wait (105 samples, 0.07%)</title><rect x="41.6392%" y="645" width="0.0695%" height="15" fill="rgb(236,39,29)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="655.50"></text></g><g><title>__GI___clone (375 samples, 0.25%)</title><rect x="41.4611%" y="869" width="0.2482%" height="15" fill="rgb(232,48,39)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="879.50"></text></g><g><title>start_thread (375 samples, 0.25%)</title><rect x="41.4611%" y="853" width="0.2482%" height="15" fill="rgb(236,34,42)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="863.50"></text></g><g><title>thread_native_entry (375 samples, 0.25%)</title><rect x="41.4611%" y="837" width="0.2482%" height="15" fill="rgb(243,106,37)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="847.50"></text></g><g><title>Thread::call_run (375 samples, 0.25%)</title><rect x="41.4611%" y="821" width="0.2482%" height="15" fill="rgb(218,96,6)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="831.50"></text></g><g><title>GangWorker::loop (375 samples, 0.25%)</title><rect x="41.4611%" y="805" width="0.2482%" height="15" fill="rgb(235,130,12)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (108 samples, 0.07%)</title><rect x="41.6379%" y="789" width="0.0715%" height="15" fill="rgb(231,95,0)" fg:x="62899" fg:w="108"/><text x="41.8879%" y="799.50"></text></g><g><title>PosixSemaphore::wait (108 samples, 0.07%)</title><rect x="41.6379%" y="773" width="0.0715%" height="15" fill="rgb(228,12,23)" fg:x="62899" fg:w="108"/><text x="41.8879%" y="783.50"></text></g><g><title>__new_sem_wait_slow (107 samples, 0.07%)</title><rect x="41.6385%" y="757" width="0.0708%" height="15" fill="rgb(216,12,1)" fg:x="62900" fg:w="107"/><text x="41.8885%" y="767.50"></text></g><g><title>do_futex_wait (106 samples, 0.07%)</title><rect x="41.6392%" y="741" width="0.0702%" height="15" fill="rgb(219,59,3)" fg:x="62901" fg:w="106"/><text x="41.8892%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.07%)</title><rect x="41.6392%" y="725" width="0.0702%" height="15" fill="rgb(215,208,46)" fg:x="62901" fg:w="106"/><text x="41.8892%" y="735.50"></text></g><g><title>GC_Thread#3 (388 samples, 0.26%)</title><rect x="41.4558%" y="885" width="0.2568%" height="15" fill="rgb(254,224,29)" fg:x="62624" fg:w="388"/><text x="41.7058%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="41.7325%" y="741" width="0.0139%" height="15" fill="rgb(232,14,29)" fg:x="63042" fg:w="21"/><text x="41.9825%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (31 samples, 0.02%)</title><rect x="41.7272%" y="757" width="0.0205%" height="15" fill="rgb(208,45,52)" fg:x="63034" fg:w="31"/><text x="41.9772%" y="767.50"></text></g><g><title>SpinPause (54 samples, 0.04%)</title><rect x="41.7491%" y="757" width="0.0357%" height="15" fill="rgb(234,191,28)" fg:x="63067" fg:w="54"/><text x="41.9991%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (97 samples, 0.06%)</title><rect x="41.7219%" y="773" width="0.0642%" height="15" fill="rgb(244,67,43)" fg:x="63026" fg:w="97"/><text x="41.9719%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (24 samples, 0.02%)</title><rect x="41.7862%" y="693" width="0.0159%" height="15" fill="rgb(236,189,24)" fg:x="63123" fg:w="24"/><text x="42.0362%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (23 samples, 0.02%)</title><rect x="41.7868%" y="677" width="0.0152%" height="15" fill="rgb(239,214,33)" fg:x="63124" fg:w="23"/><text x="42.0368%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="41.7881%" y="661" width="0.0139%" height="15" fill="rgb(226,176,41)" fg:x="63126" fg:w="21"/><text x="42.0381%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (25 samples, 0.02%)</title><rect x="41.7862%" y="773" width="0.0165%" height="15" fill="rgb(248,47,8)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (25 samples, 0.02%)</title><rect x="41.7862%" y="757" width="0.0165%" height="15" fill="rgb(218,81,44)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (25 samples, 0.02%)</title><rect x="41.7862%" y="741" width="0.0165%" height="15" fill="rgb(213,98,6)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (25 samples, 0.02%)</title><rect x="41.7862%" y="725" width="0.0165%" height="15" fill="rgb(222,85,22)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (25 samples, 0.02%)</title><rect x="41.7862%" y="709" width="0.0165%" height="15" fill="rgb(239,46,39)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (31 samples, 0.02%)</title><rect x="41.8226%" y="677" width="0.0205%" height="15" fill="rgb(237,12,29)" fg:x="63178" fg:w="31"/><text x="42.0726%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="41.8292%" y="661" width="0.0139%" height="15" fill="rgb(214,77,8)" fg:x="63188" fg:w="21"/><text x="42.0792%" y="671.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (53 samples, 0.04%)</title><rect x="41.8087%" y="741" width="0.0351%" height="15" fill="rgb(217,168,37)" fg:x="63157" fg:w="53"/><text x="42.0587%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (53 samples, 0.04%)</title><rect x="41.8087%" y="725" width="0.0351%" height="15" fill="rgb(221,217,23)" fg:x="63157" fg:w="53"/><text x="42.0587%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (53 samples, 0.04%)</title><rect x="41.8087%" y="709" width="0.0351%" height="15" fill="rgb(243,229,36)" fg:x="63157" fg:w="53"/><text x="42.0587%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (46 samples, 0.03%)</title><rect x="41.8133%" y="693" width="0.0305%" height="15" fill="rgb(251,163,40)" fg:x="63164" fg:w="46"/><text x="42.0633%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (29 samples, 0.02%)</title><rect x="41.8530%" y="629" width="0.0192%" height="15" fill="rgb(237,222,12)" fg:x="63224" fg:w="29"/><text x="42.1030%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="41.8603%" y="613" width="0.0119%" height="15" fill="rgb(248,132,6)" fg:x="63235" fg:w="18"/><text x="42.1103%" y="623.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (38 samples, 0.03%)</title><rect x="41.8477%" y="693" width="0.0252%" height="15" fill="rgb(227,167,50)" fg:x="63216" fg:w="38"/><text x="42.0977%" y="703.50"></text></g><g><title>nmethod::oops_do (38 samples, 0.03%)</title><rect x="41.8477%" y="677" width="0.0252%" height="15" fill="rgb(242,84,37)" fg:x="63216" fg:w="38"/><text x="42.0977%" y="687.50"></text></g><g><title>G1CodeBlobClosure::HeapRegionGatheringOopClosure::do_oop (37 samples, 0.02%)</title><rect x="41.8484%" y="661" width="0.0245%" height="15" fill="rgb(212,4,50)" fg:x="63217" fg:w="37"/><text x="42.0984%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="41.8484%" y="645" width="0.0245%" height="15" fill="rgb(230,228,32)" fg:x="63217" fg:w="37"/><text x="42.0984%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (46 samples, 0.03%)</title><rect x="41.8795%" y="677" width="0.0305%" height="15" fill="rgb(248,217,23)" fg:x="63264" fg:w="46"/><text x="42.1295%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (35 samples, 0.02%)</title><rect x="41.8868%" y="661" width="0.0232%" height="15" fill="rgb(238,197,32)" fg:x="63275" fg:w="35"/><text x="42.1368%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="41.8907%" y="645" width="0.0192%" height="15" fill="rgb(236,106,1)" fg:x="63281" fg:w="29"/><text x="42.1407%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (161 samples, 0.11%)</title><rect x="41.8087%" y="757" width="0.1066%" height="15" fill="rgb(219,228,13)" fg:x="63157" fg:w="161"/><text x="42.0587%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (108 samples, 0.07%)</title><rect x="41.8437%" y="741" width="0.0715%" height="15" fill="rgb(238,30,35)" fg:x="63210" fg:w="108"/><text x="42.0937%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (108 samples, 0.07%)</title><rect x="41.8437%" y="725" width="0.0715%" height="15" fill="rgb(236,70,23)" fg:x="63210" fg:w="108"/><text x="42.0937%" y="735.50"></text></g><g><title>JavaThread::oops_do (102 samples, 0.07%)</title><rect x="41.8477%" y="709" width="0.0675%" height="15" fill="rgb(249,104,48)" fg:x="63216" fg:w="102"/><text x="42.0977%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (54 samples, 0.04%)</title><rect x="41.8795%" y="693" width="0.0357%" height="15" fill="rgb(254,117,50)" fg:x="63264" fg:w="54"/><text x="42.1295%" y="703.50"></text></g><g><title>G1ParTask::work (294 samples, 0.19%)</title><rect x="41.7219%" y="789" width="0.1946%" height="15" fill="rgb(223,152,4)" fg:x="63026" fg:w="294"/><text x="41.9719%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (163 samples, 0.11%)</title><rect x="41.8087%" y="773" width="0.1079%" height="15" fill="rgb(245,6,2)" fg:x="63157" fg:w="163"/><text x="42.0587%" y="783.50"></text></g><g><title>RefProcPhase2Task::work (16 samples, 0.01%)</title><rect x="41.9238%" y="773" width="0.0106%" height="15" fill="rgb(249,150,24)" fg:x="63331" fg:w="16"/><text x="42.1738%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (31 samples, 0.02%)</title><rect x="41.9225%" y="789" width="0.0205%" height="15" fill="rgb(228,185,42)" fg:x="63329" fg:w="31"/><text x="42.1725%" y="799.50"></text></g><g><title>JavaThread::nmethods_do (19 samples, 0.01%)</title><rect x="41.9457%" y="757" width="0.0126%" height="15" fill="rgb(226,39,33)" fg:x="63364" fg:w="19"/><text x="42.1957%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (23 samples, 0.02%)</title><rect x="41.9437%" y="789" width="0.0152%" height="15" fill="rgb(221,166,19)" fg:x="63361" fg:w="23"/><text x="42.1937%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (22 samples, 0.01%)</title><rect x="41.9444%" y="773" width="0.0146%" height="15" fill="rgb(209,109,2)" fg:x="63362" fg:w="22"/><text x="42.1944%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (91 samples, 0.06%)</title><rect x="41.9656%" y="565" width="0.0602%" height="15" fill="rgb(252,216,26)" fg:x="63394" fg:w="91"/><text x="42.2156%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.06%)</title><rect x="41.9662%" y="549" width="0.0596%" height="15" fill="rgb(227,173,36)" fg:x="63395" fg:w="90"/><text x="42.2162%" y="559.50"></text></g><g><title>native_write_msr (90 samples, 0.06%)</title><rect x="41.9662%" y="533" width="0.0596%" height="15" fill="rgb(209,90,7)" fg:x="63395" fg:w="90"/><text x="42.2162%" y="543.50"></text></g><g><title>finish_task_switch (92 samples, 0.06%)</title><rect x="41.9656%" y="581" width="0.0609%" height="15" fill="rgb(250,194,11)" fg:x="63394" fg:w="92"/><text x="42.2156%" y="591.50"></text></g><g><title>do_syscall_64 (103 samples, 0.07%)</title><rect x="41.9616%" y="693" width="0.0682%" height="15" fill="rgb(220,72,50)" fg:x="63388" fg:w="103"/><text x="42.2116%" y="703.50"></text></g><g><title>__x64_sys_futex (102 samples, 0.07%)</title><rect x="41.9622%" y="677" width="0.0675%" height="15" fill="rgb(222,106,48)" fg:x="63389" fg:w="102"/><text x="42.2122%" y="687.50"></text></g><g><title>do_futex (102 samples, 0.07%)</title><rect x="41.9622%" y="661" width="0.0675%" height="15" fill="rgb(216,220,45)" fg:x="63389" fg:w="102"/><text x="42.2122%" y="671.50"></text></g><g><title>futex_wait (101 samples, 0.07%)</title><rect x="41.9629%" y="645" width="0.0669%" height="15" fill="rgb(234,112,18)" fg:x="63390" fg:w="101"/><text x="42.2129%" y="655.50"></text></g><g><title>futex_wait_queue_me (100 samples, 0.07%)</title><rect x="41.9636%" y="629" width="0.0662%" height="15" fill="rgb(206,179,9)" fg:x="63391" fg:w="100"/><text x="42.2136%" y="639.50"></text></g><g><title>schedule (100 samples, 0.07%)</title><rect x="41.9636%" y="613" width="0.0662%" height="15" fill="rgb(215,115,40)" fg:x="63391" fg:w="100"/><text x="42.2136%" y="623.50"></text></g><g><title>__schedule (100 samples, 0.07%)</title><rect x="41.9636%" y="597" width="0.0662%" height="15" fill="rgb(222,69,34)" fg:x="63391" fg:w="100"/><text x="42.2136%" y="607.50"></text></g><g><title>__new_sem_wait_slow (109 samples, 0.07%)</title><rect x="41.9603%" y="757" width="0.0722%" height="15" fill="rgb(209,161,10)" fg:x="63386" fg:w="109"/><text x="42.2103%" y="767.50"></text></g><g><title>do_futex_wait (109 samples, 0.07%)</title><rect x="41.9603%" y="741" width="0.0722%" height="15" fill="rgb(217,6,38)" fg:x="63386" fg:w="109"/><text x="42.2103%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (109 samples, 0.07%)</title><rect x="41.9603%" y="725" width="0.0722%" height="15" fill="rgb(229,229,48)" fg:x="63386" fg:w="109"/><text x="42.2103%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.07%)</title><rect x="41.9616%" y="709" width="0.0708%" height="15" fill="rgb(225,21,28)" fg:x="63388" fg:w="107"/><text x="42.2116%" y="719.50"></text></g><g><title>__GI___clone (471 samples, 0.31%)</title><rect x="41.7213%" y="869" width="0.3118%" height="15" fill="rgb(206,33,13)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="879.50"></text></g><g><title>start_thread (471 samples, 0.31%)</title><rect x="41.7213%" y="853" width="0.3118%" height="15" fill="rgb(242,178,17)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="863.50"></text></g><g><title>thread_native_entry (471 samples, 0.31%)</title><rect x="41.7213%" y="837" width="0.3118%" height="15" fill="rgb(220,162,5)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="847.50"></text></g><g><title>Thread::call_run (471 samples, 0.31%)</title><rect x="41.7213%" y="821" width="0.3118%" height="15" fill="rgb(210,33,43)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="831.50"></text></g><g><title>GangWorker::loop (471 samples, 0.31%)</title><rect x="41.7213%" y="805" width="0.3118%" height="15" fill="rgb(216,116,54)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (112 samples, 0.07%)</title><rect x="41.9589%" y="789" width="0.0741%" height="15" fill="rgb(249,92,24)" fg:x="63384" fg:w="112"/><text x="42.2089%" y="799.50"></text></g><g><title>PosixSemaphore::wait (110 samples, 0.07%)</title><rect x="41.9603%" y="773" width="0.0728%" height="15" fill="rgb(231,189,14)" fg:x="63386" fg:w="110"/><text x="42.2103%" y="783.50"></text></g><g><title>GC_Thread#4 (490 samples, 0.32%)</title><rect x="41.7127%" y="885" width="0.3244%" height="15" fill="rgb(230,8,41)" fg:x="63012" fg:w="490"/><text x="41.9627%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (17 samples, 0.01%)</title><rect x="42.0476%" y="757" width="0.0113%" height="15" fill="rgb(249,7,27)" fg:x="63518" fg:w="17"/><text x="42.2976%" y="767.50"></text></g><g><title>SpinPause (41 samples, 0.03%)</title><rect x="42.0615%" y="757" width="0.0271%" height="15" fill="rgb(232,86,5)" fg:x="63539" fg:w="41"/><text x="42.3115%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.04%)</title><rect x="42.0470%" y="773" width="0.0424%" height="15" fill="rgb(224,175,18)" fg:x="63517" fg:w="64"/><text x="42.2970%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (16 samples, 0.01%)</title><rect x="42.0893%" y="773" width="0.0106%" height="15" fill="rgb(220,129,12)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (16 samples, 0.01%)</title><rect x="42.0893%" y="757" width="0.0106%" height="15" fill="rgb(210,19,36)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (16 samples, 0.01%)</title><rect x="42.0893%" y="741" width="0.0106%" height="15" fill="rgb(219,96,14)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (16 samples, 0.01%)</title><rect x="42.0893%" y="725" width="0.0106%" height="15" fill="rgb(249,106,1)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (16 samples, 0.01%)</title><rect x="42.0893%" y="709" width="0.0106%" height="15" fill="rgb(249,155,20)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (21 samples, 0.01%)</title><rect x="42.0999%" y="693" width="0.0139%" height="15" fill="rgb(244,168,9)" fg:x="63597" fg:w="21"/><text x="42.3499%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (19 samples, 0.01%)</title><rect x="42.1013%" y="677" width="0.0126%" height="15" fill="rgb(216,23,50)" fg:x="63599" fg:w="19"/><text x="42.3513%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="42.1019%" y="661" width="0.0119%" height="15" fill="rgb(224,219,20)" fg:x="63600" fg:w="18"/><text x="42.3519%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (23 samples, 0.02%)</title><rect x="42.0999%" y="725" width="0.0152%" height="15" fill="rgb(222,156,15)" fg:x="63597" fg:w="23"/><text x="42.3499%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (23 samples, 0.02%)</title><rect x="42.0999%" y="709" width="0.0152%" height="15" fill="rgb(231,97,17)" fg:x="63597" fg:w="23"/><text x="42.3499%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.02%)</title><rect x="42.0999%" y="773" width="0.0212%" height="15" fill="rgb(218,70,48)" fg:x="63597" fg:w="32"/><text x="42.3499%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.02%)</title><rect x="42.0999%" y="757" width="0.0212%" height="15" fill="rgb(212,196,52)" fg:x="63597" fg:w="32"/><text x="42.3499%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.02%)</title><rect x="42.0999%" y="741" width="0.0212%" height="15" fill="rgb(243,203,18)" fg:x="63597" fg:w="32"/><text x="42.3499%" y="751.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (38 samples, 0.03%)</title><rect x="42.1244%" y="741" width="0.0252%" height="15" fill="rgb(252,125,41)" fg:x="63634" fg:w="38"/><text x="42.3744%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (38 samples, 0.03%)</title><rect x="42.1244%" y="725" width="0.0252%" height="15" fill="rgb(223,180,33)" fg:x="63634" fg:w="38"/><text x="42.3744%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (38 samples, 0.03%)</title><rect x="42.1244%" y="709" width="0.0252%" height="15" fill="rgb(254,159,46)" fg:x="63634" fg:w="38"/><text x="42.3744%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (30 samples, 0.02%)</title><rect x="42.1297%" y="693" width="0.0199%" height="15" fill="rgb(254,38,10)" fg:x="63642" fg:w="30"/><text x="42.3797%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (25 samples, 0.02%)</title><rect x="42.1330%" y="677" width="0.0165%" height="15" fill="rgb(208,217,32)" fg:x="63647" fg:w="25"/><text x="42.3830%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.1357%" y="661" width="0.0139%" height="15" fill="rgb(221,120,13)" fg:x="63651" fg:w="21"/><text x="42.3857%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (31 samples, 0.02%)</title><rect x="42.1575%" y="645" width="0.0205%" height="15" fill="rgb(246,54,52)" fg:x="63684" fg:w="31"/><text x="42.4075%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (22 samples, 0.01%)</title><rect x="42.1635%" y="629" width="0.0146%" height="15" fill="rgb(242,34,25)" fg:x="63693" fg:w="22"/><text x="42.4135%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.03%)</title><rect x="42.1536%" y="677" width="0.0252%" height="15" fill="rgb(247,209,9)" fg:x="63678" fg:w="38"/><text x="42.4036%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="42.1542%" y="661" width="0.0245%" height="15" fill="rgb(228,71,26)" fg:x="63679" fg:w="37"/><text x="42.4042%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (83 samples, 0.05%)</title><rect x="42.1244%" y="757" width="0.0549%" height="15" fill="rgb(222,145,49)" fg:x="63634" fg:w="83"/><text x="42.3744%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (45 samples, 0.03%)</title><rect x="42.1496%" y="741" width="0.0298%" height="15" fill="rgb(218,121,17)" fg:x="63672" fg:w="45"/><text x="42.3996%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (45 samples, 0.03%)</title><rect x="42.1496%" y="725" width="0.0298%" height="15" fill="rgb(244,50,7)" fg:x="63672" fg:w="45"/><text x="42.3996%" y="735.50"></text></g><g><title>JavaThread::oops_do (45 samples, 0.03%)</title><rect x="42.1496%" y="709" width="0.0298%" height="15" fill="rgb(246,229,37)" fg:x="63672" fg:w="45"/><text x="42.3996%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (39 samples, 0.03%)</title><rect x="42.1536%" y="693" width="0.0258%" height="15" fill="rgb(225,18,5)" fg:x="63678" fg:w="39"/><text x="42.4036%" y="703.50"></text></g><g><title>G1ParTask::work (218 samples, 0.14%)</title><rect x="42.0470%" y="789" width="0.1443%" height="15" fill="rgb(213,204,8)" fg:x="63517" fg:w="218"/><text x="42.2970%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (106 samples, 0.07%)</title><rect x="42.1211%" y="773" width="0.0702%" height="15" fill="rgb(238,103,6)" fg:x="63629" fg:w="106"/><text x="42.3711%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (22 samples, 0.01%)</title><rect x="42.1979%" y="789" width="0.0146%" height="15" fill="rgb(222,25,35)" fg:x="63745" fg:w="22"/><text x="42.4479%" y="799.50"></text></g><g><title>JavaThread::nmethods_do (17 samples, 0.01%)</title><rect x="42.2151%" y="757" width="0.0113%" height="15" fill="rgb(213,203,35)" fg:x="63771" fg:w="17"/><text x="42.4651%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (29 samples, 0.02%)</title><rect x="42.2125%" y="789" width="0.0192%" height="15" fill="rgb(221,79,53)" fg:x="63767" fg:w="29"/><text x="42.4625%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (28 samples, 0.02%)</title><rect x="42.2131%" y="773" width="0.0185%" height="15" fill="rgb(243,200,35)" fg:x="63768" fg:w="28"/><text x="42.4631%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="42.2363%" y="565" width="0.0252%" height="15" fill="rgb(248,60,25)" fg:x="63803" fg:w="38"/><text x="42.4863%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="42.2370%" y="549" width="0.0245%" height="15" fill="rgb(227,53,46)" fg:x="63804" fg:w="37"/><text x="42.4870%" y="559.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="42.2370%" y="533" width="0.0245%" height="15" fill="rgb(216,120,32)" fg:x="63804" fg:w="37"/><text x="42.4870%" y="543.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="42.2363%" y="581" width="0.0271%" height="15" fill="rgb(220,134,1)" fg:x="63803" fg:w="41"/><text x="42.4863%" y="591.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="42.2323%" y="693" width="0.0371%" height="15" fill="rgb(237,168,5)" fg:x="63797" fg:w="56"/><text x="42.4823%" y="703.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="42.2323%" y="677" width="0.0371%" height="15" fill="rgb(231,100,33)" fg:x="63797" fg:w="56"/><text x="42.4823%" y="687.50"></text></g><g><title>do_futex (55 samples, 0.04%)</title><rect x="42.2330%" y="661" width="0.0364%" height="15" fill="rgb(236,177,47)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="671.50"></text></g><g><title>futex_wait (55 samples, 0.04%)</title><rect x="42.2330%" y="645" width="0.0364%" height="15" fill="rgb(235,7,49)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="655.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.04%)</title><rect x="42.2330%" y="629" width="0.0364%" height="15" fill="rgb(232,119,22)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="639.50"></text></g><g><title>schedule (55 samples, 0.04%)</title><rect x="42.2330%" y="613" width="0.0364%" height="15" fill="rgb(254,73,53)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="623.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="42.2330%" y="597" width="0.0364%" height="15" fill="rgb(251,35,20)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="607.50"></text></g><g><title>__GI___clone (345 samples, 0.23%)</title><rect x="42.0430%" y="869" width="0.2284%" height="15" fill="rgb(241,119,20)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="879.50"></text></g><g><title>start_thread (345 samples, 0.23%)</title><rect x="42.0430%" y="853" width="0.2284%" height="15" fill="rgb(207,102,14)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="863.50"></text></g><g><title>thread_native_entry (345 samples, 0.23%)</title><rect x="42.0430%" y="837" width="0.2284%" height="15" fill="rgb(248,201,50)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="847.50"></text></g><g><title>Thread::call_run (345 samples, 0.23%)</title><rect x="42.0430%" y="821" width="0.2284%" height="15" fill="rgb(222,185,44)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="831.50"></text></g><g><title>GangWorker::loop (345 samples, 0.23%)</title><rect x="42.0430%" y="805" width="0.2284%" height="15" fill="rgb(218,107,18)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (60 samples, 0.04%)</title><rect x="42.2317%" y="789" width="0.0397%" height="15" fill="rgb(237,177,39)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="799.50"></text></g><g><title>PosixSemaphore::wait (60 samples, 0.04%)</title><rect x="42.2317%" y="773" width="0.0397%" height="15" fill="rgb(246,69,6)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="783.50"></text></g><g><title>__new_sem_wait_slow (60 samples, 0.04%)</title><rect x="42.2317%" y="757" width="0.0397%" height="15" fill="rgb(234,208,37)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="767.50"></text></g><g><title>do_futex_wait (60 samples, 0.04%)</title><rect x="42.2317%" y="741" width="0.0397%" height="15" fill="rgb(225,4,6)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.04%)</title><rect x="42.2317%" y="725" width="0.0397%" height="15" fill="rgb(233,45,0)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.04%)</title><rect x="42.2323%" y="709" width="0.0391%" height="15" fill="rgb(226,136,5)" fg:x="63797" fg:w="59"/><text x="42.4823%" y="719.50"></text></g><g><title>GC_Thread#5 (358 samples, 0.24%)</title><rect x="42.0370%" y="885" width="0.2370%" height="15" fill="rgb(211,91,47)" fg:x="63502" fg:w="358"/><text x="42.2870%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (24 samples, 0.02%)</title><rect x="42.2873%" y="757" width="0.0159%" height="15" fill="rgb(242,88,51)" fg:x="63880" fg:w="24"/><text x="42.5373%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (87 samples, 0.06%)</title><rect x="42.2813%" y="773" width="0.0576%" height="15" fill="rgb(230,91,28)" fg:x="63871" fg:w="87"/><text x="42.5313%" y="783.50"></text></g><g><title>SpinPause (48 samples, 0.03%)</title><rect x="42.3071%" y="757" width="0.0318%" height="15" fill="rgb(254,186,29)" fg:x="63910" fg:w="48"/><text x="42.5571%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (17 samples, 0.01%)</title><rect x="42.3488%" y="709" width="0.0113%" height="15" fill="rgb(238,6,4)" fg:x="63973" fg:w="17"/><text x="42.5988%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (18 samples, 0.01%)</title><rect x="42.3488%" y="725" width="0.0119%" height="15" fill="rgb(221,151,16)" fg:x="63973" fg:w="18"/><text x="42.5988%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (29 samples, 0.02%)</title><rect x="42.3488%" y="773" width="0.0192%" height="15" fill="rgb(251,143,52)" fg:x="63973" fg:w="29"/><text x="42.5988%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (29 samples, 0.02%)</title><rect x="42.3488%" y="757" width="0.0192%" height="15" fill="rgb(206,90,15)" fg:x="63973" fg:w="29"/><text x="42.5988%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (29 samples, 0.02%)</title><rect x="42.3488%" y="741" width="0.0192%" height="15" fill="rgb(218,35,8)" fg:x="63973" fg:w="29"/><text x="42.5988%" y="751.50"></text></g><g><title>InterpreterOopMap::iterate_oop (16 samples, 0.01%)</title><rect x="42.3833%" y="677" width="0.0106%" height="15" fill="rgb(239,215,6)" fg:x="64025" fg:w="16"/><text x="42.6333%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (16 samples, 0.01%)</title><rect x="42.3833%" y="661" width="0.0106%" height="15" fill="rgb(245,116,39)" fg:x="64025" fg:w="16"/><text x="42.6333%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (41 samples, 0.03%)</title><rect x="42.3687%" y="757" width="0.0271%" height="15" fill="rgb(242,65,28)" fg:x="64003" fg:w="41"/><text x="42.6187%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (27 samples, 0.02%)</title><rect x="42.3780%" y="741" width="0.0179%" height="15" fill="rgb(252,132,53)" fg:x="64017" fg:w="27"/><text x="42.6280%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.02%)</title><rect x="42.3780%" y="725" width="0.0179%" height="15" fill="rgb(224,159,50)" fg:x="64017" fg:w="27"/><text x="42.6280%" y="735.50"></text></g><g><title>JavaThread::oops_do (26 samples, 0.02%)</title><rect x="42.3786%" y="709" width="0.0172%" height="15" fill="rgb(224,93,4)" fg:x="64018" fg:w="26"/><text x="42.6286%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (21 samples, 0.01%)</title><rect x="42.3819%" y="693" width="0.0139%" height="15" fill="rgb(208,81,34)" fg:x="64023" fg:w="21"/><text x="42.6319%" y="703.50"></text></g><g><title>G1ParTask::work (185 samples, 0.12%)</title><rect x="42.2813%" y="789" width="0.1225%" height="15" fill="rgb(233,92,54)" fg:x="63871" fg:w="185"/><text x="42.5313%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (54 samples, 0.04%)</title><rect x="42.3680%" y="773" width="0.0357%" height="15" fill="rgb(237,21,14)" fg:x="64002" fg:w="54"/><text x="42.6180%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.02%)</title><rect x="42.4111%" y="789" width="0.0152%" height="15" fill="rgb(249,128,51)" fg:x="64067" fg:w="23"/><text x="42.6611%" y="799.50"></text></g><g><title>RefProcPhase3Task::work (17 samples, 0.01%)</title><rect x="42.4150%" y="773" width="0.0113%" height="15" fill="rgb(223,129,24)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="783.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (17 samples, 0.01%)</title><rect x="42.4150%" y="757" width="0.0113%" height="15" fill="rgb(231,168,25)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (17 samples, 0.01%)</title><rect x="42.4150%" y="741" width="0.0113%" height="15" fill="rgb(224,39,20)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="751.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="42.4150%" y="725" width="0.0113%" height="15" fill="rgb(225,152,53)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (20 samples, 0.01%)</title><rect x="42.4263%" y="789" width="0.0132%" height="15" fill="rgb(252,17,24)" fg:x="64090" fg:w="20"/><text x="42.6763%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (19 samples, 0.01%)</title><rect x="42.4270%" y="773" width="0.0126%" height="15" fill="rgb(250,114,30)" fg:x="64091" fg:w="19"/><text x="42.6770%" y="783.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="42.4435%" y="581" width="0.0271%" height="15" fill="rgb(229,5,4)" fg:x="64116" fg:w="41"/><text x="42.6935%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.03%)</title><rect x="42.4442%" y="565" width="0.0265%" height="15" fill="rgb(225,176,49)" fg:x="64117" fg:w="40"/><text x="42.6942%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="42.4448%" y="549" width="0.0258%" height="15" fill="rgb(224,221,49)" fg:x="64118" fg:w="39"/><text x="42.6948%" y="559.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="42.4448%" y="533" width="0.0258%" height="15" fill="rgb(253,169,27)" fg:x="64118" fg:w="39"/><text x="42.6948%" y="543.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.03%)</title><rect x="42.4402%" y="629" width="0.0331%" height="15" fill="rgb(211,206,16)" fg:x="64111" fg:w="50"/><text x="42.6902%" y="639.50"></text></g><g><title>schedule (49 samples, 0.03%)</title><rect x="42.4409%" y="613" width="0.0324%" height="15" fill="rgb(244,87,35)" fg:x="64112" fg:w="49"/><text x="42.6909%" y="623.50"></text></g><g><title>__schedule (49 samples, 0.03%)</title><rect x="42.4409%" y="597" width="0.0324%" height="15" fill="rgb(246,28,10)" fg:x="64112" fg:w="49"/><text x="42.6909%" y="607.50"></text></g><g><title>do_syscall_64 (53 samples, 0.04%)</title><rect x="42.4402%" y="693" width="0.0351%" height="15" fill="rgb(229,12,44)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="703.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.04%)</title><rect x="42.4402%" y="677" width="0.0351%" height="15" fill="rgb(210,145,37)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="687.50"></text></g><g><title>do_futex (53 samples, 0.04%)</title><rect x="42.4402%" y="661" width="0.0351%" height="15" fill="rgb(227,112,52)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="671.50"></text></g><g><title>futex_wait (53 samples, 0.04%)</title><rect x="42.4402%" y="645" width="0.0351%" height="15" fill="rgb(238,155,34)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="655.50"></text></g><g><title>__GI___clone (299 samples, 0.20%)</title><rect x="42.2780%" y="869" width="0.1979%" height="15" fill="rgb(239,226,36)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="879.50"></text></g><g><title>start_thread (299 samples, 0.20%)</title><rect x="42.2780%" y="853" width="0.1979%" height="15" fill="rgb(230,16,23)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="863.50"></text></g><g><title>thread_native_entry (299 samples, 0.20%)</title><rect x="42.2780%" y="837" width="0.1979%" height="15" fill="rgb(236,171,36)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="847.50"></text></g><g><title>Thread::call_run (299 samples, 0.20%)</title><rect x="42.2780%" y="821" width="0.1979%" height="15" fill="rgb(221,22,14)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="831.50"></text></g><g><title>GangWorker::loop (299 samples, 0.20%)</title><rect x="42.2780%" y="805" width="0.1979%" height="15" fill="rgb(242,43,11)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (55 samples, 0.04%)</title><rect x="42.4395%" y="789" width="0.0364%" height="15" fill="rgb(232,69,23)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="799.50"></text></g><g><title>PosixSemaphore::wait (55 samples, 0.04%)</title><rect x="42.4395%" y="773" width="0.0364%" height="15" fill="rgb(216,180,54)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="783.50"></text></g><g><title>__new_sem_wait_slow (55 samples, 0.04%)</title><rect x="42.4395%" y="757" width="0.0364%" height="15" fill="rgb(216,5,24)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="767.50"></text></g><g><title>do_futex_wait (55 samples, 0.04%)</title><rect x="42.4395%" y="741" width="0.0364%" height="15" fill="rgb(225,89,9)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (55 samples, 0.04%)</title><rect x="42.4395%" y="725" width="0.0364%" height="15" fill="rgb(243,75,33)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.04%)</title><rect x="42.4402%" y="709" width="0.0357%" height="15" fill="rgb(247,141,45)" fg:x="64111" fg:w="54"/><text x="42.6902%" y="719.50"></text></g><g><title>GC_Thread#6 (306 samples, 0.20%)</title><rect x="42.2740%" y="885" width="0.2026%" height="15" fill="rgb(232,177,36)" fg:x="63860" fg:w="306"/><text x="42.5240%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (16 samples, 0.01%)</title><rect x="42.4998%" y="741" width="0.0106%" height="15" fill="rgb(219,125,36)" fg:x="64201" fg:w="16"/><text x="42.7498%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (33 samples, 0.02%)</title><rect x="42.4892%" y="757" width="0.0218%" height="15" fill="rgb(227,94,9)" fg:x="64185" fg:w="33"/><text x="42.7392%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (77 samples, 0.05%)</title><rect x="42.4872%" y="773" width="0.0510%" height="15" fill="rgb(240,34,52)" fg:x="64182" fg:w="77"/><text x="42.7372%" y="783.50"></text></g><g><title>SpinPause (37 samples, 0.02%)</title><rect x="42.5137%" y="757" width="0.0245%" height="15" fill="rgb(216,45,12)" fg:x="64222" fg:w="37"/><text x="42.7637%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (25 samples, 0.02%)</title><rect x="42.5435%" y="677" width="0.0165%" height="15" fill="rgb(246,21,19)" fg:x="64267" fg:w="25"/><text x="42.7935%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (19 samples, 0.01%)</title><rect x="42.5474%" y="661" width="0.0126%" height="15" fill="rgb(213,98,42)" fg:x="64273" fg:w="19"/><text x="42.7974%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (34 samples, 0.02%)</title><rect x="42.5382%" y="693" width="0.0225%" height="15" fill="rgb(250,136,47)" fg:x="64259" fg:w="34"/><text x="42.7882%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (38 samples, 0.03%)</title><rect x="42.5382%" y="709" width="0.0252%" height="15" fill="rgb(251,124,27)" fg:x="64259" fg:w="38"/><text x="42.7882%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (39 samples, 0.03%)</title><rect x="42.5382%" y="773" width="0.0258%" height="15" fill="rgb(229,180,14)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (39 samples, 0.03%)</title><rect x="42.5382%" y="757" width="0.0258%" height="15" fill="rgb(245,216,25)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (39 samples, 0.03%)</title><rect x="42.5382%" y="741" width="0.0258%" height="15" fill="rgb(251,43,5)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (39 samples, 0.03%)</title><rect x="42.5382%" y="725" width="0.0258%" height="15" fill="rgb(250,128,24)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="735.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="42.5640%" y="693" width="0.0126%" height="15" fill="rgb(217,117,27)" fg:x="64298" fg:w="19"/><text x="42.8140%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (21 samples, 0.01%)</title><rect x="42.5640%" y="725" width="0.0139%" height="15" fill="rgb(245,147,4)" fg:x="64298" fg:w="21"/><text x="42.8140%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (21 samples, 0.01%)</title><rect x="42.5640%" y="709" width="0.0139%" height="15" fill="rgb(242,201,35)" fg:x="64298" fg:w="21"/><text x="42.8140%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (40 samples, 0.03%)</title><rect x="42.5640%" y="773" width="0.0265%" height="15" fill="rgb(218,181,1)" fg:x="64298" fg:w="40"/><text x="42.8140%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (40 samples, 0.03%)</title><rect x="42.5640%" y="757" width="0.0265%" height="15" fill="rgb(222,6,29)" fg:x="64298" fg:w="40"/><text x="42.8140%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (40 samples, 0.03%)</title><rect x="42.5640%" y="741" width="0.0265%" height="15" fill="rgb(208,186,3)" fg:x="64298" fg:w="40"/><text x="42.8140%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (19 samples, 0.01%)</title><rect x="42.5779%" y="725" width="0.0126%" height="15" fill="rgb(216,36,26)" fg:x="64319" fg:w="19"/><text x="42.8279%" y="735.50"></text></g><g><title>G1CodeRootSet::nmethods_do (19 samples, 0.01%)</title><rect x="42.5779%" y="709" width="0.0126%" height="15" fill="rgb(248,201,23)" fg:x="64319" fg:w="19"/><text x="42.8279%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (38 samples, 0.03%)</title><rect x="42.5911%" y="757" width="0.0252%" height="15" fill="rgb(251,170,31)" fg:x="64339" fg:w="38"/><text x="42.8411%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (27 samples, 0.02%)</title><rect x="42.5984%" y="741" width="0.0179%" height="15" fill="rgb(207,110,25)" fg:x="64350" fg:w="27"/><text x="42.8484%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.02%)</title><rect x="42.5984%" y="725" width="0.0179%" height="15" fill="rgb(250,54,15)" fg:x="64350" fg:w="27"/><text x="42.8484%" y="735.50"></text></g><g><title>JavaThread::oops_do (27 samples, 0.02%)</title><rect x="42.5984%" y="709" width="0.0179%" height="15" fill="rgb(227,68,33)" fg:x="64350" fg:w="27"/><text x="42.8484%" y="719.50"></text></g><g><title>G1ParTask::work (201 samples, 0.13%)</title><rect x="42.4872%" y="789" width="0.1331%" height="15" fill="rgb(238,34,41)" fg:x="64182" fg:w="201"/><text x="42.7372%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (45 samples, 0.03%)</title><rect x="42.5905%" y="773" width="0.0298%" height="15" fill="rgb(220,11,15)" fg:x="64338" fg:w="45"/><text x="42.8405%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (17 samples, 0.01%)</title><rect x="42.6229%" y="789" width="0.0113%" height="15" fill="rgb(246,111,35)" fg:x="64387" fg:w="17"/><text x="42.8729%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="42.6348%" y="789" width="0.0139%" height="15" fill="rgb(209,88,53)" fg:x="64405" fg:w="21"/><text x="42.8848%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="42.6355%" y="773" width="0.0132%" height="15" fill="rgb(231,185,47)" fg:x="64406" fg:w="20"/><text x="42.8855%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.05%)</title><rect x="42.6547%" y="565" width="0.0536%" height="15" fill="rgb(233,154,1)" fg:x="64435" fg:w="81"/><text x="42.9047%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.05%)</title><rect x="42.6547%" y="549" width="0.0536%" height="15" fill="rgb(225,15,46)" fg:x="64435" fg:w="81"/><text x="42.9047%" y="559.50"></text></g><g><title>native_write_msr (81 samples, 0.05%)</title><rect x="42.6547%" y="533" width="0.0536%" height="15" fill="rgb(211,135,41)" fg:x="64435" fg:w="81"/><text x="42.9047%" y="543.50"></text></g><g><title>finish_task_switch (85 samples, 0.06%)</title><rect x="42.6533%" y="581" width="0.0563%" height="15" fill="rgb(208,54,0)" fg:x="64433" fg:w="85"/><text x="42.9033%" y="591.50"></text></g><g><title>do_syscall_64 (94 samples, 0.06%)</title><rect x="42.6494%" y="693" width="0.0622%" height="15" fill="rgb(244,136,14)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="703.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.06%)</title><rect x="42.6494%" y="677" width="0.0622%" height="15" fill="rgb(241,56,14)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="687.50"></text></g><g><title>do_futex (94 samples, 0.06%)</title><rect x="42.6494%" y="661" width="0.0622%" height="15" fill="rgb(205,80,24)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="671.50"></text></g><g><title>futex_wait (94 samples, 0.06%)</title><rect x="42.6494%" y="645" width="0.0622%" height="15" fill="rgb(220,57,4)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="655.50"></text></g><g><title>futex_wait_queue_me (94 samples, 0.06%)</title><rect x="42.6494%" y="629" width="0.0622%" height="15" fill="rgb(226,193,50)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="639.50"></text></g><g><title>schedule (93 samples, 0.06%)</title><rect x="42.6500%" y="613" width="0.0616%" height="15" fill="rgb(231,168,22)" fg:x="64428" fg:w="93"/><text x="42.9000%" y="623.50"></text></g><g><title>__schedule (93 samples, 0.06%)</title><rect x="42.6500%" y="597" width="0.0616%" height="15" fill="rgb(254,215,14)" fg:x="64428" fg:w="93"/><text x="42.9000%" y="607.50"></text></g><g><title>GC_Thread#7 (356 samples, 0.24%)</title><rect x="42.4766%" y="885" width="0.2357%" height="15" fill="rgb(211,115,16)" fg:x="64166" fg:w="356"/><text x="42.7266%" y="895.50"></text></g><g><title>__GI___clone (348 samples, 0.23%)</title><rect x="42.4819%" y="869" width="0.2304%" height="15" fill="rgb(236,210,16)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="879.50"></text></g><g><title>start_thread (348 samples, 0.23%)</title><rect x="42.4819%" y="853" width="0.2304%" height="15" fill="rgb(221,94,12)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="863.50"></text></g><g><title>thread_native_entry (348 samples, 0.23%)</title><rect x="42.4819%" y="837" width="0.2304%" height="15" fill="rgb(235,218,49)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="847.50"></text></g><g><title>Thread::call_run (348 samples, 0.23%)</title><rect x="42.4819%" y="821" width="0.2304%" height="15" fill="rgb(217,114,14)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="831.50"></text></g><g><title>GangWorker::loop (347 samples, 0.23%)</title><rect x="42.4826%" y="805" width="0.2297%" height="15" fill="rgb(216,145,22)" fg:x="64175" fg:w="347"/><text x="42.7326%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (96 samples, 0.06%)</title><rect x="42.6487%" y="789" width="0.0636%" height="15" fill="rgb(217,112,39)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="799.50"></text></g><g><title>PosixSemaphore::wait (96 samples, 0.06%)</title><rect x="42.6487%" y="773" width="0.0636%" height="15" fill="rgb(225,85,32)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="783.50"></text></g><g><title>__new_sem_wait_slow (96 samples, 0.06%)</title><rect x="42.6487%" y="757" width="0.0636%" height="15" fill="rgb(245,209,47)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="767.50"></text></g><g><title>do_futex_wait (96 samples, 0.06%)</title><rect x="42.6487%" y="741" width="0.0636%" height="15" fill="rgb(218,220,15)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (96 samples, 0.06%)</title><rect x="42.6487%" y="725" width="0.0636%" height="15" fill="rgb(222,202,31)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.06%)</title><rect x="42.6487%" y="709" width="0.0636%" height="15" fill="rgb(243,203,4)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="719.50"></text></g><g><title>[perf-983083.map] (112 samples, 0.07%)</title><rect x="42.7268%" y="869" width="0.0741%" height="15" fill="rgb(237,92,17)" fg:x="64544" fg:w="112"/><text x="42.9768%" y="879.50"></text></g><g><title>Service_Thread (139 samples, 0.09%)</title><rect x="42.7222%" y="885" width="0.0920%" height="15" fill="rgb(231,119,7)" fg:x="64537" fg:w="139"/><text x="42.9722%" y="895.50"></text></g><g><title>[anon] (16 samples, 0.01%)</title><rect x="42.8215%" y="869" width="0.0106%" height="15" fill="rgb(237,82,41)" fg:x="64687" fg:w="16"/><text x="43.0715%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (87 samples, 0.06%)</title><rect x="42.8797%" y="533" width="0.0576%" height="15" fill="rgb(226,81,48)" fg:x="64775" fg:w="87"/><text x="43.1297%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.06%)</title><rect x="42.8817%" y="517" width="0.0556%" height="15" fill="rgb(234,70,51)" fg:x="64778" fg:w="84"/><text x="43.1317%" y="527.50"></text></g><g><title>native_write_msr (84 samples, 0.06%)</title><rect x="42.8817%" y="501" width="0.0556%" height="15" fill="rgb(251,86,4)" fg:x="64778" fg:w="84"/><text x="43.1317%" y="511.50"></text></g><g><title>finish_task_switch (91 samples, 0.06%)</title><rect x="42.8784%" y="549" width="0.0602%" height="15" fill="rgb(244,144,28)" fg:x="64773" fg:w="91"/><text x="43.1284%" y="559.50"></text></g><g><title>futex_wait_queue_me (133 samples, 0.09%)</title><rect x="42.8586%" y="597" width="0.0880%" height="15" fill="rgb(232,161,39)" fg:x="64743" fg:w="133"/><text x="43.1086%" y="607.50"></text></g><g><title>schedule (120 samples, 0.08%)</title><rect x="42.8672%" y="581" width="0.0794%" height="15" fill="rgb(247,34,51)" fg:x="64756" fg:w="120"/><text x="43.1172%" y="591.50"></text></g><g><title>__schedule (119 samples, 0.08%)</title><rect x="42.8678%" y="565" width="0.0788%" height="15" fill="rgb(225,132,2)" fg:x="64757" fg:w="119"/><text x="43.1178%" y="575.50"></text></g><g><title>do_futex (148 samples, 0.10%)</title><rect x="42.8559%" y="629" width="0.0980%" height="15" fill="rgb(209,159,44)" fg:x="64739" fg:w="148"/><text x="43.1059%" y="639.50"></text></g><g><title>futex_wait (146 samples, 0.10%)</title><rect x="42.8572%" y="613" width="0.0966%" height="15" fill="rgb(251,214,1)" fg:x="64741" fg:w="146"/><text x="43.1072%" y="623.50"></text></g><g><title>do_syscall_64 (153 samples, 0.10%)</title><rect x="42.8553%" y="661" width="0.1013%" height="15" fill="rgb(247,84,47)" fg:x="64738" fg:w="153"/><text x="43.1053%" y="671.50"></text></g><g><title>__x64_sys_futex (153 samples, 0.10%)</title><rect x="42.8553%" y="645" width="0.1013%" height="15" fill="rgb(240,111,43)" fg:x="64738" fg:w="153"/><text x="43.1053%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.11%)</title><rect x="42.8553%" y="677" width="0.1072%" height="15" fill="rgb(215,214,35)" fg:x="64738" fg:w="162"/><text x="43.1053%" y="687.50"></text></g><g><title>__pthread_cond_timedwait (177 samples, 0.12%)</title><rect x="42.8473%" y="725" width="0.1172%" height="15" fill="rgb(248,207,23)" fg:x="64726" fg:w="177"/><text x="43.0973%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (177 samples, 0.12%)</title><rect x="42.8473%" y="709" width="0.1172%" height="15" fill="rgb(214,186,4)" fg:x="64726" fg:w="177"/><text x="43.0973%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (168 samples, 0.11%)</title><rect x="42.8533%" y="693" width="0.1112%" height="15" fill="rgb(220,133,22)" fg:x="64735" fg:w="168"/><text x="43.1033%" y="703.50"></text></g><g><title>Monitor::wait (198 samples, 0.13%)</title><rect x="42.8413%" y="773" width="0.1311%" height="15" fill="rgb(239,134,19)" fg:x="64717" fg:w="198"/><text x="43.0913%" y="783.50"></text></g><g><title>Monitor::IWait (197 samples, 0.13%)</title><rect x="42.8420%" y="757" width="0.1304%" height="15" fill="rgb(250,140,9)" fg:x="64718" fg:w="197"/><text x="43.0920%" y="767.50"></text></g><g><title>os::PlatformEvent::park (190 samples, 0.13%)</title><rect x="42.8466%" y="741" width="0.1258%" height="15" fill="rgb(225,59,14)" fg:x="64725" fg:w="190"/><text x="43.0966%" y="751.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (87 samples, 0.06%)</title><rect x="42.9910%" y="725" width="0.0576%" height="15" fill="rgb(214,152,51)" fg:x="64943" fg:w="87"/><text x="43.2410%" y="735.50"></text></g><g><title>NMethodSweeper::process_compiled_method (113 samples, 0.07%)</title><rect x="42.9896%" y="741" width="0.0748%" height="15" fill="rgb(251,227,43)" fg:x="64941" fg:w="113"/><text x="43.2396%" y="751.50"></text></g><g><title>NMethodSweeper::possibly_sweep (146 samples, 0.10%)</title><rect x="42.9724%" y="773" width="0.0966%" height="15" fill="rgb(241,96,17)" fg:x="64915" fg:w="146"/><text x="43.2224%" y="783.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (134 samples, 0.09%)</title><rect x="42.9804%" y="757" width="0.0887%" height="15" fill="rgb(234,198,43)" fg:x="64927" fg:w="134"/><text x="43.2304%" y="767.50"></text></g><g><title>__GI___clone (361 samples, 0.24%)</title><rect x="42.8341%" y="869" width="0.2390%" height="15" fill="rgb(220,108,29)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="879.50"></text></g><g><title>start_thread (361 samples, 0.24%)</title><rect x="42.8341%" y="853" width="0.2390%" height="15" fill="rgb(226,163,33)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="863.50"></text></g><g><title>thread_native_entry (361 samples, 0.24%)</title><rect x="42.8341%" y="837" width="0.2390%" height="15" fill="rgb(205,194,45)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="847.50"></text></g><g><title>Thread::call_run (361 samples, 0.24%)</title><rect x="42.8341%" y="821" width="0.2390%" height="15" fill="rgb(206,143,44)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (361 samples, 0.24%)</title><rect x="42.8341%" y="805" width="0.2390%" height="15" fill="rgb(236,136,36)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="815.50"></text></g><g><title>NMethodSweeper::sweeper_loop (361 samples, 0.24%)</title><rect x="42.8341%" y="789" width="0.2390%" height="15" fill="rgb(249,172,42)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="799.50"></text></g><g><title>Sweeper_thread (389 samples, 0.26%)</title><rect x="42.8202%" y="885" width="0.2575%" height="15" fill="rgb(216,139,23)" fg:x="64685" fg:w="389"/><text x="43.0702%" y="895.50"></text></g><g><title>JVM_Sleep (19 samples, 0.01%)</title><rect x="43.1392%" y="853" width="0.0126%" height="15" fill="rgb(207,166,20)" fg:x="65167" fg:w="19"/><text x="43.3892%" y="863.50"></text></g><g><title>os::sleep (17 samples, 0.01%)</title><rect x="43.1406%" y="837" width="0.0113%" height="15" fill="rgb(210,209,22)" fg:x="65169" fg:w="17"/><text x="43.3906%" y="847.50"></text></g><g><title>[perf-983083.map] (138 samples, 0.09%)</title><rect x="43.0803%" y="869" width="0.0914%" height="15" fill="rgb(232,118,20)" fg:x="65078" fg:w="138"/><text x="43.3303%" y="879.50"></text></g><g><title>Thread-0 (148 samples, 0.10%)</title><rect x="43.0777%" y="885" width="0.0980%" height="15" fill="rgb(238,113,42)" fg:x="65074" fg:w="148"/><text x="43.3277%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="43.1882%" y="533" width="0.0139%" height="15" fill="rgb(231,42,5)" fg:x="65241" fg:w="21"/><text x="43.4382%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="43.1882%" y="517" width="0.0139%" height="15" fill="rgb(243,166,24)" fg:x="65241" fg:w="21"/><text x="43.4382%" y="527.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="43.1882%" y="501" width="0.0139%" height="15" fill="rgb(237,226,12)" fg:x="65241" fg:w="21"/><text x="43.4382%" y="511.50"></text></g><g><title>finish_task_switch (22 samples, 0.01%)</title><rect x="43.1882%" y="549" width="0.0146%" height="15" fill="rgb(229,133,24)" fg:x="65241" fg:w="22"/><text x="43.4382%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (35 samples, 0.02%)</title><rect x="43.1816%" y="725" width="0.0232%" height="15" fill="rgb(238,33,43)" fg:x="65231" fg:w="35"/><text x="43.4316%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="43.1816%" y="709" width="0.0232%" height="15" fill="rgb(227,59,38)" fg:x="65231" fg:w="35"/><text x="43.4316%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (34 samples, 0.02%)</title><rect x="43.1823%" y="693" width="0.0225%" height="15" fill="rgb(230,97,0)" fg:x="65232" fg:w="34"/><text x="43.4323%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="43.1829%" y="677" width="0.0218%" height="15" fill="rgb(250,173,50)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="687.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="43.1829%" y="661" width="0.0218%" height="15" fill="rgb(240,15,50)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="671.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.02%)</title><rect x="43.1829%" y="645" width="0.0218%" height="15" fill="rgb(221,93,22)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="655.50"></text></g><g><title>do_futex (33 samples, 0.02%)</title><rect x="43.1829%" y="629" width="0.0218%" height="15" fill="rgb(245,180,53)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="639.50"></text></g><g><title>futex_wait (33 samples, 0.02%)</title><rect x="43.1829%" y="613" width="0.0218%" height="15" fill="rgb(231,88,51)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="623.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.02%)</title><rect x="43.1843%" y="597" width="0.0205%" height="15" fill="rgb(240,58,21)" fg:x="65235" fg:w="31"/><text x="43.4343%" y="607.50"></text></g><g><title>schedule (29 samples, 0.02%)</title><rect x="43.1856%" y="581" width="0.0192%" height="15" fill="rgb(237,21,10)" fg:x="65237" fg:w="29"/><text x="43.4356%" y="591.50"></text></g><g><title>__schedule (29 samples, 0.02%)</title><rect x="43.1856%" y="565" width="0.0192%" height="15" fill="rgb(218,43,11)" fg:x="65237" fg:w="29"/><text x="43.4356%" y="575.50"></text></g><g><title>__GI___clone (43 samples, 0.03%)</title><rect x="43.1776%" y="869" width="0.0285%" height="15" fill="rgb(218,221,29)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="879.50"></text></g><g><title>start_thread (43 samples, 0.03%)</title><rect x="43.1776%" y="853" width="0.0285%" height="15" fill="rgb(214,118,42)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="863.50"></text></g><g><title>thread_native_entry (43 samples, 0.03%)</title><rect x="43.1776%" y="837" width="0.0285%" height="15" fill="rgb(251,200,26)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="847.50"></text></g><g><title>Thread::call_run (43 samples, 0.03%)</title><rect x="43.1776%" y="821" width="0.0285%" height="15" fill="rgb(237,101,39)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="831.50"></text></g><g><title>WatcherThread::run (43 samples, 0.03%)</title><rect x="43.1776%" y="805" width="0.0285%" height="15" fill="rgb(251,117,11)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="815.50"></text></g><g><title>WatcherThread::sleep (39 samples, 0.03%)</title><rect x="43.1803%" y="789" width="0.0258%" height="15" fill="rgb(216,223,23)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="799.50"></text></g><g><title>Monitor::wait (39 samples, 0.03%)</title><rect x="43.1803%" y="773" width="0.0258%" height="15" fill="rgb(251,54,12)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="783.50"></text></g><g><title>Monitor::IWait (39 samples, 0.03%)</title><rect x="43.1803%" y="757" width="0.0258%" height="15" fill="rgb(254,176,54)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="767.50"></text></g><g><title>os::PlatformEvent::park (39 samples, 0.03%)</title><rect x="43.1803%" y="741" width="0.0258%" height="15" fill="rgb(210,32,8)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="751.50"></text></g><g><title>VM_Periodic_Tas (47 samples, 0.03%)</title><rect x="43.1756%" y="885" width="0.0311%" height="15" fill="rgb(235,52,38)" fg:x="65222" fg:w="47"/><text x="43.4256%" y="895.50"></text></g><g><title>[unknown] (57 samples, 0.04%)</title><rect x="43.2140%" y="869" width="0.0377%" height="15" fill="rgb(231,4,44)" fg:x="65280" fg:w="57"/><text x="43.4640%" y="879.50"></text></g><g><title>vframe::sender (52 samples, 0.03%)</title><rect x="43.2174%" y="853" width="0.0344%" height="15" fill="rgb(249,2,32)" fg:x="65285" fg:w="52"/><text x="43.4674%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="43.2524%" y="805" width="0.0225%" height="15" fill="rgb(224,65,26)" fg:x="65338" fg:w="34"/><text x="43.5024%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="43.2524%" y="789" width="0.0225%" height="15" fill="rgb(250,73,40)" fg:x="65338" fg:w="34"/><text x="43.5024%" y="799.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="43.2524%" y="773" width="0.0225%" height="15" fill="rgb(253,177,16)" fg:x="65338" fg:w="34"/><text x="43.5024%" y="783.50"></text></g><g><title>ret_from_fork (36 samples, 0.02%)</title><rect x="43.2518%" y="853" width="0.0238%" height="15" fill="rgb(217,32,34)" fg:x="65337" fg:w="36"/><text x="43.5018%" y="863.50"></text></g><g><title>schedule_tail (35 samples, 0.02%)</title><rect x="43.2524%" y="837" width="0.0232%" height="15" fill="rgb(212,7,10)" fg:x="65338" fg:w="35"/><text x="43.5024%" y="847.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.2524%" y="821" width="0.0232%" height="15" fill="rgb(245,89,8)" fg:x="65338" fg:w="35"/><text x="43.5024%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.04%)</title><rect x="43.2922%" y="533" width="0.0397%" height="15" fill="rgb(237,16,53)" fg:x="65398" fg:w="60"/><text x="43.5422%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.04%)</title><rect x="43.2935%" y="517" width="0.0384%" height="15" fill="rgb(250,204,30)" fg:x="65400" fg:w="58"/><text x="43.5435%" y="527.50"></text></g><g><title>native_write_msr (58 samples, 0.04%)</title><rect x="43.2935%" y="501" width="0.0384%" height="15" fill="rgb(208,77,27)" fg:x="65400" fg:w="58"/><text x="43.5435%" y="511.50"></text></g><g><title>finish_task_switch (67 samples, 0.04%)</title><rect x="43.2895%" y="549" width="0.0444%" height="15" fill="rgb(250,204,28)" fg:x="65394" fg:w="67"/><text x="43.5395%" y="559.50"></text></g><g><title>futex_wait_queue_me (70 samples, 0.05%)</title><rect x="43.2882%" y="597" width="0.0463%" height="15" fill="rgb(244,63,21)" fg:x="65392" fg:w="70"/><text x="43.5382%" y="607.50"></text></g><g><title>schedule (70 samples, 0.05%)</title><rect x="43.2882%" y="581" width="0.0463%" height="15" fill="rgb(236,85,44)" fg:x="65392" fg:w="70"/><text x="43.5382%" y="591.50"></text></g><g><title>__schedule (70 samples, 0.05%)</title><rect x="43.2882%" y="565" width="0.0463%" height="15" fill="rgb(215,98,4)" fg:x="65392" fg:w="70"/><text x="43.5382%" y="575.50"></text></g><g><title>Monitor::wait (75 samples, 0.05%)</title><rect x="43.2855%" y="773" width="0.0496%" height="15" fill="rgb(235,38,11)" fg:x="65388" fg:w="75"/><text x="43.5355%" y="783.50"></text></g><g><title>Monitor::IWait (75 samples, 0.05%)</title><rect x="43.2855%" y="757" width="0.0496%" height="15" fill="rgb(254,186,25)" fg:x="65388" fg:w="75"/><text x="43.5355%" y="767.50"></text></g><g><title>os::PlatformEvent::park (74 samples, 0.05%)</title><rect x="43.2862%" y="741" width="0.0490%" height="15" fill="rgb(225,55,31)" fg:x="65389" fg:w="74"/><text x="43.5362%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (74 samples, 0.05%)</title><rect x="43.2862%" y="725" width="0.0490%" height="15" fill="rgb(211,15,21)" fg:x="65389" fg:w="74"/><text x="43.5362%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (73 samples, 0.05%)</title><rect x="43.2869%" y="709" width="0.0483%" height="15" fill="rgb(215,187,41)" fg:x="65390" fg:w="73"/><text x="43.5369%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (72 samples, 0.05%)</title><rect x="43.2875%" y="693" width="0.0477%" height="15" fill="rgb(248,69,32)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="43.2875%" y="677" width="0.0477%" height="15" fill="rgb(252,102,52)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="687.50"></text></g><g><title>do_syscall_64 (72 samples, 0.05%)</title><rect x="43.2875%" y="661" width="0.0477%" height="15" fill="rgb(253,140,32)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="671.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.05%)</title><rect x="43.2875%" y="645" width="0.0477%" height="15" fill="rgb(216,56,42)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="655.50"></text></g><g><title>do_futex (72 samples, 0.05%)</title><rect x="43.2875%" y="629" width="0.0477%" height="15" fill="rgb(216,184,14)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="639.50"></text></g><g><title>futex_wait (72 samples, 0.05%)</title><rect x="43.2875%" y="613" width="0.0477%" height="15" fill="rgb(237,187,27)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="623.50"></text></g><g><title>ttwu_do_activate (18 samples, 0.01%)</title><rect x="43.4093%" y="549" width="0.0119%" height="15" fill="rgb(219,65,3)" fg:x="65575" fg:w="18"/><text x="43.6593%" y="559.50"></text></g><g><title>PosixSemaphore::signal (44 samples, 0.03%)</title><rect x="43.3928%" y="709" width="0.0291%" height="15" fill="rgb(245,83,25)" fg:x="65550" fg:w="44"/><text x="43.6428%" y="719.50"></text></g><g><title>__new_sem_post (44 samples, 0.03%)</title><rect x="43.3928%" y="693" width="0.0291%" height="15" fill="rgb(214,205,45)" fg:x="65550" fg:w="44"/><text x="43.6428%" y="703.50"></text></g><g><title>futex_wake (44 samples, 0.03%)</title><rect x="43.3928%" y="677" width="0.0291%" height="15" fill="rgb(241,20,18)" fg:x="65550" fg:w="44"/><text x="43.6428%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.03%)</title><rect x="43.3934%" y="661" width="0.0285%" height="15" fill="rgb(232,163,23)" fg:x="65551" fg:w="43"/><text x="43.6434%" y="671.50"></text></g><g><title>do_syscall_64 (43 samples, 0.03%)</title><rect x="43.3934%" y="645" width="0.0285%" height="15" fill="rgb(214,5,46)" fg:x="65551" fg:w="43"/><text x="43.6434%" y="655.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.03%)</title><rect x="43.3941%" y="629" width="0.0278%" height="15" fill="rgb(229,78,17)" fg:x="65552" fg:w="42"/><text x="43.6441%" y="639.50"></text></g><g><title>do_futex (41 samples, 0.03%)</title><rect x="43.3948%" y="613" width="0.0271%" height="15" fill="rgb(248,89,10)" fg:x="65553" fg:w="41"/><text x="43.6448%" y="623.50"></text></g><g><title>futex_wake (39 samples, 0.03%)</title><rect x="43.3961%" y="597" width="0.0258%" height="15" fill="rgb(248,54,15)" fg:x="65555" fg:w="39"/><text x="43.6461%" y="607.50"></text></g><g><title>wake_up_q (35 samples, 0.02%)</title><rect x="43.3987%" y="581" width="0.0232%" height="15" fill="rgb(223,116,6)" fg:x="65559" fg:w="35"/><text x="43.6487%" y="591.50"></text></g><g><title>try_to_wake_up (35 samples, 0.02%)</title><rect x="43.3987%" y="565" width="0.0232%" height="15" fill="rgb(205,125,38)" fg:x="65559" fg:w="35"/><text x="43.6487%" y="575.50"></text></g><g><title>finish_task_switch (64 samples, 0.04%)</title><rect x="43.4265%" y="517" width="0.0424%" height="15" fill="rgb(251,78,38)" fg:x="65601" fg:w="64"/><text x="43.6765%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.04%)</title><rect x="43.4285%" y="501" width="0.0404%" height="15" fill="rgb(253,78,28)" fg:x="65604" fg:w="61"/><text x="43.6785%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.04%)</title><rect x="43.4298%" y="485" width="0.0391%" height="15" fill="rgb(209,120,3)" fg:x="65606" fg:w="59"/><text x="43.6798%" y="495.50"></text></g><g><title>native_write_msr (59 samples, 0.04%)</title><rect x="43.4298%" y="469" width="0.0391%" height="15" fill="rgb(238,229,9)" fg:x="65606" fg:w="59"/><text x="43.6798%" y="479.50"></text></g><g><title>do_syscall_64 (73 samples, 0.05%)</title><rect x="43.4226%" y="629" width="0.0483%" height="15" fill="rgb(253,159,18)" fg:x="65595" fg:w="73"/><text x="43.6726%" y="639.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.05%)</title><rect x="43.4232%" y="613" width="0.0477%" height="15" fill="rgb(244,42,34)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="623.50"></text></g><g><title>do_futex (72 samples, 0.05%)</title><rect x="43.4232%" y="597" width="0.0477%" height="15" fill="rgb(224,8,7)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="607.50"></text></g><g><title>futex_wait (72 samples, 0.05%)</title><rect x="43.4232%" y="581" width="0.0477%" height="15" fill="rgb(210,201,45)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="591.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.05%)</title><rect x="43.4232%" y="565" width="0.0477%" height="15" fill="rgb(252,185,21)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="575.50"></text></g><g><title>schedule (70 samples, 0.05%)</title><rect x="43.4246%" y="549" width="0.0463%" height="15" fill="rgb(223,131,1)" fg:x="65598" fg:w="70"/><text x="43.6746%" y="559.50"></text></g><g><title>__schedule (69 samples, 0.05%)</title><rect x="43.4252%" y="533" width="0.0457%" height="15" fill="rgb(245,141,16)" fg:x="65599" fg:w="69"/><text x="43.6752%" y="543.50"></text></g><g><title>WorkGang::run_task (122 samples, 0.08%)</title><rect x="43.3915%" y="741" width="0.0808%" height="15" fill="rgb(229,55,45)" fg:x="65548" fg:w="122"/><text x="43.6415%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (120 samples, 0.08%)</title><rect x="43.3928%" y="725" width="0.0794%" height="15" fill="rgb(208,92,15)" fg:x="65550" fg:w="120"/><text x="43.6428%" y="735.50"></text></g><g><title>PosixSemaphore::wait (76 samples, 0.05%)</title><rect x="43.4219%" y="709" width="0.0503%" height="15" fill="rgb(234,185,47)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="719.50"></text></g><g><title>__new_sem_wait_slow (76 samples, 0.05%)</title><rect x="43.4219%" y="693" width="0.0503%" height="15" fill="rgb(253,104,50)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="703.50"></text></g><g><title>do_futex_wait (76 samples, 0.05%)</title><rect x="43.4219%" y="677" width="0.0503%" height="15" fill="rgb(205,70,7)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (76 samples, 0.05%)</title><rect x="43.4219%" y="661" width="0.0503%" height="15" fill="rgb(240,178,43)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.05%)</title><rect x="43.4226%" y="645" width="0.0496%" height="15" fill="rgb(214,112,2)" fg:x="65595" fg:w="75"/><text x="43.6726%" y="655.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (127 samples, 0.08%)</title><rect x="43.3888%" y="757" width="0.0841%" height="15" fill="rgb(206,46,17)" fg:x="65544" fg:w="127"/><text x="43.6388%" y="767.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="43.4795%" y="725" width="0.0126%" height="15" fill="rgb(225,220,16)" fg:x="65681" fg:w="19"/><text x="43.7295%" y="735.50"></text></g><g><title>__x64_sys_sched_yield (19 samples, 0.01%)</title><rect x="43.4795%" y="709" width="0.0126%" height="15" fill="rgb(238,65,40)" fg:x="65681" fg:w="19"/><text x="43.7295%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (238 samples, 0.16%)</title><rect x="43.3352%" y="773" width="0.1576%" height="15" fill="rgb(230,151,21)" fg:x="65463" fg:w="238"/><text x="43.5852%" y="783.50"></text></g><g><title>__GI___sched_yield (23 samples, 0.02%)</title><rect x="43.4775%" y="757" width="0.0152%" height="15" fill="rgb(218,58,49)" fg:x="65678" fg:w="23"/><text x="43.7275%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="43.4795%" y="741" width="0.0132%" height="15" fill="rgb(219,179,14)" fg:x="65681" fg:w="20"/><text x="43.7295%" y="751.50"></text></g><g><title>VM_CGC_Operation::doit (17 samples, 0.01%)</title><rect x="43.5119%" y="741" width="0.0113%" height="15" fill="rgb(223,72,1)" fg:x="65730" fg:w="17"/><text x="43.7619%" y="751.50"></text></g><g><title>G1ConcurrentMark::remark (17 samples, 0.01%)</title><rect x="43.5119%" y="725" width="0.0113%" height="15" fill="rgb(238,126,10)" fg:x="65730" fg:w="17"/><text x="43.7619%" y="735.50"></text></g><g><title>CodeHeap::next_used (34 samples, 0.02%)</title><rect x="43.5278%" y="693" width="0.0225%" height="15" fill="rgb(224,206,38)" fg:x="65754" fg:w="34"/><text x="43.7778%" y="703.50"></text></g><g><title>CodeBlobIterator<CompiledMethod, CompiledMethodFilter>::next_alive (43 samples, 0.03%)</title><rect x="43.5245%" y="709" width="0.0285%" height="15" fill="rgb(212,201,54)" fg:x="65749" fg:w="43"/><text x="43.7745%" y="719.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (45 samples, 0.03%)</title><rect x="43.5239%" y="725" width="0.0298%" height="15" fill="rgb(218,154,48)" fg:x="65748" fg:w="45"/><text x="43.7739%" y="735.50"></text></g><g><title>VM_Deoptimize::doit (50 samples, 0.03%)</title><rect x="43.5239%" y="741" width="0.0331%" height="15" fill="rgb(232,93,24)" fg:x="65748" fg:w="50"/><text x="43.7739%" y="751.50"></text></g><g><title>VM_Operation::evaluate (97 samples, 0.06%)</title><rect x="43.5060%" y="757" width="0.0642%" height="15" fill="rgb(245,30,21)" fg:x="65721" fg:w="97"/><text x="43.7560%" y="767.50"></text></g><g><title>VMThread::evaluate_operation (99 samples, 0.07%)</title><rect x="43.5060%" y="773" width="0.0655%" height="15" fill="rgb(242,148,29)" fg:x="65721" fg:w="99"/><text x="43.7560%" y="783.50"></text></g><g><title>Thread::call_run (448 samples, 0.30%)</title><rect x="43.2763%" y="821" width="0.2966%" height="15" fill="rgb(244,153,54)" fg:x="65374" fg:w="448"/><text x="43.5263%" y="831.50"></text></g><g><title>VMThread::run (448 samples, 0.30%)</title><rect x="43.2763%" y="805" width="0.2966%" height="15" fill="rgb(252,87,22)" fg:x="65374" fg:w="448"/><text x="43.5263%" y="815.50"></text></g><g><title>VMThread::loop (448 samples, 0.30%)</title><rect x="43.2763%" y="789" width="0.2966%" height="15" fill="rgb(210,51,29)" fg:x="65374" fg:w="448"/><text x="43.5263%" y="799.50"></text></g><g><title>__GI___clone (490 samples, 0.32%)</title><rect x="43.2518%" y="869" width="0.3244%" height="15" fill="rgb(242,136,47)" fg:x="65337" fg:w="490"/><text x="43.5018%" y="879.50"></text></g><g><title>start_thread (454 samples, 0.30%)</title><rect x="43.2756%" y="853" width="0.3005%" height="15" fill="rgb(238,68,4)" fg:x="65373" fg:w="454"/><text x="43.5256%" y="863.50"></text></g><g><title>thread_native_entry (454 samples, 0.30%)</title><rect x="43.2756%" y="837" width="0.3005%" height="15" fill="rgb(242,161,30)" fg:x="65373" fg:w="454"/><text x="43.5256%" y="847.50"></text></g><g><title>VM_Thread (563 samples, 0.37%)</title><rect x="43.2068%" y="885" width="0.3727%" height="15" fill="rgb(218,58,44)" fg:x="65269" fg:w="563"/><text x="43.4568%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.05%)</title><rect x="43.7119%" y="709" width="0.0516%" height="15" fill="rgb(252,125,32)" fg:x="66032" fg:w="78"/><text x="43.9619%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.05%)</title><rect x="43.7138%" y="693" width="0.0496%" height="15" fill="rgb(219,178,0)" fg:x="66035" fg:w="75"/><text x="43.9638%" y="703.50"></text></g><g><title>native_write_msr (75 samples, 0.05%)</title><rect x="43.7138%" y="677" width="0.0496%" height="15" fill="rgb(213,152,7)" fg:x="66035" fg:w="75"/><text x="43.9638%" y="687.50"></text></g><g><title>finish_task_switch (85 samples, 0.06%)</title><rect x="43.7105%" y="725" width="0.0563%" height="15" fill="rgb(249,109,34)" fg:x="66030" fg:w="85"/><text x="43.9605%" y="735.50"></text></g><g><title>futex_wait (98 samples, 0.06%)</title><rect x="43.7032%" y="789" width="0.0649%" height="15" fill="rgb(232,96,21)" fg:x="66019" fg:w="98"/><text x="43.9532%" y="799.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.06%)</title><rect x="43.7046%" y="773" width="0.0636%" height="15" fill="rgb(228,27,39)" fg:x="66021" fg:w="96"/><text x="43.9546%" y="783.50"></text></g><g><title>schedule (92 samples, 0.06%)</title><rect x="43.7072%" y="757" width="0.0609%" height="15" fill="rgb(211,182,52)" fg:x="66025" fg:w="92"/><text x="43.9572%" y="767.50"></text></g><g><title>__schedule (91 samples, 0.06%)</title><rect x="43.7079%" y="741" width="0.0602%" height="15" fill="rgb(234,178,38)" fg:x="66026" fg:w="91"/><text x="43.9579%" y="751.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.07%)</title><rect x="43.7032%" y="821" width="0.0695%" height="15" fill="rgb(221,111,3)" fg:x="66019" fg:w="105"/><text x="43.9532%" y="831.50"></text></g><g><title>do_futex (105 samples, 0.07%)</title><rect x="43.7032%" y="805" width="0.0695%" height="15" fill="rgb(228,175,21)" fg:x="66019" fg:w="105"/><text x="43.9532%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="43.7860%" y="725" width="0.0139%" height="15" fill="rgb(228,174,43)" fg:x="66144" fg:w="21"/><text x="44.0360%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="43.7867%" y="709" width="0.0132%" height="15" fill="rgb(211,191,0)" fg:x="66145" fg:w="20"/><text x="44.0367%" y="719.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="43.7873%" y="693" width="0.0126%" height="15" fill="rgb(253,117,3)" fg:x="66146" fg:w="19"/><text x="44.0373%" y="703.50"></text></g><g><title>finish_task_switch (22 samples, 0.01%)</title><rect x="43.7860%" y="741" width="0.0146%" height="15" fill="rgb(241,127,19)" fg:x="66144" fg:w="22"/><text x="44.0360%" y="751.50"></text></g><g><title>__x64_sys_nanosleep (45 samples, 0.03%)</title><rect x="43.7767%" y="821" width="0.0298%" height="15" fill="rgb(218,103,12)" fg:x="66130" fg:w="45"/><text x="44.0267%" y="831.50"></text></g><g><title>hrtimer_nanosleep (44 samples, 0.03%)</title><rect x="43.7774%" y="805" width="0.0291%" height="15" fill="rgb(236,214,43)" fg:x="66131" fg:w="44"/><text x="44.0274%" y="815.50"></text></g><g><title>do_nanosleep (44 samples, 0.03%)</title><rect x="43.7774%" y="789" width="0.0291%" height="15" fill="rgb(244,144,19)" fg:x="66131" fg:w="44"/><text x="44.0274%" y="799.50"></text></g><g><title>schedule (38 samples, 0.03%)</title><rect x="43.7814%" y="773" width="0.0252%" height="15" fill="rgb(246,188,10)" fg:x="66137" fg:w="38"/><text x="44.0314%" y="783.50"></text></g><g><title>__schedule (38 samples, 0.03%)</title><rect x="43.7814%" y="757" width="0.0252%" height="15" fill="rgb(212,193,33)" fg:x="66137" fg:w="38"/><text x="44.0314%" y="767.50"></text></g><g><title>do_syscall_64 (180 samples, 0.12%)</title><rect x="43.6927%" y="837" width="0.1192%" height="15" fill="rgb(241,51,29)" fg:x="66003" fg:w="180"/><text x="43.9427%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (184 samples, 0.12%)</title><rect x="43.6927%" y="853" width="0.1218%" height="15" fill="rgb(211,58,19)" fg:x="66003" fg:w="184"/><text x="43.9427%" y="863.50"></text></g><g><title>schedule_tail (42 samples, 0.03%)</title><rect x="43.8151%" y="837" width="0.0278%" height="15" fill="rgb(229,111,26)" fg:x="66188" fg:w="42"/><text x="44.0651%" y="847.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="43.8151%" y="821" width="0.0278%" height="15" fill="rgb(213,115,40)" fg:x="66188" fg:w="42"/><text x="44.0651%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="43.8158%" y="805" width="0.0271%" height="15" fill="rgb(209,56,44)" fg:x="66189" fg:w="41"/><text x="44.0658%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.03%)</title><rect x="43.8158%" y="789" width="0.0271%" height="15" fill="rgb(230,108,32)" fg:x="66189" fg:w="41"/><text x="44.0658%" y="799.50"></text></g><g><title>native_write_msr (41 samples, 0.03%)</title><rect x="43.8158%" y="773" width="0.0271%" height="15" fill="rgb(216,165,31)" fg:x="66189" fg:w="41"/><text x="44.0658%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (390 samples, 0.26%)</title><rect x="43.5854%" y="869" width="0.2582%" height="15" fill="rgb(218,122,21)" fg:x="65841" fg:w="390"/><text x="43.8354%" y="879.50"></text></g><g><title>ret_from_fork (44 samples, 0.03%)</title><rect x="43.8145%" y="853" width="0.0291%" height="15" fill="rgb(223,224,47)" fg:x="66187" fg:w="44"/><text x="44.0645%" y="863.50"></text></g><g><title>__libc_start_main (20 samples, 0.01%)</title><rect x="43.8449%" y="853" width="0.0132%" height="15" fill="rgb(238,102,44)" fg:x="66233" fg:w="20"/><text x="44.0949%" y="863.50"></text></g><g><title>_start (32 samples, 0.02%)</title><rect x="43.8449%" y="869" width="0.0212%" height="15" fill="rgb(236,46,40)" fg:x="66233" fg:w="32"/><text x="44.0949%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="43.8681%" y="869" width="0.0113%" height="15" fill="rgb(247,202,50)" fg:x="66268" fg:w="17"/><text x="44.1181%" y="879.50"></text></g><g><title>bazel (449 samples, 0.30%)</title><rect x="43.5828%" y="885" width="0.2972%" height="15" fill="rgb(209,99,20)" fg:x="65837" fg:w="449"/><text x="43.8328%" y="895.50"></text></g><g><title>_dl_map_object_from_fd (18 samples, 0.01%)</title><rect x="43.9124%" y="725" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="66335" fg:w="18"/><text x="44.1624%" y="735.50"></text></g><g><title>_dl_catch_exception (22 samples, 0.01%)</title><rect x="43.9118%" y="773" width="0.0146%" height="15" fill="rgb(215,206,23)" fg:x="66334" fg:w="22"/><text x="44.1618%" y="783.50"></text></g><g><title>openaux (22 samples, 0.01%)</title><rect x="43.9118%" y="757" width="0.0146%" height="15" fill="rgb(212,135,36)" fg:x="66334" fg:w="22"/><text x="44.1618%" y="767.50"></text></g><g><title>_dl_map_object (22 samples, 0.01%)</title><rect x="43.9118%" y="741" width="0.0146%" height="15" fill="rgb(240,189,1)" fg:x="66334" fg:w="22"/><text x="44.1618%" y="751.50"></text></g><g><title>_dl_map_object_deps (24 samples, 0.02%)</title><rect x="43.9111%" y="789" width="0.0159%" height="15" fill="rgb(242,56,20)" fg:x="66333" fg:w="24"/><text x="44.1611%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (43 samples, 0.03%)</title><rect x="43.9435%" y="741" width="0.0285%" height="15" fill="rgb(247,132,33)" fg:x="66382" fg:w="43"/><text x="44.1935%" y="751.50"></text></g><g><title>do_lookup_x (26 samples, 0.02%)</title><rect x="43.9548%" y="725" width="0.0172%" height="15" fill="rgb(208,149,11)" fg:x="66399" fg:w="26"/><text x="44.2048%" y="735.50"></text></g><g><title>elf_machine_rela (54 samples, 0.04%)</title><rect x="43.9369%" y="757" width="0.0357%" height="15" fill="rgb(211,33,11)" fg:x="66372" fg:w="54"/><text x="44.1869%" y="767.50"></text></g><g><title>_dl_relocate_object (67 samples, 0.04%)</title><rect x="43.9290%" y="789" width="0.0444%" height="15" fill="rgb(221,29,38)" fg:x="66360" fg:w="67"/><text x="44.1790%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (62 samples, 0.04%)</title><rect x="43.9323%" y="773" width="0.0410%" height="15" fill="rgb(206,182,49)" fg:x="66365" fg:w="62"/><text x="44.1823%" y="783.50"></text></g><g><title>_start (108 samples, 0.07%)</title><rect x="43.9032%" y="869" width="0.0715%" height="15" fill="rgb(216,140,1)" fg:x="66321" fg:w="108"/><text x="44.1532%" y="879.50"></text></g><g><title>_dl_start (97 samples, 0.06%)</title><rect x="43.9104%" y="853" width="0.0642%" height="15" fill="rgb(232,57,40)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="863.50"></text></g><g><title>_dl_start_final (97 samples, 0.06%)</title><rect x="43.9104%" y="837" width="0.0642%" height="15" fill="rgb(224,186,18)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="847.50"></text></g><g><title>_dl_sysdep_start (97 samples, 0.06%)</title><rect x="43.9104%" y="821" width="0.0642%" height="15" fill="rgb(215,121,11)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="831.50"></text></g><g><title>[ld-2.31.so] (97 samples, 0.06%)</title><rect x="43.9104%" y="805" width="0.0642%" height="15" fill="rgb(245,147,10)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="815.50"></text></g><g><title>mmput (16 samples, 0.01%)</title><rect x="43.9846%" y="789" width="0.0106%" height="15" fill="rgb(238,153,13)" fg:x="66444" fg:w="16"/><text x="44.2346%" y="799.50"></text></g><g><title>exit_mmap (16 samples, 0.01%)</title><rect x="43.9846%" y="773" width="0.0106%" height="15" fill="rgb(233,108,0)" fg:x="66444" fg:w="16"/><text x="44.2346%" y="783.50"></text></g><g><title>build-runfiles (174 samples, 0.12%)</title><rect x="43.8807%" y="885" width="0.1152%" height="15" fill="rgb(212,157,17)" fg:x="66287" fg:w="174"/><text x="44.1307%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="43.9793%" y="869" width="0.0165%" height="15" fill="rgb(225,213,38)" fg:x="66436" fg:w="25"/><text x="44.2293%" y="879.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="43.9793%" y="853" width="0.0165%" height="15" fill="rgb(248,16,11)" fg:x="66436" fg:w="25"/><text x="44.2293%" y="863.50"></text></g><g><title>__x64_sys_exit_group (17 samples, 0.01%)</title><rect x="43.9846%" y="837" width="0.0113%" height="15" fill="rgb(241,33,4)" fg:x="66444" fg:w="17"/><text x="44.2346%" y="847.50"></text></g><g><title>do_group_exit (17 samples, 0.01%)</title><rect x="43.9846%" y="821" width="0.0113%" height="15" fill="rgb(222,26,43)" fg:x="66444" fg:w="17"/><text x="44.2346%" y="831.50"></text></g><g><title>do_exit (17 samples, 0.01%)</title><rect x="43.9846%" y="805" width="0.0113%" height="15" fill="rgb(243,29,36)" fg:x="66444" fg:w="17"/><text x="44.2346%" y="815.50"></text></g><g><title>_dl_map_object (18 samples, 0.01%)</title><rect x="44.0236%" y="565" width="0.0119%" height="15" fill="rgb(241,9,27)" fg:x="66503" fg:w="18"/><text x="44.2736%" y="575.50"></text></g><g><title>__GI__dl_catch_exception (26 samples, 0.02%)</title><rect x="44.0230%" y="597" width="0.0172%" height="15" fill="rgb(205,117,26)" fg:x="66502" fg:w="26"/><text x="44.2730%" y="607.50"></text></g><g><title>dl_open_worker (26 samples, 0.02%)</title><rect x="44.0230%" y="581" width="0.0172%" height="15" fill="rgb(209,80,39)" fg:x="66502" fg:w="26"/><text x="44.2730%" y="591.50"></text></g><g><title>__GI___nss_lookup (31 samples, 0.02%)</title><rect x="44.0223%" y="741" width="0.0205%" height="15" fill="rgb(239,155,6)" fg:x="66501" fg:w="31"/><text x="44.2723%" y="751.50"></text></g><g><title>__GI___nss_lookup_function (31 samples, 0.02%)</title><rect x="44.0223%" y="725" width="0.0205%" height="15" fill="rgb(212,104,12)" fg:x="66501" fg:w="31"/><text x="44.2723%" y="735.50"></text></g><g><title>nss_load_library (30 samples, 0.02%)</title><rect x="44.0230%" y="709" width="0.0199%" height="15" fill="rgb(234,204,3)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="719.50"></text></g><g><title>__GI___libc_dlopen_mode (30 samples, 0.02%)</title><rect x="44.0230%" y="693" width="0.0199%" height="15" fill="rgb(251,218,7)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="703.50"></text></g><g><title>dlerror_run (30 samples, 0.02%)</title><rect x="44.0230%" y="677" width="0.0199%" height="15" fill="rgb(221,81,32)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="687.50"></text></g><g><title>__GI__dl_catch_error (30 samples, 0.02%)</title><rect x="44.0230%" y="661" width="0.0199%" height="15" fill="rgb(214,152,26)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="671.50"></text></g><g><title>__GI__dl_catch_exception (30 samples, 0.02%)</title><rect x="44.0230%" y="645" width="0.0199%" height="15" fill="rgb(223,22,3)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="655.50"></text></g><g><title>do_dlopen (30 samples, 0.02%)</title><rect x="44.0230%" y="629" width="0.0199%" height="15" fill="rgb(207,174,7)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="639.50"></text></g><g><title>_dl_open (30 samples, 0.02%)</title><rect x="44.0230%" y="613" width="0.0199%" height="15" fill="rgb(224,19,52)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="623.50"></text></g><g><title>getpwuid (45 samples, 0.03%)</title><rect x="44.0223%" y="773" width="0.0298%" height="15" fill="rgb(228,24,14)" fg:x="66501" fg:w="45"/><text x="44.2723%" y="783.50"></text></g><g><title>__getpwuid_r (45 samples, 0.03%)</title><rect x="44.0223%" y="757" width="0.0298%" height="15" fill="rgb(230,153,43)" fg:x="66501" fg:w="45"/><text x="44.2723%" y="767.50"></text></g><g><title>[bash] (51 samples, 0.03%)</title><rect x="44.0217%" y="789" width="0.0338%" height="15" fill="rgb(231,106,12)" fg:x="66500" fg:w="51"/><text x="44.2717%" y="799.50"></text></g><g><title>initialize_shell_variables (72 samples, 0.05%)</title><rect x="44.0217%" y="805" width="0.0477%" height="15" fill="rgb(215,92,2)" fg:x="66500" fg:w="72"/><text x="44.2717%" y="815.50"></text></g><g><title>[bash] (94 samples, 0.06%)</title><rect x="44.0137%" y="821" width="0.0622%" height="15" fill="rgb(249,143,25)" fg:x="66488" fg:w="94"/><text x="44.2637%" y="831.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="44.0859%" y="725" width="0.0126%" height="15" fill="rgb(252,7,35)" fg:x="66597" fg:w="19"/><text x="44.3359%" y="735.50"></text></g><g><title>unary_test (18 samples, 0.01%)</title><rect x="44.0865%" y="709" width="0.0119%" height="15" fill="rgb(216,69,40)" fg:x="66598" fg:w="18"/><text x="44.3365%" y="719.50"></text></g><g><title>__GI___xstat (18 samples, 0.01%)</title><rect x="44.0865%" y="693" width="0.0119%" height="15" fill="rgb(240,36,33)" fg:x="66598" fg:w="18"/><text x="44.3365%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="44.0865%" y="677" width="0.0119%" height="15" fill="rgb(231,128,14)" fg:x="66598" fg:w="18"/><text x="44.3365%" y="687.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="44.0872%" y="661" width="0.0113%" height="15" fill="rgb(245,143,14)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="671.50"></text></g><g><title>__do_sys_newstat (17 samples, 0.01%)</title><rect x="44.0872%" y="645" width="0.0113%" height="15" fill="rgb(222,130,28)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="655.50"></text></g><g><title>vfs_statx (17 samples, 0.01%)</title><rect x="44.0872%" y="629" width="0.0113%" height="15" fill="rgb(212,10,48)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="639.50"></text></g><g><title>filename_lookup (17 samples, 0.01%)</title><rect x="44.0872%" y="613" width="0.0113%" height="15" fill="rgb(254,118,45)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="623.50"></text></g><g><title>path_lookupat (17 samples, 0.01%)</title><rect x="44.0872%" y="597" width="0.0113%" height="15" fill="rgb(228,6,45)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="607.50"></text></g><g><title>bprm_execve (20 samples, 0.01%)</title><rect x="44.1004%" y="613" width="0.0132%" height="15" fill="rgb(241,18,35)" fg:x="66619" fg:w="20"/><text x="44.3504%" y="623.50"></text></g><g><title>shell_execve (23 samples, 0.02%)</title><rect x="44.1004%" y="709" width="0.0152%" height="15" fill="rgb(227,214,53)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="719.50"></text></g><g><title>__GI_execve (23 samples, 0.02%)</title><rect x="44.1004%" y="693" width="0.0152%" height="15" fill="rgb(224,107,51)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="44.1004%" y="677" width="0.0152%" height="15" fill="rgb(248,60,28)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="687.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="44.1004%" y="661" width="0.0152%" height="15" fill="rgb(249,101,23)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="671.50"></text></g><g><title>__x64_sys_execve (23 samples, 0.02%)</title><rect x="44.1004%" y="645" width="0.0152%" height="15" fill="rgb(228,51,19)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="655.50"></text></g><g><title>do_execveat_common (23 samples, 0.02%)</title><rect x="44.1004%" y="629" width="0.0152%" height="15" fill="rgb(213,20,6)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="639.50"></text></g><g><title>[bash] (48 samples, 0.03%)</title><rect x="44.0859%" y="741" width="0.0318%" height="15" fill="rgb(212,124,10)" fg:x="66597" fg:w="48"/><text x="44.3359%" y="751.50"></text></g><g><title>exec_builtin (29 samples, 0.02%)</title><rect x="44.0984%" y="725" width="0.0192%" height="15" fill="rgb(248,3,40)" fg:x="66616" fg:w="29"/><text x="44.3484%" y="735.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="44.0859%" y="773" width="0.0371%" height="15" fill="rgb(223,178,23)" fg:x="66597" fg:w="56"/><text x="44.3359%" y="783.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="44.0859%" y="757" width="0.0371%" height="15" fill="rgb(240,132,45)" fg:x="66597" fg:w="56"/><text x="44.3359%" y="767.50"></text></g><g><title>execute_command (59 samples, 0.04%)</title><rect x="44.0845%" y="805" width="0.0391%" height="15" fill="rgb(245,164,36)" fg:x="66595" fg:w="59"/><text x="44.3345%" y="815.50"></text></g><g><title>execute_command_internal (59 samples, 0.04%)</title><rect x="44.0845%" y="789" width="0.0391%" height="15" fill="rgb(231,188,53)" fg:x="66595" fg:w="59"/><text x="44.3345%" y="799.50"></text></g><g><title>reader_loop (77 samples, 0.05%)</title><rect x="44.0845%" y="821" width="0.0510%" height="15" fill="rgb(237,198,39)" fg:x="66595" fg:w="77"/><text x="44.3345%" y="831.50"></text></g><g><title>read_command (18 samples, 0.01%)</title><rect x="44.1236%" y="805" width="0.0119%" height="15" fill="rgb(223,120,35)" fg:x="66654" fg:w="18"/><text x="44.3736%" y="815.50"></text></g><g><title>parse_command (18 samples, 0.01%)</title><rect x="44.1236%" y="789" width="0.0119%" height="15" fill="rgb(253,107,49)" fg:x="66654" fg:w="18"/><text x="44.3736%" y="799.50"></text></g><g><title>yyparse (18 samples, 0.01%)</title><rect x="44.1236%" y="773" width="0.0119%" height="15" fill="rgb(216,44,31)" fg:x="66654" fg:w="18"/><text x="44.3736%" y="783.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="44.1249%" y="757" width="0.0106%" height="15" fill="rgb(253,87,21)" fg:x="66656" fg:w="16"/><text x="44.3749%" y="767.50"></text></g><g><title>__libc_start_main (192 samples, 0.13%)</title><rect x="44.0137%" y="853" width="0.1271%" height="15" fill="rgb(226,18,2)" fg:x="66488" fg:w="192"/><text x="44.2637%" y="863.50"></text></g><g><title>main (192 samples, 0.13%)</title><rect x="44.0137%" y="837" width="0.1271%" height="15" fill="rgb(216,8,46)" fg:x="66488" fg:w="192"/><text x="44.2637%" y="847.50"></text></g><g><title>do_mmap (22 samples, 0.01%)</title><rect x="44.1547%" y="597" width="0.0146%" height="15" fill="rgb(226,140,39)" fg:x="66701" fg:w="22"/><text x="44.4047%" y="607.50"></text></g><g><title>mmap_region (22 samples, 0.01%)</title><rect x="44.1547%" y="581" width="0.0146%" height="15" fill="rgb(221,194,54)" fg:x="66701" fg:w="22"/><text x="44.4047%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (23 samples, 0.02%)</title><rect x="44.1547%" y="629" width="0.0152%" height="15" fill="rgb(213,92,11)" fg:x="66701" fg:w="23"/><text x="44.4047%" y="639.50"></text></g><g><title>vm_mmap_pgoff (23 samples, 0.02%)</title><rect x="44.1547%" y="613" width="0.0152%" height="15" fill="rgb(229,162,46)" fg:x="66701" fg:w="23"/><text x="44.4047%" y="623.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="44.1547%" y="645" width="0.0172%" height="15" fill="rgb(214,111,36)" fg:x="66701" fg:w="26"/><text x="44.4047%" y="655.50"></text></g><g><title>_dl_map_segments (32 samples, 0.02%)</title><rect x="44.1514%" y="709" width="0.0212%" height="15" fill="rgb(207,6,21)" fg:x="66696" fg:w="32"/><text x="44.4014%" y="719.50"></text></g><g><title>__mmap64 (27 samples, 0.02%)</title><rect x="44.1547%" y="693" width="0.0179%" height="15" fill="rgb(213,127,38)" fg:x="66701" fg:w="27"/><text x="44.4047%" y="703.50"></text></g><g><title>__mmap64 (27 samples, 0.02%)</title><rect x="44.1547%" y="677" width="0.0179%" height="15" fill="rgb(238,118,32)" fg:x="66701" fg:w="27"/><text x="44.4047%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="44.1547%" y="661" width="0.0179%" height="15" fill="rgb(240,139,39)" fg:x="66701" fg:w="27"/><text x="44.4047%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (38 samples, 0.03%)</title><rect x="44.1507%" y="725" width="0.0252%" height="15" fill="rgb(235,10,37)" fg:x="66695" fg:w="38"/><text x="44.4007%" y="735.50"></text></g><g><title>_dl_catch_exception (54 samples, 0.04%)</title><rect x="44.1441%" y="773" width="0.0357%" height="15" fill="rgb(249,171,38)" fg:x="66685" fg:w="54"/><text x="44.3941%" y="783.50"></text></g><g><title>openaux (54 samples, 0.04%)</title><rect x="44.1441%" y="757" width="0.0357%" height="15" fill="rgb(242,144,32)" fg:x="66685" fg:w="54"/><text x="44.3941%" y="767.50"></text></g><g><title>_dl_map_object (54 samples, 0.04%)</title><rect x="44.1441%" y="741" width="0.0357%" height="15" fill="rgb(217,117,21)" fg:x="66685" fg:w="54"/><text x="44.3941%" y="751.50"></text></g><g><title>_dl_map_object_deps (59 samples, 0.04%)</title><rect x="44.1441%" y="789" width="0.0391%" height="15" fill="rgb(249,87,1)" fg:x="66685" fg:w="59"/><text x="44.3941%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (20 samples, 0.01%)</title><rect x="44.1951%" y="741" width="0.0132%" height="15" fill="rgb(248,196,48)" fg:x="66762" fg:w="20"/><text x="44.4451%" y="751.50"></text></g><g><title>do_lookup_x (16 samples, 0.01%)</title><rect x="44.1977%" y="725" width="0.0106%" height="15" fill="rgb(251,206,33)" fg:x="66766" fg:w="16"/><text x="44.4477%" y="735.50"></text></g><g><title>elf_machine_rela (26 samples, 0.02%)</title><rect x="44.1918%" y="757" width="0.0172%" height="15" fill="rgb(232,141,28)" fg:x="66757" fg:w="26"/><text x="44.4418%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (36 samples, 0.02%)</title><rect x="44.1885%" y="773" width="0.0238%" height="15" fill="rgb(209,167,14)" fg:x="66752" fg:w="36"/><text x="44.4385%" y="783.50"></text></g><g><title>_dl_relocate_object (42 samples, 0.03%)</title><rect x="44.1858%" y="789" width="0.0278%" height="15" fill="rgb(225,11,50)" fg:x="66748" fg:w="42"/><text x="44.4358%" y="799.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="44.2189%" y="789" width="0.0119%" height="15" fill="rgb(209,50,20)" fg:x="66798" fg:w="18"/><text x="44.4689%" y="799.50"></text></g><g><title>[ld-2.31.so] (141 samples, 0.09%)</title><rect x="44.1408%" y="805" width="0.0933%" height="15" fill="rgb(212,17,46)" fg:x="66680" fg:w="141"/><text x="44.3908%" y="815.50"></text></g><g><title>_dl_start_final (144 samples, 0.10%)</title><rect x="44.1408%" y="837" width="0.0953%" height="15" fill="rgb(216,101,39)" fg:x="66680" fg:w="144"/><text x="44.3908%" y="847.50"></text></g><g><title>_dl_sysdep_start (144 samples, 0.10%)</title><rect x="44.1408%" y="821" width="0.0953%" height="15" fill="rgb(212,228,48)" fg:x="66680" fg:w="144"/><text x="44.3908%" y="831.50"></text></g><g><title>_start (337 samples, 0.22%)</title><rect x="44.0137%" y="869" width="0.2231%" height="15" fill="rgb(250,6,50)" fg:x="66488" fg:w="337"/><text x="44.2637%" y="879.50"></text></g><g><title>_dl_start (145 samples, 0.10%)</title><rect x="44.1408%" y="853" width="0.0960%" height="15" fill="rgb(250,160,48)" fg:x="66680" fg:w="145"/><text x="44.3908%" y="863.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="44.2368%" y="869" width="0.0106%" height="15" fill="rgb(244,216,33)" fg:x="66825" fg:w="16"/><text x="44.4868%" y="879.50"></text></g><g><title>__x64_sys_execve (16 samples, 0.01%)</title><rect x="44.2481%" y="837" width="0.0106%" height="15" fill="rgb(207,157,5)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="847.50"></text></g><g><title>do_execveat_common (16 samples, 0.01%)</title><rect x="44.2481%" y="821" width="0.0106%" height="15" fill="rgb(228,199,8)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="831.50"></text></g><g><title>bprm_execve (16 samples, 0.01%)</title><rect x="44.2481%" y="805" width="0.0106%" height="15" fill="rgb(227,80,20)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="815.50"></text></g><g><title>load_elf_binary (16 samples, 0.01%)</title><rect x="44.2481%" y="789" width="0.0106%" height="15" fill="rgb(222,9,33)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="44.2481%" y="869" width="0.0113%" height="15" fill="rgb(239,44,28)" fg:x="66842" fg:w="17"/><text x="44.4981%" y="879.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="44.2481%" y="853" width="0.0113%" height="15" fill="rgb(249,187,43)" fg:x="66842" fg:w="17"/><text x="44.4981%" y="863.50"></text></g><g><title>cc_wrapper.sh (400 samples, 0.26%)</title><rect x="43.9958%" y="885" width="0.2648%" height="15" fill="rgb(216,141,28)" fg:x="66461" fg:w="400"/><text x="44.2458%" y="895.50"></text></g><g><title>[[heap]] (151 samples, 0.10%)</title><rect x="44.2613%" y="869" width="0.1000%" height="15" fill="rgb(230,154,53)" fg:x="66862" fg:w="151"/><text x="44.5113%" y="879.50"></text></g><g><title>[[stack]] (94 samples, 0.06%)</title><rect x="44.3613%" y="869" width="0.0622%" height="15" fill="rgb(227,82,4)" fg:x="67013" fg:w="94"/><text x="44.6113%" y="879.50"></text></g><g><title>[anon] (28 samples, 0.02%)</title><rect x="44.4248%" y="869" width="0.0185%" height="15" fill="rgb(220,107,16)" fg:x="67109" fg:w="28"/><text x="44.6748%" y="879.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (18 samples, 0.01%)</title><rect x="44.4705%" y="677" width="0.0119%" height="15" fill="rgb(207,187,2)" fg:x="67178" fg:w="18"/><text x="44.7205%" y="687.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (21 samples, 0.01%)</title><rect x="44.4698%" y="757" width="0.0139%" height="15" fill="rgb(210,162,52)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (21 samples, 0.01%)</title><rect x="44.4698%" y="741" width="0.0139%" height="15" fill="rgb(217,216,49)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (21 samples, 0.01%)</title><rect x="44.4698%" y="725" width="0.0139%" height="15" fill="rgb(218,146,49)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (21 samples, 0.01%)</title><rect x="44.4698%" y="709" width="0.0139%" height="15" fill="rgb(216,55,40)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="719.50"></text></g><g><title>clang::Parser::ParseLinkage (20 samples, 0.01%)</title><rect x="44.4705%" y="693" width="0.0132%" height="15" fill="rgb(208,196,21)" fg:x="67178" fg:w="20"/><text x="44.7205%" y="703.50"></text></g><g><title>ExecuteCC1Tool (29 samples, 0.02%)</title><rect x="44.4658%" y="853" width="0.0192%" height="15" fill="rgb(242,117,42)" fg:x="67171" fg:w="29"/><text x="44.7158%" y="863.50"></text></g><g><title>cc1_main (29 samples, 0.02%)</title><rect x="44.4658%" y="837" width="0.0192%" height="15" fill="rgb(210,11,23)" fg:x="67171" fg:w="29"/><text x="44.7158%" y="847.50"></text></g><g><title>clang::ExecuteCompilerInvocation (28 samples, 0.02%)</title><rect x="44.4665%" y="821" width="0.0185%" height="15" fill="rgb(217,110,2)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="831.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (28 samples, 0.02%)</title><rect x="44.4665%" y="805" width="0.0185%" height="15" fill="rgb(229,77,54)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="815.50"></text></g><g><title>clang::FrontendAction::Execute (28 samples, 0.02%)</title><rect x="44.4665%" y="789" width="0.0185%" height="15" fill="rgb(218,53,16)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="799.50"></text></g><g><title>clang::ParseAST (28 samples, 0.02%)</title><rect x="44.4665%" y="773" width="0.0185%" height="15" fill="rgb(215,38,13)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="783.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (23 samples, 0.02%)</title><rect x="44.5128%" y="837" width="0.0152%" height="15" fill="rgb(235,42,18)" fg:x="67242" fg:w="23"/><text x="44.7628%" y="847.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (23 samples, 0.02%)</title><rect x="44.5128%" y="821" width="0.0152%" height="15" fill="rgb(219,66,54)" fg:x="67242" fg:w="23"/><text x="44.7628%" y="831.50"></text></g><g><title>llvm::TargetPassConfig::addISelPasses (16 samples, 0.01%)</title><rect x="44.5354%" y="725" width="0.0106%" height="15" fill="rgb(222,205,4)" fg:x="67276" fg:w="16"/><text x="44.7854%" y="735.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (20 samples, 0.01%)</title><rect x="44.5459%" y="725" width="0.0132%" height="15" fill="rgb(227,213,46)" fg:x="67292" fg:w="20"/><text x="44.7959%" y="735.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (56 samples, 0.04%)</title><rect x="44.5334%" y="741" width="0.0371%" height="15" fill="rgb(250,145,42)" fg:x="67273" fg:w="56"/><text x="44.7834%" y="751.50"></text></g><g><title>llvm::X86TargetMachine::createPassConfig (17 samples, 0.01%)</title><rect x="44.5592%" y="725" width="0.0113%" height="15" fill="rgb(219,15,2)" fg:x="67312" fg:w="17"/><text x="44.8092%" y="735.50"></text></g><g><title>llvm::TargetPassConfig::TargetPassConfig (17 samples, 0.01%)</title><rect x="44.5592%" y="709" width="0.0113%" height="15" fill="rgb(231,181,52)" fg:x="67312" fg:w="17"/><text x="44.8092%" y="719.50"></text></g><g><title>llvm::initializeCodeGen (17 samples, 0.01%)</title><rect x="44.5592%" y="693" width="0.0113%" height="15" fill="rgb(235,1,42)" fg:x="67312" fg:w="17"/><text x="44.8092%" y="703.50"></text></g><g><title>llvm::FPPassManager::runOnModule (20 samples, 0.01%)</title><rect x="44.5916%" y="725" width="0.0132%" height="15" fill="rgb(249,88,27)" fg:x="67361" fg:w="20"/><text x="44.8416%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (20 samples, 0.01%)</title><rect x="44.5916%" y="709" width="0.0132%" height="15" fill="rgb(235,145,16)" fg:x="67361" fg:w="20"/><text x="44.8416%" y="719.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (44 samples, 0.03%)</title><rect x="44.5784%" y="741" width="0.0291%" height="15" fill="rgb(237,114,19)" fg:x="67341" fg:w="44"/><text x="44.8284%" y="751.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (114 samples, 0.08%)</title><rect x="44.5327%" y="773" width="0.0755%" height="15" fill="rgb(238,51,50)" fg:x="67272" fg:w="114"/><text x="44.7827%" y="783.50"></text></g><g><title>clang::EmitBackendOutput (114 samples, 0.08%)</title><rect x="44.5327%" y="757" width="0.0755%" height="15" fill="rgb(205,194,25)" fg:x="67272" fg:w="114"/><text x="44.7827%" y="767.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (17 samples, 0.01%)</title><rect x="44.6161%" y="533" width="0.0113%" height="15" fill="rgb(215,203,17)" fg:x="67398" fg:w="17"/><text x="44.8661%" y="543.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (36 samples, 0.02%)</title><rect x="44.6141%" y="629" width="0.0238%" height="15" fill="rgb(233,112,49)" fg:x="67395" fg:w="36"/><text x="44.8641%" y="639.50"></text></g><g><title>clang::Preprocessor::Lex (36 samples, 0.02%)</title><rect x="44.6141%" y="613" width="0.0238%" height="15" fill="rgb(241,130,26)" fg:x="67395" fg:w="36"/><text x="44.8641%" y="623.50"></text></g><g><title>clang::Preprocessor::CachingLex (35 samples, 0.02%)</title><rect x="44.6148%" y="597" width="0.0232%" height="15" fill="rgb(252,223,19)" fg:x="67396" fg:w="35"/><text x="44.8648%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (35 samples, 0.02%)</title><rect x="44.6148%" y="581" width="0.0232%" height="15" fill="rgb(211,95,25)" fg:x="67396" fg:w="35"/><text x="44.8648%" y="591.50"></text></g><g><title>clang::Lexer::LexTokenInternal (35 samples, 0.02%)</title><rect x="44.6148%" y="565" width="0.0232%" height="15" fill="rgb(251,182,27)" fg:x="67396" fg:w="35"/><text x="44.8648%" y="575.50"></text></g><g><title>clang::Preprocessor::HandleDirective (33 samples, 0.02%)</title><rect x="44.6161%" y="549" width="0.0218%" height="15" fill="rgb(238,24,4)" fg:x="67398" fg:w="33"/><text x="44.8661%" y="559.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (16 samples, 0.01%)</title><rect x="44.6380%" y="629" width="0.0106%" height="15" fill="rgb(224,220,25)" fg:x="67431" fg:w="16"/><text x="44.8880%" y="639.50"></text></g><g><title>clang::Sema::ActOnDeclarator (16 samples, 0.01%)</title><rect x="44.6380%" y="613" width="0.0106%" height="15" fill="rgb(239,133,26)" fg:x="67431" fg:w="16"/><text x="44.8880%" y="623.50"></text></g><g><title>clang::Sema::HandleDeclarator (16 samples, 0.01%)</title><rect x="44.6380%" y="597" width="0.0106%" height="15" fill="rgb(211,94,48)" fg:x="67431" fg:w="16"/><text x="44.8880%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclGroup (58 samples, 0.04%)</title><rect x="44.6141%" y="645" width="0.0384%" height="15" fill="rgb(239,87,6)" fg:x="67395" fg:w="58"/><text x="44.8641%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclaration (74 samples, 0.05%)</title><rect x="44.6141%" y="677" width="0.0490%" height="15" fill="rgb(227,62,0)" fg:x="67395" fg:w="74"/><text x="44.8641%" y="687.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (74 samples, 0.05%)</title><rect x="44.6141%" y="661" width="0.0490%" height="15" fill="rgb(211,226,4)" fg:x="67395" fg:w="74"/><text x="44.8641%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (16 samples, 0.01%)</title><rect x="44.6525%" y="645" width="0.0106%" height="15" fill="rgb(253,38,52)" fg:x="67453" fg:w="16"/><text x="44.9025%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (17 samples, 0.01%)</title><rect x="44.6764%" y="629" width="0.0113%" height="15" fill="rgb(229,126,40)" fg:x="67489" fg:w="17"/><text x="44.9264%" y="639.50"></text></g><g><title>clang::Sema::ActOnDeclarator (17 samples, 0.01%)</title><rect x="44.6764%" y="613" width="0.0113%" height="15" fill="rgb(229,165,44)" fg:x="67489" fg:w="17"/><text x="44.9264%" y="623.50"></text></g><g><title>clang::Sema::HandleDeclarator (17 samples, 0.01%)</title><rect x="44.6764%" y="597" width="0.0113%" height="15" fill="rgb(247,95,47)" fg:x="67489" fg:w="17"/><text x="44.9264%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (22 samples, 0.01%)</title><rect x="44.6876%" y="629" width="0.0146%" height="15" fill="rgb(216,140,30)" fg:x="67506" fg:w="22"/><text x="44.9376%" y="639.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (20 samples, 0.01%)</title><rect x="44.6889%" y="613" width="0.0132%" height="15" fill="rgb(246,214,8)" fg:x="67508" fg:w="20"/><text x="44.9389%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclGroup (62 samples, 0.04%)</title><rect x="44.6631%" y="645" width="0.0410%" height="15" fill="rgb(227,224,15)" fg:x="67469" fg:w="62"/><text x="44.9131%" y="655.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (149 samples, 0.10%)</title><rect x="44.6141%" y="693" width="0.0986%" height="15" fill="rgb(233,175,4)" fg:x="67395" fg:w="149"/><text x="44.8641%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (75 samples, 0.05%)</title><rect x="44.6631%" y="677" width="0.0496%" height="15" fill="rgb(221,66,45)" fg:x="67469" fg:w="75"/><text x="44.9131%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (75 samples, 0.05%)</title><rect x="44.6631%" y="661" width="0.0496%" height="15" fill="rgb(221,178,18)" fg:x="67469" fg:w="75"/><text x="44.9131%" y="671.50"></text></g><g><title>cc1_main (303 samples, 0.20%)</title><rect x="44.5128%" y="853" width="0.2006%" height="15" fill="rgb(213,81,29)" fg:x="67242" fg:w="303"/><text x="44.7628%" y="863.50"></text></g><g><title>clang::ExecuteCompilerInvocation (280 samples, 0.19%)</title><rect x="44.5281%" y="837" width="0.1854%" height="15" fill="rgb(220,89,49)" fg:x="67265" fg:w="280"/><text x="44.7781%" y="847.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (280 samples, 0.19%)</title><rect x="44.5281%" y="821" width="0.1854%" height="15" fill="rgb(227,60,33)" fg:x="67265" fg:w="280"/><text x="44.7781%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (278 samples, 0.18%)</title><rect x="44.5294%" y="805" width="0.1840%" height="15" fill="rgb(205,113,12)" fg:x="67267" fg:w="278"/><text x="44.7794%" y="815.50"></text></g><g><title>clang::ParseAST (278 samples, 0.18%)</title><rect x="44.5294%" y="789" width="0.1840%" height="15" fill="rgb(211,32,1)" fg:x="67267" fg:w="278"/><text x="44.7794%" y="799.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (154 samples, 0.10%)</title><rect x="44.6115%" y="773" width="0.1019%" height="15" fill="rgb(246,2,12)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="783.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (154 samples, 0.10%)</title><rect x="44.6115%" y="757" width="0.1019%" height="15" fill="rgb(243,37,27)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (154 samples, 0.10%)</title><rect x="44.6115%" y="741" width="0.1019%" height="15" fill="rgb(248,211,31)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (154 samples, 0.10%)</title><rect x="44.6115%" y="725" width="0.1019%" height="15" fill="rgb(242,146,47)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="735.50"></text></g><g><title>clang::Parser::ParseLinkage (150 samples, 0.10%)</title><rect x="44.6141%" y="709" width="0.0993%" height="15" fill="rgb(206,70,20)" fg:x="67395" fg:w="150"/><text x="44.8641%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (23 samples, 0.02%)</title><rect x="44.7313%" y="773" width="0.0152%" height="15" fill="rgb(215,10,51)" fg:x="67572" fg:w="23"/><text x="44.9813%" y="783.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (23 samples, 0.02%)</title><rect x="44.7313%" y="757" width="0.0152%" height="15" fill="rgb(243,178,53)" fg:x="67572" fg:w="23"/><text x="44.9813%" y="767.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (22 samples, 0.01%)</title><rect x="44.7320%" y="741" width="0.0146%" height="15" fill="rgb(233,221,20)" fg:x="67573" fg:w="22"/><text x="44.9820%" y="751.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (46 samples, 0.03%)</title><rect x="44.7167%" y="853" width="0.0305%" height="15" fill="rgb(218,95,35)" fg:x="67550" fg:w="46"/><text x="44.9667%" y="863.50"></text></g><g><title>clang::EmitBackendOutput (40 samples, 0.03%)</title><rect x="44.7207%" y="837" width="0.0265%" height="15" fill="rgb(229,13,5)" fg:x="67556" fg:w="40"/><text x="44.9707%" y="847.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (40 samples, 0.03%)</title><rect x="44.7207%" y="821" width="0.0265%" height="15" fill="rgb(252,164,30)" fg:x="67556" fg:w="40"/><text x="44.9707%" y="831.50"></text></g><g><title>llvm::FPPassManager::runOnModule (32 samples, 0.02%)</title><rect x="44.7260%" y="805" width="0.0212%" height="15" fill="rgb(232,68,36)" fg:x="67564" fg:w="32"/><text x="44.9760%" y="815.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (32 samples, 0.02%)</title><rect x="44.7260%" y="789" width="0.0212%" height="15" fill="rgb(219,59,54)" fg:x="67564" fg:w="32"/><text x="44.9760%" y="799.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (28 samples, 0.02%)</title><rect x="44.7644%" y="709" width="0.0185%" height="15" fill="rgb(250,92,33)" fg:x="67622" fg:w="28"/><text x="45.0144%" y="719.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (27 samples, 0.02%)</title><rect x="44.7651%" y="693" width="0.0179%" height="15" fill="rgb(229,162,54)" fg:x="67623" fg:w="27"/><text x="45.0151%" y="703.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (29 samples, 0.02%)</title><rect x="44.7644%" y="805" width="0.0192%" height="15" fill="rgb(244,114,52)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="815.50"></text></g><g><title>clang::EmitBackendOutput (29 samples, 0.02%)</title><rect x="44.7644%" y="789" width="0.0192%" height="15" fill="rgb(212,211,43)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="799.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (29 samples, 0.02%)</title><rect x="44.7644%" y="773" width="0.0192%" height="15" fill="rgb(226,147,8)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnModule (29 samples, 0.02%)</title><rect x="44.7644%" y="757" width="0.0192%" height="15" fill="rgb(226,23,13)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="767.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (29 samples, 0.02%)</title><rect x="44.7644%" y="741" width="0.0192%" height="15" fill="rgb(240,63,4)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="751.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (29 samples, 0.02%)</title><rect x="44.7644%" y="725" width="0.0192%" height="15" fill="rgb(221,1,32)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="735.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (36 samples, 0.02%)</title><rect x="44.7644%" y="853" width="0.0238%" height="15" fill="rgb(242,117,10)" fg:x="67622" fg:w="36"/><text x="45.0144%" y="863.50"></text></g><g><title>clang::FrontendAction::Execute (36 samples, 0.02%)</title><rect x="44.7644%" y="837" width="0.0238%" height="15" fill="rgb(249,172,44)" fg:x="67622" fg:w="36"/><text x="45.0144%" y="847.50"></text></g><g><title>clang::ParseAST (36 samples, 0.02%)</title><rect x="44.7644%" y="821" width="0.0238%" height="15" fill="rgb(244,46,45)" fg:x="67622" fg:w="36"/><text x="45.0144%" y="831.50"></text></g><g><title>__GI___readlink (21 samples, 0.01%)</title><rect x="44.7995%" y="741" width="0.0139%" height="15" fill="rgb(206,43,17)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="44.7995%" y="725" width="0.0139%" height="15" fill="rgb(239,218,39)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="735.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="44.7995%" y="709" width="0.0139%" height="15" fill="rgb(208,169,54)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="719.50"></text></g><g><title>__x64_sys_readlink (21 samples, 0.01%)</title><rect x="44.7995%" y="693" width="0.0139%" height="15" fill="rgb(247,25,42)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="703.50"></text></g><g><title>do_readlinkat (21 samples, 0.01%)</title><rect x="44.7995%" y="677" width="0.0139%" height="15" fill="rgb(226,23,31)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="687.50"></text></g><g><title>do_filp_open (35 samples, 0.02%)</title><rect x="44.8160%" y="645" width="0.0232%" height="15" fill="rgb(247,16,28)" fg:x="67700" fg:w="35"/><text x="45.0660%" y="655.50"></text></g><g><title>path_openat (35 samples, 0.02%)</title><rect x="44.8160%" y="629" width="0.0232%" height="15" fill="rgb(231,147,38)" fg:x="67700" fg:w="35"/><text x="45.0660%" y="639.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="44.8154%" y="693" width="0.0258%" height="15" fill="rgb(253,81,48)" fg:x="67699" fg:w="39"/><text x="45.0654%" y="703.50"></text></g><g><title>__x64_sys_openat (39 samples, 0.03%)</title><rect x="44.8154%" y="677" width="0.0258%" height="15" fill="rgb(249,222,43)" fg:x="67699" fg:w="39"/><text x="45.0654%" y="687.50"></text></g><g><title>do_sys_openat2 (39 samples, 0.03%)</title><rect x="44.8154%" y="661" width="0.0258%" height="15" fill="rgb(221,3,27)" fg:x="67699" fg:w="39"/><text x="45.0654%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.03%)</title><rect x="44.8154%" y="709" width="0.0265%" height="15" fill="rgb(228,180,5)" fg:x="67699" fg:w="40"/><text x="45.0654%" y="719.50"></text></g><g><title>__libc_open64 (41 samples, 0.03%)</title><rect x="44.8154%" y="725" width="0.0271%" height="15" fill="rgb(227,131,42)" fg:x="67699" fg:w="41"/><text x="45.0654%" y="735.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (66 samples, 0.04%)</title><rect x="44.7995%" y="853" width="0.0437%" height="15" fill="rgb(212,3,39)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="863.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (66 samples, 0.04%)</title><rect x="44.7995%" y="837" width="0.0437%" height="15" fill="rgb(226,45,5)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="847.50"></text></g><g><title>clang::FileManager::getFileRef (66 samples, 0.04%)</title><rect x="44.7995%" y="821" width="0.0437%" height="15" fill="rgb(215,167,45)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="831.50"></text></g><g><title>clang::FileManager::getStatValue (66 samples, 0.04%)</title><rect x="44.7995%" y="805" width="0.0437%" height="15" fill="rgb(250,218,53)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="815.50"></text></g><g><title>clang::FileSystemStatCache::get (66 samples, 0.04%)</title><rect x="44.7995%" y="789" width="0.0437%" height="15" fill="rgb(207,140,0)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="799.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (66 samples, 0.04%)</title><rect x="44.7995%" y="773" width="0.0437%" height="15" fill="rgb(238,133,51)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="783.50"></text></g><g><title>llvm::sys::fs::openFileForRead (66 samples, 0.04%)</title><rect x="44.7995%" y="757" width="0.0437%" height="15" fill="rgb(218,203,53)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="767.50"></text></g><g><title>llvm::sys::fs::openFile (42 samples, 0.03%)</title><rect x="44.8154%" y="741" width="0.0278%" height="15" fill="rgb(226,184,25)" fg:x="67699" fg:w="42"/><text x="45.0654%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (16 samples, 0.01%)</title><rect x="44.8432%" y="853" width="0.0106%" height="15" fill="rgb(231,121,21)" fg:x="67741" fg:w="16"/><text x="45.0932%" y="863.50"></text></g><g><title>llvm::TargetLoweringBase::computeRegisterProperties (17 samples, 0.01%)</title><rect x="44.8630%" y="693" width="0.0113%" height="15" fill="rgb(251,14,34)" fg:x="67771" fg:w="17"/><text x="45.1130%" y="703.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (25 samples, 0.02%)</title><rect x="44.8584%" y="821" width="0.0165%" height="15" fill="rgb(249,193,11)" fg:x="67764" fg:w="25"/><text x="45.1084%" y="831.50"></text></g><g><title>clang::EmitBackendOutput (25 samples, 0.02%)</title><rect x="44.8584%" y="805" width="0.0165%" height="15" fill="rgb(220,172,37)" fg:x="67764" fg:w="25"/><text x="45.1084%" y="815.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (25 samples, 0.02%)</title><rect x="44.8584%" y="789" width="0.0165%" height="15" fill="rgb(231,229,43)" fg:x="67764" fg:w="25"/><text x="45.1084%" y="799.50"></text></g><g><title>llvm::FPPassManager::runOnModule (23 samples, 0.02%)</title><rect x="44.8597%" y="773" width="0.0152%" height="15" fill="rgb(250,161,5)" fg:x="67766" fg:w="23"/><text x="45.1097%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (23 samples, 0.02%)</title><rect x="44.8597%" y="757" width="0.0152%" height="15" fill="rgb(218,225,18)" fg:x="67766" fg:w="23"/><text x="45.1097%" y="767.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (20 samples, 0.01%)</title><rect x="44.8617%" y="741" width="0.0132%" height="15" fill="rgb(245,45,42)" fg:x="67769" fg:w="20"/><text x="45.1117%" y="751.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (20 samples, 0.01%)</title><rect x="44.8617%" y="725" width="0.0132%" height="15" fill="rgb(211,115,1)" fg:x="67769" fg:w="20"/><text x="45.1117%" y="735.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (18 samples, 0.01%)</title><rect x="44.8630%" y="709" width="0.0119%" height="15" fill="rgb(248,133,52)" fg:x="67771" fg:w="18"/><text x="45.1130%" y="719.50"></text></g><g><title>clang::FrontendAction::Execute (29 samples, 0.02%)</title><rect x="44.8584%" y="853" width="0.0192%" height="15" fill="rgb(238,100,21)" fg:x="67764" fg:w="29"/><text x="45.1084%" y="863.50"></text></g><g><title>clang::ParseAST (29 samples, 0.02%)</title><rect x="44.8584%" y="837" width="0.0192%" height="15" fill="rgb(247,144,11)" fg:x="67764" fg:w="29"/><text x="45.1084%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (46 samples, 0.03%)</title><rect x="44.9200%" y="837" width="0.0305%" height="15" fill="rgb(206,164,16)" fg:x="67857" fg:w="46"/><text x="45.1700%" y="847.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (33 samples, 0.02%)</title><rect x="44.9286%" y="821" width="0.0218%" height="15" fill="rgb(222,34,3)" fg:x="67870" fg:w="33"/><text x="45.1786%" y="831.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (33 samples, 0.02%)</title><rect x="44.9286%" y="805" width="0.0218%" height="15" fill="rgb(248,82,4)" fg:x="67870" fg:w="33"/><text x="45.1786%" y="815.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (33 samples, 0.02%)</title><rect x="44.9286%" y="789" width="0.0218%" height="15" fill="rgb(228,81,46)" fg:x="67870" fg:w="33"/><text x="45.1786%" y="799.50"></text></g><g><title>clang::Sema::ActOnParamDeclarator (20 samples, 0.01%)</title><rect x="44.9372%" y="773" width="0.0132%" height="15" fill="rgb(227,67,47)" fg:x="67883" fg:w="20"/><text x="45.1872%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (61 samples, 0.04%)</title><rect x="44.9114%" y="853" width="0.0404%" height="15" fill="rgb(215,93,53)" fg:x="67844" fg:w="61"/><text x="45.1614%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (21 samples, 0.01%)</title><rect x="44.9603%" y="805" width="0.0139%" height="15" fill="rgb(248,194,39)" fg:x="67918" fg:w="21"/><text x="45.2103%" y="815.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (19 samples, 0.01%)</title><rect x="44.9617%" y="789" width="0.0126%" height="15" fill="rgb(215,5,19)" fg:x="67920" fg:w="19"/><text x="45.2117%" y="799.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (19 samples, 0.01%)</title><rect x="44.9617%" y="773" width="0.0126%" height="15" fill="rgb(226,215,51)" fg:x="67920" fg:w="19"/><text x="45.2117%" y="783.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (19 samples, 0.01%)</title><rect x="44.9617%" y="757" width="0.0126%" height="15" fill="rgb(225,56,26)" fg:x="67920" fg:w="19"/><text x="45.2117%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclGroup (26 samples, 0.02%)</title><rect x="44.9577%" y="821" width="0.0172%" height="15" fill="rgb(222,75,29)" fg:x="67914" fg:w="26"/><text x="45.2077%" y="831.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (18 samples, 0.01%)</title><rect x="44.9795%" y="693" width="0.0119%" height="15" fill="rgb(236,139,6)" fg:x="67947" fg:w="18"/><text x="45.2295%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (33 samples, 0.02%)</title><rect x="44.9795%" y="741" width="0.0218%" height="15" fill="rgb(223,137,36)" fg:x="67947" fg:w="33"/><text x="45.2295%" y="751.50"></text></g><g><title>clang::Sema::ActOnDeclarator (33 samples, 0.02%)</title><rect x="44.9795%" y="725" width="0.0218%" height="15" fill="rgb(226,99,2)" fg:x="67947" fg:w="33"/><text x="45.2295%" y="735.50"></text></g><g><title>clang::Sema::HandleDeclarator (33 samples, 0.02%)</title><rect x="44.9795%" y="709" width="0.0218%" height="15" fill="rgb(206,133,23)" fg:x="67947" fg:w="33"/><text x="45.2295%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (68 samples, 0.05%)</title><rect x="44.9577%" y="853" width="0.0450%" height="15" fill="rgb(243,173,15)" fg:x="67914" fg:w="68"/><text x="45.2077%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (68 samples, 0.05%)</title><rect x="44.9577%" y="837" width="0.0450%" height="15" fill="rgb(228,69,28)" fg:x="67914" fg:w="68"/><text x="45.2077%" y="847.50"></text></g><g><title>clang::Parser::ParseLinkage (41 samples, 0.03%)</title><rect x="44.9756%" y="821" width="0.0271%" height="15" fill="rgb(212,51,22)" fg:x="67941" fg:w="41"/><text x="45.2256%" y="831.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.03%)</title><rect x="44.9756%" y="805" width="0.0271%" height="15" fill="rgb(227,113,0)" fg:x="67941" fg:w="41"/><text x="45.2256%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (36 samples, 0.02%)</title><rect x="44.9789%" y="789" width="0.0238%" height="15" fill="rgb(252,84,27)" fg:x="67946" fg:w="36"/><text x="45.2289%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (36 samples, 0.02%)</title><rect x="44.9789%" y="773" width="0.0238%" height="15" fill="rgb(223,145,39)" fg:x="67946" fg:w="36"/><text x="45.2289%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (36 samples, 0.02%)</title><rect x="44.9789%" y="757" width="0.0238%" height="15" fill="rgb(239,219,30)" fg:x="67946" fg:w="36"/><text x="45.2289%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (20 samples, 0.01%)</title><rect x="45.0153%" y="853" width="0.0132%" height="15" fill="rgb(224,196,39)" fg:x="68001" fg:w="20"/><text x="45.2653%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (18 samples, 0.01%)</title><rect x="45.0166%" y="837" width="0.0119%" height="15" fill="rgb(205,35,43)" fg:x="68003" fg:w="18"/><text x="45.2666%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (18 samples, 0.01%)</title><rect x="45.0166%" y="821" width="0.0119%" height="15" fill="rgb(228,201,21)" fg:x="68003" fg:w="18"/><text x="45.2666%" y="831.50"></text></g><g><title>clang::Parser::ParseLinkage (20 samples, 0.01%)</title><rect x="45.0292%" y="853" width="0.0132%" height="15" fill="rgb(237,118,16)" fg:x="68022" fg:w="20"/><text x="45.2792%" y="863.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (20 samples, 0.01%)</title><rect x="45.0292%" y="837" width="0.0132%" height="15" fill="rgb(241,17,19)" fg:x="68022" fg:w="20"/><text x="45.2792%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (16 samples, 0.01%)</title><rect x="45.0318%" y="821" width="0.0106%" height="15" fill="rgb(214,10,25)" fg:x="68026" fg:w="16"/><text x="45.2818%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (16 samples, 0.01%)</title><rect x="45.0318%" y="805" width="0.0106%" height="15" fill="rgb(238,37,29)" fg:x="68026" fg:w="16"/><text x="45.2818%" y="815.50"></text></g><g><title>clang::FileManager::getStatValue (16 samples, 0.01%)</title><rect x="45.0663%" y="725" width="0.0106%" height="15" fill="rgb(253,83,25)" fg:x="68078" fg:w="16"/><text x="45.3163%" y="735.50"></text></g><g><title>clang::FileSystemStatCache::get (16 samples, 0.01%)</title><rect x="45.0663%" y="709" width="0.0106%" height="15" fill="rgb(234,192,12)" fg:x="68078" fg:w="16"/><text x="45.3163%" y="719.50"></text></g><g><title>clang::FileManager::getDirectoryRef (22 samples, 0.01%)</title><rect x="45.0663%" y="741" width="0.0146%" height="15" fill="rgb(241,216,45)" fg:x="68078" fg:w="22"/><text x="45.3163%" y="751.50"></text></g><g><title>clang::FileManager::getFileRef (48 samples, 0.03%)</title><rect x="45.0623%" y="757" width="0.0318%" height="15" fill="rgb(242,22,33)" fg:x="68072" fg:w="48"/><text x="45.3123%" y="767.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (50 samples, 0.03%)</title><rect x="45.0616%" y="853" width="0.0331%" height="15" fill="rgb(231,105,49)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="863.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (50 samples, 0.03%)</title><rect x="45.0616%" y="837" width="0.0331%" height="15" fill="rgb(218,204,15)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="847.50"></text></g><g><title>clang::Preprocessor::LookupFile (50 samples, 0.03%)</title><rect x="45.0616%" y="821" width="0.0331%" height="15" fill="rgb(235,138,41)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="831.50"></text></g><g><title>clang::HeaderSearch::LookupFile (50 samples, 0.03%)</title><rect x="45.0616%" y="805" width="0.0331%" height="15" fill="rgb(246,0,9)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="815.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (50 samples, 0.03%)</title><rect x="45.0616%" y="789" width="0.0331%" height="15" fill="rgb(210,74,4)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="799.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (49 samples, 0.03%)</title><rect x="45.0623%" y="773" width="0.0324%" height="15" fill="rgb(250,60,41)" fg:x="68072" fg:w="49"/><text x="45.3123%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclaration (17 samples, 0.01%)</title><rect x="45.1331%" y="613" width="0.0113%" height="15" fill="rgb(220,115,12)" fg:x="68179" fg:w="17"/><text x="45.3831%" y="623.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (17 samples, 0.01%)</title><rect x="45.1331%" y="597" width="0.0113%" height="15" fill="rgb(237,100,13)" fg:x="68179" fg:w="17"/><text x="45.3831%" y="607.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (41 samples, 0.03%)</title><rect x="45.1292%" y="709" width="0.0271%" height="15" fill="rgb(213,55,26)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="719.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.03%)</title><rect x="45.1292%" y="693" width="0.0271%" height="15" fill="rgb(216,17,4)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (41 samples, 0.03%)</title><rect x="45.1292%" y="677" width="0.0271%" height="15" fill="rgb(220,153,47)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (41 samples, 0.03%)</title><rect x="45.1292%" y="661" width="0.0271%" height="15" fill="rgb(215,131,9)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="671.50"></text></g><g><title>clang::Parser::ParseLinkage (35 samples, 0.02%)</title><rect x="45.1331%" y="645" width="0.0232%" height="15" fill="rgb(233,46,42)" fg:x="68179" fg:w="35"/><text x="45.3831%" y="655.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (35 samples, 0.02%)</title><rect x="45.1331%" y="629" width="0.0232%" height="15" fill="rgb(226,86,7)" fg:x="68179" fg:w="35"/><text x="45.3831%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (18 samples, 0.01%)</title><rect x="45.1444%" y="613" width="0.0119%" height="15" fill="rgb(239,226,21)" fg:x="68196" fg:w="18"/><text x="45.3944%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (18 samples, 0.01%)</title><rect x="45.1444%" y="597" width="0.0119%" height="15" fill="rgb(244,137,22)" fg:x="68196" fg:w="18"/><text x="45.3944%" y="607.50"></text></g><g><title>clang::driver::CC1Command::Execute (83 samples, 0.05%)</title><rect x="45.1146%" y="853" width="0.0549%" height="15" fill="rgb(211,139,35)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="863.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (83 samples, 0.05%)</title><rect x="45.1146%" y="837" width="0.0549%" height="15" fill="rgb(214,62,50)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="847.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (83 samples, 0.05%)</title><rect x="45.1146%" y="821" width="0.0549%" height="15" fill="rgb(212,113,44)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="831.50"></text></g><g><title>ExecuteCC1Tool (83 samples, 0.05%)</title><rect x="45.1146%" y="805" width="0.0549%" height="15" fill="rgb(226,150,43)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="815.50"></text></g><g><title>cc1_main (83 samples, 0.05%)</title><rect x="45.1146%" y="789" width="0.0549%" height="15" fill="rgb(250,71,37)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="799.50"></text></g><g><title>clang::ExecuteCompilerInvocation (79 samples, 0.05%)</title><rect x="45.1172%" y="773" width="0.0523%" height="15" fill="rgb(219,76,19)" fg:x="68155" fg:w="79"/><text x="45.3672%" y="783.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (79 samples, 0.05%)</title><rect x="45.1172%" y="757" width="0.0523%" height="15" fill="rgb(250,39,11)" fg:x="68155" fg:w="79"/><text x="45.3672%" y="767.50"></text></g><g><title>clang::FrontendAction::Execute (69 samples, 0.05%)</title><rect x="45.1239%" y="741" width="0.0457%" height="15" fill="rgb(230,64,31)" fg:x="68165" fg:w="69"/><text x="45.3739%" y="751.50"></text></g><g><title>clang::ParseAST (69 samples, 0.05%)</title><rect x="45.1239%" y="725" width="0.0457%" height="15" fill="rgb(208,222,23)" fg:x="68165" fg:w="69"/><text x="45.3739%" y="735.50"></text></g><g><title>clang::Preprocessor::Lex (20 samples, 0.01%)</title><rect x="45.1563%" y="709" width="0.0132%" height="15" fill="rgb(227,125,18)" fg:x="68214" fg:w="20"/><text x="45.4063%" y="719.50"></text></g><g><title>clang::Lexer::LexTokenInternal (20 samples, 0.01%)</title><rect x="45.1563%" y="693" width="0.0132%" height="15" fill="rgb(234,210,9)" fg:x="68214" fg:w="20"/><text x="45.4063%" y="703.50"></text></g><g><title>clang::Preprocessor::HandleDirective (20 samples, 0.01%)</title><rect x="45.1563%" y="677" width="0.0132%" height="15" fill="rgb(217,127,24)" fg:x="68214" fg:w="20"/><text x="45.4063%" y="687.50"></text></g><g><title>clang::Preprocessor::HandleIncludeDirective (16 samples, 0.01%)</title><rect x="45.1589%" y="661" width="0.0106%" height="15" fill="rgb(239,141,48)" fg:x="68218" fg:w="16"/><text x="45.4089%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (16 samples, 0.01%)</title><rect x="45.1589%" y="645" width="0.0106%" height="15" fill="rgb(227,109,8)" fg:x="68218" fg:w="16"/><text x="45.4089%" y="655.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (17 samples, 0.01%)</title><rect x="45.1748%" y="853" width="0.0113%" height="15" fill="rgb(235,184,23)" fg:x="68242" fg:w="17"/><text x="45.4248%" y="863.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (23 samples, 0.02%)</title><rect x="45.2490%" y="773" width="0.0152%" height="15" fill="rgb(227,226,48)" fg:x="68354" fg:w="23"/><text x="45.4990%" y="783.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (19 samples, 0.01%)</title><rect x="45.2649%" y="757" width="0.0126%" height="15" fill="rgb(206,150,11)" fg:x="68378" fg:w="19"/><text x="45.5149%" y="767.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (19 samples, 0.01%)</title><rect x="45.2649%" y="741" width="0.0126%" height="15" fill="rgb(254,2,33)" fg:x="68378" fg:w="19"/><text x="45.5149%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobs (59 samples, 0.04%)</title><rect x="45.2443%" y="821" width="0.0391%" height="15" fill="rgb(243,160,20)" fg:x="68347" fg:w="59"/><text x="45.4943%" y="831.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (59 samples, 0.04%)</title><rect x="45.2443%" y="805" width="0.0391%" height="15" fill="rgb(218,208,30)" fg:x="68347" fg:w="59"/><text x="45.4943%" y="815.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (59 samples, 0.04%)</title><rect x="45.2443%" y="789" width="0.0391%" height="15" fill="rgb(224,120,49)" fg:x="68347" fg:w="59"/><text x="45.4943%" y="799.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (29 samples, 0.02%)</title><rect x="45.2642%" y="773" width="0.0192%" height="15" fill="rgb(246,12,2)" fg:x="68377" fg:w="29"/><text x="45.5142%" y="783.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (16 samples, 0.01%)</title><rect x="45.2960%" y="757" width="0.0106%" height="15" fill="rgb(236,117,3)" fg:x="68425" fg:w="16"/><text x="45.5460%" y="767.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (37 samples, 0.02%)</title><rect x="45.2854%" y="773" width="0.0245%" height="15" fill="rgb(216,128,52)" fg:x="68409" fg:w="37"/><text x="45.5354%" y="783.50"></text></g><g><title>__do_sys_newstat (16 samples, 0.01%)</title><rect x="45.3112%" y="693" width="0.0106%" height="15" fill="rgb(246,145,19)" fg:x="68448" fg:w="16"/><text x="45.5612%" y="703.50"></text></g><g><title>vfs_statx (16 samples, 0.01%)</title><rect x="45.3112%" y="677" width="0.0106%" height="15" fill="rgb(222,11,46)" fg:x="68448" fg:w="16"/><text x="45.5612%" y="687.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="45.3112%" y="709" width="0.0113%" height="15" fill="rgb(245,82,36)" fg:x="68448" fg:w="17"/><text x="45.5612%" y="719.50"></text></g><g><title>llvm::vfs::FileSystem::exists (18 samples, 0.01%)</title><rect x="45.3112%" y="773" width="0.0119%" height="15" fill="rgb(250,73,51)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="783.50"></text></g><g><title>llvm::sys::fs::status (18 samples, 0.01%)</title><rect x="45.3112%" y="757" width="0.0119%" height="15" fill="rgb(221,189,23)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="767.50"></text></g><g><title>__GI___xstat (18 samples, 0.01%)</title><rect x="45.3112%" y="741" width="0.0119%" height="15" fill="rgb(210,33,7)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="45.3112%" y="725" width="0.0119%" height="15" fill="rgb(210,107,22)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="735.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (59 samples, 0.04%)</title><rect x="45.2847%" y="789" width="0.0391%" height="15" fill="rgb(222,116,37)" fg:x="68408" fg:w="59"/><text x="45.5347%" y="799.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (16 samples, 0.01%)</title><rect x="45.3238%" y="773" width="0.0106%" height="15" fill="rgb(254,17,48)" fg:x="68467" fg:w="16"/><text x="45.5738%" y="783.50"></text></g><g><title>clang::driver::RocmInstallationDetector::getInstallationPathCandidates (18 samples, 0.01%)</title><rect x="45.3344%" y="741" width="0.0119%" height="15" fill="rgb(224,36,32)" fg:x="68483" fg:w="18"/><text x="45.5844%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (28 samples, 0.02%)</title><rect x="45.3344%" y="773" width="0.0185%" height="15" fill="rgb(232,90,46)" fg:x="68483" fg:w="28"/><text x="45.5844%" y="783.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (28 samples, 0.02%)</title><rect x="45.3344%" y="757" width="0.0185%" height="15" fill="rgb(241,66,40)" fg:x="68483" fg:w="28"/><text x="45.5844%" y="767.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (167 samples, 0.11%)</title><rect x="45.2443%" y="837" width="0.1106%" height="15" fill="rgb(249,184,29)" fg:x="68347" fg:w="167"/><text x="45.4943%" y="847.50"></text></g><g><title>clang::driver::Driver::getToolChain (108 samples, 0.07%)</title><rect x="45.2834%" y="821" width="0.0715%" height="15" fill="rgb(231,181,1)" fg:x="68406" fg:w="108"/><text x="45.5334%" y="831.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (108 samples, 0.07%)</title><rect x="45.2834%" y="805" width="0.0715%" height="15" fill="rgb(224,94,2)" fg:x="68406" fg:w="108"/><text x="45.5334%" y="815.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (47 samples, 0.03%)</title><rect x="45.3238%" y="789" width="0.0311%" height="15" fill="rgb(229,170,15)" fg:x="68467" fg:w="47"/><text x="45.5738%" y="799.50"></text></g><g><title>clang::Builtin::Context::builtinIsSupported (21 samples, 0.01%)</title><rect x="45.3787%" y="645" width="0.0139%" height="15" fill="rgb(240,127,35)" fg:x="68550" fg:w="21"/><text x="45.6287%" y="655.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (19 samples, 0.01%)</title><rect x="45.4025%" y="613" width="0.0126%" height="15" fill="rgb(248,196,34)" fg:x="68586" fg:w="19"/><text x="45.6525%" y="623.50"></text></g><g><title>llvm::StringMap<clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl<llvm::MallocAllocator, 4096ul, 4096ul, 128ul> >::try_emplace<clang::IdentifierInfo*> (31 samples, 0.02%)</title><rect x="45.3953%" y="629" width="0.0205%" height="15" fill="rgb(236,137,7)" fg:x="68575" fg:w="31"/><text x="45.6453%" y="639.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (66 samples, 0.04%)</title><rect x="45.3761%" y="661" width="0.0437%" height="15" fill="rgb(235,127,16)" fg:x="68546" fg:w="66"/><text x="45.6261%" y="671.50"></text></g><g><title>clang::IdentifierTable::get (41 samples, 0.03%)</title><rect x="45.3926%" y="645" width="0.0271%" height="15" fill="rgb(250,192,54)" fg:x="68571" fg:w="41"/><text x="45.6426%" y="655.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (42 samples, 0.03%)</title><rect x="45.4237%" y="661" width="0.0278%" height="15" fill="rgb(218,98,20)" fg:x="68618" fg:w="42"/><text x="45.6737%" y="671.50"></text></g><g><title>std::__shared_ptr<clang::Preprocessor, (__gnu_cxx::_Lock_policy)2>::__shared_ptr<std::allocator<clang::Preprocessor>, std::shared_ptr<clang::PreprocessorOptions>, clang::DiagnosticsEngine&, clang::LangOptions&, clang::SourceManager&, clang::HeaderSearch&, clang::CompilerInstance&, decltype(nullptr), bool, clang::TranslationUnitKind&> (17 samples, 0.01%)</title><rect x="45.4403%" y="645" width="0.0113%" height="15" fill="rgb(230,176,47)" fg:x="68643" fg:w="17"/><text x="45.6903%" y="655.50"></text></g><g><title>clang::Preprocessor::Preprocessor (17 samples, 0.01%)</title><rect x="45.4403%" y="629" width="0.0113%" height="15" fill="rgb(244,2,33)" fg:x="68643" fg:w="17"/><text x="45.6903%" y="639.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (138 samples, 0.09%)</title><rect x="45.3708%" y="677" width="0.0914%" height="15" fill="rgb(231,100,17)" fg:x="68538" fg:w="138"/><text x="45.6208%" y="687.50"></text></g><g><title>clang::FrontendAction::CreateWrappedASTConsumer (16 samples, 0.01%)</title><rect x="45.4515%" y="661" width="0.0106%" height="15" fill="rgb(245,23,12)" fg:x="68660" fg:w="16"/><text x="45.7015%" y="671.50"></text></g><g><title>clang::CodeGenAction::CreateASTConsumer (16 samples, 0.01%)</title><rect x="45.4515%" y="645" width="0.0106%" height="15" fill="rgb(249,55,22)" fg:x="68660" fg:w="16"/><text x="45.7015%" y="655.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (19 samples, 0.01%)</title><rect x="45.4621%" y="677" width="0.0126%" height="15" fill="rgb(207,134,9)" fg:x="68676" fg:w="19"/><text x="45.7121%" y="687.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (17 samples, 0.01%)</title><rect x="45.4972%" y="469" width="0.0113%" height="15" fill="rgb(218,134,0)" fg:x="68729" fg:w="17"/><text x="45.7472%" y="479.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (47 samples, 0.03%)</title><rect x="45.4833%" y="549" width="0.0311%" height="15" fill="rgb(213,212,33)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="559.50"></text></g><g><title>clang::Parser::ConsumeBrace (47 samples, 0.03%)</title><rect x="45.4833%" y="533" width="0.0311%" height="15" fill="rgb(252,106,18)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="543.50"></text></g><g><title>clang::Preprocessor::Lex (47 samples, 0.03%)</title><rect x="45.4833%" y="517" width="0.0311%" height="15" fill="rgb(208,126,42)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="527.50"></text></g><g><title>clang::Lexer::LexTokenInternal (47 samples, 0.03%)</title><rect x="45.4833%" y="501" width="0.0311%" height="15" fill="rgb(246,175,29)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="511.50"></text></g><g><title>clang::Preprocessor::HandleDirective (39 samples, 0.03%)</title><rect x="45.4886%" y="485" width="0.0258%" height="15" fill="rgb(215,13,50)" fg:x="68716" fg:w="39"/><text x="45.7386%" y="495.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (48 samples, 0.03%)</title><rect x="45.4833%" y="565" width="0.0318%" height="15" fill="rgb(216,172,15)" fg:x="68708" fg:w="48"/><text x="45.7333%" y="575.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (51 samples, 0.03%)</title><rect x="45.4826%" y="645" width="0.0338%" height="15" fill="rgb(212,103,13)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="655.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (51 samples, 0.03%)</title><rect x="45.4826%" y="629" width="0.0338%" height="15" fill="rgb(231,171,36)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="639.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (51 samples, 0.03%)</title><rect x="45.4826%" y="613" width="0.0338%" height="15" fill="rgb(250,123,20)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaration (51 samples, 0.03%)</title><rect x="45.4826%" y="597" width="0.0338%" height="15" fill="rgb(212,53,50)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="607.50"></text></g><g><title>clang::Parser::ParseNamespace (50 samples, 0.03%)</title><rect x="45.4833%" y="581" width="0.0331%" height="15" fill="rgb(243,54,12)" fg:x="68708" fg:w="50"/><text x="45.7333%" y="591.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (23 samples, 0.02%)</title><rect x="45.5184%" y="565" width="0.0152%" height="15" fill="rgb(234,101,34)" fg:x="68761" fg:w="23"/><text x="45.7684%" y="575.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (28 samples, 0.02%)</title><rect x="45.5164%" y="629" width="0.0185%" height="15" fill="rgb(254,67,22)" fg:x="68758" fg:w="28"/><text x="45.7664%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (28 samples, 0.02%)</title><rect x="45.5164%" y="613" width="0.0185%" height="15" fill="rgb(250,35,47)" fg:x="68758" fg:w="28"/><text x="45.7664%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (28 samples, 0.02%)</title><rect x="45.5164%" y="597" width="0.0185%" height="15" fill="rgb(226,126,38)" fg:x="68758" fg:w="28"/><text x="45.7664%" y="607.50"></text></g><g><title>clang::Parser::ParseLinkage (27 samples, 0.02%)</title><rect x="45.5171%" y="581" width="0.0179%" height="15" fill="rgb(216,138,53)" fg:x="68759" fg:w="27"/><text x="45.7671%" y="591.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (29 samples, 0.02%)</title><rect x="45.5164%" y="645" width="0.0192%" height="15" fill="rgb(246,199,43)" fg:x="68758" fg:w="29"/><text x="45.7664%" y="655.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (23 samples, 0.02%)</title><rect x="45.5594%" y="581" width="0.0152%" height="15" fill="rgb(232,125,11)" fg:x="68823" fg:w="23"/><text x="45.8094%" y="591.50"></text></g><g><title>clang::Preprocessor::Lex (16 samples, 0.01%)</title><rect x="45.5641%" y="565" width="0.0106%" height="15" fill="rgb(218,219,45)" fg:x="68830" fg:w="16"/><text x="45.8141%" y="575.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (30 samples, 0.02%)</title><rect x="45.5747%" y="581" width="0.0199%" height="15" fill="rgb(216,102,54)" fg:x="68846" fg:w="30"/><text x="45.8247%" y="591.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (69 samples, 0.05%)</title><rect x="45.5568%" y="597" width="0.0457%" height="15" fill="rgb(250,228,7)" fg:x="68819" fg:w="69"/><text x="45.8068%" y="607.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (28 samples, 0.02%)</title><rect x="45.6104%" y="581" width="0.0185%" height="15" fill="rgb(226,125,25)" fg:x="68900" fg:w="28"/><text x="45.8604%" y="591.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (48 samples, 0.03%)</title><rect x="45.6091%" y="597" width="0.0318%" height="15" fill="rgb(224,165,27)" fg:x="68898" fg:w="48"/><text x="45.8591%" y="607.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (18 samples, 0.01%)</title><rect x="45.6289%" y="581" width="0.0119%" height="15" fill="rgb(233,86,3)" fg:x="68928" fg:w="18"/><text x="45.8789%" y="591.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (451 samples, 0.30%)</title><rect x="45.3648%" y="693" width="0.2986%" height="15" fill="rgb(228,116,20)" fg:x="68529" fg:w="451"/><text x="45.6148%" y="703.50"></text></g><g><title>clang::FrontendAction::Execute (285 samples, 0.19%)</title><rect x="45.4747%" y="677" width="0.1887%" height="15" fill="rgb(209,192,17)" fg:x="68695" fg:w="285"/><text x="45.7247%" y="687.50"></text></g><g><title>clang::ParseAST (283 samples, 0.19%)</title><rect x="45.4760%" y="661" width="0.1873%" height="15" fill="rgb(224,88,34)" fg:x="68697" fg:w="283"/><text x="45.7260%" y="671.50"></text></g><g><title>clang::Preprocessor::Lex (181 samples, 0.12%)</title><rect x="45.5436%" y="645" width="0.1198%" height="15" fill="rgb(233,38,6)" fg:x="68799" fg:w="181"/><text x="45.7936%" y="655.50"></text></g><g><title>clang::Lexer::LexTokenInternal (180 samples, 0.12%)</title><rect x="45.5442%" y="629" width="0.1192%" height="15" fill="rgb(212,59,30)" fg:x="68800" fg:w="180"/><text x="45.7942%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleDirective (167 samples, 0.11%)</title><rect x="45.5528%" y="613" width="0.1106%" height="15" fill="rgb(213,80,3)" fg:x="68813" fg:w="167"/><text x="45.8028%" y="623.50"></text></g><g><title>clang::ExecuteCompilerInvocation (464 samples, 0.31%)</title><rect x="45.3642%" y="709" width="0.3072%" height="15" fill="rgb(251,178,7)" fg:x="68528" fg:w="464"/><text x="45.6142%" y="719.50"></text></g><g><title>clang::driver::CC1Command::Execute (485 samples, 0.32%)</title><rect x="45.3549%" y="789" width="0.3211%" height="15" fill="rgb(213,154,26)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="799.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (485 samples, 0.32%)</title><rect x="45.3549%" y="773" width="0.3211%" height="15" fill="rgb(238,165,49)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="783.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (485 samples, 0.32%)</title><rect x="45.3549%" y="757" width="0.3211%" height="15" fill="rgb(248,91,46)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="767.50"></text></g><g><title>ExecuteCC1Tool (485 samples, 0.32%)</title><rect x="45.3549%" y="741" width="0.3211%" height="15" fill="rgb(244,21,52)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="751.50"></text></g><g><title>cc1_main (485 samples, 0.32%)</title><rect x="45.3549%" y="725" width="0.3211%" height="15" fill="rgb(247,122,20)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="735.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (489 samples, 0.32%)</title><rect x="45.3549%" y="837" width="0.3237%" height="15" fill="rgb(218,27,9)" fg:x="68514" fg:w="489"/><text x="45.6049%" y="847.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (489 samples, 0.32%)</title><rect x="45.3549%" y="821" width="0.3237%" height="15" fill="rgb(246,7,6)" fg:x="68514" fg:w="489"/><text x="45.6049%" y="831.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (489 samples, 0.32%)</title><rect x="45.3549%" y="805" width="0.3237%" height="15" fill="rgb(227,135,54)" fg:x="68514" fg:w="489"/><text x="45.6049%" y="815.50"></text></g><g><title>main (671 samples, 0.44%)</title><rect x="45.2430%" y="853" width="0.4442%" height="15" fill="rgb(247,14,11)" fg:x="68345" fg:w="671"/><text x="45.4930%" y="863.50"></text></g><g><title>[unknown] (1,858 samples, 1.23%)</title><rect x="44.4632%" y="869" width="1.2300%" height="15" fill="rgb(206,149,34)" fg:x="67167" fg:w="1858"/><text x="44.7132%" y="879.50"></text></g><g><title>__GI___libc_sigaction (34 samples, 0.02%)</title><rect x="45.6938%" y="837" width="0.0225%" height="15" fill="rgb(227,228,4)" fg:x="69026" fg:w="34"/><text x="45.9438%" y="847.50"></text></g><g><title>__spawni_child (49 samples, 0.03%)</title><rect x="45.6932%" y="853" width="0.0324%" height="15" fill="rgb(238,218,28)" fg:x="69025" fg:w="49"/><text x="45.9432%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.14%)</title><rect x="45.7455%" y="805" width="0.1364%" height="15" fill="rgb(252,86,40)" fg:x="69104" fg:w="206"/><text x="45.9955%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (205 samples, 0.14%)</title><rect x="45.7461%" y="789" width="0.1357%" height="15" fill="rgb(251,225,11)" fg:x="69105" fg:w="205"/><text x="45.9961%" y="799.50"></text></g><g><title>native_write_msr (205 samples, 0.14%)</title><rect x="45.7461%" y="773" width="0.1357%" height="15" fill="rgb(206,46,49)" fg:x="69105" fg:w="205"/><text x="45.9961%" y="783.50"></text></g><g><title>__GI___clone (288 samples, 0.19%)</title><rect x="45.6932%" y="869" width="0.1907%" height="15" fill="rgb(245,128,24)" fg:x="69025" fg:w="288"/><text x="45.9432%" y="879.50"></text></g><g><title>ret_from_fork (228 samples, 0.15%)</title><rect x="45.7329%" y="853" width="0.1509%" height="15" fill="rgb(219,177,34)" fg:x="69085" fg:w="228"/><text x="45.9829%" y="863.50"></text></g><g><title>schedule_tail (221 samples, 0.15%)</title><rect x="45.7375%" y="837" width="0.1463%" height="15" fill="rgb(218,60,48)" fg:x="69092" fg:w="221"/><text x="45.9875%" y="847.50"></text></g><g><title>finish_task_switch (221 samples, 0.15%)</title><rect x="45.7375%" y="821" width="0.1463%" height="15" fill="rgb(221,11,5)" fg:x="69092" fg:w="221"/><text x="45.9875%" y="831.50"></text></g><g><title>[libstdc++.so.6.0.28] (21 samples, 0.01%)</title><rect x="45.8865%" y="805" width="0.0139%" height="15" fill="rgb(220,148,13)" fg:x="69317" fg:w="21"/><text x="46.1365%" y="815.50"></text></g><g><title>_dl_start_user (23 samples, 0.02%)</title><rect x="45.8858%" y="869" width="0.0152%" height="15" fill="rgb(210,16,3)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="879.50"></text></g><g><title>_dl_init (23 samples, 0.02%)</title><rect x="45.8858%" y="853" width="0.0152%" height="15" fill="rgb(236,80,2)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="863.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="45.8858%" y="837" width="0.0152%" height="15" fill="rgb(239,129,19)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="847.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="45.8858%" y="821" width="0.0152%" height="15" fill="rgb(220,106,35)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="831.50"></text></g><g><title>__GI_exit (64 samples, 0.04%)</title><rect x="45.9070%" y="837" width="0.0424%" height="15" fill="rgb(252,139,45)" fg:x="69348" fg:w="64"/><text x="46.1570%" y="847.50"></text></g><g><title>__run_exit_handlers (64 samples, 0.04%)</title><rect x="45.9070%" y="821" width="0.0424%" height="15" fill="rgb(229,8,36)" fg:x="69348" fg:w="64"/><text x="46.1570%" y="831.50"></text></g><g><title>__pthread_once_slow (17 samples, 0.01%)</title><rect x="46.2711%" y="773" width="0.0113%" height="15" fill="rgb(230,126,33)" fg:x="69898" fg:w="17"/><text x="46.5211%" y="783.50"></text></g><g><title>initializeCodeGenerationPassOnce (17 samples, 0.01%)</title><rect x="46.2711%" y="757" width="0.0113%" height="15" fill="rgb(239,140,21)" fg:x="69898" fg:w="17"/><text x="46.5211%" y="767.50"></text></g><g><title>llvm::initializeDependenceInfoPass (17 samples, 0.01%)</title><rect x="46.2711%" y="741" width="0.0113%" height="15" fill="rgb(254,104,9)" fg:x="69898" fg:w="17"/><text x="46.5211%" y="751.50"></text></g><g><title>llvm::initializeCodeGenerationPass (20 samples, 0.01%)</title><rect x="46.2697%" y="789" width="0.0132%" height="15" fill="rgb(239,52,14)" fg:x="69896" fg:w="20"/><text x="46.5197%" y="799.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (33 samples, 0.02%)</title><rect x="46.2684%" y="821" width="0.0218%" height="15" fill="rgb(208,227,44)" fg:x="69894" fg:w="33"/><text x="46.5184%" y="831.50"></text></g><g><title>polly::initializePollyPasses (31 samples, 0.02%)</title><rect x="46.2697%" y="805" width="0.0205%" height="15" fill="rgb(246,18,19)" fg:x="69896" fg:w="31"/><text x="46.5197%" y="815.50"></text></g><g><title>__libc_csu_init (637 samples, 0.42%)</title><rect x="45.9493%" y="837" width="0.4217%" height="15" fill="rgb(235,228,25)" fg:x="69412" fg:w="637"/><text x="46.1993%" y="847.50"></text></g><g><title>clang::driver::Driver::getToolChain (16 samples, 0.01%)</title><rect x="46.4088%" y="805" width="0.0106%" height="15" fill="rgb(240,156,20)" fg:x="70106" fg:w="16"/><text x="46.6588%" y="815.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (47 samples, 0.03%)</title><rect x="46.3896%" y="821" width="0.0311%" height="15" fill="rgb(224,8,20)" fg:x="70077" fg:w="47"/><text x="46.6396%" y="831.50"></text></g><g><title>clang::driver::CC1Command::Execute (25 samples, 0.02%)</title><rect x="46.4233%" y="773" width="0.0165%" height="15" fill="rgb(214,12,52)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="783.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (25 samples, 0.02%)</title><rect x="46.4233%" y="757" width="0.0165%" height="15" fill="rgb(211,220,47)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="767.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (25 samples, 0.02%)</title><rect x="46.4233%" y="741" width="0.0165%" height="15" fill="rgb(250,173,5)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="751.50"></text></g><g><title>ExecuteCC1Tool (25 samples, 0.02%)</title><rect x="46.4233%" y="725" width="0.0165%" height="15" fill="rgb(250,125,52)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.05%)</title><rect x="46.4498%" y="581" width="0.0483%" height="15" fill="rgb(209,133,18)" fg:x="70168" fg:w="73"/><text x="46.6998%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (73 samples, 0.05%)</title><rect x="46.4498%" y="565" width="0.0483%" height="15" fill="rgb(216,173,22)" fg:x="70168" fg:w="73"/><text x="46.6998%" y="575.50"></text></g><g><title>native_write_msr (73 samples, 0.05%)</title><rect x="46.4498%" y="549" width="0.0483%" height="15" fill="rgb(205,3,22)" fg:x="70168" fg:w="73"/><text x="46.6998%" y="559.50"></text></g><g><title>schedule (78 samples, 0.05%)</title><rect x="46.4478%" y="629" width="0.0516%" height="15" fill="rgb(248,22,20)" fg:x="70165" fg:w="78"/><text x="46.6978%" y="639.50"></text></g><g><title>__schedule (78 samples, 0.05%)</title><rect x="46.4478%" y="613" width="0.0516%" height="15" fill="rgb(233,6,29)" fg:x="70165" fg:w="78"/><text x="46.6978%" y="623.50"></text></g><g><title>finish_task_switch (78 samples, 0.05%)</title><rect x="46.4478%" y="597" width="0.0516%" height="15" fill="rgb(240,22,54)" fg:x="70165" fg:w="78"/><text x="46.6978%" y="607.50"></text></g><g><title>llvm::sys::ExecuteAndWait (101 samples, 0.07%)</title><rect x="46.4399%" y="757" width="0.0669%" height="15" fill="rgb(231,133,32)" fg:x="70153" fg:w="101"/><text x="46.6899%" y="767.50"></text></g><g><title>llvm::sys::Wait (98 samples, 0.06%)</title><rect x="46.4419%" y="741" width="0.0649%" height="15" fill="rgb(248,193,4)" fg:x="70156" fg:w="98"/><text x="46.6919%" y="751.50"></text></g><g><title>__GI___wait4 (97 samples, 0.06%)</title><rect x="46.4425%" y="725" width="0.0642%" height="15" fill="rgb(211,178,46)" fg:x="70157" fg:w="97"/><text x="46.6925%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.06%)</title><rect x="46.4432%" y="709" width="0.0636%" height="15" fill="rgb(224,5,42)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="719.50"></text></g><g><title>do_syscall_64 (96 samples, 0.06%)</title><rect x="46.4432%" y="693" width="0.0636%" height="15" fill="rgb(239,176,25)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="703.50"></text></g><g><title>__do_sys_wait4 (96 samples, 0.06%)</title><rect x="46.4432%" y="677" width="0.0636%" height="15" fill="rgb(245,187,50)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="687.50"></text></g><g><title>kernel_wait4 (96 samples, 0.06%)</title><rect x="46.4432%" y="661" width="0.0636%" height="15" fill="rgb(248,24,15)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="671.50"></text></g><g><title>do_wait (96 samples, 0.06%)</title><rect x="46.4432%" y="645" width="0.0636%" height="15" fill="rgb(205,166,13)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="655.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (129 samples, 0.09%)</title><rect x="46.4227%" y="805" width="0.0854%" height="15" fill="rgb(208,114,23)" fg:x="70127" fg:w="129"/><text x="46.6727%" y="815.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (129 samples, 0.09%)</title><rect x="46.4227%" y="789" width="0.0854%" height="15" fill="rgb(239,127,18)" fg:x="70127" fg:w="129"/><text x="46.6727%" y="799.50"></text></g><g><title>clang::driver::Command::Execute (103 samples, 0.07%)</title><rect x="46.4399%" y="773" width="0.0682%" height="15" fill="rgb(219,154,28)" fg:x="70153" fg:w="103"/><text x="46.6899%" y="783.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (133 samples, 0.09%)</title><rect x="46.4227%" y="821" width="0.0880%" height="15" fill="rgb(225,157,23)" fg:x="70127" fg:w="133"/><text x="46.6727%" y="831.50"></text></g><g><title>asm_exc_page_fault (21 samples, 0.01%)</title><rect x="46.5206%" y="741" width="0.0139%" height="15" fill="rgb(219,8,6)" fg:x="70275" fg:w="21"/><text x="46.7706%" y="751.50"></text></g><g><title>exc_page_fault (21 samples, 0.01%)</title><rect x="46.5206%" y="725" width="0.0139%" height="15" fill="rgb(212,47,6)" fg:x="70275" fg:w="21"/><text x="46.7706%" y="735.50"></text></g><g><title>do_user_addr_fault (20 samples, 0.01%)</title><rect x="46.5213%" y="709" width="0.0132%" height="15" fill="rgb(224,190,4)" fg:x="70276" fg:w="20"/><text x="46.7713%" y="719.50"></text></g><g><title>handle_mm_fault (20 samples, 0.01%)</title><rect x="46.5213%" y="693" width="0.0132%" height="15" fill="rgb(239,183,29)" fg:x="70276" fg:w="20"/><text x="46.7713%" y="703.50"></text></g><g><title>[libc-2.31.so] (29 samples, 0.02%)</title><rect x="46.5160%" y="757" width="0.0192%" height="15" fill="rgb(213,57,7)" fg:x="70268" fg:w="29"/><text x="46.7660%" y="767.50"></text></g><g><title>llvm::opt::OptTable::OptTable (53 samples, 0.04%)</title><rect x="46.5134%" y="773" width="0.0351%" height="15" fill="rgb(216,148,1)" fg:x="70264" fg:w="53"/><text x="46.7634%" y="783.50"></text></g><g><title>clang::driver::getDriverOptTable (79 samples, 0.05%)</title><rect x="46.5120%" y="805" width="0.0523%" height="15" fill="rgb(236,182,29)" fg:x="70262" fg:w="79"/><text x="46.7620%" y="815.50"></text></g><g><title>clang::driver::getDriverOptTable (77 samples, 0.05%)</title><rect x="46.5134%" y="789" width="0.0510%" height="15" fill="rgb(244,120,48)" fg:x="70264" fg:w="77"/><text x="46.7634%" y="799.50"></text></g><g><title>llvm::opt::OptTable::addValues (24 samples, 0.02%)</title><rect x="46.5484%" y="773" width="0.0159%" height="15" fill="rgb(206,71,34)" fg:x="70317" fg:w="24"/><text x="46.7984%" y="783.50"></text></g><g><title>optionMatches (23 samples, 0.02%)</title><rect x="46.5491%" y="757" width="0.0152%" height="15" fill="rgb(242,32,6)" fg:x="70318" fg:w="23"/><text x="46.7991%" y="767.50"></text></g><g><title>[libc-2.31.so] (19 samples, 0.01%)</title><rect x="46.5517%" y="741" width="0.0126%" height="15" fill="rgb(241,35,3)" fg:x="70322" fg:w="19"/><text x="46.8017%" y="751.50"></text></g><g><title>clang::driver::getDriverMode (82 samples, 0.05%)</title><rect x="46.5107%" y="821" width="0.0543%" height="15" fill="rgb(222,62,19)" fg:x="70260" fg:w="82"/><text x="46.7607%" y="831.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (50 samples, 0.03%)</title><rect x="46.5696%" y="821" width="0.0331%" height="15" fill="rgb(223,110,41)" fg:x="70349" fg:w="50"/><text x="46.8196%" y="831.50"></text></g><g><title>llvm::llvm_shutdown (50 samples, 0.03%)</title><rect x="46.5696%" y="805" width="0.0331%" height="15" fill="rgb(208,224,4)" fg:x="70349" fg:w="50"/><text x="46.8196%" y="815.50"></text></g><g><title>llvm::object_deleter<llvm::cl::SubCommand>::call (35 samples, 0.02%)</title><rect x="46.5796%" y="789" width="0.0232%" height="15" fill="rgb(241,137,19)" fg:x="70364" fg:w="35"/><text x="46.8296%" y="799.50"></text></g><g><title>LLVMInitializeAArch64Target (21 samples, 0.01%)</title><rect x="46.6027%" y="805" width="0.0139%" height="15" fill="rgb(244,24,17)" fg:x="70399" fg:w="21"/><text x="46.8527%" y="815.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (28 samples, 0.02%)</title><rect x="46.6166%" y="805" width="0.0185%" height="15" fill="rgb(245,178,49)" fg:x="70420" fg:w="28"/><text x="46.8666%" y="815.50"></text></g><g><title>llvm::InitializeAllTargets (100 samples, 0.07%)</title><rect x="46.6027%" y="821" width="0.0662%" height="15" fill="rgb(219,160,38)" fg:x="70399" fg:w="100"/><text x="46.8527%" y="831.50"></text></g><g><title>__libc_start_main (1,164 samples, 0.77%)</title><rect x="45.9070%" y="853" width="0.7705%" height="15" fill="rgb(228,137,14)" fg:x="69348" fg:w="1164"/><text x="46.1570%" y="863.50"></text></g><g><title>main (463 samples, 0.31%)</title><rect x="46.3710%" y="837" width="0.3065%" height="15" fill="rgb(237,134,11)" fg:x="70049" fg:w="463"/><text x="46.6210%" y="847.50"></text></g><g><title>__do_munmap (18 samples, 0.01%)</title><rect x="46.6908%" y="565" width="0.0119%" height="15" fill="rgb(211,126,44)" fg:x="70532" fg:w="18"/><text x="46.9408%" y="575.50"></text></g><g><title>do_mmap (32 samples, 0.02%)</title><rect x="46.6901%" y="597" width="0.0212%" height="15" fill="rgb(226,171,33)" fg:x="70531" fg:w="32"/><text x="46.9401%" y="607.50"></text></g><g><title>mmap_region (31 samples, 0.02%)</title><rect x="46.6908%" y="581" width="0.0205%" height="15" fill="rgb(253,99,13)" fg:x="70532" fg:w="31"/><text x="46.9408%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (33 samples, 0.02%)</title><rect x="46.6901%" y="629" width="0.0218%" height="15" fill="rgb(244,48,7)" fg:x="70531" fg:w="33"/><text x="46.9401%" y="639.50"></text></g><g><title>vm_mmap_pgoff (33 samples, 0.02%)</title><rect x="46.6901%" y="613" width="0.0218%" height="15" fill="rgb(244,217,54)" fg:x="70531" fg:w="33"/><text x="46.9401%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="46.6901%" y="661" width="0.0232%" height="15" fill="rgb(224,15,18)" fg:x="70531" fg:w="35"/><text x="46.9401%" y="671.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="46.6901%" y="645" width="0.0232%" height="15" fill="rgb(244,99,12)" fg:x="70531" fg:w="35"/><text x="46.9401%" y="655.50"></text></g><g><title>_dl_map_segments (43 samples, 0.03%)</title><rect x="46.6855%" y="709" width="0.0285%" height="15" fill="rgb(233,226,8)" fg:x="70524" fg:w="43"/><text x="46.9355%" y="719.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="46.6901%" y="693" width="0.0238%" height="15" fill="rgb(229,211,3)" fg:x="70531" fg:w="36"/><text x="46.9401%" y="703.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="46.6901%" y="677" width="0.0238%" height="15" fill="rgb(216,140,21)" fg:x="70531" fg:w="36"/><text x="46.9401%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (62 samples, 0.04%)</title><rect x="46.6828%" y="725" width="0.0410%" height="15" fill="rgb(234,122,30)" fg:x="70520" fg:w="62"/><text x="46.9328%" y="735.50"></text></g><g><title>_dl_catch_exception (92 samples, 0.06%)</title><rect x="46.6788%" y="773" width="0.0609%" height="15" fill="rgb(236,25,46)" fg:x="70514" fg:w="92"/><text x="46.9288%" y="783.50"></text></g><g><title>openaux (92 samples, 0.06%)</title><rect x="46.6788%" y="757" width="0.0609%" height="15" fill="rgb(217,52,54)" fg:x="70514" fg:w="92"/><text x="46.9288%" y="767.50"></text></g><g><title>_dl_map_object (92 samples, 0.06%)</title><rect x="46.6788%" y="741" width="0.0609%" height="15" fill="rgb(222,29,26)" fg:x="70514" fg:w="92"/><text x="46.9288%" y="751.50"></text></g><g><title>_dl_map_object_deps (94 samples, 0.06%)</title><rect x="46.6788%" y="789" width="0.0622%" height="15" fill="rgb(216,177,29)" fg:x="70514" fg:w="94"/><text x="46.9288%" y="799.50"></text></g><g><title>_dl_protect_relro (17 samples, 0.01%)</title><rect x="46.7431%" y="773" width="0.0113%" height="15" fill="rgb(247,136,51)" fg:x="70611" fg:w="17"/><text x="46.9931%" y="783.50"></text></g><g><title>__mprotect (17 samples, 0.01%)</title><rect x="46.7431%" y="757" width="0.0113%" height="15" fill="rgb(231,47,47)" fg:x="70611" fg:w="17"/><text x="46.9931%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="46.7437%" y="741" width="0.0106%" height="15" fill="rgb(211,192,36)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="751.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="46.7437%" y="725" width="0.0106%" height="15" fill="rgb(229,156,32)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="735.50"></text></g><g><title>__x64_sys_mprotect (16 samples, 0.01%)</title><rect x="46.7437%" y="709" width="0.0106%" height="15" fill="rgb(248,213,20)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="719.50"></text></g><g><title>do_mprotect_pkey (16 samples, 0.01%)</title><rect x="46.7437%" y="693" width="0.0106%" height="15" fill="rgb(217,64,7)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="703.50"></text></g><g><title>mprotect_fixup (16 samples, 0.01%)</title><rect x="46.7437%" y="677" width="0.0106%" height="15" fill="rgb(232,142,8)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="687.50"></text></g><g><title>dl_new_hash (34 samples, 0.02%)</title><rect x="46.8013%" y="725" width="0.0225%" height="15" fill="rgb(224,92,44)" fg:x="70699" fg:w="34"/><text x="47.0513%" y="735.50"></text></g><g><title>check_match (17 samples, 0.01%)</title><rect x="46.8874%" y="709" width="0.0113%" height="15" fill="rgb(214,169,17)" fg:x="70829" fg:w="17"/><text x="47.1374%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (161 samples, 0.11%)</title><rect x="46.7973%" y="741" width="0.1066%" height="15" fill="rgb(210,59,37)" fg:x="70693" fg:w="161"/><text x="47.0473%" y="751.50"></text></g><g><title>do_lookup_x (121 samples, 0.08%)</title><rect x="46.8238%" y="725" width="0.0801%" height="15" fill="rgb(214,116,48)" fg:x="70733" fg:w="121"/><text x="47.0738%" y="735.50"></text></g><g><title>alloc_pages_vma (40 samples, 0.03%)</title><rect x="46.9185%" y="677" width="0.0265%" height="15" fill="rgb(244,191,6)" fg:x="70876" fg:w="40"/><text x="47.1685%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (39 samples, 0.03%)</title><rect x="46.9191%" y="661" width="0.0258%" height="15" fill="rgb(241,50,52)" fg:x="70877" fg:w="39"/><text x="47.1691%" y="671.50"></text></g><g><title>get_page_from_freelist (34 samples, 0.02%)</title><rect x="46.9225%" y="645" width="0.0225%" height="15" fill="rgb(236,75,39)" fg:x="70882" fg:w="34"/><text x="47.1725%" y="655.50"></text></g><g><title>prep_new_page (26 samples, 0.02%)</title><rect x="46.9278%" y="629" width="0.0172%" height="15" fill="rgb(236,99,0)" fg:x="70890" fg:w="26"/><text x="47.1778%" y="639.50"></text></g><g><title>kernel_init_free_pages (26 samples, 0.02%)</title><rect x="46.9278%" y="613" width="0.0172%" height="15" fill="rgb(207,202,15)" fg:x="70890" fg:w="26"/><text x="47.1778%" y="623.50"></text></g><g><title>clear_page_erms (25 samples, 0.02%)</title><rect x="46.9284%" y="597" width="0.0165%" height="15" fill="rgb(233,207,14)" fg:x="70891" fg:w="25"/><text x="47.1784%" y="607.50"></text></g><g><title>copy_page (32 samples, 0.02%)</title><rect x="46.9463%" y="677" width="0.0212%" height="15" fill="rgb(226,27,51)" fg:x="70918" fg:w="32"/><text x="47.1963%" y="687.50"></text></g><g><title>handle_mm_fault (129 samples, 0.09%)</title><rect x="46.9079%" y="693" width="0.0854%" height="15" fill="rgb(206,104,42)" fg:x="70860" fg:w="129"/><text x="47.1579%" y="703.50"></text></g><g><title>asm_exc_page_fault (136 samples, 0.09%)</title><rect x="46.9039%" y="741" width="0.0900%" height="15" fill="rgb(212,225,4)" fg:x="70854" fg:w="136"/><text x="47.1539%" y="751.50"></text></g><g><title>exc_page_fault (135 samples, 0.09%)</title><rect x="46.9046%" y="725" width="0.0894%" height="15" fill="rgb(233,96,42)" fg:x="70855" fg:w="135"/><text x="47.1546%" y="735.50"></text></g><g><title>do_user_addr_fault (133 samples, 0.09%)</title><rect x="46.9059%" y="709" width="0.0880%" height="15" fill="rgb(229,21,32)" fg:x="70857" fg:w="133"/><text x="47.1559%" y="719.50"></text></g><g><title>elf_machine_rela (362 samples, 0.24%)</title><rect x="46.7636%" y="757" width="0.2396%" height="15" fill="rgb(226,216,24)" fg:x="70642" fg:w="362"/><text x="47.0136%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (386 samples, 0.26%)</title><rect x="46.7543%" y="773" width="0.2555%" height="15" fill="rgb(221,163,17)" fg:x="70628" fg:w="386"/><text x="47.0043%" y="783.50"></text></g><g><title>_dl_relocate_object (406 samples, 0.27%)</title><rect x="46.7431%" y="789" width="0.2688%" height="15" fill="rgb(216,216,42)" fg:x="70611" fg:w="406"/><text x="46.9931%" y="799.50"></text></g><g><title>_dl_start_final (514 samples, 0.34%)</title><rect x="46.6775%" y="837" width="0.3403%" height="15" fill="rgb(240,118,7)" fg:x="70512" fg:w="514"/><text x="46.9275%" y="847.50"></text></g><g><title>_dl_sysdep_start (514 samples, 0.34%)</title><rect x="46.6775%" y="821" width="0.3403%" height="15" fill="rgb(221,67,37)" fg:x="70512" fg:w="514"/><text x="46.9275%" y="831.50"></text></g><g><title>[ld-2.31.so] (513 samples, 0.34%)</title><rect x="46.6782%" y="805" width="0.3396%" height="15" fill="rgb(241,32,44)" fg:x="70513" fg:w="513"/><text x="46.9282%" y="815.50"></text></g><g><title>_dl_start (516 samples, 0.34%)</title><rect x="46.6775%" y="853" width="0.3416%" height="15" fill="rgb(235,204,43)" fg:x="70512" fg:w="516"/><text x="46.9275%" y="863.50"></text></g><g><title>_start (1,684 samples, 1.11%)</title><rect x="45.9070%" y="869" width="1.1148%" height="15" fill="rgb(213,116,10)" fg:x="69348" fg:w="1684"/><text x="46.1570%" y="879.50"></text></g><g><title>asm_exc_page_fault (187 samples, 0.12%)</title><rect x="47.0218%" y="869" width="0.1238%" height="15" fill="rgb(239,15,48)" fg:x="71032" fg:w="187"/><text x="47.2718%" y="879.50"></text></g><g><title>tlb_finish_mmu (35 samples, 0.02%)</title><rect x="47.1654%" y="757" width="0.0232%" height="15" fill="rgb(207,123,36)" fg:x="71249" fg:w="35"/><text x="47.4154%" y="767.50"></text></g><g><title>release_pages (29 samples, 0.02%)</title><rect x="47.1694%" y="741" width="0.0192%" height="15" fill="rgb(209,103,30)" fg:x="71255" fg:w="29"/><text x="47.4194%" y="751.50"></text></g><g><title>__mod_lruvec_state (24 samples, 0.02%)</title><rect x="47.2905%" y="709" width="0.0159%" height="15" fill="rgb(238,100,19)" fg:x="71438" fg:w="24"/><text x="47.5405%" y="719.50"></text></g><g><title>__mod_memcg_lruvec_state (33 samples, 0.02%)</title><rect x="47.3064%" y="709" width="0.0218%" height="15" fill="rgb(244,30,14)" fg:x="71462" fg:w="33"/><text x="47.5564%" y="719.50"></text></g><g><title>__mod_memcg_state.part.0 (16 samples, 0.01%)</title><rect x="47.3177%" y="693" width="0.0106%" height="15" fill="rgb(249,174,6)" fg:x="71479" fg:w="16"/><text x="47.5677%" y="703.50"></text></g><g><title>page_remove_rmap (127 samples, 0.08%)</title><rect x="47.2521%" y="725" width="0.0841%" height="15" fill="rgb(235,213,41)" fg:x="71380" fg:w="127"/><text x="47.5021%" y="735.50"></text></g><g><title>free_pages_and_swap_cache (21 samples, 0.01%)</title><rect x="47.3375%" y="709" width="0.0139%" height="15" fill="rgb(213,118,6)" fg:x="71509" fg:w="21"/><text x="47.5875%" y="719.50"></text></g><g><title>tlb_flush_mmu (72 samples, 0.05%)</title><rect x="47.3375%" y="725" width="0.0477%" height="15" fill="rgb(235,44,51)" fg:x="71509" fg:w="72"/><text x="47.5875%" y="735.50"></text></g><g><title>release_pages (51 samples, 0.03%)</title><rect x="47.3514%" y="709" width="0.0338%" height="15" fill="rgb(217,9,53)" fg:x="71530" fg:w="51"/><text x="47.6014%" y="719.50"></text></g><g><title>unmap_page_range (309 samples, 0.20%)</title><rect x="47.1886%" y="741" width="0.2046%" height="15" fill="rgb(237,172,34)" fg:x="71284" fg:w="309"/><text x="47.4386%" y="751.50"></text></g><g><title>mmput (361 samples, 0.24%)</title><rect x="47.1555%" y="789" width="0.2390%" height="15" fill="rgb(206,206,11)" fg:x="71234" fg:w="361"/><text x="47.4055%" y="799.50"></text></g><g><title>exit_mmap (361 samples, 0.24%)</title><rect x="47.1555%" y="773" width="0.2390%" height="15" fill="rgb(214,149,29)" fg:x="71234" fg:w="361"/><text x="47.4055%" y="783.50"></text></g><g><title>unmap_vmas (311 samples, 0.21%)</title><rect x="47.1886%" y="757" width="0.2059%" height="15" fill="rgb(208,123,3)" fg:x="71284" fg:w="311"/><text x="47.4386%" y="767.50"></text></g><g><title>__x64_sys_exit_group (368 samples, 0.24%)</title><rect x="47.1548%" y="837" width="0.2436%" height="15" fill="rgb(229,126,4)" fg:x="71233" fg:w="368"/><text x="47.4048%" y="847.50"></text></g><g><title>do_group_exit (368 samples, 0.24%)</title><rect x="47.1548%" y="821" width="0.2436%" height="15" fill="rgb(222,92,36)" fg:x="71233" fg:w="368"/><text x="47.4048%" y="831.50"></text></g><g><title>do_exit (368 samples, 0.24%)</title><rect x="47.1548%" y="805" width="0.2436%" height="15" fill="rgb(216,39,41)" fg:x="71233" fg:w="368"/><text x="47.4048%" y="815.50"></text></g><g><title>do_syscall_64 (383 samples, 0.25%)</title><rect x="47.1489%" y="853" width="0.2535%" height="15" fill="rgb(253,127,28)" fg:x="71224" fg:w="383"/><text x="47.3989%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (384 samples, 0.25%)</title><rect x="47.1489%" y="869" width="0.2542%" height="15" fill="rgb(249,152,51)" fg:x="71224" fg:w="384"/><text x="47.3989%" y="879.50"></text></g><g><title>clang (4,761 samples, 3.15%)</title><rect x="44.2606%" y="885" width="3.1517%" height="15" fill="rgb(209,123,42)" fg:x="66861" fg:w="4761"/><text x="44.5106%" y="895.50">cla..</text></g><g><title>JVM_Sleep (31 samples, 0.02%)</title><rect x="47.4150%" y="853" width="0.0205%" height="15" fill="rgb(241,118,22)" fg:x="71626" fg:w="31"/><text x="47.6650%" y="863.50"></text></g><g><title>os::sleep (30 samples, 0.02%)</title><rect x="47.4156%" y="837" width="0.0199%" height="15" fill="rgb(208,25,7)" fg:x="71627" fg:w="30"/><text x="47.6656%" y="847.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="47.4163%" y="821" width="0.0192%" height="15" fill="rgb(243,144,39)" fg:x="71628" fg:w="29"/><text x="47.6663%" y="831.50"></text></g><g><title>__pthread_cond_timedwait (29 samples, 0.02%)</title><rect x="47.4163%" y="805" width="0.0192%" height="15" fill="rgb(250,50,5)" fg:x="71628" fg:w="29"/><text x="47.6663%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="47.4163%" y="789" width="0.0192%" height="15" fill="rgb(207,67,11)" fg:x="71628" fg:w="29"/><text x="47.6663%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (28 samples, 0.02%)</title><rect x="47.4170%" y="773" width="0.0185%" height="15" fill="rgb(245,204,40)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="47.4170%" y="757" width="0.0185%" height="15" fill="rgb(238,228,24)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="767.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="47.4170%" y="741" width="0.0185%" height="15" fill="rgb(217,116,22)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="751.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="47.4170%" y="725" width="0.0185%" height="15" fill="rgb(234,98,12)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="735.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="47.4170%" y="709" width="0.0185%" height="15" fill="rgb(242,170,50)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="719.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="47.4170%" y="693" width="0.0185%" height="15" fill="rgb(235,7,5)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="703.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="47.4170%" y="677" width="0.0185%" height="15" fill="rgb(241,114,28)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="687.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="47.4170%" y="661" width="0.0185%" height="15" fill="rgb(246,112,42)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="671.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="47.4170%" y="645" width="0.0185%" height="15" fill="rgb(248,228,14)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="655.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="47.4170%" y="629" width="0.0185%" height="15" fill="rgb(208,133,18)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="47.4176%" y="613" width="0.0179%" height="15" fill="rgb(207,35,49)" fg:x="71630" fg:w="27"/><text x="47.6676%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="47.4183%" y="597" width="0.0172%" height="15" fill="rgb(205,68,36)" fg:x="71631" fg:w="26"/><text x="47.6683%" y="607.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="47.4183%" y="581" width="0.0172%" height="15" fill="rgb(245,62,40)" fg:x="71631" fg:w="26"/><text x="47.6683%" y="591.50"></text></g><g><title>[perf-983083.map] (36 samples, 0.02%)</title><rect x="47.4123%" y="869" width="0.0238%" height="15" fill="rgb(228,27,24)" fg:x="71622" fg:w="36"/><text x="47.6623%" y="879.50"></text></g><g><title>cli-update-thre (37 samples, 0.02%)</title><rect x="47.4123%" y="885" width="0.0245%" height="15" fill="rgb(253,19,12)" fg:x="71622" fg:w="37"/><text x="47.6623%" y="895.50"></text></g><g><title>[perf-983083.map] (115 samples, 0.08%)</title><rect x="47.4395%" y="869" width="0.0761%" height="15" fill="rgb(232,28,20)" fg:x="71663" fg:w="115"/><text x="47.6895%" y="879.50"></text></g><g><title>__GI___clone (28 samples, 0.02%)</title><rect x="47.5156%" y="869" width="0.0185%" height="15" fill="rgb(218,35,51)" fg:x="71778" fg:w="28"/><text x="47.7656%" y="879.50"></text></g><g><title>find-action-loo (148 samples, 0.10%)</title><rect x="47.4368%" y="885" width="0.0980%" height="15" fill="rgb(212,90,40)" fg:x="71659" fg:w="148"/><text x="47.6868%" y="895.50"></text></g><g><title>[perf-983083.map] (33 samples, 0.02%)</title><rect x="47.5374%" y="869" width="0.0218%" height="15" fill="rgb(220,172,12)" fg:x="71811" fg:w="33"/><text x="47.7874%" y="879.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="47.5606%" y="853" width="0.0132%" height="15" fill="rgb(226,159,20)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="863.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="47.5606%" y="837" width="0.0132%" height="15" fill="rgb(234,205,16)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="847.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="47.5606%" y="821" width="0.0132%" height="15" fill="rgb(207,9,39)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="47.5606%" y="805" width="0.0132%" height="15" fill="rgb(249,143,15)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="47.5613%" y="789" width="0.0126%" height="15" fill="rgb(253,133,29)" fg:x="71847" fg:w="19"/><text x="47.8113%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="47.5619%" y="773" width="0.0119%" height="15" fill="rgb(221,187,0)" fg:x="71848" fg:w="18"/><text x="47.8119%" y="783.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="47.5745%" y="821" width="0.0106%" height="15" fill="rgb(205,204,26)" fg:x="71867" fg:w="16"/><text x="47.8245%" y="831.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="47.5745%" y="805" width="0.0106%" height="15" fill="rgb(224,68,54)" fg:x="71867" fg:w="16"/><text x="47.8245%" y="815.50"></text></g><g><title>globbing_pool-0 (82 samples, 0.05%)</title><rect x="47.5348%" y="885" width="0.0543%" height="15" fill="rgb(209,67,4)" fg:x="71807" fg:w="82"/><text x="47.7848%" y="895.50"></text></g><g><title>__GI___clone (45 samples, 0.03%)</title><rect x="47.5593%" y="869" width="0.0298%" height="15" fill="rgb(228,229,18)" fg:x="71844" fg:w="45"/><text x="47.8093%" y="879.50"></text></g><g><title>start_thread (23 samples, 0.02%)</title><rect x="47.5738%" y="853" width="0.0152%" height="15" fill="rgb(231,89,13)" fg:x="71866" fg:w="23"/><text x="47.8238%" y="863.50"></text></g><g><title>thread_native_entry (22 samples, 0.01%)</title><rect x="47.5745%" y="837" width="0.0146%" height="15" fill="rgb(210,182,18)" fg:x="71867" fg:w="22"/><text x="47.8245%" y="847.50"></text></g><g><title>Monitor::lock (27 samples, 0.02%)</title><rect x="47.6559%" y="837" width="0.0179%" height="15" fill="rgb(240,105,2)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="847.50"></text></g><g><title>Monitor::ILock (27 samples, 0.02%)</title><rect x="47.6559%" y="821" width="0.0179%" height="15" fill="rgb(207,170,50)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="831.50"></text></g><g><title>os::PlatformEvent::park (27 samples, 0.02%)</title><rect x="47.6559%" y="805" width="0.0179%" height="15" fill="rgb(232,133,24)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="815.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="47.6559%" y="789" width="0.0179%" height="15" fill="rgb(235,166,27)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="47.6559%" y="773" width="0.0179%" height="15" fill="rgb(209,19,13)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="783.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="47.6559%" y="757" width="0.0179%" height="15" fill="rgb(226,79,39)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="47.6559%" y="741" width="0.0179%" height="15" fill="rgb(222,163,10)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="751.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="47.6559%" y="725" width="0.0179%" height="15" fill="rgb(214,44,19)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="735.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="47.6559%" y="709" width="0.0179%" height="15" fill="rgb(210,217,13)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="719.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="47.6559%" y="693" width="0.0179%" height="15" fill="rgb(237,61,54)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="703.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="47.6566%" y="677" width="0.0172%" height="15" fill="rgb(226,184,24)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="687.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="47.6566%" y="661" width="0.0172%" height="15" fill="rgb(223,226,4)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="671.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="47.6566%" y="645" width="0.0172%" height="15" fill="rgb(210,26,41)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="655.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="47.6566%" y="629" width="0.0172%" height="15" fill="rgb(220,221,6)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="639.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="47.6566%" y="613" width="0.0172%" height="15" fill="rgb(225,89,49)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="47.6573%" y="597" width="0.0165%" height="15" fill="rgb(218,70,45)" fg:x="71992" fg:w="25"/><text x="47.9073%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="47.6573%" y="581" width="0.0165%" height="15" fill="rgb(238,166,21)" fg:x="71992" fg:w="25"/><text x="47.9073%" y="591.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="47.6573%" y="565" width="0.0165%" height="15" fill="rgb(224,141,44)" fg:x="71992" fg:w="25"/><text x="47.9073%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="47.6745%" y="581" width="0.0165%" height="15" fill="rgb(230,12,49)" fg:x="72018" fg:w="25"/><text x="47.9245%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="47.6745%" y="565" width="0.0165%" height="15" fill="rgb(212,174,12)" fg:x="72018" fg:w="25"/><text x="47.9245%" y="575.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="47.6751%" y="549" width="0.0159%" height="15" fill="rgb(246,67,9)" fg:x="72019" fg:w="24"/><text x="47.9251%" y="559.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="47.6745%" y="709" width="0.0172%" height="15" fill="rgb(239,35,23)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="719.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="47.6745%" y="693" width="0.0172%" height="15" fill="rgb(211,167,0)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="703.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="47.6745%" y="677" width="0.0172%" height="15" fill="rgb(225,119,45)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="687.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="47.6745%" y="661" width="0.0172%" height="15" fill="rgb(210,162,6)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="671.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="47.6745%" y="645" width="0.0172%" height="15" fill="rgb(208,118,35)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="655.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="47.6745%" y="629" width="0.0172%" height="15" fill="rgb(239,4,53)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="639.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="47.6745%" y="613" width="0.0172%" height="15" fill="rgb(213,130,21)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="623.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="47.6745%" y="597" width="0.0172%" height="15" fill="rgb(235,148,0)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="607.50"></text></g><g><title>Monitor::wait (28 samples, 0.02%)</title><rect x="47.6738%" y="821" width="0.0185%" height="15" fill="rgb(244,224,18)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="831.50"></text></g><g><title>Monitor::IWait (28 samples, 0.02%)</title><rect x="47.6738%" y="805" width="0.0185%" height="15" fill="rgb(211,214,4)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="815.50"></text></g><g><title>os::PlatformEvent::park (28 samples, 0.02%)</title><rect x="47.6738%" y="789" width="0.0185%" height="15" fill="rgb(206,119,25)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="799.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.02%)</title><rect x="47.6738%" y="773" width="0.0185%" height="15" fill="rgb(243,93,47)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.02%)</title><rect x="47.6738%" y="757" width="0.0185%" height="15" fill="rgb(224,194,6)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="767.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="47.6738%" y="741" width="0.0185%" height="15" fill="rgb(243,229,6)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="47.6745%" y="725" width="0.0179%" height="15" fill="rgb(207,23,50)" fg:x="72018" fg:w="27"/><text x="47.9245%" y="735.50"></text></g><g><title>JVM_StartThread (64 samples, 0.04%)</title><rect x="47.6513%" y="853" width="0.0424%" height="15" fill="rgb(253,192,32)" fg:x="71983" fg:w="64"/><text x="47.9013%" y="863.50"></text></g><g><title>os::create_thread (30 samples, 0.02%)</title><rect x="47.6738%" y="837" width="0.0199%" height="15" fill="rgb(213,21,6)" fg:x="72017" fg:w="30"/><text x="47.9238%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.02%)</title><rect x="47.6996%" y="629" width="0.0172%" height="15" fill="rgb(243,151,13)" fg:x="72056" fg:w="26"/><text x="47.9496%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="47.6996%" y="613" width="0.0172%" height="15" fill="rgb(233,165,41)" fg:x="72056" fg:w="26"/><text x="47.9496%" y="623.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="47.6996%" y="597" width="0.0172%" height="15" fill="rgb(246,176,45)" fg:x="72056" fg:w="26"/><text x="47.9496%" y="607.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="47.6996%" y="645" width="0.0185%" height="15" fill="rgb(217,170,52)" fg:x="72056" fg:w="28"/><text x="47.9496%" y="655.50"></text></g><g><title>__pthread_cond_wait (31 samples, 0.02%)</title><rect x="47.6990%" y="821" width="0.0205%" height="15" fill="rgb(214,203,54)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.02%)</title><rect x="47.6990%" y="805" width="0.0205%" height="15" fill="rgb(248,215,49)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="815.50"></text></g><g><title>futex_wait_cancelable (31 samples, 0.02%)</title><rect x="47.6990%" y="789" width="0.0205%" height="15" fill="rgb(208,46,10)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="47.6990%" y="773" width="0.0205%" height="15" fill="rgb(254,5,31)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="47.6990%" y="757" width="0.0205%" height="15" fill="rgb(222,104,33)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="767.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.02%)</title><rect x="47.6990%" y="741" width="0.0205%" height="15" fill="rgb(248,49,16)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="751.50"></text></g><g><title>do_futex (31 samples, 0.02%)</title><rect x="47.6990%" y="725" width="0.0205%" height="15" fill="rgb(232,198,41)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="735.50"></text></g><g><title>futex_wait (31 samples, 0.02%)</title><rect x="47.6990%" y="709" width="0.0205%" height="15" fill="rgb(214,125,3)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="719.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.02%)</title><rect x="47.6996%" y="693" width="0.0199%" height="15" fill="rgb(229,220,28)" fg:x="72056" fg:w="30"/><text x="47.9496%" y="703.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="47.6996%" y="677" width="0.0199%" height="15" fill="rgb(222,64,37)" fg:x="72056" fg:w="30"/><text x="47.9496%" y="687.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="47.6996%" y="661" width="0.0199%" height="15" fill="rgb(249,184,13)" fg:x="72056" fg:w="30"/><text x="47.9496%" y="671.50"></text></g><g><title>Unsafe_Park (40 samples, 0.03%)</title><rect x="47.6937%" y="853" width="0.0265%" height="15" fill="rgb(252,176,6)" fg:x="72047" fg:w="40"/><text x="47.9437%" y="863.50"></text></g><g><title>Parker::park (40 samples, 0.03%)</title><rect x="47.6937%" y="837" width="0.0265%" height="15" fill="rgb(228,153,7)" fg:x="72047" fg:w="40"/><text x="47.9437%" y="847.50"></text></g><g><title>[perf-983083.map] (190 samples, 0.13%)</title><rect x="47.5964%" y="869" width="0.1258%" height="15" fill="rgb(242,193,5)" fg:x="71900" fg:w="190"/><text x="47.8464%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.02%)</title><rect x="47.7294%" y="805" width="0.0245%" height="15" fill="rgb(232,140,9)" fg:x="72101" fg:w="37"/><text x="47.9794%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="47.7294%" y="789" width="0.0245%" height="15" fill="rgb(213,222,16)" fg:x="72101" fg:w="37"/><text x="47.9794%" y="799.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="47.7294%" y="773" width="0.0245%" height="15" fill="rgb(222,75,50)" fg:x="72101" fg:w="37"/><text x="47.9794%" y="783.50"></text></g><g><title>ret_from_fork (42 samples, 0.03%)</title><rect x="47.7268%" y="853" width="0.0278%" height="15" fill="rgb(205,180,2)" fg:x="72097" fg:w="42"/><text x="47.9768%" y="863.50"></text></g><g><title>schedule_tail (40 samples, 0.03%)</title><rect x="47.7281%" y="837" width="0.0265%" height="15" fill="rgb(216,34,7)" fg:x="72099" fg:w="40"/><text x="47.9781%" y="847.50"></text></g><g><title>finish_task_switch (39 samples, 0.03%)</title><rect x="47.7287%" y="821" width="0.0258%" height="15" fill="rgb(253,16,32)" fg:x="72100" fg:w="39"/><text x="47.9787%" y="831.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="47.7559%" y="709" width="0.0232%" height="15" fill="rgb(208,97,28)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="719.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="47.7559%" y="693" width="0.0232%" height="15" fill="rgb(225,92,11)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="703.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="47.7559%" y="677" width="0.0232%" height="15" fill="rgb(243,38,12)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="687.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="47.7559%" y="661" width="0.0232%" height="15" fill="rgb(208,139,16)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="671.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="47.7559%" y="645" width="0.0232%" height="15" fill="rgb(227,24,9)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="655.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="47.7559%" y="629" width="0.0232%" height="15" fill="rgb(206,62,11)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="639.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="47.7566%" y="613" width="0.0225%" height="15" fill="rgb(228,134,27)" fg:x="72142" fg:w="34"/><text x="48.0066%" y="623.50"></text></g><g><title>finish_task_switch (34 samples, 0.02%)</title><rect x="47.7566%" y="597" width="0.0225%" height="15" fill="rgb(205,55,33)" fg:x="72142" fg:w="34"/><text x="48.0066%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="47.7566%" y="581" width="0.0225%" height="15" fill="rgb(243,75,43)" fg:x="72142" fg:w="34"/><text x="48.0066%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="47.7585%" y="565" width="0.0205%" height="15" fill="rgb(223,27,42)" fg:x="72145" fg:w="31"/><text x="48.0085%" y="575.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="47.7585%" y="549" width="0.0205%" height="15" fill="rgb(232,189,33)" fg:x="72145" fg:w="31"/><text x="48.0085%" y="559.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.02%)</title><rect x="47.7559%" y="773" width="0.0238%" height="15" fill="rgb(210,9,39)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.02%)</title><rect x="47.7559%" y="757" width="0.0238%" height="15" fill="rgb(242,85,26)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="767.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.02%)</title><rect x="47.7559%" y="741" width="0.0238%" height="15" fill="rgb(248,44,4)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="47.7559%" y="725" width="0.0238%" height="15" fill="rgb(250,96,46)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="735.50"></text></g><g><title>Monitor::wait (38 samples, 0.03%)</title><rect x="47.7552%" y="821" width="0.0252%" height="15" fill="rgb(229,116,26)" fg:x="72140" fg:w="38"/><text x="48.0052%" y="831.50"></text></g><g><title>Monitor::IWait (38 samples, 0.03%)</title><rect x="47.7552%" y="805" width="0.0252%" height="15" fill="rgb(246,94,34)" fg:x="72140" fg:w="38"/><text x="48.0052%" y="815.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.02%)</title><rect x="47.7559%" y="789" width="0.0245%" height="15" fill="rgb(251,73,21)" fg:x="72141" fg:w="37"/><text x="48.0059%" y="799.50"></text></g><g><title>__GI___clone (99 samples, 0.07%)</title><rect x="47.7228%" y="869" width="0.0655%" height="15" fill="rgb(254,121,25)" fg:x="72091" fg:w="99"/><text x="47.9728%" y="879.50"></text></g><g><title>start_thread (51 samples, 0.03%)</title><rect x="47.7546%" y="853" width="0.0338%" height="15" fill="rgb(215,161,49)" fg:x="72139" fg:w="51"/><text x="48.0046%" y="863.50"></text></g><g><title>thread_native_entry (50 samples, 0.03%)</title><rect x="47.7552%" y="837" width="0.0331%" height="15" fill="rgb(221,43,13)" fg:x="72140" fg:w="50"/><text x="48.0052%" y="847.50"></text></g><g><title>globbing_pool-1 (302 samples, 0.20%)</title><rect x="47.5891%" y="885" width="0.1999%" height="15" fill="rgb(249,5,37)" fg:x="71889" fg:w="302"/><text x="47.8391%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (17 samples, 0.01%)</title><rect x="47.8380%" y="853" width="0.0113%" height="15" fill="rgb(226,25,44)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (17 samples, 0.01%)</title><rect x="47.8380%" y="837" width="0.0113%" height="15" fill="rgb(238,189,16)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (17 samples, 0.01%)</title><rect x="47.8380%" y="821" width="0.0113%" height="15" fill="rgb(251,186,8)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (17 samples, 0.01%)</title><rect x="47.8380%" y="805" width="0.0113%" height="15" fill="rgb(254,34,31)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="815.50"></text></g><g><title>TieredThresholdPolicy::compile (17 samples, 0.01%)</title><rect x="47.8380%" y="789" width="0.0113%" height="15" fill="rgb(225,215,27)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (17 samples, 0.01%)</title><rect x="47.8380%" y="773" width="0.0113%" height="15" fill="rgb(221,192,48)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="783.50"></text></g><g><title>CompileBroker::compile_method (17 samples, 0.01%)</title><rect x="47.8380%" y="757" width="0.0113%" height="15" fill="rgb(219,137,20)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (17 samples, 0.01%)</title><rect x="47.8380%" y="741" width="0.0113%" height="15" fill="rgb(219,84,11)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="751.50"></text></g><g><title>Monitor::lock (16 samples, 0.01%)</title><rect x="47.8386%" y="725" width="0.0106%" height="15" fill="rgb(224,10,23)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="735.50"></text></g><g><title>Monitor::ILock (16 samples, 0.01%)</title><rect x="47.8386%" y="709" width="0.0106%" height="15" fill="rgb(248,22,39)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="719.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="47.8386%" y="693" width="0.0106%" height="15" fill="rgb(212,154,20)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="703.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="47.8386%" y="677" width="0.0106%" height="15" fill="rgb(236,199,50)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="47.8386%" y="661" width="0.0106%" height="15" fill="rgb(211,9,17)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="671.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="47.8386%" y="645" width="0.0106%" height="15" fill="rgb(243,216,36)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="47.8386%" y="629" width="0.0106%" height="15" fill="rgb(250,2,10)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="639.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="47.8386%" y="613" width="0.0106%" height="15" fill="rgb(226,50,48)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="623.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="47.8386%" y="597" width="0.0106%" height="15" fill="rgb(243,81,16)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="607.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="47.8386%" y="581" width="0.0106%" height="15" fill="rgb(250,14,2)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="591.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="47.8386%" y="565" width="0.0106%" height="15" fill="rgb(233,135,29)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="575.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="47.8386%" y="549" width="0.0106%" height="15" fill="rgb(224,64,43)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="47.8558%" y="597" width="0.0338%" height="15" fill="rgb(238,84,13)" fg:x="72292" fg:w="51"/><text x="48.1058%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="47.8565%" y="581" width="0.0331%" height="15" fill="rgb(253,48,26)" fg:x="72293" fg:w="50"/><text x="48.1065%" y="591.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="47.8565%" y="565" width="0.0331%" height="15" fill="rgb(205,223,31)" fg:x="72293" fg:w="50"/><text x="48.1065%" y="575.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.04%)</title><rect x="47.8552%" y="661" width="0.0357%" height="15" fill="rgb(221,41,32)" fg:x="72291" fg:w="54"/><text x="48.1052%" y="671.50"></text></g><g><title>schedule (54 samples, 0.04%)</title><rect x="47.8552%" y="645" width="0.0357%" height="15" fill="rgb(213,158,31)" fg:x="72291" fg:w="54"/><text x="48.1052%" y="655.50"></text></g><g><title>__schedule (54 samples, 0.04%)</title><rect x="47.8552%" y="629" width="0.0357%" height="15" fill="rgb(245,126,43)" fg:x="72291" fg:w="54"/><text x="48.1052%" y="639.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="47.8558%" y="613" width="0.0351%" height="15" fill="rgb(227,7,22)" fg:x="72292" fg:w="53"/><text x="48.1058%" y="623.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.04%)</title><rect x="47.8539%" y="789" width="0.0377%" height="15" fill="rgb(252,90,44)" fg:x="72289" fg:w="57"/><text x="48.1039%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.04%)</title><rect x="47.8539%" y="773" width="0.0377%" height="15" fill="rgb(253,91,0)" fg:x="72289" fg:w="57"/><text x="48.1039%" y="783.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.04%)</title><rect x="47.8539%" y="757" width="0.0377%" height="15" fill="rgb(252,175,49)" fg:x="72289" fg:w="57"/><text x="48.1039%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.04%)</title><rect x="47.8545%" y="741" width="0.0371%" height="15" fill="rgb(246,150,1)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="751.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="47.8545%" y="725" width="0.0371%" height="15" fill="rgb(241,192,25)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="735.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="47.8545%" y="709" width="0.0371%" height="15" fill="rgb(239,187,11)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="719.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="47.8545%" y="693" width="0.0371%" height="15" fill="rgb(218,202,51)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="703.50"></text></g><g><title>futex_wait (55 samples, 0.04%)</title><rect x="47.8552%" y="677" width="0.0364%" height="15" fill="rgb(225,176,8)" fg:x="72291" fg:w="55"/><text x="48.1052%" y="687.50"></text></g><g><title>Monitor::lock (60 samples, 0.04%)</title><rect x="47.8525%" y="837" width="0.0397%" height="15" fill="rgb(219,122,41)" fg:x="72287" fg:w="60"/><text x="48.1025%" y="847.50"></text></g><g><title>Monitor::ILock (60 samples, 0.04%)</title><rect x="47.8525%" y="821" width="0.0397%" height="15" fill="rgb(248,140,20)" fg:x="72287" fg:w="60"/><text x="48.1025%" y="831.50"></text></g><g><title>os::PlatformEvent::park (59 samples, 0.04%)</title><rect x="47.8532%" y="805" width="0.0391%" height="15" fill="rgb(245,41,37)" fg:x="72288" fg:w="59"/><text x="48.1032%" y="815.50"></text></g><g><title>Monitor::wait (17 samples, 0.01%)</title><rect x="47.8942%" y="821" width="0.0113%" height="15" fill="rgb(235,82,39)" fg:x="72350" fg:w="17"/><text x="48.1442%" y="831.50"></text></g><g><title>Monitor::IWait (17 samples, 0.01%)</title><rect x="47.8942%" y="805" width="0.0113%" height="15" fill="rgb(230,108,42)" fg:x="72350" fg:w="17"/><text x="48.1442%" y="815.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="47.8942%" y="789" width="0.0113%" height="15" fill="rgb(215,150,50)" fg:x="72350" fg:w="17"/><text x="48.1442%" y="799.50"></text></g><g><title>JVM_StartThread (88 samples, 0.06%)</title><rect x="47.8492%" y="853" width="0.0583%" height="15" fill="rgb(233,212,5)" fg:x="72282" fg:w="88"/><text x="48.0992%" y="863.50"></text></g><g><title>os::create_thread (20 samples, 0.01%)</title><rect x="47.8942%" y="837" width="0.0132%" height="15" fill="rgb(245,80,22)" fg:x="72350" fg:w="20"/><text x="48.1442%" y="847.50"></text></g><g><title>Unsafe_Park (18 samples, 0.01%)</title><rect x="47.9081%" y="853" width="0.0119%" height="15" fill="rgb(238,129,16)" fg:x="72371" fg:w="18"/><text x="48.1581%" y="863.50"></text></g><g><title>Parker::park (18 samples, 0.01%)</title><rect x="47.9081%" y="837" width="0.0119%" height="15" fill="rgb(240,19,0)" fg:x="72371" fg:w="18"/><text x="48.1581%" y="847.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="47.9088%" y="821" width="0.0113%" height="15" fill="rgb(232,42,35)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="47.9088%" y="805" width="0.0113%" height="15" fill="rgb(223,130,24)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="815.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="47.9088%" y="789" width="0.0113%" height="15" fill="rgb(237,16,22)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="47.9088%" y="773" width="0.0113%" height="15" fill="rgb(248,192,20)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="783.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="47.9088%" y="757" width="0.0113%" height="15" fill="rgb(233,167,2)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="767.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="47.9088%" y="741" width="0.0113%" height="15" fill="rgb(252,71,44)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="751.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="47.9088%" y="725" width="0.0113%" height="15" fill="rgb(238,37,47)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="735.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="47.9088%" y="709" width="0.0113%" height="15" fill="rgb(214,202,54)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="719.50"></text></g><g><title>[perf-983083.map] (195 samples, 0.13%)</title><rect x="47.7976%" y="869" width="0.1291%" height="15" fill="rgb(254,165,40)" fg:x="72204" fg:w="195"/><text x="48.0476%" y="879.50"></text></g><g><title>schedule_tail (43 samples, 0.03%)</title><rect x="47.9340%" y="837" width="0.0285%" height="15" fill="rgb(246,173,38)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="847.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="47.9340%" y="821" width="0.0285%" height="15" fill="rgb(215,3,27)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.03%)</title><rect x="47.9340%" y="805" width="0.0285%" height="15" fill="rgb(239,169,51)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.03%)</title><rect x="47.9340%" y="789" width="0.0285%" height="15" fill="rgb(212,5,25)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="799.50"></text></g><g><title>native_write_msr (43 samples, 0.03%)</title><rect x="47.9340%" y="773" width="0.0285%" height="15" fill="rgb(243,45,17)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="783.50"></text></g><g><title>ret_from_fork (49 samples, 0.03%)</title><rect x="47.9320%" y="853" width="0.0324%" height="15" fill="rgb(242,97,9)" fg:x="72407" fg:w="49"/><text x="48.1820%" y="863.50"></text></g><g><title>__GI___clone (73 samples, 0.05%)</title><rect x="47.9280%" y="869" width="0.0483%" height="15" fill="rgb(228,71,31)" fg:x="72401" fg:w="73"/><text x="48.1780%" y="879.50"></text></g><g><title>start_thread (18 samples, 0.01%)</title><rect x="47.9644%" y="853" width="0.0119%" height="15" fill="rgb(252,184,16)" fg:x="72456" fg:w="18"/><text x="48.2144%" y="863.50"></text></g><g><title>thread_native_entry (18 samples, 0.01%)</title><rect x="47.9644%" y="837" width="0.0119%" height="15" fill="rgb(236,169,46)" fg:x="72456" fg:w="18"/><text x="48.2144%" y="847.50"></text></g><g><title>globbing_pool-2 (284 samples, 0.19%)</title><rect x="47.7890%" y="885" width="0.1880%" height="15" fill="rgb(207,17,47)" fg:x="72191" fg:w="284"/><text x="48.0390%" y="895.50"></text></g><g><title>[libunix_jni.so] (18 samples, 0.01%)</title><rect x="47.9790%" y="869" width="0.0119%" height="15" fill="rgb(206,201,28)" fg:x="72478" fg:w="18"/><text x="48.2290%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.02%)</title><rect x="48.0465%" y="629" width="0.0212%" height="15" fill="rgb(224,184,23)" fg:x="72580" fg:w="32"/><text x="48.2965%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="48.0472%" y="613" width="0.0205%" height="15" fill="rgb(208,139,48)" fg:x="72581" fg:w="31"/><text x="48.2972%" y="623.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="48.0472%" y="597" width="0.0205%" height="15" fill="rgb(208,130,10)" fg:x="72581" fg:w="31"/><text x="48.2972%" y="607.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="48.0458%" y="757" width="0.0238%" height="15" fill="rgb(211,213,45)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="767.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="48.0458%" y="741" width="0.0238%" height="15" fill="rgb(235,100,30)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="751.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="48.0458%" y="725" width="0.0238%" height="15" fill="rgb(206,144,31)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="735.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="48.0458%" y="709" width="0.0238%" height="15" fill="rgb(224,200,26)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="719.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="48.0458%" y="693" width="0.0238%" height="15" fill="rgb(247,104,53)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="703.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="48.0458%" y="677" width="0.0238%" height="15" fill="rgb(220,14,17)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="687.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="48.0458%" y="661" width="0.0238%" height="15" fill="rgb(230,140,40)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="671.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="48.0465%" y="645" width="0.0232%" height="15" fill="rgb(229,2,41)" fg:x="72580" fg:w="35"/><text x="48.2965%" y="655.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.03%)</title><rect x="48.0458%" y="821" width="0.0252%" height="15" fill="rgb(232,89,16)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.03%)</title><rect x="48.0458%" y="805" width="0.0252%" height="15" fill="rgb(247,59,52)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="815.50"></text></g><g><title>futex_wait_cancelable (38 samples, 0.03%)</title><rect x="48.0458%" y="789" width="0.0252%" height="15" fill="rgb(226,110,21)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="48.0458%" y="773" width="0.0252%" height="15" fill="rgb(224,176,43)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="783.50"></text></g><g><title>Unsafe_Park (39 samples, 0.03%)</title><rect x="48.0458%" y="853" width="0.0258%" height="15" fill="rgb(221,73,6)" fg:x="72579" fg:w="39"/><text x="48.2958%" y="863.50"></text></g><g><title>Parker::park (39 samples, 0.03%)</title><rect x="48.0458%" y="837" width="0.0258%" height="15" fill="rgb(232,78,19)" fg:x="72579" fg:w="39"/><text x="48.2958%" y="847.50"></text></g><g><title>[perf-983083.map] (126 samples, 0.08%)</title><rect x="47.9909%" y="869" width="0.0834%" height="15" fill="rgb(233,112,48)" fg:x="72496" fg:w="126"/><text x="48.2409%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.0776%" y="805" width="0.0119%" height="15" fill="rgb(243,131,47)" fg:x="72627" fg:w="18"/><text x="48.3276%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.0776%" y="789" width="0.0119%" height="15" fill="rgb(226,51,1)" fg:x="72627" fg:w="18"/><text x="48.3276%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.0776%" y="773" width="0.0119%" height="15" fill="rgb(247,58,7)" fg:x="72627" fg:w="18"/><text x="48.3276%" y="783.50"></text></g><g><title>ret_from_fork (21 samples, 0.01%)</title><rect x="48.0763%" y="853" width="0.0139%" height="15" fill="rgb(209,7,32)" fg:x="72625" fg:w="21"/><text x="48.3263%" y="863.50"></text></g><g><title>schedule_tail (19 samples, 0.01%)</title><rect x="48.0776%" y="837" width="0.0126%" height="15" fill="rgb(209,39,41)" fg:x="72627" fg:w="19"/><text x="48.3276%" y="847.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="48.0776%" y="821" width="0.0126%" height="15" fill="rgb(226,182,46)" fg:x="72627" fg:w="19"/><text x="48.3276%" y="831.50"></text></g><g><title>__GI___clone (26 samples, 0.02%)</title><rect x="48.0750%" y="869" width="0.0172%" height="15" fill="rgb(230,219,10)" fg:x="72623" fg:w="26"/><text x="48.3250%" y="879.50"></text></g><g><title>globbing_pool-3 (176 samples, 0.12%)</title><rect x="47.9770%" y="885" width="0.1165%" height="15" fill="rgb(227,175,30)" fg:x="72475" fg:w="176"/><text x="48.2270%" y="895.50"></text></g><g><title>[libunix_jni.so] (22 samples, 0.01%)</title><rect x="48.0935%" y="869" width="0.0146%" height="15" fill="rgb(217,2,50)" fg:x="72651" fg:w="22"/><text x="48.3435%" y="879.50"></text></g><g><title>JVM_StartThread (22 samples, 0.01%)</title><rect x="48.1379%" y="853" width="0.0146%" height="15" fill="rgb(229,160,0)" fg:x="72718" fg:w="22"/><text x="48.3879%" y="863.50"></text></g><g><title>[perf-983083.map] (77 samples, 0.05%)</title><rect x="48.1081%" y="869" width="0.0510%" height="15" fill="rgb(207,78,37)" fg:x="72673" fg:w="77"/><text x="48.3581%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.1617%" y="805" width="0.0119%" height="15" fill="rgb(225,57,0)" fg:x="72754" fg:w="18"/><text x="48.4117%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.1617%" y="789" width="0.0119%" height="15" fill="rgb(232,154,2)" fg:x="72754" fg:w="18"/><text x="48.4117%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.1617%" y="773" width="0.0119%" height="15" fill="rgb(241,212,25)" fg:x="72754" fg:w="18"/><text x="48.4117%" y="783.50"></text></g><g><title>ret_from_fork (21 samples, 0.01%)</title><rect x="48.1617%" y="853" width="0.0139%" height="15" fill="rgb(226,69,20)" fg:x="72754" fg:w="21"/><text x="48.4117%" y="863.50"></text></g><g><title>schedule_tail (21 samples, 0.01%)</title><rect x="48.1617%" y="837" width="0.0139%" height="15" fill="rgb(247,184,54)" fg:x="72754" fg:w="21"/><text x="48.4117%" y="847.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="48.1617%" y="821" width="0.0139%" height="15" fill="rgb(210,145,0)" fg:x="72754" fg:w="21"/><text x="48.4117%" y="831.50"></text></g><g><title>globbing_pool-4 (126 samples, 0.08%)</title><rect x="48.0935%" y="885" width="0.0834%" height="15" fill="rgb(253,82,12)" fg:x="72651" fg:w="126"/><text x="48.3435%" y="895.50"></text></g><g><title>__GI___clone (26 samples, 0.02%)</title><rect x="48.1597%" y="869" width="0.0172%" height="15" fill="rgb(245,42,11)" fg:x="72751" fg:w="26"/><text x="48.4097%" y="879.50"></text></g><g><title>Monitor::lock (23 samples, 0.02%)</title><rect x="48.2107%" y="725" width="0.0152%" height="15" fill="rgb(219,147,32)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="735.50"></text></g><g><title>Monitor::ILock (23 samples, 0.02%)</title><rect x="48.2107%" y="709" width="0.0152%" height="15" fill="rgb(246,12,7)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="719.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="48.2107%" y="693" width="0.0152%" height="15" fill="rgb(243,50,9)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="703.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="48.2107%" y="677" width="0.0152%" height="15" fill="rgb(219,149,6)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="48.2107%" y="661" width="0.0152%" height="15" fill="rgb(241,51,42)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="671.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.01%)</title><rect x="48.2113%" y="645" width="0.0146%" height="15" fill="rgb(226,128,27)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="48.2113%" y="629" width="0.0146%" height="15" fill="rgb(244,144,4)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="639.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="48.2113%" y="613" width="0.0146%" height="15" fill="rgb(221,4,13)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="623.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.01%)</title><rect x="48.2113%" y="597" width="0.0146%" height="15" fill="rgb(208,170,28)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="607.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="48.2113%" y="581" width="0.0146%" height="15" fill="rgb(226,131,13)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="591.50"></text></g><g><title>futex_wait (22 samples, 0.01%)</title><rect x="48.2113%" y="565" width="0.0146%" height="15" fill="rgb(215,72,41)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="575.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.01%)</title><rect x="48.2113%" y="549" width="0.0146%" height="15" fill="rgb(243,108,20)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="559.50"></text></g><g><title>schedule (22 samples, 0.01%)</title><rect x="48.2113%" y="533" width="0.0146%" height="15" fill="rgb(230,189,17)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="543.50"></text></g><g><title>__schedule (22 samples, 0.01%)</title><rect x="48.2113%" y="517" width="0.0146%" height="15" fill="rgb(220,50,17)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="527.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="48.2120%" y="501" width="0.0139%" height="15" fill="rgb(248,152,48)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="48.2120%" y="485" width="0.0139%" height="15" fill="rgb(244,91,11)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="48.2120%" y="469" width="0.0139%" height="15" fill="rgb(220,157,5)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="479.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="48.2120%" y="453" width="0.0139%" height="15" fill="rgb(253,137,8)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="463.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (25 samples, 0.02%)</title><rect x="48.2107%" y="853" width="0.0165%" height="15" fill="rgb(217,137,51)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (25 samples, 0.02%)</title><rect x="48.2107%" y="837" width="0.0165%" height="15" fill="rgb(218,209,53)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (25 samples, 0.02%)</title><rect x="48.2107%" y="821" width="0.0165%" height="15" fill="rgb(249,137,25)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (25 samples, 0.02%)</title><rect x="48.2107%" y="805" width="0.0165%" height="15" fill="rgb(239,155,26)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="815.50"></text></g><g><title>TieredThresholdPolicy::compile (25 samples, 0.02%)</title><rect x="48.2107%" y="789" width="0.0165%" height="15" fill="rgb(227,85,46)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (25 samples, 0.02%)</title><rect x="48.2107%" y="773" width="0.0165%" height="15" fill="rgb(251,107,43)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="783.50"></text></g><g><title>CompileBroker::compile_method (25 samples, 0.02%)</title><rect x="48.2107%" y="757" width="0.0165%" height="15" fill="rgb(234,170,33)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (25 samples, 0.02%)</title><rect x="48.2107%" y="741" width="0.0165%" height="15" fill="rgb(206,29,35)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="48.2292%" y="629" width="0.0258%" height="15" fill="rgb(227,138,25)" fg:x="72856" fg:w="39"/><text x="48.4792%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="48.2292%" y="613" width="0.0258%" height="15" fill="rgb(249,131,35)" fg:x="72856" fg:w="39"/><text x="48.4792%" y="623.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="48.2292%" y="597" width="0.0258%" height="15" fill="rgb(239,6,40)" fg:x="72856" fg:w="39"/><text x="48.4792%" y="607.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="48.2285%" y="645" width="0.0278%" height="15" fill="rgb(246,136,47)" fg:x="72855" fg:w="42"/><text x="48.4785%" y="655.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="48.2279%" y="757" width="0.0291%" height="15" fill="rgb(253,58,26)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="767.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.03%)</title><rect x="48.2279%" y="741" width="0.0291%" height="15" fill="rgb(237,141,10)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="751.50"></text></g><g><title>do_futex (44 samples, 0.03%)</title><rect x="48.2279%" y="725" width="0.0291%" height="15" fill="rgb(234,156,12)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="735.50"></text></g><g><title>futex_wait (44 samples, 0.03%)</title><rect x="48.2279%" y="709" width="0.0291%" height="15" fill="rgb(243,224,36)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="719.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.03%)</title><rect x="48.2285%" y="693" width="0.0285%" height="15" fill="rgb(205,229,51)" fg:x="72855" fg:w="43"/><text x="48.4785%" y="703.50"></text></g><g><title>schedule (43 samples, 0.03%)</title><rect x="48.2285%" y="677" width="0.0285%" height="15" fill="rgb(223,189,4)" fg:x="72855" fg:w="43"/><text x="48.4785%" y="687.50"></text></g><g><title>__schedule (43 samples, 0.03%)</title><rect x="48.2285%" y="661" width="0.0285%" height="15" fill="rgb(249,167,54)" fg:x="72855" fg:w="43"/><text x="48.4785%" y="671.50"></text></g><g><title>__pthread_cond_wait (45 samples, 0.03%)</title><rect x="48.2279%" y="821" width="0.0298%" height="15" fill="rgb(218,34,28)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (45 samples, 0.03%)</title><rect x="48.2279%" y="805" width="0.0298%" height="15" fill="rgb(232,109,42)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="815.50"></text></g><g><title>futex_wait_cancelable (45 samples, 0.03%)</title><rect x="48.2279%" y="789" width="0.0298%" height="15" fill="rgb(248,214,46)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="48.2279%" y="773" width="0.0298%" height="15" fill="rgb(244,216,40)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="783.50"></text></g><g><title>Unsafe_Park (46 samples, 0.03%)</title><rect x="48.2279%" y="853" width="0.0305%" height="15" fill="rgb(231,226,31)" fg:x="72854" fg:w="46"/><text x="48.4779%" y="863.50"></text></g><g><title>Parker::park (46 samples, 0.03%)</title><rect x="48.2279%" y="837" width="0.0305%" height="15" fill="rgb(238,38,43)" fg:x="72854" fg:w="46"/><text x="48.4779%" y="847.50"></text></g><g><title>[perf-983083.map] (125 samples, 0.08%)</title><rect x="48.1829%" y="869" width="0.0827%" height="15" fill="rgb(208,88,43)" fg:x="72786" fg:w="125"/><text x="48.4329%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="48.2676%" y="805" width="0.0238%" height="15" fill="rgb(205,136,37)" fg:x="72914" fg:w="36"/><text x="48.5176%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="48.2676%" y="789" width="0.0238%" height="15" fill="rgb(237,34,14)" fg:x="72914" fg:w="36"/><text x="48.5176%" y="799.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="48.2676%" y="773" width="0.0238%" height="15" fill="rgb(236,193,44)" fg:x="72914" fg:w="36"/><text x="48.5176%" y="783.50"></text></g><g><title>schedule_tail (39 samples, 0.03%)</title><rect x="48.2669%" y="837" width="0.0258%" height="15" fill="rgb(231,48,10)" fg:x="72913" fg:w="39"/><text x="48.5169%" y="847.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="48.2676%" y="821" width="0.0252%" height="15" fill="rgb(213,141,34)" fg:x="72914" fg:w="38"/><text x="48.5176%" y="831.50"></text></g><g><title>ret_from_fork (42 samples, 0.03%)</title><rect x="48.2663%" y="853" width="0.0278%" height="15" fill="rgb(249,130,34)" fg:x="72912" fg:w="42"/><text x="48.5163%" y="863.50"></text></g><g><title>globbing_pool-5 (181 samples, 0.12%)</title><rect x="48.1769%" y="885" width="0.1198%" height="15" fill="rgb(219,42,41)" fg:x="72777" fg:w="181"/><text x="48.4269%" y="895.50"></text></g><g><title>__GI___clone (47 samples, 0.03%)</title><rect x="48.2656%" y="869" width="0.0311%" height="15" fill="rgb(224,100,54)" fg:x="72911" fg:w="47"/><text x="48.5156%" y="879.50"></text></g><g><title>[libunix_jni.so] (28 samples, 0.02%)</title><rect x="48.2967%" y="869" width="0.0185%" height="15" fill="rgb(229,200,27)" fg:x="72958" fg:w="28"/><text x="48.5467%" y="879.50"></text></g><g><title>JVM_StartThread (19 samples, 0.01%)</title><rect x="48.3656%" y="853" width="0.0126%" height="15" fill="rgb(217,118,10)" fg:x="73062" fg:w="19"/><text x="48.6156%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="48.3801%" y="629" width="0.0338%" height="15" fill="rgb(206,22,3)" fg:x="73084" fg:w="51"/><text x="48.6301%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.03%)</title><rect x="48.3801%" y="613" width="0.0338%" height="15" fill="rgb(232,163,46)" fg:x="73084" fg:w="51"/><text x="48.6301%" y="623.50"></text></g><g><title>native_write_msr (51 samples, 0.03%)</title><rect x="48.3801%" y="597" width="0.0338%" height="15" fill="rgb(206,95,13)" fg:x="73084" fg:w="51"/><text x="48.6301%" y="607.50"></text></g><g><title>finish_task_switch (57 samples, 0.04%)</title><rect x="48.3801%" y="645" width="0.0377%" height="15" fill="rgb(253,154,18)" fg:x="73084" fg:w="57"/><text x="48.6301%" y="655.50"></text></g><g><title>do_syscall_64 (61 samples, 0.04%)</title><rect x="48.3781%" y="757" width="0.0404%" height="15" fill="rgb(219,32,23)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="767.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.04%)</title><rect x="48.3781%" y="741" width="0.0404%" height="15" fill="rgb(230,191,45)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="751.50"></text></g><g><title>do_futex (61 samples, 0.04%)</title><rect x="48.3781%" y="725" width="0.0404%" height="15" fill="rgb(229,64,36)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="735.50"></text></g><g><title>futex_wait (61 samples, 0.04%)</title><rect x="48.3781%" y="709" width="0.0404%" height="15" fill="rgb(205,129,25)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="719.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.04%)</title><rect x="48.3788%" y="693" width="0.0397%" height="15" fill="rgb(254,112,7)" fg:x="73082" fg:w="60"/><text x="48.6288%" y="703.50"></text></g><g><title>schedule (60 samples, 0.04%)</title><rect x="48.3788%" y="677" width="0.0397%" height="15" fill="rgb(226,53,48)" fg:x="73082" fg:w="60"/><text x="48.6288%" y="687.50"></text></g><g><title>__schedule (60 samples, 0.04%)</title><rect x="48.3788%" y="661" width="0.0397%" height="15" fill="rgb(214,153,38)" fg:x="73082" fg:w="60"/><text x="48.6288%" y="671.50"></text></g><g><title>Unsafe_Park (63 samples, 0.04%)</title><rect x="48.3781%" y="853" width="0.0417%" height="15" fill="rgb(243,101,7)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="863.50"></text></g><g><title>Parker::park (63 samples, 0.04%)</title><rect x="48.3781%" y="837" width="0.0417%" height="15" fill="rgb(240,140,22)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="847.50"></text></g><g><title>__pthread_cond_wait (63 samples, 0.04%)</title><rect x="48.3781%" y="821" width="0.0417%" height="15" fill="rgb(235,114,2)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (63 samples, 0.04%)</title><rect x="48.3781%" y="805" width="0.0417%" height="15" fill="rgb(242,59,12)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="815.50"></text></g><g><title>futex_wait_cancelable (63 samples, 0.04%)</title><rect x="48.3781%" y="789" width="0.0417%" height="15" fill="rgb(252,134,9)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="48.3781%" y="773" width="0.0417%" height="15" fill="rgb(236,4,44)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="783.50"></text></g><g><title>[perf-983083.map] (159 samples, 0.11%)</title><rect x="48.3153%" y="869" width="0.1053%" height="15" fill="rgb(254,172,41)" fg:x="72986" fg:w="159"/><text x="48.5653%" y="879.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="48.4238%" y="853" width="0.0132%" height="15" fill="rgb(244,63,20)" fg:x="73150" fg:w="20"/><text x="48.6738%" y="863.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="48.4238%" y="837" width="0.0132%" height="15" fill="rgb(250,73,31)" fg:x="73150" fg:w="20"/><text x="48.6738%" y="847.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="48.4238%" y="821" width="0.0132%" height="15" fill="rgb(241,38,36)" fg:x="73150" fg:w="20"/><text x="48.6738%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.4251%" y="805" width="0.0119%" height="15" fill="rgb(245,211,2)" fg:x="73152" fg:w="18"/><text x="48.6751%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.4251%" y="789" width="0.0119%" height="15" fill="rgb(206,120,28)" fg:x="73152" fg:w="18"/><text x="48.6751%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.4251%" y="773" width="0.0119%" height="15" fill="rgb(211,59,34)" fg:x="73152" fg:w="18"/><text x="48.6751%" y="783.50"></text></g><g><title>__GI___clone (40 samples, 0.03%)</title><rect x="48.4205%" y="869" width="0.0265%" height="15" fill="rgb(233,168,5)" fg:x="73145" fg:w="40"/><text x="48.6705%" y="879.50"></text></g><g><title>globbing_pool-6 (229 samples, 0.15%)</title><rect x="48.2967%" y="885" width="0.1516%" height="15" fill="rgb(234,33,13)" fg:x="72958" fg:w="229"/><text x="48.5467%" y="895.50"></text></g><g><title>JVM_StartThread (24 samples, 0.02%)</title><rect x="48.4715%" y="853" width="0.0159%" height="15" fill="rgb(231,150,26)" fg:x="73222" fg:w="24"/><text x="48.7215%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="48.4887%" y="629" width="0.0218%" height="15" fill="rgb(217,191,4)" fg:x="73248" fg:w="33"/><text x="48.7387%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.02%)</title><rect x="48.4894%" y="613" width="0.0212%" height="15" fill="rgb(246,198,38)" fg:x="73249" fg:w="32"/><text x="48.7394%" y="623.50"></text></g><g><title>native_write_msr (32 samples, 0.02%)</title><rect x="48.4894%" y="597" width="0.0212%" height="15" fill="rgb(245,64,37)" fg:x="73249" fg:w="32"/><text x="48.7394%" y="607.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="48.4887%" y="757" width="0.0238%" height="15" fill="rgb(250,30,36)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="767.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="48.4887%" y="741" width="0.0238%" height="15" fill="rgb(217,86,53)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="751.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="48.4887%" y="725" width="0.0238%" height="15" fill="rgb(228,157,16)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="735.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="48.4887%" y="709" width="0.0238%" height="15" fill="rgb(217,59,31)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="719.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="48.4887%" y="693" width="0.0238%" height="15" fill="rgb(237,138,41)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="703.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="48.4887%" y="677" width="0.0238%" height="15" fill="rgb(227,91,49)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="687.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="48.4887%" y="661" width="0.0238%" height="15" fill="rgb(247,21,44)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="671.50"></text></g><g><title>finish_task_switch (36 samples, 0.02%)</title><rect x="48.4887%" y="645" width="0.0238%" height="15" fill="rgb(219,210,51)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="655.50"></text></g><g><title>Unsafe_Park (40 samples, 0.03%)</title><rect x="48.4880%" y="853" width="0.0265%" height="15" fill="rgb(209,140,6)" fg:x="73247" fg:w="40"/><text x="48.7380%" y="863.50"></text></g><g><title>Parker::park (40 samples, 0.03%)</title><rect x="48.4880%" y="837" width="0.0265%" height="15" fill="rgb(221,188,24)" fg:x="73247" fg:w="40"/><text x="48.7380%" y="847.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.03%)</title><rect x="48.4887%" y="821" width="0.0258%" height="15" fill="rgb(232,154,20)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.03%)</title><rect x="48.4887%" y="805" width="0.0258%" height="15" fill="rgb(244,137,50)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="815.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.03%)</title><rect x="48.4887%" y="789" width="0.0258%" height="15" fill="rgb(225,185,43)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="48.4887%" y="773" width="0.0258%" height="15" fill="rgb(213,205,38)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="783.50"></text></g><g><title>[perf-983083.map] (94 samples, 0.06%)</title><rect x="48.4530%" y="869" width="0.0622%" height="15" fill="rgb(236,73,12)" fg:x="73194" fg:w="94"/><text x="48.7030%" y="879.50"></text></g><g><title>globbing_pool-7 (128 samples, 0.08%)</title><rect x="48.4483%" y="885" width="0.0847%" height="15" fill="rgb(235,219,13)" fg:x="73187" fg:w="128"/><text x="48.6983%" y="895.50"></text></g><g><title>__GI___clone (26 samples, 0.02%)</title><rect x="48.5158%" y="869" width="0.0172%" height="15" fill="rgb(218,59,36)" fg:x="73289" fg:w="26"/><text x="48.7658%" y="879.50"></text></g><g><title>do_syscall_64 (43 samples, 0.03%)</title><rect x="48.5814%" y="757" width="0.0285%" height="15" fill="rgb(205,110,39)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="767.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.03%)</title><rect x="48.5814%" y="741" width="0.0285%" height="15" fill="rgb(218,206,42)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="751.50"></text></g><g><title>do_futex (43 samples, 0.03%)</title><rect x="48.5814%" y="725" width="0.0285%" height="15" fill="rgb(248,125,24)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="735.50"></text></g><g><title>futex_wait (43 samples, 0.03%)</title><rect x="48.5814%" y="709" width="0.0285%" height="15" fill="rgb(242,28,27)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="719.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.03%)</title><rect x="48.5814%" y="693" width="0.0285%" height="15" fill="rgb(216,228,15)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="703.50"></text></g><g><title>schedule (43 samples, 0.03%)</title><rect x="48.5814%" y="677" width="0.0285%" height="15" fill="rgb(235,116,46)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="687.50"></text></g><g><title>__schedule (43 samples, 0.03%)</title><rect x="48.5814%" y="661" width="0.0285%" height="15" fill="rgb(224,18,32)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="671.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="48.5820%" y="645" width="0.0278%" height="15" fill="rgb(252,5,12)" fg:x="73389" fg:w="42"/><text x="48.8320%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="48.5820%" y="629" width="0.0278%" height="15" fill="rgb(251,36,5)" fg:x="73389" fg:w="42"/><text x="48.8320%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="48.5820%" y="613" width="0.0278%" height="15" fill="rgb(217,53,14)" fg:x="73389" fg:w="42"/><text x="48.8320%" y="623.50"></text></g><g><title>native_write_msr (41 samples, 0.03%)</title><rect x="48.5827%" y="597" width="0.0271%" height="15" fill="rgb(215,86,45)" fg:x="73390" fg:w="41"/><text x="48.8327%" y="607.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.03%)</title><rect x="48.5801%" y="821" width="0.0311%" height="15" fill="rgb(242,169,11)" fg:x="73386" fg:w="47"/><text x="48.8301%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.03%)</title><rect x="48.5801%" y="805" width="0.0311%" height="15" fill="rgb(211,213,45)" fg:x="73386" fg:w="47"/><text x="48.8301%" y="815.50"></text></g><g><title>futex_wait_cancelable (45 samples, 0.03%)</title><rect x="48.5814%" y="789" width="0.0298%" height="15" fill="rgb(205,88,11)" fg:x="73388" fg:w="45"/><text x="48.8314%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="48.5814%" y="773" width="0.0298%" height="15" fill="rgb(252,69,26)" fg:x="73388" fg:w="45"/><text x="48.8314%" y="783.50"></text></g><g><title>Unsafe_Park (51 samples, 0.03%)</title><rect x="48.5781%" y="853" width="0.0338%" height="15" fill="rgb(246,123,37)" fg:x="73383" fg:w="51"/><text x="48.8281%" y="863.50"></text></g><g><title>Parker::park (50 samples, 0.03%)</title><rect x="48.5787%" y="837" width="0.0331%" height="15" fill="rgb(212,205,5)" fg:x="73384" fg:w="50"/><text x="48.8287%" y="847.50"></text></g><g><title>[perf-983083.map] (124 samples, 0.08%)</title><rect x="48.5364%" y="869" width="0.0821%" height="15" fill="rgb(253,148,0)" fg:x="73320" fg:w="124"/><text x="48.7864%" y="879.50"></text></g><g><title>ret_from_fork (18 samples, 0.01%)</title><rect x="48.6218%" y="853" width="0.0119%" height="15" fill="rgb(239,22,4)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="863.50"></text></g><g><title>schedule_tail (18 samples, 0.01%)</title><rect x="48.6218%" y="837" width="0.0119%" height="15" fill="rgb(226,26,53)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="847.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="48.6218%" y="821" width="0.0119%" height="15" fill="rgb(225,229,45)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.6218%" y="805" width="0.0119%" height="15" fill="rgb(220,60,37)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.6218%" y="789" width="0.0119%" height="15" fill="rgb(217,180,35)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.6218%" y="773" width="0.0119%" height="15" fill="rgb(229,7,53)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="783.50"></text></g><g><title>__GI___clone (25 samples, 0.02%)</title><rect x="48.6198%" y="869" width="0.0165%" height="15" fill="rgb(254,137,3)" fg:x="73446" fg:w="25"/><text x="48.8698%" y="879.50"></text></g><g><title>globbing_pool-8 (158 samples, 0.10%)</title><rect x="48.5331%" y="885" width="0.1046%" height="15" fill="rgb(215,140,41)" fg:x="73315" fg:w="158"/><text x="48.7831%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="48.6893%" y="629" width="0.0278%" height="15" fill="rgb(250,80,15)" fg:x="73551" fg:w="42"/><text x="48.9393%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="48.6893%" y="613" width="0.0278%" height="15" fill="rgb(252,191,6)" fg:x="73551" fg:w="42"/><text x="48.9393%" y="623.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="48.6893%" y="597" width="0.0278%" height="15" fill="rgb(246,217,18)" fg:x="73551" fg:w="42"/><text x="48.9393%" y="607.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="48.6893%" y="645" width="0.0291%" height="15" fill="rgb(223,93,7)" fg:x="73551" fg:w="44"/><text x="48.9393%" y="655.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="48.6886%" y="757" width="0.0305%" height="15" fill="rgb(225,55,52)" fg:x="73550" fg:w="46"/><text x="48.9386%" y="767.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.03%)</title><rect x="48.6886%" y="741" width="0.0305%" height="15" fill="rgb(240,31,24)" fg:x="73550" fg:w="46"/><text x="48.9386%" y="751.50"></text></g><g><title>do_futex (46 samples, 0.03%)</title><rect x="48.6886%" y="725" width="0.0305%" height="15" fill="rgb(205,56,52)" fg:x="73550" fg:w="46"/><text x="48.9386%" y="735.50"></text></g><g><title>futex_wait (45 samples, 0.03%)</title><rect x="48.6893%" y="709" width="0.0298%" height="15" fill="rgb(246,146,12)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="719.50"></text></g><g><title>futex_wait_queue_me (45 samples, 0.03%)</title><rect x="48.6893%" y="693" width="0.0298%" height="15" fill="rgb(239,84,36)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="703.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="48.6893%" y="677" width="0.0298%" height="15" fill="rgb(207,41,40)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="687.50"></text></g><g><title>__schedule (45 samples, 0.03%)</title><rect x="48.6893%" y="661" width="0.0298%" height="15" fill="rgb(241,179,25)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="671.50"></text></g><g><title>__pthread_cond_wait (48 samples, 0.03%)</title><rect x="48.6880%" y="821" width="0.0318%" height="15" fill="rgb(210,0,34)" fg:x="73549" fg:w="48"/><text x="48.9380%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (48 samples, 0.03%)</title><rect x="48.6880%" y="805" width="0.0318%" height="15" fill="rgb(225,217,29)" fg:x="73549" fg:w="48"/><text x="48.9380%" y="815.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.03%)</title><rect x="48.6886%" y="789" width="0.0311%" height="15" fill="rgb(216,191,38)" fg:x="73550" fg:w="47"/><text x="48.9386%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="48.6886%" y="773" width="0.0311%" height="15" fill="rgb(232,140,52)" fg:x="73550" fg:w="47"/><text x="48.9386%" y="783.50"></text></g><g><title>Unsafe_Park (50 samples, 0.03%)</title><rect x="48.6873%" y="853" width="0.0331%" height="15" fill="rgb(223,158,51)" fg:x="73548" fg:w="50"/><text x="48.9373%" y="863.50"></text></g><g><title>Parker::park (50 samples, 0.03%)</title><rect x="48.6873%" y="837" width="0.0331%" height="15" fill="rgb(235,29,51)" fg:x="73548" fg:w="50"/><text x="48.9373%" y="847.50"></text></g><g><title>[perf-983083.map] (116 samples, 0.08%)</title><rect x="48.6443%" y="869" width="0.0768%" height="15" fill="rgb(215,181,18)" fg:x="73483" fg:w="116"/><text x="48.8943%" y="879.50"></text></g><g><title>globbing_pool-9 (129 samples, 0.09%)</title><rect x="48.6376%" y="885" width="0.0854%" height="15" fill="rgb(227,125,34)" fg:x="73473" fg:w="129"/><text x="48.8876%" y="895.50"></text></g><g><title>[anon] (212 samples, 0.14%)</title><rect x="48.7336%" y="869" width="0.1403%" height="15" fill="rgb(230,197,49)" fg:x="73618" fg:w="212"/><text x="48.9836%" y="879.50"></text></g><g><title>[libunix_jni.so] (19 samples, 0.01%)</title><rect x="48.8740%" y="869" width="0.0126%" height="15" fill="rgb(239,141,16)" fg:x="73830" fg:w="19"/><text x="49.1240%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (31 samples, 0.02%)</title><rect x="50.2423%" y="693" width="0.0205%" height="15" fill="rgb(225,105,43)" fg:x="75897" fg:w="31"/><text x="50.4923%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (26 samples, 0.02%)</title><rect x="50.2456%" y="677" width="0.0172%" height="15" fill="rgb(214,131,14)" fg:x="75902" fg:w="26"/><text x="50.4956%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (35 samples, 0.02%)</title><rect x="50.2410%" y="709" width="0.0232%" height="15" fill="rgb(229,177,11)" fg:x="75895" fg:w="35"/><text x="50.4910%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (59 samples, 0.04%)</title><rect x="50.2396%" y="741" width="0.0391%" height="15" fill="rgb(231,180,14)" fg:x="75893" fg:w="59"/><text x="50.4896%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (59 samples, 0.04%)</title><rect x="50.2396%" y="725" width="0.0391%" height="15" fill="rgb(232,88,2)" fg:x="75893" fg:w="59"/><text x="50.4896%" y="735.50"></text></g><g><title>ClassFileParser::fill_instance_klass (18 samples, 0.01%)</title><rect x="50.2787%" y="725" width="0.0119%" height="15" fill="rgb(205,220,8)" fg:x="75952" fg:w="18"/><text x="50.5287%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (20 samples, 0.01%)</title><rect x="50.2787%" y="741" width="0.0132%" height="15" fill="rgb(225,23,53)" fg:x="75952" fg:w="20"/><text x="50.5287%" y="751.50"></text></g><g><title>ClassLoader::load_class (19 samples, 0.01%)</title><rect x="50.2933%" y="677" width="0.0126%" height="15" fill="rgb(213,62,29)" fg:x="75974" fg:w="19"/><text x="50.5433%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="50.2939%" y="661" width="0.0119%" height="15" fill="rgb(227,75,7)" fg:x="75975" fg:w="18"/><text x="50.5439%" y="671.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (21 samples, 0.01%)</title><rect x="50.2926%" y="725" width="0.0139%" height="15" fill="rgb(207,105,14)" fg:x="75973" fg:w="21"/><text x="50.5426%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (21 samples, 0.01%)</title><rect x="50.2926%" y="709" width="0.0139%" height="15" fill="rgb(245,62,29)" fg:x="75973" fg:w="21"/><text x="50.5426%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (20 samples, 0.01%)</title><rect x="50.2933%" y="693" width="0.0132%" height="15" fill="rgb(236,202,4)" fg:x="75974" fg:w="20"/><text x="50.5433%" y="703.50"></text></g><g><title>ClassLoader::load_class (112 samples, 0.07%)</title><rect x="50.2337%" y="773" width="0.0741%" height="15" fill="rgb(250,67,1)" fg:x="75884" fg:w="112"/><text x="50.4837%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.07%)</title><rect x="50.2396%" y="757" width="0.0682%" height="15" fill="rgb(253,115,44)" fg:x="75893" fg:w="103"/><text x="50.4896%" y="767.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (24 samples, 0.02%)</title><rect x="50.2919%" y="741" width="0.0159%" height="15" fill="rgb(251,139,18)" fg:x="75972" fg:w="24"/><text x="50.5419%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (151 samples, 0.10%)</title><rect x="50.2330%" y="789" width="0.1000%" height="15" fill="rgb(218,22,32)" fg:x="75883" fg:w="151"/><text x="50.4830%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (159 samples, 0.11%)</title><rect x="50.2284%" y="837" width="0.1053%" height="15" fill="rgb(243,53,5)" fg:x="75876" fg:w="159"/><text x="50.4784%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (157 samples, 0.10%)</title><rect x="50.2297%" y="821" width="0.1039%" height="15" fill="rgb(227,56,16)" fg:x="75878" fg:w="157"/><text x="50.4797%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (155 samples, 0.10%)</title><rect x="50.2310%" y="805" width="0.1026%" height="15" fill="rgb(245,53,0)" fg:x="75880" fg:w="155"/><text x="50.4810%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (20 samples, 0.01%)</title><rect x="50.3383%" y="805" width="0.0132%" height="15" fill="rgb(216,170,35)" fg:x="76042" fg:w="20"/><text x="50.5883%" y="815.50"></text></g><g><title>InstanceKlass::link_methods (29 samples, 0.02%)</title><rect x="50.3515%" y="805" width="0.0192%" height="15" fill="rgb(211,200,8)" fg:x="76062" fg:w="29"/><text x="50.6015%" y="815.50"></text></g><g><title>Method::link_method (29 samples, 0.02%)</title><rect x="50.3515%" y="789" width="0.0192%" height="15" fill="rgb(228,204,44)" fg:x="76062" fg:w="29"/><text x="50.6015%" y="799.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (25 samples, 0.02%)</title><rect x="50.3542%" y="773" width="0.0165%" height="15" fill="rgb(214,121,17)" fg:x="76066" fg:w="25"/><text x="50.6042%" y="783.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (25 samples, 0.02%)</title><rect x="50.3542%" y="757" width="0.0165%" height="15" fill="rgb(233,64,38)" fg:x="76066" fg:w="25"/><text x="50.6042%" y="767.50"></text></g><g><title>Rewriter::compute_index_maps (19 samples, 0.01%)</title><rect x="50.3806%" y="757" width="0.0126%" height="15" fill="rgb(253,54,19)" fg:x="76106" fg:w="19"/><text x="50.6306%" y="767.50"></text></g><g><title>Rewriter::rewrite_bytecodes (39 samples, 0.03%)</title><rect x="50.3806%" y="773" width="0.0258%" height="15" fill="rgb(253,94,18)" fg:x="76106" fg:w="39"/><text x="50.6306%" y="783.50"></text></g><g><title>Rewriter::scan_method (20 samples, 0.01%)</title><rect x="50.3932%" y="757" width="0.0132%" height="15" fill="rgb(227,57,52)" fg:x="76125" fg:w="20"/><text x="50.6432%" y="767.50"></text></g><g><title>Rewriter::rewrite (55 samples, 0.04%)</title><rect x="50.3727%" y="805" width="0.0364%" height="15" fill="rgb(230,228,50)" fg:x="76094" fg:w="55"/><text x="50.6227%" y="815.50"></text></g><g><title>Rewriter::Rewriter (55 samples, 0.04%)</title><rect x="50.3727%" y="789" width="0.0364%" height="15" fill="rgb(217,205,27)" fg:x="76094" fg:w="55"/><text x="50.6227%" y="799.50"></text></g><g><title>klassItable::initialize_itable (16 samples, 0.01%)</title><rect x="50.4104%" y="805" width="0.0106%" height="15" fill="rgb(252,71,50)" fg:x="76151" fg:w="16"/><text x="50.6604%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (140 samples, 0.09%)</title><rect x="50.3383%" y="821" width="0.0927%" height="15" fill="rgb(209,86,4)" fg:x="76042" fg:w="140"/><text x="50.5883%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (149 samples, 0.10%)</title><rect x="50.3363%" y="837" width="0.0986%" height="15" fill="rgb(229,94,0)" fg:x="76039" fg:w="149"/><text x="50.5863%" y="847.50"></text></g><g><title>InterpreterRuntime::_new (313 samples, 0.21%)</title><rect x="50.2284%" y="853" width="0.2072%" height="15" fill="rgb(252,223,21)" fg:x="75876" fg:w="313"/><text x="50.4784%" y="863.50"></text></g><g><title>InterpreterRuntime::anewarray (20 samples, 0.01%)</title><rect x="50.4356%" y="853" width="0.0132%" height="15" fill="rgb(230,210,4)" fg:x="76189" fg:w="20"/><text x="50.6856%" y="863.50"></text></g><g><title>CompileBroker::compile_method_base (19 samples, 0.01%)</title><rect x="50.4793%" y="741" width="0.0126%" height="15" fill="rgb(240,149,38)" fg:x="76255" fg:w="19"/><text x="50.7293%" y="751.50"></text></g><g><title>TieredThresholdPolicy::compile (23 samples, 0.02%)</title><rect x="50.4773%" y="789" width="0.0152%" height="15" fill="rgb(254,105,20)" fg:x="76252" fg:w="23"/><text x="50.7273%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (22 samples, 0.01%)</title><rect x="50.4779%" y="773" width="0.0146%" height="15" fill="rgb(253,87,46)" fg:x="76253" fg:w="22"/><text x="50.7279%" y="783.50"></text></g><g><title>CompileBroker::compile_method (21 samples, 0.01%)</title><rect x="50.4786%" y="757" width="0.0139%" height="15" fill="rgb(253,116,33)" fg:x="76254" fg:w="21"/><text x="50.7286%" y="767.50"></text></g><g><title>TieredThresholdPolicy::event (46 samples, 0.03%)</title><rect x="50.4634%" y="821" width="0.0305%" height="15" fill="rgb(229,198,5)" fg:x="76231" fg:w="46"/><text x="50.7134%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (46 samples, 0.03%)</title><rect x="50.4634%" y="805" width="0.0305%" height="15" fill="rgb(242,38,37)" fg:x="76231" fg:w="46"/><text x="50.7134%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (57 samples, 0.04%)</title><rect x="50.4581%" y="853" width="0.0377%" height="15" fill="rgb(242,69,53)" fg:x="76223" fg:w="57"/><text x="50.7081%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (55 samples, 0.04%)</title><rect x="50.4594%" y="837" width="0.0364%" height="15" fill="rgb(249,80,16)" fg:x="76225" fg:w="55"/><text x="50.7094%" y="847.50"></text></g><g><title>InterpreterRuntime::ldc (25 samples, 0.02%)</title><rect x="50.4958%" y="853" width="0.0165%" height="15" fill="rgb(206,128,11)" fg:x="76280" fg:w="25"/><text x="50.7458%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (27 samples, 0.02%)</title><rect x="50.5336%" y="805" width="0.0179%" height="15" fill="rgb(212,35,20)" fg:x="76337" fg:w="27"/><text x="50.7836%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.02%)</title><rect x="50.5349%" y="789" width="0.0165%" height="15" fill="rgb(236,79,13)" fg:x="76339" fg:w="25"/><text x="50.7849%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (23 samples, 0.02%)</title><rect x="50.5362%" y="773" width="0.0152%" height="15" fill="rgb(233,123,3)" fg:x="76341" fg:w="23"/><text x="50.7862%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (20 samples, 0.01%)</title><rect x="50.5382%" y="757" width="0.0132%" height="15" fill="rgb(214,93,52)" fg:x="76344" fg:w="20"/><text x="50.7882%" y="767.50"></text></g><g><title>ClassLoader::load_class (20 samples, 0.01%)</title><rect x="50.5382%" y="741" width="0.0132%" height="15" fill="rgb(251,37,40)" fg:x="76344" fg:w="20"/><text x="50.7882%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (16 samples, 0.01%)</title><rect x="50.5408%" y="725" width="0.0106%" height="15" fill="rgb(227,80,54)" fg:x="76348" fg:w="16"/><text x="50.7908%" y="735.50"></text></g><g><title>InstanceKlass::find_field (23 samples, 0.02%)</title><rect x="50.5541%" y="789" width="0.0152%" height="15" fill="rgb(254,48,11)" fg:x="76368" fg:w="23"/><text x="50.8041%" y="799.50"></text></g><g><title>InstanceKlass::find_local_field (21 samples, 0.01%)</title><rect x="50.5554%" y="773" width="0.0139%" height="15" fill="rgb(235,193,26)" fg:x="76370" fg:w="21"/><text x="50.8054%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (32 samples, 0.02%)</title><rect x="50.5693%" y="789" width="0.0212%" height="15" fill="rgb(229,99,21)" fg:x="76391" fg:w="32"/><text x="50.8193%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (27 samples, 0.02%)</title><rect x="50.5726%" y="773" width="0.0179%" height="15" fill="rgb(211,140,41)" fg:x="76396" fg:w="27"/><text x="50.8226%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (65 samples, 0.04%)</title><rect x="50.5514%" y="805" width="0.0430%" height="15" fill="rgb(240,227,30)" fg:x="76364" fg:w="65"/><text x="50.8014%" y="815.50"></text></g><g><title>LinkResolver::resolve_field_access (96 samples, 0.06%)</title><rect x="50.5329%" y="821" width="0.0636%" height="15" fill="rgb(215,224,45)" fg:x="76336" fg:w="96"/><text x="50.7829%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (103 samples, 0.07%)</title><rect x="50.5296%" y="837" width="0.0682%" height="15" fill="rgb(206,123,31)" fg:x="76331" fg:w="103"/><text x="50.7796%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (29 samples, 0.02%)</title><rect x="50.6441%" y="661" width="0.0192%" height="15" fill="rgb(210,138,16)" fg:x="76504" fg:w="29"/><text x="50.8941%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (26 samples, 0.02%)</title><rect x="50.6461%" y="645" width="0.0172%" height="15" fill="rgb(228,57,28)" fg:x="76507" fg:w="26"/><text x="50.8961%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (35 samples, 0.02%)</title><rect x="50.6408%" y="677" width="0.0232%" height="15" fill="rgb(242,170,10)" fg:x="76499" fg:w="35"/><text x="50.8908%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (45 samples, 0.03%)</title><rect x="50.6408%" y="709" width="0.0298%" height="15" fill="rgb(228,214,39)" fg:x="76499" fg:w="45"/><text x="50.8908%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (45 samples, 0.03%)</title><rect x="50.6408%" y="693" width="0.0298%" height="15" fill="rgb(218,179,33)" fg:x="76499" fg:w="45"/><text x="50.8908%" y="703.50"></text></g><g><title>ClassLoader::load_class (62 samples, 0.04%)</title><rect x="50.6355%" y="741" width="0.0410%" height="15" fill="rgb(235,193,39)" fg:x="76491" fg:w="62"/><text x="50.8855%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.04%)</title><rect x="50.6408%" y="725" width="0.0357%" height="15" fill="rgb(219,221,36)" fg:x="76499" fg:w="54"/><text x="50.8908%" y="735.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.05%)</title><rect x="50.6348%" y="757" width="0.0457%" height="15" fill="rgb(248,218,19)" fg:x="76490" fg:w="69"/><text x="50.8848%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (84 samples, 0.06%)</title><rect x="50.6269%" y="789" width="0.0556%" height="15" fill="rgb(205,50,9)" fg:x="76478" fg:w="84"/><text x="50.8769%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (84 samples, 0.06%)</title><rect x="50.6269%" y="773" width="0.0556%" height="15" fill="rgb(238,81,28)" fg:x="76478" fg:w="84"/><text x="50.8769%" y="783.50"></text></g><g><title>ConstantPool::klass_ref_at (90 samples, 0.06%)</title><rect x="50.6236%" y="805" width="0.0596%" height="15" fill="rgb(235,110,19)" fg:x="76473" fg:w="90"/><text x="50.8736%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (22 samples, 0.01%)</title><rect x="50.6911%" y="805" width="0.0146%" height="15" fill="rgb(214,7,14)" fg:x="76575" fg:w="22"/><text x="50.9411%" y="815.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (20 samples, 0.01%)</title><rect x="50.7130%" y="789" width="0.0132%" height="15" fill="rgb(211,77,3)" fg:x="76608" fg:w="20"/><text x="50.9630%" y="799.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (16 samples, 0.01%)</title><rect x="50.7156%" y="773" width="0.0106%" height="15" fill="rgb(229,5,9)" fg:x="76612" fg:w="16"/><text x="50.9656%" y="783.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (16 samples, 0.01%)</title><rect x="50.7156%" y="757" width="0.0106%" height="15" fill="rgb(225,90,11)" fg:x="76612" fg:w="16"/><text x="50.9656%" y="767.50"></text></g><g><title>InstanceKlass::find_method_index (16 samples, 0.01%)</title><rect x="50.7156%" y="741" width="0.0106%" height="15" fill="rgb(242,56,8)" fg:x="76612" fg:w="16"/><text x="50.9656%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (33 samples, 0.02%)</title><rect x="50.7057%" y="805" width="0.0218%" height="15" fill="rgb(249,212,39)" fg:x="76597" fg:w="33"/><text x="50.9557%" y="815.50"></text></g><g><title>Rewriter::Rewriter (38 samples, 0.03%)</title><rect x="50.7494%" y="741" width="0.0252%" height="15" fill="rgb(236,90,9)" fg:x="76663" fg:w="38"/><text x="50.9994%" y="751.50"></text></g><g><title>Rewriter::rewrite_bytecodes (32 samples, 0.02%)</title><rect x="50.7533%" y="725" width="0.0212%" height="15" fill="rgb(206,88,35)" fg:x="76669" fg:w="32"/><text x="51.0033%" y="735.50"></text></g><g><title>Rewriter::scan_method (23 samples, 0.02%)</title><rect x="50.7593%" y="709" width="0.0152%" height="15" fill="rgb(205,126,30)" fg:x="76678" fg:w="23"/><text x="51.0093%" y="719.50"></text></g><g><title>Rewriter::rewrite (39 samples, 0.03%)</title><rect x="50.7494%" y="757" width="0.0258%" height="15" fill="rgb(230,176,12)" fg:x="76663" fg:w="39"/><text x="50.9994%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (74 samples, 0.05%)</title><rect x="50.7321%" y="773" width="0.0490%" height="15" fill="rgb(243,19,9)" fg:x="76637" fg:w="74"/><text x="50.9821%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (76 samples, 0.05%)</title><rect x="50.7315%" y="789" width="0.0503%" height="15" fill="rgb(245,171,17)" fg:x="76636" fg:w="76"/><text x="50.9815%" y="799.50"></text></g><g><title>LinkResolver::resolve_static_call (99 samples, 0.07%)</title><rect x="50.7275%" y="805" width="0.0655%" height="15" fill="rgb(227,52,21)" fg:x="76630" fg:w="99"/><text x="50.9775%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (264 samples, 0.17%)</title><rect x="50.6203%" y="821" width="0.1748%" height="15" fill="rgb(238,69,14)" fg:x="76468" fg:w="264"/><text x="50.8703%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (310 samples, 0.21%)</title><rect x="50.5978%" y="837" width="0.2052%" height="15" fill="rgb(241,156,39)" fg:x="76434" fg:w="310"/><text x="50.8478%" y="847.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (20 samples, 0.01%)</title><rect x="50.8050%" y="773" width="0.0132%" height="15" fill="rgb(212,227,28)" fg:x="76747" fg:w="20"/><text x="51.0550%" y="783.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (20 samples, 0.01%)</title><rect x="50.8050%" y="757" width="0.0132%" height="15" fill="rgb(209,118,27)" fg:x="76747" fg:w="20"/><text x="51.0550%" y="767.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (27 samples, 0.02%)</title><rect x="50.8050%" y="789" width="0.0179%" height="15" fill="rgb(226,102,5)" fg:x="76747" fg:w="27"/><text x="51.0550%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (456 samples, 0.30%)</title><rect x="50.5283%" y="853" width="0.3019%" height="15" fill="rgb(223,34,3)" fg:x="76329" fg:w="456"/><text x="50.7783%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (41 samples, 0.03%)</title><rect x="50.8030%" y="837" width="0.0271%" height="15" fill="rgb(221,81,38)" fg:x="76744" fg:w="41"/><text x="51.0530%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (39 samples, 0.03%)</title><rect x="50.8043%" y="821" width="0.0258%" height="15" fill="rgb(236,219,28)" fg:x="76746" fg:w="39"/><text x="51.0543%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (39 samples, 0.03%)</title><rect x="50.8043%" y="805" width="0.0258%" height="15" fill="rgb(213,200,14)" fg:x="76746" fg:w="39"/><text x="51.0543%" y="815.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (26 samples, 0.02%)</title><rect x="50.8334%" y="821" width="0.0172%" height="15" fill="rgb(240,33,19)" fg:x="76790" fg:w="26"/><text x="51.0834%" y="831.50"></text></g><g><title>ConstantPool::string_at_impl (23 samples, 0.02%)</title><rect x="50.8354%" y="805" width="0.0152%" height="15" fill="rgb(233,113,27)" fg:x="76793" fg:w="23"/><text x="51.0854%" y="815.50"></text></g><g><title>StringTable::intern (22 samples, 0.01%)</title><rect x="50.8361%" y="789" width="0.0146%" height="15" fill="rgb(220,221,18)" fg:x="76794" fg:w="22"/><text x="51.0861%" y="799.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (28 samples, 0.02%)</title><rect x="50.8328%" y="837" width="0.0185%" height="15" fill="rgb(238,92,8)" fg:x="76789" fg:w="28"/><text x="51.0828%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (36 samples, 0.02%)</title><rect x="50.8301%" y="853" width="0.0238%" height="15" fill="rgb(222,164,16)" fg:x="76785" fg:w="36"/><text x="51.0801%" y="863.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (24 samples, 0.02%)</title><rect x="50.8592%" y="853" width="0.0159%" height="15" fill="rgb(241,119,3)" fg:x="76829" fg:w="24"/><text x="51.1092%" y="863.50"></text></g><g><title>JVM_FindLoadedClass (37 samples, 0.02%)</title><rect x="50.8831%" y="853" width="0.0245%" height="15" fill="rgb(241,44,8)" fg:x="76865" fg:w="37"/><text x="51.1331%" y="863.50"></text></g><g><title>java_lang_String::char_converter (19 samples, 0.01%)</title><rect x="50.8950%" y="837" width="0.0126%" height="15" fill="rgb(230,36,40)" fg:x="76883" fg:w="19"/><text x="51.1450%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (18 samples, 0.01%)</title><rect x="50.9162%" y="821" width="0.0119%" height="15" fill="rgb(243,16,36)" fg:x="76915" fg:w="18"/><text x="51.1662%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (21 samples, 0.01%)</title><rect x="50.9149%" y="853" width="0.0139%" height="15" fill="rgb(231,4,26)" fg:x="76913" fg:w="21"/><text x="51.1649%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (20 samples, 0.01%)</title><rect x="50.9155%" y="837" width="0.0132%" height="15" fill="rgb(240,9,31)" fg:x="76914" fg:w="20"/><text x="51.1655%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (21 samples, 0.01%)</title><rect x="50.9341%" y="821" width="0.0139%" height="15" fill="rgb(207,173,15)" fg:x="76942" fg:w="21"/><text x="51.1841%" y="831.50"></text></g><g><title>get_parameter_types (19 samples, 0.01%)</title><rect x="50.9546%" y="805" width="0.0126%" height="15" fill="rgb(224,192,53)" fg:x="76973" fg:w="19"/><text x="51.2046%" y="815.50"></text></g><g><title>Reflection::new_method (30 samples, 0.02%)</title><rect x="50.9486%" y="821" width="0.0199%" height="15" fill="rgb(223,67,28)" fg:x="76964" fg:w="30"/><text x="51.1986%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (56 samples, 0.04%)</title><rect x="50.9327%" y="853" width="0.0371%" height="15" fill="rgb(211,20,47)" fg:x="76940" fg:w="56"/><text x="51.1827%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (56 samples, 0.04%)</title><rect x="50.9327%" y="837" width="0.0371%" height="15" fill="rgb(240,228,2)" fg:x="76940" fg:w="56"/><text x="51.1827%" y="847.50"></text></g><g><title>JVM_InitClassName (30 samples, 0.02%)</title><rect x="50.9791%" y="853" width="0.0199%" height="15" fill="rgb(248,151,12)" fg:x="77010" fg:w="30"/><text x="51.2291%" y="863.50"></text></g><g><title>java_lang_Class::name (29 samples, 0.02%)</title><rect x="50.9797%" y="837" width="0.0192%" height="15" fill="rgb(244,8,39)" fg:x="77011" fg:w="29"/><text x="51.2297%" y="847.50"></text></g><g><title>StringTable::intern (28 samples, 0.02%)</title><rect x="50.9804%" y="821" width="0.0185%" height="15" fill="rgb(222,26,8)" fg:x="77012" fg:w="28"/><text x="51.2304%" y="831.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (18 samples, 0.01%)</title><rect x="51.0393%" y="853" width="0.0119%" height="15" fill="rgb(213,106,44)" fg:x="77101" fg:w="18"/><text x="51.2893%" y="863.50"></text></g><g><title>__GI___libc_malloc (22 samples, 0.01%)</title><rect x="51.1207%" y="645" width="0.0146%" height="15" fill="rgb(214,129,20)" fg:x="77224" fg:w="22"/><text x="51.3707%" y="655.50"></text></g><g><title>AllocateHeap (27 samples, 0.02%)</title><rect x="51.1181%" y="677" width="0.0179%" height="15" fill="rgb(212,32,13)" fg:x="77220" fg:w="27"/><text x="51.3681%" y="687.50"></text></g><g><title>os::malloc (23 samples, 0.02%)</title><rect x="51.1207%" y="661" width="0.0152%" height="15" fill="rgb(208,168,33)" fg:x="77224" fg:w="23"/><text x="51.3707%" y="671.50"></text></g><g><title>SymbolTable::add (64 samples, 0.04%)</title><rect x="51.1035%" y="709" width="0.0424%" height="15" fill="rgb(231,207,8)" fg:x="77198" fg:w="64"/><text x="51.3535%" y="719.50"></text></g><g><title>SymbolTable::basic_add (64 samples, 0.04%)</title><rect x="51.1035%" y="693" width="0.0424%" height="15" fill="rgb(235,219,23)" fg:x="77198" fg:w="64"/><text x="51.3535%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (380 samples, 0.25%)</title><rect x="51.1459%" y="709" width="0.2516%" height="15" fill="rgb(226,216,26)" fg:x="77262" fg:w="380"/><text x="51.3959%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (471 samples, 0.31%)</title><rect x="51.0863%" y="725" width="0.3118%" height="15" fill="rgb(239,137,16)" fg:x="77172" fg:w="471"/><text x="51.3363%" y="735.50"></text></g><g><title>ClassFileParser::parse_constant_pool (494 samples, 0.33%)</title><rect x="51.0744%" y="741" width="0.3270%" height="15" fill="rgb(207,12,36)" fg:x="77154" fg:w="494"/><text x="51.3244%" y="751.50"></text></g><g><title>ClassFileParser::copy_localvariable_table (22 samples, 0.01%)</title><rect x="51.4444%" y="709" width="0.0146%" height="15" fill="rgb(210,214,24)" fg:x="77713" fg:w="22"/><text x="51.6944%" y="719.50"></text></g><g><title>ClassFileParser::parse_linenumber_table (18 samples, 0.01%)</title><rect x="51.4630%" y="709" width="0.0119%" height="15" fill="rgb(206,56,30)" fg:x="77741" fg:w="18"/><text x="51.7130%" y="719.50"></text></g><g><title>ConstMethod::allocate (17 samples, 0.01%)</title><rect x="51.4789%" y="693" width="0.0113%" height="15" fill="rgb(228,143,26)" fg:x="77765" fg:w="17"/><text x="51.7289%" y="703.50"></text></g><g><title>Method::allocate (39 samples, 0.03%)</title><rect x="51.4775%" y="709" width="0.0258%" height="15" fill="rgb(216,218,46)" fg:x="77763" fg:w="39"/><text x="51.7275%" y="719.50"></text></g><g><title>Metaspace::allocate (20 samples, 0.01%)</title><rect x="51.4901%" y="693" width="0.0132%" height="15" fill="rgb(206,6,19)" fg:x="77782" fg:w="20"/><text x="51.7401%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (155 samples, 0.10%)</title><rect x="51.4153%" y="725" width="0.1026%" height="15" fill="rgb(239,177,51)" fg:x="77669" fg:w="155"/><text x="51.6653%" y="735.50"></text></g><g><title>ClassFileParser::parse_methods (158 samples, 0.10%)</title><rect x="51.4140%" y="741" width="0.1046%" height="15" fill="rgb(216,55,25)" fg:x="77667" fg:w="158"/><text x="51.6640%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (693 samples, 0.46%)</title><rect x="51.0691%" y="757" width="0.4588%" height="15" fill="rgb(231,163,29)" fg:x="77146" fg:w="693"/><text x="51.3191%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (694 samples, 0.46%)</title><rect x="51.0691%" y="773" width="0.4594%" height="15" fill="rgb(232,149,50)" fg:x="77146" fg:w="694"/><text x="51.3191%" y="783.50"></text></g><g><title>InstanceKlass::find_method (31 samples, 0.02%)</title><rect x="51.5649%" y="709" width="0.0205%" height="15" fill="rgb(223,142,48)" fg:x="77895" fg:w="31"/><text x="51.8149%" y="719.50"></text></g><g><title>InstanceKlass::find_method_index (28 samples, 0.02%)</title><rect x="51.5669%" y="693" width="0.0185%" height="15" fill="rgb(245,83,23)" fg:x="77898" fg:w="28"/><text x="51.8169%" y="703.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (92 samples, 0.06%)</title><rect x="51.5424%" y="725" width="0.0609%" height="15" fill="rgb(224,63,2)" fg:x="77861" fg:w="92"/><text x="51.7924%" y="735.50"></text></g><g><title>resource_allocate_bytes (25 samples, 0.02%)</title><rect x="51.5868%" y="709" width="0.0165%" height="15" fill="rgb(218,65,53)" fg:x="77928" fg:w="25"/><text x="51.8368%" y="719.50"></text></g><g><title>DefaultMethods::generate_default_methods (133 samples, 0.09%)</title><rect x="51.5338%" y="741" width="0.0880%" height="15" fill="rgb(221,84,29)" fg:x="77848" fg:w="133"/><text x="51.7838%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (174 samples, 0.12%)</title><rect x="51.5285%" y="757" width="0.1152%" height="15" fill="rgb(234,0,32)" fg:x="77840" fg:w="174"/><text x="51.7785%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (183 samples, 0.12%)</title><rect x="51.5285%" y="773" width="0.1211%" height="15" fill="rgb(206,20,16)" fg:x="77840" fg:w="183"/><text x="51.7785%" y="783.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (40 samples, 0.03%)</title><rect x="51.6497%" y="773" width="0.0265%" height="15" fill="rgb(244,172,18)" fg:x="78023" fg:w="40"/><text x="51.8997%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (923 samples, 0.61%)</title><rect x="51.0684%" y="789" width="0.6110%" height="15" fill="rgb(254,133,1)" fg:x="77145" fg:w="923"/><text x="51.3184%" y="799.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (26 samples, 0.02%)</title><rect x="51.6808%" y="789" width="0.0172%" height="15" fill="rgb(222,206,41)" fg:x="78070" fg:w="26"/><text x="51.9308%" y="799.50"></text></g><g><title>SystemDictionary::define_instance_class (23 samples, 0.02%)</title><rect x="51.6828%" y="773" width="0.0152%" height="15" fill="rgb(212,3,42)" fg:x="78073" fg:w="23"/><text x="51.9328%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (968 samples, 0.64%)</title><rect x="51.0578%" y="837" width="0.6408%" height="15" fill="rgb(241,11,4)" fg:x="77129" fg:w="968"/><text x="51.3078%" y="847.50"></text></g><g><title>jvm_define_class_common (967 samples, 0.64%)</title><rect x="51.0585%" y="821" width="0.6401%" height="15" fill="rgb(205,19,26)" fg:x="77130" fg:w="967"/><text x="51.3085%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (953 samples, 0.63%)</title><rect x="51.0678%" y="805" width="0.6309%" height="15" fill="rgb(210,179,32)" fg:x="77144" fg:w="953"/><text x="51.3178%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,009 samples, 0.67%)</title><rect x="51.0552%" y="853" width="0.6679%" height="15" fill="rgb(227,116,49)" fg:x="77125" fg:w="1009"/><text x="51.3052%" y="863.50"></text></g><g><title>ClassFileParser::ClassFileParser (19 samples, 0.01%)</title><rect x="51.7503%" y="741" width="0.0126%" height="15" fill="rgb(211,146,6)" fg:x="78175" fg:w="19"/><text x="52.0003%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (19 samples, 0.01%)</title><rect x="51.7503%" y="725" width="0.0126%" height="15" fill="rgb(219,44,39)" fg:x="78175" fg:w="19"/><text x="52.0003%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (26 samples, 0.02%)</title><rect x="51.7503%" y="757" width="0.0172%" height="15" fill="rgb(234,128,11)" fg:x="78175" fg:w="26"/><text x="52.0003%" y="767.50"></text></g><g><title>ClassLoader::load_class (53 samples, 0.04%)</title><rect x="51.7357%" y="773" width="0.0351%" height="15" fill="rgb(220,183,53)" fg:x="78153" fg:w="53"/><text x="51.9857%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (73 samples, 0.05%)</title><rect x="51.7357%" y="789" width="0.0483%" height="15" fill="rgb(213,219,32)" fg:x="78153" fg:w="73"/><text x="51.9857%" y="799.50"></text></g><g><title>JVM_FindClassFromBootLoader (92 samples, 0.06%)</title><rect x="51.7238%" y="837" width="0.0609%" height="15" fill="rgb(232,156,16)" fg:x="78135" fg:w="92"/><text x="51.9738%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_null (89 samples, 0.06%)</title><rect x="51.7258%" y="821" width="0.0589%" height="15" fill="rgb(246,135,34)" fg:x="78138" fg:w="89"/><text x="51.9758%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (89 samples, 0.06%)</title><rect x="51.7258%" y="805" width="0.0589%" height="15" fill="rgb(241,99,0)" fg:x="78138" fg:w="89"/><text x="51.9758%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (111 samples, 0.07%)</title><rect x="51.7231%" y="853" width="0.0735%" height="15" fill="rgb(222,103,45)" fg:x="78134" fg:w="111"/><text x="51.9731%" y="863.50"></text></g><g><title>Java_java_lang_Class_forName0 (25 samples, 0.02%)</title><rect x="51.7966%" y="853" width="0.0165%" height="15" fill="rgb(212,57,4)" fg:x="78245" fg:w="25"/><text x="52.0466%" y="863.50"></text></g><g><title>MHN_resolve_Mem (23 samples, 0.02%)</title><rect x="51.8277%" y="853" width="0.0152%" height="15" fill="rgb(215,68,47)" fg:x="78292" fg:w="23"/><text x="52.0777%" y="863.50"></text></g><g><title>MethodHandles::resolve_MemberName (23 samples, 0.02%)</title><rect x="51.8277%" y="837" width="0.0152%" height="15" fill="rgb(230,84,2)" fg:x="78292" fg:w="23"/><text x="52.0777%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (26 samples, 0.02%)</title><rect x="51.8615%" y="821" width="0.0172%" height="15" fill="rgb(220,102,14)" fg:x="78343" fg:w="26"/><text x="52.1115%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (24 samples, 0.02%)</title><rect x="51.8787%" y="773" width="0.0159%" height="15" fill="rgb(240,10,32)" fg:x="78369" fg:w="24"/><text x="52.1287%" y="783.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (23 samples, 0.02%)</title><rect x="51.8794%" y="757" width="0.0152%" height="15" fill="rgb(215,47,27)" fg:x="78370" fg:w="23"/><text x="52.1294%" y="767.50"></text></g><g><title>SymbolTable::lookup_only (19 samples, 0.01%)</title><rect x="51.8820%" y="741" width="0.0126%" height="15" fill="rgb(233,188,43)" fg:x="78374" fg:w="19"/><text x="52.1320%" y="751.50"></text></g><g><title>ClassFileParser::ClassFileParser (37 samples, 0.02%)</title><rect x="51.8787%" y="805" width="0.0245%" height="15" fill="rgb(253,190,1)" fg:x="78369" fg:w="37"/><text x="52.1287%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (37 samples, 0.02%)</title><rect x="51.8787%" y="789" width="0.0245%" height="15" fill="rgb(206,114,52)" fg:x="78369" fg:w="37"/><text x="52.1287%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (55 samples, 0.04%)</title><rect x="51.8787%" y="821" width="0.0364%" height="15" fill="rgb(233,120,37)" fg:x="78369" fg:w="55"/><text x="52.1287%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (90 samples, 0.06%)</title><rect x="51.8575%" y="853" width="0.0596%" height="15" fill="rgb(214,52,39)" fg:x="78337" fg:w="90"/><text x="52.1075%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (88 samples, 0.06%)</title><rect x="51.8588%" y="837" width="0.0583%" height="15" fill="rgb(223,80,29)" fg:x="78339" fg:w="88"/><text x="52.1088%" y="847.50"></text></g><g><title>[perf-983083.map] (4,639 samples, 3.07%)</title><rect x="48.8865%" y="869" width="3.0709%" height="15" fill="rgb(230,101,40)" fg:x="73849" fg:w="4639"/><text x="49.1365%" y="879.50">[pe..</text></g><g><title>SharedRuntime::find_callee_info_helper (24 samples, 0.02%)</title><rect x="51.9833%" y="837" width="0.0159%" height="15" fill="rgb(219,211,8)" fg:x="78527" fg:w="24"/><text x="52.2333%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (41 samples, 0.03%)</title><rect x="51.9740%" y="853" width="0.0271%" height="15" fill="rgb(252,126,28)" fg:x="78513" fg:w="41"/><text x="52.2240%" y="863.50"></text></g><g><title>generic_file_buffered_read (40 samples, 0.03%)</title><rect x="52.0296%" y="709" width="0.0265%" height="15" fill="rgb(215,56,38)" fg:x="78597" fg:w="40"/><text x="52.2796%" y="719.50"></text></g><g><title>new_sync_read (45 samples, 0.03%)</title><rect x="52.0283%" y="725" width="0.0298%" height="15" fill="rgb(249,55,44)" fg:x="78595" fg:w="45"/><text x="52.2783%" y="735.50"></text></g><g><title>__libc_read (59 samples, 0.04%)</title><rect x="52.0210%" y="821" width="0.0391%" height="15" fill="rgb(220,221,32)" fg:x="78584" fg:w="59"/><text x="52.2710%" y="831.50"></text></g><g><title>__libc_read (58 samples, 0.04%)</title><rect x="52.0217%" y="805" width="0.0384%" height="15" fill="rgb(212,216,41)" fg:x="78585" fg:w="58"/><text x="52.2717%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.04%)</title><rect x="52.0237%" y="789" width="0.0364%" height="15" fill="rgb(228,213,43)" fg:x="78588" fg:w="55"/><text x="52.2737%" y="799.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="52.0243%" y="773" width="0.0357%" height="15" fill="rgb(211,31,26)" fg:x="78589" fg:w="54"/><text x="52.2743%" y="783.50"></text></g><g><title>ksys_read (54 samples, 0.04%)</title><rect x="52.0243%" y="757" width="0.0357%" height="15" fill="rgb(229,202,19)" fg:x="78589" fg:w="54"/><text x="52.2743%" y="767.50"></text></g><g><title>vfs_read (51 samples, 0.03%)</title><rect x="52.0263%" y="741" width="0.0338%" height="15" fill="rgb(229,105,46)" fg:x="78592" fg:w="51"/><text x="52.2763%" y="751.50"></text></g><g><title>handleRead (60 samples, 0.04%)</title><rect x="52.0210%" y="837" width="0.0397%" height="15" fill="rgb(235,108,1)" fg:x="78584" fg:w="60"/><text x="52.2710%" y="847.50"></text></g><g><title>readBytes (76 samples, 0.05%)</title><rect x="52.0184%" y="853" width="0.0503%" height="15" fill="rgb(245,111,35)" fg:x="78580" fg:w="76"/><text x="52.2684%" y="863.50"></text></g><g><title>[unknown] (169 samples, 0.11%)</title><rect x="51.9575%" y="869" width="0.1119%" height="15" fill="rgb(219,185,31)" fg:x="78488" fg:w="169"/><text x="52.2075%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (266 samples, 0.18%)</title><rect x="52.0859%" y="805" width="0.1761%" height="15" fill="rgb(214,4,43)" fg:x="78682" fg:w="266"/><text x="52.3359%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (259 samples, 0.17%)</title><rect x="52.0905%" y="789" width="0.1715%" height="15" fill="rgb(235,227,40)" fg:x="78689" fg:w="259"/><text x="52.3405%" y="799.50"></text></g><g><title>native_write_msr (259 samples, 0.17%)</title><rect x="52.0905%" y="773" width="0.1715%" height="15" fill="rgb(230,88,30)" fg:x="78689" fg:w="259"/><text x="52.3405%" y="783.50"></text></g><g><title>schedule_tail (279 samples, 0.18%)</title><rect x="52.0826%" y="837" width="0.1847%" height="15" fill="rgb(216,217,1)" fg:x="78677" fg:w="279"/><text x="52.3326%" y="847.50"></text></g><g><title>finish_task_switch (277 samples, 0.18%)</title><rect x="52.0839%" y="821" width="0.1834%" height="15" fill="rgb(248,139,50)" fg:x="78679" fg:w="277"/><text x="52.3339%" y="831.50"></text></g><g><title>ret_from_fork (290 samples, 0.19%)</title><rect x="52.0780%" y="853" width="0.1920%" height="15" fill="rgb(233,1,21)" fg:x="78670" fg:w="290"/><text x="52.3280%" y="863.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (22 samples, 0.01%)</title><rect x="52.2825%" y="741" width="0.0146%" height="15" fill="rgb(215,183,12)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="751.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (22 samples, 0.01%)</title><rect x="52.2825%" y="725" width="0.0146%" height="15" fill="rgb(229,104,42)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (22 samples, 0.01%)</title><rect x="52.2825%" y="709" width="0.0146%" height="15" fill="rgb(243,34,48)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (22 samples, 0.01%)</title><rect x="52.2825%" y="693" width="0.0146%" height="15" fill="rgb(239,11,44)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="703.50"></text></g><g><title>ClassLoader::load_class (22 samples, 0.01%)</title><rect x="52.2825%" y="677" width="0.0146%" height="15" fill="rgb(231,98,35)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (22 samples, 0.01%)</title><rect x="52.2825%" y="661" width="0.0146%" height="15" fill="rgb(233,28,25)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="671.50"></text></g><g><title>universe2_init (24 samples, 0.02%)</title><rect x="52.2818%" y="773" width="0.0159%" height="15" fill="rgb(234,123,11)" fg:x="78978" fg:w="24"/><text x="52.5318%" y="783.50"></text></g><g><title>Universe::genesis (24 samples, 0.02%)</title><rect x="52.2818%" y="757" width="0.0159%" height="15" fill="rgb(220,69,3)" fg:x="78978" fg:w="24"/><text x="52.5318%" y="767.50"></text></g><g><title>init_globals (44 samples, 0.03%)</title><rect x="52.2765%" y="789" width="0.0291%" height="15" fill="rgb(214,64,36)" fg:x="78970" fg:w="44"/><text x="52.5265%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (55 samples, 0.04%)</title><rect x="52.2706%" y="821" width="0.0364%" height="15" fill="rgb(211,138,32)" fg:x="78961" fg:w="55"/><text x="52.5206%" y="831.50"></text></g><g><title>Threads::create_vm (55 samples, 0.04%)</title><rect x="52.2706%" y="805" width="0.0364%" height="15" fill="rgb(213,118,47)" fg:x="78961" fg:w="55"/><text x="52.5206%" y="815.50"></text></g><g><title>JavaMain (57 samples, 0.04%)</title><rect x="52.2706%" y="837" width="0.0377%" height="15" fill="rgb(243,124,49)" fg:x="78961" fg:w="57"/><text x="52.5206%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="52.3202%" y="581" width="0.0179%" height="15" fill="rgb(221,30,28)" fg:x="79036" fg:w="27"/><text x="52.5702%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="52.3202%" y="565" width="0.0179%" height="15" fill="rgb(246,37,13)" fg:x="79036" fg:w="27"/><text x="52.5702%" y="575.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="52.3202%" y="549" width="0.0179%" height="15" fill="rgb(249,66,14)" fg:x="79036" fg:w="27"/><text x="52.5702%" y="559.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="52.3202%" y="597" width="0.0192%" height="15" fill="rgb(213,166,5)" fg:x="79036" fg:w="29"/><text x="52.5702%" y="607.50"></text></g><g><title>__pthread_cond_wait (33 samples, 0.02%)</title><rect x="52.3183%" y="773" width="0.0218%" height="15" fill="rgb(221,66,24)" fg:x="79033" fg:w="33"/><text x="52.5683%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.02%)</title><rect x="52.3183%" y="757" width="0.0218%" height="15" fill="rgb(210,132,17)" fg:x="79033" fg:w="33"/><text x="52.5683%" y="767.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.02%)</title><rect x="52.3183%" y="741" width="0.0218%" height="15" fill="rgb(243,202,5)" fg:x="79033" fg:w="33"/><text x="52.5683%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="52.3189%" y="725" width="0.0212%" height="15" fill="rgb(233,70,48)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="735.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="52.3189%" y="709" width="0.0212%" height="15" fill="rgb(238,41,26)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="719.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.02%)</title><rect x="52.3189%" y="693" width="0.0212%" height="15" fill="rgb(241,19,31)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="703.50"></text></g><g><title>do_futex (32 samples, 0.02%)</title><rect x="52.3189%" y="677" width="0.0212%" height="15" fill="rgb(214,76,10)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="687.50"></text></g><g><title>futex_wait (32 samples, 0.02%)</title><rect x="52.3189%" y="661" width="0.0212%" height="15" fill="rgb(254,202,22)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="671.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.02%)</title><rect x="52.3189%" y="645" width="0.0212%" height="15" fill="rgb(214,72,24)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="655.50"></text></g><g><title>schedule (31 samples, 0.02%)</title><rect x="52.3196%" y="629" width="0.0205%" height="15" fill="rgb(221,92,46)" fg:x="79035" fg:w="31"/><text x="52.5696%" y="639.50"></text></g><g><title>__schedule (31 samples, 0.02%)</title><rect x="52.3196%" y="613" width="0.0205%" height="15" fill="rgb(246,13,50)" fg:x="79035" fg:w="31"/><text x="52.5696%" y="623.50"></text></g><g><title>Monitor::wait (43 samples, 0.03%)</title><rect x="52.3130%" y="821" width="0.0285%" height="15" fill="rgb(240,165,38)" fg:x="79025" fg:w="43"/><text x="52.5630%" y="831.50"></text></g><g><title>Monitor::IWait (43 samples, 0.03%)</title><rect x="52.3130%" y="805" width="0.0285%" height="15" fill="rgb(241,24,51)" fg:x="79025" fg:w="43"/><text x="52.5630%" y="815.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="52.3176%" y="789" width="0.0238%" height="15" fill="rgb(227,51,44)" fg:x="79032" fg:w="36"/><text x="52.5676%" y="799.50"></text></g><g><title>JavaThread::run (23 samples, 0.02%)</title><rect x="52.3414%" y="805" width="0.0152%" height="15" fill="rgb(231,121,3)" fg:x="79068" fg:w="23"/><text x="52.5914%" y="815.50"></text></g><g><title>Thread::call_run (24 samples, 0.02%)</title><rect x="52.3414%" y="821" width="0.0159%" height="15" fill="rgb(245,3,41)" fg:x="79068" fg:w="24"/><text x="52.5914%" y="831.50"></text></g><g><title>os::current_stack_base (16 samples, 0.01%)</title><rect x="52.3613%" y="805" width="0.0106%" height="15" fill="rgb(214,13,26)" fg:x="79098" fg:w="16"/><text x="52.6113%" y="815.50"></text></g><g><title>pthread_getattr_np (16 samples, 0.01%)</title><rect x="52.3613%" y="789" width="0.0106%" height="15" fill="rgb(252,75,11)" fg:x="79098" fg:w="16"/><text x="52.6113%" y="799.50"></text></g><g><title>Thread::record_stack_base_and_size (20 samples, 0.01%)</title><rect x="52.3600%" y="821" width="0.0132%" height="15" fill="rgb(218,226,17)" fg:x="79096" fg:w="20"/><text x="52.6100%" y="831.50"></text></g><g><title>__GI___clone (461 samples, 0.31%)</title><rect x="52.0693%" y="869" width="0.3052%" height="15" fill="rgb(248,89,38)" fg:x="78657" fg:w="461"/><text x="52.3193%" y="879.50"></text></g><g><title>start_thread (158 samples, 0.10%)</title><rect x="52.2699%" y="853" width="0.1046%" height="15" fill="rgb(237,73,46)" fg:x="78960" fg:w="158"/><text x="52.5199%" y="863.50"></text></g><g><title>thread_native_entry (94 samples, 0.06%)</title><rect x="52.3123%" y="837" width="0.0622%" height="15" fill="rgb(242,78,33)" fg:x="79024" fg:w="94"/><text x="52.5623%" y="847.50"></text></g><g><title>asm_exc_page_fault (21 samples, 0.01%)</title><rect x="52.3778%" y="869" width="0.0139%" height="15" fill="rgb(235,60,3)" fg:x="79123" fg:w="21"/><text x="52.6278%" y="879.50"></text></g><g><title>java (5,553 samples, 3.68%)</title><rect x="48.7230%" y="885" width="3.6760%" height="15" fill="rgb(216,172,19)" fg:x="73602" fg:w="5553"/><text x="48.9730%" y="895.50">java</text></g><g><title>[[heap]] (78 samples, 0.05%)</title><rect x="52.3997%" y="869" width="0.0516%" height="15" fill="rgb(227,6,42)" fg:x="79156" fg:w="78"/><text x="52.6497%" y="879.50"></text></g><g><title>[[stack]] (41 samples, 0.03%)</title><rect x="52.4513%" y="869" width="0.0271%" height="15" fill="rgb(223,207,42)" fg:x="79234" fg:w="41"/><text x="52.7013%" y="879.50"></text></g><g><title>[anon] (27 samples, 0.02%)</title><rect x="52.4785%" y="869" width="0.0179%" height="15" fill="rgb(246,138,30)" fg:x="79275" fg:w="27"/><text x="52.7285%" y="879.50"></text></g><g><title>copy_process (24 samples, 0.02%)</title><rect x="52.5043%" y="773" width="0.0159%" height="15" fill="rgb(251,199,47)" fg:x="79314" fg:w="24"/><text x="52.7543%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="52.5043%" y="837" width="0.0212%" height="15" fill="rgb(228,218,44)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="847.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="52.5043%" y="821" width="0.0212%" height="15" fill="rgb(220,68,6)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="831.50"></text></g><g><title>__do_sys_clone (32 samples, 0.02%)</title><rect x="52.5043%" y="805" width="0.0212%" height="15" fill="rgb(240,60,26)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="815.50"></text></g><g><title>kernel_clone (32 samples, 0.02%)</title><rect x="52.5043%" y="789" width="0.0212%" height="15" fill="rgb(211,200,19)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="799.50"></text></g><g><title>__GI___clone (33 samples, 0.02%)</title><rect x="52.5043%" y="853" width="0.0218%" height="15" fill="rgb(242,145,30)" fg:x="79314" fg:w="33"/><text x="52.7543%" y="863.50"></text></g><g><title>[unknown] (173 samples, 0.11%)</title><rect x="52.5016%" y="869" width="0.1145%" height="15" fill="rgb(225,64,13)" fg:x="79310" fg:w="173"/><text x="52.7516%" y="879.50"></text></g><g><title>calculate_sigpending (23 samples, 0.02%)</title><rect x="52.6287%" y="837" width="0.0152%" height="15" fill="rgb(218,103,35)" fg:x="79502" fg:w="23"/><text x="52.8787%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (1,748 samples, 1.16%)</title><rect x="52.6631%" y="805" width="1.1571%" height="15" fill="rgb(216,93,46)" fg:x="79554" fg:w="1748"/><text x="52.9131%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,730 samples, 1.15%)</title><rect x="52.6751%" y="789" width="1.1452%" height="15" fill="rgb(225,159,27)" fg:x="79572" fg:w="1730"/><text x="52.9251%" y="799.50"></text></g><g><title>native_write_msr (1,726 samples, 1.14%)</title><rect x="52.6777%" y="773" width="1.1426%" height="15" fill="rgb(225,204,11)" fg:x="79576" fg:w="1726"/><text x="52.9277%" y="783.50"></text></g><g><title>irq_work_run (25 samples, 0.02%)</title><rect x="53.8296%" y="741" width="0.0165%" height="15" fill="rgb(205,56,4)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="751.50"></text></g><g><title>irq_work_run_list (25 samples, 0.02%)</title><rect x="53.8296%" y="725" width="0.0165%" height="15" fill="rgb(206,6,35)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="735.50"></text></g><g><title>irq_work_single (25 samples, 0.02%)</title><rect x="53.8296%" y="709" width="0.0165%" height="15" fill="rgb(247,73,52)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="719.50"></text></g><g><title>perf_pending_event (25 samples, 0.02%)</title><rect x="53.8296%" y="693" width="0.0165%" height="15" fill="rgb(246,97,4)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="703.50"></text></g><g><title>perf_event_wakeup (24 samples, 0.02%)</title><rect x="53.8302%" y="677" width="0.0159%" height="15" fill="rgb(212,37,15)" fg:x="81317" fg:w="24"/><text x="54.0802%" y="687.50"></text></g><g><title>__wake_up_common_lock (23 samples, 0.02%)</title><rect x="53.8309%" y="661" width="0.0152%" height="15" fill="rgb(208,130,40)" fg:x="81318" fg:w="23"/><text x="54.0809%" y="671.50"></text></g><g><title>__wake_up_common (23 samples, 0.02%)</title><rect x="53.8309%" y="645" width="0.0152%" height="15" fill="rgb(236,55,29)" fg:x="81318" fg:w="23"/><text x="54.0809%" y="655.50"></text></g><g><title>pollwake (21 samples, 0.01%)</title><rect x="53.8322%" y="629" width="0.0139%" height="15" fill="rgb(209,156,45)" fg:x="81320" fg:w="21"/><text x="54.0822%" y="639.50"></text></g><g><title>try_to_wake_up (18 samples, 0.01%)</title><rect x="53.8342%" y="613" width="0.0119%" height="15" fill="rgb(249,107,4)" fg:x="81323" fg:w="18"/><text x="54.0842%" y="623.50"></text></g><g><title>asm_call_sysvec_on_stack (28 samples, 0.02%)</title><rect x="53.8289%" y="773" width="0.0185%" height="15" fill="rgb(227,7,13)" fg:x="81315" fg:w="28"/><text x="54.0789%" y="783.50"></text></g><g><title>__sysvec_irq_work (27 samples, 0.02%)</title><rect x="53.8296%" y="757" width="0.0179%" height="15" fill="rgb(250,129,14)" fg:x="81316" fg:w="27"/><text x="54.0796%" y="767.50"></text></g><g><title>asm_sysvec_irq_work (41 samples, 0.03%)</title><rect x="53.8209%" y="805" width="0.0271%" height="15" fill="rgb(229,92,13)" fg:x="81303" fg:w="41"/><text x="54.0709%" y="815.50"></text></g><g><title>sysvec_irq_work (29 samples, 0.02%)</title><rect x="53.8289%" y="789" width="0.0192%" height="15" fill="rgb(245,98,39)" fg:x="81315" fg:w="29"/><text x="54.0789%" y="799.50"></text></g><g><title>schedule_tail (1,821 samples, 1.21%)</title><rect x="52.6439%" y="837" width="1.2055%" height="15" fill="rgb(234,135,48)" fg:x="79525" fg:w="1821"/><text x="52.8939%" y="847.50"></text></g><g><title>finish_task_switch (1,818 samples, 1.20%)</title><rect x="52.6459%" y="821" width="1.2035%" height="15" fill="rgb(230,98,28)" fg:x="79528" fg:w="1818"/><text x="52.8959%" y="831.50"></text></g><g><title>ret_from_fork (1,872 samples, 1.24%)</title><rect x="52.6281%" y="853" width="1.2392%" height="15" fill="rgb(223,121,0)" fg:x="79501" fg:w="1872"/><text x="52.8781%" y="863.50"></text></g><g><title>syscall_exit_to_user_mode (27 samples, 0.02%)</title><rect x="53.8494%" y="837" width="0.0179%" height="15" fill="rgb(234,173,33)" fg:x="81346" fg:w="27"/><text x="54.0994%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (26 samples, 0.02%)</title><rect x="53.8501%" y="821" width="0.0172%" height="15" fill="rgb(245,47,8)" fg:x="81347" fg:w="26"/><text x="54.1001%" y="831.50"></text></g><g><title>switch_fpu_return (18 samples, 0.01%)</title><rect x="53.8554%" y="805" width="0.0119%" height="15" fill="rgb(205,17,20)" fg:x="81355" fg:w="18"/><text x="54.1054%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (278 samples, 0.18%)</title><rect x="53.9560%" y="629" width="0.1840%" height="15" fill="rgb(232,151,16)" fg:x="81507" fg:w="278"/><text x="54.2060%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (276 samples, 0.18%)</title><rect x="53.9573%" y="613" width="0.1827%" height="15" fill="rgb(208,30,32)" fg:x="81509" fg:w="276"/><text x="54.2073%" y="623.50"></text></g><g><title>native_write_msr (275 samples, 0.18%)</title><rect x="53.9580%" y="597" width="0.1820%" height="15" fill="rgb(254,26,3)" fg:x="81510" fg:w="275"/><text x="54.2080%" y="607.50"></text></g><g><title>finish_task_switch (292 samples, 0.19%)</title><rect x="53.9514%" y="645" width="0.1933%" height="15" fill="rgb(240,177,30)" fg:x="81500" fg:w="292"/><text x="54.2014%" y="655.50"></text></g><g><title>futex_wait_queue_me (326 samples, 0.22%)</title><rect x="53.9375%" y="693" width="0.2158%" height="15" fill="rgb(248,76,44)" fg:x="81479" fg:w="326"/><text x="54.1875%" y="703.50"></text></g><g><title>schedule (322 samples, 0.21%)</title><rect x="53.9401%" y="677" width="0.2132%" height="15" fill="rgb(241,186,54)" fg:x="81483" fg:w="322"/><text x="54.1901%" y="687.50"></text></g><g><title>__schedule (319 samples, 0.21%)</title><rect x="53.9421%" y="661" width="0.2112%" height="15" fill="rgb(249,171,29)" fg:x="81486" fg:w="319"/><text x="54.1921%" y="671.50"></text></g><g><title>__x64_sys_futex (346 samples, 0.23%)</title><rect x="53.9335%" y="741" width="0.2290%" height="15" fill="rgb(237,151,44)" fg:x="81473" fg:w="346"/><text x="54.1835%" y="751.50"></text></g><g><title>do_futex (344 samples, 0.23%)</title><rect x="53.9348%" y="725" width="0.2277%" height="15" fill="rgb(228,174,30)" fg:x="81475" fg:w="344"/><text x="54.1848%" y="735.50"></text></g><g><title>futex_wait (343 samples, 0.23%)</title><rect x="53.9355%" y="709" width="0.2271%" height="15" fill="rgb(252,14,37)" fg:x="81476" fg:w="343"/><text x="54.1855%" y="719.50"></text></g><g><title>do_syscall_64 (348 samples, 0.23%)</title><rect x="53.9328%" y="757" width="0.2304%" height="15" fill="rgb(207,111,40)" fg:x="81472" fg:w="348"/><text x="54.1828%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.23%)</title><rect x="53.9328%" y="773" width="0.2330%" height="15" fill="rgb(248,171,54)" fg:x="81472" fg:w="352"/><text x="54.1828%" y="783.50"></text></g><g><title>__GI___pthread_mutex_lock (393 samples, 0.26%)</title><rect x="53.9063%" y="805" width="0.2602%" height="15" fill="rgb(211,127,2)" fg:x="81432" fg:w="393"/><text x="54.1563%" y="815.50"></text></g><g><title>__lll_lock_wait (362 samples, 0.24%)</title><rect x="53.9269%" y="789" width="0.2396%" height="15" fill="rgb(236,87,47)" fg:x="81463" fg:w="362"/><text x="54.1769%" y="799.50"></text></g><g><title>ttwu_do_activate (27 samples, 0.02%)</title><rect x="54.2433%" y="677" width="0.0179%" height="15" fill="rgb(223,190,45)" fg:x="81941" fg:w="27"/><text x="54.4933%" y="687.50"></text></g><g><title>__x64_sys_futex (103 samples, 0.07%)</title><rect x="54.1963%" y="757" width="0.0682%" height="15" fill="rgb(215,5,16)" fg:x="81870" fg:w="103"/><text x="54.4463%" y="767.50"></text></g><g><title>do_futex (103 samples, 0.07%)</title><rect x="54.1963%" y="741" width="0.0682%" height="15" fill="rgb(252,82,33)" fg:x="81870" fg:w="103"/><text x="54.4463%" y="751.50"></text></g><g><title>futex_wake (100 samples, 0.07%)</title><rect x="54.1983%" y="725" width="0.0662%" height="15" fill="rgb(247,213,44)" fg:x="81873" fg:w="100"/><text x="54.4483%" y="735.50"></text></g><g><title>wake_up_q (67 samples, 0.04%)</title><rect x="54.2201%" y="709" width="0.0444%" height="15" fill="rgb(205,196,44)" fg:x="81906" fg:w="67"/><text x="54.4701%" y="719.50"></text></g><g><title>try_to_wake_up (64 samples, 0.04%)</title><rect x="54.2221%" y="693" width="0.0424%" height="15" fill="rgb(237,96,54)" fg:x="81909" fg:w="64"/><text x="54.4721%" y="703.50"></text></g><g><title>do_syscall_64 (109 samples, 0.07%)</title><rect x="54.1943%" y="773" width="0.0722%" height="15" fill="rgb(230,113,34)" fg:x="81867" fg:w="109"/><text x="54.4443%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.08%)</title><rect x="54.1936%" y="789" width="0.0761%" height="15" fill="rgb(221,224,12)" fg:x="81866" fg:w="115"/><text x="54.4436%" y="799.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (155 samples, 0.10%)</title><rect x="54.1678%" y="805" width="0.1026%" height="15" fill="rgb(219,112,44)" fg:x="81827" fg:w="155"/><text x="54.4178%" y="815.50"></text></g><g><title>[libc-2.31.so] (24 samples, 0.02%)</title><rect x="54.3148%" y="677" width="0.0159%" height="15" fill="rgb(210,31,13)" fg:x="82049" fg:w="24"/><text x="54.5648%" y="687.50"></text></g><g><title>__GI___mprotect (24 samples, 0.02%)</title><rect x="54.3148%" y="661" width="0.0159%" height="15" fill="rgb(230,25,16)" fg:x="82049" fg:w="24"/><text x="54.5648%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="54.3154%" y="645" width="0.0152%" height="15" fill="rgb(246,108,53)" fg:x="82050" fg:w="23"/><text x="54.5654%" y="655.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="54.3154%" y="629" width="0.0152%" height="15" fill="rgb(241,172,50)" fg:x="82050" fg:w="23"/><text x="54.5654%" y="639.50"></text></g><g><title>__x64_sys_mprotect (23 samples, 0.02%)</title><rect x="54.3154%" y="613" width="0.0152%" height="15" fill="rgb(235,141,10)" fg:x="82050" fg:w="23"/><text x="54.5654%" y="623.50"></text></g><g><title>do_mprotect_pkey (22 samples, 0.01%)</title><rect x="54.3161%" y="597" width="0.0146%" height="15" fill="rgb(220,174,43)" fg:x="82051" fg:w="22"/><text x="54.5661%" y="607.50"></text></g><g><title>mprotect_fixup (20 samples, 0.01%)</title><rect x="54.3174%" y="581" width="0.0132%" height="15" fill="rgb(215,181,40)" fg:x="82053" fg:w="20"/><text x="54.5674%" y="591.50"></text></g><g><title>perf_event_mmap (17 samples, 0.01%)</title><rect x="54.3426%" y="549" width="0.0113%" height="15" fill="rgb(230,97,2)" fg:x="82091" fg:w="17"/><text x="54.5926%" y="559.50"></text></g><g><title>perf_iterate_sb (16 samples, 0.01%)</title><rect x="54.3432%" y="533" width="0.0106%" height="15" fill="rgb(211,25,27)" fg:x="82092" fg:w="16"/><text x="54.5932%" y="543.50"></text></g><g><title>do_mmap (42 samples, 0.03%)</title><rect x="54.3346%" y="581" width="0.0278%" height="15" fill="rgb(230,87,26)" fg:x="82079" fg:w="42"/><text x="54.5846%" y="591.50"></text></g><g><title>mmap_region (32 samples, 0.02%)</title><rect x="54.3413%" y="565" width="0.0212%" height="15" fill="rgb(227,160,17)" fg:x="82089" fg:w="32"/><text x="54.5913%" y="575.50"></text></g><g><title>do_syscall_64 (45 samples, 0.03%)</title><rect x="54.3346%" y="613" width="0.0298%" height="15" fill="rgb(244,85,34)" fg:x="82079" fg:w="45"/><text x="54.5846%" y="623.50"></text></g><g><title>vm_mmap_pgoff (45 samples, 0.03%)</title><rect x="54.3346%" y="597" width="0.0298%" height="15" fill="rgb(207,70,0)" fg:x="82079" fg:w="45"/><text x="54.5846%" y="607.50"></text></g><g><title>__GI___mmap64 (47 samples, 0.03%)</title><rect x="54.3340%" y="661" width="0.0311%" height="15" fill="rgb(223,129,7)" fg:x="82078" fg:w="47"/><text x="54.5840%" y="671.50"></text></g><g><title>__GI___mmap64 (47 samples, 0.03%)</title><rect x="54.3340%" y="645" width="0.0311%" height="15" fill="rgb(246,105,7)" fg:x="82078" fg:w="47"/><text x="54.5840%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="54.3346%" y="629" width="0.0305%" height="15" fill="rgb(215,154,42)" fg:x="82079" fg:w="46"/><text x="54.5846%" y="639.50"></text></g><g><title>__do_munmap (17 samples, 0.01%)</title><rect x="54.3651%" y="581" width="0.0113%" height="15" fill="rgb(220,215,30)" fg:x="82125" fg:w="17"/><text x="54.6151%" y="591.50"></text></g><g><title>__vm_munmap (19 samples, 0.01%)</title><rect x="54.3651%" y="597" width="0.0126%" height="15" fill="rgb(228,81,51)" fg:x="82125" fg:w="19"/><text x="54.6151%" y="607.50"></text></g><g><title>__GI_munmap (22 samples, 0.01%)</title><rect x="54.3651%" y="661" width="0.0146%" height="15" fill="rgb(247,71,54)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="54.3651%" y="645" width="0.0146%" height="15" fill="rgb(234,176,34)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="655.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="54.3651%" y="629" width="0.0146%" height="15" fill="rgb(241,103,54)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="639.50"></text></g><g><title>__x64_sys_munmap (22 samples, 0.01%)</title><rect x="54.3651%" y="613" width="0.0146%" height="15" fill="rgb(228,22,34)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="623.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="54.3803%" y="613" width="0.0113%" height="15" fill="rgb(241,179,48)" fg:x="82148" fg:w="17"/><text x="54.6303%" y="623.50"></text></g><g><title>exc_page_fault (21 samples, 0.01%)</title><rect x="54.3797%" y="645" width="0.0139%" height="15" fill="rgb(235,167,37)" fg:x="82147" fg:w="21"/><text x="54.6297%" y="655.50"></text></g><g><title>do_user_addr_fault (20 samples, 0.01%)</title><rect x="54.3803%" y="629" width="0.0132%" height="15" fill="rgb(213,109,30)" fg:x="82148" fg:w="20"/><text x="54.6303%" y="639.50"></text></g><g><title>arena_get2 (122 samples, 0.08%)</title><rect x="54.3135%" y="709" width="0.0808%" height="15" fill="rgb(222,172,16)" fg:x="82047" fg:w="122"/><text x="54.5635%" y="719.50"></text></g><g><title>_int_new_arena (121 samples, 0.08%)</title><rect x="54.3141%" y="693" width="0.0801%" height="15" fill="rgb(233,192,5)" fg:x="82048" fg:w="121"/><text x="54.5641%" y="703.50"></text></g><g><title>new_heap (95 samples, 0.06%)</title><rect x="54.3313%" y="677" width="0.0629%" height="15" fill="rgb(247,189,41)" fg:x="82074" fg:w="95"/><text x="54.5813%" y="687.50"></text></g><g><title>asm_exc_page_fault (22 samples, 0.01%)</title><rect x="54.3797%" y="661" width="0.0146%" height="15" fill="rgb(218,134,47)" fg:x="82147" fg:w="22"/><text x="54.6297%" y="671.50"></text></g><g><title>__GI___libc_malloc (159 samples, 0.11%)</title><rect x="54.2896%" y="773" width="0.1053%" height="15" fill="rgb(216,29,3)" fg:x="82011" fg:w="159"/><text x="54.5396%" y="783.50"></text></g><g><title>tcache_init (124 samples, 0.08%)</title><rect x="54.3128%" y="757" width="0.0821%" height="15" fill="rgb(246,140,12)" fg:x="82046" fg:w="124"/><text x="54.5628%" y="767.50"></text></g><g><title>tcache_init (124 samples, 0.08%)</title><rect x="54.3128%" y="741" width="0.0821%" height="15" fill="rgb(230,136,11)" fg:x="82046" fg:w="124"/><text x="54.5628%" y="751.50"></text></g><g><title>arena_get2 (123 samples, 0.08%)</title><rect x="54.3135%" y="725" width="0.0814%" height="15" fill="rgb(247,22,47)" fg:x="82047" fg:w="123"/><text x="54.5635%" y="735.50"></text></g><g><title>operator new (166 samples, 0.11%)</title><rect x="54.2896%" y="789" width="0.1099%" height="15" fill="rgb(218,84,22)" fg:x="82011" fg:w="166"/><text x="54.5396%" y="799.50"></text></g><g><title>_int_free (21 samples, 0.01%)</title><rect x="54.4101%" y="773" width="0.0139%" height="15" fill="rgb(216,87,39)" fg:x="82193" fg:w="21"/><text x="54.6601%" y="783.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_manager (240 samples, 0.16%)</title><rect x="54.2704%" y="805" width="0.1589%" height="15" fill="rgb(221,178,8)" fg:x="81982" fg:w="240"/><text x="54.5204%" y="815.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_manager (44 samples, 0.03%)</title><rect x="54.4002%" y="789" width="0.0291%" height="15" fill="rgb(230,42,11)" fg:x="82178" fg:w="44"/><text x="54.6502%" y="799.50"></text></g><g><title>__GI___pthread_mutex_lock (17 samples, 0.01%)</title><rect x="54.4300%" y="789" width="0.0113%" height="15" fill="rgb(237,229,4)" fg:x="82223" fg:w="17"/><text x="54.6800%" y="799.50"></text></g><g><title>std::_Function_handler<void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_invoke (97 samples, 0.06%)</title><rect x="54.4412%" y="789" width="0.0642%" height="15" fill="rgb(222,31,33)" fg:x="82240" fg:w="97"/><text x="54.6912%" y="799.50"></text></g><g><title>llvm::function_ref<void (unsigned long)>::callback_fn<llvm::parallelForEach<lld::elf::Symbol* const*, (anonymous namespace)::Writer<llvm::object::ELFType<(llvm::support::endianness)1, true> >::finalizeSections()::{lambda(lld::elf::Symbol*)#1}>(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer<llvm::object::ELFType<(llvm::support::endianness)1, true> >::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}> (66 samples, 0.04%)</title><rect x="54.4617%" y="773" width="0.0437%" height="15" fill="rgb(210,17,39)" fg:x="82271" fg:w="66"/><text x="54.7117%" y="783.50"></text></g><g><title>lld::elf::computeIsPreemptible (44 samples, 0.03%)</title><rect x="54.4763%" y="757" width="0.0291%" height="15" fill="rgb(244,93,20)" fg:x="82293" fg:w="44"/><text x="54.7263%" y="767.50"></text></g><g><title>std::_Function_handler<void (), llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_invoke (125 samples, 0.08%)</title><rect x="54.4293%" y="805" width="0.0827%" height="15" fill="rgb(210,40,47)" fg:x="82222" fg:w="125"/><text x="54.6793%" y="815.50"></text></g><g><title>mark_wake_futex (36 samples, 0.02%)</title><rect x="54.6325%" y="645" width="0.0238%" height="15" fill="rgb(239,211,47)" fg:x="82529" fg:w="36"/><text x="54.8825%" y="655.50"></text></g><g><title>select_task_rq_fair (57 samples, 0.04%)</title><rect x="54.6742%" y="613" width="0.0377%" height="15" fill="rgb(251,223,49)" fg:x="82592" fg:w="57"/><text x="54.9242%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (22 samples, 0.01%)</title><rect x="54.6974%" y="597" width="0.0146%" height="15" fill="rgb(221,149,5)" fg:x="82627" fg:w="22"/><text x="54.9474%" y="607.50"></text></g><g><title>enqueue_task_fair (64 samples, 0.04%)</title><rect x="54.7166%" y="597" width="0.0424%" height="15" fill="rgb(219,224,51)" fg:x="82656" fg:w="64"/><text x="54.9666%" y="607.50"></text></g><g><title>enqueue_entity (52 samples, 0.03%)</title><rect x="54.7246%" y="581" width="0.0344%" height="15" fill="rgb(223,7,8)" fg:x="82668" fg:w="52"/><text x="54.9746%" y="591.50"></text></g><g><title>update_load_avg (22 samples, 0.01%)</title><rect x="54.7444%" y="565" width="0.0146%" height="15" fill="rgb(241,217,22)" fg:x="82698" fg:w="22"/><text x="54.9944%" y="575.50"></text></g><g><title>ttwu_do_activate (156 samples, 0.10%)</title><rect x="54.7120%" y="613" width="0.1033%" height="15" fill="rgb(248,209,0)" fg:x="82649" fg:w="156"/><text x="54.9620%" y="623.50"></text></g><g><title>psi_task_change (85 samples, 0.06%)</title><rect x="54.7590%" y="597" width="0.0563%" height="15" fill="rgb(217,205,4)" fg:x="82720" fg:w="85"/><text x="55.0090%" y="607.50"></text></g><g><title>psi_group_change (67 samples, 0.04%)</title><rect x="54.7709%" y="581" width="0.0444%" height="15" fill="rgb(228,124,39)" fg:x="82738" fg:w="67"/><text x="55.0209%" y="591.50"></text></g><g><title>__x64_sys_futex (375 samples, 0.25%)</title><rect x="54.5935%" y="693" width="0.2482%" height="15" fill="rgb(250,116,42)" fg:x="82470" fg:w="375"/><text x="54.8435%" y="703.50"></text></g><g><title>do_futex (372 samples, 0.25%)</title><rect x="54.5955%" y="677" width="0.2463%" height="15" fill="rgb(223,202,9)" fg:x="82473" fg:w="372"/><text x="54.8455%" y="687.50"></text></g><g><title>futex_wake (369 samples, 0.24%)</title><rect x="54.5975%" y="661" width="0.2443%" height="15" fill="rgb(242,222,40)" fg:x="82476" fg:w="369"/><text x="54.8475%" y="671.50"></text></g><g><title>wake_up_q (276 samples, 0.18%)</title><rect x="54.6590%" y="645" width="0.1827%" height="15" fill="rgb(229,99,46)" fg:x="82569" fg:w="276"/><text x="54.9090%" y="655.50"></text></g><g><title>try_to_wake_up (274 samples, 0.18%)</title><rect x="54.6603%" y="629" width="0.1814%" height="15" fill="rgb(225,56,46)" fg:x="82571" fg:w="274"/><text x="54.9103%" y="639.50"></text></g><g><title>update_rq_clock (26 samples, 0.02%)</title><rect x="54.8245%" y="613" width="0.0172%" height="15" fill="rgb(227,94,5)" fg:x="82819" fg:w="26"/><text x="55.0745%" y="623.50"></text></g><g><title>do_syscall_64 (381 samples, 0.25%)</title><rect x="54.5908%" y="709" width="0.2522%" height="15" fill="rgb(205,112,38)" fg:x="82466" fg:w="381"/><text x="54.8408%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (384 samples, 0.25%)</title><rect x="54.5895%" y="725" width="0.2542%" height="15" fill="rgb(231,133,46)" fg:x="82464" fg:w="384"/><text x="54.8395%" y="735.50"></text></g><g><title>__condvar_dec_grefs (439 samples, 0.29%)</title><rect x="54.5544%" y="757" width="0.2906%" height="15" fill="rgb(217,16,9)" fg:x="82411" fg:w="439"/><text x="54.8044%" y="767.50"></text></g><g><title>futex_wake (396 samples, 0.26%)</title><rect x="54.5829%" y="741" width="0.2621%" height="15" fill="rgb(249,173,9)" fg:x="82454" fg:w="396"/><text x="54.8329%" y="751.50"></text></g><g><title>__condvar_fetch_add_wseq_acquire (17 samples, 0.01%)</title><rect x="54.8450%" y="757" width="0.0113%" height="15" fill="rgb(205,163,53)" fg:x="82850" fg:w="17"/><text x="55.0950%" y="767.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.06%)</title><rect x="54.8735%" y="709" width="0.0583%" height="15" fill="rgb(217,54,41)" fg:x="82893" fg:w="88"/><text x="55.1235%" y="719.50"></text></g><g><title>do_futex (88 samples, 0.06%)</title><rect x="54.8735%" y="693" width="0.0583%" height="15" fill="rgb(228,216,12)" fg:x="82893" fg:w="88"/><text x="55.1235%" y="703.50"></text></g><g><title>futex_wake (86 samples, 0.06%)</title><rect x="54.8748%" y="677" width="0.0569%" height="15" fill="rgb(244,228,15)" fg:x="82895" fg:w="86"/><text x="55.1248%" y="687.50"></text></g><g><title>wake_up_q (36 samples, 0.02%)</title><rect x="54.9079%" y="661" width="0.0238%" height="15" fill="rgb(221,176,53)" fg:x="82945" fg:w="36"/><text x="55.1579%" y="671.50"></text></g><g><title>try_to_wake_up (35 samples, 0.02%)</title><rect x="54.9086%" y="645" width="0.0232%" height="15" fill="rgb(205,94,34)" fg:x="82946" fg:w="35"/><text x="55.1586%" y="655.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="54.8715%" y="725" width="0.0609%" height="15" fill="rgb(213,110,48)" fg:x="82890" fg:w="92"/><text x="55.1215%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.06%)</title><rect x="54.8708%" y="741" width="0.0642%" height="15" fill="rgb(236,142,28)" fg:x="82889" fg:w="97"/><text x="55.1208%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (122 samples, 0.08%)</title><rect x="54.8576%" y="757" width="0.0808%" height="15" fill="rgb(225,135,29)" fg:x="82869" fg:w="122"/><text x="55.1076%" y="767.50"></text></g><g><title>__pthread_disable_asynccancel (34 samples, 0.02%)</title><rect x="54.9589%" y="741" width="0.0225%" height="15" fill="rgb(252,45,31)" fg:x="83022" fg:w="34"/><text x="55.2089%" y="751.50"></text></g><g><title>entry_SYSCALL_64 (20 samples, 0.01%)</title><rect x="54.9933%" y="741" width="0.0132%" height="15" fill="rgb(211,187,50)" fg:x="83074" fg:w="20"/><text x="55.2433%" y="751.50"></text></g><g><title>plist_add (32 samples, 0.02%)</title><rect x="55.1370%" y="645" width="0.0212%" height="15" fill="rgb(229,109,7)" fg:x="83291" fg:w="32"/><text x="55.3870%" y="655.50"></text></g><g><title>_raw_spin_lock (16 samples, 0.01%)</title><rect x="55.2204%" y="597" width="0.0106%" height="15" fill="rgb(251,131,51)" fg:x="83417" fg:w="16"/><text x="55.4704%" y="607.50"></text></g><g><title>__perf_event_task_sched_out (30 samples, 0.02%)</title><rect x="55.2138%" y="613" width="0.0199%" height="15" fill="rgb(251,180,35)" fg:x="83407" fg:w="30"/><text x="55.4638%" y="623.50"></text></g><g><title>update_cfs_group (25 samples, 0.02%)</title><rect x="55.2939%" y="581" width="0.0165%" height="15" fill="rgb(211,46,32)" fg:x="83528" fg:w="25"/><text x="55.5439%" y="591.50"></text></g><g><title>__calc_delta (18 samples, 0.01%)</title><rect x="55.3276%" y="565" width="0.0119%" height="15" fill="rgb(248,123,17)" fg:x="83579" fg:w="18"/><text x="55.5776%" y="575.50"></text></g><g><title>cpuacct_charge (20 samples, 0.01%)</title><rect x="55.3468%" y="565" width="0.0132%" height="15" fill="rgb(227,141,18)" fg:x="83608" fg:w="20"/><text x="55.5968%" y="575.50"></text></g><g><title>update_curr (80 samples, 0.05%)</title><rect x="55.3104%" y="581" width="0.0530%" height="15" fill="rgb(216,102,9)" fg:x="83553" fg:w="80"/><text x="55.5604%" y="591.50"></text></g><g><title>__update_load_avg_cfs_rq (17 samples, 0.01%)</title><rect x="55.3852%" y="565" width="0.0113%" height="15" fill="rgb(253,47,13)" fg:x="83666" fg:w="17"/><text x="55.6352%" y="575.50"></text></g><g><title>__update_load_avg_se (27 samples, 0.02%)</title><rect x="55.3965%" y="565" width="0.0179%" height="15" fill="rgb(226,93,23)" fg:x="83683" fg:w="27"/><text x="55.6465%" y="575.50"></text></g><g><title>dequeue_entity (229 samples, 0.15%)</title><rect x="55.2634%" y="597" width="0.1516%" height="15" fill="rgb(247,104,17)" fg:x="83482" fg:w="229"/><text x="55.5134%" y="607.50"></text></g><g><title>update_load_avg (78 samples, 0.05%)</title><rect x="55.3634%" y="581" width="0.0516%" height="15" fill="rgb(233,203,26)" fg:x="83633" fg:w="78"/><text x="55.6134%" y="591.50"></text></g><g><title>dequeue_task_fair (266 samples, 0.18%)</title><rect x="55.2435%" y="613" width="0.1761%" height="15" fill="rgb(244,98,49)" fg:x="83452" fg:w="266"/><text x="55.4935%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (8,089 samples, 5.35%)</title><rect x="55.4991%" y="597" width="5.3548%" height="15" fill="rgb(235,134,22)" fg:x="83838" fg:w="8089"/><text x="55.7491%" y="607.50">__perf_..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (8,032 samples, 5.32%)</title><rect x="55.5368%" y="581" width="5.3170%" height="15" fill="rgb(221,70,32)" fg:x="83895" fg:w="8032"/><text x="55.7868%" y="591.50">__intel..</text></g><g><title>native_write_msr (7,990 samples, 5.29%)</title><rect x="55.5646%" y="565" width="5.2892%" height="15" fill="rgb(238,15,50)" fg:x="83937" fg:w="7990"/><text x="55.8146%" y="575.50">native..</text></g><g><title>asm_sysvec_apic_timer_interrupt (18 samples, 0.01%)</title><rect x="60.8545%" y="597" width="0.0119%" height="15" fill="rgb(215,221,48)" fg:x="91928" fg:w="18"/><text x="61.1045%" y="607.50"></text></g><g><title>sysvec_apic_timer_interrupt (16 samples, 0.01%)</title><rect x="60.8558%" y="581" width="0.0106%" height="15" fill="rgb(236,73,3)" fg:x="91930" fg:w="16"/><text x="61.1058%" y="591.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.01%)</title><rect x="60.9187%" y="389" width="0.0139%" height="15" fill="rgb(250,107,11)" fg:x="92025" fg:w="21"/><text x="61.1687%" y="399.50"></text></g><g><title>__wake_up_common (54 samples, 0.04%)</title><rect x="60.9028%" y="437" width="0.0357%" height="15" fill="rgb(242,39,14)" fg:x="92001" fg:w="54"/><text x="61.1528%" y="447.50"></text></g><g><title>pollwake (49 samples, 0.03%)</title><rect x="60.9061%" y="421" width="0.0324%" height="15" fill="rgb(248,164,37)" fg:x="92006" fg:w="49"/><text x="61.1561%" y="431.50"></text></g><g><title>try_to_wake_up (47 samples, 0.03%)</title><rect x="60.9074%" y="405" width="0.0311%" height="15" fill="rgb(217,60,12)" fg:x="92008" fg:w="47"/><text x="61.1574%" y="415.50"></text></g><g><title>irq_work_run (68 samples, 0.05%)</title><rect x="60.8949%" y="533" width="0.0450%" height="15" fill="rgb(240,125,29)" fg:x="91989" fg:w="68"/><text x="61.1449%" y="543.50"></text></g><g><title>irq_work_run_list (67 samples, 0.04%)</title><rect x="60.8955%" y="517" width="0.0444%" height="15" fill="rgb(208,207,28)" fg:x="91990" fg:w="67"/><text x="61.1455%" y="527.50"></text></g><g><title>irq_work_single (67 samples, 0.04%)</title><rect x="60.8955%" y="501" width="0.0444%" height="15" fill="rgb(209,159,27)" fg:x="91990" fg:w="67"/><text x="61.1455%" y="511.50"></text></g><g><title>perf_pending_event (67 samples, 0.04%)</title><rect x="60.8955%" y="485" width="0.0444%" height="15" fill="rgb(251,176,53)" fg:x="91990" fg:w="67"/><text x="61.1455%" y="495.50"></text></g><g><title>perf_event_wakeup (62 samples, 0.04%)</title><rect x="60.8988%" y="469" width="0.0410%" height="15" fill="rgb(211,85,7)" fg:x="91995" fg:w="62"/><text x="61.1488%" y="479.50"></text></g><g><title>__wake_up_common_lock (58 samples, 0.04%)</title><rect x="60.9015%" y="453" width="0.0384%" height="15" fill="rgb(216,64,54)" fg:x="91999" fg:w="58"/><text x="61.1515%" y="463.50"></text></g><g><title>asm_call_sysvec_on_stack (85 samples, 0.06%)</title><rect x="60.8863%" y="565" width="0.0563%" height="15" fill="rgb(217,54,24)" fg:x="91976" fg:w="85"/><text x="61.1363%" y="575.50"></text></g><g><title>__sysvec_irq_work (75 samples, 0.05%)</title><rect x="60.8929%" y="549" width="0.0496%" height="15" fill="rgb(208,206,53)" fg:x="91986" fg:w="75"/><text x="61.1429%" y="559.50"></text></g><g><title>asm_sysvec_irq_work (125 samples, 0.08%)</title><rect x="60.8677%" y="597" width="0.0827%" height="15" fill="rgb(251,74,39)" fg:x="91948" fg:w="125"/><text x="61.1177%" y="607.50"></text></g><g><title>sysvec_irq_work (101 samples, 0.07%)</title><rect x="60.8836%" y="581" width="0.0669%" height="15" fill="rgb(226,47,5)" fg:x="91972" fg:w="101"/><text x="61.1336%" y="591.50"></text></g><g><title>finish_task_switch (8,366 samples, 5.54%)</title><rect x="55.4196%" y="613" width="5.5381%" height="15" fill="rgb(234,111,33)" fg:x="83718" fg:w="8366"/><text x="55.6696%" y="623.50">finish_..</text></g><g><title>load_balance (17 samples, 0.01%)</title><rect x="60.9769%" y="581" width="0.0113%" height="15" fill="rgb(251,14,10)" fg:x="92113" fg:w="17"/><text x="61.2269%" y="591.50"></text></g><g><title>newidle_balance (41 samples, 0.03%)</title><rect x="60.9637%" y="597" width="0.0271%" height="15" fill="rgb(232,43,0)" fg:x="92093" fg:w="41"/><text x="61.2137%" y="607.50"></text></g><g><title>pick_next_task_fair (54 samples, 0.04%)</title><rect x="60.9578%" y="613" width="0.0357%" height="15" fill="rgb(222,68,43)" fg:x="92084" fg:w="54"/><text x="61.2078%" y="623.50"></text></g><g><title>pick_next_task_idle (26 samples, 0.02%)</title><rect x="60.9935%" y="613" width="0.0172%" height="15" fill="rgb(217,24,23)" fg:x="92138" fg:w="26"/><text x="61.2435%" y="623.50"></text></g><g><title>__update_idle_core (26 samples, 0.02%)</title><rect x="60.9935%" y="597" width="0.0172%" height="15" fill="rgb(229,209,14)" fg:x="92138" fg:w="26"/><text x="61.2435%" y="607.50"></text></g><g><title>psi_task_change (164 samples, 0.11%)</title><rect x="61.0107%" y="613" width="0.1086%" height="15" fill="rgb(250,149,48)" fg:x="92164" fg:w="164"/><text x="61.2607%" y="623.50"></text></g><g><title>psi_group_change (136 samples, 0.09%)</title><rect x="61.0292%" y="597" width="0.0900%" height="15" fill="rgb(210,120,37)" fg:x="92192" fg:w="136"/><text x="61.2792%" y="607.50"></text></g><g><title>record_times (35 samples, 0.02%)</title><rect x="61.0961%" y="581" width="0.0232%" height="15" fill="rgb(210,21,8)" fg:x="92293" fg:w="35"/><text x="61.3461%" y="591.50"></text></g><g><title>sched_clock_cpu (26 samples, 0.02%)</title><rect x="61.1021%" y="565" width="0.0172%" height="15" fill="rgb(243,145,7)" fg:x="92302" fg:w="26"/><text x="61.3521%" y="575.50"></text></g><g><title>sched_clock (22 samples, 0.01%)</title><rect x="61.1047%" y="549" width="0.0146%" height="15" fill="rgb(238,178,32)" fg:x="92306" fg:w="22"/><text x="61.3547%" y="559.50"></text></g><g><title>native_sched_clock (20 samples, 0.01%)</title><rect x="61.1060%" y="533" width="0.0132%" height="15" fill="rgb(222,4,10)" fg:x="92308" fg:w="20"/><text x="61.3560%" y="543.50"></text></g><g><title>futex_wait_queue_me (9,128 samples, 6.04%)</title><rect x="55.0986%" y="661" width="6.0426%" height="15" fill="rgb(239,7,37)" fg:x="83233" fg:w="9128"/><text x="55.3486%" y="671.50">futex_wa..</text></g><g><title>schedule (9,038 samples, 5.98%)</title><rect x="55.1581%" y="645" width="5.9830%" height="15" fill="rgb(215,31,37)" fg:x="83323" fg:w="9038"/><text x="55.4081%" y="655.50">schedule</text></g><g><title>__schedule (9,016 samples, 5.97%)</title><rect x="55.1727%" y="629" width="5.9684%" height="15" fill="rgb(224,83,33)" fg:x="83345" fg:w="9016"/><text x="55.4227%" y="639.50">__schedu..</text></g><g><title>update_rq_clock (20 samples, 0.01%)</title><rect x="61.1279%" y="613" width="0.0132%" height="15" fill="rgb(239,55,3)" fg:x="92341" fg:w="20"/><text x="61.3779%" y="623.50"></text></g><g><title>__get_user_nocheck_4 (19 samples, 0.01%)</title><rect x="61.1736%" y="645" width="0.0126%" height="15" fill="rgb(247,92,11)" fg:x="92410" fg:w="19"/><text x="61.4236%" y="655.50"></text></g><g><title>do_syscall_64 (9,356 samples, 6.19%)</title><rect x="55.0145%" y="725" width="6.1935%" height="15" fill="rgb(239,200,7)" fg:x="83106" fg:w="9356"/><text x="55.2645%" y="735.50">do_sysca..</text></g><g><title>__x64_sys_futex (9,334 samples, 6.18%)</title><rect x="55.0291%" y="709" width="6.1789%" height="15" fill="rgb(227,115,8)" fg:x="83128" fg:w="9334"/><text x="55.2791%" y="719.50">__x64_sy..</text></g><g><title>do_futex (9,313 samples, 6.17%)</title><rect x="55.0430%" y="693" width="6.1650%" height="15" fill="rgb(215,189,27)" fg:x="83149" fg:w="9313"/><text x="55.2930%" y="703.50">do_futex</text></g><g><title>futex_wait (9,280 samples, 6.14%)</title><rect x="55.0648%" y="677" width="6.1432%" height="15" fill="rgb(251,216,39)" fg:x="83182" fg:w="9280"/><text x="55.3148%" y="687.50">futex_wa..</text></g><g><title>futex_wait_setup (101 samples, 0.07%)</title><rect x="61.1411%" y="661" width="0.0669%" height="15" fill="rgb(207,29,47)" fg:x="92361" fg:w="101"/><text x="61.3911%" y="671.50"></text></g><g><title>hash_futex (16 samples, 0.01%)</title><rect x="61.1974%" y="645" width="0.0106%" height="15" fill="rgb(210,71,34)" fg:x="92446" fg:w="16"/><text x="61.4474%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9,492 samples, 6.28%)</title><rect x="55.0066%" y="741" width="6.2835%" height="15" fill="rgb(253,217,51)" fg:x="83094" fg:w="9492"/><text x="55.2566%" y="751.50">entry_SY..</text></g><g><title>syscall_exit_to_user_mode (124 samples, 0.08%)</title><rect x="61.2080%" y="725" width="0.0821%" height="15" fill="rgb(222,117,46)" fg:x="92462" fg:w="124"/><text x="61.4580%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (115 samples, 0.08%)</title><rect x="61.2139%" y="709" width="0.0761%" height="15" fill="rgb(226,132,6)" fg:x="92471" fg:w="115"/><text x="61.4639%" y="719.50"></text></g><g><title>switch_fpu_return (103 samples, 0.07%)</title><rect x="61.2219%" y="693" width="0.0682%" height="15" fill="rgb(254,145,51)" fg:x="92483" fg:w="103"/><text x="61.4719%" y="703.50"></text></g><g><title>copy_kernel_to_fpregs (82 samples, 0.05%)</title><rect x="61.2358%" y="677" width="0.0543%" height="15" fill="rgb(231,199,27)" fg:x="92504" fg:w="82"/><text x="61.4858%" y="687.50"></text></g><g><title>__pthread_cond_wait (10,240 samples, 6.78%)</title><rect x="54.5220%" y="789" width="6.7787%" height="15" fill="rgb(245,158,14)" fg:x="82362" fg:w="10240"/><text x="54.7720%" y="799.50">__pthread..</text></g><g><title>__pthread_cond_wait_common (10,240 samples, 6.78%)</title><rect x="54.5220%" y="773" width="6.7787%" height="15" fill="rgb(240,113,14)" fg:x="82362" fg:w="10240"/><text x="54.7720%" y="783.50">__pthread..</text></g><g><title>futex_wait_cancelable (9,608 samples, 6.36%)</title><rect x="54.9404%" y="757" width="6.3603%" height="15" fill="rgb(210,20,13)" fg:x="82994" fg:w="9608"/><text x="55.1904%" y="767.50">futex_wa..</text></g><g><title>__perf_event_task_sched_in (236 samples, 0.16%)</title><rect x="61.3536%" y="613" width="0.1562%" height="15" fill="rgb(241,144,13)" fg:x="92682" fg:w="236"/><text x="61.6036%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (236 samples, 0.16%)</title><rect x="61.3536%" y="597" width="0.1562%" height="15" fill="rgb(235,43,34)" fg:x="92682" fg:w="236"/><text x="61.6036%" y="607.50"></text></g><g><title>native_write_msr (234 samples, 0.15%)</title><rect x="61.3549%" y="581" width="0.1549%" height="15" fill="rgb(208,36,20)" fg:x="92684" fg:w="234"/><text x="61.6049%" y="591.50"></text></g><g><title>finish_task_switch (244 samples, 0.16%)</title><rect x="61.3510%" y="629" width="0.1615%" height="15" fill="rgb(239,204,10)" fg:x="92678" fg:w="244"/><text x="61.6010%" y="639.50"></text></g><g><title>futex_wait_queue_me (286 samples, 0.19%)</title><rect x="61.3344%" y="677" width="0.1893%" height="15" fill="rgb(217,84,43)" fg:x="92653" fg:w="286"/><text x="61.5844%" y="687.50"></text></g><g><title>schedule (277 samples, 0.18%)</title><rect x="61.3404%" y="661" width="0.1834%" height="15" fill="rgb(241,170,50)" fg:x="92662" fg:w="277"/><text x="61.5904%" y="671.50"></text></g><g><title>__schedule (277 samples, 0.18%)</title><rect x="61.3404%" y="645" width="0.1834%" height="15" fill="rgb(226,205,29)" fg:x="92662" fg:w="277"/><text x="61.5904%" y="655.50"></text></g><g><title>do_syscall_64 (308 samples, 0.20%)</title><rect x="61.3291%" y="741" width="0.2039%" height="15" fill="rgb(233,113,1)" fg:x="92645" fg:w="308"/><text x="61.5791%" y="751.50"></text></g><g><title>__x64_sys_futex (306 samples, 0.20%)</title><rect x="61.3304%" y="725" width="0.2026%" height="15" fill="rgb(253,98,13)" fg:x="92647" fg:w="306"/><text x="61.5804%" y="735.50"></text></g><g><title>do_futex (306 samples, 0.20%)</title><rect x="61.3304%" y="709" width="0.2026%" height="15" fill="rgb(211,115,12)" fg:x="92647" fg:w="306"/><text x="61.5804%" y="719.50"></text></g><g><title>futex_wait (303 samples, 0.20%)</title><rect x="61.3324%" y="693" width="0.2006%" height="15" fill="rgb(208,12,16)" fg:x="92650" fg:w="303"/><text x="61.5824%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (315 samples, 0.21%)</title><rect x="61.3271%" y="757" width="0.2085%" height="15" fill="rgb(237,193,54)" fg:x="92642" fg:w="315"/><text x="61.5771%" y="767.50"></text></g><g><title>__pthread_mutex_cond_lock (356 samples, 0.24%)</title><rect x="61.3007%" y="789" width="0.2357%" height="15" fill="rgb(243,22,42)" fg:x="92602" fg:w="356"/><text x="61.5507%" y="799.50"></text></g><g><title>__lll_lock_wait (328 samples, 0.22%)</title><rect x="61.3192%" y="773" width="0.2171%" height="15" fill="rgb(233,151,36)" fg:x="92630" fg:w="328"/><text x="61.5692%" y="783.50"></text></g><g><title>std::condition_variable::wait (10,627 samples, 7.03%)</title><rect x="54.5121%" y="805" width="7.0349%" height="15" fill="rgb(237,57,45)" fg:x="82347" fg:w="10627"/><text x="54.7621%" y="815.50">std::cond..</text></g><g><title>pthread_cond_wait@plt (16 samples, 0.01%)</title><rect x="61.5363%" y="789" width="0.0106%" height="15" fill="rgb(221,88,17)" fg:x="92958" fg:w="16"/><text x="61.7863%" y="799.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (11,599 samples, 7.68%)</title><rect x="53.8732%" y="821" width="7.6783%" height="15" fill="rgb(230,79,15)" fg:x="81382" fg:w="11599"/><text x="54.1232%" y="831.50">llvm::paral..</text></g><g><title>__pthread_mutex_unlock_usercnt (17 samples, 0.01%)</title><rect x="61.5701%" y="789" width="0.0113%" height="15" fill="rgb(213,57,13)" fg:x="93009" fg:w="17"/><text x="61.8201%" y="799.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_manager (16 samples, 0.01%)</title><rect x="61.5813%" y="789" width="0.0106%" height="15" fill="rgb(222,116,39)" fg:x="93026" fg:w="16"/><text x="61.8313%" y="799.50"></text></g><g><title>std::_Function_handler<void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_invoke (24 samples, 0.02%)</title><rect x="61.5946%" y="773" width="0.0159%" height="15" fill="rgb(245,107,2)" fg:x="93046" fg:w="24"/><text x="61.8446%" y="783.50"></text></g><g><title>llvm::function_ref<void (unsigned long)>::callback_fn<llvm::parallelForEach<lld::elf::Symbol* const*, (anonymous namespace)::Writer<llvm::object::ELFType<(llvm::support::endianness)1, true> >::finalizeSections()::{lambda(lld::elf::Symbol*)#1}>(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer<llvm::object::ELFType<(llvm::support::endianness)1, true> >::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}> (22 samples, 0.01%)</title><rect x="61.5959%" y="757" width="0.0146%" height="15" fill="rgb(238,1,10)" fg:x="93048" fg:w="22"/><text x="61.8459%" y="767.50"></text></g><g><title>std::_Function_handler<void (), llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_invoke (34 samples, 0.02%)</title><rect x="61.5919%" y="789" width="0.0225%" height="15" fill="rgb(249,4,48)" fg:x="93042" fg:w="34"/><text x="61.8419%" y="799.50"></text></g><g><title>ttwu_do_activate (16 samples, 0.01%)</title><rect x="61.6416%" y="597" width="0.0106%" height="15" fill="rgb(223,151,18)" fg:x="93117" fg:w="16"/><text x="61.8916%" y="607.50"></text></g><g><title>__condvar_dec_grefs (48 samples, 0.03%)</title><rect x="61.6224%" y="741" width="0.0318%" height="15" fill="rgb(227,65,43)" fg:x="93088" fg:w="48"/><text x="61.8724%" y="751.50"></text></g><g><title>futex_wake (39 samples, 0.03%)</title><rect x="61.6283%" y="725" width="0.0258%" height="15" fill="rgb(218,40,45)" fg:x="93097" fg:w="39"/><text x="61.8783%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="61.6290%" y="709" width="0.0252%" height="15" fill="rgb(252,121,31)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="61.6290%" y="693" width="0.0252%" height="15" fill="rgb(219,158,43)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="703.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.03%)</title><rect x="61.6290%" y="677" width="0.0252%" height="15" fill="rgb(231,162,42)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="687.50"></text></g><g><title>do_futex (38 samples, 0.03%)</title><rect x="61.6290%" y="661" width="0.0252%" height="15" fill="rgb(217,179,25)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="671.50"></text></g><g><title>futex_wake (38 samples, 0.03%)</title><rect x="61.6290%" y="645" width="0.0252%" height="15" fill="rgb(206,212,31)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="655.50"></text></g><g><title>wake_up_q (26 samples, 0.02%)</title><rect x="61.6369%" y="629" width="0.0172%" height="15" fill="rgb(235,144,12)" fg:x="93110" fg:w="26"/><text x="61.8869%" y="639.50"></text></g><g><title>try_to_wake_up (26 samples, 0.02%)</title><rect x="61.6369%" y="613" width="0.0172%" height="15" fill="rgb(213,51,10)" fg:x="93110" fg:w="26"/><text x="61.8869%" y="623.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="61.6555%" y="693" width="0.0106%" height="15" fill="rgb(231,145,14)" fg:x="93138" fg:w="16"/><text x="61.9055%" y="703.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="61.6555%" y="677" width="0.0106%" height="15" fill="rgb(235,15,28)" fg:x="93138" fg:w="16"/><text x="61.9055%" y="687.50"></text></g><g><title>futex_wake (16 samples, 0.01%)</title><rect x="61.6555%" y="661" width="0.0106%" height="15" fill="rgb(237,206,10)" fg:x="93138" fg:w="16"/><text x="61.9055%" y="671.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (18 samples, 0.01%)</title><rect x="61.6548%" y="741" width="0.0119%" height="15" fill="rgb(236,227,27)" fg:x="93137" fg:w="18"/><text x="61.9048%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="61.6555%" y="725" width="0.0113%" height="15" fill="rgb(246,83,35)" fg:x="93138" fg:w="17"/><text x="61.9055%" y="735.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="61.6555%" y="709" width="0.0113%" height="15" fill="rgb(220,136,24)" fg:x="93138" fg:w="17"/><text x="61.9055%" y="719.50"></text></g><g><title>dequeue_entity (30 samples, 0.02%)</title><rect x="61.7184%" y="581" width="0.0199%" height="15" fill="rgb(217,3,25)" fg:x="93233" fg:w="30"/><text x="61.9684%" y="591.50"></text></g><g><title>dequeue_task_fair (33 samples, 0.02%)</title><rect x="61.7177%" y="597" width="0.0218%" height="15" fill="rgb(239,24,14)" fg:x="93232" fg:w="33"/><text x="61.9677%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (1,175 samples, 0.78%)</title><rect x="61.7713%" y="581" width="0.7778%" height="15" fill="rgb(244,16,53)" fg:x="93313" fg:w="1175"/><text x="62.0213%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,167 samples, 0.77%)</title><rect x="61.7766%" y="565" width="0.7725%" height="15" fill="rgb(208,175,44)" fg:x="93321" fg:w="1167"/><text x="62.0266%" y="575.50"></text></g><g><title>native_write_msr (1,165 samples, 0.77%)</title><rect x="61.7779%" y="549" width="0.7712%" height="15" fill="rgb(252,18,48)" fg:x="93323" fg:w="1165"/><text x="62.0279%" y="559.50"></text></g><g><title>asm_sysvec_irq_work (20 samples, 0.01%)</title><rect x="62.5492%" y="581" width="0.0132%" height="15" fill="rgb(234,199,32)" fg:x="94488" fg:w="20"/><text x="62.7992%" y="591.50"></text></g><g><title>finish_task_switch (1,249 samples, 0.83%)</title><rect x="61.7396%" y="597" width="0.8268%" height="15" fill="rgb(225,77,54)" fg:x="93265" fg:w="1249"/><text x="61.9896%" y="607.50"></text></g><g><title>psi_task_change (16 samples, 0.01%)</title><rect x="62.5770%" y="597" width="0.0106%" height="15" fill="rgb(225,42,25)" fg:x="94530" fg:w="16"/><text x="62.8270%" y="607.50"></text></g><g><title>futex_wait_queue_me (1,359 samples, 0.90%)</title><rect x="61.6906%" y="645" width="0.8996%" height="15" fill="rgb(242,227,46)" fg:x="93191" fg:w="1359"/><text x="61.9406%" y="655.50"></text></g><g><title>schedule (1,339 samples, 0.89%)</title><rect x="61.7038%" y="629" width="0.8864%" height="15" fill="rgb(246,197,35)" fg:x="93211" fg:w="1339"/><text x="61.9538%" y="639.50"></text></g><g><title>__schedule (1,337 samples, 0.89%)</title><rect x="61.7051%" y="613" width="0.8851%" height="15" fill="rgb(215,159,26)" fg:x="93213" fg:w="1337"/><text x="61.9551%" y="623.50"></text></g><g><title>__x64_sys_futex (1,390 samples, 0.92%)</title><rect x="61.6773%" y="693" width="0.9202%" height="15" fill="rgb(212,194,50)" fg:x="93171" fg:w="1390"/><text x="61.9273%" y="703.50"></text></g><g><title>do_futex (1,386 samples, 0.92%)</title><rect x="61.6800%" y="677" width="0.9175%" height="15" fill="rgb(246,132,1)" fg:x="93175" fg:w="1386"/><text x="61.9300%" y="687.50"></text></g><g><title>futex_wait (1,383 samples, 0.92%)</title><rect x="61.6820%" y="661" width="0.9155%" height="15" fill="rgb(217,71,7)" fg:x="93178" fg:w="1383"/><text x="61.9320%" y="671.50"></text></g><g><title>do_syscall_64 (1,397 samples, 0.92%)</title><rect x="61.6734%" y="709" width="0.9248%" height="15" fill="rgb(252,59,32)" fg:x="93165" fg:w="1397"/><text x="61.9234%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,435 samples, 0.95%)</title><rect x="61.6720%" y="725" width="0.9499%" height="15" fill="rgb(253,204,25)" fg:x="93163" fg:w="1435"/><text x="61.9220%" y="735.50"></text></g><g><title>syscall_exit_to_user_mode (36 samples, 0.02%)</title><rect x="62.5981%" y="709" width="0.0238%" height="15" fill="rgb(232,21,16)" fg:x="94562" fg:w="36"/><text x="62.8481%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (33 samples, 0.02%)</title><rect x="62.6001%" y="693" width="0.0218%" height="15" fill="rgb(248,90,29)" fg:x="94565" fg:w="33"/><text x="62.8501%" y="703.50"></text></g><g><title>switch_fpu_return (29 samples, 0.02%)</title><rect x="62.6028%" y="677" width="0.0192%" height="15" fill="rgb(249,223,7)" fg:x="94569" fg:w="29"/><text x="62.8528%" y="687.50"></text></g><g><title>copy_kernel_to_fpregs (21 samples, 0.01%)</title><rect x="62.6081%" y="661" width="0.0139%" height="15" fill="rgb(231,119,42)" fg:x="94577" fg:w="21"/><text x="62.8581%" y="671.50"></text></g><g><title>__pthread_cond_wait (1,522 samples, 1.01%)</title><rect x="61.6151%" y="773" width="1.0075%" height="15" fill="rgb(215,41,35)" fg:x="93077" fg:w="1522"/><text x="61.8651%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (1,522 samples, 1.01%)</title><rect x="61.6151%" y="757" width="1.0075%" height="15" fill="rgb(220,44,45)" fg:x="93077" fg:w="1522"/><text x="61.8651%" y="767.50"></text></g><g><title>futex_wait_cancelable (1,443 samples, 0.96%)</title><rect x="61.6674%" y="741" width="0.9552%" height="15" fill="rgb(253,197,36)" fg:x="93156" fg:w="1443"/><text x="61.9174%" y="751.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="62.6312%" y="613" width="0.0192%" height="15" fill="rgb(245,225,54)" fg:x="94612" fg:w="29"/><text x="62.8812%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="62.6319%" y="597" width="0.0185%" height="15" fill="rgb(239,94,37)" fg:x="94613" fg:w="28"/><text x="62.8819%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="62.6319%" y="581" width="0.0185%" height="15" fill="rgb(242,217,10)" fg:x="94613" fg:w="28"/><text x="62.8819%" y="591.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="62.6319%" y="565" width="0.0185%" height="15" fill="rgb(250,193,7)" fg:x="94613" fg:w="28"/><text x="62.8819%" y="575.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="62.6279%" y="661" width="0.0238%" height="15" fill="rgb(230,104,19)" fg:x="94607" fg:w="36"/><text x="62.8779%" y="671.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="62.6286%" y="645" width="0.0232%" height="15" fill="rgb(230,181,4)" fg:x="94608" fg:w="35"/><text x="62.8786%" y="655.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="62.6286%" y="629" width="0.0232%" height="15" fill="rgb(216,219,49)" fg:x="94608" fg:w="35"/><text x="62.8786%" y="639.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="62.6273%" y="725" width="0.0265%" height="15" fill="rgb(254,144,0)" fg:x="94606" fg:w="40"/><text x="62.8773%" y="735.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="62.6279%" y="709" width="0.0258%" height="15" fill="rgb(205,209,38)" fg:x="94607" fg:w="39"/><text x="62.8779%" y="719.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="62.6279%" y="693" width="0.0258%" height="15" fill="rgb(240,21,42)" fg:x="94607" fg:w="39"/><text x="62.8779%" y="703.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="62.6279%" y="677" width="0.0258%" height="15" fill="rgb(241,132,3)" fg:x="94607" fg:w="39"/><text x="62.8779%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.03%)</title><rect x="62.6273%" y="741" width="0.0278%" height="15" fill="rgb(225,14,2)" fg:x="94606" fg:w="42"/><text x="62.8773%" y="751.50"></text></g><g><title>__pthread_mutex_cond_lock (50 samples, 0.03%)</title><rect x="62.6226%" y="773" width="0.0331%" height="15" fill="rgb(210,141,35)" fg:x="94599" fg:w="50"/><text x="62.8726%" y="783.50"></text></g><g><title>__lll_lock_wait (46 samples, 0.03%)</title><rect x="62.6253%" y="757" width="0.0305%" height="15" fill="rgb(251,14,44)" fg:x="94603" fg:w="46"/><text x="62.8753%" y="767.50"></text></g><g><title>std::condition_variable::wait (1,574 samples, 1.04%)</title><rect x="61.6144%" y="789" width="1.0420%" height="15" fill="rgb(247,48,18)" fg:x="93076" fg:w="1574"/><text x="61.8644%" y="799.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (1,666 samples, 1.10%)</title><rect x="61.5542%" y="805" width="1.1029%" height="15" fill="rgb(225,0,40)" fg:x="92985" fg:w="1666"/><text x="61.8042%" y="815.50"></text></g><g><title>do_mmap (17 samples, 0.01%)</title><rect x="62.6590%" y="597" width="0.0113%" height="15" fill="rgb(221,31,33)" fg:x="94654" fg:w="17"/><text x="62.9090%" y="607.50"></text></g><g><title>__GI___mmap64 (22 samples, 0.01%)</title><rect x="62.6577%" y="677" width="0.0146%" height="15" fill="rgb(237,42,40)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="687.50"></text></g><g><title>__GI___mmap64 (22 samples, 0.01%)</title><rect x="62.6577%" y="661" width="0.0146%" height="15" fill="rgb(233,51,29)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="62.6577%" y="645" width="0.0146%" height="15" fill="rgb(226,58,20)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="655.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="62.6577%" y="629" width="0.0146%" height="15" fill="rgb(208,98,7)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="639.50"></text></g><g><title>vm_mmap_pgoff (22 samples, 0.01%)</title><rect x="62.6577%" y="613" width="0.0146%" height="15" fill="rgb(228,143,44)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="623.50"></text></g><g><title>arena_get2 (24 samples, 0.02%)</title><rect x="62.6577%" y="725" width="0.0159%" height="15" fill="rgb(246,55,38)" fg:x="94652" fg:w="24"/><text x="62.9077%" y="735.50"></text></g><g><title>_int_new_arena (24 samples, 0.02%)</title><rect x="62.6577%" y="709" width="0.0159%" height="15" fill="rgb(247,87,16)" fg:x="94652" fg:w="24"/><text x="62.9077%" y="719.50"></text></g><g><title>new_heap (24 samples, 0.02%)</title><rect x="62.6577%" y="693" width="0.0159%" height="15" fill="rgb(234,129,42)" fg:x="94652" fg:w="24"/><text x="62.9077%" y="703.50"></text></g><g><title>operator new (26 samples, 0.02%)</title><rect x="62.6571%" y="805" width="0.0172%" height="15" fill="rgb(220,82,16)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="815.50"></text></g><g><title>__GI___libc_malloc (26 samples, 0.02%)</title><rect x="62.6571%" y="789" width="0.0172%" height="15" fill="rgb(211,88,4)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="799.50"></text></g><g><title>tcache_init (26 samples, 0.02%)</title><rect x="62.6571%" y="773" width="0.0172%" height="15" fill="rgb(248,151,21)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="783.50"></text></g><g><title>tcache_init (26 samples, 0.02%)</title><rect x="62.6571%" y="757" width="0.0172%" height="15" fill="rgb(238,163,6)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="767.50"></text></g><g><title>arena_get2 (25 samples, 0.02%)</title><rect x="62.6577%" y="741" width="0.0165%" height="15" fill="rgb(209,183,11)" fg:x="94652" fg:w="25"/><text x="62.9077%" y="751.50"></text></g><g><title>[libstdc++.so.6.0.28] (13,310 samples, 8.81%)</title><rect x="53.8726%" y="837" width="8.8110%" height="15" fill="rgb(219,37,20)" fg:x="81381" fg:w="13310"/><text x="54.1226%" y="847.50">[libstdc++.s..</text></g><g><title>std::thread::_State_impl<std::thread::_Invoker<std::tuple<llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}> > >::_M_run (1,706 samples, 1.13%)</title><rect x="61.5542%" y="821" width="1.1293%" height="15" fill="rgb(210,158,4)" fg:x="92985" fg:w="1706"/><text x="61.8042%" y="831.50"></text></g><g><title>tlb_finish_mmu (18 samples, 0.01%)</title><rect x="62.7146%" y="725" width="0.0119%" height="15" fill="rgb(221,167,53)" fg:x="94738" fg:w="18"/><text x="62.9646%" y="735.50"></text></g><g><title>flush_tlb_mm_range (16 samples, 0.01%)</title><rect x="62.7160%" y="709" width="0.0106%" height="15" fill="rgb(237,151,45)" fg:x="94740" fg:w="16"/><text x="62.9660%" y="719.50"></text></g><g><title>__x64_sys_madvise (31 samples, 0.02%)</title><rect x="62.7087%" y="773" width="0.0205%" height="15" fill="rgb(231,39,3)" fg:x="94729" fg:w="31"/><text x="62.9587%" y="783.50"></text></g><g><title>do_madvise.part.0 (31 samples, 0.02%)</title><rect x="62.7087%" y="757" width="0.0205%" height="15" fill="rgb(212,167,28)" fg:x="94729" fg:w="31"/><text x="62.9587%" y="767.50"></text></g><g><title>zap_page_range (28 samples, 0.02%)</title><rect x="62.7107%" y="741" width="0.0185%" height="15" fill="rgb(232,178,8)" fg:x="94732" fg:w="28"/><text x="62.9607%" y="751.50"></text></g><g><title>__GI_madvise (33 samples, 0.02%)</title><rect x="62.7080%" y="821" width="0.0218%" height="15" fill="rgb(225,151,20)" fg:x="94728" fg:w="33"/><text x="62.9580%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="62.7080%" y="805" width="0.0218%" height="15" fill="rgb(238,3,37)" fg:x="94728" fg:w="33"/><text x="62.9580%" y="815.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="62.7087%" y="789" width="0.0212%" height="15" fill="rgb(251,147,42)" fg:x="94729" fg:w="32"/><text x="62.9587%" y="799.50"></text></g><g><title>advise_stack_range (35 samples, 0.02%)</title><rect x="62.7080%" y="837" width="0.0232%" height="15" fill="rgb(208,173,10)" fg:x="94728" fg:w="35"/><text x="62.9580%" y="847.50"></text></g><g><title>__GI___clone (15,298 samples, 10.13%)</title><rect x="52.6161%" y="869" width="10.1270%" height="15" fill="rgb(246,225,4)" fg:x="79483" fg:w="15298"/><text x="52.8661%" y="879.50">__GI___clone</text></g><g><title>start_thread (13,408 samples, 8.88%)</title><rect x="53.8673%" y="853" width="8.8758%" height="15" fill="rgb(248,102,6)" fg:x="81373" fg:w="13408"/><text x="54.1173%" y="863.50">start_thread</text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (22 samples, 0.01%)</title><rect x="62.8808%" y="821" width="0.0146%" height="15" fill="rgb(232,6,21)" fg:x="94989" fg:w="22"/><text x="63.1308%" y="831.50"></text></g><g><title>polly::initializePollyPasses (19 samples, 0.01%)</title><rect x="62.8828%" y="805" width="0.0126%" height="15" fill="rgb(221,179,22)" fg:x="94992" fg:w="19"/><text x="63.1328%" y="815.50"></text></g><g><title>__libc_csu_init (269 samples, 0.18%)</title><rect x="62.7537%" y="837" width="0.1781%" height="15" fill="rgb(252,50,20)" fg:x="94797" fg:w="269"/><text x="63.0037%" y="847.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (27 samples, 0.02%)</title><rect x="62.9444%" y="741" width="0.0179%" height="15" fill="rgb(222,56,38)" fg:x="95085" fg:w="27"/><text x="63.1944%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (56 samples, 0.04%)</title><rect x="62.9377%" y="773" width="0.0371%" height="15" fill="rgb(206,193,29)" fg:x="95075" fg:w="56"/><text x="63.1877%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (46 samples, 0.03%)</title><rect x="62.9444%" y="757" width="0.0305%" height="15" fill="rgb(239,192,45)" fg:x="95085" fg:w="46"/><text x="63.1944%" y="767.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (19 samples, 0.01%)</title><rect x="62.9622%" y="741" width="0.0126%" height="15" fill="rgb(254,18,36)" fg:x="95112" fg:w="19"/><text x="63.2122%" y="751.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::InsertIntoBucketImpl<llvm::CachedHashStringRef> (18 samples, 0.01%)</title><rect x="63.0066%" y="709" width="0.0119%" height="15" fill="rgb(221,127,11)" fg:x="95179" fg:w="18"/><text x="63.2566%" y="719.50"></text></g><g><title>llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::grow (16 samples, 0.01%)</title><rect x="63.0079%" y="693" width="0.0106%" height="15" fill="rgb(234,146,35)" fg:x="95181" fg:w="16"/><text x="63.2579%" y="703.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::LookupBucketFor<llvm::CachedHashStringRef> (19 samples, 0.01%)</title><rect x="63.0185%" y="709" width="0.0126%" height="15" fill="rgb(254,201,37)" fg:x="95197" fg:w="19"/><text x="63.2685%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (78 samples, 0.05%)</title><rect x="62.9900%" y="741" width="0.0516%" height="15" fill="rgb(211,202,23)" fg:x="95154" fg:w="78"/><text x="63.2400%" y="751.50"></text></g><g><title>lld::elf::SymbolTable::insert (69 samples, 0.05%)</title><rect x="62.9960%" y="725" width="0.0457%" height="15" fill="rgb(237,91,2)" fg:x="95163" fg:w="69"/><text x="63.2460%" y="735.50"></text></g><g><title>lld::elf::ArchiveFile::parse (99 samples, 0.07%)</title><rect x="62.9847%" y="757" width="0.0655%" height="15" fill="rgb(226,228,36)" fg:x="95146" fg:w="99"/><text x="63.2347%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="63.0648%" y="501" width="0.0311%" height="15" fill="rgb(213,63,50)" fg:x="95267" fg:w="47"/><text x="63.3148%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.03%)</title><rect x="63.0662%" y="485" width="0.0298%" height="15" fill="rgb(235,194,19)" fg:x="95269" fg:w="45"/><text x="63.3162%" y="495.50"></text></g><g><title>native_write_msr (45 samples, 0.03%)</title><rect x="63.0662%" y="469" width="0.0298%" height="15" fill="rgb(207,204,18)" fg:x="95269" fg:w="45"/><text x="63.3162%" y="479.50"></text></g><g><title>__GI___pthread_mutex_lock (51 samples, 0.03%)</title><rect x="63.0628%" y="677" width="0.0338%" height="15" fill="rgb(248,8,7)" fg:x="95264" fg:w="51"/><text x="63.3128%" y="687.50"></text></g><g><title>__lll_lock_wait (50 samples, 0.03%)</title><rect x="63.0635%" y="661" width="0.0331%" height="15" fill="rgb(223,145,47)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="63.0635%" y="645" width="0.0331%" height="15" fill="rgb(228,84,11)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="655.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="63.0635%" y="629" width="0.0331%" height="15" fill="rgb(218,76,45)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="639.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.03%)</title><rect x="63.0635%" y="613" width="0.0331%" height="15" fill="rgb(223,80,15)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="623.50"></text></g><g><title>do_futex (50 samples, 0.03%)</title><rect x="63.0635%" y="597" width="0.0331%" height="15" fill="rgb(219,218,33)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="607.50"></text></g><g><title>futex_wait (50 samples, 0.03%)</title><rect x="63.0635%" y="581" width="0.0331%" height="15" fill="rgb(208,51,11)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="591.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.03%)</title><rect x="63.0635%" y="565" width="0.0331%" height="15" fill="rgb(229,165,39)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="575.50"></text></g><g><title>schedule (50 samples, 0.03%)</title><rect x="63.0635%" y="549" width="0.0331%" height="15" fill="rgb(241,100,24)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="559.50"></text></g><g><title>__schedule (50 samples, 0.03%)</title><rect x="63.0635%" y="533" width="0.0331%" height="15" fill="rgb(228,14,23)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="543.50"></text></g><g><title>finish_task_switch (49 samples, 0.03%)</title><rect x="63.0642%" y="517" width="0.0324%" height="15" fill="rgb(247,116,52)" fg:x="95266" fg:w="49"/><text x="63.3142%" y="527.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (54 samples, 0.04%)</title><rect x="63.0628%" y="693" width="0.0357%" height="15" fill="rgb(216,149,33)" fg:x="95264" fg:w="54"/><text x="63.3128%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="63.1026%" y="469" width="0.0199%" height="15" fill="rgb(238,142,29)" fg:x="95324" fg:w="30"/><text x="63.3526%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="63.1026%" y="453" width="0.0199%" height="15" fill="rgb(224,83,40)" fg:x="95324" fg:w="30"/><text x="63.3526%" y="463.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="63.1026%" y="437" width="0.0199%" height="15" fill="rgb(234,165,11)" fg:x="95324" fg:w="30"/><text x="63.3526%" y="447.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (34 samples, 0.02%)</title><rect x="63.1006%" y="661" width="0.0225%" height="15" fill="rgb(215,96,23)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="671.50"></text></g><g><title>futex_wait_simple (34 samples, 0.02%)</title><rect x="63.1006%" y="645" width="0.0225%" height="15" fill="rgb(233,179,26)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="655.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="63.1006%" y="629" width="0.0225%" height="15" fill="rgb(225,129,33)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="63.1006%" y="613" width="0.0225%" height="15" fill="rgb(237,49,13)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="623.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="63.1006%" y="597" width="0.0225%" height="15" fill="rgb(211,3,31)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="607.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.02%)</title><rect x="63.1006%" y="581" width="0.0225%" height="15" fill="rgb(216,152,19)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="591.50"></text></g><g><title>do_futex (34 samples, 0.02%)</title><rect x="63.1006%" y="565" width="0.0225%" height="15" fill="rgb(251,121,35)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="575.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="63.1006%" y="549" width="0.0225%" height="15" fill="rgb(210,217,47)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="559.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.02%)</title><rect x="63.1012%" y="533" width="0.0218%" height="15" fill="rgb(244,116,22)" fg:x="95322" fg:w="33"/><text x="63.3512%" y="543.50"></text></g><g><title>schedule (32 samples, 0.02%)</title><rect x="63.1019%" y="517" width="0.0212%" height="15" fill="rgb(228,17,21)" fg:x="95323" fg:w="32"/><text x="63.3519%" y="527.50"></text></g><g><title>__schedule (32 samples, 0.02%)</title><rect x="63.1019%" y="501" width="0.0212%" height="15" fill="rgb(240,149,34)" fg:x="95323" fg:w="32"/><text x="63.3519%" y="511.50"></text></g><g><title>finish_task_switch (31 samples, 0.02%)</title><rect x="63.1026%" y="485" width="0.0205%" height="15" fill="rgb(208,125,47)" fg:x="95324" fg:w="31"/><text x="63.3526%" y="495.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (104 samples, 0.07%)</title><rect x="63.0615%" y="709" width="0.0688%" height="15" fill="rgb(249,186,39)" fg:x="95262" fg:w="104"/><text x="63.3115%" y="719.50"></text></g><g><title>std::condition_variable::notify_one (46 samples, 0.03%)</title><rect x="63.0999%" y="693" width="0.0305%" height="15" fill="rgb(240,220,33)" fg:x="95320" fg:w="46"/><text x="63.3499%" y="703.50"></text></g><g><title>__pthread_cond_signal (46 samples, 0.03%)</title><rect x="63.0999%" y="677" width="0.0305%" height="15" fill="rgb(243,110,23)" fg:x="95320" fg:w="46"/><text x="63.3499%" y="687.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="63.1337%" y="501" width="0.0159%" height="15" fill="rgb(219,163,46)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="63.1337%" y="485" width="0.0159%" height="15" fill="rgb(216,126,30)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="63.1337%" y="469" width="0.0159%" height="15" fill="rgb(208,139,11)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="479.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="63.1337%" y="453" width="0.0159%" height="15" fill="rgb(213,118,36)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="463.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (143 samples, 0.09%)</title><rect x="63.0562%" y="741" width="0.0947%" height="15" fill="rgb(226,43,17)" fg:x="95254" fg:w="143"/><text x="63.3062%" y="751.50"></text></g><g><title>llvm::parallelForEachN (136 samples, 0.09%)</title><rect x="63.0609%" y="725" width="0.0900%" height="15" fill="rgb(254,217,4)" fg:x="95261" fg:w="136"/><text x="63.3109%" y="735.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (31 samples, 0.02%)</title><rect x="63.1304%" y="709" width="0.0205%" height="15" fill="rgb(210,134,47)" fg:x="95366" fg:w="31"/><text x="63.3804%" y="719.50"></text></g><g><title>std::condition_variable::wait (28 samples, 0.02%)</title><rect x="63.1324%" y="693" width="0.0185%" height="15" fill="rgb(237,24,49)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="703.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.02%)</title><rect x="63.1324%" y="677" width="0.0185%" height="15" fill="rgb(251,39,46)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.02%)</title><rect x="63.1324%" y="661" width="0.0185%" height="15" fill="rgb(251,220,3)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="671.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="63.1324%" y="645" width="0.0185%" height="15" fill="rgb(228,105,12)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="63.1324%" y="629" width="0.0185%" height="15" fill="rgb(215,196,1)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="639.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="63.1324%" y="613" width="0.0185%" height="15" fill="rgb(214,33,39)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="623.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="63.1324%" y="597" width="0.0185%" height="15" fill="rgb(220,19,52)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="607.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="63.1324%" y="581" width="0.0185%" height="15" fill="rgb(221,78,38)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="591.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="63.1324%" y="565" width="0.0185%" height="15" fill="rgb(253,30,16)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="575.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="63.1324%" y="549" width="0.0185%" height="15" fill="rgb(242,65,0)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="559.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="63.1324%" y="533" width="0.0185%" height="15" fill="rgb(235,201,12)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="543.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="63.1324%" y="517" width="0.0185%" height="15" fill="rgb(233,161,9)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="527.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (146 samples, 0.10%)</title><rect x="63.0556%" y="757" width="0.0966%" height="15" fill="rgb(241,207,41)" fg:x="95253" fg:w="146"/><text x="63.3056%" y="767.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::LookupBucketFor<llvm::CachedHashStringRef> (22 samples, 0.01%)</title><rect x="63.1595%" y="741" width="0.0146%" height="15" fill="rgb(212,69,46)" fg:x="95410" fg:w="22"/><text x="63.4095%" y="751.50"></text></g><g><title>lld::elf::SymbolTable::find (33 samples, 0.02%)</title><rect x="63.1568%" y="757" width="0.0218%" height="15" fill="rgb(239,69,45)" fg:x="95406" fg:w="33"/><text x="63.4068%" y="767.50"></text></g><g><title>lld::elf::markLive<llvm::object::ELFType<(llvm::support::endianness)1, true> > (31 samples, 0.02%)</title><rect x="63.1873%" y="757" width="0.0205%" height="15" fill="rgb(242,117,48)" fg:x="95452" fg:w="31"/><text x="63.4373%" y="767.50"></text></g><g><title>lld::make<lld::elf::SymbolUnion> (26 samples, 0.02%)</title><rect x="63.2548%" y="693" width="0.0172%" height="15" fill="rgb(228,41,36)" fg:x="95554" fg:w="26"/><text x="63.5048%" y="703.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="63.2919%" y="661" width="0.0113%" height="15" fill="rgb(212,3,32)" fg:x="95610" fg:w="17"/><text x="63.5419%" y="671.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="63.2919%" y="645" width="0.0113%" height="15" fill="rgb(233,41,49)" fg:x="95610" fg:w="17"/><text x="63.5419%" y="655.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="63.2919%" y="629" width="0.0113%" height="15" fill="rgb(252,170,49)" fg:x="95610" fg:w="17"/><text x="63.5419%" y="639.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::InsertIntoBucketImpl<llvm::CachedHashStringRef> (69 samples, 0.05%)</title><rect x="63.2720%" y="693" width="0.0457%" height="15" fill="rgb(229,53,26)" fg:x="95580" fg:w="69"/><text x="63.5220%" y="703.50"></text></g><g><title>llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::grow (65 samples, 0.04%)</title><rect x="63.2747%" y="677" width="0.0430%" height="15" fill="rgb(217,157,12)" fg:x="95584" fg:w="65"/><text x="63.5247%" y="687.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::LookupBucketFor<llvm::CachedHashStringRef> (35 samples, 0.02%)</title><rect x="63.3177%" y="693" width="0.0232%" height="15" fill="rgb(227,17,9)" fg:x="95649" fg:w="35"/><text x="63.5677%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (180 samples, 0.12%)</title><rect x="63.2290%" y="725" width="0.1192%" height="15" fill="rgb(218,84,12)" fg:x="95515" fg:w="180"/><text x="63.4790%" y="735.50"></text></g><g><title>lld::elf::SymbolTable::insert (163 samples, 0.11%)</title><rect x="63.2403%" y="709" width="0.1079%" height="15" fill="rgb(212,79,24)" fg:x="95532" fg:w="163"/><text x="63.4903%" y="719.50"></text></g><g><title>llvm::Twine::toVector (23 samples, 0.02%)</title><rect x="63.3554%" y="725" width="0.0152%" height="15" fill="rgb(217,222,37)" fg:x="95706" fg:w="23"/><text x="63.6054%" y="735.50"></text></g><g><title>lld::elf::parseFile (251 samples, 0.17%)</title><rect x="63.2078%" y="757" width="0.1662%" height="15" fill="rgb(246,208,8)" fg:x="95483" fg:w="251"/><text x="63.4578%" y="767.50"></text></g><g><title>lld::elf::SharedFile::parse<llvm::object::ELFType<(llvm::support::endianness)1, true> > (243 samples, 0.16%)</title><rect x="63.2131%" y="741" width="0.1609%" height="15" fill="rgb(244,133,10)" fg:x="95491" fg:w="243"/><text x="63.4631%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (186 samples, 0.12%)</title><rect x="63.3985%" y="501" width="0.1231%" height="15" fill="rgb(209,219,41)" fg:x="95771" fg:w="186"/><text x="63.6485%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (184 samples, 0.12%)</title><rect x="63.3998%" y="485" width="0.1218%" height="15" fill="rgb(253,175,45)" fg:x="95773" fg:w="184"/><text x="63.6498%" y="495.50"></text></g><g><title>native_write_msr (184 samples, 0.12%)</title><rect x="63.3998%" y="469" width="0.1218%" height="15" fill="rgb(235,100,37)" fg:x="95773" fg:w="184"/><text x="63.6498%" y="479.50"></text></g><g><title>do_syscall_64 (201 samples, 0.13%)</title><rect x="63.3912%" y="629" width="0.1331%" height="15" fill="rgb(225,87,19)" fg:x="95760" fg:w="201"/><text x="63.6412%" y="639.50"></text></g><g><title>__x64_sys_futex (200 samples, 0.13%)</title><rect x="63.3919%" y="613" width="0.1324%" height="15" fill="rgb(217,152,17)" fg:x="95761" fg:w="200"/><text x="63.6419%" y="623.50"></text></g><g><title>do_futex (199 samples, 0.13%)</title><rect x="63.3925%" y="597" width="0.1317%" height="15" fill="rgb(235,72,13)" fg:x="95762" fg:w="199"/><text x="63.6425%" y="607.50"></text></g><g><title>futex_wait (197 samples, 0.13%)</title><rect x="63.3938%" y="581" width="0.1304%" height="15" fill="rgb(233,140,18)" fg:x="95764" fg:w="197"/><text x="63.6438%" y="591.50"></text></g><g><title>futex_wait_queue_me (196 samples, 0.13%)</title><rect x="63.3945%" y="565" width="0.1297%" height="15" fill="rgb(207,212,28)" fg:x="95765" fg:w="196"/><text x="63.6445%" y="575.50"></text></g><g><title>schedule (195 samples, 0.13%)</title><rect x="63.3952%" y="549" width="0.1291%" height="15" fill="rgb(220,130,25)" fg:x="95766" fg:w="195"/><text x="63.6452%" y="559.50"></text></g><g><title>__schedule (195 samples, 0.13%)</title><rect x="63.3952%" y="533" width="0.1291%" height="15" fill="rgb(205,55,34)" fg:x="95766" fg:w="195"/><text x="63.6452%" y="543.50"></text></g><g><title>finish_task_switch (195 samples, 0.13%)</title><rect x="63.3952%" y="517" width="0.1291%" height="15" fill="rgb(237,54,35)" fg:x="95766" fg:w="195"/><text x="63.6452%" y="527.50"></text></g><g><title>__pthread_cond_wait (205 samples, 0.14%)</title><rect x="63.3899%" y="693" width="0.1357%" height="15" fill="rgb(208,67,23)" fg:x="95758" fg:w="205"/><text x="63.6399%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (205 samples, 0.14%)</title><rect x="63.3899%" y="677" width="0.1357%" height="15" fill="rgb(206,207,50)" fg:x="95758" fg:w="205"/><text x="63.6399%" y="687.50"></text></g><g><title>futex_wait_cancelable (205 samples, 0.14%)</title><rect x="63.3899%" y="661" width="0.1357%" height="15" fill="rgb(213,211,42)" fg:x="95758" fg:w="205"/><text x="63.6399%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (203 samples, 0.13%)</title><rect x="63.3912%" y="645" width="0.1344%" height="15" fill="rgb(252,197,50)" fg:x="95760" fg:w="203"/><text x="63.6412%" y="655.50"></text></g><g><title>lld::elf::splitSections<llvm::object::ELFType<(llvm::support::endianness)1, true> > (230 samples, 0.15%)</title><rect x="63.3740%" y="757" width="0.1523%" height="15" fill="rgb(251,211,41)" fg:x="95734" fg:w="230"/><text x="63.6240%" y="767.50"></text></g><g><title>llvm::parallelForEachN (229 samples, 0.15%)</title><rect x="63.3746%" y="741" width="0.1516%" height="15" fill="rgb(229,211,5)" fg:x="95735" fg:w="229"/><text x="63.6246%" y="751.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (223 samples, 0.15%)</title><rect x="63.3786%" y="725" width="0.1476%" height="15" fill="rgb(239,36,31)" fg:x="95741" fg:w="223"/><text x="63.6286%" y="735.50"></text></g><g><title>std::condition_variable::wait (206 samples, 0.14%)</title><rect x="63.3899%" y="709" width="0.1364%" height="15" fill="rgb(248,67,31)" fg:x="95758" fg:w="206"/><text x="63.6399%" y="719.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (19 samples, 0.01%)</title><rect x="63.5408%" y="661" width="0.0126%" height="15" fill="rgb(249,55,44)" fg:x="95986" fg:w="19"/><text x="63.7908%" y="671.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (20 samples, 0.01%)</title><rect x="63.5408%" y="693" width="0.0132%" height="15" fill="rgb(216,82,12)" fg:x="95986" fg:w="20"/><text x="63.7908%" y="703.50"></text></g><g><title>llvm::parallelForEachN (20 samples, 0.01%)</title><rect x="63.5408%" y="677" width="0.0132%" height="15" fill="rgb(242,174,1)" fg:x="95986" fg:w="20"/><text x="63.7908%" y="687.50"></text></g><g><title>llvm::function_ref<void (unsigned long)>::callback_fn<lld::elf::OutputSection::writeTo<llvm::object::ELFType<(llvm::support::endianness)1, true> >(unsigned char*)::{lambda(unsigned long)#2}> (27 samples, 0.02%)</title><rect x="63.5388%" y="709" width="0.0179%" height="15" fill="rgb(208,120,29)" fg:x="95983" fg:w="27"/><text x="63.7888%" y="719.50"></text></g><g><title>lld::elf::OutputSection::writeTo<llvm::object::ELFType<(llvm::support::endianness)1, true> > (43 samples, 0.03%)</title><rect x="63.5381%" y="741" width="0.0285%" height="15" fill="rgb(221,105,43)" fg:x="95982" fg:w="43"/><text x="63.7881%" y="751.50"></text></g><g><title>llvm::parallelForEachN (42 samples, 0.03%)</title><rect x="63.5388%" y="725" width="0.0278%" height="15" fill="rgb(234,124,22)" fg:x="95983" fg:w="42"/><text x="63.7888%" y="735.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="63.6156%" y="581" width="0.0132%" height="15" fill="rgb(212,23,30)" fg:x="96099" fg:w="20"/><text x="63.8656%" y="591.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="63.6163%" y="565" width="0.0126%" height="15" fill="rgb(219,122,53)" fg:x="96100" fg:w="19"/><text x="63.8663%" y="575.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="63.6169%" y="549" width="0.0119%" height="15" fill="rgb(248,84,24)" fg:x="96101" fg:w="18"/><text x="63.8669%" y="559.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.02%)</title><rect x="63.6143%" y="629" width="0.0165%" height="15" fill="rgb(245,115,18)" fg:x="96097" fg:w="25"/><text x="63.8643%" y="639.50"></text></g><g><title>do_futex (25 samples, 0.02%)</title><rect x="63.6143%" y="613" width="0.0165%" height="15" fill="rgb(227,176,51)" fg:x="96097" fg:w="25"/><text x="63.8643%" y="623.50"></text></g><g><title>futex_wait (25 samples, 0.02%)</title><rect x="63.6143%" y="597" width="0.0165%" height="15" fill="rgb(229,63,42)" fg:x="96097" fg:w="25"/><text x="63.8643%" y="607.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="63.6143%" y="645" width="0.0172%" height="15" fill="rgb(247,202,24)" fg:x="96097" fg:w="26"/><text x="63.8643%" y="655.50"></text></g><g><title>__GI___pthread_mutex_lock (39 samples, 0.03%)</title><rect x="63.6063%" y="693" width="0.0258%" height="15" fill="rgb(244,173,20)" fg:x="96085" fg:w="39"/><text x="63.8563%" y="703.50"></text></g><g><title>__lll_lock_wait (33 samples, 0.02%)</title><rect x="63.6103%" y="677" width="0.0218%" height="15" fill="rgb(242,81,47)" fg:x="96091" fg:w="33"/><text x="63.8603%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="63.6143%" y="661" width="0.0179%" height="15" fill="rgb(231,185,54)" fg:x="96097" fg:w="27"/><text x="63.8643%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="63.6381%" y="677" width="0.0252%" height="15" fill="rgb(243,55,32)" fg:x="96133" fg:w="38"/><text x="63.8881%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="63.6381%" y="661" width="0.0252%" height="15" fill="rgb(208,167,19)" fg:x="96133" fg:w="38"/><text x="63.8881%" y="671.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.02%)</title><rect x="63.6388%" y="645" width="0.0245%" height="15" fill="rgb(231,72,35)" fg:x="96134" fg:w="37"/><text x="63.8888%" y="655.50"></text></g><g><title>do_futex (37 samples, 0.02%)</title><rect x="63.6388%" y="629" width="0.0245%" height="15" fill="rgb(250,173,51)" fg:x="96134" fg:w="37"/><text x="63.8888%" y="639.50"></text></g><g><title>futex_wake (37 samples, 0.02%)</title><rect x="63.6388%" y="613" width="0.0245%" height="15" fill="rgb(209,5,22)" fg:x="96134" fg:w="37"/><text x="63.8888%" y="623.50"></text></g><g><title>wake_up_q (24 samples, 0.02%)</title><rect x="63.6474%" y="597" width="0.0159%" height="15" fill="rgb(250,174,19)" fg:x="96147" fg:w="24"/><text x="63.8974%" y="607.50"></text></g><g><title>try_to_wake_up (24 samples, 0.02%)</title><rect x="63.6474%" y="581" width="0.0159%" height="15" fill="rgb(217,3,49)" fg:x="96147" fg:w="24"/><text x="63.8974%" y="591.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (49 samples, 0.03%)</title><rect x="63.6322%" y="693" width="0.0324%" height="15" fill="rgb(218,225,5)" fg:x="96124" fg:w="49"/><text x="63.8822%" y="703.50"></text></g><g><title>operator new (17 samples, 0.01%)</title><rect x="63.6679%" y="661" width="0.0113%" height="15" fill="rgb(236,89,11)" fg:x="96178" fg:w="17"/><text x="63.9179%" y="671.50"></text></g><g><title>__GI___libc_malloc (17 samples, 0.01%)</title><rect x="63.6679%" y="645" width="0.0113%" height="15" fill="rgb(206,33,28)" fg:x="96178" fg:w="17"/><text x="63.9179%" y="655.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (126 samples, 0.08%)</title><rect x="63.6063%" y="709" width="0.0834%" height="15" fill="rgb(241,56,42)" fg:x="96085" fg:w="126"/><text x="63.8563%" y="719.50"></text></g><g><title>std::deque<std::function<void ()>, std::allocator<std::function<void ()> > >::push_back (36 samples, 0.02%)</title><rect x="63.6659%" y="693" width="0.0238%" height="15" fill="rgb(222,44,11)" fg:x="96175" fg:w="36"/><text x="63.9159%" y="703.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_manager (35 samples, 0.02%)</title><rect x="63.6666%" y="677" width="0.0232%" height="15" fill="rgb(234,111,20)" fg:x="96176" fg:w="35"/><text x="63.9166%" y="687.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_manager (16 samples, 0.01%)</title><rect x="63.6792%" y="661" width="0.0106%" height="15" fill="rgb(237,77,6)" fg:x="96195" fg:w="16"/><text x="63.9292%" y="671.50"></text></g><g><title>operator new (16 samples, 0.01%)</title><rect x="63.6792%" y="645" width="0.0106%" height="15" fill="rgb(235,111,23)" fg:x="96195" fg:w="16"/><text x="63.9292%" y="655.50"></text></g><g><title>__GI___libc_malloc (16 samples, 0.01%)</title><rect x="63.6792%" y="629" width="0.0106%" height="15" fill="rgb(251,135,29)" fg:x="96195" fg:w="16"/><text x="63.9292%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (258 samples, 0.17%)</title><rect x="63.7281%" y="485" width="0.1708%" height="15" fill="rgb(217,57,1)" fg:x="96269" fg:w="258"/><text x="63.9781%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (257 samples, 0.17%)</title><rect x="63.7288%" y="469" width="0.1701%" height="15" fill="rgb(249,119,31)" fg:x="96270" fg:w="257"/><text x="63.9788%" y="479.50"></text></g><g><title>native_write_msr (256 samples, 0.17%)</title><rect x="63.7295%" y="453" width="0.1695%" height="15" fill="rgb(233,164,33)" fg:x="96271" fg:w="256"/><text x="63.9795%" y="463.50"></text></g><g><title>finish_task_switch (264 samples, 0.17%)</title><rect x="63.7255%" y="501" width="0.1748%" height="15" fill="rgb(250,217,43)" fg:x="96265" fg:w="264"/><text x="63.9755%" y="511.50"></text></g><g><title>futex_wait_queue_me (292 samples, 0.19%)</title><rect x="63.7142%" y="549" width="0.1933%" height="15" fill="rgb(232,154,50)" fg:x="96248" fg:w="292"/><text x="63.9642%" y="559.50"></text></g><g><title>schedule (289 samples, 0.19%)</title><rect x="63.7162%" y="533" width="0.1913%" height="15" fill="rgb(227,190,8)" fg:x="96251" fg:w="289"/><text x="63.9662%" y="543.50"></text></g><g><title>__schedule (288 samples, 0.19%)</title><rect x="63.7169%" y="517" width="0.1907%" height="15" fill="rgb(209,217,32)" fg:x="96252" fg:w="288"/><text x="63.9669%" y="527.50"></text></g><g><title>do_syscall_64 (301 samples, 0.20%)</title><rect x="63.7103%" y="613" width="0.1993%" height="15" fill="rgb(243,203,50)" fg:x="96242" fg:w="301"/><text x="63.9603%" y="623.50"></text></g><g><title>__x64_sys_futex (300 samples, 0.20%)</title><rect x="63.7109%" y="597" width="0.1986%" height="15" fill="rgb(232,152,27)" fg:x="96243" fg:w="300"/><text x="63.9609%" y="607.50"></text></g><g><title>do_futex (300 samples, 0.20%)</title><rect x="63.7109%" y="581" width="0.1986%" height="15" fill="rgb(240,34,29)" fg:x="96243" fg:w="300"/><text x="63.9609%" y="591.50"></text></g><g><title>futex_wait (299 samples, 0.20%)</title><rect x="63.7116%" y="565" width="0.1979%" height="15" fill="rgb(215,185,52)" fg:x="96244" fg:w="299"/><text x="63.9616%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (307 samples, 0.20%)</title><rect x="63.7089%" y="629" width="0.2032%" height="15" fill="rgb(240,89,49)" fg:x="96240" fg:w="307"/><text x="63.9589%" y="639.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (315 samples, 0.21%)</title><rect x="63.7043%" y="677" width="0.2085%" height="15" fill="rgb(225,12,52)" fg:x="96233" fg:w="315"/><text x="63.9543%" y="687.50"></text></g><g><title>futex_wait_simple (310 samples, 0.21%)</title><rect x="63.7076%" y="661" width="0.2052%" height="15" fill="rgb(239,128,45)" fg:x="96238" fg:w="310"/><text x="63.9576%" y="671.50"></text></g><g><title>futex_wait (310 samples, 0.21%)</title><rect x="63.7076%" y="645" width="0.2052%" height="15" fill="rgb(211,78,47)" fg:x="96238" fg:w="310"/><text x="63.9576%" y="655.50"></text></g><g><title>mark_wake_futex (21 samples, 0.01%)</title><rect x="63.9393%" y="581" width="0.0139%" height="15" fill="rgb(232,31,21)" fg:x="96588" fg:w="21"/><text x="64.1893%" y="591.50"></text></g><g><title>_raw_spin_lock (22 samples, 0.01%)</title><rect x="63.9671%" y="549" width="0.0146%" height="15" fill="rgb(222,168,14)" fg:x="96630" fg:w="22"/><text x="64.2171%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (18 samples, 0.01%)</title><rect x="63.9698%" y="533" width="0.0119%" height="15" fill="rgb(209,128,24)" fg:x="96634" fg:w="18"/><text x="64.2198%" y="543.50"></text></g><g><title>select_task_rq_fair (69 samples, 0.05%)</title><rect x="63.9870%" y="549" width="0.0457%" height="15" fill="rgb(249,35,13)" fg:x="96660" fg:w="69"/><text x="64.2370%" y="559.50"></text></g><g><title>update_cfs_rq_h_load (29 samples, 0.02%)</title><rect x="64.0135%" y="533" width="0.0192%" height="15" fill="rgb(218,7,2)" fg:x="96700" fg:w="29"/><text x="64.2635%" y="543.50"></text></g><g><title>enqueue_task_fair (79 samples, 0.05%)</title><rect x="64.0406%" y="533" width="0.0523%" height="15" fill="rgb(238,107,27)" fg:x="96741" fg:w="79"/><text x="64.2906%" y="543.50"></text></g><g><title>enqueue_entity (71 samples, 0.05%)</title><rect x="64.0459%" y="517" width="0.0470%" height="15" fill="rgb(217,88,38)" fg:x="96749" fg:w="71"/><text x="64.2959%" y="527.50"></text></g><g><title>update_load_avg (21 samples, 0.01%)</title><rect x="64.0790%" y="501" width="0.0139%" height="15" fill="rgb(230,207,0)" fg:x="96799" fg:w="21"/><text x="64.3290%" y="511.50"></text></g><g><title>ttwu_do_activate (161 samples, 0.11%)</title><rect x="64.0366%" y="549" width="0.1066%" height="15" fill="rgb(249,64,54)" fg:x="96735" fg:w="161"/><text x="64.2866%" y="559.50"></text></g><g><title>psi_task_change (76 samples, 0.05%)</title><rect x="64.0929%" y="533" width="0.0503%" height="15" fill="rgb(231,7,11)" fg:x="96820" fg:w="76"/><text x="64.3429%" y="543.50"></text></g><g><title>psi_group_change (71 samples, 0.05%)</title><rect x="64.0962%" y="517" width="0.0470%" height="15" fill="rgb(205,149,21)" fg:x="96825" fg:w="71"/><text x="64.3462%" y="527.50"></text></g><g><title>do_syscall_64 (355 samples, 0.24%)</title><rect x="63.9254%" y="645" width="0.2350%" height="15" fill="rgb(215,126,34)" fg:x="96567" fg:w="355"/><text x="64.1754%" y="655.50"></text></g><g><title>__x64_sys_futex (354 samples, 0.23%)</title><rect x="63.9261%" y="629" width="0.2343%" height="15" fill="rgb(241,132,45)" fg:x="96568" fg:w="354"/><text x="64.1761%" y="639.50"></text></g><g><title>do_futex (352 samples, 0.23%)</title><rect x="63.9274%" y="613" width="0.2330%" height="15" fill="rgb(252,69,32)" fg:x="96570" fg:w="352"/><text x="64.1774%" y="623.50"></text></g><g><title>futex_wake (352 samples, 0.23%)</title><rect x="63.9274%" y="597" width="0.2330%" height="15" fill="rgb(232,204,19)" fg:x="96570" fg:w="352"/><text x="64.1774%" y="607.50"></text></g><g><title>wake_up_q (312 samples, 0.21%)</title><rect x="63.9539%" y="581" width="0.2065%" height="15" fill="rgb(249,15,47)" fg:x="96610" fg:w="312"/><text x="64.2039%" y="591.50"></text></g><g><title>try_to_wake_up (303 samples, 0.20%)</title><rect x="63.9598%" y="565" width="0.2006%" height="15" fill="rgb(209,227,23)" fg:x="96619" fg:w="303"/><text x="64.2098%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (359 samples, 0.24%)</title><rect x="63.9241%" y="661" width="0.2377%" height="15" fill="rgb(248,92,24)" fg:x="96565" fg:w="359"/><text x="64.1741%" y="671.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (854 samples, 0.57%)</title><rect x="63.5984%" y="725" width="0.5653%" height="15" fill="rgb(247,59,2)" fg:x="96073" fg:w="854"/><text x="63.8484%" y="735.50"></text></g><g><title>std::condition_variable::notify_one (704 samples, 0.47%)</title><rect x="63.6977%" y="709" width="0.4660%" height="15" fill="rgb(221,30,5)" fg:x="96223" fg:w="704"/><text x="63.9477%" y="719.50"></text></g><g><title>__pthread_cond_signal (702 samples, 0.46%)</title><rect x="63.6990%" y="693" width="0.4647%" height="15" fill="rgb(208,108,53)" fg:x="96225" fg:w="702"/><text x="63.9490%" y="703.50"></text></g><g><title>futex_wake (373 samples, 0.25%)</title><rect x="63.9168%" y="677" width="0.2469%" height="15" fill="rgb(211,183,26)" fg:x="96554" fg:w="373"/><text x="64.1668%" y="687.50"></text></g><g><title>llvm::parallelForEachN (860 samples, 0.57%)</title><rect x="63.5977%" y="741" width="0.5693%" height="15" fill="rgb(232,132,4)" fg:x="96072" fg:w="860"/><text x="63.8477%" y="751.50"></text></g><g><title>lld::elf::writeResult<llvm::object::ELFType<(llvm::support::endianness)1, true> > (978 samples, 0.65%)</title><rect x="63.5262%" y="757" width="0.6474%" height="15" fill="rgb(253,128,37)" fg:x="95964" fg:w="978"/><text x="63.7762%" y="767.50"></text></g><g><title>lld::tryCreateFile (24 samples, 0.02%)</title><rect x="64.1737%" y="757" width="0.0159%" height="15" fill="rgb(221,58,24)" fg:x="96942" fg:w="24"/><text x="64.4237%" y="767.50"></text></g><g><title>lld::elf::LinkerDriver::link (1,836 samples, 1.22%)</title><rect x="62.9748%" y="773" width="1.2154%" height="15" fill="rgb(230,54,45)" fg:x="95131" fg:w="1836"/><text x="63.2248%" y="783.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (18 samples, 0.01%)</title><rect x="64.1975%" y="757" width="0.0119%" height="15" fill="rgb(254,21,18)" fg:x="96978" fg:w="18"/><text x="64.4475%" y="767.50"></text></g><g><title>llvm::InitializeAllTargets (43 samples, 0.03%)</title><rect x="64.1922%" y="773" width="0.0285%" height="15" fill="rgb(221,108,0)" fg:x="96970" fg:w="43"/><text x="64.4422%" y="783.50"></text></g><g><title>lld::elf::link (1,974 samples, 1.31%)</title><rect x="62.9338%" y="805" width="1.3067%" height="15" fill="rgb(206,95,1)" fg:x="95069" fg:w="1974"/><text x="63.1838%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (1,968 samples, 1.30%)</title><rect x="62.9377%" y="789" width="1.3028%" height="15" fill="rgb(237,52,5)" fg:x="95075" fg:w="1968"/><text x="63.1877%" y="799.50"></text></g><g><title>readConfigs (24 samples, 0.02%)</title><rect x="64.2246%" y="773" width="0.0159%" height="15" fill="rgb(218,150,34)" fg:x="97019" fg:w="24"/><text x="64.4746%" y="783.50"></text></g><g><title>llvm::object_deleter<llvm::cl::SubCommand>::call (20 samples, 0.01%)</title><rect x="64.2458%" y="773" width="0.0132%" height="15" fill="rgb(235,194,28)" fg:x="97051" fg:w="20"/><text x="64.4958%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="64.2624%" y="613" width="0.0126%" height="15" fill="rgb(245,92,18)" fg:x="97076" fg:w="19"/><text x="64.5124%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="64.2624%" y="597" width="0.0126%" height="15" fill="rgb(253,203,53)" fg:x="97076" fg:w="19"/><text x="64.5124%" y="607.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="64.2624%" y="581" width="0.0126%" height="15" fill="rgb(249,185,47)" fg:x="97076" fg:w="19"/><text x="64.5124%" y="591.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="64.2624%" y="629" width="0.0132%" height="15" fill="rgb(252,194,52)" fg:x="97076" fg:w="20"/><text x="64.5124%" y="639.50"></text></g><g><title>llvm::llvm_shutdown (54 samples, 0.04%)</title><rect x="64.2405%" y="789" width="0.0357%" height="15" fill="rgb(210,53,36)" fg:x="97043" fg:w="54"/><text x="64.4905%" y="799.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::stop (26 samples, 0.02%)</title><rect x="64.2590%" y="773" width="0.0172%" height="15" fill="rgb(237,37,25)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="783.50"></text></g><g><title>std::condition_variable::notify_all (26 samples, 0.02%)</title><rect x="64.2590%" y="757" width="0.0172%" height="15" fill="rgb(242,116,27)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="767.50"></text></g><g><title>__pthread_cond_broadcast (26 samples, 0.02%)</title><rect x="64.2590%" y="741" width="0.0172%" height="15" fill="rgb(213,185,26)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="751.50"></text></g><g><title>futex_wake (26 samples, 0.02%)</title><rect x="64.2590%" y="725" width="0.0172%" height="15" fill="rgb(225,204,8)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="64.2590%" y="709" width="0.0172%" height="15" fill="rgb(254,111,37)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (21 samples, 0.01%)</title><rect x="64.2624%" y="693" width="0.0139%" height="15" fill="rgb(242,35,9)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (21 samples, 0.01%)</title><rect x="64.2624%" y="677" width="0.0139%" height="15" fill="rgb(232,138,49)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="687.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="64.2624%" y="661" width="0.0139%" height="15" fill="rgb(247,56,4)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="671.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="64.2624%" y="645" width="0.0139%" height="15" fill="rgb(226,179,17)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="655.50"></text></g><g><title>lldMain (2,031 samples, 1.34%)</title><rect x="62.9331%" y="821" width="1.3445%" height="15" fill="rgb(216,163,45)" fg:x="95068" fg:w="2031"/><text x="63.1831%" y="831.50"></text></g><g><title>lld::exitLld (56 samples, 0.04%)</title><rect x="64.2405%" y="805" width="0.0371%" height="15" fill="rgb(211,157,3)" fg:x="97043" fg:w="56"/><text x="64.4905%" y="815.50"></text></g><g><title>__libc_start_main (2,306 samples, 1.53%)</title><rect x="62.7537%" y="853" width="1.5265%" height="15" fill="rgb(234,44,20)" fg:x="94797" fg:w="2306"/><text x="63.0037%" y="863.50"></text></g><g><title>main (2,037 samples, 1.35%)</title><rect x="62.9318%" y="837" width="1.3485%" height="15" fill="rgb(254,138,23)" fg:x="95066" fg:w="2037"/><text x="63.1818%" y="847.50"></text></g><g><title>_dl_map_segments (17 samples, 0.01%)</title><rect x="64.2816%" y="709" width="0.0113%" height="15" fill="rgb(206,119,39)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="719.50"></text></g><g><title>__mmap64 (17 samples, 0.01%)</title><rect x="64.2816%" y="693" width="0.0113%" height="15" fill="rgb(231,105,52)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="703.50"></text></g><g><title>__mmap64 (17 samples, 0.01%)</title><rect x="64.2816%" y="677" width="0.0113%" height="15" fill="rgb(250,20,5)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="64.2816%" y="661" width="0.0113%" height="15" fill="rgb(215,198,30)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="671.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="64.2816%" y="645" width="0.0113%" height="15" fill="rgb(246,142,8)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (26 samples, 0.02%)</title><rect x="64.2816%" y="725" width="0.0172%" height="15" fill="rgb(243,26,38)" fg:x="97105" fg:w="26"/><text x="64.5316%" y="735.50"></text></g><g><title>_dl_map_object_deps (36 samples, 0.02%)</title><rect x="64.2816%" y="789" width="0.0238%" height="15" fill="rgb(205,133,28)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="799.50"></text></g><g><title>_dl_catch_exception (36 samples, 0.02%)</title><rect x="64.2816%" y="773" width="0.0238%" height="15" fill="rgb(212,34,0)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="783.50"></text></g><g><title>openaux (36 samples, 0.02%)</title><rect x="64.2816%" y="757" width="0.0238%" height="15" fill="rgb(251,226,22)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="767.50"></text></g><g><title>_dl_map_object (36 samples, 0.02%)</title><rect x="64.2816%" y="741" width="0.0238%" height="15" fill="rgb(252,119,9)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="751.50"></text></g><g><title>dl_new_hash (22 samples, 0.01%)</title><rect x="64.3252%" y="725" width="0.0146%" height="15" fill="rgb(213,150,50)" fg:x="97171" fg:w="22"/><text x="64.5752%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (81 samples, 0.05%)</title><rect x="64.3239%" y="741" width="0.0536%" height="15" fill="rgb(212,24,39)" fg:x="97169" fg:w="81"/><text x="64.5739%" y="751.50"></text></g><g><title>do_lookup_x (57 samples, 0.04%)</title><rect x="64.3398%" y="725" width="0.0377%" height="15" fill="rgb(213,46,39)" fg:x="97193" fg:w="57"/><text x="64.5898%" y="735.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="64.3775%" y="725" width="0.0126%" height="15" fill="rgb(239,106,12)" fg:x="97250" fg:w="19"/><text x="64.6275%" y="735.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="64.3775%" y="709" width="0.0126%" height="15" fill="rgb(249,229,21)" fg:x="97250" fg:w="19"/><text x="64.6275%" y="719.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="64.3775%" y="693" width="0.0126%" height="15" fill="rgb(212,158,3)" fg:x="97250" fg:w="19"/><text x="64.6275%" y="703.50"></text></g><g><title>asm_exc_page_fault (20 samples, 0.01%)</title><rect x="64.3775%" y="741" width="0.0132%" height="15" fill="rgb(253,26,48)" fg:x="97250" fg:w="20"/><text x="64.6275%" y="751.50"></text></g><g><title>elf_machine_rela (118 samples, 0.08%)</title><rect x="64.3133%" y="757" width="0.0781%" height="15" fill="rgb(238,178,20)" fg:x="97153" fg:w="118"/><text x="64.5633%" y="767.50"></text></g><g><title>_dl_relocate_object (128 samples, 0.08%)</title><rect x="64.3074%" y="789" width="0.0847%" height="15" fill="rgb(208,86,15)" fg:x="97144" fg:w="128"/><text x="64.5574%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (125 samples, 0.08%)</title><rect x="64.3094%" y="773" width="0.0827%" height="15" fill="rgb(239,42,53)" fg:x="97147" fg:w="125"/><text x="64.5594%" y="783.50"></text></g><g><title>[ld-2.31.so] (174 samples, 0.12%)</title><rect x="64.2802%" y="805" width="0.1152%" height="15" fill="rgb(245,226,8)" fg:x="97103" fg:w="174"/><text x="64.5302%" y="815.50"></text></g><g><title>_dl_start (176 samples, 0.12%)</title><rect x="64.2802%" y="853" width="0.1165%" height="15" fill="rgb(216,176,32)" fg:x="97103" fg:w="176"/><text x="64.5302%" y="863.50"></text></g><g><title>_dl_start_final (176 samples, 0.12%)</title><rect x="64.2802%" y="837" width="0.1165%" height="15" fill="rgb(231,186,21)" fg:x="97103" fg:w="176"/><text x="64.5302%" y="847.50"></text></g><g><title>_dl_sysdep_start (176 samples, 0.12%)</title><rect x="64.2802%" y="821" width="0.1165%" height="15" fill="rgb(205,95,49)" fg:x="97103" fg:w="176"/><text x="64.5302%" y="831.50"></text></g><g><title>_start (2,486 samples, 1.65%)</title><rect x="62.7537%" y="869" width="1.6457%" height="15" fill="rgb(217,145,8)" fg:x="94797" fg:w="2486"/><text x="63.0037%" y="879.50"></text></g><g><title>asm_exc_page_fault (75 samples, 0.05%)</title><rect x="64.3994%" y="869" width="0.0496%" height="15" fill="rgb(239,144,48)" fg:x="97283" fg:w="75"/><text x="64.6494%" y="879.50"></text></g><g><title>page_remove_rmap (45 samples, 0.03%)</title><rect x="64.5007%" y="725" width="0.0298%" height="15" fill="rgb(214,189,23)" fg:x="97436" fg:w="45"/><text x="64.7507%" y="735.50"></text></g><g><title>tlb_flush_mmu (34 samples, 0.02%)</title><rect x="64.5311%" y="725" width="0.0225%" height="15" fill="rgb(229,157,17)" fg:x="97482" fg:w="34"/><text x="64.7811%" y="735.50"></text></g><g><title>release_pages (21 samples, 0.01%)</title><rect x="64.5397%" y="709" width="0.0139%" height="15" fill="rgb(230,5,48)" fg:x="97495" fg:w="21"/><text x="64.7897%" y="719.50"></text></g><g><title>__x64_sys_exit_group (146 samples, 0.10%)</title><rect x="64.4616%" y="837" width="0.0966%" height="15" fill="rgb(224,156,48)" fg:x="97377" fg:w="146"/><text x="64.7116%" y="847.50"></text></g><g><title>do_group_exit (146 samples, 0.10%)</title><rect x="64.4616%" y="821" width="0.0966%" height="15" fill="rgb(223,14,29)" fg:x="97377" fg:w="146"/><text x="64.7116%" y="831.50"></text></g><g><title>do_exit (146 samples, 0.10%)</title><rect x="64.4616%" y="805" width="0.0966%" height="15" fill="rgb(229,96,36)" fg:x="97377" fg:w="146"/><text x="64.7116%" y="815.50"></text></g><g><title>mmput (141 samples, 0.09%)</title><rect x="64.4649%" y="789" width="0.0933%" height="15" fill="rgb(231,102,53)" fg:x="97382" fg:w="141"/><text x="64.7149%" y="799.50"></text></g><g><title>exit_mmap (141 samples, 0.09%)</title><rect x="64.4649%" y="773" width="0.0933%" height="15" fill="rgb(210,77,38)" fg:x="97382" fg:w="141"/><text x="64.7149%" y="783.50"></text></g><g><title>unmap_vmas (129 samples, 0.09%)</title><rect x="64.4729%" y="757" width="0.0854%" height="15" fill="rgb(235,131,6)" fg:x="97394" fg:w="129"/><text x="64.7229%" y="767.50"></text></g><g><title>unmap_page_range (129 samples, 0.09%)</title><rect x="64.4729%" y="741" width="0.0854%" height="15" fill="rgb(252,55,38)" fg:x="97394" fg:w="129"/><text x="64.7229%" y="751.50"></text></g><g><title>do_syscall_64 (175 samples, 0.12%)</title><rect x="64.4530%" y="853" width="0.1158%" height="15" fill="rgb(246,38,14)" fg:x="97364" fg:w="175"/><text x="64.7030%" y="863.50"></text></g><g><title>page_remove_rmap (40 samples, 0.03%)</title><rect x="64.5867%" y="693" width="0.0265%" height="15" fill="rgb(242,27,5)" fg:x="97566" fg:w="40"/><text x="64.8367%" y="703.50"></text></g><g><title>tlb_flush_mmu (27 samples, 0.02%)</title><rect x="64.6132%" y="693" width="0.0179%" height="15" fill="rgb(228,65,35)" fg:x="97606" fg:w="27"/><text x="64.8632%" y="703.50"></text></g><g><title>release_pages (20 samples, 0.01%)</title><rect x="64.6178%" y="677" width="0.0132%" height="15" fill="rgb(245,93,11)" fg:x="97613" fg:w="20"/><text x="64.8678%" y="687.50"></text></g><g><title>unmap_page_range (94 samples, 0.06%)</title><rect x="64.5708%" y="709" width="0.0622%" height="15" fill="rgb(213,1,31)" fg:x="97542" fg:w="94"/><text x="64.8208%" y="719.50"></text></g><g><title>mmput (98 samples, 0.06%)</title><rect x="64.5689%" y="757" width="0.0649%" height="15" fill="rgb(237,205,14)" fg:x="97539" fg:w="98"/><text x="64.8189%" y="767.50"></text></g><g><title>exit_mmap (98 samples, 0.06%)</title><rect x="64.5689%" y="741" width="0.0649%" height="15" fill="rgb(232,118,45)" fg:x="97539" fg:w="98"/><text x="64.8189%" y="751.50"></text></g><g><title>unmap_vmas (95 samples, 0.06%)</title><rect x="64.5708%" y="725" width="0.0629%" height="15" fill="rgb(218,5,6)" fg:x="97542" fg:w="95"/><text x="64.8208%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (280 samples, 0.19%)</title><rect x="64.4490%" y="869" width="0.1854%" height="15" fill="rgb(251,87,51)" fg:x="97358" fg:w="280"/><text x="64.6990%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (99 samples, 0.07%)</title><rect x="64.5689%" y="853" width="0.0655%" height="15" fill="rgb(207,225,20)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (99 samples, 0.07%)</title><rect x="64.5689%" y="837" width="0.0655%" height="15" fill="rgb(222,78,54)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="847.50"></text></g><g><title>arch_do_signal (99 samples, 0.07%)</title><rect x="64.5689%" y="821" width="0.0655%" height="15" fill="rgb(232,85,16)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="831.50"></text></g><g><title>get_signal (99 samples, 0.07%)</title><rect x="64.5689%" y="805" width="0.0655%" height="15" fill="rgb(244,25,33)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="815.50"></text></g><g><title>do_group_exit (99 samples, 0.07%)</title><rect x="64.5689%" y="789" width="0.0655%" height="15" fill="rgb(233,24,36)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="799.50"></text></g><g><title>do_exit (99 samples, 0.07%)</title><rect x="64.5689%" y="773" width="0.0655%" height="15" fill="rgb(253,49,54)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="783.50"></text></g><g><title>ld.lld (18,505 samples, 12.25%)</title><rect x="52.3990%" y="885" width="12.2499%" height="15" fill="rgb(245,12,22)" fg:x="79155" fg:w="18505"/><text x="52.6490%" y="895.50">ld.lld</text></g><g><title>[[heap]] (39 samples, 0.03%)</title><rect x="64.6490%" y="869" width="0.0258%" height="15" fill="rgb(253,141,28)" fg:x="97660" fg:w="39"/><text x="64.8990%" y="879.50"></text></g><g><title>[bash] (29 samples, 0.02%)</title><rect x="64.6748%" y="853" width="0.0192%" height="15" fill="rgb(225,207,27)" fg:x="97699" fg:w="29"/><text x="64.9248%" y="863.50"></text></g><g><title>[[stack]] (34 samples, 0.02%)</title><rect x="64.6748%" y="869" width="0.0225%" height="15" fill="rgb(220,84,2)" fg:x="97699" fg:w="34"/><text x="64.9248%" y="879.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.7019%" y="869" width="0.0132%" height="15" fill="rgb(224,37,37)" fg:x="97740" fg:w="20"/><text x="64.9519%" y="879.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.7357%" y="437" width="0.0106%" height="15" fill="rgb(220,143,18)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="447.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="421" width="0.0106%" height="15" fill="rgb(210,88,33)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="431.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="405" width="0.0106%" height="15" fill="rgb(219,87,51)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="415.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="389" width="0.0106%" height="15" fill="rgb(211,7,35)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="399.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="373" width="0.0106%" height="15" fill="rgb(232,77,2)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="383.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.7357%" y="357" width="0.0106%" height="15" fill="rgb(249,94,25)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="367.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="341" width="0.0106%" height="15" fill="rgb(215,112,2)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="351.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="325" width="0.0106%" height="15" fill="rgb(226,115,48)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="335.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.7357%" y="309" width="0.0106%" height="15" fill="rgb(249,196,10)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="319.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="293" width="0.0106%" height="15" fill="rgb(237,109,14)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="303.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="277" width="0.0106%" height="15" fill="rgb(217,103,53)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="287.50"></text></g><g><title>execute_command (18 samples, 0.01%)</title><rect x="64.7350%" y="741" width="0.0119%" height="15" fill="rgb(244,137,9)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="751.50"></text></g><g><title>execute_command_internal (18 samples, 0.01%)</title><rect x="64.7350%" y="725" width="0.0119%" height="15" fill="rgb(227,201,3)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="735.50"></text></g><g><title>[bash] (18 samples, 0.01%)</title><rect x="64.7350%" y="709" width="0.0119%" height="15" fill="rgb(243,94,6)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="719.50"></text></g><g><title>execute_command_internal (18 samples, 0.01%)</title><rect x="64.7350%" y="693" width="0.0119%" height="15" fill="rgb(235,118,5)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="703.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7357%" y="677" width="0.0113%" height="15" fill="rgb(247,10,30)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="687.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="661" width="0.0113%" height="15" fill="rgb(205,26,28)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="671.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7357%" y="645" width="0.0113%" height="15" fill="rgb(206,99,35)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="655.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="629" width="0.0113%" height="15" fill="rgb(238,130,40)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="639.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="613" width="0.0113%" height="15" fill="rgb(224,126,31)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="623.50"></text></g><g><title>evalstring (17 samples, 0.01%)</title><rect x="64.7357%" y="597" width="0.0113%" height="15" fill="rgb(254,105,17)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="607.50"></text></g><g><title>parse_and_execute (17 samples, 0.01%)</title><rect x="64.7357%" y="581" width="0.0113%" height="15" fill="rgb(216,87,36)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="591.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="565" width="0.0113%" height="15" fill="rgb(240,21,12)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="575.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="549" width="0.0113%" height="15" fill="rgb(245,192,34)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="559.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="533" width="0.0113%" height="15" fill="rgb(226,100,49)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="543.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="517" width="0.0113%" height="15" fill="rgb(245,188,27)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="527.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="501" width="0.0113%" height="15" fill="rgb(212,170,8)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="511.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7357%" y="485" width="0.0113%" height="15" fill="rgb(217,113,29)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="495.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="469" width="0.0113%" height="15" fill="rgb(237,30,3)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="479.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="453" width="0.0113%" height="15" fill="rgb(227,19,28)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="463.50"></text></g><g><title>[bash] (65 samples, 0.04%)</title><rect x="64.7152%" y="853" width="0.0430%" height="15" fill="rgb(239,172,45)" fg:x="97760" fg:w="65"/><text x="64.9652%" y="863.50"></text></g><g><title>execute_command_internal (41 samples, 0.03%)</title><rect x="64.7310%" y="837" width="0.0271%" height="15" fill="rgb(254,55,39)" fg:x="97784" fg:w="41"/><text x="64.9810%" y="847.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="64.7350%" y="821" width="0.0232%" height="15" fill="rgb(249,208,12)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="831.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="64.7350%" y="805" width="0.0232%" height="15" fill="rgb(240,52,13)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="815.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="64.7350%" y="789" width="0.0232%" height="15" fill="rgb(252,149,13)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="799.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="64.7350%" y="773" width="0.0232%" height="15" fill="rgb(232,81,48)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="783.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="64.7350%" y="757" width="0.0232%" height="15" fill="rgb(222,144,2)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="767.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="741" width="0.0113%" height="15" fill="rgb(216,81,32)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="751.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="725" width="0.0113%" height="15" fill="rgb(244,78,51)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="735.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="709" width="0.0113%" height="15" fill="rgb(217,66,21)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="719.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="693" width="0.0113%" height="15" fill="rgb(247,101,42)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="703.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="677" width="0.0113%" height="15" fill="rgb(227,81,39)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="687.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="661" width="0.0113%" height="15" fill="rgb(220,223,44)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="671.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="645" width="0.0113%" height="15" fill="rgb(205,218,2)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="655.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="629" width="0.0113%" height="15" fill="rgb(212,207,28)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="639.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="613" width="0.0113%" height="15" fill="rgb(224,12,41)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="623.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="597" width="0.0113%" height="15" fill="rgb(216,118,12)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="607.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="581" width="0.0113%" height="15" fill="rgb(252,97,46)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="591.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="565" width="0.0113%" height="15" fill="rgb(244,206,19)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="575.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="549" width="0.0113%" height="15" fill="rgb(231,84,31)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="559.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="533" width="0.0113%" height="15" fill="rgb(244,133,0)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="543.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="517" width="0.0113%" height="15" fill="rgb(223,15,50)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="527.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="501" width="0.0113%" height="15" fill="rgb(250,118,49)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="511.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="485" width="0.0113%" height="15" fill="rgb(248,25,38)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="495.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="469" width="0.0113%" height="15" fill="rgb(215,70,14)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="479.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="453" width="0.0113%" height="15" fill="rgb(215,28,15)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="463.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="437" width="0.0113%" height="15" fill="rgb(243,6,28)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="447.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="421" width="0.0113%" height="15" fill="rgb(222,130,1)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="431.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="405" width="0.0113%" height="15" fill="rgb(236,166,44)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="415.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="389" width="0.0113%" height="15" fill="rgb(221,108,14)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="399.50"></text></g><g><title>expand_words (17 samples, 0.01%)</title><rect x="64.7469%" y="373" width="0.0113%" height="15" fill="rgb(252,3,45)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="383.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="357" width="0.0113%" height="15" fill="rgb(237,68,30)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="367.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="341" width="0.0113%" height="15" fill="rgb(211,79,22)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="351.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="325" width="0.0113%" height="15" fill="rgb(252,185,21)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="335.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="309" width="0.0113%" height="15" fill="rgb(225,189,26)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="319.50"></text></g><g><title>command_substitute (17 samples, 0.01%)</title><rect x="64.7469%" y="293" width="0.0113%" height="15" fill="rgb(241,30,40)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="303.50"></text></g><g><title>parse_and_execute (17 samples, 0.01%)</title><rect x="64.7469%" y="277" width="0.0113%" height="15" fill="rgb(235,215,44)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="287.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="261" width="0.0113%" height="15" fill="rgb(205,8,29)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="271.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="245" width="0.0113%" height="15" fill="rgb(241,137,42)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="255.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="229" width="0.0113%" height="15" fill="rgb(237,155,2)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="239.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="213" width="0.0113%" height="15" fill="rgb(245,29,42)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="223.50"></text></g><g><title>__libc_fork (48 samples, 0.03%)</title><rect x="64.7827%" y="149" width="0.0318%" height="15" fill="rgb(234,101,35)" fg:x="97862" fg:w="48"/><text x="65.0327%" y="159.50"></text></g><g><title>arch_fork (47 samples, 0.03%)</title><rect x="64.7833%" y="133" width="0.0311%" height="15" fill="rgb(228,64,37)" fg:x="97863" fg:w="47"/><text x="65.0333%" y="143.50"></text></g><g><title>ret_from_fork (41 samples, 0.03%)</title><rect x="64.7873%" y="117" width="0.0271%" height="15" fill="rgb(217,214,36)" fg:x="97869" fg:w="41"/><text x="65.0373%" y="127.50"></text></g><g><title>schedule_tail (40 samples, 0.03%)</title><rect x="64.7880%" y="101" width="0.0265%" height="15" fill="rgb(243,70,3)" fg:x="97870" fg:w="40"/><text x="65.0380%" y="111.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="64.7913%" y="85" width="0.0232%" height="15" fill="rgb(253,158,52)" fg:x="97875" fg:w="35"/><text x="65.0413%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="64.7919%" y="69" width="0.0225%" height="15" fill="rgb(234,111,54)" fg:x="97876" fg:w="34"/><text x="65.0419%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="64.7939%" y="53" width="0.0205%" height="15" fill="rgb(217,70,32)" fg:x="97879" fg:w="31"/><text x="65.0439%" y="63.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="64.7939%" y="37" width="0.0205%" height="15" fill="rgb(234,18,33)" fg:x="97879" fg:w="31"/><text x="65.0439%" y="47.50"></text></g><g><title>execute_command (52 samples, 0.03%)</title><rect x="64.7807%" y="821" width="0.0344%" height="15" fill="rgb(234,12,49)" fg:x="97859" fg:w="52"/><text x="65.0307%" y="831.50"></text></g><g><title>execute_command_internal (52 samples, 0.03%)</title><rect x="64.7807%" y="805" width="0.0344%" height="15" fill="rgb(236,10,21)" fg:x="97859" fg:w="52"/><text x="65.0307%" y="815.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="789" width="0.0324%" height="15" fill="rgb(248,182,45)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="799.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="773" width="0.0324%" height="15" fill="rgb(217,95,36)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="783.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="757" width="0.0324%" height="15" fill="rgb(212,110,31)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="767.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="741" width="0.0324%" height="15" fill="rgb(206,32,53)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="751.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="725" width="0.0324%" height="15" fill="rgb(246,141,37)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="735.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="709" width="0.0324%" height="15" fill="rgb(219,16,7)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="719.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="693" width="0.0324%" height="15" fill="rgb(230,205,45)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="703.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="677" width="0.0324%" height="15" fill="rgb(231,43,49)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="687.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="661" width="0.0324%" height="15" fill="rgb(212,106,34)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="671.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="645" width="0.0324%" height="15" fill="rgb(206,83,17)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="655.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="629" width="0.0324%" height="15" fill="rgb(244,154,49)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="639.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="613" width="0.0324%" height="15" fill="rgb(244,149,49)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="623.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="597" width="0.0324%" height="15" fill="rgb(227,134,18)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="607.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="581" width="0.0324%" height="15" fill="rgb(237,116,36)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="591.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="565" width="0.0324%" height="15" fill="rgb(205,129,40)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="575.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="549" width="0.0324%" height="15" fill="rgb(236,178,4)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="559.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="533" width="0.0324%" height="15" fill="rgb(251,76,53)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="543.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="517" width="0.0324%" height="15" fill="rgb(242,92,40)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="527.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="501" width="0.0324%" height="15" fill="rgb(209,45,30)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="511.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="485" width="0.0324%" height="15" fill="rgb(218,157,36)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="495.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="469" width="0.0324%" height="15" fill="rgb(222,186,16)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="479.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="453" width="0.0324%" height="15" fill="rgb(254,72,35)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="463.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="437" width="0.0324%" height="15" fill="rgb(224,25,35)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="447.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="421" width="0.0324%" height="15" fill="rgb(206,135,52)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="431.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="405" width="0.0324%" height="15" fill="rgb(229,174,47)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="415.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="389" width="0.0324%" height="15" fill="rgb(242,184,21)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="399.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="373" width="0.0324%" height="15" fill="rgb(213,22,45)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="383.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="357" width="0.0324%" height="15" fill="rgb(237,81,54)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="367.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="341" width="0.0324%" height="15" fill="rgb(248,177,18)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="351.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="325" width="0.0324%" height="15" fill="rgb(254,31,16)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="335.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="309" width="0.0324%" height="15" fill="rgb(235,20,31)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="319.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="293" width="0.0324%" height="15" fill="rgb(240,56,43)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="303.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="277" width="0.0324%" height="15" fill="rgb(237,197,51)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="287.50"></text></g><g><title>expand_words (49 samples, 0.03%)</title><rect x="64.7827%" y="261" width="0.0324%" height="15" fill="rgb(241,162,44)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="271.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="245" width="0.0324%" height="15" fill="rgb(224,23,20)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="255.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="229" width="0.0324%" height="15" fill="rgb(250,109,34)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="239.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="213" width="0.0324%" height="15" fill="rgb(214,175,50)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="223.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="197" width="0.0324%" height="15" fill="rgb(213,182,5)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="207.50"></text></g><g><title>command_substitute (49 samples, 0.03%)</title><rect x="64.7827%" y="181" width="0.0324%" height="15" fill="rgb(209,199,19)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="191.50"></text></g><g><title>make_child (49 samples, 0.03%)</title><rect x="64.7827%" y="165" width="0.0324%" height="15" fill="rgb(236,224,42)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="175.50"></text></g><g><title>[bash] (18 samples, 0.01%)</title><rect x="64.8217%" y="181" width="0.0119%" height="15" fill="rgb(246,226,29)" fg:x="97921" fg:w="18"/><text x="65.0717%" y="191.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="709" width="0.0132%" height="15" fill="rgb(227,223,11)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="719.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="693" width="0.0132%" height="15" fill="rgb(219,7,51)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="703.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="677" width="0.0132%" height="15" fill="rgb(245,167,10)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="687.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="661" width="0.0132%" height="15" fill="rgb(237,224,16)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="671.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="645" width="0.0132%" height="15" fill="rgb(226,132,13)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="655.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="629" width="0.0132%" height="15" fill="rgb(214,140,3)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="639.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="613" width="0.0132%" height="15" fill="rgb(221,177,4)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="623.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="597" width="0.0132%" height="15" fill="rgb(238,139,3)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="607.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="581" width="0.0132%" height="15" fill="rgb(216,17,39)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="591.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="565" width="0.0132%" height="15" fill="rgb(238,120,9)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="575.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="549" width="0.0132%" height="15" fill="rgb(244,92,53)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="559.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="533" width="0.0132%" height="15" fill="rgb(224,148,33)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="543.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="517" width="0.0132%" height="15" fill="rgb(243,6,36)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="527.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="501" width="0.0132%" height="15" fill="rgb(230,102,11)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="511.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="485" width="0.0132%" height="15" fill="rgb(234,148,36)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="495.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="469" width="0.0132%" height="15" fill="rgb(251,153,25)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="479.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="453" width="0.0132%" height="15" fill="rgb(215,129,8)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="463.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="437" width="0.0132%" height="15" fill="rgb(224,128,35)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="447.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="421" width="0.0132%" height="15" fill="rgb(237,56,52)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="431.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="405" width="0.0132%" height="15" fill="rgb(234,213,19)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="415.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="389" width="0.0132%" height="15" fill="rgb(252,82,23)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="399.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="373" width="0.0132%" height="15" fill="rgb(254,201,21)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="383.50"></text></g><g><title>expand_words (20 samples, 0.01%)</title><rect x="64.8217%" y="357" width="0.0132%" height="15" fill="rgb(250,186,11)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="367.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="341" width="0.0132%" height="15" fill="rgb(211,174,5)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="351.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="325" width="0.0132%" height="15" fill="rgb(214,121,10)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="335.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="309" width="0.0132%" height="15" fill="rgb(241,66,2)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="319.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="293" width="0.0132%" height="15" fill="rgb(220,167,19)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="303.50"></text></g><g><title>command_substitute (20 samples, 0.01%)</title><rect x="64.8217%" y="277" width="0.0132%" height="15" fill="rgb(231,54,50)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="287.50"></text></g><g><title>parse_and_execute (20 samples, 0.01%)</title><rect x="64.8217%" y="261" width="0.0132%" height="15" fill="rgb(239,217,53)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="271.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="245" width="0.0132%" height="15" fill="rgb(248,8,0)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="255.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="229" width="0.0132%" height="15" fill="rgb(229,118,37)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="239.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="213" width="0.0132%" height="15" fill="rgb(253,223,43)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="223.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="197" width="0.0132%" height="15" fill="rgb(211,77,36)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="207.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.8191%" y="773" width="0.0165%" height="15" fill="rgb(219,3,53)" fg:x="97917" fg:w="25"/><text x="65.0691%" y="783.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.8191%" y="757" width="0.0165%" height="15" fill="rgb(244,45,42)" fg:x="97917" fg:w="25"/><text x="65.0691%" y="767.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.8191%" y="741" width="0.0165%" height="15" fill="rgb(225,95,27)" fg:x="97917" fg:w="25"/><text x="65.0691%" y="751.50"></text></g><g><title>execute_command_internal (21 samples, 0.01%)</title><rect x="64.8217%" y="725" width="0.0139%" height="15" fill="rgb(207,74,8)" fg:x="97921" fg:w="21"/><text x="65.0717%" y="735.50"></text></g><g><title>[bash] (85 samples, 0.06%)</title><rect x="64.7800%" y="837" width="0.0563%" height="15" fill="rgb(243,63,36)" fg:x="97858" fg:w="85"/><text x="65.0300%" y="847.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.8151%" y="821" width="0.0212%" height="15" fill="rgb(211,180,12)" fg:x="97911" fg:w="32"/><text x="65.0651%" y="831.50"></text></g><g><title>execute_command_internal (26 samples, 0.02%)</title><rect x="64.8191%" y="805" width="0.0172%" height="15" fill="rgb(254,166,49)" fg:x="97917" fg:w="26"/><text x="65.0691%" y="815.50"></text></g><g><title>[bash] (26 samples, 0.02%)</title><rect x="64.8191%" y="789" width="0.0172%" height="15" fill="rgb(205,19,0)" fg:x="97917" fg:w="26"/><text x="65.0691%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (92 samples, 0.06%)</title><rect x="64.8634%" y="117" width="0.0609%" height="15" fill="rgb(224,172,32)" fg:x="97984" fg:w="92"/><text x="65.1134%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.06%)</title><rect x="64.8648%" y="101" width="0.0596%" height="15" fill="rgb(254,136,30)" fg:x="97986" fg:w="90"/><text x="65.1148%" y="111.50"></text></g><g><title>native_write_msr (89 samples, 0.06%)</title><rect x="64.8654%" y="85" width="0.0589%" height="15" fill="rgb(246,19,35)" fg:x="97987" fg:w="89"/><text x="65.1154%" y="95.50"></text></g><g><title>arch_fork (122 samples, 0.08%)</title><rect x="64.8456%" y="181" width="0.0808%" height="15" fill="rgb(219,24,36)" fg:x="97957" fg:w="122"/><text x="65.0956%" y="191.50"></text></g><g><title>ret_from_fork (110 samples, 0.07%)</title><rect x="64.8535%" y="165" width="0.0728%" height="15" fill="rgb(251,55,1)" fg:x="97969" fg:w="110"/><text x="65.1035%" y="175.50"></text></g><g><title>schedule_tail (110 samples, 0.07%)</title><rect x="64.8535%" y="149" width="0.0728%" height="15" fill="rgb(218,117,39)" fg:x="97969" fg:w="110"/><text x="65.1035%" y="159.50"></text></g><g><title>finish_task_switch (102 samples, 0.07%)</title><rect x="64.8588%" y="133" width="0.0675%" height="15" fill="rgb(248,169,11)" fg:x="97977" fg:w="102"/><text x="65.1088%" y="143.50"></text></g><g><title>execute_command_internal (222 samples, 0.15%)</title><rect x="64.7800%" y="853" width="0.1470%" height="15" fill="rgb(244,40,44)" fg:x="97858" fg:w="222"/><text x="65.0300%" y="863.50"></text></g><g><title>execute_command_internal (135 samples, 0.09%)</title><rect x="64.8376%" y="837" width="0.0894%" height="15" fill="rgb(234,62,37)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="847.50"></text></g><g><title>[bash] (135 samples, 0.09%)</title><rect x="64.8376%" y="821" width="0.0894%" height="15" fill="rgb(207,117,42)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="831.50"></text></g><g><title>execute_command (135 samples, 0.09%)</title><rect x="64.8376%" y="805" width="0.0894%" height="15" fill="rgb(213,43,2)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="815.50"></text></g><g><title>execute_command_internal (135 samples, 0.09%)</title><rect x="64.8376%" y="789" width="0.0894%" height="15" fill="rgb(244,202,51)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="799.50"></text></g><g><title>[bash] (135 samples, 0.09%)</title><rect x="64.8376%" y="773" width="0.0894%" height="15" fill="rgb(253,174,46)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="783.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="757" width="0.0854%" height="15" fill="rgb(251,23,1)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="767.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="741" width="0.0854%" height="15" fill="rgb(253,26,1)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="751.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="725" width="0.0854%" height="15" fill="rgb(216,89,31)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="735.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="709" width="0.0854%" height="15" fill="rgb(209,109,5)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="719.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="693" width="0.0854%" height="15" fill="rgb(229,63,13)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="703.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="677" width="0.0854%" height="15" fill="rgb(238,137,54)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="687.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="661" width="0.0854%" height="15" fill="rgb(228,1,9)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="671.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="645" width="0.0854%" height="15" fill="rgb(249,120,48)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="655.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="629" width="0.0854%" height="15" fill="rgb(209,72,36)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="639.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="613" width="0.0854%" height="15" fill="rgb(247,98,49)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="623.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="597" width="0.0854%" height="15" fill="rgb(233,75,36)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="607.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="581" width="0.0854%" height="15" fill="rgb(225,14,24)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="591.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="565" width="0.0854%" height="15" fill="rgb(237,193,20)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="575.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="549" width="0.0854%" height="15" fill="rgb(239,122,19)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="559.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="533" width="0.0854%" height="15" fill="rgb(231,220,10)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="543.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="517" width="0.0854%" height="15" fill="rgb(220,66,15)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="527.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="501" width="0.0854%" height="15" fill="rgb(215,171,52)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="511.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="485" width="0.0854%" height="15" fill="rgb(241,169,50)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="495.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="469" width="0.0854%" height="15" fill="rgb(236,189,0)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="479.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="453" width="0.0854%" height="15" fill="rgb(217,147,20)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="463.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="437" width="0.0854%" height="15" fill="rgb(206,188,39)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="447.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="421" width="0.0854%" height="15" fill="rgb(227,118,25)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="431.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="405" width="0.0854%" height="15" fill="rgb(248,171,40)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="415.50"></text></g><g><title>expand_words (129 samples, 0.09%)</title><rect x="64.8416%" y="389" width="0.0854%" height="15" fill="rgb(251,90,54)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="399.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="373" width="0.0854%" height="15" fill="rgb(234,11,46)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="383.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="357" width="0.0854%" height="15" fill="rgb(229,134,13)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="367.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="341" width="0.0854%" height="15" fill="rgb(223,129,3)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="351.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="325" width="0.0854%" height="15" fill="rgb(221,124,13)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="335.50"></text></g><g><title>command_substitute (129 samples, 0.09%)</title><rect x="64.8416%" y="309" width="0.0854%" height="15" fill="rgb(234,3,18)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="319.50"></text></g><g><title>parse_and_execute (129 samples, 0.09%)</title><rect x="64.8416%" y="293" width="0.0854%" height="15" fill="rgb(249,199,20)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="303.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="277" width="0.0854%" height="15" fill="rgb(224,134,6)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="287.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="261" width="0.0854%" height="15" fill="rgb(254,83,26)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="271.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="245" width="0.0854%" height="15" fill="rgb(217,88,9)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="255.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="229" width="0.0854%" height="15" fill="rgb(225,73,2)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="239.50"></text></g><g><title>make_child (127 samples, 0.08%)</title><rect x="64.8429%" y="213" width="0.0841%" height="15" fill="rgb(226,44,39)" fg:x="97953" fg:w="127"/><text x="65.0929%" y="223.50"></text></g><g><title>__libc_fork (127 samples, 0.08%)</title><rect x="64.8429%" y="197" width="0.0841%" height="15" fill="rgb(228,53,17)" fg:x="97953" fg:w="127"/><text x="65.0929%" y="207.50"></text></g><g><title>[unknown] (348 samples, 0.23%)</title><rect x="64.7152%" y="869" width="0.2304%" height="15" fill="rgb(212,27,27)" fg:x="97760" fg:w="348"/><text x="64.9652%" y="879.50"></text></g><g><title>dispose_command (16 samples, 0.01%)</title><rect x="64.9614%" y="437" width="0.0106%" height="15" fill="rgb(241,50,6)" fg:x="98132" fg:w="16"/><text x="65.2114%" y="447.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.9614%" y="485" width="0.0119%" height="15" fill="rgb(225,28,51)" fg:x="98132" fg:w="18"/><text x="65.2114%" y="495.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.9614%" y="469" width="0.0119%" height="15" fill="rgb(215,33,16)" fg:x="98132" fg:w="18"/><text x="65.2114%" y="479.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.9614%" y="453" width="0.0119%" height="15" fill="rgb(243,40,39)" fg:x="98132" fg:w="18"/><text x="65.2114%" y="463.50"></text></g><g><title>dispose_command (21 samples, 0.01%)</title><rect x="64.9601%" y="581" width="0.0139%" height="15" fill="rgb(225,11,42)" fg:x="98130" fg:w="21"/><text x="65.2101%" y="591.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="565" width="0.0132%" height="15" fill="rgb(241,220,38)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="575.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="549" width="0.0132%" height="15" fill="rgb(244,52,35)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="559.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="533" width="0.0132%" height="15" fill="rgb(246,42,46)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="543.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="517" width="0.0132%" height="15" fill="rgb(205,184,13)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="527.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.9614%" y="501" width="0.0126%" height="15" fill="rgb(209,48,36)" fg:x="98132" fg:w="19"/><text x="65.2114%" y="511.50"></text></g><g><title>dispose_command (26 samples, 0.02%)</title><rect x="64.9574%" y="693" width="0.0172%" height="15" fill="rgb(244,34,51)" fg:x="98126" fg:w="26"/><text x="65.2074%" y="703.50"></text></g><g><title>dispose_command (26 samples, 0.02%)</title><rect x="64.9574%" y="677" width="0.0172%" height="15" fill="rgb(221,107,33)" fg:x="98126" fg:w="26"/><text x="65.2074%" y="687.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="64.9581%" y="661" width="0.0165%" height="15" fill="rgb(224,203,12)" fg:x="98127" fg:w="25"/><text x="65.2081%" y="671.50"></text></g><g><title>dispose_command (24 samples, 0.02%)</title><rect x="64.9588%" y="645" width="0.0159%" height="15" fill="rgb(230,215,18)" fg:x="98128" fg:w="24"/><text x="65.2088%" y="655.50"></text></g><g><title>dispose_command (24 samples, 0.02%)</title><rect x="64.9588%" y="629" width="0.0159%" height="15" fill="rgb(206,185,35)" fg:x="98128" fg:w="24"/><text x="65.2088%" y="639.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.9594%" y="613" width="0.0152%" height="15" fill="rgb(228,140,34)" fg:x="98129" fg:w="23"/><text x="65.2094%" y="623.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.9594%" y="597" width="0.0152%" height="15" fill="rgb(208,93,13)" fg:x="98129" fg:w="23"/><text x="65.2094%" y="607.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.9568%" y="741" width="0.0185%" height="15" fill="rgb(221,193,39)" fg:x="98125" fg:w="28"/><text x="65.2068%" y="751.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.9568%" y="725" width="0.0185%" height="15" fill="rgb(241,132,34)" fg:x="98125" fg:w="28"/><text x="65.2068%" y="735.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.9568%" y="709" width="0.0185%" height="15" fill="rgb(221,141,10)" fg:x="98125" fg:w="28"/><text x="65.2068%" y="719.50"></text></g><g><title>dispose_command (30 samples, 0.02%)</title><rect x="64.9561%" y="805" width="0.0199%" height="15" fill="rgb(226,90,31)" fg:x="98124" fg:w="30"/><text x="65.2061%" y="815.50"></text></g><g><title>dispose_command (29 samples, 0.02%)</title><rect x="64.9568%" y="789" width="0.0192%" height="15" fill="rgb(243,75,5)" fg:x="98125" fg:w="29"/><text x="65.2068%" y="799.50"></text></g><g><title>dispose_command (29 samples, 0.02%)</title><rect x="64.9568%" y="773" width="0.0192%" height="15" fill="rgb(227,156,21)" fg:x="98125" fg:w="29"/><text x="65.2068%" y="783.50"></text></g><g><title>dispose_command (29 samples, 0.02%)</title><rect x="64.9568%" y="757" width="0.0192%" height="15" fill="rgb(250,195,8)" fg:x="98125" fg:w="29"/><text x="65.2068%" y="767.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.9866%" y="565" width="0.0106%" height="15" fill="rgb(220,134,5)" fg:x="98170" fg:w="16"/><text x="65.2366%" y="575.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.9866%" y="549" width="0.0106%" height="15" fill="rgb(246,106,34)" fg:x="98170" fg:w="16"/><text x="65.2366%" y="559.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.9866%" y="533" width="0.0106%" height="15" fill="rgb(205,1,4)" fg:x="98170" fg:w="16"/><text x="65.2366%" y="543.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.9866%" y="661" width="0.0159%" height="15" fill="rgb(224,151,29)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="671.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.9866%" y="645" width="0.0159%" height="15" fill="rgb(251,196,0)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="655.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="64.9866%" y="629" width="0.0159%" height="15" fill="rgb(212,127,0)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="639.50"></text></g><g><title>execute_command (24 samples, 0.02%)</title><rect x="64.9866%" y="613" width="0.0159%" height="15" fill="rgb(236,71,53)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="623.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.9866%" y="597" width="0.0159%" height="15" fill="rgb(227,99,0)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="607.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="64.9866%" y="581" width="0.0159%" height="15" fill="rgb(239,89,21)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="591.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.9866%" y="725" width="0.0165%" height="15" fill="rgb(243,122,19)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="735.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.9866%" y="709" width="0.0165%" height="15" fill="rgb(229,192,45)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="719.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.9866%" y="693" width="0.0165%" height="15" fill="rgb(235,165,35)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="703.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.9866%" y="677" width="0.0165%" height="15" fill="rgb(253,202,0)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.05%)</title><rect x="65.0170%" y="629" width="0.0470%" height="15" fill="rgb(235,51,20)" fg:x="98216" fg:w="71"/><text x="65.2670%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="65.0183%" y="613" width="0.0457%" height="15" fill="rgb(218,95,46)" fg:x="98218" fg:w="69"/><text x="65.2683%" y="623.50"></text></g><g><title>native_write_msr (68 samples, 0.05%)</title><rect x="65.0190%" y="597" width="0.0450%" height="15" fill="rgb(212,81,10)" fg:x="98219" fg:w="68"/><text x="65.2690%" y="607.50"></text></g><g><title>arch_fork (90 samples, 0.06%)</title><rect x="65.0071%" y="693" width="0.0596%" height="15" fill="rgb(240,59,0)" fg:x="98201" fg:w="90"/><text x="65.2571%" y="703.50"></text></g><g><title>ret_from_fork (87 samples, 0.06%)</title><rect x="65.0091%" y="677" width="0.0576%" height="15" fill="rgb(212,191,42)" fg:x="98204" fg:w="87"/><text x="65.2591%" y="687.50"></text></g><g><title>schedule_tail (87 samples, 0.06%)</title><rect x="65.0091%" y="661" width="0.0576%" height="15" fill="rgb(233,140,3)" fg:x="98204" fg:w="87"/><text x="65.2591%" y="671.50"></text></g><g><title>finish_task_switch (81 samples, 0.05%)</title><rect x="65.0130%" y="645" width="0.0536%" height="15" fill="rgb(215,69,23)" fg:x="98210" fg:w="81"/><text x="65.2630%" y="655.50"></text></g><g><title>__libc_fork (91 samples, 0.06%)</title><rect x="65.0071%" y="709" width="0.0602%" height="15" fill="rgb(240,202,20)" fg:x="98201" fg:w="91"/><text x="65.2571%" y="719.50"></text></g><g><title>make_child (100 samples, 0.07%)</title><rect x="65.0038%" y="725" width="0.0662%" height="15" fill="rgb(209,146,50)" fg:x="98196" fg:w="100"/><text x="65.2538%" y="735.50"></text></g><g><title>execute_command (148 samples, 0.10%)</title><rect x="64.9839%" y="757" width="0.0980%" height="15" fill="rgb(253,102,54)" fg:x="98166" fg:w="148"/><text x="65.2339%" y="767.50"></text></g><g><title>execute_command_internal (148 samples, 0.10%)</title><rect x="64.9839%" y="741" width="0.0980%" height="15" fill="rgb(250,173,47)" fg:x="98166" fg:w="148"/><text x="65.2339%" y="751.50"></text></g><g><title>wait_for (16 samples, 0.01%)</title><rect x="65.0713%" y="725" width="0.0106%" height="15" fill="rgb(232,142,7)" fg:x="98298" fg:w="16"/><text x="65.3213%" y="735.50"></text></g><g><title>[bash] (178 samples, 0.12%)</title><rect x="64.9773%" y="773" width="0.1178%" height="15" fill="rgb(230,157,47)" fg:x="98156" fg:w="178"/><text x="65.2273%" y="783.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="65.0819%" y="757" width="0.0132%" height="15" fill="rgb(214,177,35)" fg:x="98314" fg:w="20"/><text x="65.3319%" y="767.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="65.0825%" y="741" width="0.0126%" height="15" fill="rgb(234,119,46)" fg:x="98315" fg:w="19"/><text x="65.3325%" y="751.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="65.0825%" y="725" width="0.0126%" height="15" fill="rgb(241,180,50)" fg:x="98315" fg:w="19"/><text x="65.3325%" y="735.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="65.1223%" y="197" width="0.0106%" height="15" fill="rgb(221,54,25)" fg:x="98375" fg:w="16"/><text x="65.3723%" y="207.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1223%" y="245" width="0.0113%" height="15" fill="rgb(209,157,44)" fg:x="98375" fg:w="17"/><text x="65.3723%" y="255.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1223%" y="229" width="0.0113%" height="15" fill="rgb(246,115,41)" fg:x="98375" fg:w="17"/><text x="65.3723%" y="239.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1223%" y="213" width="0.0113%" height="15" fill="rgb(229,86,1)" fg:x="98375" fg:w="17"/><text x="65.3723%" y="223.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="65.1203%" y="277" width="0.0139%" height="15" fill="rgb(240,108,53)" fg:x="98372" fg:w="21"/><text x="65.3703%" y="287.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="65.1209%" y="261" width="0.0132%" height="15" fill="rgb(227,134,2)" fg:x="98373" fg:w="20"/><text x="65.3709%" y="271.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="65.1190%" y="293" width="0.0159%" height="15" fill="rgb(213,129,25)" fg:x="98370" fg:w="24"/><text x="65.3690%" y="303.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="373" width="0.0172%" height="15" fill="rgb(226,35,21)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="383.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="357" width="0.0172%" height="15" fill="rgb(208,129,26)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="367.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="341" width="0.0172%" height="15" fill="rgb(224,83,6)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="351.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="325" width="0.0172%" height="15" fill="rgb(227,52,39)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="335.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="309" width="0.0172%" height="15" fill="rgb(241,30,17)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="319.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="453" width="0.0179%" height="15" fill="rgb(246,186,42)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="463.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="437" width="0.0179%" height="15" fill="rgb(221,169,15)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="447.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="421" width="0.0179%" height="15" fill="rgb(235,108,21)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="431.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="405" width="0.0179%" height="15" fill="rgb(219,148,30)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="415.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="389" width="0.0179%" height="15" fill="rgb(220,109,5)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="399.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="65.1190%" y="469" width="0.0185%" height="15" fill="rgb(213,203,48)" fg:x="98370" fg:w="28"/><text x="65.3690%" y="479.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1190%" y="517" width="0.0192%" height="15" fill="rgb(244,71,33)" fg:x="98370" fg:w="29"/><text x="65.3690%" y="527.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1190%" y="501" width="0.0192%" height="15" fill="rgb(209,23,2)" fg:x="98370" fg:w="29"/><text x="65.3690%" y="511.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1190%" y="485" width="0.0192%" height="15" fill="rgb(219,97,7)" fg:x="98370" fg:w="29"/><text x="65.3690%" y="495.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="65.1163%" y="533" width="0.0225%" height="15" fill="rgb(216,161,23)" fg:x="98366" fg:w="34"/><text x="65.3663%" y="543.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="65.1156%" y="581" width="0.0238%" height="15" fill="rgb(207,45,42)" fg:x="98365" fg:w="36"/><text x="65.3656%" y="591.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="65.1163%" y="565" width="0.0232%" height="15" fill="rgb(241,61,4)" fg:x="98366" fg:w="35"/><text x="65.3663%" y="575.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="65.1163%" y="549" width="0.0232%" height="15" fill="rgb(236,170,1)" fg:x="98366" fg:w="35"/><text x="65.3663%" y="559.50"></text></g><g><title>copy_command (51 samples, 0.03%)</title><rect x="65.1077%" y="613" width="0.0338%" height="15" fill="rgb(239,72,5)" fg:x="98353" fg:w="51"/><text x="65.3577%" y="623.50"></text></g><g><title>copy_command (39 samples, 0.03%)</title><rect x="65.1156%" y="597" width="0.0258%" height="15" fill="rgb(214,13,50)" fg:x="98365" fg:w="39"/><text x="65.3656%" y="607.50"></text></g><g><title>copy_command (55 samples, 0.04%)</title><rect x="65.1064%" y="629" width="0.0364%" height="15" fill="rgb(224,88,9)" fg:x="98351" fg:w="55"/><text x="65.3564%" y="639.50"></text></g><g><title>copy_command (62 samples, 0.04%)</title><rect x="65.1051%" y="645" width="0.0410%" height="15" fill="rgb(238,192,34)" fg:x="98349" fg:w="62"/><text x="65.3551%" y="655.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="65.1044%" y="661" width="0.0430%" height="15" fill="rgb(217,203,50)" fg:x="98348" fg:w="65"/><text x="65.3544%" y="671.50"></text></g><g><title>copy_command (74 samples, 0.05%)</title><rect x="65.0998%" y="677" width="0.0490%" height="15" fill="rgb(241,123,32)" fg:x="98341" fg:w="74"/><text x="65.3498%" y="687.50"></text></g><g><title>copy_command (79 samples, 0.05%)</title><rect x="65.0978%" y="693" width="0.0523%" height="15" fill="rgb(248,151,39)" fg:x="98338" fg:w="79"/><text x="65.3478%" y="703.50"></text></g><g><title>copy_command (84 samples, 0.06%)</title><rect x="65.0965%" y="709" width="0.0556%" height="15" fill="rgb(208,89,6)" fg:x="98336" fg:w="84"/><text x="65.3465%" y="719.50"></text></g><g><title>copy_command (89 samples, 0.06%)</title><rect x="65.0951%" y="757" width="0.0589%" height="15" fill="rgb(254,43,26)" fg:x="98334" fg:w="89"/><text x="65.3451%" y="767.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="65.0958%" y="741" width="0.0583%" height="15" fill="rgb(216,158,13)" fg:x="98335" fg:w="88"/><text x="65.3458%" y="751.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="65.0958%" y="725" width="0.0583%" height="15" fill="rgb(212,47,37)" fg:x="98335" fg:w="88"/><text x="65.3458%" y="735.50"></text></g><g><title>bind_function (93 samples, 0.06%)</title><rect x="65.0951%" y="773" width="0.0616%" height="15" fill="rgb(254,16,10)" fg:x="98334" fg:w="93"/><text x="65.3451%" y="783.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="65.1752%" y="309" width="0.0106%" height="15" fill="rgb(223,228,16)" fg:x="98455" fg:w="16"/><text x="65.4252%" y="319.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="65.1752%" y="293" width="0.0106%" height="15" fill="rgb(249,108,50)" fg:x="98455" fg:w="16"/><text x="65.4252%" y="303.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1752%" y="341" width="0.0113%" height="15" fill="rgb(208,220,5)" fg:x="98455" fg:w="17"/><text x="65.4252%" y="351.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1752%" y="325" width="0.0113%" height="15" fill="rgb(217,89,48)" fg:x="98455" fg:w="17"/><text x="65.4252%" y="335.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="65.1752%" y="357" width="0.0119%" height="15" fill="rgb(212,113,41)" fg:x="98455" fg:w="18"/><text x="65.4252%" y="367.50"></text></g><g><title>copy_command (19 samples, 0.01%)</title><rect x="65.1752%" y="373" width="0.0126%" height="15" fill="rgb(231,127,5)" fg:x="98455" fg:w="19"/><text x="65.4252%" y="383.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="65.1746%" y="389" width="0.0139%" height="15" fill="rgb(217,141,17)" fg:x="98454" fg:w="21"/><text x="65.4246%" y="399.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="65.1739%" y="421" width="0.0152%" height="15" fill="rgb(245,125,54)" fg:x="98453" fg:w="23"/><text x="65.4239%" y="431.50"></text></g><g><title>copy_command (22 samples, 0.01%)</title><rect x="65.1746%" y="405" width="0.0146%" height="15" fill="rgb(248,125,3)" fg:x="98454" fg:w="22"/><text x="65.4246%" y="415.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="65.1739%" y="453" width="0.0159%" height="15" fill="rgb(236,119,51)" fg:x="98453" fg:w="24"/><text x="65.4239%" y="463.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="65.1739%" y="437" width="0.0159%" height="15" fill="rgb(239,99,8)" fg:x="98453" fg:w="24"/><text x="65.4239%" y="447.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1726%" y="517" width="0.0179%" height="15" fill="rgb(224,228,4)" fg:x="98451" fg:w="27"/><text x="65.4226%" y="527.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1732%" y="501" width="0.0172%" height="15" fill="rgb(220,131,45)" fg:x="98452" fg:w="26"/><text x="65.4232%" y="511.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1732%" y="485" width="0.0172%" height="15" fill="rgb(215,62,5)" fg:x="98452" fg:w="26"/><text x="65.4232%" y="495.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1732%" y="469" width="0.0172%" height="15" fill="rgb(253,12,24)" fg:x="98452" fg:w="26"/><text x="65.4232%" y="479.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1719%" y="533" width="0.0192%" height="15" fill="rgb(248,120,50)" fg:x="98450" fg:w="29"/><text x="65.4219%" y="543.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="65.1719%" y="565" width="0.0199%" height="15" fill="rgb(245,194,10)" fg:x="98450" fg:w="30"/><text x="65.4219%" y="575.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="65.1719%" y="549" width="0.0199%" height="15" fill="rgb(241,149,38)" fg:x="98450" fg:w="30"/><text x="65.4219%" y="559.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="65.1719%" y="581" width="0.0218%" height="15" fill="rgb(219,215,7)" fg:x="98450" fg:w="33"/><text x="65.4219%" y="591.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="65.1719%" y="597" width="0.0225%" height="15" fill="rgb(208,120,31)" fg:x="98450" fg:w="34"/><text x="65.4219%" y="607.50"></text></g><g><title>copy_command (48 samples, 0.03%)</title><rect x="65.1640%" y="613" width="0.0318%" height="15" fill="rgb(244,30,8)" fg:x="98438" fg:w="48"/><text x="65.4140%" y="623.50"></text></g><g><title>copy_command (53 samples, 0.04%)</title><rect x="65.1620%" y="629" width="0.0351%" height="15" fill="rgb(238,35,44)" fg:x="98435" fg:w="53"/><text x="65.4120%" y="639.50"></text></g><g><title>copy_command (57 samples, 0.04%)</title><rect x="65.1607%" y="661" width="0.0377%" height="15" fill="rgb(243,218,37)" fg:x="98433" fg:w="57"/><text x="65.4107%" y="671.50"></text></g><g><title>copy_command (56 samples, 0.04%)</title><rect x="65.1613%" y="645" width="0.0371%" height="15" fill="rgb(218,169,10)" fg:x="98434" fg:w="56"/><text x="65.4113%" y="655.50"></text></g><g><title>copy_command (63 samples, 0.04%)</title><rect x="65.1574%" y="677" width="0.0417%" height="15" fill="rgb(221,144,10)" fg:x="98428" fg:w="63"/><text x="65.4074%" y="687.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="65.1567%" y="693" width="0.0430%" height="15" fill="rgb(226,41,38)" fg:x="98427" fg:w="65"/><text x="65.4067%" y="703.50"></text></g><g><title>copy_command (66 samples, 0.04%)</title><rect x="65.1567%" y="709" width="0.0437%" height="15" fill="rgb(228,3,1)" fg:x="98427" fg:w="66"/><text x="65.4067%" y="719.50"></text></g><g><title>copy_command (68 samples, 0.05%)</title><rect x="65.1567%" y="725" width="0.0450%" height="15" fill="rgb(209,129,12)" fg:x="98427" fg:w="68"/><text x="65.4067%" y="735.50"></text></g><g><title>copy_function_def_contents (69 samples, 0.05%)</title><rect x="65.1567%" y="773" width="0.0457%" height="15" fill="rgb(213,136,33)" fg:x="98427" fg:w="69"/><text x="65.4067%" y="783.50"></text></g><g><title>copy_command (69 samples, 0.05%)</title><rect x="65.1567%" y="757" width="0.0457%" height="15" fill="rgb(209,181,29)" fg:x="98427" fg:w="69"/><text x="65.4067%" y="767.50"></text></g><g><title>copy_command (69 samples, 0.05%)</title><rect x="65.1567%" y="741" width="0.0457%" height="15" fill="rgb(234,173,18)" fg:x="98427" fg:w="69"/><text x="65.4067%" y="751.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="65.2024%" y="741" width="0.0126%" height="15" fill="rgb(227,73,47)" fg:x="98496" fg:w="19"/><text x="65.4524%" y="751.50"></text></g><g><title>__libc_fork (100 samples, 0.07%)</title><rect x="65.2229%" y="677" width="0.0662%" height="15" fill="rgb(234,9,34)" fg:x="98527" fg:w="100"/><text x="65.4729%" y="687.50"></text></g><g><title>arch_fork (99 samples, 0.07%)</title><rect x="65.2236%" y="661" width="0.0655%" height="15" fill="rgb(235,172,15)" fg:x="98528" fg:w="99"/><text x="65.4736%" y="671.50"></text></g><g><title>ret_from_fork (91 samples, 0.06%)</title><rect x="65.2288%" y="645" width="0.0602%" height="15" fill="rgb(245,61,2)" fg:x="98536" fg:w="91"/><text x="65.4788%" y="655.50"></text></g><g><title>schedule_tail (91 samples, 0.06%)</title><rect x="65.2288%" y="629" width="0.0602%" height="15" fill="rgb(238,39,47)" fg:x="98536" fg:w="91"/><text x="65.4788%" y="639.50"></text></g><g><title>finish_task_switch (79 samples, 0.05%)</title><rect x="65.2368%" y="613" width="0.0523%" height="15" fill="rgb(234,37,24)" fg:x="98548" fg:w="79"/><text x="65.4868%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.05%)</title><rect x="65.2375%" y="597" width="0.0516%" height="15" fill="rgb(248,223,24)" fg:x="98549" fg:w="78"/><text x="65.4875%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.05%)</title><rect x="65.2388%" y="581" width="0.0503%" height="15" fill="rgb(223,12,15)" fg:x="98551" fg:w="76"/><text x="65.4888%" y="591.50"></text></g><g><title>native_write_msr (76 samples, 0.05%)</title><rect x="65.2388%" y="565" width="0.0503%" height="15" fill="rgb(249,6,3)" fg:x="98551" fg:w="76"/><text x="65.4888%" y="575.50"></text></g><g><title>make_child (108 samples, 0.07%)</title><rect x="65.2229%" y="693" width="0.0715%" height="15" fill="rgb(237,105,33)" fg:x="98527" fg:w="108"/><text x="65.4729%" y="703.50"></text></g><g><title>__libc_fork (54 samples, 0.04%)</title><rect x="65.2997%" y="645" width="0.0357%" height="15" fill="rgb(252,208,35)" fg:x="98643" fg:w="54"/><text x="65.5497%" y="655.50"></text></g><g><title>arch_fork (53 samples, 0.04%)</title><rect x="65.3003%" y="629" width="0.0351%" height="15" fill="rgb(215,181,35)" fg:x="98644" fg:w="53"/><text x="65.5503%" y="639.50"></text></g><g><title>ret_from_fork (49 samples, 0.03%)</title><rect x="65.3030%" y="613" width="0.0324%" height="15" fill="rgb(246,212,3)" fg:x="98648" fg:w="49"/><text x="65.5530%" y="623.50"></text></g><g><title>schedule_tail (49 samples, 0.03%)</title><rect x="65.3030%" y="597" width="0.0324%" height="15" fill="rgb(247,156,24)" fg:x="98648" fg:w="49"/><text x="65.5530%" y="607.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="65.3083%" y="581" width="0.0271%" height="15" fill="rgb(248,9,31)" fg:x="98656" fg:w="41"/><text x="65.5583%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="65.3096%" y="565" width="0.0258%" height="15" fill="rgb(234,26,45)" fg:x="98658" fg:w="39"/><text x="65.5596%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="65.3103%" y="549" width="0.0252%" height="15" fill="rgb(249,11,32)" fg:x="98659" fg:w="38"/><text x="65.5603%" y="559.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="65.3103%" y="533" width="0.0252%" height="15" fill="rgb(249,162,33)" fg:x="98659" fg:w="38"/><text x="65.5603%" y="543.50"></text></g><g><title>make_child (57 samples, 0.04%)</title><rect x="65.2990%" y="661" width="0.0377%" height="15" fill="rgb(232,4,32)" fg:x="98642" fg:w="57"/><text x="65.5490%" y="671.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="65.3394%" y="549" width="0.0119%" height="15" fill="rgb(212,5,45)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="559.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="65.3394%" y="533" width="0.0119%" height="15" fill="rgb(227,95,13)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="543.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="65.3394%" y="517" width="0.0119%" height="15" fill="rgb(223,205,10)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="65.3394%" y="501" width="0.0119%" height="15" fill="rgb(222,178,8)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="65.3401%" y="485" width="0.0113%" height="15" fill="rgb(216,13,22)" fg:x="98704" fg:w="17"/><text x="65.5901%" y="495.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="65.3401%" y="469" width="0.0113%" height="15" fill="rgb(240,167,12)" fg:x="98704" fg:w="17"/><text x="65.5901%" y="479.50"></text></g><g><title>__GI___wait4 (21 samples, 0.01%)</title><rect x="65.3394%" y="629" width="0.0139%" height="15" fill="rgb(235,68,35)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="65.3394%" y="613" width="0.0139%" height="15" fill="rgb(253,40,27)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="623.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="65.3394%" y="597" width="0.0139%" height="15" fill="rgb(214,19,28)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="607.50"></text></g><g><title>kernel_wait4 (21 samples, 0.01%)</title><rect x="65.3394%" y="581" width="0.0139%" height="15" fill="rgb(210,167,45)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="591.50"></text></g><g><title>do_wait (21 samples, 0.01%)</title><rect x="65.3394%" y="565" width="0.0139%" height="15" fill="rgb(232,97,40)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="575.50"></text></g><g><title>execute_command_internal (91 samples, 0.06%)</title><rect x="65.2950%" y="677" width="0.0602%" height="15" fill="rgb(250,35,23)" fg:x="98636" fg:w="91"/><text x="65.5450%" y="687.50"></text></g><g><title>wait_for (24 samples, 0.02%)</title><rect x="65.3394%" y="661" width="0.0159%" height="15" fill="rgb(248,47,53)" fg:x="98703" fg:w="24"/><text x="65.5894%" y="671.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="65.3394%" y="645" width="0.0159%" height="15" fill="rgb(226,58,50)" fg:x="98703" fg:w="24"/><text x="65.5894%" y="655.50"></text></g><g><title>parse_and_execute (94 samples, 0.06%)</title><rect x="65.2944%" y="693" width="0.0622%" height="15" fill="rgb(217,105,26)" fg:x="98635" fg:w="94"/><text x="65.5444%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.05%)</title><rect x="65.3652%" y="517" width="0.0463%" height="15" fill="rgb(208,64,1)" fg:x="98742" fg:w="70"/><text x="65.6152%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.04%)</title><rect x="65.3672%" y="501" width="0.0444%" height="15" fill="rgb(214,80,1)" fg:x="98745" fg:w="67"/><text x="65.6172%" y="511.50"></text></g><g><title>native_write_msr (67 samples, 0.04%)</title><rect x="65.3672%" y="485" width="0.0444%" height="15" fill="rgb(206,175,26)" fg:x="98745" fg:w="67"/><text x="65.6172%" y="495.50"></text></g><g><title>schedule (74 samples, 0.05%)</title><rect x="65.3632%" y="565" width="0.0490%" height="15" fill="rgb(235,156,37)" fg:x="98739" fg:w="74"/><text x="65.6132%" y="575.50"></text></g><g><title>__schedule (74 samples, 0.05%)</title><rect x="65.3632%" y="549" width="0.0490%" height="15" fill="rgb(213,100,9)" fg:x="98739" fg:w="74"/><text x="65.6132%" y="559.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="65.3632%" y="533" width="0.0490%" height="15" fill="rgb(241,15,13)" fg:x="98739" fg:w="74"/><text x="65.6132%" y="543.50"></text></g><g><title>do_syscall_64 (81 samples, 0.05%)</title><rect x="65.3593%" y="645" width="0.0536%" height="15" fill="rgb(205,97,43)" fg:x="98733" fg:w="81"/><text x="65.6093%" y="655.50"></text></g><g><title>ksys_read (81 samples, 0.05%)</title><rect x="65.3593%" y="629" width="0.0536%" height="15" fill="rgb(216,106,32)" fg:x="98733" fg:w="81"/><text x="65.6093%" y="639.50"></text></g><g><title>vfs_read (79 samples, 0.05%)</title><rect x="65.3606%" y="613" width="0.0523%" height="15" fill="rgb(226,200,8)" fg:x="98735" fg:w="79"/><text x="65.6106%" y="623.50"></text></g><g><title>new_sync_read (78 samples, 0.05%)</title><rect x="65.3612%" y="597" width="0.0516%" height="15" fill="rgb(244,54,29)" fg:x="98736" fg:w="78"/><text x="65.6112%" y="607.50"></text></g><g><title>pipe_read (78 samples, 0.05%)</title><rect x="65.3612%" y="581" width="0.0516%" height="15" fill="rgb(252,169,12)" fg:x="98736" fg:w="78"/><text x="65.6112%" y="591.50"></text></g><g><title>expand_word_leave_quoted (297 samples, 0.20%)</title><rect x="65.2176%" y="741" width="0.1966%" height="15" fill="rgb(231,199,11)" fg:x="98519" fg:w="297"/><text x="65.4676%" y="751.50"></text></g><g><title>[bash] (297 samples, 0.20%)</title><rect x="65.2176%" y="725" width="0.1966%" height="15" fill="rgb(233,191,18)" fg:x="98519" fg:w="297"/><text x="65.4676%" y="735.50"></text></g><g><title>command_substitute (297 samples, 0.20%)</title><rect x="65.2176%" y="709" width="0.1966%" height="15" fill="rgb(215,83,47)" fg:x="98519" fg:w="297"/><text x="65.4676%" y="719.50"></text></g><g><title>zread (83 samples, 0.05%)</title><rect x="65.3593%" y="693" width="0.0549%" height="15" fill="rgb(251,67,19)" fg:x="98733" fg:w="83"/><text x="65.6093%" y="703.50"></text></g><g><title>__GI___libc_read (83 samples, 0.05%)</title><rect x="65.3593%" y="677" width="0.0549%" height="15" fill="rgb(240,7,20)" fg:x="98733" fg:w="83"/><text x="65.6093%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.05%)</title><rect x="65.3593%" y="661" width="0.0549%" height="15" fill="rgb(210,150,26)" fg:x="98733" fg:w="83"/><text x="65.6093%" y="671.50"></text></g><g><title>execute_command (332 samples, 0.22%)</title><rect x="65.2024%" y="773" width="0.2198%" height="15" fill="rgb(228,75,42)" fg:x="98496" fg:w="332"/><text x="65.4524%" y="783.50"></text></g><g><title>execute_command_internal (332 samples, 0.22%)</title><rect x="65.2024%" y="757" width="0.2198%" height="15" fill="rgb(237,134,48)" fg:x="98496" fg:w="332"/><text x="65.4524%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (74 samples, 0.05%)</title><rect x="65.4526%" y="581" width="0.0490%" height="15" fill="rgb(205,80,50)" fg:x="98874" fg:w="74"/><text x="65.7026%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.05%)</title><rect x="65.4539%" y="565" width="0.0477%" height="15" fill="rgb(217,74,48)" fg:x="98876" fg:w="72"/><text x="65.7039%" y="575.50"></text></g><g><title>native_write_msr (72 samples, 0.05%)</title><rect x="65.4539%" y="549" width="0.0477%" height="15" fill="rgb(205,82,50)" fg:x="98876" fg:w="72"/><text x="65.7039%" y="559.50"></text></g><g><title>arch_fork (98 samples, 0.06%)</title><rect x="65.4374%" y="645" width="0.0649%" height="15" fill="rgb(228,1,33)" fg:x="98851" fg:w="98"/><text x="65.6874%" y="655.50"></text></g><g><title>ret_from_fork (91 samples, 0.06%)</title><rect x="65.4420%" y="629" width="0.0602%" height="15" fill="rgb(214,50,23)" fg:x="98858" fg:w="91"/><text x="65.6920%" y="639.50"></text></g><g><title>schedule_tail (90 samples, 0.06%)</title><rect x="65.4427%" y="613" width="0.0596%" height="15" fill="rgb(210,62,9)" fg:x="98859" fg:w="90"/><text x="65.6927%" y="623.50"></text></g><g><title>finish_task_switch (83 samples, 0.05%)</title><rect x="65.4473%" y="597" width="0.0549%" height="15" fill="rgb(210,104,37)" fg:x="98866" fg:w="83"/><text x="65.6973%" y="607.50"></text></g><g><title>__libc_fork (99 samples, 0.07%)</title><rect x="65.4374%" y="661" width="0.0655%" height="15" fill="rgb(232,104,43)" fg:x="98851" fg:w="99"/><text x="65.6874%" y="671.50"></text></g><g><title>make_child (104 samples, 0.07%)</title><rect x="65.4367%" y="677" width="0.0688%" height="15" fill="rgb(244,52,6)" fg:x="98850" fg:w="104"/><text x="65.6867%" y="687.50"></text></g><g><title>sched_exec (30 samples, 0.02%)</title><rect x="65.5115%" y="469" width="0.0199%" height="15" fill="rgb(211,174,52)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="479.50"></text></g><g><title>stop_one_cpu (30 samples, 0.02%)</title><rect x="65.5115%" y="453" width="0.0199%" height="15" fill="rgb(229,48,4)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="463.50"></text></g><g><title>_cond_resched (30 samples, 0.02%)</title><rect x="65.5115%" y="437" width="0.0199%" height="15" fill="rgb(205,155,16)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="447.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="65.5115%" y="421" width="0.0199%" height="15" fill="rgb(211,141,53)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="431.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="65.5115%" y="405" width="0.0199%" height="15" fill="rgb(240,148,11)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="65.5122%" y="389" width="0.0192%" height="15" fill="rgb(214,45,23)" fg:x="98964" fg:w="29"/><text x="65.7622%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (29 samples, 0.02%)</title><rect x="65.5122%" y="373" width="0.0192%" height="15" fill="rgb(248,74,26)" fg:x="98964" fg:w="29"/><text x="65.7622%" y="383.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="65.5135%" y="357" width="0.0179%" height="15" fill="rgb(218,121,16)" fg:x="98966" fg:w="27"/><text x="65.7635%" y="367.50"></text></g><g><title>__GI_execve (41 samples, 0.03%)</title><rect x="65.5089%" y="565" width="0.0271%" height="15" fill="rgb(218,10,47)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="65.5089%" y="549" width="0.0271%" height="15" fill="rgb(227,99,14)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="559.50"></text></g><g><title>do_syscall_64 (41 samples, 0.03%)</title><rect x="65.5089%" y="533" width="0.0271%" height="15" fill="rgb(229,83,46)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="543.50"></text></g><g><title>__x64_sys_execve (41 samples, 0.03%)</title><rect x="65.5089%" y="517" width="0.0271%" height="15" fill="rgb(228,25,1)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="527.50"></text></g><g><title>do_execveat_common (41 samples, 0.03%)</title><rect x="65.5089%" y="501" width="0.0271%" height="15" fill="rgb(252,190,15)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="511.50"></text></g><g><title>bprm_execve (41 samples, 0.03%)</title><rect x="65.5089%" y="485" width="0.0271%" height="15" fill="rgb(213,103,51)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="495.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="65.5075%" y="597" width="0.0298%" height="15" fill="rgb(220,38,44)" fg:x="98957" fg:w="45"/><text x="65.7575%" y="607.50"></text></g><g><title>shell_execve (43 samples, 0.03%)</title><rect x="65.5089%" y="581" width="0.0285%" height="15" fill="rgb(210,45,26)" fg:x="98959" fg:w="43"/><text x="65.7589%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (114 samples, 0.08%)</title><rect x="65.5638%" y="501" width="0.0755%" height="15" fill="rgb(205,95,48)" fg:x="99042" fg:w="114"/><text x="65.8138%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.07%)</title><rect x="65.5651%" y="485" width="0.0741%" height="15" fill="rgb(225,179,37)" fg:x="99044" fg:w="112"/><text x="65.8151%" y="495.50"></text></g><g><title>native_write_msr (112 samples, 0.07%)</title><rect x="65.5651%" y="469" width="0.0741%" height="15" fill="rgb(230,209,3)" fg:x="99044" fg:w="112"/><text x="65.8151%" y="479.50"></text></g><g><title>arch_fork (146 samples, 0.10%)</title><rect x="65.5459%" y="565" width="0.0966%" height="15" fill="rgb(248,12,46)" fg:x="99015" fg:w="146"/><text x="65.7959%" y="575.50"></text></g><g><title>ret_from_fork (132 samples, 0.09%)</title><rect x="65.5552%" y="549" width="0.0874%" height="15" fill="rgb(234,18,0)" fg:x="99029" fg:w="132"/><text x="65.8052%" y="559.50"></text></g><g><title>schedule_tail (132 samples, 0.09%)</title><rect x="65.5552%" y="533" width="0.0874%" height="15" fill="rgb(238,197,14)" fg:x="99029" fg:w="132"/><text x="65.8052%" y="543.50"></text></g><g><title>finish_task_switch (124 samples, 0.08%)</title><rect x="65.5605%" y="517" width="0.0821%" height="15" fill="rgb(251,162,48)" fg:x="99037" fg:w="124"/><text x="65.8105%" y="527.50"></text></g><g><title>__libc_fork (151 samples, 0.10%)</title><rect x="65.5453%" y="581" width="0.1000%" height="15" fill="rgb(237,73,42)" fg:x="99014" fg:w="151"/><text x="65.7953%" y="591.50"></text></g><g><title>make_child (156 samples, 0.10%)</title><rect x="65.5433%" y="597" width="0.1033%" height="15" fill="rgb(211,108,8)" fg:x="99011" fg:w="156"/><text x="65.7933%" y="607.50"></text></g><g><title>execute_command_internal (223 samples, 0.15%)</title><rect x="65.5056%" y="661" width="0.1476%" height="15" fill="rgb(213,45,22)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="671.50"></text></g><g><title>[bash] (223 samples, 0.15%)</title><rect x="65.5056%" y="645" width="0.1476%" height="15" fill="rgb(252,154,5)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="655.50"></text></g><g><title>[bash] (223 samples, 0.15%)</title><rect x="65.5056%" y="629" width="0.1476%" height="15" fill="rgb(221,79,52)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="639.50"></text></g><g><title>execute_command_internal (223 samples, 0.15%)</title><rect x="65.5056%" y="613" width="0.1476%" height="15" fill="rgb(229,220,36)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="623.50"></text></g><g><title>parse_and_execute (224 samples, 0.15%)</title><rect x="65.5056%" y="677" width="0.1483%" height="15" fill="rgb(211,17,16)" fg:x="98954" fg:w="224"/><text x="65.7556%" y="687.50"></text></g><g><title>command_substitute (341 samples, 0.23%)</title><rect x="65.4308%" y="693" width="0.2257%" height="15" fill="rgb(222,55,31)" fg:x="98841" fg:w="341"/><text x="65.6808%" y="703.50"></text></g><g><title>[bash] (354 samples, 0.23%)</title><rect x="65.4235%" y="709" width="0.2343%" height="15" fill="rgb(221,221,31)" fg:x="98830" fg:w="354"/><text x="65.6735%" y="719.50"></text></g><g><title>[bash] (355 samples, 0.24%)</title><rect x="65.4235%" y="725" width="0.2350%" height="15" fill="rgb(227,168,26)" fg:x="98830" fg:w="355"/><text x="65.6735%" y="735.50"></text></g><g><title>[bash] (357 samples, 0.24%)</title><rect x="65.4235%" y="741" width="0.2363%" height="15" fill="rgb(224,139,9)" fg:x="98830" fg:w="357"/><text x="65.6735%" y="751.50"></text></g><g><title>[bash] (362 samples, 0.24%)</title><rect x="65.4221%" y="757" width="0.2396%" height="15" fill="rgb(254,172,0)" fg:x="98828" fg:w="362"/><text x="65.6721%" y="767.50"></text></g><g><title>expand_words (363 samples, 0.24%)</title><rect x="65.4221%" y="773" width="0.2403%" height="15" fill="rgb(235,203,1)" fg:x="98828" fg:w="363"/><text x="65.6721%" y="783.50"></text></g><g><title>execute_command (1,042 samples, 0.69%)</title><rect x="64.9760%" y="805" width="0.6898%" height="15" fill="rgb(216,205,24)" fg:x="98154" fg:w="1042"/><text x="65.2260%" y="815.50"></text></g><g><title>execute_command_internal (1,041 samples, 0.69%)</title><rect x="64.9766%" y="789" width="0.6891%" height="15" fill="rgb(233,24,6)" fg:x="98155" fg:w="1041"/><text x="65.2266%" y="799.50"></text></g><g><title>[bash] (38 samples, 0.03%)</title><rect x="65.8763%" y="725" width="0.0252%" height="15" fill="rgb(244,110,9)" fg:x="99514" fg:w="38"/><text x="66.1263%" y="735.50"></text></g><g><title>buffered_getchar (56 samples, 0.04%)</title><rect x="65.9021%" y="725" width="0.0371%" height="15" fill="rgb(239,222,42)" fg:x="99553" fg:w="56"/><text x="66.1521%" y="735.50"></text></g><g><title>[bash] (247 samples, 0.16%)</title><rect x="65.7776%" y="741" width="0.1635%" height="15" fill="rgb(218,145,13)" fg:x="99365" fg:w="247"/><text x="66.0276%" y="751.50"></text></g><g><title>alloc_word_desc (16 samples, 0.01%)</title><rect x="65.9524%" y="741" width="0.0106%" height="15" fill="rgb(207,69,11)" fg:x="99629" fg:w="16"/><text x="66.2024%" y="751.50"></text></g><g><title>xmalloc (16 samples, 0.01%)</title><rect x="65.9524%" y="725" width="0.0106%" height="15" fill="rgb(220,223,22)" fg:x="99629" fg:w="16"/><text x="66.2024%" y="735.50"></text></g><g><title>_int_malloc (16 samples, 0.01%)</title><rect x="65.9954%" y="709" width="0.0106%" height="15" fill="rgb(245,102,5)" fg:x="99694" fg:w="16"/><text x="66.2454%" y="719.50"></text></g><g><title>__GI___libc_malloc (26 samples, 0.02%)</title><rect x="65.9895%" y="725" width="0.0172%" height="15" fill="rgb(211,148,2)" fg:x="99685" fg:w="26"/><text x="66.2395%" y="735.50"></text></g><g><title>xmalloc (29 samples, 0.02%)</title><rect x="65.9888%" y="741" width="0.0192%" height="15" fill="rgb(241,13,44)" fg:x="99684" fg:w="29"/><text x="66.2388%" y="751.50"></text></g><g><title>[bash] (453 samples, 0.30%)</title><rect x="65.7088%" y="757" width="0.2999%" height="15" fill="rgb(219,137,21)" fg:x="99261" fg:w="453"/><text x="65.9588%" y="767.50"></text></g><g><title>_int_malloc (16 samples, 0.01%)</title><rect x="66.0206%" y="709" width="0.0106%" height="15" fill="rgb(242,206,5)" fg:x="99732" fg:w="16"/><text x="66.2706%" y="719.50"></text></g><g><title>make_simple_command (23 samples, 0.02%)</title><rect x="66.0173%" y="757" width="0.0152%" height="15" fill="rgb(217,114,22)" fg:x="99727" fg:w="23"/><text x="66.2673%" y="767.50"></text></g><g><title>xmalloc (21 samples, 0.01%)</title><rect x="66.0186%" y="741" width="0.0139%" height="15" fill="rgb(253,206,42)" fg:x="99729" fg:w="21"/><text x="66.2686%" y="751.50"></text></g><g><title>__GI___libc_malloc (21 samples, 0.01%)</title><rect x="66.0186%" y="725" width="0.0139%" height="15" fill="rgb(236,102,18)" fg:x="99729" fg:w="21"/><text x="66.2686%" y="735.50"></text></g><g><title>reader_loop (1,631 samples, 1.08%)</title><rect x="64.9548%" y="821" width="1.0797%" height="15" fill="rgb(208,59,49)" fg:x="98122" fg:w="1631"/><text x="65.2048%" y="831.50"></text></g><g><title>read_command (557 samples, 0.37%)</title><rect x="65.6658%" y="805" width="0.3687%" height="15" fill="rgb(215,194,28)" fg:x="99196" fg:w="557"/><text x="65.9158%" y="815.50"></text></g><g><title>parse_command (557 samples, 0.37%)</title><rect x="65.6658%" y="789" width="0.3687%" height="15" fill="rgb(243,207,11)" fg:x="99196" fg:w="557"/><text x="65.9158%" y="799.50"></text></g><g><title>yyparse (556 samples, 0.37%)</title><rect x="65.6664%" y="773" width="0.3681%" height="15" fill="rgb(254,179,35)" fg:x="99197" fg:w="556"/><text x="65.9164%" y="783.50"></text></g><g><title>__libc_start_main (1,650 samples, 1.09%)</title><rect x="64.9468%" y="853" width="1.0923%" height="15" fill="rgb(235,97,3)" fg:x="98110" fg:w="1650"/><text x="65.1968%" y="863.50"></text></g><g><title>main (1,650 samples, 1.09%)</title><rect x="64.9468%" y="837" width="1.0923%" height="15" fill="rgb(215,155,33)" fg:x="98110" fg:w="1650"/><text x="65.1968%" y="847.50"></text></g><g><title>[ld-2.31.so] (16 samples, 0.01%)</title><rect x="66.0391%" y="805" width="0.0106%" height="15" fill="rgb(223,128,12)" fg:x="99760" fg:w="16"/><text x="66.2891%" y="815.50"></text></g><g><title>_start (1,667 samples, 1.10%)</title><rect x="64.9468%" y="869" width="1.1035%" height="15" fill="rgb(208,157,18)" fg:x="98110" fg:w="1667"/><text x="65.1968%" y="879.50"></text></g><g><title>_dl_start (17 samples, 0.01%)</title><rect x="66.0391%" y="853" width="0.0113%" height="15" fill="rgb(249,70,54)" fg:x="99760" fg:w="17"/><text x="66.2891%" y="863.50"></text></g><g><title>_dl_start_final (17 samples, 0.01%)</title><rect x="66.0391%" y="837" width="0.0113%" height="15" fill="rgb(244,118,24)" fg:x="99760" fg:w="17"/><text x="66.2891%" y="847.50"></text></g><g><title>_dl_sysdep_start (17 samples, 0.01%)</title><rect x="66.0391%" y="821" width="0.0113%" height="15" fill="rgb(211,54,0)" fg:x="99760" fg:w="17"/><text x="66.2891%" y="831.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.02%)</title><rect x="66.0504%" y="869" width="0.0218%" height="15" fill="rgb(245,137,45)" fg:x="99777" fg:w="33"/><text x="66.3004%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="66.0722%" y="869" width="0.0298%" height="15" fill="rgb(232,154,31)" fg:x="99810" fg:w="45"/><text x="66.3222%" y="879.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="66.0729%" y="853" width="0.0291%" height="15" fill="rgb(253,6,39)" fg:x="99811" fg:w="44"/><text x="66.3229%" y="863.50"></text></g><g><title>__x64_sys_exit_group (32 samples, 0.02%)</title><rect x="66.0808%" y="837" width="0.0212%" height="15" fill="rgb(234,183,24)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="847.50"></text></g><g><title>do_group_exit (32 samples, 0.02%)</title><rect x="66.0808%" y="821" width="0.0212%" height="15" fill="rgb(252,84,40)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="831.50"></text></g><g><title>do_exit (32 samples, 0.02%)</title><rect x="66.0808%" y="805" width="0.0212%" height="15" fill="rgb(224,65,2)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="815.50"></text></g><g><title>mmput (32 samples, 0.02%)</title><rect x="66.0808%" y="789" width="0.0212%" height="15" fill="rgb(229,38,24)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="799.50"></text></g><g><title>exit_mmap (32 samples, 0.02%)</title><rect x="66.0808%" y="773" width="0.0212%" height="15" fill="rgb(218,131,50)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="783.50"></text></g><g><title>libtool (2,201 samples, 1.46%)</title><rect x="64.6490%" y="885" width="1.4570%" height="15" fill="rgb(233,106,18)" fg:x="97660" fg:w="2201"/><text x="64.8990%" y="895.50"></text></g><g><title>copy_namespaces (16 samples, 0.01%)</title><rect x="66.1205%" y="741" width="0.0106%" height="15" fill="rgb(220,216,11)" fg:x="99883" fg:w="16"/><text x="66.3705%" y="751.50"></text></g><g><title>create_new_namespaces (16 samples, 0.01%)</title><rect x="66.1205%" y="725" width="0.0106%" height="15" fill="rgb(251,100,45)" fg:x="99883" fg:w="16"/><text x="66.3705%" y="735.50"></text></g><g><title>dup_mm (29 samples, 0.02%)</title><rect x="66.1311%" y="741" width="0.0192%" height="15" fill="rgb(235,143,32)" fg:x="99899" fg:w="29"/><text x="66.3811%" y="751.50"></text></g><g><title>copy_process (60 samples, 0.04%)</title><rect x="66.1159%" y="757" width="0.0397%" height="15" fill="rgb(248,124,34)" fg:x="99876" fg:w="60"/><text x="66.3659%" y="767.50"></text></g><g><title>[unknown] (62 samples, 0.04%)</title><rect x="66.1159%" y="869" width="0.0410%" height="15" fill="rgb(225,221,4)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="879.50"></text></g><g><title>__libc_start_main (62 samples, 0.04%)</title><rect x="66.1159%" y="853" width="0.0410%" height="15" fill="rgb(242,27,43)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="863.50"></text></g><g><title>__GI___clone (62 samples, 0.04%)</title><rect x="66.1159%" y="837" width="0.0410%" height="15" fill="rgb(227,54,8)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="66.1159%" y="821" width="0.0410%" height="15" fill="rgb(253,139,49)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="831.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="66.1159%" y="805" width="0.0410%" height="15" fill="rgb(231,26,43)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="815.50"></text></g><g><title>__do_sys_clone (62 samples, 0.04%)</title><rect x="66.1159%" y="789" width="0.0410%" height="15" fill="rgb(207,121,39)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="799.50"></text></g><g><title>kernel_clone (62 samples, 0.04%)</title><rect x="66.1159%" y="773" width="0.0410%" height="15" fill="rgb(223,101,35)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="783.50"></text></g><g><title>WriteFile (20 samples, 0.01%)</title><rect x="66.1596%" y="837" width="0.0132%" height="15" fill="rgb(232,87,23)" fg:x="99942" fg:w="20"/><text x="66.4096%" y="847.50"></text></g><g><title>__GI___getmntent_r (18 samples, 0.01%)</title><rect x="66.1748%" y="837" width="0.0119%" height="15" fill="rgb(225,180,29)" fg:x="99965" fg:w="18"/><text x="66.4248%" y="847.50"></text></g><g><title>get_mnt_entry (18 samples, 0.01%)</title><rect x="66.1748%" y="821" width="0.0119%" height="15" fill="rgb(225,25,17)" fg:x="99965" fg:w="18"/><text x="66.4248%" y="831.50"></text></g><g><title>schedule (72 samples, 0.05%)</title><rect x="66.1894%" y="757" width="0.0477%" height="15" fill="rgb(223,8,52)" fg:x="99987" fg:w="72"/><text x="66.4394%" y="767.50"></text></g><g><title>__schedule (72 samples, 0.05%)</title><rect x="66.1894%" y="741" width="0.0477%" height="15" fill="rgb(246,42,21)" fg:x="99987" fg:w="72"/><text x="66.4394%" y="751.50"></text></g><g><title>finish_task_switch (72 samples, 0.05%)</title><rect x="66.1894%" y="725" width="0.0477%" height="15" fill="rgb(205,64,43)" fg:x="99987" fg:w="72"/><text x="66.4394%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.04%)</title><rect x="66.1947%" y="709" width="0.0424%" height="15" fill="rgb(221,160,13)" fg:x="99995" fg:w="64"/><text x="66.4447%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.04%)</title><rect x="66.1967%" y="693" width="0.0404%" height="15" fill="rgb(239,58,35)" fg:x="99998" fg:w="61"/><text x="66.4467%" y="703.50"></text></g><g><title>native_write_msr (61 samples, 0.04%)</title><rect x="66.1967%" y="677" width="0.0404%" height="15" fill="rgb(251,26,40)" fg:x="99998" fg:w="61"/><text x="66.4467%" y="687.50"></text></g><g><title>__GI___wait4 (86 samples, 0.06%)</title><rect x="66.1881%" y="837" width="0.0569%" height="15" fill="rgb(247,0,4)" fg:x="99985" fg:w="86"/><text x="66.4381%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.06%)</title><rect x="66.1887%" y="821" width="0.0563%" height="15" fill="rgb(218,130,10)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="831.50"></text></g><g><title>do_syscall_64 (85 samples, 0.06%)</title><rect x="66.1887%" y="805" width="0.0563%" height="15" fill="rgb(239,32,7)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="815.50"></text></g><g><title>kernel_wait4 (85 samples, 0.06%)</title><rect x="66.1887%" y="789" width="0.0563%" height="15" fill="rgb(210,192,24)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="799.50"></text></g><g><title>do_wait (85 samples, 0.06%)</title><rect x="66.1887%" y="773" width="0.0563%" height="15" fill="rgb(226,212,17)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="783.50"></text></g><g><title>do_open_execat (28 samples, 0.02%)</title><rect x="66.2609%" y="725" width="0.0185%" height="15" fill="rgb(219,201,28)" fg:x="100095" fg:w="28"/><text x="66.5109%" y="735.50"></text></g><g><title>do_filp_open (28 samples, 0.02%)</title><rect x="66.2609%" y="709" width="0.0185%" height="15" fill="rgb(235,207,41)" fg:x="100095" fg:w="28"/><text x="66.5109%" y="719.50"></text></g><g><title>path_openat (28 samples, 0.02%)</title><rect x="66.2609%" y="693" width="0.0185%" height="15" fill="rgb(241,95,54)" fg:x="100095" fg:w="28"/><text x="66.5109%" y="703.50"></text></g><g><title>step_into (20 samples, 0.01%)</title><rect x="66.2662%" y="677" width="0.0132%" height="15" fill="rgb(248,12,23)" fg:x="100103" fg:w="20"/><text x="66.5162%" y="687.50"></text></g><g><title>bprm_execve (51 samples, 0.03%)</title><rect x="66.2609%" y="741" width="0.0338%" height="15" fill="rgb(228,173,4)" fg:x="100095" fg:w="51"/><text x="66.5109%" y="751.50"></text></g><g><title>do_execveat_common (69 samples, 0.05%)</title><rect x="66.2569%" y="757" width="0.0457%" height="15" fill="rgb(254,99,5)" fg:x="100089" fg:w="69"/><text x="66.5069%" y="767.50"></text></g><g><title>__execvpe_common (72 samples, 0.05%)</title><rect x="66.2556%" y="837" width="0.0477%" height="15" fill="rgb(212,184,17)" fg:x="100087" fg:w="72"/><text x="66.5056%" y="847.50"></text></g><g><title>__GI_execve (70 samples, 0.05%)</title><rect x="66.2569%" y="821" width="0.0463%" height="15" fill="rgb(252,174,1)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="66.2569%" y="805" width="0.0463%" height="15" fill="rgb(241,118,51)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="66.2569%" y="789" width="0.0463%" height="15" fill="rgb(227,94,47)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="799.50"></text></g><g><title>__x64_sys_execve (70 samples, 0.05%)</title><rect x="66.2569%" y="773" width="0.0463%" height="15" fill="rgb(229,104,2)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="783.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="66.3092%" y="757" width="0.0146%" height="15" fill="rgb(219,28,31)" fg:x="100168" fg:w="22"/><text x="66.5592%" y="767.50"></text></g><g><title>filemap_map_pages (17 samples, 0.01%)</title><rect x="66.3125%" y="741" width="0.0113%" height="15" fill="rgb(233,109,36)" fg:x="100173" fg:w="17"/><text x="66.5625%" y="751.50"></text></g><g><title>asm_exc_page_fault (27 samples, 0.02%)</title><rect x="66.3065%" y="805" width="0.0179%" height="15" fill="rgb(246,88,11)" fg:x="100164" fg:w="27"/><text x="66.5565%" y="815.50"></text></g><g><title>exc_page_fault (27 samples, 0.02%)</title><rect x="66.3065%" y="789" width="0.0179%" height="15" fill="rgb(209,212,17)" fg:x="100164" fg:w="27"/><text x="66.5565%" y="799.50"></text></g><g><title>do_user_addr_fault (27 samples, 0.02%)</title><rect x="66.3065%" y="773" width="0.0179%" height="15" fill="rgb(243,59,29)" fg:x="100164" fg:w="27"/><text x="66.5565%" y="783.50"></text></g><g><title>dup_mm (26 samples, 0.02%)</title><rect x="66.3257%" y="725" width="0.0172%" height="15" fill="rgb(244,205,48)" fg:x="100193" fg:w="26"/><text x="66.5757%" y="735.50"></text></g><g><title>copy_process (32 samples, 0.02%)</title><rect x="66.3244%" y="741" width="0.0212%" height="15" fill="rgb(227,30,6)" fg:x="100191" fg:w="32"/><text x="66.5744%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="66.3244%" y="805" width="0.0218%" height="15" fill="rgb(220,205,48)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="815.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="66.3244%" y="789" width="0.0218%" height="15" fill="rgb(250,94,14)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="799.50"></text></g><g><title>__do_sys_clone (33 samples, 0.02%)</title><rect x="66.3244%" y="773" width="0.0218%" height="15" fill="rgb(216,119,42)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="783.50"></text></g><g><title>kernel_clone (33 samples, 0.02%)</title><rect x="66.3244%" y="757" width="0.0218%" height="15" fill="rgb(232,155,0)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="767.50"></text></g><g><title>__put_user_nocheck_4 (43 samples, 0.03%)</title><rect x="66.3469%" y="773" width="0.0285%" height="15" fill="rgb(212,24,32)" fg:x="100225" fg:w="43"/><text x="66.5969%" y="783.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.03%)</title><rect x="66.3476%" y="757" width="0.0278%" height="15" fill="rgb(216,69,20)" fg:x="100226" fg:w="42"/><text x="66.5976%" y="767.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="66.3628%" y="741" width="0.0126%" height="15" fill="rgb(229,73,31)" fg:x="100249" fg:w="19"/><text x="66.6128%" y="751.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="66.3628%" y="725" width="0.0126%" height="15" fill="rgb(224,219,20)" fg:x="100249" fg:w="19"/><text x="66.6128%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (353 samples, 0.23%)</title><rect x="66.3959%" y="757" width="0.2337%" height="15" fill="rgb(215,146,41)" fg:x="100299" fg:w="353"/><text x="66.6459%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (351 samples, 0.23%)</title><rect x="66.3972%" y="741" width="0.2324%" height="15" fill="rgb(244,71,31)" fg:x="100301" fg:w="351"/><text x="66.6472%" y="751.50"></text></g><g><title>native_write_msr (350 samples, 0.23%)</title><rect x="66.3979%" y="725" width="0.2317%" height="15" fill="rgb(224,24,11)" fg:x="100302" fg:w="350"/><text x="66.6479%" y="735.50"></text></g><g><title>schedule_tail (436 samples, 0.29%)</title><rect x="66.3469%" y="789" width="0.2886%" height="15" fill="rgb(229,76,15)" fg:x="100225" fg:w="436"/><text x="66.5969%" y="799.50"></text></g><g><title>finish_task_switch (384 samples, 0.25%)</title><rect x="66.3814%" y="773" width="0.2542%" height="15" fill="rgb(209,93,2)" fg:x="100277" fg:w="384"/><text x="66.6314%" y="783.50"></text></g><g><title>arch_fork (505 samples, 0.33%)</title><rect x="66.3046%" y="821" width="0.3343%" height="15" fill="rgb(216,200,50)" fg:x="100161" fg:w="505"/><text x="66.5546%" y="831.50"></text></g><g><title>ret_from_fork (442 samples, 0.29%)</title><rect x="66.3463%" y="805" width="0.2926%" height="15" fill="rgb(211,67,34)" fg:x="100224" fg:w="442"/><text x="66.5963%" y="815.50"></text></g><g><title>__libc_fork (511 samples, 0.34%)</title><rect x="66.3032%" y="837" width="0.3383%" height="15" fill="rgb(225,87,47)" fg:x="100159" fg:w="511"/><text x="66.5532%" y="847.50"></text></g><g><title>__memcg_init_list_lru_node (21 samples, 0.01%)</title><rect x="66.6627%" y="677" width="0.0139%" height="15" fill="rgb(217,185,16)" fg:x="100702" fg:w="21"/><text x="66.9127%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (20 samples, 0.01%)</title><rect x="66.6634%" y="661" width="0.0132%" height="15" fill="rgb(205,0,0)" fg:x="100703" fg:w="20"/><text x="66.9134%" y="671.50"></text></g><g><title>__list_lru_init (24 samples, 0.02%)</title><rect x="66.6614%" y="693" width="0.0159%" height="15" fill="rgb(207,116,45)" fg:x="100700" fg:w="24"/><text x="66.9114%" y="703.50"></text></g><g><title>alloc_super (27 samples, 0.02%)</title><rect x="66.6614%" y="709" width="0.0179%" height="15" fill="rgb(221,156,26)" fg:x="100700" fg:w="27"/><text x="66.9114%" y="719.50"></text></g><g><title>vfs_get_tree (37 samples, 0.02%)</title><rect x="66.6567%" y="757" width="0.0245%" height="15" fill="rgb(213,140,4)" fg:x="100693" fg:w="37"/><text x="66.9067%" y="767.50"></text></g><g><title>get_tree_nodev (37 samples, 0.02%)</title><rect x="66.6567%" y="741" width="0.0245%" height="15" fill="rgb(231,224,15)" fg:x="100693" fg:w="37"/><text x="66.9067%" y="751.50"></text></g><g><title>sget_fc (31 samples, 0.02%)</title><rect x="66.6607%" y="725" width="0.0205%" height="15" fill="rgb(244,76,20)" fg:x="100699" fg:w="31"/><text x="66.9107%" y="735.50"></text></g><g><title>path_mount (47 samples, 0.03%)</title><rect x="66.6508%" y="773" width="0.0311%" height="15" fill="rgb(238,117,7)" fg:x="100684" fg:w="47"/><text x="66.9008%" y="783.50"></text></g><g><title>__mount (60 samples, 0.04%)</title><rect x="66.6442%" y="837" width="0.0397%" height="15" fill="rgb(235,1,10)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="66.6442%" y="821" width="0.0397%" height="15" fill="rgb(216,165,6)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="831.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="66.6442%" y="805" width="0.0397%" height="15" fill="rgb(246,91,35)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="815.50"></text></g><g><title>__x64_sys_mount (60 samples, 0.04%)</title><rect x="66.6442%" y="789" width="0.0397%" height="15" fill="rgb(228,96,24)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="799.50"></text></g><g><title>std::string::_S_construct<char const*> (20 samples, 0.01%)</title><rect x="66.6905%" y="837" width="0.0132%" height="15" fill="rgb(254,217,53)" fg:x="100744" fg:w="20"/><text x="66.9405%" y="847.50"></text></g><g><title>std::string::_Rep::_S_create (19 samples, 0.01%)</title><rect x="66.6912%" y="821" width="0.0126%" height="15" fill="rgb(209,60,0)" fg:x="100745" fg:w="19"/><text x="66.9412%" y="831.50"></text></g><g><title>Pid1Main (831 samples, 0.55%)</title><rect x="66.1576%" y="853" width="0.5501%" height="15" fill="rgb(250,93,26)" fg:x="99939" fg:w="831"/><text x="66.4076%" y="863.50"></text></g><g><title>filemap_map_pages (22 samples, 0.01%)</title><rect x="66.7176%" y="789" width="0.0146%" height="15" fill="rgb(211,9,40)" fg:x="100785" fg:w="22"/><text x="66.9676%" y="799.50"></text></g><g><title>handle_mm_fault (48 samples, 0.03%)</title><rect x="66.7117%" y="805" width="0.0318%" height="15" fill="rgb(242,57,20)" fg:x="100776" fg:w="48"/><text x="66.9617%" y="815.50"></text></g><g><title>wp_page_copy (17 samples, 0.01%)</title><rect x="66.7322%" y="789" width="0.0113%" height="15" fill="rgb(248,85,48)" fg:x="100807" fg:w="17"/><text x="66.9822%" y="799.50"></text></g><g><title>alloc_pages_vma (17 samples, 0.01%)</title><rect x="66.7322%" y="773" width="0.0113%" height="15" fill="rgb(212,117,2)" fg:x="100807" fg:w="17"/><text x="66.9822%" y="783.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.04%)</title><rect x="66.7077%" y="853" width="0.0364%" height="15" fill="rgb(243,19,3)" fg:x="100770" fg:w="55"/><text x="66.9577%" y="863.50"></text></g><g><title>exc_page_fault (55 samples, 0.04%)</title><rect x="66.7077%" y="837" width="0.0364%" height="15" fill="rgb(232,217,24)" fg:x="100770" fg:w="55"/><text x="66.9577%" y="847.50"></text></g><g><title>do_user_addr_fault (55 samples, 0.04%)</title><rect x="66.7077%" y="821" width="0.0364%" height="15" fill="rgb(224,175,40)" fg:x="100770" fg:w="55"/><text x="66.9577%" y="831.50"></text></g><g><title>calculate_sigpending (23 samples, 0.02%)</title><rect x="66.7461%" y="837" width="0.0152%" height="15" fill="rgb(212,162,32)" fg:x="100828" fg:w="23"/><text x="66.9961%" y="847.50"></text></g><g><title>_raw_spin_lock_irq (19 samples, 0.01%)</title><rect x="66.7488%" y="821" width="0.0126%" height="15" fill="rgb(215,9,4)" fg:x="100832" fg:w="19"/><text x="66.9988%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (366 samples, 0.24%)</title><rect x="66.7819%" y="805" width="0.2423%" height="15" fill="rgb(242,42,7)" fg:x="100882" fg:w="366"/><text x="67.0319%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (358 samples, 0.24%)</title><rect x="66.7871%" y="789" width="0.2370%" height="15" fill="rgb(242,184,45)" fg:x="100890" fg:w="358"/><text x="67.0371%" y="799.50"></text></g><g><title>native_write_msr (358 samples, 0.24%)</title><rect x="66.7871%" y="773" width="0.2370%" height="15" fill="rgb(228,111,51)" fg:x="100890" fg:w="358"/><text x="67.0371%" y="783.50"></text></g><g><title>schedule_tail (407 samples, 0.27%)</title><rect x="66.7613%" y="837" width="0.2694%" height="15" fill="rgb(236,147,17)" fg:x="100851" fg:w="407"/><text x="67.0113%" y="847.50"></text></g><g><title>finish_task_switch (406 samples, 0.27%)</title><rect x="66.7620%" y="821" width="0.2688%" height="15" fill="rgb(210,75,22)" fg:x="100852" fg:w="406"/><text x="67.0120%" y="831.50"></text></g><g><title>__GI___clone (1,322 samples, 0.88%)</title><rect x="66.1569%" y="869" width="0.8751%" height="15" fill="rgb(217,159,45)" fg:x="99938" fg:w="1322"/><text x="66.4069%" y="879.50"></text></g><g><title>ret_from_fork (432 samples, 0.29%)</title><rect x="66.7461%" y="853" width="0.2860%" height="15" fill="rgb(245,165,53)" fg:x="100828" fg:w="432"/><text x="66.9961%" y="863.50"></text></g><g><title>_dl_start_user (18 samples, 0.01%)</title><rect x="67.0327%" y="869" width="0.0119%" height="15" fill="rgb(251,190,50)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="879.50"></text></g><g><title>_dl_init (18 samples, 0.01%)</title><rect x="67.0327%" y="853" width="0.0119%" height="15" fill="rgb(208,203,29)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="863.50"></text></g><g><title>call_init (18 samples, 0.01%)</title><rect x="67.0327%" y="837" width="0.0119%" height="15" fill="rgb(207,209,35)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="847.50"></text></g><g><title>call_init (18 samples, 0.01%)</title><rect x="67.0327%" y="821" width="0.0119%" height="15" fill="rgb(230,144,49)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="831.50"></text></g><g><title>__GI_exit (16 samples, 0.01%)</title><rect x="67.0480%" y="837" width="0.0106%" height="15" fill="rgb(229,31,6)" fg:x="101284" fg:w="16"/><text x="67.2980%" y="847.50"></text></g><g><title>__run_exit_handlers (16 samples, 0.01%)</title><rect x="67.0480%" y="821" width="0.0106%" height="15" fill="rgb(251,129,24)" fg:x="101284" fg:w="16"/><text x="67.2980%" y="831.50"></text></g><g><title>alloc_pages_vma (27 samples, 0.02%)</title><rect x="67.0963%" y="741" width="0.0179%" height="15" fill="rgb(235,105,15)" fg:x="101357" fg:w="27"/><text x="67.3463%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (25 samples, 0.02%)</title><rect x="67.0976%" y="725" width="0.0165%" height="15" fill="rgb(216,52,43)" fg:x="101359" fg:w="25"/><text x="67.3476%" y="735.50"></text></g><g><title>get_page_from_freelist (22 samples, 0.01%)</title><rect x="67.0996%" y="709" width="0.0146%" height="15" fill="rgb(238,144,41)" fg:x="101362" fg:w="22"/><text x="67.3496%" y="719.50"></text></g><g><title>handle_mm_fault (54 samples, 0.04%)</title><rect x="67.0897%" y="757" width="0.0357%" height="15" fill="rgb(243,63,9)" fg:x="101347" fg:w="54"/><text x="67.3397%" y="767.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.04%)</title><rect x="67.0850%" y="805" width="0.0410%" height="15" fill="rgb(246,208,1)" fg:x="101340" fg:w="62"/><text x="67.3350%" y="815.50"></text></g><g><title>exc_page_fault (59 samples, 0.04%)</title><rect x="67.0870%" y="789" width="0.0391%" height="15" fill="rgb(233,182,18)" fg:x="101343" fg:w="59"/><text x="67.3370%" y="799.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.04%)</title><rect x="67.0877%" y="773" width="0.0384%" height="15" fill="rgb(242,224,8)" fg:x="101344" fg:w="58"/><text x="67.3377%" y="783.50"></text></g><g><title>[libc-2.31.so] (83 samples, 0.05%)</title><rect x="67.0764%" y="821" width="0.0549%" height="15" fill="rgb(243,54,37)" fg:x="101327" fg:w="83"/><text x="67.3264%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="67.1340%" y="677" width="0.0165%" height="15" fill="rgb(233,192,12)" fg:x="101414" fg:w="25"/><text x="67.3840%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="67.1347%" y="661" width="0.0159%" height="15" fill="rgb(251,192,53)" fg:x="101415" fg:w="24"/><text x="67.3847%" y="671.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="67.1347%" y="645" width="0.0159%" height="15" fill="rgb(246,141,26)" fg:x="101415" fg:w="24"/><text x="67.3847%" y="655.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="67.1340%" y="725" width="0.0172%" height="15" fill="rgb(239,195,19)" fg:x="101414" fg:w="26"/><text x="67.3840%" y="735.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="67.1340%" y="709" width="0.0172%" height="15" fill="rgb(241,16,39)" fg:x="101414" fg:w="26"/><text x="67.3840%" y="719.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="67.1340%" y="693" width="0.0172%" height="15" fill="rgb(223,13,53)" fg:x="101414" fg:w="26"/><text x="67.3840%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="67.1340%" y="805" width="0.0199%" height="15" fill="rgb(214,227,0)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="815.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="67.1340%" y="789" width="0.0199%" height="15" fill="rgb(228,103,26)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="799.50"></text></g><g><title>__do_sys_wait4 (30 samples, 0.02%)</title><rect x="67.1340%" y="773" width="0.0199%" height="15" fill="rgb(254,177,53)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="783.50"></text></g><g><title>kernel_wait4 (30 samples, 0.02%)</title><rect x="67.1340%" y="757" width="0.0199%" height="15" fill="rgb(208,201,34)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="767.50"></text></g><g><title>do_wait (30 samples, 0.02%)</title><rect x="67.1340%" y="741" width="0.0199%" height="15" fill="rgb(212,39,5)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="751.50"></text></g><g><title>__GI___wait4 (31 samples, 0.02%)</title><rect x="67.1340%" y="821" width="0.0205%" height="15" fill="rgb(246,117,3)" fg:x="101414" fg:w="31"/><text x="67.3840%" y="831.50"></text></g><g><title>__libc_start_main (181 samples, 0.12%)</title><rect x="67.0480%" y="853" width="0.1198%" height="15" fill="rgb(244,118,39)" fg:x="101284" fg:w="181"/><text x="67.2980%" y="863.50"></text></g><g><title>main (151 samples, 0.10%)</title><rect x="67.0678%" y="837" width="0.1000%" height="15" fill="rgb(241,64,10)" fg:x="101314" fg:w="151"/><text x="67.3178%" y="847.50"></text></g><g><title>__split_vma (16 samples, 0.01%)</title><rect x="67.1784%" y="549" width="0.0106%" height="15" fill="rgb(229,39,44)" fg:x="101481" fg:w="16"/><text x="67.4284%" y="559.50"></text></g><g><title>__do_munmap (24 samples, 0.02%)</title><rect x="67.1777%" y="565" width="0.0159%" height="15" fill="rgb(230,226,3)" fg:x="101480" fg:w="24"/><text x="67.4277%" y="575.50"></text></g><g><title>mmap_region (43 samples, 0.03%)</title><rect x="67.1777%" y="581" width="0.0285%" height="15" fill="rgb(222,13,42)" fg:x="101480" fg:w="43"/><text x="67.4277%" y="591.50"></text></g><g><title>do_mmap (44 samples, 0.03%)</title><rect x="67.1777%" y="597" width="0.0291%" height="15" fill="rgb(247,180,54)" fg:x="101480" fg:w="44"/><text x="67.4277%" y="607.50"></text></g><g><title>ksys_mmap_pgoff (45 samples, 0.03%)</title><rect x="67.1777%" y="629" width="0.0298%" height="15" fill="rgb(205,96,16)" fg:x="101480" fg:w="45"/><text x="67.4277%" y="639.50"></text></g><g><title>vm_mmap_pgoff (45 samples, 0.03%)</title><rect x="67.1777%" y="613" width="0.0298%" height="15" fill="rgb(205,100,21)" fg:x="101480" fg:w="45"/><text x="67.4277%" y="623.50"></text></g><g><title>_dl_map_segments (61 samples, 0.04%)</title><rect x="67.1718%" y="709" width="0.0404%" height="15" fill="rgb(248,51,4)" fg:x="101471" fg:w="61"/><text x="67.4218%" y="719.50"></text></g><g><title>__mmap64 (53 samples, 0.04%)</title><rect x="67.1771%" y="693" width="0.0351%" height="15" fill="rgb(217,197,30)" fg:x="101479" fg:w="53"/><text x="67.4271%" y="703.50"></text></g><g><title>__mmap64 (53 samples, 0.04%)</title><rect x="67.1771%" y="677" width="0.0351%" height="15" fill="rgb(240,179,40)" fg:x="101479" fg:w="53"/><text x="67.4271%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.03%)</title><rect x="67.1777%" y="661" width="0.0344%" height="15" fill="rgb(212,185,35)" fg:x="101480" fg:w="52"/><text x="67.4277%" y="671.50"></text></g><g><title>do_syscall_64 (52 samples, 0.03%)</title><rect x="67.1777%" y="645" width="0.0344%" height="15" fill="rgb(251,222,31)" fg:x="101480" fg:w="52"/><text x="67.4277%" y="655.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="693" width="0.0113%" height="15" fill="rgb(208,140,36)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="703.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="677" width="0.0113%" height="15" fill="rgb(220,148,1)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="687.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="661" width="0.0113%" height="15" fill="rgb(254,4,28)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="671.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="645" width="0.0113%" height="15" fill="rgb(222,185,44)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (89 samples, 0.06%)</title><rect x="67.1704%" y="725" width="0.0589%" height="15" fill="rgb(215,74,39)" fg:x="101469" fg:w="89"/><text x="67.4204%" y="735.50"></text></g><g><title>elf_get_dynamic_info (19 samples, 0.01%)</title><rect x="67.2168%" y="709" width="0.0126%" height="15" fill="rgb(247,86,4)" fg:x="101539" fg:w="19"/><text x="67.4668%" y="719.50"></text></g><g><title>_dl_map_object_deps (101 samples, 0.07%)</title><rect x="67.1684%" y="789" width="0.0669%" height="15" fill="rgb(231,105,32)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="799.50"></text></g><g><title>_dl_catch_exception (101 samples, 0.07%)</title><rect x="67.1684%" y="773" width="0.0669%" height="15" fill="rgb(222,65,35)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="783.50"></text></g><g><title>openaux (101 samples, 0.07%)</title><rect x="67.1684%" y="757" width="0.0669%" height="15" fill="rgb(218,145,35)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="767.50"></text></g><g><title>_dl_map_object (101 samples, 0.07%)</title><rect x="67.1684%" y="741" width="0.0669%" height="15" fill="rgb(208,7,15)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="751.50"></text></g><g><title>dl_new_hash (45 samples, 0.03%)</title><rect x="67.2724%" y="725" width="0.0298%" height="15" fill="rgb(209,83,13)" fg:x="101623" fg:w="45"/><text x="67.5224%" y="735.50"></text></g><g><title>check_match (21 samples, 0.01%)</title><rect x="67.3425%" y="709" width="0.0139%" height="15" fill="rgb(218,3,10)" fg:x="101729" fg:w="21"/><text x="67.5925%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (134 samples, 0.09%)</title><rect x="67.2704%" y="741" width="0.0887%" height="15" fill="rgb(211,219,4)" fg:x="101620" fg:w="134"/><text x="67.5204%" y="751.50"></text></g><g><title>do_lookup_x (86 samples, 0.06%)</title><rect x="67.3022%" y="725" width="0.0569%" height="15" fill="rgb(228,194,12)" fg:x="101668" fg:w="86"/><text x="67.5522%" y="735.50"></text></g><g><title>elf_machine_rela (162 samples, 0.11%)</title><rect x="67.2538%" y="757" width="0.1072%" height="15" fill="rgb(210,175,7)" fg:x="101595" fg:w="162"/><text x="67.5038%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (175 samples, 0.12%)</title><rect x="67.2472%" y="773" width="0.1158%" height="15" fill="rgb(243,132,6)" fg:x="101585" fg:w="175"/><text x="67.4972%" y="783.50"></text></g><g><title>[ld-2.31.so] (297 samples, 0.20%)</title><rect x="67.1678%" y="805" width="0.1966%" height="15" fill="rgb(207,72,18)" fg:x="101465" fg:w="297"/><text x="67.4178%" y="815.50"></text></g><g><title>_dl_relocate_object (189 samples, 0.13%)</title><rect x="67.2393%" y="789" width="0.1251%" height="15" fill="rgb(236,1,18)" fg:x="101573" fg:w="189"/><text x="67.4893%" y="799.50"></text></g><g><title>_dl_start (298 samples, 0.20%)</title><rect x="67.1678%" y="853" width="0.1973%" height="15" fill="rgb(227,0,18)" fg:x="101465" fg:w="298"/><text x="67.4178%" y="863.50"></text></g><g><title>_dl_start_final (298 samples, 0.20%)</title><rect x="67.1678%" y="837" width="0.1973%" height="15" fill="rgb(247,37,5)" fg:x="101465" fg:w="298"/><text x="67.4178%" y="847.50"></text></g><g><title>_dl_sysdep_start (298 samples, 0.20%)</title><rect x="67.1678%" y="821" width="0.1973%" height="15" fill="rgb(237,179,24)" fg:x="101465" fg:w="298"/><text x="67.4178%" y="831.50"></text></g><g><title>_start (480 samples, 0.32%)</title><rect x="67.0480%" y="869" width="0.3178%" height="15" fill="rgb(226,53,20)" fg:x="101284" fg:w="480"/><text x="67.2980%" y="879.50"></text></g><g><title>asm_exc_page_fault (92 samples, 0.06%)</title><rect x="67.3657%" y="869" width="0.0609%" height="15" fill="rgb(247,75,7)" fg:x="101764" fg:w="92"/><text x="67.6157%" y="879.50"></text></g><g><title>mmput (33 samples, 0.02%)</title><rect x="67.4372%" y="805" width="0.0218%" height="15" fill="rgb(233,96,12)" fg:x="101872" fg:w="33"/><text x="67.6872%" y="815.50"></text></g><g><title>exit_mmap (33 samples, 0.02%)</title><rect x="67.4372%" y="789" width="0.0218%" height="15" fill="rgb(224,125,0)" fg:x="101872" fg:w="33"/><text x="67.6872%" y="799.50"></text></g><g><title>unmap_vmas (21 samples, 0.01%)</title><rect x="67.4452%" y="773" width="0.0139%" height="15" fill="rgb(224,92,25)" fg:x="101884" fg:w="21"/><text x="67.6952%" y="783.50"></text></g><g><title>unmap_page_range (21 samples, 0.01%)</title><rect x="67.4452%" y="757" width="0.0139%" height="15" fill="rgb(224,42,24)" fg:x="101884" fg:w="21"/><text x="67.6952%" y="767.50"></text></g><g><title>__x64_sys_exit (54 samples, 0.04%)</title><rect x="67.4346%" y="837" width="0.0357%" height="15" fill="rgb(234,132,49)" fg:x="101868" fg:w="54"/><text x="67.6846%" y="847.50"></text></g><g><title>do_exit (54 samples, 0.04%)</title><rect x="67.4346%" y="821" width="0.0357%" height="15" fill="rgb(248,100,35)" fg:x="101868" fg:w="54"/><text x="67.6846%" y="831.50"></text></g><g><title>task_work_run (17 samples, 0.01%)</title><rect x="67.4591%" y="805" width="0.0113%" height="15" fill="rgb(239,94,40)" fg:x="101905" fg:w="17"/><text x="67.7091%" y="815.50"></text></g><g><title>cleanup_mnt (17 samples, 0.01%)</title><rect x="67.4591%" y="789" width="0.0113%" height="15" fill="rgb(235,139,28)" fg:x="101905" fg:w="17"/><text x="67.7091%" y="799.50"></text></g><g><title>mmput (32 samples, 0.02%)</title><rect x="67.4710%" y="789" width="0.0212%" height="15" fill="rgb(217,144,7)" fg:x="101923" fg:w="32"/><text x="67.7210%" y="799.50"></text></g><g><title>exit_mmap (32 samples, 0.02%)</title><rect x="67.4710%" y="773" width="0.0212%" height="15" fill="rgb(227,55,4)" fg:x="101923" fg:w="32"/><text x="67.7210%" y="783.50"></text></g><g><title>__x64_sys_exit_group (35 samples, 0.02%)</title><rect x="67.4703%" y="837" width="0.0232%" height="15" fill="rgb(252,82,54)" fg:x="101922" fg:w="35"/><text x="67.7203%" y="847.50"></text></g><g><title>do_group_exit (35 samples, 0.02%)</title><rect x="67.4703%" y="821" width="0.0232%" height="15" fill="rgb(245,172,4)" fg:x="101922" fg:w="35"/><text x="67.7203%" y="831.50"></text></g><g><title>do_exit (35 samples, 0.02%)</title><rect x="67.4703%" y="805" width="0.0232%" height="15" fill="rgb(207,26,27)" fg:x="101922" fg:w="35"/><text x="67.7203%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106 samples, 0.07%)</title><rect x="67.4266%" y="869" width="0.0702%" height="15" fill="rgb(252,98,18)" fg:x="101856" fg:w="106"/><text x="67.6766%" y="879.50"></text></g><g><title>do_syscall_64 (106 samples, 0.07%)</title><rect x="67.4266%" y="853" width="0.0702%" height="15" fill="rgb(244,8,26)" fg:x="101856" fg:w="106"/><text x="67.6766%" y="863.50"></text></g><g><title>linux-sandbox (2,113 samples, 1.40%)</title><rect x="66.1060%" y="885" width="1.3988%" height="15" fill="rgb(237,173,45)" fg:x="99861" fg:w="2113"/><text x="66.3560%" y="895.50"></text></g><g><title>arch_fork (71 samples, 0.05%)</title><rect x="67.5239%" y="773" width="0.0470%" height="15" fill="rgb(208,213,49)" fg:x="102003" fg:w="71"/><text x="67.7739%" y="783.50"></text></g><g><title>ret_from_fork (64 samples, 0.04%)</title><rect x="67.5286%" y="757" width="0.0424%" height="15" fill="rgb(212,122,37)" fg:x="102010" fg:w="64"/><text x="67.7786%" y="767.50"></text></g><g><title>schedule_tail (64 samples, 0.04%)</title><rect x="67.5286%" y="741" width="0.0424%" height="15" fill="rgb(213,80,17)" fg:x="102010" fg:w="64"/><text x="67.7786%" y="751.50"></text></g><g><title>finish_task_switch (56 samples, 0.04%)</title><rect x="67.5339%" y="725" width="0.0371%" height="15" fill="rgb(206,210,43)" fg:x="102018" fg:w="56"/><text x="67.7839%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.04%)</title><rect x="67.5345%" y="709" width="0.0364%" height="15" fill="rgb(229,214,3)" fg:x="102019" fg:w="55"/><text x="67.7845%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.04%)</title><rect x="67.5345%" y="693" width="0.0364%" height="15" fill="rgb(235,213,29)" fg:x="102019" fg:w="55"/><text x="67.7845%" y="703.50"></text></g><g><title>native_write_msr (55 samples, 0.04%)</title><rect x="67.5345%" y="677" width="0.0364%" height="15" fill="rgb(248,135,26)" fg:x="102019" fg:w="55"/><text x="67.7845%" y="687.50"></text></g><g><title>__libc_fork (74 samples, 0.05%)</title><rect x="67.5233%" y="789" width="0.0490%" height="15" fill="rgb(242,188,12)" fg:x="102002" fg:w="74"/><text x="67.7733%" y="799.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (85 samples, 0.06%)</title><rect x="67.5200%" y="821" width="0.0563%" height="15" fill="rgb(245,38,12)" fg:x="101997" fg:w="85"/><text x="67.7700%" y="831.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (85 samples, 0.06%)</title><rect x="67.5200%" y="805" width="0.0563%" height="15" fill="rgb(218,42,13)" fg:x="101997" fg:w="85"/><text x="67.7700%" y="815.50"></text></g><g><title>WaitChild (16 samples, 0.01%)</title><rect x="67.5762%" y="805" width="0.0106%" height="15" fill="rgb(238,132,49)" fg:x="102082" fg:w="16"/><text x="67.8262%" y="815.50"></text></g><g><title>__GI___wait4 (16 samples, 0.01%)</title><rect x="67.5762%" y="789" width="0.0106%" height="15" fill="rgb(209,196,19)" fg:x="102082" fg:w="16"/><text x="67.8262%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="67.5762%" y="773" width="0.0106%" height="15" fill="rgb(244,131,22)" fg:x="102082" fg:w="16"/><text x="67.8262%" y="783.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (18 samples, 0.01%)</title><rect x="67.5762%" y="821" width="0.0119%" height="15" fill="rgb(223,18,34)" fg:x="102082" fg:w="18"/><text x="67.8262%" y="831.50"></text></g><g><title>__libc_start_main (109 samples, 0.07%)</title><rect x="67.5166%" y="853" width="0.0722%" height="15" fill="rgb(252,124,54)" fg:x="101992" fg:w="109"/><text x="67.7666%" y="863.50"></text></g><g><title>main (104 samples, 0.07%)</title><rect x="67.5200%" y="837" width="0.0688%" height="15" fill="rgb(229,106,42)" fg:x="101997" fg:w="104"/><text x="67.7700%" y="847.50"></text></g><g><title>_dl_catch_exception (21 samples, 0.01%)</title><rect x="67.5888%" y="773" width="0.0139%" height="15" fill="rgb(221,129,1)" fg:x="102101" fg:w="21"/><text x="67.8388%" y="783.50"></text></g><g><title>openaux (21 samples, 0.01%)</title><rect x="67.5888%" y="757" width="0.0139%" height="15" fill="rgb(229,74,15)" fg:x="102101" fg:w="21"/><text x="67.8388%" y="767.50"></text></g><g><title>_dl_map_object (21 samples, 0.01%)</title><rect x="67.5888%" y="741" width="0.0139%" height="15" fill="rgb(210,206,50)" fg:x="102101" fg:w="21"/><text x="67.8388%" y="751.50"></text></g><g><title>_dl_map_object_deps (22 samples, 0.01%)</title><rect x="67.5888%" y="789" width="0.0146%" height="15" fill="rgb(251,114,31)" fg:x="102101" fg:w="22"/><text x="67.8388%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (25 samples, 0.02%)</title><rect x="67.6159%" y="741" width="0.0165%" height="15" fill="rgb(215,225,28)" fg:x="102142" fg:w="25"/><text x="67.8659%" y="751.50"></text></g><g><title>do_lookup_x (20 samples, 0.01%)</title><rect x="67.6193%" y="725" width="0.0132%" height="15" fill="rgb(237,109,14)" fg:x="102147" fg:w="20"/><text x="67.8693%" y="735.50"></text></g><g><title>elf_machine_rela (36 samples, 0.02%)</title><rect x="67.6100%" y="757" width="0.0238%" height="15" fill="rgb(230,13,37)" fg:x="102133" fg:w="36"/><text x="67.8600%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (42 samples, 0.03%)</title><rect x="67.6067%" y="773" width="0.0278%" height="15" fill="rgb(231,40,28)" fg:x="102128" fg:w="42"/><text x="67.8567%" y="783.50"></text></g><g><title>_dl_relocate_object (47 samples, 0.03%)</title><rect x="67.6040%" y="789" width="0.0311%" height="15" fill="rgb(231,202,18)" fg:x="102124" fg:w="47"/><text x="67.8540%" y="799.50"></text></g><g><title>[ld-2.31.so] (72 samples, 0.05%)</title><rect x="67.5888%" y="805" width="0.0477%" height="15" fill="rgb(225,33,18)" fg:x="102101" fg:w="72"/><text x="67.8388%" y="815.50"></text></g><g><title>_dl_start_final (73 samples, 0.05%)</title><rect x="67.5888%" y="837" width="0.0483%" height="15" fill="rgb(223,64,47)" fg:x="102101" fg:w="73"/><text x="67.8388%" y="847.50"></text></g><g><title>_dl_sysdep_start (73 samples, 0.05%)</title><rect x="67.5888%" y="821" width="0.0483%" height="15" fill="rgb(234,114,13)" fg:x="102101" fg:w="73"/><text x="67.8388%" y="831.50"></text></g><g><title>_start (183 samples, 0.12%)</title><rect x="67.5166%" y="869" width="0.1211%" height="15" fill="rgb(248,56,40)" fg:x="101992" fg:w="183"/><text x="67.7666%" y="879.50"></text></g><g><title>_dl_start (74 samples, 0.05%)</title><rect x="67.5888%" y="853" width="0.0490%" height="15" fill="rgb(221,194,21)" fg:x="102101" fg:w="74"/><text x="67.8388%" y="863.50"></text></g><g><title>process-wrapper (203 samples, 0.13%)</title><rect x="67.5087%" y="885" width="0.1344%" height="15" fill="rgb(242,108,46)" fg:x="101980" fg:w="203"/><text x="67.7587%" y="895.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="67.7060%" y="757" width="0.0119%" height="15" fill="rgb(220,106,10)" fg:x="102278" fg:w="18"/><text x="67.9560%" y="767.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="67.7060%" y="741" width="0.0119%" height="15" fill="rgb(211,88,4)" fg:x="102278" fg:w="18"/><text x="67.9560%" y="751.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="67.7060%" y="725" width="0.0119%" height="15" fill="rgb(214,95,34)" fg:x="102278" fg:w="18"/><text x="67.9560%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="67.7066%" y="709" width="0.0113%" height="15" fill="rgb(250,160,33)" fg:x="102279" fg:w="17"/><text x="67.9566%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="67.7066%" y="693" width="0.0113%" height="15" fill="rgb(225,29,10)" fg:x="102279" fg:w="17"/><text x="67.9566%" y="703.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="67.7066%" y="677" width="0.0113%" height="15" fill="rgb(224,28,30)" fg:x="102279" fg:w="17"/><text x="67.9566%" y="687.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="67.6848%" y="805" width="0.0410%" height="15" fill="rgb(231,77,4)" fg:x="102246" fg:w="62"/><text x="67.9348%" y="815.50"></text></g><g><title>kernel_wait4 (62 samples, 0.04%)</title><rect x="67.6848%" y="789" width="0.0410%" height="15" fill="rgb(209,63,21)" fg:x="102246" fg:w="62"/><text x="67.9348%" y="799.50"></text></g><g><title>do_wait (62 samples, 0.04%)</title><rect x="67.6848%" y="773" width="0.0410%" height="15" fill="rgb(226,22,11)" fg:x="102246" fg:w="62"/><text x="67.9348%" y="783.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (64 samples, 0.04%)</title><rect x="67.6841%" y="853" width="0.0424%" height="15" fill="rgb(216,82,30)" fg:x="102245" fg:w="64"/><text x="67.9341%" y="863.50"></text></g><g><title>__GI___wait4 (64 samples, 0.04%)</title><rect x="67.6841%" y="837" width="0.0424%" height="15" fill="rgb(246,227,38)" fg:x="102245" fg:w="64"/><text x="67.9341%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="67.6848%" y="821" width="0.0417%" height="15" fill="rgb(251,203,53)" fg:x="102246" fg:w="63"/><text x="67.9348%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="67.7318%" y="629" width="0.0119%" height="15" fill="rgb(254,101,1)" fg:x="102317" fg:w="18"/><text x="67.9818%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="67.7325%" y="613" width="0.0113%" height="15" fill="rgb(241,180,5)" fg:x="102318" fg:w="17"/><text x="67.9825%" y="623.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="67.7325%" y="597" width="0.0113%" height="15" fill="rgb(218,168,4)" fg:x="102318" fg:w="17"/><text x="67.9825%" y="607.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="67.7318%" y="645" width="0.0132%" height="15" fill="rgb(224,223,32)" fg:x="102317" fg:w="20"/><text x="67.9818%" y="655.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.02%)</title><rect x="67.7298%" y="693" width="0.0165%" height="15" fill="rgb(236,106,22)" fg:x="102314" fg:w="25"/><text x="67.9798%" y="703.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="67.7305%" y="677" width="0.0159%" height="15" fill="rgb(206,121,5)" fg:x="102315" fg:w="24"/><text x="67.9805%" y="687.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="67.7311%" y="661" width="0.0152%" height="15" fill="rgb(233,87,28)" fg:x="102316" fg:w="23"/><text x="67.9811%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="67.7291%" y="773" width="0.0179%" height="15" fill="rgb(236,137,17)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="783.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="67.7291%" y="757" width="0.0179%" height="15" fill="rgb(209,183,38)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="767.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="67.7291%" y="741" width="0.0179%" height="15" fill="rgb(206,162,44)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="751.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="67.7291%" y="725" width="0.0179%" height="15" fill="rgb(237,70,39)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="735.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="67.7291%" y="709" width="0.0179%" height="15" fill="rgb(212,176,5)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="719.50"></text></g><g><title>[perf-983083.map] (155 samples, 0.10%)</title><rect x="67.6451%" y="869" width="0.1026%" height="15" fill="rgb(232,95,16)" fg:x="102186" fg:w="155"/><text x="67.8951%" y="879.50"></text></g><g><title>Unsafe_Park (32 samples, 0.02%)</title><rect x="67.7265%" y="853" width="0.0212%" height="15" fill="rgb(219,115,35)" fg:x="102309" fg:w="32"/><text x="67.9765%" y="863.50"></text></g><g><title>Parker::park (32 samples, 0.02%)</title><rect x="67.7265%" y="837" width="0.0212%" height="15" fill="rgb(251,67,27)" fg:x="102309" fg:w="32"/><text x="67.9765%" y="847.50"></text></g><g><title>__pthread_cond_timedwait (30 samples, 0.02%)</title><rect x="67.7278%" y="821" width="0.0199%" height="15" fill="rgb(222,95,40)" fg:x="102311" fg:w="30"/><text x="67.9778%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="67.7285%" y="805" width="0.0192%" height="15" fill="rgb(250,35,16)" fg:x="102312" fg:w="29"/><text x="67.9785%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (29 samples, 0.02%)</title><rect x="67.7285%" y="789" width="0.0192%" height="15" fill="rgb(224,86,44)" fg:x="102312" fg:w="29"/><text x="67.9785%" y="799.50"></text></g><g><title>free_unref_page_list (19 samples, 0.01%)</title><rect x="67.7814%" y="661" width="0.0126%" height="15" fill="rgb(237,53,53)" fg:x="102392" fg:w="19"/><text x="68.0314%" y="671.50"></text></g><g><title>tlb_flush_mmu (46 samples, 0.03%)</title><rect x="67.7682%" y="693" width="0.0305%" height="15" fill="rgb(208,171,33)" fg:x="102372" fg:w="46"/><text x="68.0182%" y="703.50"></text></g><g><title>release_pages (39 samples, 0.03%)</title><rect x="67.7728%" y="677" width="0.0258%" height="15" fill="rgb(222,64,27)" fg:x="102379" fg:w="39"/><text x="68.0228%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.05%)</title><rect x="67.7483%" y="869" width="0.0510%" height="15" fill="rgb(221,121,35)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (77 samples, 0.05%)</title><rect x="67.7483%" y="853" width="0.0510%" height="15" fill="rgb(228,137,42)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (77 samples, 0.05%)</title><rect x="67.7483%" y="837" width="0.0510%" height="15" fill="rgb(227,54,21)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="847.50"></text></g><g><title>arch_do_signal (77 samples, 0.05%)</title><rect x="67.7483%" y="821" width="0.0510%" height="15" fill="rgb(240,168,33)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="831.50"></text></g><g><title>get_signal (77 samples, 0.05%)</title><rect x="67.7483%" y="805" width="0.0510%" height="15" fill="rgb(243,159,6)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="815.50"></text></g><g><title>do_group_exit (77 samples, 0.05%)</title><rect x="67.7483%" y="789" width="0.0510%" height="15" fill="rgb(205,211,41)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="799.50"></text></g><g><title>do_exit (77 samples, 0.05%)</title><rect x="67.7483%" y="773" width="0.0510%" height="15" fill="rgb(253,30,1)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="783.50"></text></g><g><title>mmput (77 samples, 0.05%)</title><rect x="67.7483%" y="757" width="0.0510%" height="15" fill="rgb(226,80,18)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="767.50"></text></g><g><title>exit_mmap (77 samples, 0.05%)</title><rect x="67.7483%" y="741" width="0.0510%" height="15" fill="rgb(253,156,46)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="751.50"></text></g><g><title>unmap_vmas (75 samples, 0.05%)</title><rect x="67.7497%" y="725" width="0.0496%" height="15" fill="rgb(248,87,27)" fg:x="102344" fg:w="75"/><text x="67.9997%" y="735.50"></text></g><g><title>unmap_page_range (75 samples, 0.05%)</title><rect x="67.7497%" y="709" width="0.0496%" height="15" fill="rgb(227,122,2)" fg:x="102344" fg:w="75"/><text x="67.9997%" y="719.50"></text></g><g><title>process_reaper (237 samples, 0.16%)</title><rect x="67.6431%" y="885" width="0.1569%" height="15" fill="rgb(229,94,39)" fg:x="102183" fg:w="237"/><text x="67.8931%" y="895.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (21 samples, 0.01%)</title><rect x="68.0284%" y="853" width="0.0139%" height="15" fill="rgb(225,173,31)" fg:x="102765" fg:w="21"/><text x="68.2784%" y="863.50"></text></g><g><title>deflate (21 samples, 0.01%)</title><rect x="68.0284%" y="837" width="0.0139%" height="15" fill="rgb(239,176,30)" fg:x="102765" fg:w="21"/><text x="68.2784%" y="847.50"></text></g><g><title>[libz.so.1.2.11] (21 samples, 0.01%)</title><rect x="68.0284%" y="821" width="0.0139%" height="15" fill="rgb(212,104,21)" fg:x="102765" fg:w="21"/><text x="68.2784%" y="831.50"></text></g><g><title>dequeue_task_fair (16 samples, 0.01%)</title><rect x="68.0807%" y="645" width="0.0106%" height="15" fill="rgb(240,209,40)" fg:x="102844" fg:w="16"/><text x="68.3307%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.04%)</title><rect x="68.0939%" y="629" width="0.0410%" height="15" fill="rgb(234,195,5)" fg:x="102864" fg:w="62"/><text x="68.3439%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.04%)</title><rect x="68.0946%" y="613" width="0.0404%" height="15" fill="rgb(238,213,1)" fg:x="102865" fg:w="61"/><text x="68.3446%" y="623.50"></text></g><g><title>native_write_msr (61 samples, 0.04%)</title><rect x="68.0946%" y="597" width="0.0404%" height="15" fill="rgb(235,182,54)" fg:x="102865" fg:w="61"/><text x="68.3446%" y="607.50"></text></g><g><title>finish_task_switch (68 samples, 0.05%)</title><rect x="68.0912%" y="645" width="0.0450%" height="15" fill="rgb(229,50,46)" fg:x="102860" fg:w="68"/><text x="68.3412%" y="655.50"></text></g><g><title>futex_wait_queue_me (105 samples, 0.07%)</title><rect x="68.0747%" y="693" width="0.0695%" height="15" fill="rgb(219,145,13)" fg:x="102835" fg:w="105"/><text x="68.3247%" y="703.50"></text></g><g><title>schedule (101 samples, 0.07%)</title><rect x="68.0773%" y="677" width="0.0669%" height="15" fill="rgb(220,226,10)" fg:x="102839" fg:w="101"/><text x="68.3273%" y="687.50"></text></g><g><title>__schedule (100 samples, 0.07%)</title><rect x="68.0780%" y="661" width="0.0662%" height="15" fill="rgb(248,47,30)" fg:x="102840" fg:w="100"/><text x="68.3280%" y="671.50"></text></g><g><title>do_syscall_64 (109 samples, 0.07%)</title><rect x="68.0727%" y="757" width="0.0722%" height="15" fill="rgb(231,209,44)" fg:x="102832" fg:w="109"/><text x="68.3227%" y="767.50"></text></g><g><title>__x64_sys_futex (109 samples, 0.07%)</title><rect x="68.0727%" y="741" width="0.0722%" height="15" fill="rgb(209,80,30)" fg:x="102832" fg:w="109"/><text x="68.3227%" y="751.50"></text></g><g><title>do_futex (109 samples, 0.07%)</title><rect x="68.0727%" y="725" width="0.0722%" height="15" fill="rgb(232,9,14)" fg:x="102832" fg:w="109"/><text x="68.3227%" y="735.50"></text></g><g><title>futex_wait (107 samples, 0.07%)</title><rect x="68.0740%" y="709" width="0.0708%" height="15" fill="rgb(243,91,43)" fg:x="102834" fg:w="107"/><text x="68.3240%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.08%)</title><rect x="68.0707%" y="773" width="0.0755%" height="15" fill="rgb(231,90,52)" fg:x="102829" fg:w="114"/><text x="68.3207%" y="783.50"></text></g><g><title>__pthread_cond_wait (126 samples, 0.08%)</title><rect x="68.0634%" y="821" width="0.0834%" height="15" fill="rgb(253,192,44)" fg:x="102818" fg:w="126"/><text x="68.3134%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (126 samples, 0.08%)</title><rect x="68.0634%" y="805" width="0.0834%" height="15" fill="rgb(241,66,31)" fg:x="102818" fg:w="126"/><text x="68.3134%" y="815.50"></text></g><g><title>futex_wait_cancelable (120 samples, 0.08%)</title><rect x="68.0674%" y="789" width="0.0794%" height="15" fill="rgb(235,81,37)" fg:x="102824" fg:w="120"/><text x="68.3174%" y="799.50"></text></g><g><title>Parker::park (146 samples, 0.10%)</title><rect x="68.0562%" y="837" width="0.0966%" height="15" fill="rgb(223,221,9)" fg:x="102807" fg:w="146"/><text x="68.3062%" y="847.50"></text></g><g><title>Unsafe_Park (153 samples, 0.10%)</title><rect x="68.0535%" y="853" width="0.1013%" height="15" fill="rgb(242,180,7)" fg:x="102803" fg:w="153"/><text x="68.3035%" y="863.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="68.1548%" y="853" width="0.0119%" height="15" fill="rgb(243,78,19)" fg:x="102956" fg:w="18"/><text x="68.4048%" y="863.50"></text></g><g><title>exc_page_fault (18 samples, 0.01%)</title><rect x="68.1548%" y="837" width="0.0119%" height="15" fill="rgb(233,23,17)" fg:x="102956" fg:w="18"/><text x="68.4048%" y="847.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="68.1548%" y="821" width="0.0119%" height="15" fill="rgb(252,122,45)" fg:x="102956" fg:w="18"/><text x="68.4048%" y="831.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="68.1561%" y="805" width="0.0106%" height="15" fill="rgb(247,108,20)" fg:x="102958" fg:w="16"/><text x="68.4061%" y="815.50"></text></g><g><title>[perf-983083.map] (544 samples, 0.36%)</title><rect x="67.8079%" y="869" width="0.3601%" height="15" fill="rgb(235,84,21)" fg:x="102432" fg:w="544"/><text x="68.0579%" y="879.50"></text></g><g><title>profile-writer- (568 samples, 0.38%)</title><rect x="67.8000%" y="885" width="0.3760%" height="15" fill="rgb(247,129,10)" fg:x="102420" fg:w="568"/><text x="68.0500%" y="895.50"></text></g><g><title>[anon] (18 samples, 0.01%)</title><rect x="68.1952%" y="869" width="0.0119%" height="15" fill="rgb(208,173,14)" fg:x="103017" fg:w="18"/><text x="68.4452%" y="879.50"></text></g><g><title>PyImport_ImportModuleLevelObject (18 samples, 0.01%)</title><rect x="68.2091%" y="789" width="0.0119%" height="15" fill="rgb(236,31,38)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="799.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (18 samples, 0.01%)</title><rect x="68.2091%" y="773" width="0.0119%" height="15" fill="rgb(232,65,17)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="783.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.2091%" y="757" width="0.0119%" height="15" fill="rgb(224,45,49)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.2091%" y="741" width="0.0119%" height="15" fill="rgb(225,2,53)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="725" width="0.0106%" height="15" fill="rgb(248,210,53)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="709" width="0.0106%" height="15" fill="rgb(211,1,30)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="693" width="0.0106%" height="15" fill="rgb(224,96,15)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="677" width="0.0106%" height="15" fill="rgb(252,45,11)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="661" width="0.0106%" height="15" fill="rgb(220,125,38)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="645" width="0.0106%" height="15" fill="rgb(243,161,33)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="629" width="0.0106%" height="15" fill="rgb(248,197,34)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="613" width="0.0106%" height="15" fill="rgb(228,165,23)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="623.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="597" width="0.0106%" height="15" fill="rgb(236,94,38)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="581" width="0.0106%" height="15" fill="rgb(220,13,23)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="591.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="565" width="0.0106%" height="15" fill="rgb(234,26,39)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="575.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="549" width="0.0106%" height="15" fill="rgb(205,117,44)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="559.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.2104%" y="533" width="0.0106%" height="15" fill="rgb(250,42,2)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="543.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.2104%" y="517" width="0.0106%" height="15" fill="rgb(223,83,14)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="527.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="501" width="0.0106%" height="15" fill="rgb(241,147,50)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="485" width="0.0106%" height="15" fill="rgb(218,90,6)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="495.50"></text></g><g><title>PyEval_EvalCode (22 samples, 0.01%)</title><rect x="68.2091%" y="853" width="0.0146%" height="15" fill="rgb(210,191,5)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="863.50"></text></g><g><title>_PyEval_EvalCodeWithName (22 samples, 0.01%)</title><rect x="68.2091%" y="837" width="0.0146%" height="15" fill="rgb(225,139,19)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="847.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.2091%" y="821" width="0.0146%" height="15" fill="rgb(210,1,33)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.2091%" y="805" width="0.0146%" height="15" fill="rgb(213,50,3)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="815.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.2256%" y="533" width="0.0172%" height="15" fill="rgb(234,227,4)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="543.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.2256%" y="517" width="0.0172%" height="15" fill="rgb(246,63,5)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="527.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.2256%" y="501" width="0.0172%" height="15" fill="rgb(245,136,27)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2256%" y="485" width="0.0172%" height="15" fill="rgb(247,199,27)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.2256%" y="469" width="0.0172%" height="15" fill="rgb(252,158,49)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2256%" y="453" width="0.0172%" height="15" fill="rgb(254,73,1)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.2256%" y="437" width="0.0172%" height="15" fill="rgb(248,93,19)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2256%" y="421" width="0.0172%" height="15" fill="rgb(206,67,5)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2270%" y="405" width="0.0159%" height="15" fill="rgb(209,210,4)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="415.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2270%" y="389" width="0.0159%" height="15" fill="rgb(214,185,36)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="399.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2270%" y="373" width="0.0159%" height="15" fill="rgb(233,191,26)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="383.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2270%" y="357" width="0.0159%" height="15" fill="rgb(248,94,17)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="367.50"></text></g><g><title>PyImport_ImportModuleLevelObject (27 samples, 0.02%)</title><rect x="68.2256%" y="853" width="0.0179%" height="15" fill="rgb(250,64,4)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="863.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (27 samples, 0.02%)</title><rect x="68.2256%" y="837" width="0.0179%" height="15" fill="rgb(218,41,53)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="847.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="821" width="0.0179%" height="15" fill="rgb(251,176,28)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="805" width="0.0179%" height="15" fill="rgb(247,22,9)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="789" width="0.0179%" height="15" fill="rgb(218,201,14)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="773" width="0.0179%" height="15" fill="rgb(218,94,10)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="757" width="0.0179%" height="15" fill="rgb(222,183,52)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="741" width="0.0179%" height="15" fill="rgb(242,140,25)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="725" width="0.0179%" height="15" fill="rgb(235,197,38)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="709" width="0.0179%" height="15" fill="rgb(237,136,15)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="693" width="0.0179%" height="15" fill="rgb(223,44,49)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="677" width="0.0179%" height="15" fill="rgb(227,71,15)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="687.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="661" width="0.0179%" height="15" fill="rgb(225,153,20)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="645" width="0.0179%" height="15" fill="rgb(210,190,26)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="655.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="629" width="0.0179%" height="15" fill="rgb(223,147,5)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="639.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="613" width="0.0179%" height="15" fill="rgb(207,14,23)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="623.50"></text></g><g><title>PyEval_EvalCode (27 samples, 0.02%)</title><rect x="68.2256%" y="597" width="0.0179%" height="15" fill="rgb(211,195,53)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="607.50"></text></g><g><title>_PyEval_EvalCodeWithName (27 samples, 0.02%)</title><rect x="68.2256%" y="581" width="0.0179%" height="15" fill="rgb(237,75,46)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="591.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="565" width="0.0179%" height="15" fill="rgb(254,55,14)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="549" width="0.0179%" height="15" fill="rgb(230,185,30)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="559.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.2879%" y="821" width="0.0113%" height="15" fill="rgb(220,14,11)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.2879%" y="805" width="0.0113%" height="15" fill="rgb(215,169,44)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="815.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.2879%" y="789" width="0.0113%" height="15" fill="rgb(253,203,20)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.2879%" y="773" width="0.0113%" height="15" fill="rgb(229,225,17)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="757" width="0.0106%" height="15" fill="rgb(236,76,26)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="741" width="0.0106%" height="15" fill="rgb(234,15,30)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="725" width="0.0106%" height="15" fill="rgb(211,113,48)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="709" width="0.0106%" height="15" fill="rgb(221,31,36)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="693" width="0.0106%" height="15" fill="rgb(215,118,52)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="677" width="0.0106%" height="15" fill="rgb(241,151,27)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="661" width="0.0106%" height="15" fill="rgb(253,51,3)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="645" width="0.0106%" height="15" fill="rgb(216,201,24)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="655.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="629" width="0.0106%" height="15" fill="rgb(231,107,4)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="613" width="0.0106%" height="15" fill="rgb(243,97,54)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="623.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="597" width="0.0106%" height="15" fill="rgb(221,32,51)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="607.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="581" width="0.0106%" height="15" fill="rgb(218,171,35)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="591.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.2885%" y="565" width="0.0106%" height="15" fill="rgb(214,20,53)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="575.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.2885%" y="549" width="0.0106%" height="15" fill="rgb(239,9,52)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="559.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="533" width="0.0106%" height="15" fill="rgb(215,114,45)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="517" width="0.0106%" height="15" fill="rgb(208,118,9)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="68.2879%" y="837" width="0.0212%" height="15" fill="rgb(235,7,39)" fg:x="103157" fg:w="32"/><text x="68.5379%" y="847.50"></text></g><g><title>PyImport_ImportModuleLevelObject (23 samples, 0.02%)</title><rect x="68.3090%" y="565" width="0.0152%" height="15" fill="rgb(243,225,15)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="575.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (23 samples, 0.02%)</title><rect x="68.3090%" y="549" width="0.0152%" height="15" fill="rgb(225,216,18)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="559.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.3090%" y="533" width="0.0152%" height="15" fill="rgb(233,36,38)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.3090%" y="517" width="0.0152%" height="15" fill="rgb(239,88,23)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3097%" y="501" width="0.0146%" height="15" fill="rgb(219,181,35)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3097%" y="485" width="0.0146%" height="15" fill="rgb(215,18,46)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3097%" y="469" width="0.0146%" height="15" fill="rgb(241,38,11)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3097%" y="453" width="0.0146%" height="15" fill="rgb(248,169,45)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.3130%" y="437" width="0.0113%" height="15" fill="rgb(239,50,49)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3130%" y="421" width="0.0113%" height="15" fill="rgb(231,96,31)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.3130%" y="405" width="0.0113%" height="15" fill="rgb(224,193,37)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="415.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3130%" y="389" width="0.0113%" height="15" fill="rgb(227,153,50)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="399.50"></text></g><g><title>[python3.9] (99 samples, 0.07%)</title><rect x="68.2607%" y="853" width="0.0655%" height="15" fill="rgb(249,228,3)" fg:x="103116" fg:w="99"/><text x="68.5107%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="837" width="0.0172%" height="15" fill="rgb(219,164,43)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="821" width="0.0172%" height="15" fill="rgb(216,45,41)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="805" width="0.0172%" height="15" fill="rgb(210,226,51)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="789" width="0.0172%" height="15" fill="rgb(209,117,49)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="773" width="0.0172%" height="15" fill="rgb(206,196,24)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="757" width="0.0172%" height="15" fill="rgb(253,218,3)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="741" width="0.0172%" height="15" fill="rgb(252,166,2)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="725" width="0.0172%" height="15" fill="rgb(236,218,26)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="709" width="0.0172%" height="15" fill="rgb(254,84,19)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="719.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="693" width="0.0172%" height="15" fill="rgb(219,137,29)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="677" width="0.0172%" height="15" fill="rgb(227,47,52)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="687.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="661" width="0.0172%" height="15" fill="rgb(229,167,24)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="671.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="645" width="0.0172%" height="15" fill="rgb(233,164,1)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="655.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="68.3090%" y="629" width="0.0172%" height="15" fill="rgb(218,88,48)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="639.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="68.3090%" y="613" width="0.0172%" height="15" fill="rgb(226,214,24)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="623.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="597" width="0.0172%" height="15" fill="rgb(233,29,12)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="581" width="0.0172%" height="15" fill="rgb(219,120,34)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.3269%" y="853" width="0.0113%" height="15" fill="rgb(226,78,44)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="863.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.3269%" y="837" width="0.0113%" height="15" fill="rgb(240,15,48)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.3269%" y="821" width="0.0113%" height="15" fill="rgb(253,176,7)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="831.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.3269%" y="805" width="0.0113%" height="15" fill="rgb(206,166,28)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="815.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.3269%" y="789" width="0.0113%" height="15" fill="rgb(241,53,51)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="799.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.3269%" y="773" width="0.0113%" height="15" fill="rgb(249,112,30)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3269%" y="757" width="0.0113%" height="15" fill="rgb(217,85,30)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.02%)</title><rect x="68.3388%" y="517" width="0.0205%" height="15" fill="rgb(233,49,7)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="527.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.02%)</title><rect x="68.3388%" y="501" width="0.0205%" height="15" fill="rgb(234,109,9)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="511.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.3388%" y="485" width="0.0205%" height="15" fill="rgb(253,95,22)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3388%" y="469" width="0.0205%" height="15" fill="rgb(233,176,25)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3388%" y="453" width="0.0205%" height="15" fill="rgb(236,33,39)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3388%" y="437" width="0.0205%" height="15" fill="rgb(223,226,42)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3388%" y="421" width="0.0205%" height="15" fill="rgb(216,99,33)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="431.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3388%" y="405" width="0.0205%" height="15" fill="rgb(235,84,23)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.3441%" y="389" width="0.0152%" height="15" fill="rgb(232,2,27)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.3441%" y="373" width="0.0152%" height="15" fill="rgb(241,23,22)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="383.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.3441%" y="357" width="0.0152%" height="15" fill="rgb(211,73,27)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="367.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.3441%" y="341" width="0.0152%" height="15" fill="rgb(235,109,49)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="351.50"></text></g><g><title>PyImport_ImportModuleLevelObject (42 samples, 0.03%)</title><rect x="68.3382%" y="837" width="0.0278%" height="15" fill="rgb(230,99,29)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="847.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (42 samples, 0.03%)</title><rect x="68.3382%" y="821" width="0.0278%" height="15" fill="rgb(245,199,7)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="831.50"></text></g><g><title>[python3.9] (42 samples, 0.03%)</title><rect x="68.3382%" y="805" width="0.0278%" height="15" fill="rgb(217,179,10)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.03%)</title><rect x="68.3382%" y="789" width="0.0278%" height="15" fill="rgb(254,99,47)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="773" width="0.0271%" height="15" fill="rgb(251,121,7)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="757" width="0.0271%" height="15" fill="rgb(250,177,26)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="741" width="0.0271%" height="15" fill="rgb(232,88,15)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="725" width="0.0271%" height="15" fill="rgb(251,54,54)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="709" width="0.0271%" height="15" fill="rgb(208,177,15)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="693" width="0.0271%" height="15" fill="rgb(205,97,32)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="677" width="0.0271%" height="15" fill="rgb(217,192,13)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="661" width="0.0271%" height="15" fill="rgb(215,163,41)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="671.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="645" width="0.0271%" height="15" fill="rgb(246,83,29)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="629" width="0.0271%" height="15" fill="rgb(219,2,45)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="639.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="613" width="0.0271%" height="15" fill="rgb(242,215,33)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="623.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="597" width="0.0271%" height="15" fill="rgb(217,1,6)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="607.50"></text></g><g><title>PyEval_EvalCode (41 samples, 0.03%)</title><rect x="68.3388%" y="581" width="0.0271%" height="15" fill="rgb(207,85,52)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (41 samples, 0.03%)</title><rect x="68.3388%" y="565" width="0.0271%" height="15" fill="rgb(231,171,19)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="575.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="549" width="0.0271%" height="15" fill="rgb(207,128,4)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="533" width="0.0271%" height="15" fill="rgb(219,208,4)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="543.50"></text></g><g><title>PyImport_ImportModuleLevelObject (22 samples, 0.01%)</title><rect x="68.3699%" y="421" width="0.0146%" height="15" fill="rgb(235,161,42)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="431.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (22 samples, 0.01%)</title><rect x="68.3699%" y="405" width="0.0146%" height="15" fill="rgb(247,218,18)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="415.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.3699%" y="389" width="0.0146%" height="15" fill="rgb(232,114,51)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3699%" y="373" width="0.0146%" height="15" fill="rgb(222,95,3)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="383.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3699%" y="357" width="0.0146%" height="15" fill="rgb(240,65,29)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="367.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3699%" y="341" width="0.0146%" height="15" fill="rgb(249,209,20)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="351.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3699%" y="325" width="0.0146%" height="15" fill="rgb(241,48,37)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="335.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3699%" y="309" width="0.0146%" height="15" fill="rgb(230,140,42)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="319.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3699%" y="293" width="0.0146%" height="15" fill="rgb(230,176,45)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="303.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.3726%" y="277" width="0.0119%" height="15" fill="rgb(245,112,21)" fg:x="103285" fg:w="18"/><text x="68.6226%" y="287.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.3726%" y="261" width="0.0119%" height="15" fill="rgb(207,183,35)" fg:x="103285" fg:w="18"/><text x="68.6226%" y="271.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3739%" y="245" width="0.0106%" height="15" fill="rgb(227,44,33)" fg:x="103287" fg:w="16"/><text x="68.6239%" y="255.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.3693%" y="741" width="0.0172%" height="15" fill="rgb(246,120,21)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="751.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.3693%" y="725" width="0.0172%" height="15" fill="rgb(235,57,52)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="735.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3693%" y="709" width="0.0172%" height="15" fill="rgb(238,84,10)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3693%" y="693" width="0.0172%" height="15" fill="rgb(251,200,32)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="677" width="0.0165%" height="15" fill="rgb(247,159,13)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="661" width="0.0165%" height="15" fill="rgb(238,64,4)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="645" width="0.0165%" height="15" fill="rgb(221,131,51)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="629" width="0.0165%" height="15" fill="rgb(242,5,29)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="613" width="0.0165%" height="15" fill="rgb(214,130,32)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="597" width="0.0165%" height="15" fill="rgb(244,210,16)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="581" width="0.0165%" height="15" fill="rgb(234,48,26)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="565" width="0.0165%" height="15" fill="rgb(231,82,38)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="575.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="549" width="0.0165%" height="15" fill="rgb(254,128,41)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="533" width="0.0165%" height="15" fill="rgb(212,73,49)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="543.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="517" width="0.0165%" height="15" fill="rgb(205,62,54)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="527.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="501" width="0.0165%" height="15" fill="rgb(228,0,8)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="511.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.02%)</title><rect x="68.3699%" y="485" width="0.0165%" height="15" fill="rgb(251,28,17)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="495.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.02%)</title><rect x="68.3699%" y="469" width="0.0165%" height="15" fill="rgb(238,105,27)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="479.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="453" width="0.0165%" height="15" fill="rgb(237,216,33)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="437" width="0.0165%" height="15" fill="rgb(229,228,25)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="447.50"></text></g><g><title>PyEval_EvalCode (28 samples, 0.02%)</title><rect x="68.3693%" y="805" width="0.0185%" height="15" fill="rgb(233,75,23)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="815.50"></text></g><g><title>_PyEval_EvalCodeWithName (28 samples, 0.02%)</title><rect x="68.3693%" y="789" width="0.0185%" height="15" fill="rgb(231,207,16)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="799.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="68.3693%" y="773" width="0.0185%" height="15" fill="rgb(231,191,45)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.02%)</title><rect x="68.3693%" y="757" width="0.0185%" height="15" fill="rgb(224,133,17)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="767.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.3693%" y="837" width="0.0199%" height="15" fill="rgb(209,178,27)" fg:x="103280" fg:w="30"/><text x="68.6193%" y="847.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.3693%" y="821" width="0.0199%" height="15" fill="rgb(218,37,11)" fg:x="103280" fg:w="30"/><text x="68.6193%" y="831.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.3891%" y="821" width="0.0119%" height="15" fill="rgb(251,226,25)" fg:x="103310" fg:w="18"/><text x="68.6391%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.3891%" y="805" width="0.0119%" height="15" fill="rgb(209,222,27)" fg:x="103310" fg:w="18"/><text x="68.6391%" y="815.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="757" width="0.0106%" height="15" fill="rgb(238,22,21)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4110%" y="741" width="0.0106%" height="15" fill="rgb(233,161,25)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="751.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="725" width="0.0106%" height="15" fill="rgb(226,122,53)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="735.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="709" width="0.0106%" height="15" fill="rgb(220,123,17)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="719.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.4110%" y="693" width="0.0106%" height="15" fill="rgb(230,224,35)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.4110%" y="677" width="0.0106%" height="15" fill="rgb(246,83,8)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="687.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="661" width="0.0106%" height="15" fill="rgb(230,214,17)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4110%" y="645" width="0.0106%" height="15" fill="rgb(222,97,18)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="655.50"></text></g><g><title>PyObject_Call (25 samples, 0.02%)</title><rect x="68.4229%" y="165" width="0.0165%" height="15" fill="rgb(206,79,1)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="175.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4229%" y="149" width="0.0165%" height="15" fill="rgb(214,121,34)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="159.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4229%" y="133" width="0.0165%" height="15" fill="rgb(249,199,46)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="143.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4229%" y="117" width="0.0165%" height="15" fill="rgb(214,222,46)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="127.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4262%" y="101" width="0.0132%" height="15" fill="rgb(248,168,30)" fg:x="103366" fg:w="20"/><text x="68.6762%" y="111.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.4222%" y="261" width="0.0205%" height="15" fill="rgb(226,14,28)" fg:x="103360" fg:w="31"/><text x="68.6722%" y="271.50"></text></g><g><title>_PyObject_MakeTpCall (30 samples, 0.02%)</title><rect x="68.4229%" y="245" width="0.0199%" height="15" fill="rgb(253,123,1)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="255.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.4229%" y="229" width="0.0199%" height="15" fill="rgb(225,24,42)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="239.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.4229%" y="213" width="0.0199%" height="15" fill="rgb(216,161,37)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="223.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.4229%" y="197" width="0.0199%" height="15" fill="rgb(251,164,26)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="207.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.4229%" y="181" width="0.0199%" height="15" fill="rgb(219,177,3)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="191.50"></text></g><g><title>PyImport_ImportModuleLevelObject (35 samples, 0.02%)</title><rect x="68.4216%" y="597" width="0.0232%" height="15" fill="rgb(222,65,0)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="607.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (35 samples, 0.02%)</title><rect x="68.4216%" y="581" width="0.0232%" height="15" fill="rgb(223,69,54)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="591.50"></text></g><g><title>[python3.9] (35 samples, 0.02%)</title><rect x="68.4216%" y="565" width="0.0232%" height="15" fill="rgb(235,30,27)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="68.4216%" y="549" width="0.0232%" height="15" fill="rgb(220,183,50)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="68.4216%" y="533" width="0.0232%" height="15" fill="rgb(248,198,15)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="68.4216%" y="517" width="0.0232%" height="15" fill="rgb(222,211,4)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="68.4216%" y="501" width="0.0232%" height="15" fill="rgb(214,102,34)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="68.4216%" y="485" width="0.0232%" height="15" fill="rgb(245,92,5)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="469" width="0.0225%" height="15" fill="rgb(252,72,51)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.4222%" y="453" width="0.0225%" height="15" fill="rgb(252,208,19)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="437" width="0.0225%" height="15" fill="rgb(211,69,7)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.4222%" y="421" width="0.0225%" height="15" fill="rgb(211,27,16)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="431.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="405" width="0.0225%" height="15" fill="rgb(219,216,14)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="389" width="0.0225%" height="15" fill="rgb(219,71,8)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="399.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="373" width="0.0225%" height="15" fill="rgb(223,170,53)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="383.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="357" width="0.0225%" height="15" fill="rgb(246,21,26)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="367.50"></text></g><g><title>PyEval_EvalCode (34 samples, 0.02%)</title><rect x="68.4222%" y="341" width="0.0225%" height="15" fill="rgb(248,20,46)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="351.50"></text></g><g><title>_PyEval_EvalCodeWithName (34 samples, 0.02%)</title><rect x="68.4222%" y="325" width="0.0225%" height="15" fill="rgb(252,94,11)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="335.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="309" width="0.0225%" height="15" fill="rgb(236,163,8)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="319.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="293" width="0.0225%" height="15" fill="rgb(217,221,45)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="303.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="277" width="0.0225%" height="15" fill="rgb(238,38,17)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="287.50"></text></g><g><title>_PyFunction_Vectorcall (87 samples, 0.06%)</title><rect x="68.3891%" y="837" width="0.0576%" height="15" fill="rgb(242,210,23)" fg:x="103310" fg:w="87"/><text x="68.6391%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (69 samples, 0.05%)</title><rect x="68.4011%" y="821" width="0.0457%" height="15" fill="rgb(250,86,53)" fg:x="103328" fg:w="69"/><text x="68.6511%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (69 samples, 0.05%)</title><rect x="68.4011%" y="805" width="0.0457%" height="15" fill="rgb(223,168,25)" fg:x="103328" fg:w="69"/><text x="68.6511%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (54 samples, 0.04%)</title><rect x="68.4110%" y="789" width="0.0357%" height="15" fill="rgb(251,189,4)" fg:x="103343" fg:w="54"/><text x="68.6610%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.04%)</title><rect x="68.4110%" y="773" width="0.0357%" height="15" fill="rgb(245,19,28)" fg:x="103343" fg:w="54"/><text x="68.6610%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.4216%" y="757" width="0.0252%" height="15" fill="rgb(207,10,34)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.4216%" y="741" width="0.0252%" height="15" fill="rgb(235,153,31)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="751.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="725" width="0.0252%" height="15" fill="rgb(228,72,37)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.4216%" y="709" width="0.0252%" height="15" fill="rgb(215,15,16)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="719.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="693" width="0.0252%" height="15" fill="rgb(250,119,29)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="703.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="677" width="0.0252%" height="15" fill="rgb(214,59,1)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="687.50"></text></g><g><title>PyEval_EvalCode (38 samples, 0.03%)</title><rect x="68.4216%" y="661" width="0.0252%" height="15" fill="rgb(223,109,25)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="671.50"></text></g><g><title>_PyEval_EvalCodeWithName (38 samples, 0.03%)</title><rect x="68.4216%" y="645" width="0.0252%" height="15" fill="rgb(230,198,22)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="655.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="629" width="0.0252%" height="15" fill="rgb(245,184,46)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.4216%" y="613" width="0.0252%" height="15" fill="rgb(253,73,16)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (167 samples, 0.11%)</title><rect x="68.3382%" y="853" width="0.1106%" height="15" fill="rgb(206,94,45)" fg:x="103233" fg:w="167"/><text x="68.5882%" y="863.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.4606%" y="613" width="0.0113%" height="15" fill="rgb(236,83,27)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="623.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.4606%" y="597" width="0.0113%" height="15" fill="rgb(220,196,8)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="607.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4606%" y="581" width="0.0113%" height="15" fill="rgb(254,185,14)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4606%" y="565" width="0.0113%" height="15" fill="rgb(226,50,22)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4606%" y="549" width="0.0113%" height="15" fill="rgb(253,147,0)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4606%" y="533" width="0.0113%" height="15" fill="rgb(252,46,33)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4606%" y="517" width="0.0113%" height="15" fill="rgb(242,22,54)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4606%" y="501" width="0.0113%" height="15" fill="rgb(223,178,32)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4613%" y="485" width="0.0106%" height="15" fill="rgb(214,106,53)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.4613%" y="469" width="0.0106%" height="15" fill="rgb(232,65,50)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4613%" y="453" width="0.0106%" height="15" fill="rgb(231,110,28)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.4613%" y="437" width="0.0106%" height="15" fill="rgb(216,71,40)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="447.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="741" width="0.0126%" height="15" fill="rgb(229,89,53)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.4606%" y="725" width="0.0126%" height="15" fill="rgb(210,124,14)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="735.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="709" width="0.0126%" height="15" fill="rgb(236,213,6)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="719.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="693" width="0.0126%" height="15" fill="rgb(228,41,5)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="703.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="68.4606%" y="677" width="0.0126%" height="15" fill="rgb(221,167,25)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="687.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="68.4606%" y="661" width="0.0126%" height="15" fill="rgb(228,144,37)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="671.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="645" width="0.0126%" height="15" fill="rgb(227,189,38)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.4606%" y="629" width="0.0126%" height="15" fill="rgb(218,8,2)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (46 samples, 0.03%)</title><rect x="68.4487%" y="853" width="0.0305%" height="15" fill="rgb(209,61,28)" fg:x="103400" fg:w="46"/><text x="68.6987%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="68.4553%" y="837" width="0.0238%" height="15" fill="rgb(233,140,39)" fg:x="103410" fg:w="36"/><text x="68.7053%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.4553%" y="821" width="0.0238%" height="15" fill="rgb(251,66,48)" fg:x="103410" fg:w="36"/><text x="68.7053%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4573%" y="805" width="0.0218%" height="15" fill="rgb(210,44,45)" fg:x="103413" fg:w="33"/><text x="68.7073%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4573%" y="789" width="0.0218%" height="15" fill="rgb(214,136,46)" fg:x="103413" fg:w="33"/><text x="68.7073%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.02%)</title><rect x="68.4606%" y="773" width="0.0185%" height="15" fill="rgb(207,130,50)" fg:x="103418" fg:w="28"/><text x="68.7106%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.02%)</title><rect x="68.4606%" y="757" width="0.0185%" height="15" fill="rgb(228,102,49)" fg:x="103418" fg:w="28"/><text x="68.7106%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.02%)</title><rect x="68.4798%" y="549" width="0.0205%" height="15" fill="rgb(253,55,1)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="559.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.02%)</title><rect x="68.4798%" y="533" width="0.0205%" height="15" fill="rgb(238,222,9)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="543.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.4798%" y="517" width="0.0205%" height="15" fill="rgb(246,99,6)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4798%" y="501" width="0.0205%" height="15" fill="rgb(219,110,26)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.4798%" y="485" width="0.0205%" height="15" fill="rgb(239,160,33)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4798%" y="469" width="0.0205%" height="15" fill="rgb(220,202,23)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.4798%" y="453" width="0.0205%" height="15" fill="rgb(208,80,26)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4798%" y="437" width="0.0205%" height="15" fill="rgb(243,85,7)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4825%" y="421" width="0.0179%" height="15" fill="rgb(228,77,47)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="431.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.4825%" y="405" width="0.0179%" height="15" fill="rgb(212,226,8)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4825%" y="389" width="0.0179%" height="15" fill="rgb(241,120,54)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.4825%" y="373" width="0.0179%" height="15" fill="rgb(226,80,16)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="383.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.4871%" y="357" width="0.0132%" height="15" fill="rgb(240,76,13)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="367.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.4871%" y="341" width="0.0132%" height="15" fill="rgb(252,74,8)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="351.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="325" width="0.0132%" height="15" fill="rgb(244,155,2)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="335.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.4871%" y="309" width="0.0132%" height="15" fill="rgb(215,81,35)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="319.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="293" width="0.0132%" height="15" fill="rgb(206,55,2)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="303.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="277" width="0.0132%" height="15" fill="rgb(231,2,34)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="287.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="261" width="0.0132%" height="15" fill="rgb(242,176,48)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="271.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="245" width="0.0132%" height="15" fill="rgb(249,31,36)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="255.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="229" width="0.0132%" height="15" fill="rgb(205,18,17)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="239.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="213" width="0.0132%" height="15" fill="rgb(254,130,5)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="223.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="197" width="0.0132%" height="15" fill="rgb(229,42,45)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="207.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4898%" y="181" width="0.0106%" height="15" fill="rgb(245,95,25)" fg:x="103462" fg:w="16"/><text x="68.7398%" y="191.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (34 samples, 0.02%)</title><rect x="68.4792%" y="853" width="0.0225%" height="15" fill="rgb(249,193,38)" fg:x="103446" fg:w="34"/><text x="68.7292%" y="863.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4792%" y="837" width="0.0225%" height="15" fill="rgb(241,140,43)" fg:x="103446" fg:w="34"/><text x="68.7292%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.4792%" y="821" width="0.0225%" height="15" fill="rgb(245,78,48)" fg:x="103446" fg:w="34"/><text x="68.7292%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="805" width="0.0218%" height="15" fill="rgb(214,92,39)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="789" width="0.0218%" height="15" fill="rgb(211,189,14)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="773" width="0.0218%" height="15" fill="rgb(218,7,24)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="757" width="0.0218%" height="15" fill="rgb(224,200,49)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="741" width="0.0218%" height="15" fill="rgb(218,210,14)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="725" width="0.0218%" height="15" fill="rgb(234,142,31)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="709" width="0.0218%" height="15" fill="rgb(227,165,2)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="693" width="0.0218%" height="15" fill="rgb(232,44,46)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="703.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="677" width="0.0218%" height="15" fill="rgb(236,149,47)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="661" width="0.0218%" height="15" fill="rgb(227,45,31)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="671.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="645" width="0.0218%" height="15" fill="rgb(240,176,51)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="655.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="629" width="0.0218%" height="15" fill="rgb(249,146,41)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="639.50"></text></g><g><title>PyEval_EvalCode (33 samples, 0.02%)</title><rect x="68.4798%" y="613" width="0.0218%" height="15" fill="rgb(213,208,4)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (33 samples, 0.02%)</title><rect x="68.4798%" y="597" width="0.0218%" height="15" fill="rgb(245,84,36)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="607.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="581" width="0.0218%" height="15" fill="rgb(254,84,18)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="565" width="0.0218%" height="15" fill="rgb(225,38,54)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="575.50"></text></g><g><title>[unknown] (454 samples, 0.30%)</title><rect x="68.2091%" y="869" width="0.3005%" height="15" fill="rgb(246,50,30)" fg:x="103038" fg:w="454"/><text x="68.4591%" y="879.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5123%" y="453" width="0.0126%" height="15" fill="rgb(246,148,9)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="463.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5123%" y="437" width="0.0126%" height="15" fill="rgb(223,75,4)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="447.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="68.5123%" y="421" width="0.0126%" height="15" fill="rgb(239,148,41)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="431.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="68.5123%" y="405" width="0.0126%" height="15" fill="rgb(205,195,3)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="415.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5123%" y="389" width="0.0126%" height="15" fill="rgb(254,161,1)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="399.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.5123%" y="373" width="0.0126%" height="15" fill="rgb(211,229,8)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="383.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.5123%" y="485" width="0.0132%" height="15" fill="rgb(220,97,9)" fg:x="103496" fg:w="20"/><text x="68.7623%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.5123%" y="469" width="0.0132%" height="15" fill="rgb(240,218,8)" fg:x="103496" fg:w="20"/><text x="68.7623%" y="479.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.5103%" y="677" width="0.0172%" height="15" fill="rgb(250,44,0)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="687.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.5103%" y="661" width="0.0172%" height="15" fill="rgb(236,41,53)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="671.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.5103%" y="645" width="0.0172%" height="15" fill="rgb(218,227,13)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5103%" y="629" width="0.0172%" height="15" fill="rgb(217,94,32)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.5103%" y="613" width="0.0172%" height="15" fill="rgb(213,217,12)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5103%" y="597" width="0.0172%" height="15" fill="rgb(229,13,46)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.5103%" y="581" width="0.0172%" height="15" fill="rgb(243,139,5)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5103%" y="565" width="0.0172%" height="15" fill="rgb(249,38,45)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.5123%" y="549" width="0.0152%" height="15" fill="rgb(216,70,11)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.5123%" y="533" width="0.0152%" height="15" fill="rgb(253,101,25)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.5123%" y="517" width="0.0152%" height="15" fill="rgb(207,197,30)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.5123%" y="501" width="0.0152%" height="15" fill="rgb(238,87,13)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="511.50"></text></g><g><title>PyRun_SimpleStringFlags (27 samples, 0.02%)</title><rect x="68.5103%" y="805" width="0.0179%" height="15" fill="rgb(215,155,8)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="815.50"></text></g><g><title>PyRun_StringFlags (27 samples, 0.02%)</title><rect x="68.5103%" y="789" width="0.0179%" height="15" fill="rgb(239,166,38)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="799.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5103%" y="773" width="0.0179%" height="15" fill="rgb(240,194,35)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="783.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5103%" y="757" width="0.0179%" height="15" fill="rgb(219,10,44)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="767.50"></text></g><g><title>PyEval_EvalCode (27 samples, 0.02%)</title><rect x="68.5103%" y="741" width="0.0179%" height="15" fill="rgb(251,220,35)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="751.50"></text></g><g><title>_PyEval_EvalCodeWithName (27 samples, 0.02%)</title><rect x="68.5103%" y="725" width="0.0179%" height="15" fill="rgb(218,117,13)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="735.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5103%" y="709" width="0.0179%" height="15" fill="rgb(221,213,40)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.5103%" y="693" width="0.0179%" height="15" fill="rgb(251,224,35)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="703.50"></text></g><g><title>PyGC_Collect (23 samples, 0.02%)</title><rect x="68.5282%" y="789" width="0.0152%" height="15" fill="rgb(241,33,39)" fg:x="103520" fg:w="23"/><text x="68.7782%" y="799.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.5282%" y="773" width="0.0152%" height="15" fill="rgb(222,74,17)" fg:x="103520" fg:w="23"/><text x="68.7782%" y="783.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.5282%" y="757" width="0.0152%" height="15" fill="rgb(225,103,0)" fg:x="103520" fg:w="23"/><text x="68.7782%" y="767.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5321%" y="741" width="0.0113%" height="15" fill="rgb(240,0,12)" fg:x="103526" fg:w="17"/><text x="68.7821%" y="751.50"></text></g><g><title>_PyGC_CollectNoFail (32 samples, 0.02%)</title><rect x="68.5460%" y="773" width="0.0212%" height="15" fill="rgb(233,213,37)" fg:x="103547" fg:w="32"/><text x="68.7960%" y="783.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="68.5460%" y="757" width="0.0212%" height="15" fill="rgb(225,84,52)" fg:x="103547" fg:w="32"/><text x="68.7960%" y="767.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.5507%" y="741" width="0.0165%" height="15" fill="rgb(247,160,51)" fg:x="103554" fg:w="25"/><text x="68.8007%" y="751.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5447%" y="789" width="0.0252%" height="15" fill="rgb(244,60,51)" fg:x="103545" fg:w="38"/><text x="68.7947%" y="799.50"></text></g><g><title>Py_RunMain (106 samples, 0.07%)</title><rect x="68.5103%" y="821" width="0.0702%" height="15" fill="rgb(233,114,7)" fg:x="103493" fg:w="106"/><text x="68.7603%" y="831.50"></text></g><g><title>Py_FinalizeEx (79 samples, 0.05%)</title><rect x="68.5282%" y="805" width="0.0523%" height="15" fill="rgb(246,136,16)" fg:x="103520" fg:w="79"/><text x="68.7782%" y="815.50"></text></g><g><title>_PyGC_CollectNoFail (16 samples, 0.01%)</title><rect x="68.5699%" y="789" width="0.0106%" height="15" fill="rgb(243,114,45)" fg:x="103583" fg:w="16"/><text x="68.8199%" y="799.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.5699%" y="773" width="0.0106%" height="15" fill="rgb(247,183,43)" fg:x="103583" fg:w="16"/><text x="68.8199%" y="783.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5944%" y="453" width="0.0146%" height="15" fill="rgb(251,210,42)" fg:x="103620" fg:w="22"/><text x="68.8444%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.5944%" y="437" width="0.0146%" height="15" fill="rgb(221,88,35)" fg:x="103620" fg:w="22"/><text x="68.8444%" y="447.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.5950%" y="421" width="0.0139%" height="15" fill="rgb(242,21,20)" fg:x="103621" fg:w="21"/><text x="68.8450%" y="431.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5977%" y="405" width="0.0113%" height="15" fill="rgb(233,226,36)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="415.50"></text></g><g><title>PyEval_EvalCode (17 samples, 0.01%)</title><rect x="68.5977%" y="389" width="0.0113%" height="15" fill="rgb(243,189,34)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="399.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.5977%" y="373" width="0.0113%" height="15" fill="rgb(207,145,50)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="383.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5977%" y="357" width="0.0113%" height="15" fill="rgb(242,1,50)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="367.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.5977%" y="341" width="0.0113%" height="15" fill="rgb(231,65,32)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="351.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5944%" y="469" width="0.0172%" height="15" fill="rgb(208,68,49)" fg:x="103620" fg:w="26"/><text x="68.8444%" y="479.50"></text></g><g><title>PyImport_ImportModule (38 samples, 0.03%)</title><rect x="68.5871%" y="741" width="0.0252%" height="15" fill="rgb(253,54,49)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="751.50"></text></g><g><title>PyImport_Import (38 samples, 0.03%)</title><rect x="68.5871%" y="725" width="0.0252%" height="15" fill="rgb(245,186,24)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="735.50"></text></g><g><title>PyObject_CallFunction (38 samples, 0.03%)</title><rect x="68.5871%" y="709" width="0.0252%" height="15" fill="rgb(209,2,41)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="719.50"></text></g><g><title>_PyObject_MakeTpCall (38 samples, 0.03%)</title><rect x="68.5871%" y="693" width="0.0252%" height="15" fill="rgb(242,208,54)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="703.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5871%" y="677" width="0.0252%" height="15" fill="rgb(225,9,51)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="687.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5871%" y="661" width="0.0252%" height="15" fill="rgb(207,207,25)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="671.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="68.5871%" y="645" width="0.0252%" height="15" fill="rgb(253,96,18)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="68.5871%" y="629" width="0.0252%" height="15" fill="rgb(252,215,20)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="639.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5871%" y="613" width="0.0252%" height="15" fill="rgb(245,227,26)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.5871%" y="597" width="0.0252%" height="15" fill="rgb(241,208,0)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.5871%" y="581" width="0.0252%" height="15" fill="rgb(224,130,10)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.5884%" y="565" width="0.0238%" height="15" fill="rgb(237,29,0)" fg:x="103611" fg:w="36"/><text x="68.8384%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="68.5884%" y="549" width="0.0238%" height="15" fill="rgb(219,27,41)" fg:x="103611" fg:w="36"/><text x="68.8384%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.5884%" y="533" width="0.0238%" height="15" fill="rgb(245,101,19)" fg:x="103611" fg:w="36"/><text x="68.8384%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.5897%" y="517" width="0.0225%" height="15" fill="rgb(243,44,37)" fg:x="103613" fg:w="34"/><text x="68.8397%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.5897%" y="501" width="0.0225%" height="15" fill="rgb(228,213,43)" fg:x="103613" fg:w="34"/><text x="68.8397%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.5897%" y="485" width="0.0225%" height="15" fill="rgb(219,163,21)" fg:x="103613" fg:w="34"/><text x="68.8397%" y="495.50"></text></g><g><title>PyObject_CallMethod (24 samples, 0.02%)</title><rect x="68.6122%" y="741" width="0.0159%" height="15" fill="rgb(234,86,24)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="751.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.6122%" y="725" width="0.0159%" height="15" fill="rgb(225,10,24)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.6122%" y="709" width="0.0159%" height="15" fill="rgb(218,109,7)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.6122%" y="693" width="0.0159%" height="15" fill="rgb(210,20,26)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="703.50"></text></g><g><title>_PyCodec_Lookup (18 samples, 0.01%)</title><rect x="68.6407%" y="725" width="0.0119%" height="15" fill="rgb(216,18,1)" fg:x="103690" fg:w="18"/><text x="68.8907%" y="735.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.6407%" y="709" width="0.0119%" height="15" fill="rgb(206,163,23)" fg:x="103690" fg:w="18"/><text x="68.8907%" y="719.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.6387%" y="741" width="0.0152%" height="15" fill="rgb(229,150,31)" fg:x="103687" fg:w="23"/><text x="68.8887%" y="751.50"></text></g><g><title>Py_InitializeFromConfig (113 samples, 0.07%)</title><rect x="68.5805%" y="789" width="0.0748%" height="15" fill="rgb(231,10,5)" fg:x="103599" fg:w="113"/><text x="68.8305%" y="799.50"></text></g><g><title>[python3.9] (113 samples, 0.07%)</title><rect x="68.5805%" y="773" width="0.0748%" height="15" fill="rgb(250,40,50)" fg:x="103599" fg:w="113"/><text x="68.8305%" y="783.50"></text></g><g><title>[python3.9] (113 samples, 0.07%)</title><rect x="68.5805%" y="757" width="0.0748%" height="15" fill="rgb(217,119,7)" fg:x="103599" fg:w="113"/><text x="68.8305%" y="767.50"></text></g><g><title>Py_BytesMain (222 samples, 0.15%)</title><rect x="68.5103%" y="837" width="0.1470%" height="15" fill="rgb(245,214,40)" fg:x="103493" fg:w="222"/><text x="68.7603%" y="847.50"></text></g><g><title>[python3.9] (116 samples, 0.08%)</title><rect x="68.5805%" y="821" width="0.0768%" height="15" fill="rgb(216,187,1)" fg:x="103599" fg:w="116"/><text x="68.8305%" y="831.50"></text></g><g><title>[python3.9] (116 samples, 0.08%)</title><rect x="68.5805%" y="805" width="0.0768%" height="15" fill="rgb(237,146,21)" fg:x="103599" fg:w="116"/><text x="68.8305%" y="815.50"></text></g><g><title>__libc_start_main (223 samples, 0.15%)</title><rect x="68.5103%" y="853" width="0.1476%" height="15" fill="rgb(210,174,47)" fg:x="103493" fg:w="223"/><text x="68.7603%" y="863.50"></text></g><g><title>_start (233 samples, 0.15%)</title><rect x="68.5103%" y="869" width="0.1542%" height="15" fill="rgb(218,111,39)" fg:x="103493" fg:w="233"/><text x="68.7603%" y="879.50"></text></g><g><title>python3 (743 samples, 0.49%)</title><rect x="68.1813%" y="885" width="0.4919%" height="15" fill="rgb(224,95,19)" fg:x="102996" fg:w="743"/><text x="68.4313%" y="895.50"></text></g><g><title>[sed] (16 samples, 0.01%)</title><rect x="68.6738%" y="821" width="0.0106%" height="15" fill="rgb(234,15,38)" fg:x="103740" fg:w="16"/><text x="68.9238%" y="831.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.6731%" y="869" width="0.0119%" height="15" fill="rgb(246,56,12)" fg:x="103739" fg:w="18"/><text x="68.9231%" y="879.50"></text></g><g><title>__libc_start_main (18 samples, 0.01%)</title><rect x="68.6731%" y="853" width="0.0119%" height="15" fill="rgb(247,16,17)" fg:x="103739" fg:w="18"/><text x="68.9231%" y="863.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.6731%" y="837" width="0.0119%" height="15" fill="rgb(215,151,11)" fg:x="103739" fg:w="18"/><text x="68.9231%" y="847.50"></text></g><g><title>_dl_map_object_deps (22 samples, 0.01%)</title><rect x="68.6996%" y="789" width="0.0146%" height="15" fill="rgb(225,16,24)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="799.50"></text></g><g><title>_dl_catch_exception (22 samples, 0.01%)</title><rect x="68.6996%" y="773" width="0.0146%" height="15" fill="rgb(217,117,5)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="783.50"></text></g><g><title>openaux (22 samples, 0.01%)</title><rect x="68.6996%" y="757" width="0.0146%" height="15" fill="rgb(246,187,53)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="767.50"></text></g><g><title>_dl_map_object (22 samples, 0.01%)</title><rect x="68.6996%" y="741" width="0.0146%" height="15" fill="rgb(241,71,40)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="751.50"></text></g><g><title>[ld-2.31.so] (42 samples, 0.03%)</title><rect x="68.6983%" y="805" width="0.0278%" height="15" fill="rgb(231,67,39)" fg:x="103777" fg:w="42"/><text x="68.9483%" y="815.50"></text></g><g><title>_start (43 samples, 0.03%)</title><rect x="68.6983%" y="869" width="0.0285%" height="15" fill="rgb(222,120,24)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="879.50"></text></g><g><title>_dl_start (43 samples, 0.03%)</title><rect x="68.6983%" y="853" width="0.0285%" height="15" fill="rgb(248,3,3)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="863.50"></text></g><g><title>_dl_start_final (43 samples, 0.03%)</title><rect x="68.6983%" y="837" width="0.0285%" height="15" fill="rgb(228,218,5)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="847.50"></text></g><g><title>_dl_sysdep_start (43 samples, 0.03%)</title><rect x="68.6983%" y="821" width="0.0285%" height="15" fill="rgb(212,202,43)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="831.50"></text></g><g><title>sed (95 samples, 0.06%)</title><rect x="68.6731%" y="885" width="0.0629%" height="15" fill="rgb(235,183,2)" fg:x="103739" fg:w="95"/><text x="68.9231%" y="895.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<1097844ul, G1BarrierSet>, (AccessInternal::BarrierType)2, 1097844ul>::oop_access_barrier (16 samples, 0.01%)</title><rect x="68.7493%" y="853" width="0.0106%" height="15" fill="rgb(230,165,10)" fg:x="103854" fg:w="16"/><text x="68.9993%" y="863.50"></text></g><g><title>[anon] (381 samples, 0.25%)</title><rect x="68.7486%" y="869" width="0.2522%" height="15" fill="rgb(219,54,40)" fg:x="103853" fg:w="381"/><text x="68.9986%" y="879.50"></text></g><g><title>__GI___close_nocancel (17 samples, 0.01%)</title><rect x="69.0458%" y="853" width="0.0113%" height="15" fill="rgb(244,73,9)" fg:x="104302" fg:w="17"/><text x="69.2958%" y="863.50"></text></g><g><title>link_path_walk.part.0 (28 samples, 0.02%)</title><rect x="69.0710%" y="741" width="0.0185%" height="15" fill="rgb(212,32,45)" fg:x="104340" fg:w="28"/><text x="69.3210%" y="751.50"></text></g><g><title>path_lookupat (47 samples, 0.03%)</title><rect x="69.0677%" y="757" width="0.0311%" height="15" fill="rgb(205,58,31)" fg:x="104335" fg:w="47"/><text x="69.3177%" y="767.50"></text></g><g><title>filename_lookup (50 samples, 0.03%)</title><rect x="69.0670%" y="773" width="0.0331%" height="15" fill="rgb(250,120,43)" fg:x="104334" fg:w="50"/><text x="69.3170%" y="783.50"></text></g><g><title>__do_sys_newlstat (67 samples, 0.04%)</title><rect x="69.0657%" y="805" width="0.0444%" height="15" fill="rgb(235,13,10)" fg:x="104332" fg:w="67"/><text x="69.3157%" y="815.50"></text></g><g><title>vfs_statx (66 samples, 0.04%)</title><rect x="69.0663%" y="789" width="0.0437%" height="15" fill="rgb(232,219,31)" fg:x="104333" fg:w="66"/><text x="69.3163%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="69.0650%" y="837" width="0.0463%" height="15" fill="rgb(218,157,51)" fg:x="104331" fg:w="70"/><text x="69.3150%" y="847.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="69.0657%" y="821" width="0.0457%" height="15" fill="rgb(211,91,52)" fg:x="104332" fg:w="69"/><text x="69.3157%" y="831.50"></text></g><g><title>__GI___lxstat (72 samples, 0.05%)</title><rect x="69.0644%" y="853" width="0.0477%" height="15" fill="rgb(240,173,1)" fg:x="104330" fg:w="72"/><text x="69.3144%" y="863.50"></text></g><g><title>btrfs_lookup_dir_item (18 samples, 0.01%)</title><rect x="69.1160%" y="725" width="0.0119%" height="15" fill="rgb(248,20,47)" fg:x="104408" fg:w="18"/><text x="69.3660%" y="735.50"></text></g><g><title>btrfs_search_slot (17 samples, 0.01%)</title><rect x="69.1167%" y="709" width="0.0113%" height="15" fill="rgb(217,221,40)" fg:x="104409" fg:w="17"/><text x="69.3667%" y="719.50"></text></g><g><title>btrfs_lookup (22 samples, 0.01%)</title><rect x="69.1147%" y="757" width="0.0146%" height="15" fill="rgb(226,149,51)" fg:x="104406" fg:w="22"/><text x="69.3647%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (22 samples, 0.01%)</title><rect x="69.1147%" y="741" width="0.0146%" height="15" fill="rgb(252,193,7)" fg:x="104406" fg:w="22"/><text x="69.3647%" y="751.50"></text></g><g><title>__lookup_hash (27 samples, 0.02%)</title><rect x="69.1147%" y="773" width="0.0179%" height="15" fill="rgb(205,123,0)" fg:x="104406" fg:w="27"/><text x="69.3647%" y="783.50"></text></g><g><title>filename_create (48 samples, 0.03%)</title><rect x="69.1140%" y="789" width="0.0318%" height="15" fill="rgb(233,173,25)" fg:x="104405" fg:w="48"/><text x="69.3640%" y="799.50"></text></g><g><title>filename_parentat (20 samples, 0.01%)</title><rect x="69.1325%" y="773" width="0.0132%" height="15" fill="rgb(216,63,32)" fg:x="104433" fg:w="20"/><text x="69.3825%" y="783.50"></text></g><g><title>path_parentat (20 samples, 0.01%)</title><rect x="69.1325%" y="757" width="0.0132%" height="15" fill="rgb(209,56,45)" fg:x="104433" fg:w="20"/><text x="69.3825%" y="767.50"></text></g><g><title>link_path_walk.part.0 (17 samples, 0.01%)</title><rect x="69.1345%" y="741" width="0.0113%" height="15" fill="rgb(226,111,49)" fg:x="104436" fg:w="17"/><text x="69.3845%" y="751.50"></text></g><g><title>insert_with_overflow (33 samples, 0.02%)</title><rect x="69.1590%" y="725" width="0.0218%" height="15" fill="rgb(244,181,21)" fg:x="104473" fg:w="33"/><text x="69.4090%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (32 samples, 0.02%)</title><rect x="69.1597%" y="709" width="0.0212%" height="15" fill="rgb(222,126,15)" fg:x="104474" fg:w="32"/><text x="69.4097%" y="719.50"></text></g><g><title>setup_items_for_insert (18 samples, 0.01%)</title><rect x="69.1690%" y="693" width="0.0119%" height="15" fill="rgb(222,95,17)" fg:x="104488" fg:w="18"/><text x="69.4190%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (47 samples, 0.03%)</title><rect x="69.1517%" y="741" width="0.0311%" height="15" fill="rgb(254,46,5)" fg:x="104462" fg:w="47"/><text x="69.4017%" y="751.50"></text></g><g><title>btrfs_add_link (49 samples, 0.03%)</title><rect x="69.1517%" y="757" width="0.0324%" height="15" fill="rgb(236,216,35)" fg:x="104462" fg:w="49"/><text x="69.4017%" y="767.50"></text></g><g><title>btrfs_search_slot (16 samples, 0.01%)</title><rect x="69.1895%" y="725" width="0.0106%" height="15" fill="rgb(217,187,26)" fg:x="104519" fg:w="16"/><text x="69.4395%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (26 samples, 0.02%)</title><rect x="69.1895%" y="741" width="0.0172%" height="15" fill="rgb(207,192,25)" fg:x="104519" fg:w="26"/><text x="69.4395%" y="751.50"></text></g><g><title>btrfs_new_inode (52 samples, 0.03%)</title><rect x="69.1875%" y="757" width="0.0344%" height="15" fill="rgb(253,135,27)" fg:x="104516" fg:w="52"/><text x="69.4375%" y="767.50"></text></g><g><title>btrfs_mkdir (129 samples, 0.09%)</title><rect x="69.1491%" y="773" width="0.0854%" height="15" fill="rgb(211,122,29)" fg:x="104458" fg:w="129"/><text x="69.3991%" y="783.50"></text></g><g><title>do_mkdirat (184 samples, 0.12%)</title><rect x="69.1133%" y="805" width="0.1218%" height="15" fill="rgb(233,162,40)" fg:x="104404" fg:w="184"/><text x="69.3633%" y="815.50"></text></g><g><title>vfs_mkdir (131 samples, 0.09%)</title><rect x="69.1484%" y="789" width="0.0867%" height="15" fill="rgb(222,184,47)" fg:x="104457" fg:w="131"/><text x="69.3984%" y="799.50"></text></g><g><title>__GI___mkdir (187 samples, 0.12%)</title><rect x="69.1120%" y="853" width="0.1238%" height="15" fill="rgb(249,99,23)" fg:x="104402" fg:w="187"/><text x="69.3620%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.12%)</title><rect x="69.1127%" y="837" width="0.1231%" height="15" fill="rgb(214,60,12)" fg:x="104403" fg:w="186"/><text x="69.3627%" y="847.50"></text></g><g><title>do_syscall_64 (186 samples, 0.12%)</title><rect x="69.1127%" y="821" width="0.1231%" height="15" fill="rgb(250,229,36)" fg:x="104403" fg:w="186"/><text x="69.3627%" y="831.50"></text></g><g><title>read_block_for_search.isra.0 (17 samples, 0.01%)</title><rect x="69.2861%" y="725" width="0.0113%" height="15" fill="rgb(232,195,10)" fg:x="104665" fg:w="17"/><text x="69.5361%" y="735.50"></text></g><g><title>btrfs_search_slot (43 samples, 0.03%)</title><rect x="69.2696%" y="741" width="0.0285%" height="15" fill="rgb(205,213,31)" fg:x="104640" fg:w="43"/><text x="69.5196%" y="751.50"></text></g><g><title>btrfs_real_readdir (100 samples, 0.07%)</title><rect x="69.2438%" y="757" width="0.0662%" height="15" fill="rgb(237,43,8)" fg:x="104601" fg:w="100"/><text x="69.4938%" y="767.50"></text></g><g><title>iterate_dir (121 samples, 0.08%)</title><rect x="69.2424%" y="773" width="0.0801%" height="15" fill="rgb(216,208,3)" fg:x="104599" fg:w="121"/><text x="69.4924%" y="783.50"></text></g><g><title>touch_atime (16 samples, 0.01%)</title><rect x="69.3119%" y="757" width="0.0106%" height="15" fill="rgb(228,179,44)" fg:x="104704" fg:w="16"/><text x="69.5619%" y="767.50"></text></g><g><title>btrfs_dirty_inode (16 samples, 0.01%)</title><rect x="69.3119%" y="741" width="0.0106%" height="15" fill="rgb(230,192,27)" fg:x="104704" fg:w="16"/><text x="69.5619%" y="751.50"></text></g><g><title>__x64_sys_getdents64 (126 samples, 0.08%)</title><rect x="69.2398%" y="789" width="0.0834%" height="15" fill="rgb(251,30,38)" fg:x="104595" fg:w="126"/><text x="69.4898%" y="799.50"></text></g><g><title>do_syscall_64 (127 samples, 0.08%)</title><rect x="69.2398%" y="805" width="0.0841%" height="15" fill="rgb(246,55,52)" fg:x="104595" fg:w="127"/><text x="69.4898%" y="815.50"></text></g><g><title>__GI___readdir64 (134 samples, 0.09%)</title><rect x="69.2358%" y="853" width="0.0887%" height="15" fill="rgb(249,79,26)" fg:x="104589" fg:w="134"/><text x="69.4858%" y="863.50"></text></g><g><title>__GI___getdents64 (128 samples, 0.08%)</title><rect x="69.2398%" y="837" width="0.0847%" height="15" fill="rgb(220,202,16)" fg:x="104595" fg:w="128"/><text x="69.4898%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (128 samples, 0.08%)</title><rect x="69.2398%" y="821" width="0.0847%" height="15" fill="rgb(250,170,23)" fg:x="104595" fg:w="128"/><text x="69.4898%" y="831.50"></text></g><g><title>link_path_walk.part.0 (18 samples, 0.01%)</title><rect x="69.3305%" y="741" width="0.0119%" height="15" fill="rgb(230,7,37)" fg:x="104732" fg:w="18"/><text x="69.5805%" y="751.50"></text></g><g><title>filename_lookup (24 samples, 0.02%)</title><rect x="69.3298%" y="773" width="0.0159%" height="15" fill="rgb(213,71,1)" fg:x="104731" fg:w="24"/><text x="69.5798%" y="783.50"></text></g><g><title>path_lookupat (23 samples, 0.02%)</title><rect x="69.3305%" y="757" width="0.0152%" height="15" fill="rgb(227,87,39)" fg:x="104732" fg:w="23"/><text x="69.5805%" y="767.50"></text></g><g><title>__GI___xstat (41 samples, 0.03%)</title><rect x="69.3272%" y="853" width="0.0271%" height="15" fill="rgb(210,41,29)" fg:x="104727" fg:w="41"/><text x="69.5772%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="69.3272%" y="837" width="0.0271%" height="15" fill="rgb(206,191,31)" fg:x="104727" fg:w="41"/><text x="69.5772%" y="847.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="69.3278%" y="821" width="0.0265%" height="15" fill="rgb(247,75,54)" fg:x="104728" fg:w="40"/><text x="69.5778%" y="831.50"></text></g><g><title>__do_sys_newstat (40 samples, 0.03%)</title><rect x="69.3278%" y="805" width="0.0265%" height="15" fill="rgb(208,54,50)" fg:x="104728" fg:w="40"/><text x="69.5778%" y="815.50"></text></g><g><title>vfs_statx (37 samples, 0.02%)</title><rect x="69.3298%" y="789" width="0.0245%" height="15" fill="rgb(214,90,37)" fg:x="104731" fg:w="37"/><text x="69.5798%" y="799.50"></text></g><g><title>__GI_remove (16 samples, 0.01%)</title><rect x="69.3543%" y="837" width="0.0106%" height="15" fill="rgb(220,132,6)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="847.50"></text></g><g><title>__GI___rmdir (16 samples, 0.01%)</title><rect x="69.3543%" y="821" width="0.0106%" height="15" fill="rgb(213,167,7)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="69.3543%" y="805" width="0.0106%" height="15" fill="rgb(243,36,27)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="815.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="69.3543%" y="789" width="0.0106%" height="15" fill="rgb(235,147,12)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="799.50"></text></g><g><title>__GI_remove (46 samples, 0.03%)</title><rect x="69.3543%" y="853" width="0.0305%" height="15" fill="rgb(212,198,44)" fg:x="104768" fg:w="46"/><text x="69.6043%" y="863.50"></text></g><g><title>__unlink (30 samples, 0.02%)</title><rect x="69.3649%" y="837" width="0.0199%" height="15" fill="rgb(218,68,50)" fg:x="104784" fg:w="30"/><text x="69.6149%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="69.3662%" y="821" width="0.0185%" height="15" fill="rgb(224,79,48)" fg:x="104786" fg:w="28"/><text x="69.6162%" y="831.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="69.3662%" y="805" width="0.0185%" height="15" fill="rgb(213,191,50)" fg:x="104786" fg:w="28"/><text x="69.6162%" y="815.50"></text></g><g><title>do_unlinkat (26 samples, 0.02%)</title><rect x="69.3675%" y="789" width="0.0172%" height="15" fill="rgb(254,146,10)" fg:x="104788" fg:w="26"/><text x="69.6175%" y="799.50"></text></g><g><title>kmem_cache_alloc (24 samples, 0.02%)</title><rect x="69.4040%" y="773" width="0.0159%" height="15" fill="rgb(215,175,11)" fg:x="104843" fg:w="24"/><text x="69.6540%" y="783.50"></text></g><g><title>memset_erms (20 samples, 0.01%)</title><rect x="69.4066%" y="757" width="0.0132%" height="15" fill="rgb(207,49,7)" fg:x="104847" fg:w="20"/><text x="69.6566%" y="767.50"></text></g><g><title>__x64_sys_unlinkat (51 samples, 0.03%)</title><rect x="69.3987%" y="805" width="0.0338%" height="15" fill="rgb(234,144,29)" fg:x="104835" fg:w="51"/><text x="69.6487%" y="815.50"></text></g><g><title>getname_flags.part.0 (47 samples, 0.03%)</title><rect x="69.4013%" y="789" width="0.0311%" height="15" fill="rgb(213,222,48)" fg:x="104839" fg:w="47"/><text x="69.6513%" y="799.50"></text></g><g><title>strncpy_from_user (19 samples, 0.01%)</title><rect x="69.4198%" y="773" width="0.0126%" height="15" fill="rgb(222,8,6)" fg:x="104867" fg:w="19"/><text x="69.6698%" y="783.50"></text></g><g><title>btrfs_del_dir_entries_in_log (17 samples, 0.01%)</title><rect x="69.4437%" y="741" width="0.0113%" height="15" fill="rgb(221,114,49)" fg:x="104903" fg:w="17"/><text x="69.6937%" y="751.50"></text></g><g><title>btrfs_del_items (25 samples, 0.02%)</title><rect x="69.4649%" y="741" width="0.0165%" height="15" fill="rgb(250,140,42)" fg:x="104935" fg:w="25"/><text x="69.7149%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (16 samples, 0.01%)</title><rect x="69.4860%" y="741" width="0.0106%" height="15" fill="rgb(250,150,27)" fg:x="104967" fg:w="16"/><text x="69.7360%" y="751.50"></text></g><g><title>__btrfs_unlink_inode (88 samples, 0.06%)</title><rect x="69.4423%" y="757" width="0.0583%" height="15" fill="rgb(252,159,3)" fg:x="104901" fg:w="88"/><text x="69.6923%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (17 samples, 0.01%)</title><rect x="69.5019%" y="725" width="0.0113%" height="15" fill="rgb(241,182,3)" fg:x="104991" fg:w="17"/><text x="69.7519%" y="735.50"></text></g><g><title>btrfs_orphan_add (21 samples, 0.01%)</title><rect x="69.5006%" y="757" width="0.0139%" height="15" fill="rgb(236,3,9)" fg:x="104989" fg:w="21"/><text x="69.7506%" y="767.50"></text></g><g><title>btrfs_insert_orphan_item (21 samples, 0.01%)</title><rect x="69.5006%" y="741" width="0.0139%" height="15" fill="rgb(223,227,51)" fg:x="104989" fg:w="21"/><text x="69.7506%" y="751.50"></text></g><g><title>btrfs_rmdir (123 samples, 0.08%)</title><rect x="69.4397%" y="773" width="0.0814%" height="15" fill="rgb(232,133,30)" fg:x="104897" fg:w="123"/><text x="69.6897%" y="783.50"></text></g><g><title>btrfs_del_items (22 samples, 0.01%)</title><rect x="69.5344%" y="709" width="0.0146%" height="15" fill="rgb(209,93,27)" fg:x="105040" fg:w="22"/><text x="69.7844%" y="719.50"></text></g><g><title>btrfs_lookup_inode (21 samples, 0.01%)</title><rect x="69.5496%" y="709" width="0.0139%" height="15" fill="rgb(208,108,34)" fg:x="105063" fg:w="21"/><text x="69.7996%" y="719.50"></text></g><g><title>btrfs_search_slot (21 samples, 0.01%)</title><rect x="69.5496%" y="693" width="0.0139%" height="15" fill="rgb(215,189,13)" fg:x="105063" fg:w="21"/><text x="69.7996%" y="703.50"></text></g><g><title>__btrfs_update_delayed_inode (48 samples, 0.03%)</title><rect x="69.5344%" y="725" width="0.0318%" height="15" fill="rgb(206,88,23)" fg:x="105040" fg:w="48"/><text x="69.7844%" y="735.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (51 samples, 0.03%)</title><rect x="69.5344%" y="741" width="0.0338%" height="15" fill="rgb(240,173,0)" fg:x="105040" fg:w="51"/><text x="69.7844%" y="751.50"></text></g><g><title>btrfs_search_slot (19 samples, 0.01%)</title><rect x="69.5694%" y="725" width="0.0126%" height="15" fill="rgb(223,106,52)" fg:x="105093" fg:w="19"/><text x="69.8194%" y="735.50"></text></g><g><title>btrfs_del_orphan_item (23 samples, 0.02%)</title><rect x="69.5681%" y="741" width="0.0152%" height="15" fill="rgb(206,130,16)" fg:x="105091" fg:w="23"/><text x="69.8181%" y="751.50"></text></g><g><title>btrfs_del_items (33 samples, 0.02%)</title><rect x="69.5873%" y="725" width="0.0218%" height="15" fill="rgb(220,54,25)" fg:x="105120" fg:w="33"/><text x="69.8373%" y="735.50"></text></g><g><title>__btrfs_kill_delayed_node (23 samples, 0.02%)</title><rect x="69.6112%" y="709" width="0.0152%" height="15" fill="rgb(210,4,38)" fg:x="105156" fg:w="23"/><text x="69.8612%" y="719.50"></text></g><g><title>btrfs_kill_delayed_inode_items (24 samples, 0.02%)</title><rect x="69.6112%" y="725" width="0.0159%" height="15" fill="rgb(238,94,39)" fg:x="105156" fg:w="24"/><text x="69.8612%" y="735.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.02%)</title><rect x="69.6277%" y="725" width="0.0165%" height="15" fill="rgb(234,124,34)" fg:x="105181" fg:w="25"/><text x="69.8777%" y="735.50"></text></g><g><title>btrfs_truncate_inode_items (98 samples, 0.06%)</title><rect x="69.5833%" y="741" width="0.0649%" height="15" fill="rgb(221,91,40)" fg:x="105114" fg:w="98"/><text x="69.8333%" y="751.50"></text></g><g><title>evict (189 samples, 0.13%)</title><rect x="69.5284%" y="773" width="0.1251%" height="15" fill="rgb(246,53,28)" fg:x="105031" fg:w="189"/><text x="69.7784%" y="783.50"></text></g><g><title>btrfs_evict_inode (188 samples, 0.12%)</title><rect x="69.5291%" y="757" width="0.1245%" height="15" fill="rgb(229,109,7)" fg:x="105032" fg:w="188"/><text x="69.7791%" y="767.50"></text></g><g><title>d_walk (20 samples, 0.01%)</title><rect x="69.6535%" y="757" width="0.0132%" height="15" fill="rgb(249,117,8)" fg:x="105220" fg:w="20"/><text x="69.9035%" y="767.50"></text></g><g><title>___d_drop (17 samples, 0.01%)</title><rect x="69.6681%" y="725" width="0.0113%" height="15" fill="rgb(210,181,1)" fg:x="105242" fg:w="17"/><text x="69.9181%" y="735.50"></text></g><g><title>__dentry_kill (29 samples, 0.02%)</title><rect x="69.6681%" y="741" width="0.0192%" height="15" fill="rgb(211,66,1)" fg:x="105242" fg:w="29"/><text x="69.9181%" y="751.50"></text></g><g><title>do_rmdir (396 samples, 0.26%)</title><rect x="69.4324%" y="805" width="0.2621%" height="15" fill="rgb(221,90,14)" fg:x="104886" fg:w="396"/><text x="69.6824%" y="815.50"></text></g><g><title>vfs_rmdir.part.0 (385 samples, 0.25%)</title><rect x="69.4397%" y="789" width="0.2549%" height="15" fill="rgb(219,222,44)" fg:x="104897" fg:w="385"/><text x="69.6897%" y="799.50"></text></g><g><title>shrink_dcache_parent (62 samples, 0.04%)</title><rect x="69.6535%" y="773" width="0.0410%" height="15" fill="rgb(246,34,33)" fg:x="105220" fg:w="62"/><text x="69.9035%" y="783.50"></text></g><g><title>shrink_dentry_list (42 samples, 0.03%)</title><rect x="69.6668%" y="757" width="0.0278%" height="15" fill="rgb(227,135,41)" fg:x="105240" fg:w="42"/><text x="69.9168%" y="767.50"></text></g><g><title>__lookup_hash (51 samples, 0.03%)</title><rect x="69.6979%" y="789" width="0.0338%" height="15" fill="rgb(226,15,14)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="799.50"></text></g><g><title>lookup_dcache (51 samples, 0.03%)</title><rect x="69.6979%" y="773" width="0.0338%" height="15" fill="rgb(236,148,47)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="783.50"></text></g><g><title>d_lookup (51 samples, 0.03%)</title><rect x="69.6979%" y="757" width="0.0338%" height="15" fill="rgb(233,162,52)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="767.50"></text></g><g><title>__d_lookup (51 samples, 0.03%)</title><rect x="69.6979%" y="741" width="0.0338%" height="15" fill="rgb(244,35,28)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="751.50"></text></g><g><title>alloc_extent_map (18 samples, 0.01%)</title><rect x="69.7515%" y="741" width="0.0119%" height="15" fill="rgb(205,121,10)" fg:x="105368" fg:w="18"/><text x="70.0015%" y="751.50"></text></g><g><title>kmem_cache_alloc (17 samples, 0.01%)</title><rect x="69.7522%" y="725" width="0.0113%" height="15" fill="rgb(250,58,18)" fg:x="105369" fg:w="17"/><text x="70.0022%" y="735.50"></text></g><g><title>btrfs_drop_extent_cache (36 samples, 0.02%)</title><rect x="69.7488%" y="757" width="0.0238%" height="15" fill="rgb(216,37,13)" fg:x="105364" fg:w="36"/><text x="69.9988%" y="767.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (18 samples, 0.01%)</title><rect x="69.7727%" y="757" width="0.0119%" height="15" fill="rgb(221,215,42)" fg:x="105400" fg:w="18"/><text x="70.0227%" y="767.50"></text></g><g><title>clear_extent_bit (17 samples, 0.01%)</title><rect x="69.7733%" y="741" width="0.0113%" height="15" fill="rgb(217,214,19)" fg:x="105401" fg:w="17"/><text x="70.0233%" y="751.50"></text></g><g><title>__clear_extent_bit (17 samples, 0.01%)</title><rect x="69.7733%" y="725" width="0.0113%" height="15" fill="rgb(233,139,13)" fg:x="105401" fg:w="17"/><text x="70.0233%" y="735.50"></text></g><g><title>clear_record_extent_bits (16 samples, 0.01%)</title><rect x="69.7912%" y="741" width="0.0106%" height="15" fill="rgb(247,168,23)" fg:x="105428" fg:w="16"/><text x="70.0412%" y="751.50"></text></g><g><title>__clear_extent_bit (16 samples, 0.01%)</title><rect x="69.7912%" y="725" width="0.0106%" height="15" fill="rgb(207,202,1)" fg:x="105428" fg:w="16"/><text x="70.0412%" y="735.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (18 samples, 0.01%)</title><rect x="69.7905%" y="757" width="0.0119%" height="15" fill="rgb(220,155,48)" fg:x="105427" fg:w="18"/><text x="70.0405%" y="767.50"></text></g><g><title>btrfs_destroy_inode (105 samples, 0.07%)</title><rect x="69.7455%" y="773" width="0.0695%" height="15" fill="rgb(250,43,26)" fg:x="105359" fg:w="105"/><text x="69.9955%" y="783.50"></text></g><g><title>rb_erase (19 samples, 0.01%)</title><rect x="69.8025%" y="757" width="0.0126%" height="15" fill="rgb(212,190,23)" fg:x="105445" fg:w="19"/><text x="70.0525%" y="767.50"></text></g><g><title>destroy_inode (114 samples, 0.08%)</title><rect x="69.7402%" y="789" width="0.0755%" height="15" fill="rgb(216,39,24)" fg:x="105351" fg:w="114"/><text x="69.9902%" y="799.50"></text></g><g><title>btrfs_trans_release_metadata (19 samples, 0.01%)</title><rect x="69.8574%" y="741" width="0.0126%" height="15" fill="rgb(252,113,16)" fg:x="105528" fg:w="19"/><text x="70.1074%" y="751.50"></text></g><g><title>btrfs_block_rsv_release (18 samples, 0.01%)</title><rect x="69.8581%" y="725" width="0.0119%" height="15" fill="rgb(208,113,19)" fg:x="105529" fg:w="18"/><text x="70.1081%" y="735.50"></text></g><g><title>__btrfs_end_transaction (32 samples, 0.02%)</title><rect x="69.8528%" y="757" width="0.0212%" height="15" fill="rgb(234,107,25)" fg:x="105521" fg:w="32"/><text x="70.1028%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (29 samples, 0.02%)</title><rect x="69.8740%" y="757" width="0.0192%" height="15" fill="rgb(234,217,51)" fg:x="105553" fg:w="29"/><text x="70.1240%" y="767.50"></text></g><g><title>btrfs_get_token_32 (76 samples, 0.05%)</title><rect x="69.9395%" y="709" width="0.0503%" height="15" fill="rgb(251,29,42)" fg:x="105652" fg:w="76"/><text x="70.1895%" y="719.50"></text></g><g><title>btrfs_set_token_32 (64 samples, 0.04%)</title><rect x="69.9977%" y="709" width="0.0424%" height="15" fill="rgb(221,62,51)" fg:x="105740" fg:w="64"/><text x="70.2477%" y="719.50"></text></g><g><title>memcpy_extent_buffer (16 samples, 0.01%)</title><rect x="70.0428%" y="709" width="0.0106%" height="15" fill="rgb(240,192,43)" fg:x="105808" fg:w="16"/><text x="70.2928%" y="719.50"></text></g><g><title>memmove_extent_buffer (98 samples, 0.06%)</title><rect x="70.0534%" y="709" width="0.0649%" height="15" fill="rgb(224,157,47)" fg:x="105824" fg:w="98"/><text x="70.3034%" y="719.50"></text></g><g><title>memmove (75 samples, 0.05%)</title><rect x="70.0686%" y="693" width="0.0496%" height="15" fill="rgb(226,84,45)" fg:x="105847" fg:w="75"/><text x="70.3186%" y="703.50"></text></g><g><title>btrfs_del_items (300 samples, 0.20%)</title><rect x="69.9236%" y="725" width="0.1986%" height="15" fill="rgb(208,207,23)" fg:x="105628" fg:w="300"/><text x="70.1736%" y="735.50"></text></g><g><title>btrfs_read_node_slot (24 samples, 0.02%)</title><rect x="70.1527%" y="677" width="0.0159%" height="15" fill="rgb(253,34,51)" fg:x="105974" fg:w="24"/><text x="70.4027%" y="687.50"></text></g><g><title>read_tree_block (18 samples, 0.01%)</title><rect x="70.1566%" y="661" width="0.0119%" height="15" fill="rgb(227,26,34)" fg:x="105980" fg:w="18"/><text x="70.4066%" y="671.50"></text></g><g><title>balance_level (54 samples, 0.04%)</title><rect x="70.1434%" y="693" width="0.0357%" height="15" fill="rgb(245,75,19)" fg:x="105960" fg:w="54"/><text x="70.3934%" y="703.50"></text></g><g><title>find_extent_buffer (36 samples, 0.02%)</title><rect x="70.2122%" y="677" width="0.0238%" height="15" fill="rgb(250,191,31)" fg:x="106064" fg:w="36"/><text x="70.4622%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (58 samples, 0.04%)</title><rect x="70.2023%" y="693" width="0.0384%" height="15" fill="rgb(224,11,50)" fg:x="106049" fg:w="58"/><text x="70.4523%" y="703.50"></text></g><g><title>find_extent_buffer (20 samples, 0.01%)</title><rect x="70.2440%" y="677" width="0.0132%" height="15" fill="rgb(231,171,7)" fg:x="106112" fg:w="20"/><text x="70.4940%" y="687.50"></text></g><g><title>reada_for_balance (32 samples, 0.02%)</title><rect x="70.2407%" y="693" width="0.0212%" height="15" fill="rgb(252,214,10)" fg:x="106107" fg:w="32"/><text x="70.4907%" y="703.50"></text></g><g><title>btrfs_lookup_inode (211 samples, 0.14%)</title><rect x="70.1295%" y="725" width="0.1397%" height="15" fill="rgb(249,45,46)" fg:x="105939" fg:w="211"/><text x="70.3795%" y="735.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.14%)</title><rect x="70.1308%" y="709" width="0.1384%" height="15" fill="rgb(240,173,7)" fg:x="105941" fg:w="209"/><text x="70.3808%" y="719.50"></text></g><g><title>btrfs_release_path (20 samples, 0.01%)</title><rect x="70.2738%" y="725" width="0.0132%" height="15" fill="rgb(235,214,13)" fg:x="106157" fg:w="20"/><text x="70.5238%" y="735.50"></text></g><g><title>__btrfs_update_delayed_inode (574 samples, 0.38%)</title><rect x="69.9203%" y="741" width="0.3800%" height="15" fill="rgb(245,156,8)" fg:x="105623" fg:w="574"/><text x="70.1703%" y="751.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (648 samples, 0.43%)</title><rect x="69.9024%" y="757" width="0.4290%" height="15" fill="rgb(235,46,12)" fg:x="105596" fg:w="648"/><text x="70.1524%" y="767.50"></text></g><g><title>start_transaction (22 samples, 0.01%)</title><rect x="70.3168%" y="741" width="0.0146%" height="15" fill="rgb(221,81,14)" fg:x="106222" fg:w="22"/><text x="70.5668%" y="751.50"></text></g><g><title>btrfs_del_items (19 samples, 0.01%)</title><rect x="70.3334%" y="741" width="0.0126%" height="15" fill="rgb(238,207,9)" fg:x="106247" fg:w="19"/><text x="70.5834%" y="751.50"></text></g><g><title>btrfs_free_path (18 samples, 0.01%)</title><rect x="70.3460%" y="741" width="0.0119%" height="15" fill="rgb(224,129,35)" fg:x="106266" fg:w="18"/><text x="70.5960%" y="751.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="70.3460%" y="725" width="0.0119%" height="15" fill="rgb(243,218,34)" fg:x="106266" fg:w="18"/><text x="70.5960%" y="735.50"></text></g><g><title>btrfs_read_node_slot (20 samples, 0.01%)</title><rect x="70.3824%" y="709" width="0.0132%" height="15" fill="rgb(220,166,13)" fg:x="106321" fg:w="20"/><text x="70.6324%" y="719.50"></text></g><g><title>read_tree_block (16 samples, 0.01%)</title><rect x="70.3850%" y="693" width="0.0106%" height="15" fill="rgb(227,167,49)" fg:x="106325" fg:w="16"/><text x="70.6350%" y="703.50"></text></g><g><title>balance_level (50 samples, 0.03%)</title><rect x="70.3731%" y="725" width="0.0331%" height="15" fill="rgb(234,142,12)" fg:x="106307" fg:w="50"/><text x="70.6231%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (20 samples, 0.01%)</title><rect x="70.4208%" y="725" width="0.0132%" height="15" fill="rgb(207,100,48)" fg:x="106379" fg:w="20"/><text x="70.6708%" y="735.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="70.4459%" y="709" width="0.0199%" height="15" fill="rgb(210,25,14)" fg:x="106417" fg:w="30"/><text x="70.6959%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (56 samples, 0.04%)</title><rect x="70.4340%" y="725" width="0.0371%" height="15" fill="rgb(246,116,27)" fg:x="106399" fg:w="56"/><text x="70.6840%" y="735.50"></text></g><g><title>find_extent_buffer (21 samples, 0.01%)</title><rect x="70.4731%" y="709" width="0.0139%" height="15" fill="rgb(214,193,42)" fg:x="106458" fg:w="21"/><text x="70.7231%" y="719.50"></text></g><g><title>reada_for_balance (30 samples, 0.02%)</title><rect x="70.4711%" y="725" width="0.0199%" height="15" fill="rgb(214,122,8)" fg:x="106455" fg:w="30"/><text x="70.7211%" y="735.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.14%)</title><rect x="70.3579%" y="741" width="0.1384%" height="15" fill="rgb(244,173,18)" fg:x="106284" fg:w="209"/><text x="70.6079%" y="751.50"></text></g><g><title>btrfs_del_orphan_item (258 samples, 0.17%)</title><rect x="70.3314%" y="757" width="0.1708%" height="15" fill="rgb(232,68,19)" fg:x="106244" fg:w="258"/><text x="70.5814%" y="767.50"></text></g><g><title>clear_state_bit (17 samples, 0.01%)</title><rect x="70.5287%" y="725" width="0.0113%" height="15" fill="rgb(236,224,1)" fg:x="106542" fg:w="17"/><text x="70.7787%" y="735.50"></text></g><g><title>__clear_extent_bit (33 samples, 0.02%)</title><rect x="70.5214%" y="741" width="0.0218%" height="15" fill="rgb(240,11,8)" fg:x="106531" fg:w="33"/><text x="70.7714%" y="751.50"></text></g><g><title>btrfs_free_tree_block (17 samples, 0.01%)</title><rect x="70.5637%" y="709" width="0.0113%" height="15" fill="rgb(244,159,20)" fg:x="106595" fg:w="17"/><text x="70.8137%" y="719.50"></text></g><g><title>btrfs_del_leaf (19 samples, 0.01%)</title><rect x="70.5631%" y="725" width="0.0126%" height="15" fill="rgb(240,223,54)" fg:x="106594" fg:w="19"/><text x="70.8131%" y="735.50"></text></g><g><title>btrfs_get_token_32 (49 samples, 0.03%)</title><rect x="70.5796%" y="725" width="0.0324%" height="15" fill="rgb(237,146,5)" fg:x="106619" fg:w="49"/><text x="70.8296%" y="735.50"></text></g><g><title>btrfs_set_token_32 (74 samples, 0.05%)</title><rect x="70.6180%" y="725" width="0.0490%" height="15" fill="rgb(218,221,32)" fg:x="106677" fg:w="74"/><text x="70.8680%" y="735.50"></text></g><g><title>memmove_extent_buffer (81 samples, 0.05%)</title><rect x="70.6816%" y="725" width="0.0536%" height="15" fill="rgb(244,96,26)" fg:x="106773" fg:w="81"/><text x="70.9316%" y="735.50"></text></g><g><title>memmove (66 samples, 0.04%)</title><rect x="70.6915%" y="709" width="0.0437%" height="15" fill="rgb(245,184,37)" fg:x="106788" fg:w="66"/><text x="70.9415%" y="719.50"></text></g><g><title>push_leaf_left (16 samples, 0.01%)</title><rect x="70.7352%" y="725" width="0.0106%" height="15" fill="rgb(248,91,47)" fg:x="106854" fg:w="16"/><text x="70.9852%" y="735.50"></text></g><g><title>btrfs_del_items (316 samples, 0.21%)</title><rect x="70.5439%" y="741" width="0.2092%" height="15" fill="rgb(243,199,8)" fg:x="106565" fg:w="316"/><text x="70.7939%" y="751.50"></text></g><g><title>alloc_extent_map (20 samples, 0.01%)</title><rect x="70.7537%" y="725" width="0.0132%" height="15" fill="rgb(249,12,15)" fg:x="106882" fg:w="20"/><text x="71.0037%" y="735.50"></text></g><g><title>kmem_cache_alloc (19 samples, 0.01%)</title><rect x="70.7544%" y="709" width="0.0126%" height="15" fill="rgb(245,97,12)" fg:x="106883" fg:w="19"/><text x="71.0044%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (32 samples, 0.02%)</title><rect x="70.7531%" y="741" width="0.0212%" height="15" fill="rgb(244,61,1)" fg:x="106881" fg:w="32"/><text x="71.0031%" y="751.50"></text></g><g><title>btrfs_free_path (23 samples, 0.02%)</title><rect x="70.7743%" y="741" width="0.0152%" height="15" fill="rgb(222,194,10)" fg:x="106913" fg:w="23"/><text x="71.0243%" y="751.50"></text></g><g><title>btrfs_release_path (23 samples, 0.02%)</title><rect x="70.7743%" y="725" width="0.0152%" height="15" fill="rgb(226,178,8)" fg:x="106913" fg:w="23"/><text x="71.0243%" y="735.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (17 samples, 0.01%)</title><rect x="70.7928%" y="741" width="0.0113%" height="15" fill="rgb(241,32,34)" fg:x="106941" fg:w="17"/><text x="71.0428%" y="751.50"></text></g><g><title>clear_extent_bit (16 samples, 0.01%)</title><rect x="70.7934%" y="725" width="0.0106%" height="15" fill="rgb(254,26,6)" fg:x="106942" fg:w="16"/><text x="71.0434%" y="735.50"></text></g><g><title>__clear_extent_bit (16 samples, 0.01%)</title><rect x="70.7934%" y="709" width="0.0106%" height="15" fill="rgb(249,71,11)" fg:x="106942" fg:w="16"/><text x="71.0434%" y="719.50"></text></g><g><title>btrfs_read_node_slot (32 samples, 0.02%)</title><rect x="70.8378%" y="709" width="0.0212%" height="15" fill="rgb(232,170,27)" fg:x="107009" fg:w="32"/><text x="71.0878%" y="719.50"></text></g><g><title>read_tree_block (23 samples, 0.02%)</title><rect x="70.8438%" y="693" width="0.0152%" height="15" fill="rgb(214,223,17)" fg:x="107018" fg:w="23"/><text x="71.0938%" y="703.50"></text></g><g><title>balance_level (60 samples, 0.04%)</title><rect x="70.8272%" y="725" width="0.0397%" height="15" fill="rgb(250,18,15)" fg:x="106993" fg:w="60"/><text x="71.0772%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (35 samples, 0.02%)</title><rect x="70.8848%" y="725" width="0.0232%" height="15" fill="rgb(212,153,51)" fg:x="107080" fg:w="35"/><text x="71.1348%" y="735.50"></text></g><g><title>find_extent_buffer (21 samples, 0.01%)</title><rect x="70.9186%" y="709" width="0.0139%" height="15" fill="rgb(219,194,12)" fg:x="107131" fg:w="21"/><text x="71.1686%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (43 samples, 0.03%)</title><rect x="70.9080%" y="725" width="0.0285%" height="15" fill="rgb(212,58,17)" fg:x="107115" fg:w="43"/><text x="71.1580%" y="735.50"></text></g><g><title>reada_for_balance (30 samples, 0.02%)</title><rect x="70.9364%" y="725" width="0.0199%" height="15" fill="rgb(254,5,10)" fg:x="107158" fg:w="30"/><text x="71.1864%" y="735.50"></text></g><g><title>btrfs_search_slot (232 samples, 0.15%)</title><rect x="70.8126%" y="741" width="0.1536%" height="15" fill="rgb(246,91,7)" fg:x="106971" fg:w="232"/><text x="71.0626%" y="751.50"></text></g><g><title>lock_extent_bits (23 samples, 0.02%)</title><rect x="70.9762%" y="741" width="0.0152%" height="15" fill="rgb(218,108,49)" fg:x="107218" fg:w="23"/><text x="71.2262%" y="751.50"></text></g><g><title>__set_extent_bit (22 samples, 0.01%)</title><rect x="70.9768%" y="725" width="0.0146%" height="15" fill="rgb(238,123,20)" fg:x="107219" fg:w="22"/><text x="71.2268%" y="735.50"></text></g><g><title>btrfs_truncate_inode_items (734 samples, 0.49%)</title><rect x="70.5081%" y="757" width="0.4859%" height="15" fill="rgb(231,69,23)" fg:x="106511" fg:w="734"/><text x="70.7581%" y="767.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (43 samples, 0.03%)</title><rect x="71.0159%" y="693" width="0.0285%" height="15" fill="rgb(230,209,3)" fg:x="107278" fg:w="43"/><text x="71.2659%" y="703.50"></text></g><g><title>btrfs_reduce_alloc_profile (23 samples, 0.02%)</title><rect x="71.0291%" y="677" width="0.0152%" height="15" fill="rgb(231,19,0)" fg:x="107298" fg:w="23"/><text x="71.2791%" y="687.50"></text></g><g><title>btrfs_block_rsv_refill (83 samples, 0.05%)</title><rect x="71.0040%" y="741" width="0.0549%" height="15" fill="rgb(226,192,25)" fg:x="107260" fg:w="83"/><text x="71.2540%" y="751.50"></text></g><g><title>btrfs_reserve_metadata_bytes (73 samples, 0.05%)</title><rect x="71.0106%" y="725" width="0.0483%" height="15" fill="rgb(223,175,53)" fg:x="107270" fg:w="73"/><text x="71.2606%" y="735.50"></text></g><g><title>__reserve_bytes (71 samples, 0.05%)</title><rect x="71.0119%" y="709" width="0.0470%" height="15" fill="rgb(248,35,51)" fg:x="107272" fg:w="71"/><text x="71.2619%" y="719.50"></text></g><g><title>calc_available_free_space.isra.0 (22 samples, 0.01%)</title><rect x="71.0443%" y="693" width="0.0146%" height="15" fill="rgb(230,37,26)" fg:x="107321" fg:w="22"/><text x="71.2943%" y="703.50"></text></g><g><title>join_transaction (17 samples, 0.01%)</title><rect x="71.0649%" y="725" width="0.0113%" height="15" fill="rgb(206,120,22)" fg:x="107352" fg:w="17"/><text x="71.3149%" y="735.50"></text></g><g><title>evict_refill_and_join (134 samples, 0.09%)</title><rect x="70.9954%" y="757" width="0.0887%" height="15" fill="rgb(207,165,28)" fg:x="107247" fg:w="134"/><text x="71.2454%" y="767.50"></text></g><g><title>start_transaction (38 samples, 0.03%)</title><rect x="71.0589%" y="741" width="0.0252%" height="15" fill="rgb(226,23,46)" fg:x="107343" fg:w="38"/><text x="71.3089%" y="751.50"></text></g><g><title>btrfs_evict_inode (1,897 samples, 1.26%)</title><rect x="69.8475%" y="773" width="1.2558%" height="15" fill="rgb(208,130,44)" fg:x="105513" fg:w="1897"/><text x="70.0975%" y="783.50"></text></g><g><title>evict (1,940 samples, 1.28%)</title><rect x="69.8236%" y="789" width="1.2842%" height="15" fill="rgb(231,67,8)" fg:x="105477" fg:w="1940"/><text x="70.0736%" y="799.50"></text></g><g><title>filename_parentat (38 samples, 0.03%)</title><rect x="71.1079%" y="789" width="0.0252%" height="15" fill="rgb(205,183,22)" fg:x="107417" fg:w="38"/><text x="71.3579%" y="799.50"></text></g><g><title>path_parentat (34 samples, 0.02%)</title><rect x="71.1105%" y="773" width="0.0225%" height="15" fill="rgb(224,47,9)" fg:x="107421" fg:w="34"/><text x="71.3605%" y="783.50"></text></g><g><title>path_init (21 samples, 0.01%)</title><rect x="71.1191%" y="757" width="0.0139%" height="15" fill="rgb(250,183,49)" fg:x="107434" fg:w="21"/><text x="71.3691%" y="767.50"></text></g><g><title>security_path_unlink (18 samples, 0.01%)</title><rect x="71.1536%" y="789" width="0.0119%" height="15" fill="rgb(220,151,39)" fg:x="107486" fg:w="18"/><text x="71.4036%" y="799.50"></text></g><g><title>__btrfs_end_transaction (24 samples, 0.02%)</title><rect x="71.1734%" y="757" width="0.0159%" height="15" fill="rgb(220,118,20)" fg:x="107516" fg:w="24"/><text x="71.4234%" y="767.50"></text></g><g><title>btrfs_free_path (17 samples, 0.01%)</title><rect x="71.2085%" y="725" width="0.0113%" height="15" fill="rgb(231,65,51)" fg:x="107569" fg:w="17"/><text x="71.4585%" y="735.50"></text></g><g><title>btrfs_release_path (17 samples, 0.01%)</title><rect x="71.2085%" y="709" width="0.0113%" height="15" fill="rgb(253,125,37)" fg:x="107569" fg:w="17"/><text x="71.4585%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (22 samples, 0.01%)</title><rect x="71.2436%" y="693" width="0.0146%" height="15" fill="rgb(232,102,6)" fg:x="107622" fg:w="22"/><text x="71.4936%" y="703.50"></text></g><g><title>btrfs_lookup_dir_index_item (62 samples, 0.04%)</title><rect x="71.2198%" y="725" width="0.0410%" height="15" fill="rgb(251,105,13)" fg:x="107586" fg:w="62"/><text x="71.4698%" y="735.50"></text></g><g><title>btrfs_search_slot (62 samples, 0.04%)</title><rect x="71.2198%" y="709" width="0.0410%" height="15" fill="rgb(222,179,29)" fg:x="107586" fg:w="62"/><text x="71.4698%" y="719.50"></text></g><g><title>find_extent_buffer (19 samples, 0.01%)</title><rect x="71.2913%" y="677" width="0.0126%" height="15" fill="rgb(229,180,53)" fg:x="107694" fg:w="19"/><text x="71.5413%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (28 samples, 0.02%)</title><rect x="71.2860%" y="693" width="0.0185%" height="15" fill="rgb(238,104,13)" fg:x="107686" fg:w="28"/><text x="71.5360%" y="703.50"></text></g><g><title>btrfs_search_slot (73 samples, 0.05%)</title><rect x="71.2615%" y="709" width="0.0483%" height="15" fill="rgb(210,130,5)" fg:x="107649" fg:w="73"/><text x="71.5115%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (75 samples, 0.05%)</title><rect x="71.2608%" y="725" width="0.0496%" height="15" fill="rgb(233,87,49)" fg:x="107648" fg:w="75"/><text x="71.5108%" y="735.50"></text></g><g><title>btrfs_release_path (16 samples, 0.01%)</title><rect x="71.3105%" y="725" width="0.0106%" height="15" fill="rgb(243,34,9)" fg:x="107723" fg:w="16"/><text x="71.5605%" y="735.50"></text></g><g><title>btrfs_del_dir_entries_in_log (196 samples, 0.13%)</title><rect x="71.2019%" y="741" width="0.1297%" height="15" fill="rgb(235,225,10)" fg:x="107559" fg:w="196"/><text x="71.4519%" y="751.50"></text></g><g><title>btrfs_free_path (27 samples, 0.02%)</title><rect x="71.3349%" y="709" width="0.0179%" height="15" fill="rgb(212,0,30)" fg:x="107760" fg:w="27"/><text x="71.5849%" y="719.50"></text></g><g><title>btrfs_release_path (25 samples, 0.02%)</title><rect x="71.3363%" y="693" width="0.0165%" height="15" fill="rgb(211,177,0)" fg:x="107762" fg:w="25"/><text x="71.5863%" y="703.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="71.4243%" y="661" width="0.0126%" height="15" fill="rgb(225,220,11)" fg:x="107895" fg:w="19"/><text x="71.6743%" y="671.50"></text></g><g><title>find_extent_buffer (32 samples, 0.02%)</title><rect x="71.4217%" y="677" width="0.0212%" height="15" fill="rgb(215,10,13)" fg:x="107891" fg:w="32"/><text x="71.6717%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.04%)</title><rect x="71.4084%" y="693" width="0.0357%" height="15" fill="rgb(240,177,14)" fg:x="107871" fg:w="54"/><text x="71.6584%" y="703.50"></text></g><g><title>btrfs_search_slot (145 samples, 0.10%)</title><rect x="71.3528%" y="709" width="0.0960%" height="15" fill="rgb(243,7,39)" fg:x="107787" fg:w="145"/><text x="71.6028%" y="719.50"></text></g><g><title>btrfs_del_inode_ref (201 samples, 0.13%)</title><rect x="71.3323%" y="725" width="0.1331%" height="15" fill="rgb(212,99,0)" fg:x="107756" fg:w="201"/><text x="71.5823%" y="735.50"></text></g><g><title>btrfs_del_inode_ref_in_log (219 samples, 0.14%)</title><rect x="71.3316%" y="741" width="0.1450%" height="15" fill="rgb(225,162,48)" fg:x="107755" fg:w="219"/><text x="71.5816%" y="751.50"></text></g><g><title>btrfs_get_token_32 (112 samples, 0.07%)</title><rect x="71.5104%" y="725" width="0.0741%" height="15" fill="rgb(246,16,25)" fg:x="108025" fg:w="112"/><text x="71.7604%" y="735.50"></text></g><g><title>btrfs_set_token_32 (104 samples, 0.07%)</title><rect x="71.5878%" y="725" width="0.0688%" height="15" fill="rgb(220,150,2)" fg:x="108142" fg:w="104"/><text x="71.8378%" y="735.50"></text></g><g><title>check_setget_bounds.isra.0 (25 samples, 0.02%)</title><rect x="71.6401%" y="709" width="0.0165%" height="15" fill="rgb(237,113,11)" fg:x="108221" fg:w="25"/><text x="71.8901%" y="719.50"></text></g><g><title>memcpy_extent_buffer (23 samples, 0.02%)</title><rect x="71.6600%" y="725" width="0.0152%" height="15" fill="rgb(236,70,20)" fg:x="108251" fg:w="23"/><text x="71.9100%" y="735.50"></text></g><g><title>memmove (20 samples, 0.01%)</title><rect x="71.6620%" y="709" width="0.0132%" height="15" fill="rgb(234,94,7)" fg:x="108254" fg:w="20"/><text x="71.9120%" y="719.50"></text></g><g><title>memmove_extent_buffer (72 samples, 0.05%)</title><rect x="71.6752%" y="725" width="0.0477%" height="15" fill="rgb(250,221,0)" fg:x="108274" fg:w="72"/><text x="71.9252%" y="735.50"></text></g><g><title>memmove (61 samples, 0.04%)</title><rect x="71.6825%" y="709" width="0.0404%" height="15" fill="rgb(245,149,46)" fg:x="108285" fg:w="61"/><text x="71.9325%" y="719.50"></text></g><g><title>btrfs_del_items (386 samples, 0.26%)</title><rect x="71.4766%" y="741" width="0.2555%" height="15" fill="rgb(215,37,27)" fg:x="107974" fg:w="386"/><text x="71.7266%" y="751.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (17 samples, 0.01%)</title><rect x="71.7348%" y="725" width="0.0113%" height="15" fill="rgb(232,65,3)" fg:x="108364" fg:w="17"/><text x="71.9848%" y="735.50"></text></g><g><title>btrfs_get_or_create_delayed_node (18 samples, 0.01%)</title><rect x="71.7460%" y="725" width="0.0119%" height="15" fill="rgb(214,2,16)" fg:x="108381" fg:w="18"/><text x="71.9960%" y="735.50"></text></g><g><title>btrfs_get_delayed_node (18 samples, 0.01%)</title><rect x="71.7460%" y="709" width="0.0119%" height="15" fill="rgb(227,131,50)" fg:x="108381" fg:w="18"/><text x="71.9960%" y="719.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (45 samples, 0.03%)</title><rect x="71.7321%" y="741" width="0.0298%" height="15" fill="rgb(247,131,45)" fg:x="108360" fg:w="45"/><text x="71.9821%" y="751.50"></text></g><g><title>__btrfs_add_delayed_item (20 samples, 0.01%)</title><rect x="71.7626%" y="725" width="0.0132%" height="15" fill="rgb(215,97,47)" fg:x="108406" fg:w="20"/><text x="72.0126%" y="735.50"></text></g><g><title>kmem_cache_alloc_trace (17 samples, 0.01%)</title><rect x="71.7977%" y="725" width="0.0113%" height="15" fill="rgb(233,143,12)" fg:x="108459" fg:w="17"/><text x="72.0477%" y="735.50"></text></g><g><title>btrfs_delete_delayed_dir_index (84 samples, 0.06%)</title><rect x="71.7619%" y="741" width="0.0556%" height="15" fill="rgb(222,57,17)" fg:x="108405" fg:w="84"/><text x="72.0119%" y="751.50"></text></g><g><title>btrfs_match_dir_item_name (26 samples, 0.02%)</title><rect x="71.8235%" y="725" width="0.0172%" height="15" fill="rgb(214,119,38)" fg:x="108498" fg:w="26"/><text x="72.0735%" y="735.50"></text></g><g><title>btrfs_read_node_slot (35 samples, 0.02%)</title><rect x="71.8678%" y="693" width="0.0232%" height="15" fill="rgb(217,28,47)" fg:x="108565" fg:w="35"/><text x="72.1178%" y="703.50"></text></g><g><title>read_tree_block (25 samples, 0.02%)</title><rect x="71.8745%" y="677" width="0.0165%" height="15" fill="rgb(231,14,52)" fg:x="108575" fg:w="25"/><text x="72.1245%" y="687.50"></text></g><g><title>balance_level (71 samples, 0.05%)</title><rect x="71.8533%" y="709" width="0.0470%" height="15" fill="rgb(220,158,18)" fg:x="108543" fg:w="71"/><text x="72.1033%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (38 samples, 0.03%)</title><rect x="71.9115%" y="709" width="0.0252%" height="15" fill="rgb(222,143,46)" fg:x="108631" fg:w="38"/><text x="72.1615%" y="719.50"></text></g><g><title>__radix_tree_lookup (20 samples, 0.01%)</title><rect x="71.9479%" y="677" width="0.0132%" height="15" fill="rgb(227,165,5)" fg:x="108686" fg:w="20"/><text x="72.1979%" y="687.50"></text></g><g><title>find_extent_buffer (36 samples, 0.02%)</title><rect x="71.9460%" y="693" width="0.0238%" height="15" fill="rgb(216,222,49)" fg:x="108683" fg:w="36"/><text x="72.1960%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (57 samples, 0.04%)</title><rect x="71.9367%" y="709" width="0.0377%" height="15" fill="rgb(238,73,39)" fg:x="108669" fg:w="57"/><text x="72.1867%" y="719.50"></text></g><g><title>reada_for_balance (25 samples, 0.02%)</title><rect x="71.9744%" y="709" width="0.0165%" height="15" fill="rgb(252,115,9)" fg:x="108726" fg:w="25"/><text x="72.2244%" y="719.50"></text></g><g><title>btrfs_search_slot (236 samples, 0.16%)</title><rect x="71.8407%" y="725" width="0.1562%" height="15" fill="rgb(238,202,4)" fg:x="108524" fg:w="236"/><text x="72.0907%" y="735.50"></text></g><g><title>btrfs_lookup_dir_item (270 samples, 0.18%)</title><rect x="71.8222%" y="741" width="0.1787%" height="15" fill="rgb(252,153,44)" fg:x="108496" fg:w="270"/><text x="72.0722%" y="751.50"></text></g><g><title>btrfs_release_path (24 samples, 0.02%)</title><rect x="72.0009%" y="741" width="0.0159%" height="15" fill="rgb(235,128,27)" fg:x="108766" fg:w="24"/><text x="72.2509%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (21 samples, 0.01%)</title><rect x="72.0188%" y="725" width="0.0139%" height="15" fill="rgb(221,121,47)" fg:x="108793" fg:w="21"/><text x="72.2688%" y="735.50"></text></g><g><title>btrfs_update_inode (31 samples, 0.02%)</title><rect x="72.0168%" y="741" width="0.0205%" height="15" fill="rgb(247,211,47)" fg:x="108790" fg:w="31"/><text x="72.2668%" y="751.50"></text></g><g><title>__btrfs_unlink_inode (1,299 samples, 0.86%)</title><rect x="71.1893%" y="757" width="0.8599%" height="15" fill="rgb(252,47,49)" fg:x="107540" fg:w="1299"/><text x="71.4393%" y="767.50"></text></g><g><title>btrfs_free_path (20 samples, 0.01%)</title><rect x="72.0539%" y="725" width="0.0132%" height="15" fill="rgb(219,119,53)" fg:x="108846" fg:w="20"/><text x="72.3039%" y="735.50"></text></g><g><title>btrfs_release_path (20 samples, 0.01%)</title><rect x="72.0539%" y="709" width="0.0132%" height="15" fill="rgb(243,165,53)" fg:x="108846" fg:w="20"/><text x="72.3039%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (25 samples, 0.02%)</title><rect x="72.0929%" y="693" width="0.0165%" height="15" fill="rgb(230,12,35)" fg:x="108905" fg:w="25"/><text x="72.3429%" y="703.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="72.1214%" y="661" width="0.0126%" height="15" fill="rgb(239,57,49)" fg:x="108948" fg:w="19"/><text x="72.3714%" y="671.50"></text></g><g><title>find_extent_buffer (36 samples, 0.02%)</title><rect x="72.1187%" y="677" width="0.0238%" height="15" fill="rgb(231,154,7)" fg:x="108944" fg:w="36"/><text x="72.3687%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (58 samples, 0.04%)</title><rect x="72.1095%" y="693" width="0.0384%" height="15" fill="rgb(248,81,34)" fg:x="108930" fg:w="58"/><text x="72.3595%" y="703.50"></text></g><g><title>btrfs_search_slot (127 samples, 0.08%)</title><rect x="72.0678%" y="709" width="0.0841%" height="15" fill="rgb(247,9,5)" fg:x="108867" fg:w="127"/><text x="72.3178%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (159 samples, 0.11%)</title><rect x="72.0671%" y="725" width="0.1053%" height="15" fill="rgb(228,172,27)" fg:x="108866" fg:w="159"/><text x="72.3171%" y="735.50"></text></g><g><title>setup_items_for_insert (31 samples, 0.02%)</title><rect x="72.1518%" y="709" width="0.0205%" height="15" fill="rgb(230,57,44)" fg:x="108994" fg:w="31"/><text x="72.4018%" y="719.50"></text></g><g><title>btrfs_orphan_add (192 samples, 0.13%)</title><rect x="72.0532%" y="757" width="0.1271%" height="15" fill="rgb(249,35,22)" fg:x="108845" fg:w="192"/><text x="72.3032%" y="767.50"></text></g><g><title>btrfs_insert_orphan_item (192 samples, 0.13%)</title><rect x="72.0532%" y="741" width="0.1271%" height="15" fill="rgb(250,137,27)" fg:x="108845" fg:w="192"/><text x="72.3032%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (23 samples, 0.02%)</title><rect x="72.1916%" y="741" width="0.0152%" height="15" fill="rgb(251,57,31)" fg:x="109054" fg:w="23"/><text x="72.4416%" y="751.50"></text></g><g><title>btrfs_update_inode (35 samples, 0.02%)</title><rect x="72.1882%" y="757" width="0.0232%" height="15" fill="rgb(238,60,0)" fg:x="109049" fg:w="35"/><text x="72.4382%" y="767.50"></text></g><g><title>btrfs_block_rsv_add (36 samples, 0.02%)</title><rect x="72.2174%" y="741" width="0.0238%" height="15" fill="rgb(242,185,39)" fg:x="109093" fg:w="36"/><text x="72.4674%" y="751.50"></text></g><g><title>btrfs_reserve_metadata_bytes (31 samples, 0.02%)</title><rect x="72.2207%" y="725" width="0.0205%" height="15" fill="rgb(240,63,43)" fg:x="109098" fg:w="31"/><text x="72.4707%" y="735.50"></text></g><g><title>__reserve_bytes (29 samples, 0.02%)</title><rect x="72.2220%" y="709" width="0.0192%" height="15" fill="rgb(236,155,6)" fg:x="109100" fg:w="29"/><text x="72.4720%" y="719.50"></text></g><g><title>btrfs_unlink (1,631 samples, 1.08%)</title><rect x="71.1734%" y="773" width="1.0797%" height="15" fill="rgb(215,11,29)" fg:x="107516" fg:w="1631"/><text x="71.4234%" y="783.50"></text></g><g><title>start_transaction (63 samples, 0.04%)</title><rect x="72.2114%" y="757" width="0.0417%" height="15" fill="rgb(228,180,48)" fg:x="109084" fg:w="63"/><text x="72.4614%" y="767.50"></text></g><g><title>do_syscall_64 (4,357 samples, 2.88%)</title><rect x="69.3980%" y="821" width="2.8842%" height="15" fill="rgb(241,102,12)" fg:x="104834" fg:w="4357"/><text x="69.6480%" y="831.50">do..</text></g><g><title>do_unlinkat (3,909 samples, 2.59%)</title><rect x="69.6946%" y="805" width="2.5877%" height="15" fill="rgb(246,213,4)" fg:x="105282" fg:w="3909"/><text x="69.9446%" y="815.50">do..</text></g><g><title>vfs_unlink (1,685 samples, 1.12%)</title><rect x="71.1668%" y="789" width="1.1154%" height="15" fill="rgb(218,134,35)" fg:x="107506" fg:w="1685"/><text x="71.4168%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,365 samples, 2.89%)</title><rect x="69.3953%" y="837" width="2.8895%" height="15" fill="rgb(251,117,35)" fg:x="104830" fg:w="4365"/><text x="69.6453%" y="847.50">en..</text></g><g><title>__GI_unlinkat (4,386 samples, 2.90%)</title><rect x="69.3848%" y="853" width="2.9034%" height="15" fill="rgb(206,156,45)" fg:x="104814" fg:w="4386"/><text x="69.6348%" y="863.50">__..</text></g><g><title>__fdopendir (20 samples, 0.01%)</title><rect x="72.2935%" y="853" width="0.0132%" height="15" fill="rgb(218,52,27)" fg:x="109208" fg:w="20"/><text x="72.5435%" y="863.50"></text></g><g><title>btrfs_create (23 samples, 0.02%)</title><rect x="72.3074%" y="741" width="0.0152%" height="15" fill="rgb(238,83,36)" fg:x="109229" fg:w="23"/><text x="72.5574%" y="751.50"></text></g><g><title>do_filp_open (26 samples, 0.02%)</title><rect x="72.3067%" y="773" width="0.0172%" height="15" fill="rgb(218,53,43)" fg:x="109228" fg:w="26"/><text x="72.5567%" y="783.50"></text></g><g><title>path_openat (26 samples, 0.02%)</title><rect x="72.3067%" y="757" width="0.0172%" height="15" fill="rgb(239,54,39)" fg:x="109228" fg:w="26"/><text x="72.5567%" y="767.50"></text></g><g><title>__libc_open64 (27 samples, 0.02%)</title><rect x="72.3067%" y="853" width="0.0179%" height="15" fill="rgb(212,198,13)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="72.3067%" y="837" width="0.0179%" height="15" fill="rgb(234,54,46)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="847.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="72.3067%" y="821" width="0.0179%" height="15" fill="rgb(217,120,7)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="831.50"></text></g><g><title>__x64_sys_openat (27 samples, 0.02%)</title><rect x="72.3067%" y="805" width="0.0179%" height="15" fill="rgb(246,39,15)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="815.50"></text></g><g><title>do_sys_openat2 (27 samples, 0.02%)</title><rect x="72.3067%" y="789" width="0.0179%" height="15" fill="rgb(242,143,31)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="799.50"></text></g><g><title>do_filp_open (24 samples, 0.02%)</title><rect x="72.3253%" y="773" width="0.0159%" height="15" fill="rgb(252,60,24)" fg:x="109256" fg:w="24"/><text x="72.5753%" y="783.50"></text></g><g><title>path_openat (24 samples, 0.02%)</title><rect x="72.3253%" y="757" width="0.0159%" height="15" fill="rgb(249,220,7)" fg:x="109256" fg:w="24"/><text x="72.5753%" y="767.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="72.3246%" y="821" width="0.0192%" height="15" fill="rgb(236,67,13)" fg:x="109255" fg:w="29"/><text x="72.5746%" y="831.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.02%)</title><rect x="72.3246%" y="805" width="0.0192%" height="15" fill="rgb(210,62,39)" fg:x="109255" fg:w="29"/><text x="72.5746%" y="815.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.02%)</title><rect x="72.3246%" y="789" width="0.0192%" height="15" fill="rgb(219,122,53)" fg:x="109255" fg:w="29"/><text x="72.5746%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="72.3246%" y="837" width="0.0205%" height="15" fill="rgb(218,87,25)" fg:x="109255" fg:w="31"/><text x="72.5746%" y="847.50"></text></g><g><title>__libc_openat64 (32 samples, 0.02%)</title><rect x="72.3246%" y="853" width="0.0212%" height="15" fill="rgb(234,179,48)" fg:x="109255" fg:w="32"/><text x="72.5746%" y="863.50"></text></g><g><title>do_filp_open (21 samples, 0.01%)</title><rect x="72.3544%" y="757" width="0.0139%" height="15" fill="rgb(248,90,0)" fg:x="109300" fg:w="21"/><text x="72.6044%" y="767.50"></text></g><g><title>path_openat (21 samples, 0.01%)</title><rect x="72.3544%" y="741" width="0.0139%" height="15" fill="rgb(207,228,37)" fg:x="109300" fg:w="21"/><text x="72.6044%" y="751.50"></text></g><g><title>__opendir (24 samples, 0.02%)</title><rect x="72.3537%" y="853" width="0.0159%" height="15" fill="rgb(235,214,15)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="863.50"></text></g><g><title>__GI___open64_nocancel (24 samples, 0.02%)</title><rect x="72.3537%" y="837" width="0.0159%" height="15" fill="rgb(210,144,39)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="72.3537%" y="821" width="0.0159%" height="15" fill="rgb(222,67,41)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="831.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="72.3537%" y="805" width="0.0159%" height="15" fill="rgb(205,35,37)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="815.50"></text></g><g><title>__x64_sys_openat (24 samples, 0.02%)</title><rect x="72.3537%" y="789" width="0.0159%" height="15" fill="rgb(216,125,40)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="799.50"></text></g><g><title>do_sys_openat2 (24 samples, 0.02%)</title><rect x="72.3537%" y="773" width="0.0159%" height="15" fill="rgb(228,227,20)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="783.50"></text></g><g><title>d_lru_add (19 samples, 0.01%)</title><rect x="72.3901%" y="773" width="0.0126%" height="15" fill="rgb(242,173,45)" fg:x="109354" fg:w="19"/><text x="72.6401%" y="783.50"></text></g><g><title>list_lru_add (19 samples, 0.01%)</title><rect x="72.3901%" y="757" width="0.0126%" height="15" fill="rgb(215,79,24)" fg:x="109354" fg:w="19"/><text x="72.6401%" y="767.50"></text></g><g><title>dput (27 samples, 0.02%)</title><rect x="72.3888%" y="789" width="0.0179%" height="15" fill="rgb(238,164,38)" fg:x="109352" fg:w="27"/><text x="72.6388%" y="799.50"></text></g><g><title>btrfs_free_path (27 samples, 0.02%)</title><rect x="72.4100%" y="725" width="0.0179%" height="15" fill="rgb(245,196,38)" fg:x="109384" fg:w="27"/><text x="72.6600%" y="735.50"></text></g><g><title>btrfs_release_path (26 samples, 0.02%)</title><rect x="72.4107%" y="709" width="0.0172%" height="15" fill="rgb(231,217,29)" fg:x="109385" fg:w="26"/><text x="72.6607%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (49 samples, 0.03%)</title><rect x="72.4636%" y="693" width="0.0324%" height="15" fill="rgb(245,6,4)" fg:x="109465" fg:w="49"/><text x="72.7136%" y="703.50"></text></g><g><title>__radix_tree_lookup (25 samples, 0.02%)</title><rect x="72.5133%" y="661" width="0.0165%" height="15" fill="rgb(214,76,49)" fg:x="109540" fg:w="25"/><text x="72.7633%" y="671.50"></text></g><g><title>find_extent_buffer (55 samples, 0.04%)</title><rect x="72.5053%" y="677" width="0.0364%" height="15" fill="rgb(205,96,12)" fg:x="109528" fg:w="55"/><text x="72.7553%" y="687.50"></text></g><g><title>mark_extent_buffer_accessed (18 samples, 0.01%)</title><rect x="72.5298%" y="661" width="0.0119%" height="15" fill="rgb(243,131,4)" fg:x="109565" fg:w="18"/><text x="72.7798%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (83 samples, 0.05%)</title><rect x="72.4961%" y="693" width="0.0549%" height="15" fill="rgb(214,114,4)" fg:x="109514" fg:w="83"/><text x="72.7461%" y="703.50"></text></g><g><title>btrfs_search_slot (190 samples, 0.13%)</title><rect x="72.4292%" y="709" width="0.1258%" height="15" fill="rgb(234,215,15)" fg:x="109413" fg:w="190"/><text x="72.6792%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (196 samples, 0.13%)</title><rect x="72.4279%" y="725" width="0.1297%" height="15" fill="rgb(250,216,45)" fg:x="109411" fg:w="196"/><text x="72.6779%" y="735.50"></text></g><g><title>btrfs_lookup (243 samples, 0.16%)</title><rect x="72.4087%" y="757" width="0.1609%" height="15" fill="rgb(236,128,4)" fg:x="109382" fg:w="243"/><text x="72.6587%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (242 samples, 0.16%)</title><rect x="72.4093%" y="741" width="0.1602%" height="15" fill="rgb(234,50,33)" fg:x="109383" fg:w="242"/><text x="72.6593%" y="751.50"></text></g><g><title>kmem_cache_alloc (41 samples, 0.03%)</title><rect x="72.5729%" y="725" width="0.0271%" height="15" fill="rgb(253,131,37)" fg:x="109630" fg:w="41"/><text x="72.8229%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (18 samples, 0.01%)</title><rect x="72.5881%" y="709" width="0.0119%" height="15" fill="rgb(218,55,27)" fg:x="109653" fg:w="18"/><text x="72.8381%" y="719.50"></text></g><g><title>__d_alloc (45 samples, 0.03%)</title><rect x="72.5709%" y="741" width="0.0298%" height="15" fill="rgb(241,220,28)" fg:x="109627" fg:w="45"/><text x="72.8209%" y="751.50"></text></g><g><title>d_alloc (48 samples, 0.03%)</title><rect x="72.5695%" y="757" width="0.0318%" height="15" fill="rgb(241,90,48)" fg:x="109625" fg:w="48"/><text x="72.8195%" y="767.50"></text></g><g><title>__lookup_hash (310 samples, 0.21%)</title><rect x="72.4080%" y="773" width="0.2052%" height="15" fill="rgb(216,43,37)" fg:x="109381" fg:w="310"/><text x="72.6580%" y="783.50"></text></g><g><title>complete_walk (17 samples, 0.01%)</title><rect x="72.6192%" y="741" width="0.0113%" height="15" fill="rgb(207,173,9)" fg:x="109700" fg:w="17"/><text x="72.8692%" y="751.50"></text></g><g><title>try_to_unlazy (17 samples, 0.01%)</title><rect x="72.6192%" y="725" width="0.0113%" height="15" fill="rgb(240,126,30)" fg:x="109700" fg:w="17"/><text x="72.8692%" y="735.50"></text></g><g><title>inode_permission.part.0 (46 samples, 0.03%)</title><rect x="72.6569%" y="725" width="0.0305%" height="15" fill="rgb(228,178,53)" fg:x="109757" fg:w="46"/><text x="72.9069%" y="735.50"></text></g><g><title>lookup_fast (94 samples, 0.06%)</title><rect x="72.7006%" y="709" width="0.0622%" height="15" fill="rgb(217,33,4)" fg:x="109823" fg:w="94"/><text x="72.9506%" y="719.50"></text></g><g><title>__d_lookup_rcu (85 samples, 0.06%)</title><rect x="72.7066%" y="693" width="0.0563%" height="15" fill="rgb(206,124,34)" fg:x="109832" fg:w="85"/><text x="72.9566%" y="703.50"></text></g><g><title>link_path_walk.part.0 (226 samples, 0.15%)</title><rect x="72.6304%" y="741" width="0.1496%" height="15" fill="rgb(208,122,53)" fg:x="109717" fg:w="226"/><text x="72.8804%" y="751.50"></text></g><g><title>walk_component (135 samples, 0.09%)</title><rect x="72.6907%" y="725" width="0.0894%" height="15" fill="rgb(215,202,26)" fg:x="109808" fg:w="135"/><text x="72.9407%" y="735.50"></text></g><g><title>step_into (26 samples, 0.02%)</title><rect x="72.7628%" y="709" width="0.0172%" height="15" fill="rgb(232,198,31)" fg:x="109917" fg:w="26"/><text x="73.0128%" y="719.50"></text></g><g><title>filename_parentat (261 samples, 0.17%)</title><rect x="72.6146%" y="773" width="0.1728%" height="15" fill="rgb(222,23,35)" fg:x="109693" fg:w="261"/><text x="72.8646%" y="783.50"></text></g><g><title>path_parentat (255 samples, 0.17%)</title><rect x="72.6185%" y="757" width="0.1688%" height="15" fill="rgb(242,27,53)" fg:x="109699" fg:w="255"/><text x="72.8685%" y="767.50"></text></g><g><title>filename_create (580 samples, 0.38%)</title><rect x="72.4067%" y="789" width="0.3839%" height="15" fill="rgb(210,216,42)" fg:x="109379" fg:w="580"/><text x="72.6567%" y="799.50"></text></g><g><title>memset_erms (37 samples, 0.02%)</title><rect x="72.7992%" y="757" width="0.0245%" height="15" fill="rgb(234,39,38)" fg:x="109972" fg:w="37"/><text x="73.0492%" y="767.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.04%)</title><rect x="72.7920%" y="773" width="0.0351%" height="15" fill="rgb(235,126,54)" fg:x="109961" fg:w="53"/><text x="73.0420%" y="783.50"></text></g><g><title>getname_flags.part.0 (101 samples, 0.07%)</title><rect x="72.7906%" y="789" width="0.0669%" height="15" fill="rgb(235,150,33)" fg:x="109959" fg:w="101"/><text x="73.0406%" y="799.50"></text></g><g><title>strncpy_from_user (46 samples, 0.03%)</title><rect x="72.8271%" y="773" width="0.0305%" height="15" fill="rgb(249,49,53)" fg:x="110014" fg:w="46"/><text x="73.0771%" y="783.50"></text></g><g><title>__check_object_size (20 samples, 0.01%)</title><rect x="72.8443%" y="757" width="0.0132%" height="15" fill="rgb(238,60,50)" fg:x="110040" fg:w="20"/><text x="73.0943%" y="767.50"></text></g><g><title>security_path_symlink (22 samples, 0.01%)</title><rect x="72.8615%" y="789" width="0.0146%" height="15" fill="rgb(210,5,2)" fg:x="110066" fg:w="22"/><text x="73.1115%" y="799.50"></text></g><g><title>btrfs_trans_release_metadata (17 samples, 0.01%)</title><rect x="72.8926%" y="741" width="0.0113%" height="15" fill="rgb(214,207,24)" fg:x="110113" fg:w="17"/><text x="73.1426%" y="751.50"></text></g><g><title>btrfs_block_rsv_release (17 samples, 0.01%)</title><rect x="72.8926%" y="725" width="0.0113%" height="15" fill="rgb(228,173,2)" fg:x="110113" fg:w="17"/><text x="73.1426%" y="735.50"></text></g><g><title>__btrfs_end_transaction (35 samples, 0.02%)</title><rect x="72.8840%" y="757" width="0.0232%" height="15" fill="rgb(244,26,8)" fg:x="110100" fg:w="35"/><text x="73.1340%" y="767.50"></text></g><g><title>__btrfs_add_delayed_item (19 samples, 0.01%)</title><rect x="72.9197%" y="709" width="0.0126%" height="15" fill="rgb(249,153,35)" fg:x="110154" fg:w="19"/><text x="73.1697%" y="719.50"></text></g><g><title>__mutex_lock.constprop.0 (19 samples, 0.01%)</title><rect x="72.9495%" y="709" width="0.0126%" height="15" fill="rgb(221,215,40)" fg:x="110199" fg:w="19"/><text x="73.1995%" y="719.50"></text></g><g><title>mutex_spin_on_owner (17 samples, 0.01%)</title><rect x="72.9508%" y="693" width="0.0113%" height="15" fill="rgb(238,106,35)" fg:x="110201" fg:w="17"/><text x="73.2008%" y="703.50"></text></g><g><title>btrfs_insert_delayed_dir_index (84 samples, 0.06%)</title><rect x="72.9151%" y="725" width="0.0556%" height="15" fill="rgb(207,195,21)" fg:x="110147" fg:w="84"/><text x="73.1651%" y="735.50"></text></g><g><title>btrfs_release_path (25 samples, 0.02%)</title><rect x="72.9767%" y="725" width="0.0165%" height="15" fill="rgb(205,43,29)" fg:x="110240" fg:w="25"/><text x="73.2267%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (40 samples, 0.03%)</title><rect x="73.0329%" y="677" width="0.0265%" height="15" fill="rgb(236,35,21)" fg:x="110325" fg:w="40"/><text x="73.2829%" y="687.50"></text></g><g><title>__radix_tree_lookup (16 samples, 0.01%)</title><rect x="73.0760%" y="645" width="0.0106%" height="15" fill="rgb(244,74,8)" fg:x="110390" fg:w="16"/><text x="73.3260%" y="655.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="73.0733%" y="661" width="0.0199%" height="15" fill="rgb(241,229,7)" fg:x="110386" fg:w="30"/><text x="73.3233%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (60 samples, 0.04%)</title><rect x="73.0594%" y="677" width="0.0397%" height="15" fill="rgb(212,223,25)" fg:x="110365" fg:w="60"/><text x="73.3094%" y="687.50"></text></g><g><title>__push_leaf_right (25 samples, 0.02%)</title><rect x="73.1144%" y="645" width="0.0165%" height="15" fill="rgb(234,58,53)" fg:x="110448" fg:w="25"/><text x="73.3644%" y="655.50"></text></g><g><title>split_leaf (52 samples, 0.03%)</title><rect x="73.0991%" y="677" width="0.0344%" height="15" fill="rgb(244,36,1)" fg:x="110425" fg:w="52"/><text x="73.3491%" y="687.50"></text></g><g><title>push_leaf_right (31 samples, 0.02%)</title><rect x="73.1130%" y="661" width="0.0205%" height="15" fill="rgb(222,40,54)" fg:x="110446" fg:w="31"/><text x="73.3630%" y="671.50"></text></g><g><title>btrfs_search_slot (202 samples, 0.13%)</title><rect x="73.0064%" y="693" width="0.1337%" height="15" fill="rgb(210,207,39)" fg:x="110285" fg:w="202"/><text x="73.2564%" y="703.50"></text></g><g><title>btrfs_get_token_32 (98 samples, 0.06%)</title><rect x="73.1653%" y="677" width="0.0649%" height="15" fill="rgb(234,52,14)" fg:x="110525" fg:w="98"/><text x="73.4153%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (16 samples, 0.01%)</title><rect x="73.2196%" y="661" width="0.0106%" height="15" fill="rgb(239,108,46)" fg:x="110607" fg:w="16"/><text x="73.4696%" y="671.50"></text></g><g><title>btrfs_set_token_32 (101 samples, 0.07%)</title><rect x="73.2421%" y="677" width="0.0669%" height="15" fill="rgb(252,223,5)" fg:x="110641" fg:w="101"/><text x="73.4921%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (18 samples, 0.01%)</title><rect x="73.2971%" y="661" width="0.0119%" height="15" fill="rgb(227,181,11)" fg:x="110724" fg:w="18"/><text x="73.5471%" y="671.50"></text></g><g><title>memcpy_extent_buffer (38 samples, 0.03%)</title><rect x="73.3103%" y="677" width="0.0252%" height="15" fill="rgb(248,126,40)" fg:x="110744" fg:w="38"/><text x="73.5603%" y="687.50"></text></g><g><title>memmove (27 samples, 0.02%)</title><rect x="73.3176%" y="661" width="0.0179%" height="15" fill="rgb(243,1,18)" fg:x="110755" fg:w="27"/><text x="73.5676%" y="671.50"></text></g><g><title>memmove_extent_buffer (31 samples, 0.02%)</title><rect x="73.3355%" y="677" width="0.0205%" height="15" fill="rgb(214,145,23)" fg:x="110782" fg:w="31"/><text x="73.5855%" y="687.50"></text></g><g><title>memmove (21 samples, 0.01%)</title><rect x="73.3421%" y="661" width="0.0139%" height="15" fill="rgb(241,218,11)" fg:x="110792" fg:w="21"/><text x="73.5921%" y="671.50"></text></g><g><title>insert_with_overflow (550 samples, 0.36%)</title><rect x="72.9972%" y="725" width="0.3641%" height="15" fill="rgb(214,219,24)" fg:x="110271" fg:w="550"/><text x="73.2472%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (540 samples, 0.36%)</title><rect x="73.0038%" y="709" width="0.3575%" height="15" fill="rgb(235,32,7)" fg:x="110281" fg:w="540"/><text x="73.2538%" y="719.50"></text></g><g><title>setup_items_for_insert (334 samples, 0.22%)</title><rect x="73.1402%" y="693" width="0.2211%" height="15" fill="rgb(227,121,28)" fg:x="110487" fg:w="334"/><text x="73.3902%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (698 samples, 0.46%)</title><rect x="72.9118%" y="741" width="0.4621%" height="15" fill="rgb(216,129,49)" fg:x="110142" fg:w="698"/><text x="73.1618%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (29 samples, 0.02%)</title><rect x="73.3752%" y="725" width="0.0192%" height="15" fill="rgb(207,194,50)" fg:x="110842" fg:w="29"/><text x="73.6252%" y="735.50"></text></g><g><title>btrfs_update_inode (37 samples, 0.02%)</title><rect x="73.3738%" y="741" width="0.0245%" height="15" fill="rgb(207,4,18)" fg:x="110840" fg:w="37"/><text x="73.6238%" y="751.50"></text></g><g><title>btrfs_add_link (745 samples, 0.49%)</title><rect x="72.9072%" y="757" width="0.4932%" height="15" fill="rgb(213,50,30)" fg:x="110135" fg:w="745"/><text x="73.1572%" y="767.50"></text></g><g><title>btrfs_free_path (18 samples, 0.01%)</title><rect x="73.4142%" y="757" width="0.0119%" height="15" fill="rgb(208,77,22)" fg:x="110901" fg:w="18"/><text x="73.6642%" y="767.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="73.4142%" y="741" width="0.0119%" height="15" fill="rgb(244,204,34)" fg:x="110901" fg:w="18"/><text x="73.6642%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (21 samples, 0.01%)</title><rect x="73.4506%" y="725" width="0.0139%" height="15" fill="rgb(230,20,17)" fg:x="110956" fg:w="21"/><text x="73.7006%" y="735.50"></text></g><g><title>__radix_tree_lookup (17 samples, 0.01%)</title><rect x="73.4778%" y="693" width="0.0113%" height="15" fill="rgb(237,83,15)" fg:x="110997" fg:w="17"/><text x="73.7278%" y="703.50"></text></g><g><title>find_extent_buffer (27 samples, 0.02%)</title><rect x="73.4751%" y="709" width="0.0179%" height="15" fill="rgb(221,109,25)" fg:x="110993" fg:w="27"/><text x="73.7251%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (52 samples, 0.03%)</title><rect x="73.4645%" y="725" width="0.0344%" height="15" fill="rgb(205,194,52)" fg:x="110977" fg:w="52"/><text x="73.7145%" y="735.50"></text></g><g><title>split_leaf (42 samples, 0.03%)</title><rect x="73.4990%" y="725" width="0.0278%" height="15" fill="rgb(244,173,54)" fg:x="111029" fg:w="42"/><text x="73.7490%" y="735.50"></text></g><g><title>btrfs_search_slot (154 samples, 0.10%)</title><rect x="73.4308%" y="741" width="0.1019%" height="15" fill="rgb(227,181,18)" fg:x="110926" fg:w="154"/><text x="73.6808%" y="751.50"></text></g><g><title>btrfs_get_token_32 (26 samples, 0.02%)</title><rect x="73.5513%" y="725" width="0.0172%" height="15" fill="rgb(238,36,30)" fg:x="111108" fg:w="26"/><text x="73.8013%" y="735.50"></text></g><g><title>btrfs_set_token_32 (30 samples, 0.02%)</title><rect x="73.5830%" y="725" width="0.0199%" height="15" fill="rgb(254,85,0)" fg:x="111156" fg:w="30"/><text x="73.8330%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (275 samples, 0.18%)</title><rect x="73.4281%" y="757" width="0.1820%" height="15" fill="rgb(247,63,33)" fg:x="110922" fg:w="275"/><text x="73.6781%" y="767.50"></text></g><g><title>setup_items_for_insert (117 samples, 0.08%)</title><rect x="73.5327%" y="741" width="0.0775%" height="15" fill="rgb(220,7,54)" fg:x="111080" fg:w="117"/><text x="73.7827%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (29 samples, 0.02%)</title><rect x="73.6453%" y="709" width="0.0192%" height="15" fill="rgb(238,227,21)" fg:x="111250" fg:w="29"/><text x="73.8953%" y="719.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="73.6717%" y="693" width="0.0199%" height="15" fill="rgb(237,29,31)" fg:x="111290" fg:w="30"/><text x="73.9217%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (49 samples, 0.03%)</title><rect x="73.6645%" y="709" width="0.0324%" height="15" fill="rgb(211,21,50)" fg:x="111279" fg:w="49"/><text x="73.9145%" y="719.50"></text></g><g><title>__push_leaf_left (27 samples, 0.02%)</title><rect x="73.7168%" y="677" width="0.0179%" height="15" fill="rgb(239,119,2)" fg:x="111358" fg:w="27"/><text x="73.9668%" y="687.50"></text></g><g><title>split_leaf (59 samples, 0.04%)</title><rect x="73.6969%" y="709" width="0.0391%" height="15" fill="rgb(250,2,39)" fg:x="111328" fg:w="59"/><text x="73.9469%" y="719.50"></text></g><g><title>push_leaf_left (30 samples, 0.02%)</title><rect x="73.7161%" y="693" width="0.0199%" height="15" fill="rgb(244,46,53)" fg:x="111357" fg:w="30"/><text x="73.9661%" y="703.50"></text></g><g><title>btrfs_search_slot (174 samples, 0.12%)</title><rect x="73.6287%" y="725" width="0.1152%" height="15" fill="rgb(209,21,19)" fg:x="111225" fg:w="174"/><text x="73.8787%" y="735.50"></text></g><g><title>btrfs_get_token_32 (33 samples, 0.02%)</title><rect x="73.7591%" y="709" width="0.0218%" height="15" fill="rgb(236,145,4)" fg:x="111422" fg:w="33"/><text x="74.0091%" y="719.50"></text></g><g><title>btrfs_set_token_32 (31 samples, 0.02%)</title><rect x="73.7882%" y="709" width="0.0205%" height="15" fill="rgb(220,133,36)" fg:x="111466" fg:w="31"/><text x="74.0382%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (289 samples, 0.19%)</title><rect x="73.6267%" y="741" width="0.1913%" height="15" fill="rgb(244,18,3)" fg:x="111222" fg:w="289"/><text x="73.8767%" y="751.50"></text></g><g><title>setup_items_for_insert (112 samples, 0.07%)</title><rect x="73.7439%" y="725" width="0.0741%" height="15" fill="rgb(232,171,48)" fg:x="111399" fg:w="112"/><text x="73.9939%" y="735.50"></text></g><g><title>btrfs_set_token_64 (25 samples, 0.02%)</title><rect x="73.8412%" y="725" width="0.0165%" height="15" fill="rgb(223,223,53)" fg:x="111546" fg:w="25"/><text x="74.0912%" y="735.50"></text></g><g><title>fill_inode_item (46 samples, 0.03%)</title><rect x="73.8306%" y="741" width="0.0305%" height="15" fill="rgb(246,92,13)" fg:x="111530" fg:w="46"/><text x="74.0806%" y="751.50"></text></g><g><title>inode_tree_add (58 samples, 0.04%)</title><rect x="73.8617%" y="741" width="0.0384%" height="15" fill="rgb(229,171,10)" fg:x="111577" fg:w="58"/><text x="74.1117%" y="751.50"></text></g><g><title>insert_inode_locked4 (24 samples, 0.02%)</title><rect x="73.9001%" y="741" width="0.0159%" height="15" fill="rgb(213,131,26)" fg:x="111635" fg:w="24"/><text x="74.1501%" y="751.50"></text></g><g><title>inode_insert5 (24 samples, 0.02%)</title><rect x="73.9001%" y="725" width="0.0159%" height="15" fill="rgb(242,87,54)" fg:x="111635" fg:w="24"/><text x="74.1501%" y="735.50"></text></g><g><title>memcg_slab_post_alloc_hook (18 samples, 0.01%)</title><rect x="73.9431%" y="677" width="0.0119%" height="15" fill="rgb(237,21,35)" fg:x="111700" fg:w="18"/><text x="74.1931%" y="687.50"></text></g><g><title>btrfs_alloc_inode (51 samples, 0.03%)</title><rect x="73.9299%" y="709" width="0.0338%" height="15" fill="rgb(253,13,47)" fg:x="111680" fg:w="51"/><text x="74.1799%" y="719.50"></text></g><g><title>kmem_cache_alloc (40 samples, 0.03%)</title><rect x="73.9372%" y="693" width="0.0265%" height="15" fill="rgb(215,122,49)" fg:x="111691" fg:w="40"/><text x="74.1872%" y="703.50"></text></g><g><title>alloc_inode (65 samples, 0.04%)</title><rect x="73.9286%" y="725" width="0.0430%" height="15" fill="rgb(209,179,30)" fg:x="111678" fg:w="65"/><text x="74.1786%" y="735.50"></text></g><g><title>new_inode (76 samples, 0.05%)</title><rect x="73.9240%" y="741" width="0.0503%" height="15" fill="rgb(235,100,24)" fg:x="111671" fg:w="76"/><text x="74.1740%" y="751.50"></text></g><g><title>btrfs_new_inode (553 samples, 0.37%)</title><rect x="73.6122%" y="757" width="0.3661%" height="15" fill="rgb(209,67,24)" fg:x="111200" fg:w="553"/><text x="73.8622%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (20 samples, 0.01%)</title><rect x="73.9928%" y="725" width="0.0132%" height="15" fill="rgb(206,74,32)" fg:x="111775" fg:w="20"/><text x="74.2428%" y="735.50"></text></g><g><title>__radix_tree_lookup (17 samples, 0.01%)</title><rect x="74.0226%" y="693" width="0.0113%" height="15" fill="rgb(212,45,25)" fg:x="111820" fg:w="17"/><text x="74.2726%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (20 samples, 0.01%)</title><rect x="74.0213%" y="709" width="0.0132%" height="15" fill="rgb(239,26,3)" fg:x="111818" fg:w="20"/><text x="74.2713%" y="719.50"></text></g><g><title>kmem_cache_alloc (16 samples, 0.01%)</title><rect x="74.0345%" y="709" width="0.0106%" height="15" fill="rgb(218,36,15)" fg:x="111838" fg:w="16"/><text x="74.2845%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (51 samples, 0.03%)</title><rect x="74.0120%" y="725" width="0.0338%" height="15" fill="rgb(206,108,24)" fg:x="111804" fg:w="51"/><text x="74.2620%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (106 samples, 0.07%)</title><rect x="73.9875%" y="741" width="0.0702%" height="15" fill="rgb(234,204,42)" fg:x="111767" fg:w="106"/><text x="74.2375%" y="751.50"></text></g><g><title>btrfs_update_inode (117 samples, 0.08%)</title><rect x="73.9855%" y="757" width="0.0775%" height="15" fill="rgb(229,2,11)" fg:x="111764" fg:w="117"/><text x="74.2355%" y="767.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (17 samples, 0.01%)</title><rect x="74.1014%" y="693" width="0.0113%" height="15" fill="rgb(221,20,48)" fg:x="111939" fg:w="17"/><text x="74.3514%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (29 samples, 0.02%)</title><rect x="74.0967%" y="741" width="0.0192%" height="15" fill="rgb(244,164,10)" fg:x="111932" fg:w="29"/><text x="74.3467%" y="751.50"></text></g><g><title>btrfs_reserve_metadata_bytes (26 samples, 0.02%)</title><rect x="74.0987%" y="725" width="0.0172%" height="15" fill="rgb(243,229,2)" fg:x="111935" fg:w="26"/><text x="74.3487%" y="735.50"></text></g><g><title>__reserve_bytes (26 samples, 0.02%)</title><rect x="74.0987%" y="709" width="0.0172%" height="15" fill="rgb(232,131,37)" fg:x="111935" fg:w="26"/><text x="74.3487%" y="719.50"></text></g><g><title>start_transaction (69 samples, 0.05%)</title><rect x="74.0835%" y="757" width="0.0457%" height="15" fill="rgb(217,156,11)" fg:x="111912" fg:w="69"/><text x="74.3335%" y="767.50"></text></g><g><title>strlen (39 samples, 0.03%)</title><rect x="74.1292%" y="757" width="0.0258%" height="15" fill="rgb(239,99,48)" fg:x="111981" fg:w="39"/><text x="74.3792%" y="767.50"></text></g><g><title>btrfs_symlink (1,937 samples, 1.28%)</title><rect x="72.8793%" y="773" width="1.2823%" height="15" fill="rgb(231,209,9)" fg:x="110093" fg:w="1937"/><text x="73.1293%" y="783.50"></text></g><g><title>do_syscall_64 (2,691 samples, 1.78%)</title><rect x="72.3822%" y="821" width="1.7814%" height="15" fill="rgb(254,97,27)" fg:x="109342" fg:w="2691"/><text x="72.6322%" y="831.50">d..</text></g><g><title>do_symlinkat (2,687 samples, 1.78%)</title><rect x="72.3848%" y="805" width="1.7787%" height="15" fill="rgb(223,151,38)" fg:x="109346" fg:w="2687"/><text x="72.6348%" y="815.50">d..</text></g><g><title>vfs_symlink (1,940 samples, 1.28%)</title><rect x="72.8793%" y="789" width="1.2842%" height="15" fill="rgb(219,206,35)" fg:x="110093" fg:w="1940"/><text x="73.1293%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,694 samples, 1.78%)</title><rect x="72.3815%" y="837" width="1.7834%" height="15" fill="rgb(216,130,31)" fg:x="109341" fg:w="2694"/><text x="72.6315%" y="847.50">e..</text></g><g><title>__symlink (2,716 samples, 1.80%)</title><rect x="72.3696%" y="853" width="1.7979%" height="15" fill="rgb(251,97,34)" fg:x="109323" fg:w="2716"/><text x="72.6196%" y="863.50">_..</text></g><g><title>jni_GetByteArrayRegion (31 samples, 0.02%)</title><rect x="74.1788%" y="853" width="0.0205%" height="15" fill="rgb(246,159,47)" fg:x="112056" fg:w="31"/><text x="74.4288%" y="863.50"></text></g><g><title>jni_GetObjectField (42 samples, 0.03%)</title><rect x="74.1993%" y="853" width="0.0278%" height="15" fill="rgb(232,87,10)" fg:x="112087" fg:w="42"/><text x="74.4493%" y="863.50"></text></g><g><title>jni_GetStringLength (34 samples, 0.02%)</title><rect x="74.2271%" y="853" width="0.0225%" height="15" fill="rgb(249,1,37)" fg:x="112129" fg:w="34"/><text x="74.4771%" y="863.50"></text></g><g><title>JavaCalls::call_helper (16 samples, 0.01%)</title><rect x="74.2702%" y="821" width="0.0106%" height="15" fill="rgb(239,135,14)" fg:x="112194" fg:w="16"/><text x="74.5202%" y="831.50"></text></g><g><title>jni_NewObjectV (49 samples, 0.03%)</title><rect x="74.2503%" y="853" width="0.0324%" height="15" fill="rgb(253,116,46)" fg:x="112164" fg:w="49"/><text x="74.5003%" y="863.50"></text></g><g><title>jni_invoke_nonstatic (31 samples, 0.02%)</title><rect x="74.2622%" y="837" width="0.0205%" height="15" fill="rgb(222,217,37)" fg:x="112182" fg:w="31"/><text x="74.5122%" y="847.50"></text></g><g><title>rename (23 samples, 0.02%)</title><rect x="74.3079%" y="853" width="0.0152%" height="15" fill="rgb(252,96,8)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="74.3079%" y="837" width="0.0152%" height="15" fill="rgb(254,103,41)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="847.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="74.3079%" y="821" width="0.0152%" height="15" fill="rgb(218,213,19)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="831.50"></text></g><g><title>__x64_sys_rename (23 samples, 0.02%)</title><rect x="74.3079%" y="805" width="0.0152%" height="15" fill="rgb(253,95,21)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="815.50"></text></g><g><title>do_renameat2 (23 samples, 0.02%)</title><rect x="74.3079%" y="789" width="0.0152%" height="15" fill="rgb(229,26,28)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="799.50"></text></g><g><title>vfs_rename (19 samples, 0.01%)</title><rect x="74.3105%" y="773" width="0.0126%" height="15" fill="rgb(230,129,16)" fg:x="112255" fg:w="19"/><text x="74.5605%" y="783.50"></text></g><g><title>btrfs_rename2 (19 samples, 0.01%)</title><rect x="74.3105%" y="757" width="0.0126%" height="15" fill="rgb(236,126,17)" fg:x="112255" fg:w="19"/><text x="74.5605%" y="767.50"></text></g><g><title>[libunix_jni.so] (8,057 samples, 5.33%)</title><rect x="69.0015%" y="869" width="5.3336%" height="15" fill="rgb(209,33,33)" fg:x="104235" fg:w="8057"/><text x="69.2515%" y="879.50">[libuni..</text></g><g><title>std::string::_Rep::_S_create (18 samples, 0.01%)</title><rect x="74.3231%" y="853" width="0.0119%" height="15" fill="rgb(227,85,29)" fg:x="112274" fg:w="18"/><text x="74.5731%" y="863.50"></text></g><g><title>ConstantPool::klass_at_impl (25 samples, 0.02%)</title><rect x="95.3026%" y="837" width="0.0165%" height="15" fill="rgb(241,53,46)" fg:x="143966" fg:w="25"/><text x="95.5526%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.02%)</title><rect x="95.3026%" y="821" width="0.0165%" height="15" fill="rgb(228,167,53)" fg:x="143966" fg:w="25"/><text x="95.5526%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.02%)</title><rect x="95.3026%" y="805" width="0.0165%" height="15" fill="rgb(238,195,45)" fg:x="143966" fg:w="25"/><text x="95.5526%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (18 samples, 0.01%)</title><rect x="95.3072%" y="789" width="0.0119%" height="15" fill="rgb(252,124,45)" fg:x="143973" fg:w="18"/><text x="95.5572%" y="799.50"></text></g><g><title>ObjectMonitor::enter (17 samples, 0.01%)</title><rect x="95.3377%" y="805" width="0.0113%" height="15" fill="rgb(251,38,35)" fg:x="144019" fg:w="17"/><text x="95.5877%" y="815.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="95.3383%" y="789" width="0.0106%" height="15" fill="rgb(227,33,2)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="799.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="95.3383%" y="773" width="0.0106%" height="15" fill="rgb(223,157,46)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="95.3383%" y="757" width="0.0106%" height="15" fill="rgb(222,78,41)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="767.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="95.3383%" y="741" width="0.0106%" height="15" fill="rgb(248,176,11)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="95.3383%" y="725" width="0.0106%" height="15" fill="rgb(241,221,18)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="735.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="95.3383%" y="709" width="0.0106%" height="15" fill="rgb(218,85,22)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="719.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="95.3383%" y="693" width="0.0106%" height="15" fill="rgb(222,223,7)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="703.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="95.3383%" y="677" width="0.0106%" height="15" fill="rgb(254,59,39)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="687.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="95.3383%" y="661" width="0.0106%" height="15" fill="rgb(247,100,27)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="671.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="95.3383%" y="645" width="0.0106%" height="15" fill="rgb(237,207,10)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="655.50"></text></g><g><title>Rewriter::rewrite (26 samples, 0.02%)</title><rect x="95.3496%" y="805" width="0.0172%" height="15" fill="rgb(220,121,28)" fg:x="144037" fg:w="26"/><text x="95.5996%" y="815.50"></text></g><g><title>Rewriter::Rewriter (26 samples, 0.02%)</title><rect x="95.3496%" y="789" width="0.0172%" height="15" fill="rgb(213,223,20)" fg:x="144037" fg:w="26"/><text x="95.5996%" y="799.50"></text></g><g><title>Rewriter::rewrite_bytecodes (18 samples, 0.01%)</title><rect x="95.3549%" y="773" width="0.0119%" height="15" fill="rgb(205,121,27)" fg:x="144045" fg:w="18"/><text x="95.6049%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (85 samples, 0.06%)</title><rect x="95.3238%" y="821" width="0.0563%" height="15" fill="rgb(253,24,53)" fg:x="143998" fg:w="85"/><text x="95.5738%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (91 samples, 0.06%)</title><rect x="95.3205%" y="837" width="0.0602%" height="15" fill="rgb(224,224,47)" fg:x="143993" fg:w="91"/><text x="95.5705%" y="847.50"></text></g><g><title>InterpreterRuntime::_new (120 samples, 0.08%)</title><rect x="95.3019%" y="853" width="0.0794%" height="15" fill="rgb(250,125,36)" fg:x="143965" fg:w="120"/><text x="95.5519%" y="863.50"></text></g><g><title>ObjArrayAllocator::initialize (20 samples, 0.01%)</title><rect x="95.4184%" y="789" width="0.0132%" height="15" fill="rgb(240,144,38)" fg:x="144141" fg:w="20"/><text x="95.6684%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (40 samples, 0.03%)</title><rect x="95.4078%" y="821" width="0.0265%" height="15" fill="rgb(250,15,50)" fg:x="144125" fg:w="40"/><text x="95.6578%" y="831.50"></text></g><g><title>MemAllocator::allocate (38 samples, 0.03%)</title><rect x="95.4092%" y="805" width="0.0252%" height="15" fill="rgb(210,24,26)" fg:x="144127" fg:w="38"/><text x="95.6592%" y="815.50"></text></g><g><title>InstanceKlass::allocate_objArray (67 samples, 0.04%)</title><rect x="95.3959%" y="837" width="0.0444%" height="15" fill="rgb(234,53,53)" fg:x="144107" fg:w="67"/><text x="95.6459%" y="847.50"></text></g><g><title>InterpreterRuntime::anewarray (96 samples, 0.06%)</title><rect x="95.3814%" y="853" width="0.0636%" height="15" fill="rgb(208,108,28)" fg:x="144085" fg:w="96"/><text x="95.6314%" y="863.50"></text></g><g><title>InterpreterRuntime::at_safepoint (16 samples, 0.01%)</title><rect x="95.4449%" y="853" width="0.0106%" height="15" fill="rgb(227,143,7)" fg:x="144181" fg:w="16"/><text x="95.6949%" y="863.50"></text></g><g><title>SafepointSynchronize::block (16 samples, 0.01%)</title><rect x="95.4449%" y="837" width="0.0106%" height="15" fill="rgb(238,189,38)" fg:x="144181" fg:w="16"/><text x="95.6949%" y="847.50"></text></g><g><title>InterpreterRuntime::build_method_counters (26 samples, 0.02%)</title><rect x="95.4555%" y="853" width="0.0172%" height="15" fill="rgb(222,69,15)" fg:x="144197" fg:w="26"/><text x="95.7055%" y="863.50"></text></g><g><title>Method::build_method_counters (26 samples, 0.02%)</title><rect x="95.4555%" y="837" width="0.0172%" height="15" fill="rgb(213,169,7)" fg:x="144197" fg:w="26"/><text x="95.7055%" y="847.50"></text></g><g><title>MethodCounters::allocate (22 samples, 0.01%)</title><rect x="95.4582%" y="821" width="0.0146%" height="15" fill="rgb(251,219,4)" fg:x="144201" fg:w="22"/><text x="95.7082%" y="831.50"></text></g><g><title>Metaspace::allocate (21 samples, 0.01%)</title><rect x="95.4588%" y="805" width="0.0139%" height="15" fill="rgb(241,55,40)" fg:x="144202" fg:w="21"/><text x="95.7088%" y="815.50"></text></g><g><title>JavaThread::pd_last_frame (23 samples, 0.02%)</title><rect x="95.4833%" y="821" width="0.0152%" height="15" fill="rgb(243,57,30)" fg:x="144239" fg:w="23"/><text x="95.7333%" y="831.50"></text></g><g><title>CodeCache::find_blob (22 samples, 0.01%)</title><rect x="95.4840%" y="805" width="0.0146%" height="15" fill="rgb(234,50,30)" fg:x="144240" fg:w="22"/><text x="95.7340%" y="815.50"></text></g><g><title>MethodData::allocate (28 samples, 0.02%)</title><rect x="95.5157%" y="773" width="0.0185%" height="15" fill="rgb(239,23,42)" fg:x="144288" fg:w="28"/><text x="95.7657%" y="783.50"></text></g><g><title>Method::build_interpreter_method_data (30 samples, 0.02%)</title><rect x="95.5157%" y="789" width="0.0199%" height="15" fill="rgb(217,38,19)" fg:x="144288" fg:w="30"/><text x="95.7657%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (46 samples, 0.03%)</title><rect x="95.5356%" y="789" width="0.0305%" height="15" fill="rgb(215,179,16)" fg:x="144318" fg:w="46"/><text x="95.7856%" y="799.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="95.5786%" y="597" width="0.0106%" height="15" fill="rgb(254,21,37)" fg:x="144383" fg:w="16"/><text x="95.8286%" y="607.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="95.5786%" y="581" width="0.0106%" height="15" fill="rgb(219,207,48)" fg:x="144383" fg:w="16"/><text x="95.8286%" y="591.50"></text></g><g><title>Monitor::ILock (19 samples, 0.01%)</title><rect x="95.5773%" y="709" width="0.0126%" height="15" fill="rgb(227,225,41)" fg:x="144381" fg:w="19"/><text x="95.8273%" y="719.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="95.5786%" y="693" width="0.0113%" height="15" fill="rgb(223,130,1)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="703.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="95.5786%" y="677" width="0.0113%" height="15" fill="rgb(249,54,42)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="95.5786%" y="661" width="0.0113%" height="15" fill="rgb(248,69,25)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="671.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="95.5786%" y="645" width="0.0113%" height="15" fill="rgb(234,21,32)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="95.5786%" y="629" width="0.0113%" height="15" fill="rgb(252,136,6)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="639.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="95.5786%" y="613" width="0.0113%" height="15" fill="rgb(245,87,12)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="623.50"></text></g><g><title>Monitor::lock (22 samples, 0.01%)</title><rect x="95.5767%" y="725" width="0.0146%" height="15" fill="rgb(208,12,15)" fg:x="144380" fg:w="22"/><text x="95.8267%" y="735.50"></text></g><g><title>CompileBroker::compile_method_base (43 samples, 0.03%)</title><rect x="95.5714%" y="741" width="0.0285%" height="15" fill="rgb(250,98,2)" fg:x="144372" fg:w="43"/><text x="95.8214%" y="751.50"></text></g><g><title>CompileBroker::compile_method (54 samples, 0.04%)</title><rect x="95.5674%" y="757" width="0.0357%" height="15" fill="rgb(205,213,15)" fg:x="144366" fg:w="54"/><text x="95.8174%" y="767.50"></text></g><g><title>TieredThresholdPolicy::compile (57 samples, 0.04%)</title><rect x="95.5661%" y="789" width="0.0377%" height="15" fill="rgb(248,192,44)" fg:x="144364" fg:w="57"/><text x="95.8161%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (55 samples, 0.04%)</title><rect x="95.5674%" y="773" width="0.0364%" height="15" fill="rgb(221,89,17)" fg:x="144366" fg:w="55"/><text x="95.8174%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (160 samples, 0.11%)</title><rect x="95.4992%" y="821" width="0.1059%" height="15" fill="rgb(209,55,3)" fg:x="144263" fg:w="160"/><text x="95.7492%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (145 samples, 0.10%)</title><rect x="95.5091%" y="805" width="0.0960%" height="15" fill="rgb(247,23,45)" fg:x="144278" fg:w="145"/><text x="95.7591%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (197 samples, 0.13%)</title><rect x="95.4754%" y="837" width="0.1304%" height="15" fill="rgb(235,152,23)" fg:x="144227" fg:w="197"/><text x="95.7254%" y="847.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (200 samples, 0.13%)</title><rect x="95.4747%" y="853" width="0.1324%" height="15" fill="rgb(244,63,13)" fg:x="144226" fg:w="200"/><text x="95.7247%" y="863.50"></text></g><g><title>InterpreterRuntime::ldc (69 samples, 0.05%)</title><rect x="95.6071%" y="853" width="0.0457%" height="15" fill="rgb(227,30,37)" fg:x="144426" fg:w="69"/><text x="95.8571%" y="863.50"></text></g><g><title>ObjectMonitor::enter (22 samples, 0.01%)</title><rect x="95.6528%" y="837" width="0.0146%" height="15" fill="rgb(224,49,42)" fg:x="144495" fg:w="22"/><text x="95.9028%" y="847.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="95.6700%" y="565" width="0.0132%" height="15" fill="rgb(218,129,5)" fg:x="144521" fg:w="20"/><text x="95.9200%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="95.6700%" y="549" width="0.0132%" height="15" fill="rgb(240,199,54)" fg:x="144521" fg:w="20"/><text x="95.9200%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="95.6707%" y="533" width="0.0126%" height="15" fill="rgb(234,31,13)" fg:x="144522" fg:w="19"/><text x="95.9207%" y="543.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="95.6707%" y="517" width="0.0126%" height="15" fill="rgb(219,73,54)" fg:x="144522" fg:w="19"/><text x="95.9207%" y="527.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.02%)</title><rect x="95.6680%" y="741" width="0.0172%" height="15" fill="rgb(251,162,10)" fg:x="144518" fg:w="26"/><text x="95.9180%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="95.6680%" y="725" width="0.0172%" height="15" fill="rgb(240,138,47)" fg:x="144518" fg:w="26"/><text x="95.9180%" y="735.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.02%)</title><rect x="95.6680%" y="709" width="0.0172%" height="15" fill="rgb(216,138,26)" fg:x="144518" fg:w="26"/><text x="95.9180%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="95.6693%" y="693" width="0.0159%" height="15" fill="rgb(243,17,35)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="703.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="95.6693%" y="677" width="0.0159%" height="15" fill="rgb(241,60,18)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="687.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="95.6693%" y="661" width="0.0159%" height="15" fill="rgb(234,2,44)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="671.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="95.6693%" y="645" width="0.0159%" height="15" fill="rgb(225,225,33)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="655.50"></text></g><g><title>futex_wait (24 samples, 0.02%)</title><rect x="95.6693%" y="629" width="0.0159%" height="15" fill="rgb(234,50,31)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="639.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.02%)</title><rect x="95.6693%" y="613" width="0.0159%" height="15" fill="rgb(249,6,25)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="623.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="95.6700%" y="597" width="0.0152%" height="15" fill="rgb(241,5,17)" fg:x="144521" fg:w="23"/><text x="95.9200%" y="607.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="95.6700%" y="581" width="0.0152%" height="15" fill="rgb(207,116,10)" fg:x="144521" fg:w="23"/><text x="95.9200%" y="591.50"></text></g><g><title>Monitor::wait (28 samples, 0.02%)</title><rect x="95.6680%" y="789" width="0.0185%" height="15" fill="rgb(222,128,18)" fg:x="144518" fg:w="28"/><text x="95.9180%" y="799.50"></text></g><g><title>Monitor::IWait (28 samples, 0.02%)</title><rect x="95.6680%" y="773" width="0.0185%" height="15" fill="rgb(229,109,25)" fg:x="144518" fg:w="28"/><text x="95.9180%" y="783.50"></text></g><g><title>os::PlatformEvent::park (28 samples, 0.02%)</title><rect x="95.6680%" y="757" width="0.0185%" height="15" fill="rgb(222,102,25)" fg:x="144518" fg:w="28"/><text x="95.9180%" y="767.50"></text></g><g><title>InterpreterRuntime::monitorenter (55 samples, 0.04%)</title><rect x="95.6528%" y="853" width="0.0364%" height="15" fill="rgb(239,211,5)" fg:x="144495" fg:w="55"/><text x="95.9028%" y="863.50"></text></g><g><title>ObjectSynchronizer::fast_enter (33 samples, 0.02%)</title><rect x="95.6673%" y="837" width="0.0218%" height="15" fill="rgb(223,136,26)" fg:x="144517" fg:w="33"/><text x="95.9173%" y="847.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (33 samples, 0.02%)</title><rect x="95.6673%" y="821" width="0.0218%" height="15" fill="rgb(227,30,15)" fg:x="144517" fg:w="33"/><text x="95.9173%" y="831.50"></text></g><g><title>VMThread::execute (33 samples, 0.02%)</title><rect x="95.6673%" y="805" width="0.0218%" height="15" fill="rgb(247,76,4)" fg:x="144517" fg:w="33"/><text x="95.9173%" y="815.50"></text></g><g><title>InterpreterRuntime::newarray (32 samples, 0.02%)</title><rect x="95.6905%" y="853" width="0.0212%" height="15" fill="rgb(245,38,48)" fg:x="144552" fg:w="32"/><text x="95.9405%" y="863.50"></text></g><g><title>TypeArrayKlass::allocate_common (20 samples, 0.01%)</title><rect x="95.6985%" y="837" width="0.0132%" height="15" fill="rgb(210,220,14)" fg:x="144564" fg:w="20"/><text x="95.9485%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (17 samples, 0.01%)</title><rect x="95.7004%" y="821" width="0.0113%" height="15" fill="rgb(224,60,51)" fg:x="144567" fg:w="17"/><text x="95.9504%" y="831.50"></text></g><g><title>MemAllocator::allocate (17 samples, 0.01%)</title><rect x="95.7004%" y="805" width="0.0113%" height="15" fill="rgb(212,133,49)" fg:x="144567" fg:w="17"/><text x="95.9504%" y="815.50"></text></g><g><title>LinkResolver::resolve_field_access (22 samples, 0.01%)</title><rect x="95.7256%" y="821" width="0.0146%" height="15" fill="rgb(231,39,22)" fg:x="144605" fg:w="22"/><text x="95.9756%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (28 samples, 0.02%)</title><rect x="95.7223%" y="837" width="0.0185%" height="15" fill="rgb(236,173,22)" fg:x="144600" fg:w="28"/><text x="95.9723%" y="847.50"></text></g><g><title>ConstantPool::klass_ref_at (26 samples, 0.02%)</title><rect x="95.7706%" y="805" width="0.0172%" height="15" fill="rgb(210,70,0)" fg:x="144673" fg:w="26"/><text x="96.0206%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (23 samples, 0.02%)</title><rect x="95.7726%" y="789" width="0.0152%" height="15" fill="rgb(215,170,11)" fg:x="144676" fg:w="23"/><text x="96.0226%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (23 samples, 0.02%)</title><rect x="95.7726%" y="773" width="0.0152%" height="15" fill="rgb(220,154,28)" fg:x="144676" fg:w="23"/><text x="96.0226%" y="783.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (18 samples, 0.01%)</title><rect x="95.7878%" y="805" width="0.0119%" height="15" fill="rgb(240,160,41)" fg:x="144699" fg:w="18"/><text x="96.0378%" y="815.50"></text></g><g><title>LinkResolver::resolve_interface_method (20 samples, 0.01%)</title><rect x="95.8077%" y="789" width="0.0132%" height="15" fill="rgb(243,215,41)" fg:x="144729" fg:w="20"/><text x="96.0577%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (42 samples, 0.03%)</title><rect x="95.7997%" y="805" width="0.0278%" height="15" fill="rgb(214,208,31)" fg:x="144717" fg:w="42"/><text x="96.0497%" y="815.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (25 samples, 0.02%)</title><rect x="95.8368%" y="789" width="0.0165%" height="15" fill="rgb(247,57,22)" fg:x="144773" fg:w="25"/><text x="96.0868%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (47 samples, 0.03%)</title><rect x="95.8275%" y="805" width="0.0311%" height="15" fill="rgb(228,73,52)" fg:x="144759" fg:w="47"/><text x="96.0775%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (26 samples, 0.02%)</title><rect x="95.8593%" y="789" width="0.0172%" height="15" fill="rgb(252,60,9)" fg:x="144807" fg:w="26"/><text x="96.1093%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (24 samples, 0.02%)</title><rect x="95.8606%" y="773" width="0.0159%" height="15" fill="rgb(233,9,51)" fg:x="144809" fg:w="24"/><text x="96.1106%" y="783.50"></text></g><g><title>LinkResolver::resolve_static_call (37 samples, 0.02%)</title><rect x="95.8587%" y="805" width="0.0245%" height="15" fill="rgb(223,67,14)" fg:x="144806" fg:w="37"/><text x="96.1087%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (180 samples, 0.12%)</title><rect x="95.7686%" y="821" width="0.1192%" height="15" fill="rgb(222,86,2)" fg:x="144670" fg:w="180"/><text x="96.0186%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (244 samples, 0.16%)</title><rect x="95.7408%" y="837" width="0.1615%" height="15" fill="rgb(243,58,54)" fg:x="144628" fg:w="244"/><text x="95.9908%" y="847.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (36 samples, 0.02%)</title><rect x="95.9063%" y="773" width="0.0238%" height="15" fill="rgb(210,200,39)" fg:x="144878" fg:w="36"/><text x="96.1563%" y="783.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (36 samples, 0.02%)</title><rect x="95.9063%" y="757" width="0.0238%" height="15" fill="rgb(238,135,9)" fg:x="144878" fg:w="36"/><text x="96.1563%" y="767.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (22 samples, 0.01%)</title><rect x="95.9156%" y="741" width="0.0146%" height="15" fill="rgb(232,179,7)" fg:x="144892" fg:w="22"/><text x="96.1656%" y="751.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (62 samples, 0.04%)</title><rect x="95.9050%" y="789" width="0.0410%" height="15" fill="rgb(245,65,41)" fg:x="144876" fg:w="62"/><text x="96.1550%" y="799.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (24 samples, 0.02%)</title><rect x="95.9301%" y="773" width="0.0159%" height="15" fill="rgb(227,43,8)" fg:x="144914" fg:w="24"/><text x="96.1801%" y="783.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (22 samples, 0.01%)</title><rect x="95.9315%" y="757" width="0.0146%" height="15" fill="rgb(235,91,14)" fg:x="144916" fg:w="22"/><text x="96.1815%" y="767.50"></text></g><g><title>SystemDictionary::find_method_handle_type (18 samples, 0.01%)</title><rect x="95.9474%" y="757" width="0.0119%" height="15" fill="rgb(235,219,31)" fg:x="144940" fg:w="18"/><text x="96.1974%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (89 samples, 0.06%)</title><rect x="95.9023%" y="837" width="0.0589%" height="15" fill="rgb(227,121,25)" fg:x="144872" fg:w="89"/><text x="96.1523%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (85 samples, 0.06%)</title><rect x="95.9050%" y="821" width="0.0563%" height="15" fill="rgb(254,129,24)" fg:x="144876" fg:w="85"/><text x="96.1550%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (85 samples, 0.06%)</title><rect x="95.9050%" y="805" width="0.0563%" height="15" fill="rgb(226,144,49)" fg:x="144876" fg:w="85"/><text x="96.1550%" y="815.50"></text></g><g><title>LinkResolver::resolve_dynamic_call (23 samples, 0.02%)</title><rect x="95.9460%" y="789" width="0.0152%" height="15" fill="rgb(214,187,32)" fg:x="144938" fg:w="23"/><text x="96.1960%" y="799.50"></text></g><g><title>SystemDictionary::find_dynamic_call_site_invoker (23 samples, 0.02%)</title><rect x="95.9460%" y="773" width="0.0152%" height="15" fill="rgb(243,129,46)" fg:x="144938" fg:w="23"/><text x="96.1960%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (387 samples, 0.26%)</title><rect x="95.7157%" y="853" width="0.2562%" height="15" fill="rgb(221,185,35)" fg:x="144590" fg:w="387"/><text x="95.9657%" y="863.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (17 samples, 0.01%)</title><rect x="95.9719%" y="837" width="0.0113%" height="15" fill="rgb(205,0,32)" fg:x="144977" fg:w="17"/><text x="96.2219%" y="847.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (17 samples, 0.01%)</title><rect x="95.9719%" y="821" width="0.0113%" height="15" fill="rgb(229,179,12)" fg:x="144977" fg:w="17"/><text x="96.2219%" y="831.50"></text></g><g><title>ConstantPool::string_at_impl (16 samples, 0.01%)</title><rect x="95.9725%" y="805" width="0.0106%" height="15" fill="rgb(252,107,19)" fg:x="144978" fg:w="16"/><text x="96.2225%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (18 samples, 0.01%)</title><rect x="95.9719%" y="853" width="0.0119%" height="15" fill="rgb(220,95,27)" fg:x="144977" fg:w="18"/><text x="96.2219%" y="863.50"></text></g><g><title>JVM_Clone (31 samples, 0.02%)</title><rect x="95.9917%" y="853" width="0.0205%" height="15" fill="rgb(240,113,40)" fg:x="145007" fg:w="31"/><text x="96.2417%" y="863.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (17 samples, 0.01%)</title><rect x="96.0122%" y="853" width="0.0113%" height="15" fill="rgb(208,4,43)" fg:x="145038" fg:w="17"/><text x="96.2622%" y="863.50"></text></g><g><title>JVM_FindLoadedClass (21 samples, 0.01%)</title><rect x="96.0341%" y="853" width="0.0139%" height="15" fill="rgb(247,189,30)" fg:x="145071" fg:w="21"/><text x="96.2841%" y="863.50"></text></g><g><title>JVM_GetCallerClass (16 samples, 0.01%)</title><rect x="96.0486%" y="853" width="0.0106%" height="15" fill="rgb(231,157,17)" fg:x="145093" fg:w="16"/><text x="96.2986%" y="863.50"></text></g><g><title>get_parameter_types (21 samples, 0.01%)</title><rect x="96.0764%" y="805" width="0.0139%" height="15" fill="rgb(224,139,6)" fg:x="145135" fg:w="21"/><text x="96.3264%" y="815.50"></text></g><g><title>JVM_GetClassDeclaredMethods (43 samples, 0.03%)</title><rect x="96.0639%" y="853" width="0.0285%" height="15" fill="rgb(223,83,16)" fg:x="145116" fg:w="43"/><text x="96.3139%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (43 samples, 0.03%)</title><rect x="96.0639%" y="837" width="0.0285%" height="15" fill="rgb(232,211,20)" fg:x="145116" fg:w="43"/><text x="96.3139%" y="847.50"></text></g><g><title>Reflection::new_method (36 samples, 0.02%)</title><rect x="96.0685%" y="821" width="0.0238%" height="15" fill="rgb(225,203,35)" fg:x="145123" fg:w="36"/><text x="96.3185%" y="831.50"></text></g><g><title>VMThread::execute (17 samples, 0.01%)</title><rect x="96.0996%" y="805" width="0.0113%" height="15" fill="rgb(215,211,44)" fg:x="145170" fg:w="17"/><text x="96.3496%" y="815.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (21 samples, 0.01%)</title><rect x="96.0976%" y="821" width="0.0139%" height="15" fill="rgb(248,213,26)" fg:x="145167" fg:w="21"/><text x="96.3476%" y="831.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (29 samples, 0.02%)</title><rect x="96.0937%" y="837" width="0.0192%" height="15" fill="rgb(214,23,52)" fg:x="145161" fg:w="29"/><text x="96.3437%" y="847.50"></text></g><g><title>JVM_IHashCode (41 samples, 0.03%)</title><rect x="96.0923%" y="853" width="0.0271%" height="15" fill="rgb(225,173,50)" fg:x="145159" fg:w="41"/><text x="96.3423%" y="863.50"></text></g><g><title>JVM_InitStackTraceElementArray (27 samples, 0.02%)</title><rect x="96.1268%" y="853" width="0.0179%" height="15" fill="rgb(206,150,22)" fg:x="145211" fg:w="27"/><text x="96.3768%" y="863.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (27 samples, 0.02%)</title><rect x="96.1268%" y="837" width="0.0179%" height="15" fill="rgb(239,64,23)" fg:x="145211" fg:w="27"/><text x="96.3768%" y="847.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (24 samples, 0.02%)</title><rect x="96.1287%" y="821" width="0.0159%" height="15" fill="rgb(242,50,38)" fg:x="145214" fg:w="24"/><text x="96.3787%" y="831.50"></text></g><g><title>StringTable::intern (16 samples, 0.01%)</title><rect x="96.1340%" y="805" width="0.0106%" height="15" fill="rgb(217,91,15)" fg:x="145222" fg:w="16"/><text x="96.3840%" y="815.50"></text></g><g><title>JVM_IsInterrupted (27 samples, 0.02%)</title><rect x="96.1618%" y="853" width="0.0179%" height="15" fill="rgb(230,172,6)" fg:x="145264" fg:w="27"/><text x="96.4118%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="96.2035%" y="565" width="0.0165%" height="15" fill="rgb(221,98,26)" fg:x="145327" fg:w="25"/><text x="96.4535%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="96.2042%" y="549" width="0.0159%" height="15" fill="rgb(227,210,45)" fg:x="145328" fg:w="24"/><text x="96.4542%" y="559.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="96.2042%" y="533" width="0.0159%" height="15" fill="rgb(206,8,30)" fg:x="145328" fg:w="24"/><text x="96.4542%" y="543.50"></text></g><g><title>Monitor::lock_without_safepoint_check (29 samples, 0.02%)</title><rect x="96.2016%" y="805" width="0.0192%" height="15" fill="rgb(241,219,17)" fg:x="145324" fg:w="29"/><text x="96.4516%" y="815.50"></text></g><g><title>Monitor::ILock (29 samples, 0.02%)</title><rect x="96.2016%" y="789" width="0.0192%" height="15" fill="rgb(247,121,29)" fg:x="145324" fg:w="29"/><text x="96.4516%" y="799.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="96.2016%" y="773" width="0.0192%" height="15" fill="rgb(219,169,49)" fg:x="145324" fg:w="29"/><text x="96.4516%" y="783.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="96.2029%" y="757" width="0.0179%" height="15" fill="rgb(253,49,49)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="96.2029%" y="741" width="0.0179%" height="15" fill="rgb(217,178,3)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="751.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="96.2029%" y="725" width="0.0179%" height="15" fill="rgb(234,73,37)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="96.2029%" y="709" width="0.0179%" height="15" fill="rgb(250,98,22)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="719.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="96.2029%" y="693" width="0.0179%" height="15" fill="rgb(220,108,37)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="703.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="96.2029%" y="677" width="0.0179%" height="15" fill="rgb(225,168,10)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="687.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="96.2029%" y="661" width="0.0179%" height="15" fill="rgb(247,215,21)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="671.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="96.2029%" y="645" width="0.0179%" height="15" fill="rgb(253,189,31)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="655.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.02%)</title><rect x="96.2029%" y="629" width="0.0179%" height="15" fill="rgb(241,54,22)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="639.50"></text></g><g><title>schedule (27 samples, 0.02%)</title><rect x="96.2029%" y="613" width="0.0179%" height="15" fill="rgb(211,87,4)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="623.50"></text></g><g><title>__schedule (27 samples, 0.02%)</title><rect x="96.2029%" y="597" width="0.0179%" height="15" fill="rgb(245,112,24)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="607.50"></text></g><g><title>finish_task_switch (27 samples, 0.02%)</title><rect x="96.2029%" y="581" width="0.0179%" height="15" fill="rgb(235,190,41)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="591.50"></text></g><g><title>JVM_Yield (30 samples, 0.02%)</title><rect x="96.2016%" y="853" width="0.0199%" height="15" fill="rgb(214,89,8)" fg:x="145324" fg:w="30"/><text x="96.4516%" y="863.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (30 samples, 0.02%)</title><rect x="96.2016%" y="837" width="0.0199%" height="15" fill="rgb(249,155,35)" fg:x="145324" fg:w="30"/><text x="96.4516%" y="847.50"></text></g><g><title>SafepointSynchronize::block (30 samples, 0.02%)</title><rect x="96.2016%" y="821" width="0.0199%" height="15" fill="rgb(249,88,26)" fg:x="145324" fg:w="30"/><text x="96.4516%" y="831.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (16 samples, 0.01%)</title><rect x="96.2221%" y="853" width="0.0106%" height="15" fill="rgb(232,56,8)" fg:x="145355" fg:w="16"/><text x="96.4721%" y="863.50"></text></g><g><title>SymbolTable::add (26 samples, 0.02%)</title><rect x="96.2618%" y="709" width="0.0172%" height="15" fill="rgb(240,95,3)" fg:x="145415" fg:w="26"/><text x="96.5118%" y="719.50"></text></g><g><title>SymbolTable::basic_add (26 samples, 0.02%)</title><rect x="96.2618%" y="693" width="0.0172%" height="15" fill="rgb(222,44,28)" fg:x="145415" fg:w="26"/><text x="96.5118%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (265 samples, 0.18%)</title><rect x="96.2790%" y="709" width="0.1754%" height="15" fill="rgb(234,16,30)" fg:x="145441" fg:w="265"/><text x="96.5290%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (304 samples, 0.20%)</title><rect x="96.2539%" y="725" width="0.2012%" height="15" fill="rgb(223,26,17)" fg:x="145403" fg:w="304"/><text x="96.5039%" y="735.50"></text></g><g><title>ClassFileParser::parse_constant_pool (316 samples, 0.21%)</title><rect x="96.2492%" y="741" width="0.2092%" height="15" fill="rgb(239,187,47)" fg:x="145396" fg:w="316"/><text x="96.4992%" y="751.50"></text></g><g><title>Method::allocate (22 samples, 0.01%)</title><rect x="96.4875%" y="709" width="0.0146%" height="15" fill="rgb(247,102,50)" fg:x="145756" fg:w="22"/><text x="96.7375%" y="719.50"></text></g><g><title>ClassFileParser::parse_methods (72 samples, 0.05%)</title><rect x="96.4664%" y="741" width="0.0477%" height="15" fill="rgb(231,216,22)" fg:x="145724" fg:w="72"/><text x="96.7164%" y="751.50"></text></g><g><title>ClassFileParser::parse_method (72 samples, 0.05%)</title><rect x="96.4664%" y="725" width="0.0477%" height="15" fill="rgb(216,201,26)" fg:x="145724" fg:w="72"/><text x="96.7164%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (413 samples, 0.27%)</title><rect x="96.2446%" y="757" width="0.2734%" height="15" fill="rgb(214,186,23)" fg:x="145389" fg:w="413"/><text x="96.4946%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (415 samples, 0.27%)</title><rect x="96.2446%" y="773" width="0.2747%" height="15" fill="rgb(235,184,4)" fg:x="145389" fg:w="415"/><text x="96.4946%" y="783.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (31 samples, 0.02%)</title><rect x="96.5273%" y="725" width="0.0205%" height="15" fill="rgb(244,46,17)" fg:x="145816" fg:w="31"/><text x="96.7773%" y="735.50"></text></g><g><title>DefaultMethods::generate_default_methods (45 samples, 0.03%)</title><rect x="96.5226%" y="741" width="0.0298%" height="15" fill="rgb(248,74,46)" fg:x="145809" fg:w="45"/><text x="96.7726%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (69 samples, 0.05%)</title><rect x="96.5193%" y="757" width="0.0457%" height="15" fill="rgb(243,79,5)" fg:x="145804" fg:w="69"/><text x="96.7693%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (75 samples, 0.05%)</title><rect x="96.5193%" y="773" width="0.0496%" height="15" fill="rgb(213,148,1)" fg:x="145804" fg:w="75"/><text x="96.7693%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (518 samples, 0.34%)</title><rect x="96.2439%" y="789" width="0.3429%" height="15" fill="rgb(221,30,0)" fg:x="145388" fg:w="518"/><text x="96.4939%" y="799.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (27 samples, 0.02%)</title><rect x="96.5690%" y="773" width="0.0179%" height="15" fill="rgb(207,85,29)" fg:x="145879" fg:w="27"/><text x="96.8190%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (537 samples, 0.36%)</title><rect x="96.2433%" y="805" width="0.3555%" height="15" fill="rgb(239,31,46)" fg:x="145387" fg:w="537"/><text x="96.4933%" y="815.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (18 samples, 0.01%)</title><rect x="96.5868%" y="789" width="0.0119%" height="15" fill="rgb(219,6,1)" fg:x="145906" fg:w="18"/><text x="96.8368%" y="799.50"></text></g><g><title>SystemDictionary::define_instance_class (17 samples, 0.01%)</title><rect x="96.5875%" y="773" width="0.0113%" height="15" fill="rgb(229,90,29)" fg:x="145907" fg:w="17"/><text x="96.8375%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (547 samples, 0.36%)</title><rect x="96.2380%" y="837" width="0.3621%" height="15" fill="rgb(242,201,42)" fg:x="145379" fg:w="547"/><text x="96.4880%" y="847.50"></text></g><g><title>jvm_define_class_common (547 samples, 0.36%)</title><rect x="96.2380%" y="821" width="0.3621%" height="15" fill="rgb(243,80,54)" fg:x="145379" fg:w="547"/><text x="96.4880%" y="831.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (562 samples, 0.37%)</title><rect x="96.2380%" y="853" width="0.3720%" height="15" fill="rgb(223,166,15)" fg:x="145379" fg:w="562"/><text x="96.4880%" y="863.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.02%)</title><rect x="96.6133%" y="789" width="0.0152%" height="15" fill="rgb(238,78,27)" fg:x="145946" fg:w="23"/><text x="96.8633%" y="799.50"></text></g><g><title>JVM_FindClassFromBootLoader (29 samples, 0.02%)</title><rect x="96.6100%" y="837" width="0.0192%" height="15" fill="rgb(235,28,43)" fg:x="145941" fg:w="29"/><text x="96.8600%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_null (28 samples, 0.02%)</title><rect x="96.6107%" y="821" width="0.0185%" height="15" fill="rgb(240,210,28)" fg:x="145942" fg:w="28"/><text x="96.8607%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (28 samples, 0.02%)</title><rect x="96.6107%" y="805" width="0.0185%" height="15" fill="rgb(253,6,46)" fg:x="145942" fg:w="28"/><text x="96.8607%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (33 samples, 0.02%)</title><rect x="96.6100%" y="853" width="0.0218%" height="15" fill="rgb(250,159,47)" fg:x="145941" fg:w="33"/><text x="96.8600%" y="863.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (26 samples, 0.02%)</title><rect x="96.6457%" y="853" width="0.0172%" height="15" fill="rgb(216,139,2)" fg:x="145995" fg:w="26"/><text x="96.8957%" y="863.50"></text></g><g><title>os_getParentPidAndTimings (26 samples, 0.02%)</title><rect x="96.6457%" y="837" width="0.0172%" height="15" fill="rgb(221,124,44)" fg:x="145995" fg:w="26"/><text x="96.8957%" y="847.50"></text></g><g><title>copy_process (25 samples, 0.02%)</title><rect x="96.6749%" y="741" width="0.0165%" height="15" fill="rgb(205,37,22)" fg:x="146039" fg:w="25"/><text x="96.9249%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="96.6742%" y="805" width="0.0212%" height="15" fill="rgb(250,55,8)" fg:x="146038" fg:w="32"/><text x="96.9242%" y="815.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="96.6742%" y="789" width="0.0212%" height="15" fill="rgb(215,83,48)" fg:x="146038" fg:w="32"/><text x="96.9242%" y="799.50"></text></g><g><title>__x64_sys_vfork (32 samples, 0.02%)</title><rect x="96.6742%" y="773" width="0.0212%" height="15" fill="rgb(253,2,32)" fg:x="146038" fg:w="32"/><text x="96.9242%" y="783.50"></text></g><g><title>kernel_clone (31 samples, 0.02%)</title><rect x="96.6749%" y="757" width="0.0205%" height="15" fill="rgb(236,67,28)" fg:x="146039" fg:w="31"/><text x="96.9249%" y="767.50"></text></g><g><title>calculate_sigpending (44 samples, 0.03%)</title><rect x="96.6954%" y="789" width="0.0291%" height="15" fill="rgb(252,55,15)" fg:x="146070" fg:w="44"/><text x="96.9454%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (834 samples, 0.55%)</title><rect x="96.7550%" y="757" width="0.5521%" height="15" fill="rgb(243,173,17)" fg:x="146160" fg:w="834"/><text x="97.0050%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (819 samples, 0.54%)</title><rect x="96.7649%" y="741" width="0.5422%" height="15" fill="rgb(215,212,13)" fg:x="146175" fg:w="819"/><text x="97.0149%" y="751.50"></text></g><g><title>native_write_msr (817 samples, 0.54%)</title><rect x="96.7662%" y="725" width="0.5408%" height="15" fill="rgb(253,176,6)" fg:x="146177" fg:w="817"/><text x="97.0162%" y="735.50"></text></g><g><title>asm_sysvec_irq_work (25 samples, 0.02%)</title><rect x="97.3071%" y="757" width="0.0165%" height="15" fill="rgb(236,105,26)" fg:x="146994" fg:w="25"/><text x="97.5571%" y="767.50"></text></g><g><title>schedule_tail (906 samples, 0.60%)</title><rect x="96.7245%" y="789" width="0.5998%" height="15" fill="rgb(239,226,32)" fg:x="146114" fg:w="906"/><text x="96.9745%" y="799.50"></text></g><g><title>finish_task_switch (892 samples, 0.59%)</title><rect x="96.7338%" y="773" width="0.5905%" height="15" fill="rgb(236,104,51)" fg:x="146128" fg:w="892"/><text x="96.9838%" y="783.50"></text></g><g><title>ret_from_fork (953 samples, 0.63%)</title><rect x="96.6954%" y="805" width="0.6309%" height="15" fill="rgb(220,172,33)" fg:x="146070" fg:w="953"/><text x="96.9454%" y="815.50"></text></g><g><title>__libc_vfork (987 samples, 0.65%)</title><rect x="96.6736%" y="821" width="0.6534%" height="15" fill="rgb(224,182,25)" fg:x="146037" fg:w="987"/><text x="96.9236%" y="831.50"></text></g><g><title>load_elf_binary (17 samples, 0.01%)</title><rect x="97.3494%" y="693" width="0.0113%" height="15" fill="rgb(236,184,24)" fg:x="147058" fg:w="17"/><text x="97.5994%" y="703.50"></text></g><g><title>sched_exec (18 samples, 0.01%)</title><rect x="97.3633%" y="693" width="0.0119%" height="15" fill="rgb(241,221,14)" fg:x="147079" fg:w="18"/><text x="97.6133%" y="703.50"></text></g><g><title>bprm_execve (76 samples, 0.05%)</title><rect x="97.3355%" y="709" width="0.0503%" height="15" fill="rgb(227,146,5)" fg:x="147037" fg:w="76"/><text x="97.5855%" y="719.50"></text></g><g><title>__get_user_pages_remote (19 samples, 0.01%)</title><rect x="97.3858%" y="677" width="0.0126%" height="15" fill="rgb(214,15,23)" fg:x="147113" fg:w="19"/><text x="97.6358%" y="687.50"></text></g><g><title>__get_user_pages (19 samples, 0.01%)</title><rect x="97.3858%" y="661" width="0.0126%" height="15" fill="rgb(233,157,31)" fg:x="147113" fg:w="19"/><text x="97.6358%" y="671.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="97.3878%" y="645" width="0.0106%" height="15" fill="rgb(211,27,52)" fg:x="147116" fg:w="16"/><text x="97.6378%" y="655.50"></text></g><g><title>copy_string_kernel (20 samples, 0.01%)</title><rect x="97.3858%" y="709" width="0.0132%" height="15" fill="rgb(212,223,15)" fg:x="147113" fg:w="20"/><text x="97.6358%" y="719.50"></text></g><g><title>get_arg_page (20 samples, 0.01%)</title><rect x="97.3858%" y="693" width="0.0132%" height="15" fill="rgb(254,211,0)" fg:x="147113" fg:w="20"/><text x="97.6358%" y="703.50"></text></g><g><title>JDK_execvpe (118 samples, 0.08%)</title><rect x="97.3302%" y="805" width="0.0781%" height="15" fill="rgb(205,43,38)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="815.50"></text></g><g><title>__GI_execve (118 samples, 0.08%)</title><rect x="97.3302%" y="789" width="0.0781%" height="15" fill="rgb(242,206,46)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.08%)</title><rect x="97.3302%" y="773" width="0.0781%" height="15" fill="rgb(220,221,12)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="783.50"></text></g><g><title>do_syscall_64 (118 samples, 0.08%)</title><rect x="97.3302%" y="757" width="0.0781%" height="15" fill="rgb(217,156,35)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="767.50"></text></g><g><title>__x64_sys_execve (118 samples, 0.08%)</title><rect x="97.3302%" y="741" width="0.0781%" height="15" fill="rgb(207,181,49)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="751.50"></text></g><g><title>do_execveat_common (118 samples, 0.08%)</title><rect x="97.3302%" y="725" width="0.0781%" height="15" fill="rgb(235,103,47)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="735.50"></text></g><g><title>__close (18 samples, 0.01%)</title><rect x="97.4136%" y="805" width="0.0119%" height="15" fill="rgb(222,63,28)" fg:x="147155" fg:w="18"/><text x="97.6636%" y="815.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="97.4375%" y="757" width="0.0139%" height="15" fill="rgb(244,137,21)" fg:x="147191" fg:w="21"/><text x="97.6875%" y="767.50"></text></g><g><title>__x64_sys_close (21 samples, 0.01%)</title><rect x="97.4375%" y="741" width="0.0139%" height="15" fill="rgb(228,35,27)" fg:x="147191" fg:w="21"/><text x="97.6875%" y="751.50"></text></g><g><title>filp_close (20 samples, 0.01%)</title><rect x="97.4381%" y="725" width="0.0132%" height="15" fill="rgb(226,191,41)" fg:x="147192" fg:w="20"/><text x="97.6881%" y="735.50"></text></g><g><title>__close (24 samples, 0.02%)</title><rect x="97.4362%" y="789" width="0.0159%" height="15" fill="rgb(210,154,3)" fg:x="147189" fg:w="24"/><text x="97.6862%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="97.4375%" y="773" width="0.0146%" height="15" fill="rgb(216,60,49)" fg:x="147191" fg:w="22"/><text x="97.6875%" y="783.50"></text></g><g><title>do_filp_open (19 samples, 0.01%)</title><rect x="97.4580%" y="693" width="0.0126%" height="15" fill="rgb(226,17,20)" fg:x="147222" fg:w="19"/><text x="97.7080%" y="703.50"></text></g><g><title>path_openat (18 samples, 0.01%)</title><rect x="97.4587%" y="677" width="0.0119%" height="15" fill="rgb(206,115,35)" fg:x="147223" fg:w="18"/><text x="97.7087%" y="687.50"></text></g><g><title>__x64_sys_openat (50 samples, 0.03%)</title><rect x="97.4527%" y="725" width="0.0331%" height="15" fill="rgb(227,88,1)" fg:x="147214" fg:w="50"/><text x="97.7027%" y="735.50"></text></g><g><title>do_sys_openat2 (47 samples, 0.03%)</title><rect x="97.4547%" y="709" width="0.0311%" height="15" fill="rgb(230,222,24)" fg:x="147217" fg:w="47"/><text x="97.7047%" y="719.50"></text></g><g><title>getname_flags.part.0 (22 samples, 0.01%)</title><rect x="97.4712%" y="693" width="0.0146%" height="15" fill="rgb(214,124,32)" fg:x="147242" fg:w="22"/><text x="97.7212%" y="703.50"></text></g><g><title>__GI___open64_nocancel (53 samples, 0.04%)</title><rect x="97.4520%" y="773" width="0.0351%" height="15" fill="rgb(240,41,36)" fg:x="147213" fg:w="53"/><text x="97.7020%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.03%)</title><rect x="97.4527%" y="757" width="0.0344%" height="15" fill="rgb(221,17,52)" fg:x="147214" fg:w="52"/><text x="97.7027%" y="767.50"></text></g><g><title>do_syscall_64 (52 samples, 0.03%)</title><rect x="97.4527%" y="741" width="0.0344%" height="15" fill="rgb(252,70,16)" fg:x="147214" fg:w="52"/><text x="97.7027%" y="751.50"></text></g><g><title>__opendir (57 samples, 0.04%)</title><rect x="97.4520%" y="789" width="0.0377%" height="15" fill="rgb(250,177,4)" fg:x="147213" fg:w="57"/><text x="97.7020%" y="799.50"></text></g><g><title>closeDescriptors (101 samples, 0.07%)</title><rect x="97.4262%" y="805" width="0.0669%" height="15" fill="rgb(240,188,47)" fg:x="147174" fg:w="101"/><text x="97.6762%" y="815.50"></text></g><g><title>do_dup2 (16 samples, 0.01%)</title><rect x="97.5057%" y="725" width="0.0106%" height="15" fill="rgb(215,92,12)" fg:x="147294" fg:w="16"/><text x="97.7557%" y="735.50"></text></g><g><title>__GI___dup2 (34 samples, 0.02%)</title><rect x="97.4951%" y="789" width="0.0225%" height="15" fill="rgb(242,110,29)" fg:x="147278" fg:w="34"/><text x="97.7451%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="97.5010%" y="773" width="0.0165%" height="15" fill="rgb(208,211,26)" fg:x="147287" fg:w="25"/><text x="97.7510%" y="783.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="97.5010%" y="757" width="0.0165%" height="15" fill="rgb(244,147,6)" fg:x="147287" fg:w="25"/><text x="97.7510%" y="767.50"></text></g><g><title>__x64_sys_dup2 (21 samples, 0.01%)</title><rect x="97.5037%" y="741" width="0.0139%" height="15" fill="rgb(211,130,42)" fg:x="147291" fg:w="21"/><text x="97.7537%" y="751.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,302 samples, 0.86%)</title><rect x="96.6630%" y="853" width="0.8619%" height="15" fill="rgb(220,63,1)" fg:x="146021" fg:w="1302"/><text x="96.9130%" y="863.50"></text></g><g><title>vforkChild (1,286 samples, 0.85%)</title><rect x="96.6736%" y="837" width="0.8513%" height="15" fill="rgb(241,212,30)" fg:x="146037" fg:w="1286"/><text x="96.9236%" y="847.50"></text></g><g><title>childProcess (299 samples, 0.20%)</title><rect x="97.3269%" y="821" width="0.1979%" height="15" fill="rgb(233,153,17)" fg:x="147024" fg:w="299"/><text x="97.5769%" y="831.50"></text></g><g><title>moveDescriptor (46 samples, 0.03%)</title><rect x="97.4944%" y="805" width="0.0305%" height="15" fill="rgb(236,3,10)" fg:x="147277" fg:w="46"/><text x="97.7444%" y="815.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (18 samples, 0.01%)</title><rect x="97.5249%" y="853" width="0.0119%" height="15" fill="rgb(232,41,21)" fg:x="147323" fg:w="18"/><text x="97.7749%" y="863.50"></text></g><g><title>JVM_FillInStackTrace (18 samples, 0.01%)</title><rect x="97.5249%" y="837" width="0.0119%" height="15" fill="rgb(206,63,51)" fg:x="147323" fg:w="18"/><text x="97.7749%" y="847.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (18 samples, 0.01%)</title><rect x="97.5249%" y="821" width="0.0119%" height="15" fill="rgb(250,214,3)" fg:x="147323" fg:w="18"/><text x="97.7749%" y="831.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (16 samples, 0.01%)</title><rect x="97.5262%" y="805" width="0.0106%" height="15" fill="rgb(254,89,27)" fg:x="147325" fg:w="16"/><text x="97.7762%" y="815.50"></text></g><g><title>MHN_resolve_Mem (17 samples, 0.01%)</title><rect x="97.5374%" y="853" width="0.0113%" height="15" fill="rgb(249,41,14)" fg:x="147342" fg:w="17"/><text x="97.7874%" y="863.50"></text></g><g><title>MethodHandles::resolve_MemberName (17 samples, 0.01%)</title><rect x="97.5374%" y="837" width="0.0113%" height="15" fill="rgb(221,196,51)" fg:x="147342" fg:w="17"/><text x="97.7874%" y="847.50"></text></g><g><title>OptoRuntime::new_array_C (17 samples, 0.01%)</title><rect x="97.5487%" y="853" width="0.0113%" height="15" fill="rgb(214,116,26)" fg:x="147359" fg:w="17"/><text x="97.7987%" y="863.50"></text></g><g><title>CompileBroker::compile_method (17 samples, 0.01%)</title><rect x="97.6023%" y="773" width="0.0113%" height="15" fill="rgb(236,67,7)" fg:x="147440" fg:w="17"/><text x="97.8523%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (47 samples, 0.03%)</title><rect x="97.5831%" y="837" width="0.0311%" height="15" fill="rgb(253,179,32)" fg:x="147411" fg:w="47"/><text x="97.8331%" y="847.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (32 samples, 0.02%)</title><rect x="97.5930%" y="821" width="0.0212%" height="15" fill="rgb(218,33,15)" fg:x="147426" fg:w="32"/><text x="97.8430%" y="831.50"></text></g><g><title>TieredThresholdPolicy::compile (18 samples, 0.01%)</title><rect x="97.6023%" y="805" width="0.0119%" height="15" fill="rgb(217,202,41)" fg:x="147440" fg:w="18"/><text x="97.8523%" y="815.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (18 samples, 0.01%)</title><rect x="97.6023%" y="789" width="0.0119%" height="15" fill="rgb(234,133,5)" fg:x="147440" fg:w="18"/><text x="97.8523%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (79 samples, 0.05%)</title><rect x="97.5725%" y="853" width="0.0523%" height="15" fill="rgb(240,47,40)" fg:x="147395" fg:w="79"/><text x="97.8225%" y="863.50"></text></g><g><title>Runtime1::monitorenter (31 samples, 0.02%)</title><rect x="97.6275%" y="853" width="0.0205%" height="15" fill="rgb(234,166,26)" fg:x="147478" fg:w="31"/><text x="97.8775%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="97.6765%" y="613" width="0.0225%" height="15" fill="rgb(244,125,51)" fg:x="147552" fg:w="34"/><text x="97.9265%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="97.6771%" y="597" width="0.0218%" height="15" fill="rgb(229,171,11)" fg:x="147553" fg:w="33"/><text x="97.9271%" y="607.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="97.6771%" y="581" width="0.0218%" height="15" fill="rgb(224,38,45)" fg:x="147553" fg:w="33"/><text x="97.9271%" y="591.50"></text></g><g><title>finish_task_switch (36 samples, 0.02%)</title><rect x="97.6765%" y="629" width="0.0238%" height="15" fill="rgb(237,27,7)" fg:x="147552" fg:w="36"/><text x="97.9265%" y="639.50"></text></g><g><title>ObjectMonitor::enter (53 samples, 0.04%)</title><rect x="97.6659%" y="837" width="0.0351%" height="15" fill="rgb(216,52,7)" fg:x="147536" fg:w="53"/><text x="97.9159%" y="847.50"></text></g><g><title>os::PlatformEvent::park (52 samples, 0.03%)</title><rect x="97.6665%" y="821" width="0.0344%" height="15" fill="rgb(243,11,11)" fg:x="147537" fg:w="52"/><text x="97.9165%" y="831.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.03%)</title><rect x="97.6745%" y="805" width="0.0265%" height="15" fill="rgb(253,167,20)" fg:x="147549" fg:w="40"/><text x="97.9245%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.03%)</title><rect x="97.6745%" y="789" width="0.0265%" height="15" fill="rgb(215,207,5)" fg:x="147549" fg:w="40"/><text x="97.9245%" y="799.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.03%)</title><rect x="97.6751%" y="773" width="0.0258%" height="15" fill="rgb(252,127,31)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="97.6751%" y="757" width="0.0258%" height="15" fill="rgb(209,106,27)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="767.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="97.6751%" y="741" width="0.0258%" height="15" fill="rgb(214,220,18)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="751.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="97.6751%" y="725" width="0.0258%" height="15" fill="rgb(237,89,12)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="735.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="97.6751%" y="709" width="0.0258%" height="15" fill="rgb(209,167,36)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="719.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="97.6751%" y="693" width="0.0258%" height="15" fill="rgb(243,45,22)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="703.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.03%)</title><rect x="97.6751%" y="677" width="0.0258%" height="15" fill="rgb(239,2,46)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="687.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="97.6751%" y="661" width="0.0258%" height="15" fill="rgb(241,101,0)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="671.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="97.6751%" y="645" width="0.0258%" height="15" fill="rgb(244,34,31)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="655.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (54 samples, 0.04%)</title><rect x="97.6659%" y="853" width="0.0357%" height="15" fill="rgb(248,23,22)" fg:x="147536" fg:w="54"/><text x="97.9159%" y="863.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (35 samples, 0.02%)</title><rect x="97.7135%" y="853" width="0.0232%" height="15" fill="rgb(218,27,48)" fg:x="147608" fg:w="35"/><text x="97.9635%" y="863.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.02%)</title><rect x="97.7142%" y="837" width="0.0225%" height="15" fill="rgb(232,78,1)" fg:x="147609" fg:w="34"/><text x="97.9642%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (31 samples, 0.02%)</title><rect x="97.7638%" y="805" width="0.0205%" height="15" fill="rgb(233,169,12)" fg:x="147684" fg:w="31"/><text x="98.0138%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (31 samples, 0.02%)</title><rect x="97.7638%" y="789" width="0.0205%" height="15" fill="rgb(225,222,54)" fg:x="147684" fg:w="31"/><text x="98.0138%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (45 samples, 0.03%)</title><rect x="97.7638%" y="821" width="0.0298%" height="15" fill="rgb(245,126,29)" fg:x="147684" fg:w="45"/><text x="98.0138%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (62 samples, 0.04%)</title><rect x="97.7532%" y="853" width="0.0410%" height="15" fill="rgb(241,63,48)" fg:x="147668" fg:w="62"/><text x="98.0032%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (59 samples, 0.04%)</title><rect x="97.7552%" y="837" width="0.0391%" height="15" fill="rgb(235,126,38)" fg:x="147671" fg:w="59"/><text x="98.0052%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (16 samples, 0.01%)</title><rect x="97.7956%" y="773" width="0.0106%" height="15" fill="rgb(232,96,49)" fg:x="147732" fg:w="16"/><text x="98.0456%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (16 samples, 0.01%)</title><rect x="97.7956%" y="757" width="0.0106%" height="15" fill="rgb(211,146,40)" fg:x="147732" fg:w="16"/><text x="98.0456%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="97.7956%" y="789" width="0.0119%" height="15" fill="rgb(247,93,44)" fg:x="147732" fg:w="18"/><text x="98.0456%" y="799.50"></text></g><g><title>JVM_DefineClass (23 samples, 0.02%)</title><rect x="97.7943%" y="837" width="0.0152%" height="15" fill="rgb(251,41,49)" fg:x="147730" fg:w="23"/><text x="98.0443%" y="847.50"></text></g><g><title>jvm_define_class_common (23 samples, 0.02%)</title><rect x="97.7943%" y="821" width="0.0152%" height="15" fill="rgb(218,155,12)" fg:x="147730" fg:w="23"/><text x="98.0443%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (21 samples, 0.01%)</title><rect x="97.7956%" y="805" width="0.0139%" height="15" fill="rgb(221,161,30)" fg:x="147732" fg:w="21"/><text x="98.0456%" y="815.50"></text></g><g><title>Unsafe_DefineClass0 (24 samples, 0.02%)</title><rect x="97.7943%" y="853" width="0.0159%" height="15" fill="rgb(221,179,11)" fg:x="147730" fg:w="24"/><text x="98.0443%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="97.8300%" y="629" width="0.0132%" height="15" fill="rgb(224,170,48)" fg:x="147784" fg:w="20"/><text x="98.0800%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="97.8300%" y="613" width="0.0132%" height="15" fill="rgb(223,117,5)" fg:x="147784" fg:w="20"/><text x="98.0800%" y="623.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="97.8307%" y="597" width="0.0126%" height="15" fill="rgb(209,52,20)" fg:x="147785" fg:w="19"/><text x="98.0807%" y="607.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="97.8300%" y="645" width="0.0139%" height="15" fill="rgb(209,19,41)" fg:x="147784" fg:w="21"/><text x="98.0800%" y="655.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.02%)</title><rect x="97.8280%" y="693" width="0.0165%" height="15" fill="rgb(210,177,12)" fg:x="147781" fg:w="25"/><text x="98.0780%" y="703.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="97.8287%" y="677" width="0.0159%" height="15" fill="rgb(211,159,37)" fg:x="147782" fg:w="24"/><text x="98.0787%" y="687.50"></text></g><g><title>__schedule (24 samples, 0.02%)</title><rect x="97.8287%" y="661" width="0.0159%" height="15" fill="rgb(209,20,2)" fg:x="147782" fg:w="24"/><text x="98.0787%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (27 samples, 0.02%)</title><rect x="97.8280%" y="821" width="0.0179%" height="15" fill="rgb(244,3,46)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="97.8280%" y="805" width="0.0179%" height="15" fill="rgb(220,94,38)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (27 samples, 0.02%)</title><rect x="97.8280%" y="789" width="0.0179%" height="15" fill="rgb(253,14,31)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="97.8280%" y="773" width="0.0179%" height="15" fill="rgb(234,176,13)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="783.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="97.8280%" y="757" width="0.0179%" height="15" fill="rgb(218,62,25)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="767.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="97.8280%" y="741" width="0.0179%" height="15" fill="rgb(216,124,40)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="751.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="97.8280%" y="725" width="0.0179%" height="15" fill="rgb(228,170,12)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="735.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="97.8280%" y="709" width="0.0179%" height="15" fill="rgb(231,226,5)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (303 samples, 0.20%)</title><rect x="97.8645%" y="629" width="0.2006%" height="15" fill="rgb(237,122,22)" fg:x="147836" fg:w="303"/><text x="98.1145%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (301 samples, 0.20%)</title><rect x="97.8658%" y="613" width="0.1993%" height="15" fill="rgb(209,185,25)" fg:x="147838" fg:w="301"/><text x="98.1158%" y="623.50"></text></g><g><title>native_write_msr (301 samples, 0.20%)</title><rect x="97.8658%" y="597" width="0.1993%" height="15" fill="rgb(228,200,32)" fg:x="147838" fg:w="301"/><text x="98.1158%" y="607.50"></text></g><g><title>finish_task_switch (312 samples, 0.21%)</title><rect x="97.8625%" y="645" width="0.2065%" height="15" fill="rgb(217,140,10)" fg:x="147833" fg:w="312"/><text x="98.1125%" y="655.50"></text></g><g><title>futex_wait_queue_me (345 samples, 0.23%)</title><rect x="97.8532%" y="693" width="0.2284%" height="15" fill="rgb(253,17,24)" fg:x="147819" fg:w="345"/><text x="98.1032%" y="703.50"></text></g><g><title>schedule (344 samples, 0.23%)</title><rect x="97.8539%" y="677" width="0.2277%" height="15" fill="rgb(212,61,6)" fg:x="147820" fg:w="344"/><text x="98.1039%" y="687.50"></text></g><g><title>__schedule (343 samples, 0.23%)</title><rect x="97.8545%" y="661" width="0.2271%" height="15" fill="rgb(205,14,25)" fg:x="147821" fg:w="343"/><text x="98.1045%" y="671.50"></text></g><g><title>__x64_sys_futex (351 samples, 0.23%)</title><rect x="97.8499%" y="741" width="0.2324%" height="15" fill="rgb(232,69,41)" fg:x="147814" fg:w="351"/><text x="98.0999%" y="751.50"></text></g><g><title>do_futex (350 samples, 0.23%)</title><rect x="97.8506%" y="725" width="0.2317%" height="15" fill="rgb(241,106,47)" fg:x="147815" fg:w="350"/><text x="98.1006%" y="735.50"></text></g><g><title>futex_wait (350 samples, 0.23%)</title><rect x="97.8506%" y="709" width="0.2317%" height="15" fill="rgb(210,213,53)" fg:x="147815" fg:w="350"/><text x="98.1006%" y="719.50"></text></g><g><title>do_syscall_64 (353 samples, 0.23%)</title><rect x="97.8492%" y="757" width="0.2337%" height="15" fill="rgb(253,175,27)" fg:x="147813" fg:w="353"/><text x="98.0992%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (369 samples, 0.24%)</title><rect x="97.8486%" y="773" width="0.2443%" height="15" fill="rgb(211,171,24)" fg:x="147812" fg:w="369"/><text x="98.0986%" y="783.50"></text></g><g><title>__pthread_cond_wait (374 samples, 0.25%)</title><rect x="97.8459%" y="821" width="0.2476%" height="15" fill="rgb(229,80,7)" fg:x="147808" fg:w="374"/><text x="98.0959%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (374 samples, 0.25%)</title><rect x="97.8459%" y="805" width="0.2476%" height="15" fill="rgb(212,46,39)" fg:x="147808" fg:w="374"/><text x="98.0959%" y="815.50"></text></g><g><title>futex_wait_cancelable (370 samples, 0.24%)</title><rect x="97.8486%" y="789" width="0.2449%" height="15" fill="rgb(240,80,45)" fg:x="147812" fg:w="370"/><text x="98.0986%" y="799.50"></text></g><g><title>Unsafe_Park (434 samples, 0.29%)</title><rect x="97.8122%" y="853" width="0.2873%" height="15" fill="rgb(253,177,40)" fg:x="147757" fg:w="434"/><text x="98.0622%" y="863.50"></text></g><g><title>Parker::park (431 samples, 0.29%)</title><rect x="97.8141%" y="837" width="0.2853%" height="15" fill="rgb(249,200,15)" fg:x="147760" fg:w="431"/><text x="98.0641%" y="847.50"></text></g><g><title>enqueue_entity (20 samples, 0.01%)</title><rect x="98.1385%" y="661" width="0.0132%" height="15" fill="rgb(217,78,26)" fg:x="148250" fg:w="20"/><text x="98.3885%" y="671.50"></text></g><g><title>enqueue_task_fair (27 samples, 0.02%)</title><rect x="98.1345%" y="677" width="0.0179%" height="15" fill="rgb(254,151,32)" fg:x="148244" fg:w="27"/><text x="98.3845%" y="687.50"></text></g><g><title>ttwu_do_activate (44 samples, 0.03%)</title><rect x="98.1339%" y="693" width="0.0291%" height="15" fill="rgb(226,165,27)" fg:x="148243" fg:w="44"/><text x="98.3839%" y="703.50"></text></g><g><title>psi_task_change (16 samples, 0.01%)</title><rect x="98.1524%" y="677" width="0.0106%" height="15" fill="rgb(250,206,4)" fg:x="148271" fg:w="16"/><text x="98.4024%" y="687.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.05%)</title><rect x="98.1147%" y="773" width="0.0503%" height="15" fill="rgb(231,229,27)" fg:x="148214" fg:w="76"/><text x="98.3647%" y="783.50"></text></g><g><title>do_futex (76 samples, 0.05%)</title><rect x="98.1147%" y="757" width="0.0503%" height="15" fill="rgb(239,217,8)" fg:x="148214" fg:w="76"/><text x="98.3647%" y="767.50"></text></g><g><title>futex_wake (76 samples, 0.05%)</title><rect x="98.1147%" y="741" width="0.0503%" height="15" fill="rgb(225,204,27)" fg:x="148214" fg:w="76"/><text x="98.3647%" y="751.50"></text></g><g><title>wake_up_q (59 samples, 0.04%)</title><rect x="98.1259%" y="725" width="0.0391%" height="15" fill="rgb(230,56,32)" fg:x="148231" fg:w="59"/><text x="98.3759%" y="735.50"></text></g><g><title>try_to_wake_up (59 samples, 0.04%)</title><rect x="98.1259%" y="709" width="0.0391%" height="15" fill="rgb(222,56,27)" fg:x="148231" fg:w="59"/><text x="98.3759%" y="719.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="98.1127%" y="789" width="0.0530%" height="15" fill="rgb(253,108,27)" fg:x="148211" fg:w="80"/><text x="98.3627%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.06%)</title><rect x="98.1127%" y="805" width="0.0622%" height="15" fill="rgb(212,87,36)" fg:x="148211" fg:w="94"/><text x="98.3627%" y="815.50"></text></g><g><title>Unsafe_Unpark (114 samples, 0.08%)</title><rect x="98.1001%" y="853" width="0.0755%" height="15" fill="rgb(247,82,36)" fg:x="148192" fg:w="114"/><text x="98.3501%" y="863.50"></text></g><g><title>__pthread_cond_signal (101 samples, 0.07%)</title><rect x="98.1087%" y="837" width="0.0669%" height="15" fill="rgb(222,143,9)" fg:x="148205" fg:w="101"/><text x="98.3587%" y="847.50"></text></g><g><title>futex_wake (97 samples, 0.06%)</title><rect x="98.1114%" y="821" width="0.0642%" height="15" fill="rgb(238,162,48)" fg:x="148209" fg:w="97"/><text x="98.3614%" y="831.50"></text></g><g><title>kernel_init_free_pages (31 samples, 0.02%)</title><rect x="98.2464%" y="725" width="0.0205%" height="15" fill="rgb(221,59,43)" fg:x="148413" fg:w="31"/><text x="98.4964%" y="735.50"></text></g><g><title>clear_page_erms (30 samples, 0.02%)</title><rect x="98.2471%" y="709" width="0.0199%" height="15" fill="rgb(205,166,41)" fg:x="148414" fg:w="30"/><text x="98.4971%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.04%)</title><rect x="98.2252%" y="773" width="0.0424%" height="15" fill="rgb(241,186,40)" fg:x="148381" fg:w="64"/><text x="98.4752%" y="783.50"></text></g><g><title>get_page_from_freelist (51 samples, 0.03%)</title><rect x="98.2338%" y="757" width="0.0338%" height="15" fill="rgb(216,119,35)" fg:x="148394" fg:w="51"/><text x="98.4838%" y="767.50"></text></g><g><title>prep_new_page (32 samples, 0.02%)</title><rect x="98.2464%" y="741" width="0.0212%" height="15" fill="rgb(208,68,38)" fg:x="148413" fg:w="32"/><text x="98.4964%" y="751.50"></text></g><g><title>alloc_pages_vma (71 samples, 0.05%)</title><rect x="98.2213%" y="789" width="0.0470%" height="15" fill="rgb(217,113,1)" fg:x="148375" fg:w="71"/><text x="98.4713%" y="799.50"></text></g><g><title>__pagevec_lru_add_fn (18 samples, 0.01%)</title><rect x="98.2822%" y="757" width="0.0119%" height="15" fill="rgb(242,153,3)" fg:x="148467" fg:w="18"/><text x="98.5322%" y="767.50"></text></g><g><title>lru_cache_add (32 samples, 0.02%)</title><rect x="98.2749%" y="789" width="0.0212%" height="15" fill="rgb(229,76,35)" fg:x="148456" fg:w="32"/><text x="98.5249%" y="799.50"></text></g><g><title>pagevec_lru_move_fn (26 samples, 0.02%)</title><rect x="98.2789%" y="773" width="0.0172%" height="15" fill="rgb(229,125,34)" fg:x="148462" fg:w="26"/><text x="98.5289%" y="783.50"></text></g><g><title>mem_cgroup_charge (30 samples, 0.02%)</title><rect x="98.2961%" y="789" width="0.0199%" height="15" fill="rgb(238,179,36)" fg:x="148488" fg:w="30"/><text x="98.5461%" y="799.50"></text></g><g><title>handle_mm_fault (201 samples, 0.13%)</title><rect x="98.1974%" y="805" width="0.1331%" height="15" fill="rgb(244,183,19)" fg:x="148339" fg:w="201"/><text x="98.4474%" y="815.50"></text></g><g><title>do_user_addr_fault (218 samples, 0.14%)</title><rect x="98.1875%" y="821" width="0.1443%" height="15" fill="rgb(216,85,49)" fg:x="148324" fg:w="218"/><text x="98.4375%" y="831.50"></text></g><g><title>exc_page_fault (221 samples, 0.15%)</title><rect x="98.1862%" y="837" width="0.1463%" height="15" fill="rgb(208,161,47)" fg:x="148322" fg:w="221"/><text x="98.4362%" y="847.50"></text></g><g><title>asm_exc_page_fault (227 samples, 0.15%)</title><rect x="98.1855%" y="853" width="0.1503%" height="15" fill="rgb(233,210,18)" fg:x="148321" fg:w="227"/><text x="98.4355%" y="863.50"></text></g><g><title>tick_sched_handle (18 samples, 0.01%)</title><rect x="98.3477%" y="757" width="0.0119%" height="15" fill="rgb(205,104,42)" fg:x="148566" fg:w="18"/><text x="98.5977%" y="767.50"></text></g><g><title>update_process_times (16 samples, 0.01%)</title><rect x="98.3490%" y="741" width="0.0106%" height="15" fill="rgb(248,90,43)" fg:x="148568" fg:w="16"/><text x="98.5990%" y="751.50"></text></g><g><title>tick_sched_timer (20 samples, 0.01%)</title><rect x="98.3477%" y="773" width="0.0132%" height="15" fill="rgb(206,198,11)" fg:x="148566" fg:w="20"/><text x="98.5977%" y="783.50"></text></g><g><title>__hrtimer_run_queues (27 samples, 0.02%)</title><rect x="98.3437%" y="789" width="0.0179%" height="15" fill="rgb(239,165,27)" fg:x="148560" fg:w="27"/><text x="98.5937%" y="799.50"></text></g><g><title>__sysvec_apic_timer_interrupt (34 samples, 0.02%)</title><rect x="98.3411%" y="821" width="0.0225%" height="15" fill="rgb(246,44,32)" fg:x="148556" fg:w="34"/><text x="98.5911%" y="831.50"></text></g><g><title>hrtimer_interrupt (33 samples, 0.02%)</title><rect x="98.3417%" y="805" width="0.0218%" height="15" fill="rgb(252,65,42)" fg:x="148557" fg:w="33"/><text x="98.5917%" y="815.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (64 samples, 0.04%)</title><rect x="98.3358%" y="853" width="0.0424%" height="15" fill="rgb(246,197,18)" fg:x="148548" fg:w="64"/><text x="98.5858%" y="863.50"></text></g><g><title>sysvec_apic_timer_interrupt (56 samples, 0.04%)</title><rect x="98.3411%" y="837" width="0.0371%" height="15" fill="rgb(216,192,4)" fg:x="148556" fg:w="56"/><text x="98.5911%" y="847.50"></text></g><g><title>irq_exit_rcu (22 samples, 0.01%)</title><rect x="98.3636%" y="821" width="0.0146%" height="15" fill="rgb(208,117,10)" fg:x="148590" fg:w="22"/><text x="98.6136%" y="831.50"></text></g><g><title>do_softirq_own_stack (21 samples, 0.01%)</title><rect x="98.3642%" y="805" width="0.0139%" height="15" fill="rgb(240,61,47)" fg:x="148591" fg:w="21"/><text x="98.6142%" y="815.50"></text></g><g><title>asm_call_sysvec_on_stack (21 samples, 0.01%)</title><rect x="98.3642%" y="789" width="0.0139%" height="15" fill="rgb(228,178,21)" fg:x="148591" fg:w="21"/><text x="98.6142%" y="799.50"></text></g><g><title>__softirqentry_text_start (21 samples, 0.01%)</title><rect x="98.3642%" y="773" width="0.0139%" height="15" fill="rgb(219,96,54)" fg:x="148591" fg:w="21"/><text x="98.6142%" y="783.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="98.3795%" y="773" width="0.0192%" height="15" fill="rgb(250,177,24)" fg:x="148614" fg:w="29"/><text x="98.6295%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="98.3795%" y="757" width="0.0192%" height="15" fill="rgb(242,154,46)" fg:x="148614" fg:w="29"/><text x="98.6295%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="98.3801%" y="741" width="0.0185%" height="15" fill="rgb(226,176,29)" fg:x="148615" fg:w="28"/><text x="98.6301%" y="751.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="98.3801%" y="725" width="0.0185%" height="15" fill="rgb(226,29,2)" fg:x="148615" fg:w="28"/><text x="98.6301%" y="735.50"></text></g><g><title>irqentry_exit_to_user_mode (36 samples, 0.02%)</title><rect x="98.3781%" y="837" width="0.0238%" height="15" fill="rgb(237,104,14)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (36 samples, 0.02%)</title><rect x="98.3781%" y="821" width="0.0238%" height="15" fill="rgb(245,207,31)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="831.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="98.3781%" y="805" width="0.0238%" height="15" fill="rgb(229,211,45)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="815.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="98.3781%" y="789" width="0.0238%" height="15" fill="rgb(229,113,15)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="799.50"></text></g><g><title>asm_sysvec_reschedule_ipi (37 samples, 0.02%)</title><rect x="98.3781%" y="853" width="0.0245%" height="15" fill="rgb(237,147,15)" fg:x="148612" fg:w="37"/><text x="98.6281%" y="863.50"></text></g><g><title>error_entry (18 samples, 0.01%)</title><rect x="98.4106%" y="853" width="0.0119%" height="15" fill="rgb(244,120,12)" fg:x="148661" fg:w="18"/><text x="98.6606%" y="863.50"></text></g><g><title>sync_regs (16 samples, 0.01%)</title><rect x="98.4119%" y="837" width="0.0106%" height="15" fill="rgb(205,120,12)" fg:x="148663" fg:w="16"/><text x="98.6619%" y="847.50"></text></g><g><title>fileDescriptorClose (16 samples, 0.01%)</title><rect x="98.4238%" y="853" width="0.0106%" height="15" fill="rgb(231,26,45)" fg:x="148681" fg:w="16"/><text x="98.6738%" y="863.50"></text></g><g><title>do_filp_open (40 samples, 0.03%)</title><rect x="98.4523%" y="757" width="0.0265%" height="15" fill="rgb(246,98,1)" fg:x="148724" fg:w="40"/><text x="98.7023%" y="767.50"></text></g><g><title>path_openat (40 samples, 0.03%)</title><rect x="98.4523%" y="741" width="0.0265%" height="15" fill="rgb(207,68,45)" fg:x="148724" fg:w="40"/><text x="98.7023%" y="751.50"></text></g><g><title>__libc_open64 (49 samples, 0.03%)</title><rect x="98.4477%" y="837" width="0.0324%" height="15" fill="rgb(231,27,38)" fg:x="148717" fg:w="49"/><text x="98.6977%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="98.4496%" y="821" width="0.0305%" height="15" fill="rgb(214,223,3)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="831.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="98.4496%" y="805" width="0.0305%" height="15" fill="rgb(228,195,46)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="815.50"></text></g><g><title>__x64_sys_openat (46 samples, 0.03%)</title><rect x="98.4496%" y="789" width="0.0305%" height="15" fill="rgb(231,100,42)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="799.50"></text></g><g><title>do_sys_openat2 (46 samples, 0.03%)</title><rect x="98.4496%" y="773" width="0.0305%" height="15" fill="rgb(236,53,4)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="783.50"></text></g><g><title>fileOpen (72 samples, 0.05%)</title><rect x="98.4344%" y="853" width="0.0477%" height="15" fill="rgb(230,152,12)" fg:x="148697" fg:w="72"/><text x="98.6844%" y="863.50"></text></g><g><title>jni_IsAssignableFrom (19 samples, 0.01%)</title><rect x="98.4940%" y="853" width="0.0126%" height="15" fill="rgb(226,101,19)" fg:x="148787" fg:w="19"/><text x="98.7440%" y="863.50"></text></g><g><title>os::javaTimeNanos (21 samples, 0.01%)</title><rect x="98.5086%" y="853" width="0.0139%" height="15" fill="rgb(250,149,32)" fg:x="148809" fg:w="21"/><text x="98.7586%" y="863.50"></text></g><g><title>__GI___clock_gettime (20 samples, 0.01%)</title><rect x="98.5092%" y="837" width="0.0132%" height="15" fill="rgb(232,178,12)" fg:x="148810" fg:w="20"/><text x="98.7592%" y="847.50"></text></g><g><title>[perf-983083.map] (36,542 samples, 24.19%)</title><rect x="74.3350%" y="869" width="24.1901%" height="15" fill="rgb(246,151,17)" fg:x="112292" fg:w="36542"/><text x="74.5850%" y="879.50">[perf-983083.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (16 samples, 0.01%)</title><rect x="98.5410%" y="837" width="0.0106%" height="15" fill="rgb(252,17,51)" fg:x="148858" fg:w="16"/><text x="98.7910%" y="847.50"></text></g><g><title>SharedRuntime::find_callee_method (21 samples, 0.01%)</title><rect x="98.5397%" y="853" width="0.0139%" height="15" fill="rgb(250,207,23)" fg:x="148856" fg:w="21"/><text x="98.7897%" y="863.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (18 samples, 0.01%)</title><rect x="98.5536%" y="853" width="0.0119%" height="15" fill="rgb(205,27,5)" fg:x="148877" fg:w="18"/><text x="98.8036%" y="863.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (18 samples, 0.01%)</title><rect x="98.5536%" y="837" width="0.0119%" height="15" fill="rgb(224,32,19)" fg:x="148877" fg:w="18"/><text x="98.8036%" y="847.50"></text></g><g><title>SharedRuntime::handle_wrong_method (22 samples, 0.01%)</title><rect x="98.5655%" y="853" width="0.0146%" height="15" fill="rgb(247,214,40)" fg:x="148895" fg:w="22"/><text x="98.8155%" y="863.50"></text></g><g><title>SharedRuntime::reresolve_call_site (22 samples, 0.01%)</title><rect x="98.5655%" y="837" width="0.0146%" height="15" fill="rgb(239,199,17)" fg:x="148895" fg:w="22"/><text x="98.8155%" y="847.50"></text></g><g><title>LinkResolver::resolve_method_statically (39 samples, 0.03%)</title><rect x="98.6204%" y="805" width="0.0258%" height="15" fill="rgb(251,159,9)" fg:x="148978" fg:w="39"/><text x="98.8704%" y="815.50"></text></g><g><title>LinkResolver::resolve_method (24 samples, 0.02%)</title><rect x="98.6304%" y="789" width="0.0159%" height="15" fill="rgb(225,78,32)" fg:x="148993" fg:w="24"/><text x="98.8804%" y="799.50"></text></g><g><title>Bytecode_invoke::static_target (40 samples, 0.03%)</title><rect x="98.6204%" y="821" width="0.0265%" height="15" fill="rgb(206,97,47)" fg:x="148978" fg:w="40"/><text x="98.8704%" y="831.50"></text></g><g><title>LinkResolver::resolve_invoke (29 samples, 0.02%)</title><rect x="98.6469%" y="821" width="0.0192%" height="15" fill="rgb(227,107,4)" fg:x="149018" fg:w="29"/><text x="98.8969%" y="831.50"></text></g><g><title>OopMapStream::find_next (20 samples, 0.01%)</title><rect x="98.6880%" y="789" width="0.0132%" height="15" fill="rgb(241,146,50)" fg:x="149080" fg:w="20"/><text x="98.9380%" y="799.50"></text></g><g><title>frame::sender (42 samples, 0.03%)</title><rect x="98.6741%" y="821" width="0.0278%" height="15" fill="rgb(232,92,30)" fg:x="149059" fg:w="42"/><text x="98.9241%" y="831.50"></text></g><g><title>OopMapSet::update_register_map (39 samples, 0.03%)</title><rect x="98.6760%" y="805" width="0.0258%" height="15" fill="rgb(222,0,40)" fg:x="149062" fg:w="39"/><text x="98.9260%" y="815.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (129 samples, 0.09%)</title><rect x="98.6191%" y="837" width="0.0854%" height="15" fill="rgb(219,54,33)" fg:x="148976" fg:w="129"/><text x="98.8691%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (197 samples, 0.13%)</title><rect x="98.5801%" y="853" width="0.1304%" height="15" fill="rgb(226,209,28)" fg:x="148917" fg:w="197"/><text x="98.8301%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.07%)</title><rect x="98.7171%" y="581" width="0.0695%" height="15" fill="rgb(254,205,35)" fg:x="149124" fg:w="105"/><text x="98.9671%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.07%)</title><rect x="98.7204%" y="565" width="0.0662%" height="15" fill="rgb(230,159,3)" fg:x="149129" fg:w="100"/><text x="98.9704%" y="575.50"></text></g><g><title>native_write_msr (99 samples, 0.07%)</title><rect x="98.7211%" y="549" width="0.0655%" height="15" fill="rgb(232,190,24)" fg:x="149130" fg:w="99"/><text x="98.9711%" y="559.50"></text></g><g><title>finish_task_switch (109 samples, 0.07%)</title><rect x="98.7164%" y="597" width="0.0722%" height="15" fill="rgb(217,227,44)" fg:x="149123" fg:w="109"/><text x="98.9664%" y="607.50"></text></g><g><title>do_syscall_64 (118 samples, 0.08%)</title><rect x="98.7131%" y="709" width="0.0781%" height="15" fill="rgb(236,211,1)" fg:x="149118" fg:w="118"/><text x="98.9631%" y="719.50"></text></g><g><title>__x64_sys_futex (118 samples, 0.08%)</title><rect x="98.7131%" y="693" width="0.0781%" height="15" fill="rgb(250,127,46)" fg:x="149118" fg:w="118"/><text x="98.9631%" y="703.50"></text></g><g><title>do_futex (117 samples, 0.08%)</title><rect x="98.7138%" y="677" width="0.0775%" height="15" fill="rgb(229,213,6)" fg:x="149119" fg:w="117"/><text x="98.9638%" y="687.50"></text></g><g><title>futex_wait (117 samples, 0.08%)</title><rect x="98.7138%" y="661" width="0.0775%" height="15" fill="rgb(237,15,36)" fg:x="149119" fg:w="117"/><text x="98.9638%" y="671.50"></text></g><g><title>futex_wait_queue_me (117 samples, 0.08%)</title><rect x="98.7138%" y="645" width="0.0775%" height="15" fill="rgb(213,131,41)" fg:x="149119" fg:w="117"/><text x="98.9638%" y="655.50"></text></g><g><title>schedule (116 samples, 0.08%)</title><rect x="98.7144%" y="629" width="0.0768%" height="15" fill="rgb(225,82,44)" fg:x="149120" fg:w="116"/><text x="98.9644%" y="639.50"></text></g><g><title>__schedule (116 samples, 0.08%)</title><rect x="98.7144%" y="613" width="0.0768%" height="15" fill="rgb(249,42,11)" fg:x="149120" fg:w="116"/><text x="98.9644%" y="623.50"></text></g><g><title>Monitor::lock_without_safepoint_check (126 samples, 0.08%)</title><rect x="98.7111%" y="821" width="0.0834%" height="15" fill="rgb(253,11,29)" fg:x="149115" fg:w="126"/><text x="98.9611%" y="831.50"></text></g><g><title>Monitor::ILock (126 samples, 0.08%)</title><rect x="98.7111%" y="805" width="0.0834%" height="15" fill="rgb(206,8,54)" fg:x="149115" fg:w="126"/><text x="98.9611%" y="815.50"></text></g><g><title>os::PlatformEvent::park (125 samples, 0.08%)</title><rect x="98.7118%" y="789" width="0.0827%" height="15" fill="rgb(222,186,2)" fg:x="149116" fg:w="125"/><text x="98.9618%" y="799.50"></text></g><g><title>__pthread_cond_wait (125 samples, 0.08%)</title><rect x="98.7118%" y="773" width="0.0827%" height="15" fill="rgb(221,206,53)" fg:x="149116" fg:w="125"/><text x="98.9618%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (125 samples, 0.08%)</title><rect x="98.7118%" y="757" width="0.0827%" height="15" fill="rgb(230,150,21)" fg:x="149116" fg:w="125"/><text x="98.9618%" y="767.50"></text></g><g><title>futex_wait_cancelable (124 samples, 0.08%)</title><rect x="98.7124%" y="741" width="0.0821%" height="15" fill="rgb(253,202,10)" fg:x="149117" fg:w="124"/><text x="98.9624%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.08%)</title><rect x="98.7131%" y="725" width="0.0814%" height="15" fill="rgb(238,109,40)" fg:x="149118" fg:w="123"/><text x="98.9631%" y="735.50"></text></g><g><title>SafepointSynchronize::block (135 samples, 0.09%)</title><rect x="98.7105%" y="837" width="0.0894%" height="15" fill="rgb(247,120,22)" fg:x="149114" fg:w="135"/><text x="98.9605%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (136 samples, 0.09%)</title><rect x="98.7105%" y="853" width="0.0900%" height="15" fill="rgb(207,43,30)" fg:x="149114" fg:w="136"/><text x="98.9605%" y="863.50"></text></g><g><title>__fdget_pos (22 samples, 0.01%)</title><rect x="98.8508%" y="741" width="0.0146%" height="15" fill="rgb(213,211,24)" fg:x="149326" fg:w="22"/><text x="99.1008%" y="751.50"></text></g><g><title>copy_page_to_iter (435 samples, 0.29%)</title><rect x="98.9263%" y="693" width="0.2880%" height="15" fill="rgb(239,73,39)" fg:x="149440" fg:w="435"/><text x="99.1763%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (411 samples, 0.27%)</title><rect x="98.9422%" y="677" width="0.2721%" height="15" fill="rgb(245,182,19)" fg:x="149464" fg:w="411"/><text x="99.1922%" y="687.50"></text></g><g><title>__activate_page (16 samples, 0.01%)</title><rect x="99.2255%" y="661" width="0.0106%" height="15" fill="rgb(247,143,26)" fg:x="149892" fg:w="16"/><text x="99.4755%" y="671.50"></text></g><g><title>mark_page_accessed (34 samples, 0.02%)</title><rect x="99.2142%" y="693" width="0.0225%" height="15" fill="rgb(228,191,23)" fg:x="149875" fg:w="34"/><text x="99.4642%" y="703.50"></text></g><g><title>pagevec_lru_move_fn (19 samples, 0.01%)</title><rect x="99.2242%" y="677" width="0.0126%" height="15" fill="rgb(253,165,31)" fg:x="149890" fg:w="19"/><text x="99.4742%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (73 samples, 0.05%)</title><rect x="99.2374%" y="677" width="0.0483%" height="15" fill="rgb(234,138,20)" fg:x="149910" fg:w="73"/><text x="99.4874%" y="687.50"></text></g><g><title>get_page_from_freelist (64 samples, 0.04%)</title><rect x="99.2434%" y="661" width="0.0424%" height="15" fill="rgb(218,191,29)" fg:x="149919" fg:w="64"/><text x="99.4934%" y="671.50"></text></g><g><title>prep_new_page (47 samples, 0.03%)</title><rect x="99.2546%" y="645" width="0.0311%" height="15" fill="rgb(221,157,19)" fg:x="149936" fg:w="47"/><text x="99.5046%" y="655.50"></text></g><g><title>kernel_init_free_pages (44 samples, 0.03%)</title><rect x="99.2566%" y="629" width="0.0291%" height="15" fill="rgb(237,26,42)" fg:x="149939" fg:w="44"/><text x="99.5066%" y="639.50"></text></g><g><title>clear_page_erms (42 samples, 0.03%)</title><rect x="99.2579%" y="613" width="0.0278%" height="15" fill="rgb(220,163,24)" fg:x="149941" fg:w="42"/><text x="99.5079%" y="623.50"></text></g><g><title>__add_to_page_cache_locked (65 samples, 0.04%)</title><rect x="99.2870%" y="661" width="0.0430%" height="15" fill="rgb(242,115,20)" fg:x="149985" fg:w="65"/><text x="99.5370%" y="671.50"></text></g><g><title>lru_cache_add (26 samples, 0.02%)</title><rect x="99.3301%" y="661" width="0.0172%" height="15" fill="rgb(210,206,9)" fg:x="150050" fg:w="26"/><text x="99.5801%" y="671.50"></text></g><g><title>pagevec_lru_move_fn (23 samples, 0.02%)</title><rect x="99.3321%" y="645" width="0.0152%" height="15" fill="rgb(208,71,17)" fg:x="150053" fg:w="23"/><text x="99.5821%" y="655.50"></text></g><g><title>add_to_page_cache_lru (125 samples, 0.08%)</title><rect x="99.2857%" y="677" width="0.0827%" height="15" fill="rgb(233,7,5)" fg:x="149983" fg:w="125"/><text x="99.5357%" y="687.50"></text></g><g><title>workingset_refault (31 samples, 0.02%)</title><rect x="99.3479%" y="661" width="0.0205%" height="15" fill="rgb(207,92,33)" fg:x="150077" fg:w="31"/><text x="99.5979%" y="671.50"></text></g><g><title>submit_extent_page (27 samples, 0.02%)</title><rect x="99.3930%" y="629" width="0.0179%" height="15" fill="rgb(218,87,9)" fg:x="150145" fg:w="27"/><text x="99.6430%" y="639.50"></text></g><g><title>btrfs_bio_fits_in_stripe (21 samples, 0.01%)</title><rect x="99.3969%" y="613" width="0.0139%" height="15" fill="rgb(219,47,37)" fg:x="150151" fg:w="21"/><text x="99.6469%" y="623.50"></text></g><g><title>btrfs_get_io_geometry (21 samples, 0.01%)</title><rect x="99.3969%" y="597" width="0.0139%" height="15" fill="rgb(221,152,34)" fg:x="150151" fg:w="21"/><text x="99.6469%" y="607.50"></text></g><g><title>btrfs_do_readpage (50 samples, 0.03%)</title><rect x="99.3810%" y="645" width="0.0331%" height="15" fill="rgb(235,176,21)" fg:x="150127" fg:w="50"/><text x="99.6310%" y="655.50"></text></g><g><title>btrfs_lookup_csum (21 samples, 0.01%)</title><rect x="99.4228%" y="597" width="0.0139%" height="15" fill="rgb(232,212,21)" fg:x="150190" fg:w="21"/><text x="99.6728%" y="607.50"></text></g><g><title>btrfs_search_slot (20 samples, 0.01%)</title><rect x="99.4234%" y="581" width="0.0132%" height="15" fill="rgb(245,82,39)" fg:x="150191" fg:w="20"/><text x="99.6734%" y="591.50"></text></g><g><title>btrfs_lookup_bio_sums (24 samples, 0.02%)</title><rect x="99.4221%" y="613" width="0.0159%" height="15" fill="rgb(241,52,51)" fg:x="150189" fg:w="24"/><text x="99.6721%" y="623.50"></text></g><g><title>submit_one_bio (44 samples, 0.03%)</title><rect x="99.4208%" y="645" width="0.0291%" height="15" fill="rgb(219,91,24)" fg:x="150187" fg:w="44"/><text x="99.6708%" y="655.50"></text></g><g><title>btrfs_submit_data_bio (44 samples, 0.03%)</title><rect x="99.4208%" y="629" width="0.0291%" height="15" fill="rgb(241,142,12)" fg:x="150187" fg:w="44"/><text x="99.6708%" y="639.50"></text></g><g><title>btrfs_map_bio (18 samples, 0.01%)</title><rect x="99.4380%" y="613" width="0.0119%" height="15" fill="rgb(230,27,9)" fg:x="150213" fg:w="18"/><text x="99.6880%" y="623.50"></text></g><g><title>read_pages (124 samples, 0.08%)</title><rect x="99.3691%" y="677" width="0.0821%" height="15" fill="rgb(249,181,32)" fg:x="150109" fg:w="124"/><text x="99.6191%" y="687.50"></text></g><g><title>extent_readahead (114 samples, 0.08%)</title><rect x="99.3758%" y="661" width="0.0755%" height="15" fill="rgb(230,107,3)" fg:x="150119" fg:w="114"/><text x="99.6258%" y="671.50"></text></g><g><title>page_cache_ra_unbounded (327 samples, 0.22%)</title><rect x="99.2374%" y="693" width="0.2165%" height="15" fill="rgb(246,204,14)" fg:x="149910" fg:w="327"/><text x="99.4874%" y="703.50"></text></g><g><title>pagecache_get_page (54 samples, 0.04%)</title><rect x="99.4539%" y="693" width="0.0357%" height="15" fill="rgb(213,192,47)" fg:x="150237" fg:w="54"/><text x="99.7039%" y="703.50"></text></g><g><title>find_get_entry (48 samples, 0.03%)</title><rect x="99.4578%" y="677" width="0.0318%" height="15" fill="rgb(240,44,36)" fg:x="150243" fg:w="48"/><text x="99.7078%" y="687.50"></text></g><g><title>xas_load (24 samples, 0.02%)</title><rect x="99.4737%" y="661" width="0.0159%" height="15" fill="rgb(244,209,38)" fg:x="150267" fg:w="24"/><text x="99.7237%" y="671.50"></text></g><g><title>touch_atime (20 samples, 0.01%)</title><rect x="99.4896%" y="693" width="0.0132%" height="15" fill="rgb(219,34,37)" fg:x="150291" fg:w="20"/><text x="99.7396%" y="703.50"></text></g><g><title>generic_file_buffered_read (939 samples, 0.62%)</title><rect x="98.8965%" y="709" width="0.6216%" height="15" fill="rgb(210,28,6)" fg:x="149395" fg:w="939"/><text x="99.1465%" y="719.50"></text></g><g><title>new_sync_read (953 samples, 0.63%)</title><rect x="98.8885%" y="725" width="0.6309%" height="15" fill="rgb(244,110,52)" fg:x="149383" fg:w="953"/><text x="99.1385%" y="735.50"></text></g><g><title>ksys_read (1,030 samples, 0.68%)</title><rect x="98.8482%" y="757" width="0.6818%" height="15" fill="rgb(254,124,47)" fg:x="149322" fg:w="1030"/><text x="99.0982%" y="767.50"></text></g><g><title>vfs_read (994 samples, 0.66%)</title><rect x="98.8720%" y="741" width="0.6580%" height="15" fill="rgb(254,110,13)" fg:x="149358" fg:w="994"/><text x="99.1220%" y="751.50"></text></g><g><title>security_file_permission (16 samples, 0.01%)</title><rect x="99.5194%" y="725" width="0.0106%" height="15" fill="rgb(252,57,21)" fg:x="150336" fg:w="16"/><text x="99.7694%" y="735.50"></text></g><g><title>do_syscall_64 (1,033 samples, 0.68%)</title><rect x="98.8475%" y="773" width="0.6838%" height="15" fill="rgb(242,60,45)" fg:x="149321" fg:w="1033"/><text x="99.0975%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,041 samples, 0.69%)</title><rect x="98.8462%" y="789" width="0.6891%" height="15" fill="rgb(234,49,30)" fg:x="149319" fg:w="1041"/><text x="99.0962%" y="799.50"></text></g><g><title>__libc_read (1,079 samples, 0.71%)</title><rect x="98.8243%" y="821" width="0.7143%" height="15" fill="rgb(218,98,6)" fg:x="149286" fg:w="1079"/><text x="99.0743%" y="831.50"></text></g><g><title>__libc_read (1,077 samples, 0.71%)</title><rect x="98.8256%" y="805" width="0.7130%" height="15" fill="rgb(220,174,29)" fg:x="149288" fg:w="1077"/><text x="99.0756%" y="815.50"></text></g><g><title>handleRead (1,081 samples, 0.72%)</title><rect x="98.8243%" y="837" width="0.7156%" height="15" fill="rgb(236,163,23)" fg:x="149286" fg:w="1081"/><text x="99.0743%" y="847.50"></text></g><g><title>jni_GetArrayLength (22 samples, 0.01%)</title><rect x="99.5399%" y="837" width="0.0146%" height="15" fill="rgb(242,114,45)" fg:x="150367" fg:w="22"/><text x="99.7899%" y="847.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (18 samples, 0.01%)</title><rect x="99.5777%" y="821" width="0.0119%" height="15" fill="rgb(232,10,53)" fg:x="150424" fg:w="18"/><text x="99.8277%" y="831.50"></text></g><g><title>jni_GetObjectField (69 samples, 0.05%)</title><rect x="99.5545%" y="837" width="0.0457%" height="15" fill="rgb(245,108,29)" fg:x="150389" fg:w="69"/><text x="99.8045%" y="847.50"></text></g><g><title>ThreadStateTransition::transition_from_native (16 samples, 0.01%)</title><rect x="99.5896%" y="821" width="0.0106%" height="15" fill="rgb(240,89,53)" fg:x="150442" fg:w="16"/><text x="99.8396%" y="831.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (21 samples, 0.01%)</title><rect x="99.6048%" y="821" width="0.0139%" height="15" fill="rgb(226,60,45)" fg:x="150465" fg:w="21"/><text x="99.8548%" y="831.50"></text></g><g><title>[libc-2.31.so] (100 samples, 0.07%)</title><rect x="99.6233%" y="821" width="0.0662%" height="15" fill="rgb(230,41,44)" fg:x="150493" fg:w="100"/><text x="99.8733%" y="831.50"></text></g><g><title>readBytes (1,334 samples, 0.88%)</title><rect x="98.8091%" y="853" width="0.8831%" height="15" fill="rgb(230,26,20)" fg:x="149263" fg:w="1334"/><text x="99.0591%" y="863.50"></text></g><g><title>jni_SetByteArrayRegion (139 samples, 0.09%)</title><rect x="99.6002%" y="837" width="0.0920%" height="15" fill="rgb(237,170,32)" fg:x="150458" fg:w="139"/><text x="99.8502%" y="847.50"></text></g><g><title>[unknown] (1,773 samples, 1.17%)</title><rect x="98.5251%" y="869" width="1.1737%" height="15" fill="rgb(212,35,42)" fg:x="148834" fg:w="1773"/><text x="98.7751%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.06%)</title><rect x="99.7061%" y="805" width="0.0649%" height="15" fill="rgb(227,31,34)" fg:x="150618" fg:w="98"/><text x="99.9561%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (98 samples, 0.06%)</title><rect x="99.7061%" y="789" width="0.0649%" height="15" fill="rgb(216,19,18)" fg:x="150618" fg:w="98"/><text x="99.9561%" y="799.50"></text></g><g><title>native_write_msr (98 samples, 0.06%)</title><rect x="99.7061%" y="773" width="0.0649%" height="15" fill="rgb(211,133,42)" fg:x="150618" fg:w="98"/><text x="99.9561%" y="783.50"></text></g><g><title>schedule_tail (102 samples, 0.07%)</title><rect x="99.7048%" y="837" width="0.0675%" height="15" fill="rgb(244,66,13)" fg:x="150616" fg:w="102"/><text x="99.9548%" y="847.50"></text></g><g><title>finish_task_switch (102 samples, 0.07%)</title><rect x="99.7048%" y="821" width="0.0675%" height="15" fill="rgb(218,185,50)" fg:x="150616" fg:w="102"/><text x="99.9548%" y="831.50"></text></g><g><title>ret_from_fork (110 samples, 0.07%)</title><rect x="99.7028%" y="853" width="0.0728%" height="15" fill="rgb(219,149,13)" fg:x="150613" fg:w="110"/><text x="99.9528%" y="863.50"></text></g><g><title>JavaThread::exit (19 samples, 0.01%)</title><rect x="99.7981%" y="789" width="0.0126%" height="15" fill="rgb(221,125,0)" fg:x="150757" fg:w="19"/><text x="100.0481%" y="799.50"></text></g><g><title>Thread::call_run (25 samples, 0.02%)</title><rect x="99.7961%" y="821" width="0.0165%" height="15" fill="rgb(247,126,27)" fg:x="150754" fg:w="25"/><text x="100.0461%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (22 samples, 0.01%)</title><rect x="99.7981%" y="805" width="0.0146%" height="15" fill="rgb(250,138,30)" fg:x="150757" fg:w="22"/><text x="100.0481%" y="815.50"></text></g><g><title>__GI___clone (179 samples, 0.12%)</title><rect x="99.6988%" y="869" width="0.1185%" height="15" fill="rgb(230,151,9)" fg:x="150607" fg:w="179"/><text x="99.9488%" y="879.50"></text></g><g><title>start_thread (63 samples, 0.04%)</title><rect x="99.7756%" y="853" width="0.0417%" height="15" fill="rgb(233,80,38)" fg:x="150723" fg:w="63"/><text x="100.0256%" y="863.50"></text></g><g><title>thread_native_entry (46 samples, 0.03%)</title><rect x="99.7868%" y="837" width="0.0305%" height="15" fill="rgb(232,68,43)" fg:x="150740" fg:w="46"/><text x="100.0368%" y="847.50"></text></g><g><title>asm_exc_page_fault (46 samples, 0.03%)</title><rect x="99.8233%" y="869" width="0.0305%" height="15" fill="rgb(254,5,50)" fg:x="150795" fg:w="46"/><text x="100.0733%" y="879.50"></text></g><g><title>skyframe-evalua (47,042 samples, 31.14%)</title><rect x="68.7360%" y="885" width="31.1409%" height="15" fill="rgb(225,45,5)" fg:x="103834" fg:w="47042"/><text x="68.9860%" y="895.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (84 samples, 0.06%)</title><rect x="99.9225%" y="629" width="0.0556%" height="15" fill="rgb(239,22,3)" fg:x="150945" fg:w="84"/><text x="100.1725%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.06%)</title><rect x="99.9225%" y="613" width="0.0556%" height="15" fill="rgb(243,129,0)" fg:x="150945" fg:w="84"/><text x="100.1725%" y="623.50"></text></g><g><title>native_write_msr (83 samples, 0.05%)</title><rect x="99.9232%" y="597" width="0.0549%" height="15" fill="rgb(223,164,0)" fg:x="150946" fg:w="83"/><text x="100.1732%" y="607.50"></text></g><g><title>futex_wait_queue_me (89 samples, 0.06%)</title><rect x="99.9219%" y="693" width="0.0589%" height="15" fill="rgb(221,46,29)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="703.50"></text></g><g><title>schedule (89 samples, 0.06%)</title><rect x="99.9219%" y="677" width="0.0589%" height="15" fill="rgb(205,97,47)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="687.50"></text></g><g><title>__schedule (89 samples, 0.06%)</title><rect x="99.9219%" y="661" width="0.0589%" height="15" fill="rgb(249,14,8)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="671.50"></text></g><g><title>finish_task_switch (89 samples, 0.06%)</title><rect x="99.9219%" y="645" width="0.0589%" height="15" fill="rgb(216,77,3)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="655.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="99.9206%" y="757" width="0.0609%" height="15" fill="rgb(206,168,54)" fg:x="150942" fg:w="92"/><text x="100.1706%" y="767.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.06%)</title><rect x="99.9212%" y="741" width="0.0602%" height="15" fill="rgb(236,3,41)" fg:x="150943" fg:w="91"/><text x="100.1712%" y="751.50"></text></g><g><title>do_futex (91 samples, 0.06%)</title><rect x="99.9212%" y="725" width="0.0602%" height="15" fill="rgb(231,132,24)" fg:x="150943" fg:w="91"/><text x="100.1712%" y="735.50"></text></g><g><title>futex_wait (90 samples, 0.06%)</title><rect x="99.9219%" y="709" width="0.0596%" height="15" fill="rgb(227,221,40)" fg:x="150944" fg:w="90"/><text x="100.1719%" y="719.50"></text></g><g><title>__pthread_cond_wait (95 samples, 0.06%)</title><rect x="99.9192%" y="821" width="0.0629%" height="15" fill="rgb(233,151,11)" fg:x="150940" fg:w="95"/><text x="100.1692%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (95 samples, 0.06%)</title><rect x="99.9192%" y="805" width="0.0629%" height="15" fill="rgb(247,81,35)" fg:x="150940" fg:w="95"/><text x="100.1692%" y="815.50"></text></g><g><title>futex_wait_cancelable (95 samples, 0.06%)</title><rect x="99.9192%" y="789" width="0.0629%" height="15" fill="rgb(243,128,48)" fg:x="150940" fg:w="95"/><text x="100.1692%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.06%)</title><rect x="99.9206%" y="773" width="0.0616%" height="15" fill="rgb(253,16,10)" fg:x="150942" fg:w="93"/><text x="100.1706%" y="783.50"></text></g><g><title>Unsafe_Park (99 samples, 0.07%)</title><rect x="99.9186%" y="853" width="0.0655%" height="15" fill="rgb(228,67,27)" fg:x="150939" fg:w="99"/><text x="100.1686%" y="863.50"></text></g><g><title>Parker::park (99 samples, 0.07%)</title><rect x="99.9186%" y="837" width="0.0655%" height="15" fill="rgb(231,105,25)" fg:x="150939" fg:w="99"/><text x="100.1686%" y="847.50"></text></g><g><title>[perf-983083.map] (161 samples, 0.11%)</title><rect x="99.8795%" y="869" width="0.1066%" height="15" fill="rgb(213,166,47)" fg:x="150880" fg:w="161"/><text x="100.1295%" y="879.50"></text></g><g><title>skyframe-invali (184 samples, 0.12%)</title><rect x="99.8769%" y="885" width="0.1218%" height="15" fill="rgb(209,27,10)" fg:x="150876" fg:w="184"/><text x="100.1269%" y="895.50"></text></g><g><title>all (151,062 samples, 100%)</title><rect x="0.0000%" y="901" width="100.0000%" height="15" fill="rgb(241,44,30)" fg:x="0" fg:w="151062"/><text x="0.2500%" y="911.50"></text></g></svg></svg> |