491 lines
845 KiB
XML
491 lines
845 KiB
XML
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="902" onload="init(evt)" viewBox="0 0 1200 902" 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="902" 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="885.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="885.00"> </text><svg id="frames" x="10" width="1180" total_samples="530700"><g><title>_dl_update_slotinfo (122 samples, 0.02%)</title><rect x="0.1835%" y="805" width="0.0230%" height="15" fill="rgb(227,0,7)" fg:x="974" fg:w="122"/><text x="0.4335%" y="815.50"></text></g><g><title>[anon] (1,248 samples, 0.24%)</title><rect x="0.0094%" y="821" width="0.2352%" height="15" fill="rgb(217,0,24)" fg:x="50" fg:w="1248"/><text x="0.2594%" y="831.50"></text></g><g><title>[perf-925888.map] (141 samples, 0.03%)</title><rect x="0.2451%" y="821" width="0.0266%" height="15" fill="rgb(221,193,54)" fg:x="1301" fg:w="141"/><text x="0.4951%" y="831.50"></text></g><g><title>[unknown] (104 samples, 0.02%)</title><rect x="0.2717%" y="821" width="0.0196%" height="15" fill="rgb(248,212,6)" fg:x="1442" fg:w="104"/><text x="0.5217%" y="831.50"></text></g><g><title>CompileBroker::post_compile (55 samples, 0.01%)</title><rect x="0.3053%" y="709" width="0.0104%" height="15" fill="rgb(208,68,35)" fg:x="1620" fg:w="55"/><text x="0.5553%" y="719.50"></text></g><g><title>CompileTask::print (86 samples, 0.02%)</title><rect x="0.3217%" y="709" width="0.0162%" height="15" fill="rgb(232,128,0)" fg:x="1707" fg:w="86"/><text x="0.5717%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (62 samples, 0.01%)</title><rect x="0.3578%" y="549" width="0.0117%" height="15" fill="rgb(207,160,47)" fg:x="1899" fg:w="62"/><text x="0.6078%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (93 samples, 0.02%)</title><rect x="0.3575%" y="565" width="0.0175%" height="15" fill="rgb(228,23,34)" fg:x="1897" fg:w="93"/><text x="0.6075%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (135 samples, 0.03%)</title><rect x="0.3571%" y="581" width="0.0254%" height="15" fill="rgb(218,30,26)" fg:x="1895" fg:w="135"/><text x="0.6071%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (198 samples, 0.04%)</title><rect x="0.3556%" y="613" width="0.0373%" height="15" fill="rgb(220,122,19)" fg:x="1887" fg:w="198"/><text x="0.6056%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (195 samples, 0.04%)</title><rect x="0.3561%" y="597" width="0.0367%" height="15" fill="rgb(250,228,42)" fg:x="1890" fg:w="195"/><text x="0.6061%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (55 samples, 0.01%)</title><rect x="0.3825%" y="581" width="0.0104%" height="15" fill="rgb(240,193,28)" fg:x="2030" fg:w="55"/><text x="0.6325%" y="591.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (368 samples, 0.07%)</title><rect x="0.3443%" y="629" width="0.0693%" height="15" fill="rgb(216,20,37)" fg:x="1827" fg:w="368"/><text x="0.5943%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (63 samples, 0.01%)</title><rect x="0.4162%" y="565" width="0.0119%" height="15" fill="rgb(206,188,39)" fg:x="2209" fg:w="63"/><text x="0.6662%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (86 samples, 0.02%)</title><rect x="0.4142%" y="597" width="0.0162%" height="15" fill="rgb(217,207,13)" fg:x="2198" fg:w="86"/><text x="0.6642%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (85 samples, 0.02%)</title><rect x="0.4144%" y="581" width="0.0160%" height="15" fill="rgb(231,73,38)" fg:x="2199" fg:w="85"/><text x="0.6644%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (55 samples, 0.01%)</title><rect x="0.4485%" y="533" width="0.0104%" height="15" fill="rgb(225,20,46)" fg:x="2380" fg:w="55"/><text x="0.6985%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (127 samples, 0.02%)</title><rect x="0.4351%" y="581" width="0.0239%" height="15" fill="rgb(210,31,41)" fg:x="2309" fg:w="127"/><text x="0.6851%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (88 samples, 0.02%)</title><rect x="0.4424%" y="565" width="0.0166%" height="15" fill="rgb(221,200,47)" fg:x="2348" fg:w="88"/><text x="0.6924%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (85 samples, 0.02%)</title><rect x="0.4430%" y="549" width="0.0160%" height="15" fill="rgb(226,26,5)" fg:x="2351" fg:w="85"/><text x="0.6930%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (143 samples, 0.03%)</title><rect x="0.4323%" y="597" width="0.0269%" height="15" fill="rgb(249,33,26)" fg:x="2294" fg:w="143"/><text x="0.6823%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (67 samples, 0.01%)</title><rect x="0.5022%" y="485" width="0.0126%" height="15" fill="rgb(235,183,28)" fg:x="2665" fg:w="67"/><text x="0.7522%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (83 samples, 0.02%)</title><rect x="0.4995%" y="501" width="0.0156%" height="15" fill="rgb(221,5,38)" fg:x="2651" fg:w="83"/><text x="0.7495%" y="511.50"></text></g><g><title>ciField::ciField (126 samples, 0.02%)</title><rect x="0.4946%" y="517" width="0.0237%" height="15" fill="rgb(247,18,42)" fg:x="2625" fg:w="126"/><text x="0.7446%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (139 samples, 0.03%)</title><rect x="0.4926%" y="533" width="0.0262%" height="15" fill="rgb(241,131,45)" fg:x="2614" fg:w="139"/><text x="0.7426%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (158 samples, 0.03%)</title><rect x="0.4922%" y="549" width="0.0298%" height="15" fill="rgb(249,31,29)" fg:x="2612" fg:w="158"/><text x="0.7422%" y="559.50"></text></g><g><title>GraphBuilder::access_field (208 samples, 0.04%)</title><rect x="0.4850%" y="565" width="0.0392%" height="15" fill="rgb(225,111,53)" fg:x="2574" fg:w="208"/><text x="0.7350%" y="575.50"></text></g><g><title>BlockBegin::try_merge (55 samples, 0.01%)</title><rect x="0.5758%" y="485" width="0.0104%" height="15" fill="rgb(238,160,17)" fg:x="3056" fg:w="55"/><text x="0.8258%" y="495.50"></text></g><g><title>ciField::ciField (75 samples, 0.01%)</title><rect x="0.5941%" y="437" width="0.0141%" height="15" fill="rgb(214,148,48)" fg:x="3153" fg:w="75"/><text x="0.8441%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (81 samples, 0.02%)</title><rect x="0.5934%" y="453" width="0.0153%" height="15" fill="rgb(232,36,49)" fg:x="3149" fg:w="81"/><text x="0.8434%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (97 samples, 0.02%)</title><rect x="0.5932%" y="469" width="0.0183%" height="15" fill="rgb(209,103,24)" fg:x="3148" fg:w="97"/><text x="0.8432%" y="479.50"></text></g><g><title>GraphBuilder::access_field (128 samples, 0.02%)</title><rect x="0.5883%" y="485" width="0.0241%" height="15" fill="rgb(229,88,8)" fg:x="3122" fg:w="128"/><text x="0.8383%" y="495.50"></text></g><g><title>GraphBuilder::access_field (81 samples, 0.02%)</title><rect x="0.6418%" y="405" width="0.0153%" height="15" fill="rgb(213,181,19)" fg:x="3406" fg:w="81"/><text x="0.8918%" y="415.50"></text></g><g><title>GraphBuilder::invoke (67 samples, 0.01%)</title><rect x="0.6889%" y="245" width="0.0126%" height="15" fill="rgb(254,191,54)" fg:x="3656" fg:w="67"/><text x="0.9389%" y="255.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (111 samples, 0.02%)</title><rect x="0.6827%" y="277" width="0.0209%" height="15" fill="rgb(241,83,37)" fg:x="3623" fg:w="111"/><text x="0.9327%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (109 samples, 0.02%)</title><rect x="0.6831%" y="261" width="0.0205%" height="15" fill="rgb(233,36,39)" fg:x="3625" fg:w="109"/><text x="0.9331%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (153 samples, 0.03%)</title><rect x="0.6816%" y="293" width="0.0288%" height="15" fill="rgb(226,3,54)" fg:x="3617" fg:w="153"/><text x="0.9316%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (164 samples, 0.03%)</title><rect x="0.6816%" y="309" width="0.0309%" height="15" fill="rgb(245,192,40)" fg:x="3617" fg:w="164"/><text x="0.9316%" y="319.50"></text></g><g><title>GraphBuilder::invoke (230 samples, 0.04%)</title><rect x="0.6800%" y="325" width="0.0433%" height="15" fill="rgb(238,167,29)" fg:x="3609" fg:w="230"/><text x="0.9300%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (304 samples, 0.06%)</title><rect x="0.6689%" y="357" width="0.0573%" height="15" fill="rgb(232,182,51)" fg:x="3550" fg:w="304"/><text x="0.9189%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (301 samples, 0.06%)</title><rect x="0.6695%" y="341" width="0.0567%" height="15" fill="rgb(231,60,39)" fg:x="3553" fg:w="301"/><text x="0.9195%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (392 samples, 0.07%)</title><rect x="0.6663%" y="373" width="0.0739%" height="15" fill="rgb(208,69,12)" fg:x="3536" fg:w="392"/><text x="0.9163%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (433 samples, 0.08%)</title><rect x="0.6655%" y="389" width="0.0816%" height="15" fill="rgb(235,93,37)" fg:x="3532" fg:w="433"/><text x="0.9155%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (80 samples, 0.02%)</title><rect x="0.7507%" y="389" width="0.0151%" height="15" fill="rgb(213,116,39)" fg:x="3984" fg:w="80"/><text x="1.0007%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (79 samples, 0.01%)</title><rect x="0.7509%" y="373" width="0.0149%" height="15" fill="rgb(222,207,29)" fg:x="3985" fg:w="79"/><text x="1.0009%" y="383.50"></text></g><g><title>GraphBuilder::invoke (566 samples, 0.11%)</title><rect x="0.6618%" y="405" width="0.1067%" height="15" fill="rgb(206,96,30)" fg:x="3512" fg:w="566"/><text x="0.9118%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (762 samples, 0.14%)</title><rect x="0.6326%" y="437" width="0.1436%" height="15" fill="rgb(218,138,4)" fg:x="3357" fg:w="762"/><text x="0.8826%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (755 samples, 0.14%)</title><rect x="0.6339%" y="421" width="0.1423%" height="15" fill="rgb(250,191,14)" fg:x="3364" fg:w="755"/><text x="0.8839%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (56 samples, 0.01%)</title><rect x="0.7778%" y="421" width="0.0106%" height="15" fill="rgb(239,60,40)" fg:x="4128" fg:w="56"/><text x="1.0278%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (78 samples, 0.01%)</title><rect x="0.7775%" y="437" width="0.0147%" height="15" fill="rgb(206,27,48)" fg:x="4126" fg:w="78"/><text x="1.0275%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (944 samples, 0.18%)</title><rect x="0.6254%" y="453" width="0.1779%" height="15" fill="rgb(225,35,8)" fg:x="3319" fg:w="944"/><text x="0.8754%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (991 samples, 0.19%)</title><rect x="0.6243%" y="469" width="0.1867%" height="15" fill="rgb(250,213,24)" fg:x="3313" fg:w="991"/><text x="0.8743%" y="479.50"></text></g><g><title>ciMethod::ciMethod (73 samples, 0.01%)</title><rect x="0.8282%" y="405" width="0.0138%" height="15" fill="rgb(247,123,22)" fg:x="4395" fg:w="73"/><text x="1.0782%" y="415.50"></text></g><g><title>ciSignature::ciSignature (57 samples, 0.01%)</title><rect x="0.8312%" y="389" width="0.0107%" height="15" fill="rgb(231,138,38)" fg:x="4411" fg:w="57"/><text x="1.0812%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (87 samples, 0.02%)</title><rect x="0.8259%" y="437" width="0.0164%" height="15" fill="rgb(231,145,46)" fg:x="4383" fg:w="87"/><text x="1.0759%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (82 samples, 0.02%)</title><rect x="0.8268%" y="421" width="0.0155%" height="15" fill="rgb(251,118,11)" fg:x="4388" fg:w="82"/><text x="1.0768%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (150 samples, 0.03%)</title><rect x="0.8148%" y="469" width="0.0283%" height="15" fill="rgb(217,147,25)" fg:x="4324" fg:w="150"/><text x="1.0648%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (143 samples, 0.03%)</title><rect x="0.8161%" y="453" width="0.0269%" height="15" fill="rgb(247,81,37)" fg:x="4331" fg:w="143"/><text x="1.0661%" y="463.50"></text></g><g><title>GraphBuilder::invoke (1,221 samples, 0.23%)</title><rect x="0.6194%" y="485" width="0.2301%" height="15" fill="rgb(209,12,38)" fg:x="3287" fg:w="1221"/><text x="0.8694%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,555 samples, 0.29%)</title><rect x="0.5700%" y="517" width="0.2930%" height="15" fill="rgb(227,1,9)" fg:x="3025" fg:w="1555"/><text x="0.8200%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,544 samples, 0.29%)</title><rect x="0.5721%" y="501" width="0.2909%" height="15" fill="rgb(248,47,43)" fg:x="3036" fg:w="1544"/><text x="0.8221%" y="511.50"></text></g><g><title>BlockListBuilder::set_leaders (60 samples, 0.01%)</title><rect x="0.8702%" y="485" width="0.0113%" height="15" fill="rgb(221,10,30)" fg:x="4618" fg:w="60"/><text x="1.1202%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (86 samples, 0.02%)</title><rect x="0.8660%" y="501" width="0.0162%" height="15" fill="rgb(210,229,1)" fg:x="4596" fg:w="86"/><text x="1.1160%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (144 samples, 0.03%)</title><rect x="0.8651%" y="517" width="0.0271%" height="15" fill="rgb(222,148,37)" fg:x="4591" fg:w="144"/><text x="1.1151%" y="527.50"></text></g><g><title>Method::build_interpreter_method_data (69 samples, 0.01%)</title><rect x="0.8960%" y="485" width="0.0130%" height="15" fill="rgb(234,67,33)" fg:x="4755" fg:w="69"/><text x="1.1460%" y="495.50"></text></g><g><title>MethodData::allocate (68 samples, 0.01%)</title><rect x="0.8962%" y="469" width="0.0128%" height="15" fill="rgb(247,98,35)" fg:x="4756" fg:w="68"/><text x="1.1462%" y="479.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.01%)</title><rect x="0.9092%" y="485" width="0.0107%" height="15" fill="rgb(247,138,52)" fg:x="4825" fg:w="57"/><text x="1.1592%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (145 samples, 0.03%)</title><rect x="0.8958%" y="501" width="0.0273%" height="15" fill="rgb(213,79,30)" fg:x="4754" fg:w="145"/><text x="1.1458%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (154 samples, 0.03%)</title><rect x="0.8943%" y="517" width="0.0290%" height="15" fill="rgb(246,177,23)" fg:x="4746" fg:w="154"/><text x="1.1443%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (1,942 samples, 0.37%)</title><rect x="0.5587%" y="533" width="0.3659%" height="15" fill="rgb(230,62,27)" fg:x="2965" fg:w="1942"/><text x="0.8087%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (1,958 samples, 0.37%)</title><rect x="0.5566%" y="549" width="0.3689%" height="15" fill="rgb(216,154,8)" fg:x="2954" fg:w="1958"/><text x="0.8066%" y="559.50"></text></g><g><title>ciEnv::lookup_method (102 samples, 0.02%)</title><rect x="0.9465%" y="517" width="0.0192%" height="15" fill="rgb(244,35,45)" fg:x="5023" fg:w="102"/><text x="1.1965%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (60 samples, 0.01%)</title><rect x="0.9894%" y="453" width="0.0113%" height="15" fill="rgb(251,115,12)" fg:x="5251" fg:w="60"/><text x="1.2394%" y="463.50"></text></g><g><title>ciSignature::ciSignature (143 samples, 0.03%)</title><rect x="0.9763%" y="469" width="0.0269%" height="15" fill="rgb(240,54,50)" fg:x="5181" fg:w="143"/><text x="1.2263%" y="479.50"></text></g><g><title>ciMethod::ciMethod (171 samples, 0.03%)</title><rect x="0.9714%" y="485" width="0.0322%" height="15" fill="rgb(233,84,52)" fg:x="5155" fg:w="171"/><text x="1.2214%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (204 samples, 0.04%)</title><rect x="0.9657%" y="517" width="0.0384%" height="15" fill="rgb(207,117,47)" fg:x="5125" fg:w="204"/><text x="1.2157%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (182 samples, 0.03%)</title><rect x="0.9699%" y="501" width="0.0343%" height="15" fill="rgb(249,43,39)" fg:x="5147" fg:w="182"/><text x="1.2199%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (344 samples, 0.06%)</title><rect x="0.9405%" y="533" width="0.0648%" height="15" fill="rgb(209,38,44)" fg:x="4991" fg:w="344"/><text x="1.1905%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (368 samples, 0.07%)</title><rect x="0.9363%" y="549" width="0.0693%" height="15" fill="rgb(236,212,23)" fg:x="4969" fg:w="368"/><text x="1.1863%" y="559.50"></text></g><g><title>GraphBuilder::invoke (2,545 samples, 0.48%)</title><rect x="0.5391%" y="565" width="0.4796%" height="15" fill="rgb(242,79,21)" fg:x="2861" fg:w="2545"/><text x="0.7891%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,999 samples, 0.57%)</title><rect x="0.4679%" y="581" width="0.5651%" height="15" fill="rgb(211,96,35)" fg:x="2483" fg:w="2999"/><text x="0.7179%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,045 samples, 0.57%)</title><rect x="0.4611%" y="597" width="0.5738%" height="15" fill="rgb(253,215,40)" fg:x="2447" fg:w="3045"/><text x="0.7111%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,359 samples, 0.63%)</title><rect x="0.4138%" y="613" width="0.6329%" height="15" fill="rgb(211,81,21)" fg:x="2196" fg:w="3359"/><text x="0.6638%" y="623.50"></text></g><g><title>IR::IR (3,370 samples, 0.64%)</title><rect x="0.4136%" y="629" width="0.6350%" height="15" fill="rgb(208,190,38)" fg:x="2195" fg:w="3370"/><text x="0.6636%" y="639.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (63 samples, 0.01%)</title><rect x="1.0488%" y="613" width="0.0119%" height="15" fill="rgb(235,213,38)" fg:x="5566" fg:w="63"/><text x="1.2988%" y="623.50"></text></g><g><title>IR::compute_code (72 samples, 0.01%)</title><rect x="1.0486%" y="629" width="0.0136%" height="15" fill="rgb(237,122,38)" fg:x="5565" fg:w="72"/><text x="1.2986%" y="639.50"></text></g><g><title>UseCountComputer::block_do (79 samples, 0.01%)</title><rect x="1.0631%" y="597" width="0.0149%" height="15" fill="rgb(244,218,35)" fg:x="5642" fg:w="79"/><text x="1.3131%" y="607.50"></text></g><g><title>BlockList::iterate_backward (81 samples, 0.02%)</title><rect x="1.0629%" y="613" width="0.0153%" height="15" fill="rgb(240,68,47)" fg:x="5641" fg:w="81"/><text x="1.3129%" y="623.50"></text></g><g><title>IR::compute_use_counts (121 samples, 0.02%)</title><rect x="1.0622%" y="629" width="0.0228%" height="15" fill="rgb(210,16,53)" fg:x="5637" fg:w="121"/><text x="1.3122%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (141 samples, 0.03%)</title><rect x="1.0884%" y="597" width="0.0266%" height="15" fill="rgb(235,124,12)" fg:x="5776" fg:w="141"/><text x="1.3384%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (168 samples, 0.03%)</title><rect x="1.0850%" y="629" width="0.0317%" height="15" fill="rgb(224,169,11)" fg:x="5758" fg:w="168"/><text x="1.3350%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (167 samples, 0.03%)</title><rect x="1.0852%" y="613" width="0.0315%" height="15" fill="rgb(250,166,2)" fg:x="5759" fg:w="167"/><text x="1.3352%" y="623.50"></text></g><g><title>IR::optimize_blocks (70 samples, 0.01%)</title><rect x="1.1166%" y="629" width="0.0132%" height="15" fill="rgb(242,216,29)" fg:x="5926" fg:w="70"/><text x="1.3666%" y="639.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (58 samples, 0.01%)</title><rect x="1.1189%" y="613" width="0.0109%" height="15" fill="rgb(230,116,27)" fg:x="5938" fg:w="58"/><text x="1.3689%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="1.1193%" y="597" width="0.0106%" height="15" fill="rgb(228,99,48)" fg:x="5940" fg:w="56"/><text x="1.3693%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="1.1193%" y="581" width="0.0106%" height="15" fill="rgb(253,11,6)" fg:x="5940" fg:w="56"/><text x="1.3693%" y="591.50"></text></g><g><title>Compilation::build_hir (4,254 samples, 0.80%)</title><rect x="0.3428%" y="645" width="0.8016%" height="15" fill="rgb(247,143,39)" fg:x="1819" fg:w="4254"/><text x="0.5928%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (102 samples, 0.02%)</title><rect x="1.1722%" y="581" width="0.0192%" height="15" fill="rgb(236,97,10)" fg:x="6221" fg:w="102"/><text x="1.4222%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (102 samples, 0.02%)</title><rect x="1.1722%" y="565" width="0.0192%" height="15" fill="rgb(233,208,19)" fg:x="6221" fg:w="102"/><text x="1.4222%" y="575.50"></text></g><g><title>LIR_Assembler::call (109 samples, 0.02%)</title><rect x="1.1720%" y="597" width="0.0205%" height="15" fill="rgb(216,164,2)" fg:x="6220" fg:w="109"/><text x="1.4220%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (164 samples, 0.03%)</title><rect x="1.1656%" y="613" width="0.0309%" height="15" fill="rgb(220,129,5)" fg:x="6186" fg:w="164"/><text x="1.4156%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (147 samples, 0.03%)</title><rect x="1.2028%" y="613" width="0.0277%" height="15" fill="rgb(242,17,10)" fg:x="6383" fg:w="147"/><text x="1.4528%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (633 samples, 0.12%)</title><rect x="1.1477%" y="629" width="0.1193%" height="15" fill="rgb(242,107,0)" fg:x="6091" fg:w="633"/><text x="1.3977%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (91 samples, 0.02%)</title><rect x="1.2777%" y="581" width="0.0171%" height="15" fill="rgb(251,28,31)" fg:x="6781" fg:w="91"/><text x="1.5277%" y="591.50"></text></g><g><title>LIR_Assembler::add_call_info (92 samples, 0.02%)</title><rect x="1.2777%" y="597" width="0.0173%" height="15" fill="rgb(233,223,10)" fg:x="6781" fg:w="92"/><text x="1.5277%" y="607.50"></text></g><g><title>CounterOverflowStub::emit_code (115 samples, 0.02%)</title><rect x="1.2766%" y="613" width="0.0217%" height="15" fill="rgb(215,21,27)" fg:x="6775" fg:w="115"/><text x="1.5266%" y="623.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (66 samples, 0.01%)</title><rect x="1.3021%" y="613" width="0.0124%" height="15" fill="rgb(232,23,21)" fg:x="6910" fg:w="66"/><text x="1.5521%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (296 samples, 0.06%)</title><rect x="1.2745%" y="629" width="0.0558%" height="15" fill="rgb(244,5,23)" fg:x="6764" fg:w="296"/><text x="1.5245%" y="639.50"></text></g><g><title>Compilation::emit_code_body (999 samples, 0.19%)</title><rect x="1.1443%" y="645" width="0.1882%" height="15" fill="rgb(226,81,46)" fg:x="6073" fg:w="999"/><text x="1.3943%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (79 samples, 0.01%)</title><rect x="1.3461%" y="597" width="0.0149%" height="15" fill="rgb(247,70,30)" fg:x="7144" fg:w="79"/><text x="1.5961%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (56 samples, 0.01%)</title><rect x="1.3693%" y="565" width="0.0106%" height="15" fill="rgb(212,68,19)" fg:x="7267" fg:w="56"/><text x="1.6193%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (219 samples, 0.04%)</title><rect x="1.3663%" y="581" width="0.0413%" height="15" fill="rgb(240,187,13)" fg:x="7251" fg:w="219"/><text x="1.6163%" y="591.50"></text></g><g><title>PhiResolverState::reset (139 samples, 0.03%)</title><rect x="1.3814%" y="565" width="0.0262%" height="15" fill="rgb(223,113,26)" fg:x="7331" fg:w="139"/><text x="1.6314%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (241 samples, 0.05%)</title><rect x="1.3639%" y="597" width="0.0454%" height="15" fill="rgb(206,192,2)" fg:x="7238" fg:w="241"/><text x="1.6139%" y="607.50"></text></g><g><title>LIRGenerator::do_Invoke (137 samples, 0.03%)</title><rect x="1.4183%" y="597" width="0.0258%" height="15" fill="rgb(241,108,4)" fg:x="7527" fg:w="137"/><text x="1.6683%" y="607.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (77 samples, 0.01%)</title><rect x="1.4682%" y="597" width="0.0145%" height="15" fill="rgb(247,173,49)" fg:x="7792" fg:w="77"/><text x="1.7182%" y="607.50"></text></g><g><title>LIRGenerator::block_do (863 samples, 0.16%)</title><rect x="1.3345%" y="613" width="0.1626%" height="15" fill="rgb(224,114,35)" fg:x="7082" fg:w="863"/><text x="1.5845%" y="623.50"></text></g><g><title>BlockList::iterate_forward (869 samples, 0.16%)</title><rect x="1.3337%" y="629" width="0.1637%" height="15" fill="rgb(245,159,27)" fg:x="7078" fg:w="869"/><text x="1.5837%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (124 samples, 0.02%)</title><rect x="1.5184%" y="581" width="0.0234%" height="15" fill="rgb(245,172,44)" fg:x="8058" fg:w="124"/><text x="1.7684%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (97 samples, 0.02%)</title><rect x="1.5634%" y="549" width="0.0183%" height="15" fill="rgb(236,23,11)" fg:x="8297" fg:w="97"/><text x="1.8134%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (113 samples, 0.02%)</title><rect x="1.5860%" y="549" width="0.0213%" height="15" fill="rgb(205,117,38)" fg:x="8417" fg:w="113"/><text x="1.8360%" y="559.50"></text></g><g><title>Interval::split (58 samples, 0.01%)</title><rect x="1.6088%" y="533" width="0.0109%" height="15" fill="rgb(237,72,25)" fg:x="8538" fg:w="58"/><text x="1.8588%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (75 samples, 0.01%)</title><rect x="1.6073%" y="549" width="0.0141%" height="15" fill="rgb(244,70,9)" fg:x="8530" fg:w="75"/><text x="1.8573%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (400 samples, 0.08%)</title><rect x="1.5466%" y="565" width="0.0754%" height="15" fill="rgb(217,125,39)" fg:x="8208" fg:w="400"/><text x="1.7966%" y="575.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (74 samples, 0.01%)</title><rect x="1.6280%" y="549" width="0.0139%" height="15" fill="rgb(235,36,10)" fg:x="8640" fg:w="74"/><text x="1.8780%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (150 samples, 0.03%)</title><rect x="1.6220%" y="565" width="0.0283%" height="15" fill="rgb(251,123,47)" fg:x="8608" fg:w="150"/><text x="1.8720%" y="575.50"></text></g><g><title>LinearScanWalker::activate_current (657 samples, 0.12%)</title><rect x="1.5417%" y="581" width="0.1238%" height="15" fill="rgb(221,13,13)" fg:x="8182" fg:w="657"/><text x="1.7917%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (817 samples, 0.15%)</title><rect x="1.5118%" y="597" width="0.1539%" height="15" fill="rgb(238,131,9)" fg:x="8023" fg:w="817"/><text x="1.7618%" y="607.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (58 samples, 0.01%)</title><rect x="1.6665%" y="597" width="0.0109%" height="15" fill="rgb(211,50,8)" fg:x="8844" fg:w="58"/><text x="1.9165%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (902 samples, 0.17%)</title><rect x="1.5086%" y="613" width="0.1700%" height="15" fill="rgb(245,182,24)" fg:x="8006" fg:w="902"/><text x="1.7586%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (78 samples, 0.01%)</title><rect x="1.7042%" y="581" width="0.0147%" height="15" fill="rgb(242,14,37)" fg:x="9044" fg:w="78"/><text x="1.9542%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (62 samples, 0.01%)</title><rect x="1.7194%" y="581" width="0.0117%" height="15" fill="rgb(246,228,12)" fg:x="9125" fg:w="62"/><text x="1.9694%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (79 samples, 0.01%)</title><rect x="1.7420%" y="565" width="0.0149%" height="15" fill="rgb(213,55,15)" fg:x="9245" fg:w="79"/><text x="1.9920%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (148 samples, 0.03%)</title><rect x="1.7311%" y="581" width="0.0279%" height="15" fill="rgb(209,9,3)" fg:x="9187" fg:w="148"/><text x="1.9811%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (76 samples, 0.01%)</title><rect x="1.7667%" y="549" width="0.0143%" height="15" fill="rgb(230,59,30)" fg:x="9376" fg:w="76"/><text x="2.0167%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (132 samples, 0.02%)</title><rect x="1.7633%" y="565" width="0.0249%" height="15" fill="rgb(209,121,21)" fg:x="9358" fg:w="132"/><text x="2.0133%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (157 samples, 0.03%)</title><rect x="1.7590%" y="581" width="0.0296%" height="15" fill="rgb(220,109,13)" fg:x="9335" fg:w="157"/><text x="2.0090%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (577 samples, 0.11%)</title><rect x="1.6800%" y="597" width="0.1087%" height="15" fill="rgb(232,18,1)" fg:x="8916" fg:w="577"/><text x="1.9300%" y="607.50"></text></g><g><title>LinearScan::assign_reg_num (607 samples, 0.11%)</title><rect x="1.6785%" y="613" width="0.1144%" height="15" fill="rgb(215,41,42)" fg:x="8908" fg:w="607"/><text x="1.9285%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (81 samples, 0.02%)</title><rect x="1.8402%" y="597" width="0.0153%" height="15" fill="rgb(224,123,36)" fg:x="9766" fg:w="81"/><text x="2.0902%" y="607.50"></text></g><g><title>LinearScan::add_def (72 samples, 0.01%)</title><rect x="1.8555%" y="597" width="0.0136%" height="15" fill="rgb(240,125,3)" fg:x="9847" fg:w="72"/><text x="2.1055%" y="607.50"></text></g><g><title>Interval::add_range (54 samples, 0.01%)</title><rect x="1.8726%" y="581" width="0.0102%" height="15" fill="rgb(205,98,50)" fg:x="9938" fg:w="54"/><text x="2.1226%" y="591.50"></text></g><g><title>LinearScan::add_temp (109 samples, 0.02%)</title><rect x="1.8715%" y="597" width="0.0205%" height="15" fill="rgb(205,185,37)" fg:x="9932" fg:w="109"/><text x="2.1215%" y="607.50"></text></g><g><title>Interval::Interval (59 samples, 0.01%)</title><rect x="1.9118%" y="565" width="0.0111%" height="15" fill="rgb(238,207,15)" fg:x="10146" fg:w="59"/><text x="2.1618%" y="575.50"></text></g><g><title>LinearScan::add_use (173 samples, 0.03%)</title><rect x="1.8920%" y="597" width="0.0326%" height="15" fill="rgb(213,199,42)" fg:x="10041" fg:w="173"/><text x="2.1420%" y="607.50"></text></g><g><title>LinearScan::create_interval (87 samples, 0.02%)</title><rect x="1.9082%" y="581" width="0.0164%" height="15" fill="rgb(235,201,11)" fg:x="10127" fg:w="87"/><text x="2.1582%" y="591.50"></text></g><g><title>LinearScan::build_intervals (775 samples, 0.15%)</title><rect x="1.7929%" y="613" width="0.1460%" height="15" fill="rgb(207,46,11)" fg:x="9515" fg:w="775"/><text x="2.0429%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (86 samples, 0.02%)</title><rect x="1.9699%" y="597" width="0.0162%" height="15" fill="rgb(241,35,35)" fg:x="10454" fg:w="86"/><text x="2.2199%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (245 samples, 0.05%)</title><rect x="1.9480%" y="613" width="0.0462%" height="15" fill="rgb(243,32,47)" fg:x="10338" fg:w="245"/><text x="2.1980%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (59 samples, 0.01%)</title><rect x="1.9942%" y="613" width="0.0111%" height="15" fill="rgb(247,202,23)" fg:x="10583" fg:w="59"/><text x="2.2442%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (76 samples, 0.01%)</title><rect x="2.0177%" y="597" width="0.0143%" height="15" fill="rgb(219,102,11)" fg:x="10708" fg:w="76"/><text x="2.2677%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (114 samples, 0.02%)</title><rect x="2.0138%" y="613" width="0.0215%" height="15" fill="rgb(243,110,44)" fg:x="10687" fg:w="114"/><text x="2.2638%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (2,964 samples, 0.56%)</title><rect x="1.5033%" y="629" width="0.5585%" height="15" fill="rgb(222,74,54)" fg:x="7978" fg:w="2964"/><text x="1.7533%" y="639.50"></text></g><g><title>Compilation::emit_lir (3,873 samples, 0.73%)</title><rect x="1.3326%" y="645" width="0.7298%" height="15" fill="rgb(216,99,12)" fg:x="7072" fg:w="3873"/><text x="1.5826%" y="655.50"></text></g><g><title>MethodData::allocate (64 samples, 0.01%)</title><rect x="2.0686%" y="597" width="0.0121%" height="15" fill="rgb(226,22,26)" fg:x="10978" fg:w="64"/><text x="2.3186%" y="607.50"></text></g><g><title>Method::build_interpreter_method_data (67 samples, 0.01%)</title><rect x="2.0684%" y="613" width="0.0126%" height="15" fill="rgb(217,163,10)" fg:x="10977" fg:w="67"/><text x="2.3184%" y="623.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.01%)</title><rect x="2.0814%" y="613" width="0.0107%" height="15" fill="rgb(213,25,53)" fg:x="11046" fg:w="57"/><text x="2.3314%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.03%)</title><rect x="2.0684%" y="629" width="0.0256%" height="15" fill="rgb(252,105,26)" fg:x="10977" fg:w="136"/><text x="2.3184%" y="639.50"></text></g><g><title>Compilation::compile_java_method (9,300 samples, 1.75%)</title><rect x="0.3418%" y="661" width="1.7524%" height="15" fill="rgb(220,39,43)" fg:x="1814" fg:w="9300"/><text x="0.5918%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (139 samples, 0.03%)</title><rect x="2.0680%" y="645" width="0.0262%" height="15" fill="rgb(229,68,48)" fg:x="10975" fg:w="139"/><text x="2.3180%" y="655.50"></text></g><g><title>CodeBuffer::finalize_oop_references (81 samples, 0.02%)</title><rect x="2.1136%" y="629" width="0.0153%" height="15" fill="rgb(252,8,32)" fg:x="11217" fg:w="81"/><text x="2.3636%" y="639.50"></text></g><g><title>CodeCache::allocate (55 samples, 0.01%)</title><rect x="2.1289%" y="629" width="0.0104%" height="15" fill="rgb(223,20,43)" fg:x="11298" fg:w="55"/><text x="2.3789%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (105 samples, 0.02%)</title><rect x="2.1528%" y="597" width="0.0198%" height="15" fill="rgb(229,81,49)" fg:x="11425" fg:w="105"/><text x="2.4028%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (115 samples, 0.02%)</title><rect x="2.1524%" y="613" width="0.0217%" height="15" fill="rgb(236,28,36)" fg:x="11423" fg:w="115"/><text x="2.4024%" y="623.50"></text></g><g><title>nmethod::new_nmethod (489 samples, 0.09%)</title><rect x="2.1117%" y="645" width="0.0921%" height="15" fill="rgb(249,185,26)" fg:x="11207" fg:w="489"/><text x="2.3617%" y="655.50"></text></g><g><title>nmethod::nmethod (279 samples, 0.05%)</title><rect x="2.1513%" y="629" width="0.0526%" height="15" fill="rgb(249,174,33)" fg:x="11417" fg:w="279"/><text x="2.4013%" y="639.50"></text></g><g><title>ciEnv::register_method (556 samples, 0.10%)</title><rect x="2.0997%" y="661" width="0.1048%" height="15" fill="rgb(233,201,37)" fg:x="11143" fg:w="556"/><text x="2.3497%" y="671.50"></text></g><g><title>Compilation::compile_method (9,893 samples, 1.86%)</title><rect x="0.3407%" y="677" width="1.8641%" height="15" fill="rgb(221,78,26)" fg:x="1808" fg:w="9893"/><text x="0.5907%" y="687.50">C..</text></g><g><title>Compiler::compile_method (9,916 samples, 1.87%)</title><rect x="0.3382%" y="709" width="1.8685%" height="15" fill="rgb(250,127,30)" fg:x="1795" fg:w="9916"/><text x="0.5882%" y="719.50">C..</text></g><g><title>Compilation::Compilation (9,907 samples, 1.87%)</title><rect x="0.3399%" y="693" width="1.8668%" height="15" fill="rgb(230,49,44)" fg:x="1804" fg:w="9907"/><text x="0.5899%" y="703.50">C..</text></g><g><title>ciEnv::ciEnv (89 samples, 0.02%)</title><rect x="2.2120%" y="709" width="0.0168%" height="15" fill="rgb(229,67,23)" fg:x="11739" fg:w="89"/><text x="2.4620%" y="719.50"></text></g><g><title>ciMethod::ciMethod (78 samples, 0.01%)</title><rect x="2.2308%" y="661" width="0.0147%" height="15" fill="rgb(249,83,47)" fg:x="11839" fg:w="78"/><text x="2.4808%" y="671.50"></text></g><g><title>ciSignature::ciSignature (72 samples, 0.01%)</title><rect x="2.2320%" y="645" width="0.0136%" height="15" fill="rgb(215,43,3)" fg:x="11845" fg:w="72"/><text x="2.4820%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (101 samples, 0.02%)</title><rect x="2.2288%" y="709" width="0.0190%" height="15" fill="rgb(238,154,13)" fg:x="11828" fg:w="101"/><text x="2.4788%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (98 samples, 0.02%)</title><rect x="2.2293%" y="693" width="0.0185%" height="15" fill="rgb(219,56,2)" fg:x="11831" fg:w="98"/><text x="2.4793%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (93 samples, 0.02%)</title><rect x="2.2303%" y="677" width="0.0175%" height="15" fill="rgb(233,0,4)" fg:x="11836" fg:w="93"/><text x="2.4803%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,372 samples, 1.95%)</title><rect x="0.2990%" y="725" width="1.9544%" height="15" fill="rgb(235,30,7)" fg:x="1587" fg:w="10372"/><text x="0.5490%" y="735.50">C..</text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="2.2740%" y="485" width="0.0115%" height="15" fill="rgb(250,79,13)" fg:x="12068" fg:w="61"/><text x="2.5240%" y="495.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.02%)</title><rect x="2.2708%" y="533" width="0.0166%" height="15" fill="rgb(211,146,34)" fg:x="12051" fg:w="88"/><text x="2.5208%" y="543.50"></text></g><g><title>schedule (83 samples, 0.02%)</title><rect x="2.2717%" y="517" width="0.0156%" height="15" fill="rgb(228,22,38)" fg:x="12056" fg:w="83"/><text x="2.5217%" y="527.50"></text></g><g><title>__schedule (81 samples, 0.02%)</title><rect x="2.2721%" y="501" width="0.0153%" height="15" fill="rgb(235,168,5)" fg:x="12058" fg:w="81"/><text x="2.5221%" y="511.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="2.2706%" y="597" width="0.0181%" height="15" fill="rgb(221,155,16)" fg:x="12050" fg:w="96"/><text x="2.5206%" y="607.50"></text></g><g><title>__x64_sys_futex (96 samples, 0.02%)</title><rect x="2.2706%" y="581" width="0.0181%" height="15" fill="rgb(215,215,53)" fg:x="12050" fg:w="96"/><text x="2.5206%" y="591.50"></text></g><g><title>do_futex (96 samples, 0.02%)</title><rect x="2.2706%" y="565" width="0.0181%" height="15" fill="rgb(223,4,10)" fg:x="12050" fg:w="96"/><text x="2.5206%" y="575.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="2.2708%" y="549" width="0.0179%" height="15" fill="rgb(234,103,6)" fg:x="12051" fg:w="95"/><text x="2.5208%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (103 samples, 0.02%)</title><rect x="2.2704%" y="661" width="0.0194%" height="15" fill="rgb(227,97,0)" fg:x="12049" fg:w="103"/><text x="2.5204%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (103 samples, 0.02%)</title><rect x="2.2704%" y="645" width="0.0194%" height="15" fill="rgb(234,150,53)" fg:x="12049" fg:w="103"/><text x="2.5204%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.02%)</title><rect x="2.2706%" y="629" width="0.0192%" height="15" fill="rgb(228,201,54)" fg:x="12050" fg:w="102"/><text x="2.5206%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.02%)</title><rect x="2.2706%" y="613" width="0.0192%" height="15" fill="rgb(222,22,37)" fg:x="12050" fg:w="102"/><text x="2.5206%" y="623.50"></text></g><g><title>Monitor::IWait (117 samples, 0.02%)</title><rect x="2.2687%" y="693" width="0.0220%" height="15" fill="rgb(237,53,32)" fg:x="12040" fg:w="117"/><text x="2.5187%" y="703.50"></text></g><g><title>os::PlatformEvent::park (112 samples, 0.02%)</title><rect x="2.2696%" y="677" width="0.0211%" height="15" fill="rgb(233,25,53)" fg:x="12045" fg:w="112"/><text x="2.5196%" y="687.50"></text></g><g><title>Monitor::wait (120 samples, 0.02%)</title><rect x="2.2685%" y="709" width="0.0226%" height="15" fill="rgb(210,40,34)" fg:x="12039" fg:w="120"/><text x="2.5185%" y="719.50"></text></g><g><title>CompileQueue::get (216 samples, 0.04%)</title><rect x="2.2615%" y="725" width="0.0407%" height="15" fill="rgb(241,220,44)" fg:x="12002" fg:w="216"/><text x="2.5115%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (10,648 samples, 2.01%)</title><rect x="0.2979%" y="741" width="2.0064%" height="15" fill="rgb(235,28,35)" fg:x="1581" fg:w="10648"/><text x="0.5479%" y="751.50">C..</text></g><g><title>Thread::call_run (10,650 samples, 2.01%)</title><rect x="0.2977%" y="773" width="2.0068%" height="15" fill="rgb(210,56,17)" fg:x="1580" fg:w="10650"/><text x="0.5477%" y="783.50">T..</text></g><g><title>JavaThread::thread_main_inner (10,649 samples, 2.01%)</title><rect x="0.2979%" y="757" width="2.0066%" height="15" fill="rgb(224,130,29)" fg:x="1581" fg:w="10649"/><text x="0.5479%" y="767.50">J..</text></g><g><title>__GI___clone (10,684 samples, 2.01%)</title><rect x="0.2919%" y="821" width="2.0132%" height="15" fill="rgb(235,212,8)" fg:x="1549" fg:w="10684"/><text x="0.5419%" y="831.50">_..</text></g><g><title>start_thread (10,653 samples, 2.01%)</title><rect x="0.2977%" y="805" width="2.0073%" height="15" fill="rgb(223,33,50)" fg:x="1580" fg:w="10653"/><text x="0.5477%" y="815.50">s..</text></g><g><title>thread_native_entry (10,653 samples, 2.01%)</title><rect x="0.2977%" y="789" width="2.0073%" height="15" fill="rgb(219,149,13)" fg:x="1580" fg:w="10653"/><text x="0.5477%" y="799.50">t..</text></g><g><title>C1_CompilerThre (12,279 samples, 2.31%)</title><rect x="0.0024%" y="837" width="2.3137%" height="15" fill="rgb(250,156,29)" fg:x="13" fg:w="12279"/><text x="0.2524%" y="847.50">C..</text></g><g><title>PhaseIdealLoop::build_loop_early (69 samples, 0.01%)</title><rect x="2.3531%" y="821" width="0.0130%" height="15" fill="rgb(216,193,19)" fg:x="12488" fg:w="69"/><text x="2.6031%" y="831.50"></text></g><g><title>ProjNode::pinned (68 samples, 0.01%)</title><rect x="2.3533%" y="805" width="0.0128%" height="15" fill="rgb(216,135,14)" fg:x="12489" fg:w="68"/><text x="2.6033%" y="815.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.01%)</title><rect x="2.5813%" y="805" width="0.0124%" height="15" fill="rgb(241,47,5)" fg:x="13699" fg:w="66"/><text x="2.8313%" y="815.50"></text></g><g><title>Node::is_CFG (67 samples, 0.01%)</title><rect x="2.6081%" y="805" width="0.0126%" height="15" fill="rgb(233,42,35)" fg:x="13841" fg:w="67"/><text x="2.8581%" y="815.50"></text></g><g><title>_dl_update_slotinfo (178 samples, 0.03%)</title><rect x="2.8110%" y="805" width="0.0335%" height="15" fill="rgb(231,13,6)" fg:x="14918" fg:w="178"/><text x="3.0610%" y="815.50"></text></g><g><title>[anon] (2,994 samples, 0.56%)</title><rect x="2.3718%" y="821" width="0.5642%" height="15" fill="rgb(207,181,40)" fg:x="12587" fg:w="2994"/><text x="2.6218%" y="831.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (65 samples, 0.01%)</title><rect x="2.9621%" y="549" width="0.0122%" height="15" fill="rgb(254,173,49)" fg:x="15720" fg:w="65"/><text x="3.2121%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (65 samples, 0.01%)</title><rect x="2.9621%" y="533" width="0.0122%" height="15" fill="rgb(221,1,38)" fg:x="15720" fg:w="65"/><text x="3.2121%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (61 samples, 0.01%)</title><rect x="2.9629%" y="517" width="0.0115%" height="15" fill="rgb(206,124,46)" fg:x="15724" fg:w="61"/><text x="3.2129%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (115 samples, 0.02%)</title><rect x="2.9542%" y="565" width="0.0217%" height="15" fill="rgb(249,21,11)" fg:x="15678" fg:w="115"/><text x="3.2042%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (129 samples, 0.02%)</title><rect x="2.9520%" y="597" width="0.0243%" height="15" fill="rgb(222,201,40)" fg:x="15666" fg:w="129"/><text x="3.2020%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (128 samples, 0.02%)</title><rect x="2.9521%" y="581" width="0.0241%" height="15" fill="rgb(235,61,29)" fg:x="15667" fg:w="128"/><text x="3.2021%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (138 samples, 0.03%)</title><rect x="2.9510%" y="661" width="0.0260%" height="15" fill="rgb(219,207,3)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (138 samples, 0.03%)</title><rect x="2.9510%" y="645" width="0.0260%" height="15" fill="rgb(222,56,46)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (138 samples, 0.03%)</title><rect x="2.9510%" y="629" width="0.0260%" height="15" fill="rgb(239,76,54)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (138 samples, 0.03%)</title><rect x="2.9510%" y="613" width="0.0260%" height="15" fill="rgb(231,124,27)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="623.50"></text></g><g><title>Compile::call_generator (179 samples, 0.03%)</title><rect x="2.9435%" y="677" width="0.0337%" height="15" fill="rgb(249,195,6)" fg:x="15621" fg:w="179"/><text x="3.1935%" y="687.50"></text></g><g><title>ciTypeFlow::df_flow_types (76 samples, 0.01%)</title><rect x="2.9917%" y="501" width="0.0143%" height="15" fill="rgb(237,174,47)" fg:x="15877" fg:w="76"/><text x="3.2417%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (70 samples, 0.01%)</title><rect x="2.9928%" y="485" width="0.0132%" height="15" fill="rgb(206,201,31)" fg:x="15883" fg:w="70"/><text x="3.2428%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (61 samples, 0.01%)</title><rect x="2.9945%" y="469" width="0.0115%" height="15" fill="rgb(231,57,52)" fg:x="15892" fg:w="61"/><text x="3.2445%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (81 samples, 0.02%)</title><rect x="2.9913%" y="533" width="0.0153%" height="15" fill="rgb(248,177,22)" fg:x="15875" fg:w="81"/><text x="3.2413%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (81 samples, 0.02%)</title><rect x="2.9913%" y="517" width="0.0153%" height="15" fill="rgb(215,211,37)" fg:x="15875" fg:w="81"/><text x="3.2413%" y="527.50"></text></g><g><title>InlineTree::ok_to_inline (107 samples, 0.02%)</title><rect x="2.9866%" y="565" width="0.0202%" height="15" fill="rgb(241,128,51)" fg:x="15850" fg:w="107"/><text x="3.2366%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (88 samples, 0.02%)</title><rect x="2.9902%" y="549" width="0.0166%" height="15" fill="rgb(227,165,31)" fg:x="15869" fg:w="88"/><text x="3.2402%" y="559.50"></text></g><g><title>Compile::call_generator (127 samples, 0.02%)</title><rect x="2.9834%" y="581" width="0.0239%" height="15" fill="rgb(228,167,24)" fg:x="15833" fg:w="127"/><text x="3.2334%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (62 samples, 0.01%)</title><rect x="3.0339%" y="469" width="0.0117%" height="15" fill="rgb(228,143,12)" fg:x="16101" fg:w="62"/><text x="3.2839%" y="479.50"></text></g><g><title>Compile::call_generator (77 samples, 0.01%)</title><rect x="3.0324%" y="485" width="0.0145%" height="15" fill="rgb(249,149,8)" fg:x="16093" fg:w="77"/><text x="3.2824%" y="495.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="3.0773%" y="389" width="0.0134%" height="15" fill="rgb(243,35,44)" fg:x="16331" fg:w="71"/><text x="3.3273%" y="399.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="3.0773%" y="373" width="0.0134%" height="15" fill="rgb(246,89,9)" fg:x="16331" fg:w="71"/><text x="3.3273%" y="383.50"></text></g><g><title>Parse::do_call (149 samples, 0.03%)</title><rect x="3.0667%" y="405" width="0.0281%" height="15" fill="rgb(233,213,13)" fg:x="16275" fg:w="149"/><text x="3.3167%" y="415.50"></text></g><g><title>Parse::do_field_access (60 samples, 0.01%)</title><rect x="3.0959%" y="405" width="0.0113%" height="15" fill="rgb(233,141,41)" fg:x="16430" fg:w="60"/><text x="3.3459%" y="415.50"></text></g><g><title>Parse::do_one_block (301 samples, 0.06%)</title><rect x="3.0622%" y="437" width="0.0567%" height="15" fill="rgb(239,167,4)" fg:x="16251" fg:w="301"/><text x="3.3122%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (295 samples, 0.06%)</title><rect x="3.0633%" y="421" width="0.0556%" height="15" fill="rgb(209,217,16)" fg:x="16257" fg:w="295"/><text x="3.3133%" y="431.50"></text></g><g><title>Parse::do_all_blocks (307 samples, 0.06%)</title><rect x="3.0618%" y="453" width="0.0578%" height="15" fill="rgb(219,88,35)" fg:x="16249" fg:w="307"/><text x="3.3118%" y="463.50"></text></g><g><title>ParseGenerator::generate (357 samples, 0.07%)</title><rect x="3.0571%" y="485" width="0.0673%" height="15" fill="rgb(220,193,23)" fg:x="16224" fg:w="357"/><text x="3.3071%" y="495.50"></text></g><g><title>Parse::Parse (357 samples, 0.07%)</title><rect x="3.0571%" y="469" width="0.0673%" height="15" fill="rgb(230,90,52)" fg:x="16224" fg:w="357"/><text x="3.3071%" y="479.50"></text></g><g><title>Parse::do_call (545 samples, 0.10%)</title><rect x="3.0324%" y="501" width="0.1027%" height="15" fill="rgb(252,106,19)" fg:x="16093" fg:w="545"/><text x="3.2824%" y="511.50"></text></g><g><title>Parse::do_field_access (81 samples, 0.02%)</title><rect x="3.1372%" y="501" width="0.0153%" height="15" fill="rgb(206,74,20)" fg:x="16649" fg:w="81"/><text x="3.3872%" y="511.50"></text></g><g><title>Parse::do_one_block (740 samples, 0.14%)</title><rect x="3.0258%" y="533" width="0.1394%" height="15" fill="rgb(230,138,44)" fg:x="16058" fg:w="740"/><text x="3.2758%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (729 samples, 0.14%)</title><rect x="3.0279%" y="517" width="0.1374%" height="15" fill="rgb(235,182,43)" fg:x="16069" fg:w="729"/><text x="3.2779%" y="527.50"></text></g><g><title>Parse::do_all_blocks (742 samples, 0.14%)</title><rect x="3.0258%" y="549" width="0.1398%" height="15" fill="rgb(242,16,51)" fg:x="16058" fg:w="742"/><text x="3.2758%" y="559.50"></text></g><g><title>ParseGenerator::generate (817 samples, 0.15%)</title><rect x="3.0175%" y="581" width="0.1539%" height="15" fill="rgb(248,9,4)" fg:x="16014" fg:w="817"/><text x="3.2675%" y="591.50"></text></g><g><title>Parse::Parse (816 samples, 0.15%)</title><rect x="3.0177%" y="565" width="0.1538%" height="15" fill="rgb(210,31,22)" fg:x="16015" fg:w="816"/><text x="3.2677%" y="575.50"></text></g><g><title>Parse::do_call (75 samples, 0.01%)</title><rect x="3.1758%" y="485" width="0.0141%" height="15" fill="rgb(239,54,39)" fg:x="16854" fg:w="75"/><text x="3.4258%" y="495.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="3.1752%" y="517" width="0.0175%" height="15" fill="rgb(230,99,41)" fg:x="16851" fg:w="93"/><text x="3.4252%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="3.1752%" y="501" width="0.0175%" height="15" fill="rgb(253,106,12)" fg:x="16851" fg:w="93"/><text x="3.4252%" y="511.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="3.1752%" y="533" width="0.0177%" height="15" fill="rgb(213,46,41)" fg:x="16851" fg:w="94"/><text x="3.4252%" y="543.50"></text></g><g><title>ParseGenerator::generate (101 samples, 0.02%)</title><rect x="3.1747%" y="565" width="0.0190%" height="15" fill="rgb(215,133,35)" fg:x="16848" fg:w="101"/><text x="3.4247%" y="575.50"></text></g><g><title>Parse::Parse (101 samples, 0.02%)</title><rect x="3.1747%" y="549" width="0.0190%" height="15" fill="rgb(213,28,5)" fg:x="16848" fg:w="101"/><text x="3.4247%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (136 samples, 0.03%)</title><rect x="3.1715%" y="581" width="0.0256%" height="15" fill="rgb(215,77,49)" fg:x="16831" fg:w="136"/><text x="3.4215%" y="591.50"></text></g><g><title>Parse::do_call (1,161 samples, 0.22%)</title><rect x="2.9834%" y="597" width="0.2188%" height="15" fill="rgb(248,100,22)" fg:x="15833" fg:w="1161"/><text x="3.2334%" y="607.50"></text></g><g><title>Parse::do_put_xxx (54 samples, 0.01%)</title><rect x="3.2135%" y="581" width="0.0102%" height="15" fill="rgb(208,67,9)" fg:x="17054" fg:w="54"/><text x="3.4635%" y="591.50"></text></g><g><title>Parse::do_field_access (112 samples, 0.02%)</title><rect x="3.2037%" y="597" width="0.0211%" height="15" fill="rgb(219,133,21)" fg:x="17002" fg:w="112"/><text x="3.4537%" y="607.50"></text></g><g><title>Parse::do_one_block (1,349 samples, 0.25%)</title><rect x="2.9787%" y="629" width="0.2542%" height="15" fill="rgb(246,46,29)" fg:x="15808" fg:w="1349"/><text x="3.2287%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,344 samples, 0.25%)</title><rect x="2.9796%" y="613" width="0.2533%" height="15" fill="rgb(246,185,52)" fg:x="15813" fg:w="1344"/><text x="3.2296%" y="623.50"></text></g><g><title>Parse::do_all_blocks (1,350 samples, 0.25%)</title><rect x="2.9787%" y="645" width="0.2544%" height="15" fill="rgb(252,136,11)" fg:x="15808" fg:w="1350"/><text x="3.2287%" y="655.50"></text></g><g><title>ParseGenerator::generate (1,356 samples, 0.26%)</title><rect x="2.9780%" y="677" width="0.2555%" height="15" fill="rgb(219,138,53)" fg:x="15804" fg:w="1356"/><text x="3.2280%" y="687.50"></text></g><g><title>Parse::Parse (1,356 samples, 0.26%)</title><rect x="2.9780%" y="661" width="0.2555%" height="15" fill="rgb(211,51,23)" fg:x="15804" fg:w="1356"/><text x="3.2280%" y="671.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="3.2495%" y="469" width="0.0109%" height="15" fill="rgb(247,221,28)" fg:x="17245" fg:w="58"/><text x="3.4995%" y="479.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="3.2495%" y="453" width="0.0109%" height="15" fill="rgb(251,222,45)" fg:x="17245" fg:w="58"/><text x="3.4995%" y="463.50"></text></g><g><title>Parse::do_call (79 samples, 0.01%)</title><rect x="3.2468%" y="485" width="0.0149%" height="15" fill="rgb(217,162,53)" fg:x="17231" fg:w="79"/><text x="3.4968%" y="495.50"></text></g><g><title>Parse::do_one_block (126 samples, 0.02%)</title><rect x="3.2444%" y="517" width="0.0237%" height="15" fill="rgb(229,93,14)" fg:x="17218" fg:w="126"/><text x="3.4944%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (125 samples, 0.02%)</title><rect x="3.2446%" y="501" width="0.0236%" height="15" fill="rgb(209,67,49)" fg:x="17219" fg:w="125"/><text x="3.4946%" y="511.50"></text></g><g><title>Parse::do_all_blocks (129 samples, 0.02%)</title><rect x="3.2442%" y="533" width="0.0243%" height="15" fill="rgb(213,87,29)" fg:x="17217" fg:w="129"/><text x="3.4942%" y="543.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="3.2429%" y="565" width="0.0269%" height="15" fill="rgb(205,151,52)" fg:x="17210" fg:w="143"/><text x="3.4929%" y="575.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="3.2429%" y="549" width="0.0269%" height="15" fill="rgb(253,215,39)" fg:x="17210" fg:w="143"/><text x="3.4929%" y="559.50"></text></g><g><title>Parse::do_call (217 samples, 0.04%)</title><rect x="3.2352%" y="581" width="0.0409%" height="15" fill="rgb(221,220,41)" fg:x="17169" fg:w="217"/><text x="3.4852%" y="591.50"></text></g><g><title>Parse::do_one_block (258 samples, 0.05%)</title><rect x="3.2340%" y="613" width="0.0486%" height="15" fill="rgb(218,133,21)" fg:x="17163" fg:w="258"/><text x="3.4840%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (257 samples, 0.05%)</title><rect x="3.2342%" y="597" width="0.0484%" height="15" fill="rgb(221,193,43)" fg:x="17164" fg:w="257"/><text x="3.4842%" y="607.50"></text></g><g><title>Parse::do_all_blocks (259 samples, 0.05%)</title><rect x="3.2340%" y="629" width="0.0488%" height="15" fill="rgb(240,128,52)" fg:x="17163" fg:w="259"/><text x="3.4840%" y="639.50"></text></g><g><title>ParseGenerator::generate (262 samples, 0.05%)</title><rect x="3.2338%" y="661" width="0.0494%" height="15" fill="rgb(253,114,12)" fg:x="17162" fg:w="262"/><text x="3.4838%" y="671.50"></text></g><g><title>Parse::Parse (262 samples, 0.05%)</title><rect x="3.2338%" y="645" width="0.0494%" height="15" fill="rgb(215,223,47)" fg:x="17162" fg:w="262"/><text x="3.4838%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (306 samples, 0.06%)</title><rect x="3.2335%" y="677" width="0.0577%" height="15" fill="rgb(248,225,23)" fg:x="17160" fg:w="306"/><text x="3.4835%" y="687.50"></text></g><g><title>Parse::do_call (1,854 samples, 0.35%)</title><rect x="2.9435%" y="693" width="0.3493%" height="15" fill="rgb(250,108,0)" fg:x="15621" fg:w="1854"/><text x="3.1935%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,865 samples, 0.35%)</title><rect x="2.9435%" y="741" width="0.3514%" height="15" fill="rgb(228,208,7)" fg:x="15621" fg:w="1865"/><text x="3.1935%" y="751.50"></text></g><g><title>Parse::do_one_block (1,865 samples, 0.35%)</title><rect x="2.9435%" y="725" width="0.3514%" height="15" fill="rgb(244,45,10)" fg:x="15621" fg:w="1865"/><text x="3.1935%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,865 samples, 0.35%)</title><rect x="2.9435%" y="709" width="0.3514%" height="15" fill="rgb(207,125,25)" fg:x="15621" fg:w="1865"/><text x="3.1935%" y="719.50"></text></g><g><title>C2Compiler::compile_method (1,887 samples, 0.36%)</title><rect x="2.9397%" y="805" width="0.3556%" height="15" fill="rgb(210,195,18)" fg:x="15601" fg:w="1887"/><text x="3.1897%" y="815.50"></text></g><g><title>Compile::Compile (1,887 samples, 0.36%)</title><rect x="2.9397%" y="789" width="0.3556%" height="15" fill="rgb(249,80,12)" fg:x="15601" fg:w="1887"/><text x="3.1897%" y="799.50"></text></g><g><title>ParseGenerator::generate (1,867 samples, 0.35%)</title><rect x="2.9435%" y="773" width="0.3518%" height="15" fill="rgb(221,65,9)" fg:x="15621" fg:w="1867"/><text x="3.1935%" y="783.50"></text></g><g><title>Parse::Parse (1,867 samples, 0.35%)</title><rect x="2.9435%" y="757" width="0.3518%" height="15" fill="rgb(235,49,36)" fg:x="15621" fg:w="1867"/><text x="3.1935%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (163 samples, 0.03%)</title><rect x="3.3162%" y="741" width="0.0307%" height="15" fill="rgb(225,32,20)" fg:x="17599" fg:w="163"/><text x="3.5662%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (166 samples, 0.03%)</title><rect x="3.3162%" y="757" width="0.0313%" height="15" fill="rgb(215,141,46)" fg:x="17599" fg:w="166"/><text x="3.5662%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (220 samples, 0.04%)</title><rect x="3.3079%" y="789" width="0.0415%" height="15" fill="rgb(250,160,47)" fg:x="17555" fg:w="220"/><text x="3.5579%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (220 samples, 0.04%)</title><rect x="3.3079%" y="773" width="0.0415%" height="15" fill="rgb(216,222,40)" fg:x="17555" fg:w="220"/><text x="3.5579%" y="783.50"></text></g><g><title>Compile::Code_Gen (342 samples, 0.06%)</title><rect x="3.2958%" y="805" width="0.0644%" height="15" fill="rgb(234,217,39)" fg:x="17491" fg:w="342"/><text x="3.5458%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (58 samples, 0.01%)</title><rect x="3.3493%" y="789" width="0.0109%" height="15" fill="rgb(207,178,40)" fg:x="17775" fg:w="58"/><text x="3.5993%" y="799.50"></text></g><g><title>OopFlow::compute_reach (195 samples, 0.04%)</title><rect x="3.4471%" y="741" width="0.0367%" height="15" fill="rgb(221,136,13)" fg:x="18294" fg:w="195"/><text x="3.6971%" y="751.50"></text></g><g><title>OopFlow::build_oop_map (103 samples, 0.02%)</title><rect x="3.4645%" y="725" width="0.0194%" height="15" fill="rgb(249,199,10)" fg:x="18386" fg:w="103"/><text x="3.7145%" y="735.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (68 samples, 0.01%)</title><rect x="3.4860%" y="741" width="0.0128%" height="15" fill="rgb(249,222,13)" fg:x="18500" fg:w="68"/><text x="3.7360%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (721 samples, 0.14%)</title><rect x="3.3633%" y="757" width="0.1359%" height="15" fill="rgb(244,185,38)" fg:x="17849" fg:w="721"/><text x="3.6133%" y="767.50"></text></g><g><title>Compile::scratch_emit_size (154 samples, 0.03%)</title><rect x="3.5325%" y="725" width="0.0290%" height="15" fill="rgb(236,202,9)" fg:x="18747" fg:w="154"/><text x="3.7825%" y="735.50"></text></g><g><title>Compile::init_buffer (356 samples, 0.07%)</title><rect x="3.4992%" y="757" width="0.0671%" height="15" fill="rgb(250,229,37)" fg:x="18570" fg:w="356"/><text x="3.7492%" y="767.50"></text></g><g><title>Compile::shorten_branches (307 samples, 0.06%)</title><rect x="3.5084%" y="741" width="0.0578%" height="15" fill="rgb(206,174,23)" fg:x="18619" fg:w="307"/><text x="3.7584%" y="751.50"></text></g><g><title>Compile::Output (1,094 samples, 0.21%)</title><rect x="3.3608%" y="773" width="0.2061%" height="15" fill="rgb(211,33,43)" fg:x="17836" fg:w="1094"/><text x="3.6108%" y="783.50"></text></g><g><title>Compile::Process_OopMap_Node (209 samples, 0.04%)</title><rect x="3.5971%" y="757" width="0.0394%" height="15" fill="rgb(245,58,50)" fg:x="19090" fg:w="209"/><text x="3.8471%" y="767.50"></text></g><g><title>Compile::fill_buffer (506 samples, 0.10%)</title><rect x="3.5674%" y="773" width="0.0953%" height="15" fill="rgb(244,68,36)" fg:x="18932" fg:w="506"/><text x="3.8174%" y="783.50"></text></g><g><title>Matcher::find_shared (344 samples, 0.06%)</title><rect x="3.6768%" y="757" width="0.0648%" height="15" fill="rgb(232,229,15)" fg:x="19513" fg:w="344"/><text x="3.9268%" y="767.50"></text></g><g><title>Arena::contains (488 samples, 0.09%)</title><rect x="3.8052%" y="741" width="0.0920%" height="15" fill="rgb(254,30,23)" fg:x="20194" fg:w="488"/><text x="4.0552%" y="751.50"></text></g><g><title>Matcher::match_tree (104 samples, 0.02%)</title><rect x="3.9097%" y="725" width="0.0196%" height="15" fill="rgb(235,160,14)" fg:x="20749" fg:w="104"/><text x="4.1597%" y="735.50"></text></g><g><title>Matcher::match_sfpt (145 samples, 0.03%)</title><rect x="3.9050%" y="741" width="0.0273%" height="15" fill="rgb(212,155,44)" fg:x="20724" fg:w="145"/><text x="4.1550%" y="751.50"></text></g><g><title>Matcher::Label_Root (109 samples, 0.02%)</title><rect x="3.9962%" y="693" width="0.0205%" height="15" fill="rgb(226,2,50)" fg:x="21208" fg:w="109"/><text x="4.2462%" y="703.50"></text></g><g><title>State::DFA (58 samples, 0.01%)</title><rect x="4.0171%" y="693" width="0.0109%" height="15" fill="rgb(234,177,6)" fg:x="21319" fg:w="58"/><text x="4.2671%" y="703.50"></text></g><g><title>Matcher::Label_Root (232 samples, 0.04%)</title><rect x="3.9857%" y="709" width="0.0437%" height="15" fill="rgb(217,24,9)" fg:x="21152" fg:w="232"/><text x="4.2357%" y="719.50"></text></g><g><title>Matcher::Label_Root (396 samples, 0.07%)</title><rect x="3.9710%" y="725" width="0.0746%" height="15" fill="rgb(220,13,46)" fg:x="21074" fg:w="396"/><text x="4.2210%" y="735.50"></text></g><g><title>Matcher::ReduceInst_Interior (55 samples, 0.01%)</title><rect x="4.0554%" y="677" width="0.0104%" height="15" fill="rgb(239,221,27)" fg:x="21522" fg:w="55"/><text x="4.3054%" y="687.50"></text></g><g><title>Matcher::ReduceInst (81 samples, 0.02%)</title><rect x="4.0543%" y="693" width="0.0153%" height="15" fill="rgb(222,198,25)" fg:x="21516" fg:w="81"/><text x="4.3043%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (150 samples, 0.03%)</title><rect x="4.0514%" y="709" width="0.0283%" height="15" fill="rgb(211,99,13)" fg:x="21501" fg:w="150"/><text x="4.3014%" y="719.50"></text></g><g><title>Matcher::ReduceInst (288 samples, 0.05%)</title><rect x="4.0456%" y="725" width="0.0543%" height="15" fill="rgb(232,111,31)" fg:x="21470" fg:w="288"/><text x="4.2956%" y="735.50"></text></g><g><title>Matcher::match_tree (900 samples, 0.17%)</title><rect x="3.9324%" y="741" width="0.1696%" height="15" fill="rgb(245,82,37)" fg:x="20869" fg:w="900"/><text x="4.1824%" y="751.50"></text></g><g><title>Node::clone (71 samples, 0.01%)</title><rect x="4.1034%" y="741" width="0.0134%" height="15" fill="rgb(227,149,46)" fg:x="21777" fg:w="71"/><text x="4.3534%" y="751.50"></text></g><g><title>Matcher::xform (2,028 samples, 0.38%)</title><rect x="3.7439%" y="757" width="0.3821%" height="15" fill="rgb(218,36,50)" fg:x="19869" fg:w="2028"/><text x="3.9939%" y="767.50"></text></g><g><title>Matcher::match (2,459 samples, 0.46%)</title><rect x="3.6653%" y="773" width="0.4634%" height="15" fill="rgb(226,80,48)" fg:x="19452" fg:w="2459"/><text x="3.9153%" y="783.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (145 samples, 0.03%)</title><rect x="4.1289%" y="773" width="0.0273%" height="15" fill="rgb(238,224,15)" fg:x="21912" fg:w="145"/><text x="4.3789%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (127 samples, 0.02%)</title><rect x="4.1568%" y="757" width="0.0239%" height="15" fill="rgb(241,136,10)" fg:x="22060" fg:w="127"/><text x="4.4068%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (131 samples, 0.02%)</title><rect x="4.1562%" y="773" width="0.0247%" height="15" fill="rgb(208,32,45)" fg:x="22057" fg:w="131"/><text x="4.4062%" y="783.50"></text></g><g><title>PhaseCFG::build_dominator_tree (99 samples, 0.02%)</title><rect x="4.1815%" y="757" width="0.0187%" height="15" fill="rgb(207,135,9)" fg:x="22191" fg:w="99"/><text x="4.4315%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (58 samples, 0.01%)</title><rect x="4.2001%" y="757" width="0.0109%" height="15" fill="rgb(206,86,44)" fg:x="22290" fg:w="58"/><text x="4.4501%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (60 samples, 0.01%)</title><rect x="4.2755%" y="741" width="0.0113%" height="15" fill="rgb(245,177,15)" fg:x="22690" fg:w="60"/><text x="4.5255%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (229 samples, 0.04%)</title><rect x="4.3158%" y="725" width="0.0432%" height="15" fill="rgb(206,64,50)" fg:x="22904" fg:w="229"/><text x="4.5658%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (127 samples, 0.02%)</title><rect x="4.3590%" y="725" width="0.0239%" height="15" fill="rgb(234,36,40)" fg:x="23133" fg:w="127"/><text x="4.6090%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (149 samples, 0.03%)</title><rect x="4.3829%" y="725" width="0.0281%" height="15" fill="rgb(213,64,8)" fg:x="23260" fg:w="149"/><text x="4.6329%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (65 samples, 0.01%)</title><rect x="4.4110%" y="725" width="0.0122%" height="15" fill="rgb(210,75,36)" fg:x="23409" fg:w="65"/><text x="4.6610%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (696 samples, 0.13%)</title><rect x="4.2930%" y="741" width="0.1311%" height="15" fill="rgb(229,88,21)" fg:x="22783" fg:w="696"/><text x="4.5430%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (87 samples, 0.02%)</title><rect x="4.4654%" y="725" width="0.0164%" height="15" fill="rgb(252,204,47)" fg:x="23698" fg:w="87"/><text x="4.7154%" y="735.50"></text></g><g><title>PhaseCFG::select (123 samples, 0.02%)</title><rect x="4.4865%" y="725" width="0.0232%" height="15" fill="rgb(208,77,27)" fg:x="23810" fg:w="123"/><text x="4.7365%" y="735.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (58 samples, 0.01%)</title><rect x="4.5097%" y="725" width="0.0109%" height="15" fill="rgb(221,76,26)" fg:x="23933" fg:w="58"/><text x="4.7597%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (563 samples, 0.11%)</title><rect x="4.4242%" y="741" width="0.1061%" height="15" fill="rgb(225,139,18)" fg:x="23479" fg:w="563"/><text x="4.6742%" y="751.50"></text></g><g><title>RegMask::Size (78 samples, 0.01%)</title><rect x="4.5864%" y="725" width="0.0147%" height="15" fill="rgb(230,137,11)" fg:x="24340" fg:w="78"/><text x="4.8364%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (421 samples, 0.08%)</title><rect x="4.5363%" y="741" width="0.0793%" height="15" fill="rgb(212,28,1)" fg:x="24074" fg:w="421"/><text x="4.7863%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (92 samples, 0.02%)</title><rect x="4.6156%" y="741" width="0.0173%" height="15" fill="rgb(248,164,17)" fg:x="24495" fg:w="92"/><text x="4.8656%" y="751.50"></text></g><g><title>IndexSet::initialize (118 samples, 0.02%)</title><rect x="4.6431%" y="725" width="0.0222%" height="15" fill="rgb(222,171,42)" fg:x="24641" fg:w="118"/><text x="4.8931%" y="735.50"></text></g><g><title>PhaseIFG::init (208 samples, 0.04%)</title><rect x="4.6329%" y="741" width="0.0392%" height="15" fill="rgb(243,84,45)" fg:x="24587" fg:w="208"/><text x="4.8829%" y="751.50"></text></g><g><title>IndexSet::initialize (58 samples, 0.01%)</title><rect x="4.7136%" y="725" width="0.0109%" height="15" fill="rgb(252,49,23)" fg:x="25015" fg:w="58"/><text x="4.9636%" y="735.50"></text></g><g><title>PhaseLive::add_livein (166 samples, 0.03%)</title><rect x="4.7251%" y="725" width="0.0313%" height="15" fill="rgb(215,19,7)" fg:x="25076" fg:w="166"/><text x="4.9751%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (65 samples, 0.01%)</title><rect x="4.7441%" y="709" width="0.0122%" height="15" fill="rgb(238,81,41)" fg:x="25177" fg:w="65"/><text x="4.9941%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (55 samples, 0.01%)</title><rect x="4.7871%" y="709" width="0.0104%" height="15" fill="rgb(210,199,37)" fg:x="25405" fg:w="55"/><text x="5.0371%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (91 samples, 0.02%)</title><rect x="4.8016%" y="709" width="0.0171%" height="15" fill="rgb(244,192,49)" fg:x="25482" fg:w="91"/><text x="5.0516%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (334 samples, 0.06%)</title><rect x="4.7564%" y="725" width="0.0629%" height="15" fill="rgb(226,211,11)" fg:x="25242" fg:w="334"/><text x="5.0064%" y="735.50"></text></g><g><title>PhaseLive::compute (786 samples, 0.15%)</title><rect x="4.6721%" y="741" width="0.1481%" height="15" fill="rgb(236,162,54)" fg:x="24795" fg:w="786"/><text x="4.9221%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,422 samples, 0.64%)</title><rect x="4.1809%" y="773" width="0.6448%" height="15" fill="rgb(220,229,9)" fg:x="22188" fg:w="3422"/><text x="4.4309%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (3,262 samples, 0.61%)</title><rect x="4.2110%" y="757" width="0.6147%" height="15" fill="rgb(250,87,22)" fg:x="22348" fg:w="3262"/><text x="4.4610%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (61 samples, 0.01%)</title><rect x="4.8297%" y="773" width="0.0115%" height="15" fill="rgb(239,43,17)" fg:x="25631" fg:w="61"/><text x="5.0797%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,012 samples, 0.19%)</title><rect x="4.8677%" y="757" width="0.1907%" height="15" fill="rgb(231,177,25)" fg:x="25833" fg:w="1012"/><text x="5.1177%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (299 samples, 0.06%)</title><rect x="5.1668%" y="741" width="0.0563%" height="15" fill="rgb(219,179,1)" fg:x="27420" fg:w="299"/><text x="5.4168%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (169 samples, 0.03%)</title><rect x="5.2231%" y="741" width="0.0318%" height="15" fill="rgb(238,219,53)" fg:x="27719" fg:w="169"/><text x="5.4731%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (83 samples, 0.02%)</title><rect x="5.3215%" y="725" width="0.0156%" height="15" fill="rgb(232,167,36)" fg:x="28241" fg:w="83"/><text x="5.5715%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (68 samples, 0.01%)</title><rect x="5.3371%" y="725" width="0.0128%" height="15" fill="rgb(244,19,51)" fg:x="28324" fg:w="68"/><text x="5.5871%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (405 samples, 0.08%)</title><rect x="5.3499%" y="725" width="0.0763%" height="15" fill="rgb(224,6,22)" fg:x="28392" fg:w="405"/><text x="5.5999%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (910 samples, 0.17%)</title><rect x="5.2566%" y="741" width="0.1715%" height="15" fill="rgb(224,145,5)" fg:x="27897" fg:w="910"/><text x="5.5066%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (118 samples, 0.02%)</title><rect x="5.4281%" y="741" width="0.0222%" height="15" fill="rgb(234,130,49)" fg:x="28807" fg:w="118"/><text x="5.6781%" y="751.50"></text></g><g><title>PhaseChaitin::Select (2,084 samples, 0.39%)</title><rect x="5.0584%" y="757" width="0.3927%" height="15" fill="rgb(254,6,2)" fg:x="26845" fg:w="2084"/><text x="5.3084%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (343 samples, 0.06%)</title><rect x="5.5029%" y="741" width="0.0646%" height="15" fill="rgb(208,96,46)" fg:x="29204" fg:w="343"/><text x="5.7529%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (59 samples, 0.01%)</title><rect x="5.6491%" y="725" width="0.0111%" height="15" fill="rgb(239,3,39)" fg:x="29980" fg:w="59"/><text x="5.8991%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (464 samples, 0.09%)</title><rect x="5.6603%" y="725" width="0.0874%" height="15" fill="rgb(233,210,1)" fg:x="30039" fg:w="464"/><text x="5.9103%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,575 samples, 0.30%)</title><rect x="5.4511%" y="757" width="0.2968%" height="15" fill="rgb(244,137,37)" fg:x="28929" fg:w="1575"/><text x="5.7011%" y="767.50"></text></g><g><title>PhaseIFG::remove_node (957 samples, 0.18%)</title><rect x="5.5676%" y="741" width="0.1803%" height="15" fill="rgb(240,136,2)" fg:x="29547" fg:w="957"/><text x="5.8176%" y="751.50"></text></g><g><title>MachNode::rematerialize (160 samples, 0.03%)</title><rect x="6.2197%" y="741" width="0.0301%" height="15" fill="rgb(239,18,37)" fg:x="33008" fg:w="160"/><text x="6.4697%" y="751.50"></text></g><g><title>Node::rematerialize (130 samples, 0.02%)</title><rect x="6.2566%" y="741" width="0.0245%" height="15" fill="rgb(218,185,22)" fg:x="33204" fg:w="130"/><text x="6.5066%" y="751.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (90 samples, 0.02%)</title><rect x="6.3132%" y="725" width="0.0170%" height="15" fill="rgb(225,218,4)" fg:x="33504" fg:w="90"/><text x="6.5632%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (177 samples, 0.03%)</title><rect x="6.3015%" y="741" width="0.0334%" height="15" fill="rgb(230,182,32)" fg:x="33442" fg:w="177"/><text x="6.5515%" y="751.50"></text></g><g><title>PhaseChaitin::Split (3,181 samples, 0.60%)</title><rect x="5.7479%" y="757" width="0.5994%" height="15" fill="rgb(242,56,43)" fg:x="30504" fg:w="3181"/><text x="5.9979%" y="767.50"></text></g><g><title>IndexSet::IndexSet (234 samples, 0.04%)</title><rect x="6.5031%" y="741" width="0.0441%" height="15" fill="rgb(233,99,24)" fg:x="34512" fg:w="234"/><text x="6.7531%" y="751.50"></text></g><g><title>MachNode::rematerialize (70 samples, 0.01%)</title><rect x="6.5487%" y="741" width="0.0132%" height="15" fill="rgb(234,209,42)" fg:x="34754" fg:w="70"/><text x="6.7987%" y="751.50"></text></g><g><title>MachNode::rematerialize (91 samples, 0.02%)</title><rect x="6.6516%" y="725" width="0.0171%" height="15" fill="rgb(227,7,12)" fg:x="35300" fg:w="91"/><text x="6.9016%" y="735.50"></text></g><g><title>RegMask::is_UP (65 samples, 0.01%)</title><rect x="6.6859%" y="709" width="0.0122%" height="15" fill="rgb(245,203,43)" fg:x="35482" fg:w="65"/><text x="6.9359%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (144 samples, 0.03%)</title><rect x="6.6712%" y="725" width="0.0271%" height="15" fill="rgb(238,205,33)" fg:x="35404" fg:w="144"/><text x="6.9212%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (713 samples, 0.13%)</title><rect x="6.5647%" y="741" width="0.1344%" height="15" fill="rgb(231,56,7)" fg:x="34839" fg:w="713"/><text x="6.8147%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (133 samples, 0.03%)</title><rect x="6.7537%" y="725" width="0.0251%" height="15" fill="rgb(244,186,29)" fg:x="35842" fg:w="133"/><text x="7.0037%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (426 samples, 0.08%)</title><rect x="6.7140%" y="741" width="0.0803%" height="15" fill="rgb(234,111,31)" fg:x="35631" fg:w="426"/><text x="6.9640%" y="751.50"></text></g><g><title>RegMask::is_UP (82 samples, 0.02%)</title><rect x="6.7788%" y="725" width="0.0155%" height="15" fill="rgb(241,149,10)" fg:x="35975" fg:w="82"/><text x="7.0288%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (123 samples, 0.02%)</title><rect x="7.1686%" y="725" width="0.0232%" height="15" fill="rgb(249,206,44)" fg:x="38044" fg:w="123"/><text x="7.4186%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (841 samples, 0.16%)</title><rect x="7.1950%" y="725" width="0.1585%" height="15" fill="rgb(251,153,30)" fg:x="38184" fg:w="841"/><text x="7.4450%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,971 samples, 0.56%)</title><rect x="6.7942%" y="741" width="0.5598%" height="15" fill="rgb(239,152,38)" fg:x="36057" fg:w="2971"/><text x="7.0442%" y="751.50"></text></g><g><title>PhaseChaitin::lower_pressure (87 samples, 0.02%)</title><rect x="7.3541%" y="741" width="0.0164%" height="15" fill="rgb(249,139,47)" fg:x="39028" fg:w="87"/><text x="7.6041%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (204 samples, 0.04%)</title><rect x="7.4549%" y="725" width="0.0384%" height="15" fill="rgb(244,64,35)" fg:x="39563" fg:w="204"/><text x="7.7049%" y="735.50"></text></g><g><title>RegMask::Size (286 samples, 0.05%)</title><rect x="7.4933%" y="725" width="0.0539%" height="15" fill="rgb(216,46,15)" fg:x="39767" fg:w="286"/><text x="7.7433%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (623 samples, 0.12%)</title><rect x="7.5472%" y="725" width="0.1174%" height="15" fill="rgb(250,74,19)" fg:x="40053" fg:w="623"/><text x="7.7972%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,569 samples, 0.30%)</title><rect x="7.3705%" y="741" width="0.2956%" height="15" fill="rgb(249,42,33)" fg:x="39115" fg:w="1569"/><text x="7.6205%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,072 samples, 1.33%)</title><rect x="6.3478%" y="757" width="1.3326%" height="15" fill="rgb(242,149,17)" fg:x="33688" fg:w="7072"/><text x="6.5978%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (74 samples, 0.01%)</title><rect x="7.7528%" y="725" width="0.0139%" height="15" fill="rgb(244,29,21)" fg:x="41144" fg:w="74"/><text x="8.0028%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (326 samples, 0.06%)</title><rect x="7.7070%" y="741" width="0.0614%" height="15" fill="rgb(220,130,37)" fg:x="40901" fg:w="326"/><text x="7.9570%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (471 samples, 0.09%)</title><rect x="7.6804%" y="757" width="0.0888%" height="15" fill="rgb(211,67,2)" fg:x="40760" fg:w="471"/><text x="7.9304%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (103 samples, 0.02%)</title><rect x="7.7692%" y="757" width="0.0194%" height="15" fill="rgb(235,68,52)" fg:x="41231" fg:w="103"/><text x="8.0192%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (101 samples, 0.02%)</title><rect x="7.7952%" y="757" width="0.0190%" height="15" fill="rgb(246,142,3)" fg:x="41369" fg:w="101"/><text x="8.0452%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (60 samples, 0.01%)</title><rect x="7.8144%" y="757" width="0.0113%" height="15" fill="rgb(241,25,7)" fg:x="41471" fg:w="60"/><text x="8.0644%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (65 samples, 0.01%)</title><rect x="8.1489%" y="741" width="0.0122%" height="15" fill="rgb(242,119,39)" fg:x="43246" fg:w="65"/><text x="8.3989%" y="751.50"></text></g><g><title>MachNode::ideal_reg (67 samples, 0.01%)</title><rect x="8.1617%" y="741" width="0.0126%" height="15" fill="rgb(241,98,45)" fg:x="43314" fg:w="67"/><text x="8.4117%" y="751.50"></text></g><g><title>RegMask::Size (1,066 samples, 0.20%)</title><rect x="8.2018%" y="741" width="0.2009%" height="15" fill="rgb(254,28,30)" fg:x="43527" fg:w="1066"/><text x="8.4518%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (167 samples, 0.03%)</title><rect x="8.4027%" y="741" width="0.0315%" height="15" fill="rgb(241,142,54)" fg:x="44593" fg:w="167"/><text x="8.6527%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (86 samples, 0.02%)</title><rect x="8.4341%" y="741" width="0.0162%" height="15" fill="rgb(222,85,15)" fg:x="44760" fg:w="86"/><text x="8.6841%" y="751.50"></text></g><g><title>RegMask::is_bound1 (140 samples, 0.03%)</title><rect x="8.4503%" y="741" width="0.0264%" height="15" fill="rgb(210,85,47)" fg:x="44846" fg:w="140"/><text x="8.7003%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (84 samples, 0.02%)</title><rect x="8.4767%" y="741" width="0.0158%" height="15" fill="rgb(224,206,25)" fg:x="44986" fg:w="84"/><text x="8.7267%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,675 samples, 0.69%)</title><rect x="7.8257%" y="757" width="0.6925%" height="15" fill="rgb(243,201,19)" fg:x="41531" fg:w="3675"/><text x="8.0757%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (465 samples, 0.09%)</title><rect x="8.5184%" y="757" width="0.0876%" height="15" fill="rgb(236,59,4)" fg:x="45207" fg:w="465"/><text x="8.7684%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (89 samples, 0.02%)</title><rect x="9.2207%" y="725" width="0.0168%" height="15" fill="rgb(254,179,45)" fg:x="48934" fg:w="89"/><text x="9.4707%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (1,780 samples, 0.34%)</title><rect x="8.9094%" y="741" width="0.3354%" height="15" fill="rgb(226,14,10)" fg:x="47282" fg:w="1780"/><text x="9.1594%" y="751.50"></text></g><g><title>[libc-2.31.so] (58 samples, 0.01%)</title><rect x="9.2523%" y="741" width="0.0109%" height="15" fill="rgb(244,27,41)" fg:x="49102" fg:w="58"/><text x="9.5023%" y="751.50"></text></g><g><title>find_lowest_bit (329 samples, 0.06%)</title><rect x="9.2638%" y="741" width="0.0620%" height="15" fill="rgb(235,35,32)" fg:x="49163" fg:w="329"/><text x="9.5138%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,826 samples, 0.72%)</title><rect x="8.6060%" y="757" width="0.7209%" height="15" fill="rgb(218,68,31)" fg:x="45672" fg:w="3826"/><text x="8.8560%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (189 samples, 0.04%)</title><rect x="9.3271%" y="757" width="0.0356%" height="15" fill="rgb(207,120,37)" fg:x="49499" fg:w="189"/><text x="9.5771%" y="767.50"></text></g><g><title>PhaseCoalesce::combine_these_two (58 samples, 0.01%)</title><rect x="9.3784%" y="725" width="0.0109%" height="15" fill="rgb(227,98,0)" fg:x="49771" fg:w="58"/><text x="9.6284%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (140 samples, 0.03%)</title><rect x="9.3635%" y="741" width="0.0264%" height="15" fill="rgb(207,7,3)" fg:x="49692" fg:w="140"/><text x="9.6135%" y="751.50"></text></g><g><title>PhaseCFG::is_uncommon (131 samples, 0.02%)</title><rect x="9.3995%" y="725" width="0.0247%" height="15" fill="rgb(206,98,19)" fg:x="49883" fg:w="131"/><text x="9.6495%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (68 samples, 0.01%)</title><rect x="9.5709%" y="693" width="0.0128%" height="15" fill="rgb(217,5,26)" fg:x="50793" fg:w="68"/><text x="9.8209%" y="703.50"></text></g><g><title>IndexSet::lrg_union (810 samples, 0.15%)</title><rect x="9.4321%" y="709" width="0.1526%" height="15" fill="rgb(235,190,38)" fg:x="50056" fg:w="810"/><text x="9.6821%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (76 samples, 0.01%)</title><rect x="9.9425%" y="693" width="0.0143%" height="15" fill="rgb(247,86,24)" fg:x="52765" fg:w="76"/><text x="10.1925%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (1,961 samples, 0.37%)</title><rect x="9.5896%" y="709" width="0.3695%" height="15" fill="rgb(205,101,16)" fg:x="50892" fg:w="1961"/><text x="9.8396%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (327 samples, 0.06%)</title><rect x="9.9591%" y="709" width="0.0616%" height="15" fill="rgb(246,168,33)" fg:x="52853" fg:w="327"/><text x="10.2091%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (3,190 samples, 0.60%)</title><rect x="9.4242%" y="725" width="0.6011%" height="15" fill="rgb(231,114,1)" fg:x="50014" fg:w="3190"/><text x="9.6742%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (3,518 samples, 0.66%)</title><rect x="9.3627%" y="757" width="0.6629%" height="15" fill="rgb(207,184,53)" fg:x="49688" fg:w="3518"/><text x="9.6127%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (3,374 samples, 0.64%)</title><rect x="9.3899%" y="741" width="0.6358%" height="15" fill="rgb(224,95,51)" fg:x="49832" fg:w="3374"/><text x="9.6399%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (515 samples, 0.10%)</title><rect x="10.1166%" y="741" width="0.0970%" height="15" fill="rgb(212,188,45)" fg:x="53689" fg:w="515"/><text x="10.3666%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (997 samples, 0.19%)</title><rect x="10.0260%" y="757" width="0.1879%" height="15" fill="rgb(223,154,38)" fg:x="53208" fg:w="997"/><text x="10.2760%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (78 samples, 0.01%)</title><rect x="10.2955%" y="741" width="0.0147%" height="15" fill="rgb(251,22,52)" fg:x="54638" fg:w="78"/><text x="10.5455%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (424 samples, 0.08%)</title><rect x="10.3102%" y="741" width="0.0799%" height="15" fill="rgb(229,209,22)" fg:x="54716" fg:w="424"/><text x="10.5602%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (936 samples, 0.18%)</title><rect x="10.2139%" y="757" width="0.1764%" height="15" fill="rgb(234,138,34)" fg:x="54205" fg:w="936"/><text x="10.4639%" y="767.50"></text></g><g><title>IndexSet::initialize (207 samples, 0.04%)</title><rect x="10.4112%" y="741" width="0.0390%" height="15" fill="rgb(212,95,11)" fg:x="55252" fg:w="207"/><text x="10.6612%" y="751.50"></text></g><g><title>[libc-2.31.so] (69 samples, 0.01%)</title><rect x="10.4502%" y="741" width="0.0130%" height="15" fill="rgb(240,179,47)" fg:x="55459" fg:w="69"/><text x="10.7002%" y="751.50"></text></g><g><title>PhaseIFG::init (388 samples, 0.07%)</title><rect x="10.3902%" y="757" width="0.0731%" height="15" fill="rgb(240,163,11)" fg:x="55141" fg:w="388"/><text x="10.6402%" y="767.50"></text></g><g><title>IndexSet::initialize (116 samples, 0.02%)</title><rect x="10.7059%" y="741" width="0.0219%" height="15" fill="rgb(236,37,12)" fg:x="56816" fg:w="116"/><text x="10.9559%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (178 samples, 0.03%)</title><rect x="10.8538%" y="725" width="0.0335%" height="15" fill="rgb(232,164,16)" fg:x="57601" fg:w="178"/><text x="11.1038%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (254 samples, 0.05%)</title><rect x="10.8958%" y="725" width="0.0479%" height="15" fill="rgb(244,205,15)" fg:x="57824" fg:w="254"/><text x="11.1458%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,162 samples, 0.22%)</title><rect x="10.7277%" y="741" width="0.2190%" height="15" fill="rgb(223,117,47)" fg:x="56932" fg:w="1162"/><text x="10.9777%" y="751.50"></text></g><g><title>PhaseLive::compute (2,573 samples, 0.48%)</title><rect x="10.4647%" y="757" width="0.4848%" height="15" fill="rgb(244,107,35)" fg:x="55536" fg:w="2573"/><text x="10.7147%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (32,518 samples, 6.13%)</title><rect x="4.8445%" y="773" width="6.1274%" height="15" fill="rgb(205,140,8)" fg:x="25710" fg:w="32518"/><text x="5.0945%" y="783.50">PhaseCha..</text></g><g><title>Compile::Code_Gen (40,447 samples, 7.62%)</title><rect x="3.3603%" y="789" width="7.6214%" height="15" fill="rgb(228,84,46)" fg:x="17833" fg:w="40447"/><text x="3.6103%" y="799.50">Compile::C..</text></g><g><title>Parse::do_call (83 samples, 0.02%)</title><rect x="11.0245%" y="133" width="0.0156%" height="15" fill="rgb(254,188,9)" fg:x="58507" fg:w="83"/><text x="11.2745%" y="143.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.03%)</title><rect x="11.0209%" y="165" width="0.0288%" height="15" fill="rgb(206,112,54)" fg:x="58488" fg:w="153"/><text x="11.2709%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.03%)</title><rect x="11.0215%" y="149" width="0.0283%" height="15" fill="rgb(216,84,49)" fg:x="58491" fg:w="150"/><text x="11.2715%" y="159.50"></text></g><g><title>Parse::do_all_blocks (157 samples, 0.03%)</title><rect x="11.0209%" y="181" width="0.0296%" height="15" fill="rgb(214,194,35)" fg:x="58488" fg:w="157"/><text x="11.2709%" y="191.50"></text></g><g><title>ParseGenerator::generate (180 samples, 0.03%)</title><rect x="11.0185%" y="213" width="0.0339%" height="15" fill="rgb(249,28,3)" fg:x="58475" fg:w="180"/><text x="11.2685%" y="223.50"></text></g><g><title>Parse::Parse (179 samples, 0.03%)</title><rect x="11.0187%" y="197" width="0.0337%" height="15" fill="rgb(222,56,52)" fg:x="58476" fg:w="179"/><text x="11.2687%" y="207.50"></text></g><g><title>Parse::do_call (238 samples, 0.04%)</title><rect x="11.0109%" y="229" width="0.0448%" height="15" fill="rgb(245,217,50)" fg:x="58435" fg:w="238"/><text x="11.2609%" y="239.50"></text></g><g><title>Parse::do_one_block (318 samples, 0.06%)</title><rect x="11.0094%" y="261" width="0.0599%" height="15" fill="rgb(213,201,24)" fg:x="58427" fg:w="318"/><text x="11.2594%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (316 samples, 0.06%)</title><rect x="11.0098%" y="245" width="0.0595%" height="15" fill="rgb(248,116,28)" fg:x="58429" fg:w="316"/><text x="11.2598%" y="255.50"></text></g><g><title>Parse::do_all_blocks (324 samples, 0.06%)</title><rect x="11.0089%" y="277" width="0.0611%" height="15" fill="rgb(219,72,43)" fg:x="58424" fg:w="324"/><text x="11.2589%" y="287.50"></text></g><g><title>ParseGenerator::generate (360 samples, 0.07%)</title><rect x="11.0058%" y="309" width="0.0678%" height="15" fill="rgb(209,138,14)" fg:x="58408" fg:w="360"/><text x="11.2558%" y="319.50"></text></g><g><title>Parse::Parse (360 samples, 0.07%)</title><rect x="11.0058%" y="293" width="0.0678%" height="15" fill="rgb(222,18,33)" fg:x="58408" fg:w="360"/><text x="11.2558%" y="303.50"></text></g><g><title>Parse::do_call (446 samples, 0.08%)</title><rect x="10.9974%" y="325" width="0.0840%" height="15" fill="rgb(213,199,7)" fg:x="58363" fg:w="446"/><text x="11.2474%" y="335.50"></text></g><g><title>ParseGenerator::generate (517 samples, 0.10%)</title><rect x="10.9951%" y="405" width="0.0974%" height="15" fill="rgb(250,110,10)" fg:x="58351" fg:w="517"/><text x="11.2451%" y="415.50"></text></g><g><title>Parse::Parse (517 samples, 0.10%)</title><rect x="10.9951%" y="389" width="0.0974%" height="15" fill="rgb(248,123,6)" fg:x="58351" fg:w="517"/><text x="11.2451%" y="399.50"></text></g><g><title>Parse::do_all_blocks (512 samples, 0.10%)</title><rect x="10.9960%" y="373" width="0.0965%" height="15" fill="rgb(206,91,31)" fg:x="58356" fg:w="512"/><text x="11.2460%" y="383.50"></text></g><g><title>Parse::do_one_block (512 samples, 0.10%)</title><rect x="10.9960%" y="357" width="0.0965%" height="15" fill="rgb(211,154,13)" fg:x="58356" fg:w="512"/><text x="11.2460%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (510 samples, 0.10%)</title><rect x="10.9964%" y="341" width="0.0961%" height="15" fill="rgb(225,148,7)" fg:x="58358" fg:w="510"/><text x="11.2464%" y="351.50"></text></g><g><title>Parse::do_call (603 samples, 0.11%)</title><rect x="10.9870%" y="421" width="0.1136%" height="15" fill="rgb(220,160,43)" fg:x="58308" fg:w="603"/><text x="11.2370%" y="431.50"></text></g><g><title>ParseGenerator::generate (614 samples, 0.12%)</title><rect x="10.9870%" y="501" width="0.1157%" height="15" fill="rgb(213,52,39)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="511.50"></text></g><g><title>Parse::Parse (614 samples, 0.12%)</title><rect x="10.9870%" y="485" width="0.1157%" height="15" fill="rgb(243,137,7)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="495.50"></text></g><g><title>Parse::do_all_blocks (614 samples, 0.12%)</title><rect x="10.9870%" y="469" width="0.1157%" height="15" fill="rgb(230,79,13)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="479.50"></text></g><g><title>Parse::do_one_block (614 samples, 0.12%)</title><rect x="10.9870%" y="453" width="0.1157%" height="15" fill="rgb(247,105,23)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (614 samples, 0.12%)</title><rect x="10.9870%" y="437" width="0.1157%" height="15" fill="rgb(223,179,41)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="447.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="11.1048%" y="309" width="0.0138%" height="15" fill="rgb(218,9,34)" fg:x="58933" fg:w="73"/><text x="11.3548%" y="319.50"></text></g><g><title>ParseGenerator::generate (89 samples, 0.02%)</title><rect x="11.1040%" y="389" width="0.0168%" height="15" fill="rgb(222,106,8)" fg:x="58929" fg:w="89"/><text x="11.3540%" y="399.50"></text></g><g><title>Parse::Parse (89 samples, 0.02%)</title><rect x="11.1040%" y="373" width="0.0168%" height="15" fill="rgb(211,220,0)" fg:x="58929" fg:w="89"/><text x="11.3540%" y="383.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.02%)</title><rect x="11.1042%" y="357" width="0.0166%" height="15" fill="rgb(229,52,16)" fg:x="58930" fg:w="88"/><text x="11.3542%" y="367.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.02%)</title><rect x="11.1042%" y="341" width="0.0166%" height="15" fill="rgb(212,155,18)" fg:x="58930" fg:w="88"/><text x="11.3542%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="11.1044%" y="325" width="0.0164%" height="15" fill="rgb(242,21,14)" fg:x="58931" fg:w="87"/><text x="11.3544%" y="335.50"></text></g><g><title>Parse::do_call (108 samples, 0.02%)</title><rect x="11.1029%" y="405" width="0.0204%" height="15" fill="rgb(222,19,48)" fg:x="58923" fg:w="108"/><text x="11.3529%" y="415.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="11.1027%" y="485" width="0.0207%" height="15" fill="rgb(232,45,27)" fg:x="58922" fg:w="110"/><text x="11.3527%" y="495.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="11.1027%" y="469" width="0.0207%" height="15" fill="rgb(249,103,42)" fg:x="58922" fg:w="110"/><text x="11.3527%" y="479.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="11.1029%" y="453" width="0.0205%" height="15" fill="rgb(246,81,33)" fg:x="58923" fg:w="109"/><text x="11.3529%" y="463.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.02%)</title><rect x="11.1029%" y="437" width="0.0205%" height="15" fill="rgb(252,33,42)" fg:x="58923" fg:w="109"/><text x="11.3529%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="11.1029%" y="421" width="0.0205%" height="15" fill="rgb(209,212,41)" fg:x="58923" fg:w="109"/><text x="11.3529%" y="431.50"></text></g><g><title>Parse::do_call (756 samples, 0.14%)</title><rect x="10.9827%" y="517" width="0.1425%" height="15" fill="rgb(207,154,6)" fg:x="58285" fg:w="756"/><text x="11.2327%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (119 samples, 0.02%)</title><rect x="11.1027%" y="501" width="0.0224%" height="15" fill="rgb(223,64,47)" fg:x="58922" fg:w="119"/><text x="11.3527%" y="511.50"></text></g><g><title>ParseGenerator::generate (757 samples, 0.14%)</title><rect x="10.9827%" y="597" width="0.1426%" height="15" fill="rgb(211,161,38)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="607.50"></text></g><g><title>Parse::Parse (757 samples, 0.14%)</title><rect x="10.9827%" y="581" width="0.1426%" height="15" fill="rgb(219,138,40)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="591.50"></text></g><g><title>Parse::do_all_blocks (757 samples, 0.14%)</title><rect x="10.9827%" y="565" width="0.1426%" height="15" fill="rgb(241,228,46)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="575.50"></text></g><g><title>Parse::do_one_block (757 samples, 0.14%)</title><rect x="10.9827%" y="549" width="0.1426%" height="15" fill="rgb(223,209,38)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (757 samples, 0.14%)</title><rect x="10.9827%" y="533" width="0.1426%" height="15" fill="rgb(236,164,45)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="543.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="11.1279%" y="341" width="0.0109%" height="15" fill="rgb(231,15,5)" fg:x="59056" fg:w="58"/><text x="11.3779%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="11.1279%" y="325" width="0.0109%" height="15" fill="rgb(252,35,15)" fg:x="59056" fg:w="58"/><text x="11.3779%" y="335.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.1278%" y="389" width="0.0115%" height="15" fill="rgb(248,181,18)" fg:x="59055" fg:w="61"/><text x="11.3778%" y="399.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.1278%" y="373" width="0.0115%" height="15" fill="rgb(233,39,42)" fg:x="59055" fg:w="61"/><text x="11.3778%" y="383.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.01%)</title><rect x="11.1279%" y="357" width="0.0113%" height="15" fill="rgb(238,110,33)" fg:x="59056" fg:w="60"/><text x="11.3779%" y="367.50"></text></g><g><title>Parse::do_call (89 samples, 0.02%)</title><rect x="11.1262%" y="405" width="0.0168%" height="15" fill="rgb(233,195,10)" fg:x="59047" fg:w="89"/><text x="11.3762%" y="415.50"></text></g><g><title>ParseGenerator::generate (92 samples, 0.02%)</title><rect x="11.1259%" y="485" width="0.0173%" height="15" fill="rgb(254,105,3)" fg:x="59045" fg:w="92"/><text x="11.3759%" y="495.50"></text></g><g><title>Parse::Parse (92 samples, 0.02%)</title><rect x="11.1259%" y="469" width="0.0173%" height="15" fill="rgb(221,225,9)" fg:x="59045" fg:w="92"/><text x="11.3759%" y="479.50"></text></g><g><title>Parse::do_all_blocks (91 samples, 0.02%)</title><rect x="11.1261%" y="453" width="0.0171%" height="15" fill="rgb(224,227,45)" fg:x="59046" fg:w="91"/><text x="11.3761%" y="463.50"></text></g><g><title>Parse::do_one_block (91 samples, 0.02%)</title><rect x="11.1261%" y="437" width="0.0171%" height="15" fill="rgb(229,198,43)" fg:x="59046" fg:w="91"/><text x="11.3761%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.02%)</title><rect x="11.1261%" y="421" width="0.0171%" height="15" fill="rgb(206,209,35)" fg:x="59046" fg:w="91"/><text x="11.3761%" y="431.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="11.1253%" y="581" width="0.0207%" height="15" fill="rgb(245,195,53)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="591.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="11.1253%" y="565" width="0.0207%" height="15" fill="rgb(240,92,26)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="575.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="11.1253%" y="549" width="0.0207%" height="15" fill="rgb(207,40,23)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="559.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="11.1253%" y="533" width="0.0207%" height="15" fill="rgb(223,111,35)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="11.1253%" y="517" width="0.0207%" height="15" fill="rgb(229,147,28)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="527.50"></text></g><g><title>Parse::do_call (110 samples, 0.02%)</title><rect x="11.1253%" y="501" width="0.0207%" height="15" fill="rgb(211,29,28)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="511.50"></text></g><g><title>ParseGenerator::generate (880 samples, 0.17%)</title><rect x="10.9821%" y="693" width="0.1658%" height="15" fill="rgb(228,72,33)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="703.50"></text></g><g><title>Parse::Parse (880 samples, 0.17%)</title><rect x="10.9821%" y="677" width="0.1658%" height="15" fill="rgb(205,214,31)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="687.50"></text></g><g><title>Parse::do_all_blocks (880 samples, 0.17%)</title><rect x="10.9821%" y="661" width="0.1658%" height="15" fill="rgb(224,111,15)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="671.50"></text></g><g><title>Parse::do_one_block (880 samples, 0.17%)</title><rect x="10.9821%" y="645" width="0.1658%" height="15" fill="rgb(253,21,26)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (880 samples, 0.17%)</title><rect x="10.9821%" y="629" width="0.1658%" height="15" fill="rgb(245,139,43)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="639.50"></text></g><g><title>Parse::do_call (880 samples, 0.17%)</title><rect x="10.9821%" y="613" width="0.1658%" height="15" fill="rgb(252,170,7)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (120 samples, 0.02%)</title><rect x="11.1253%" y="597" width="0.0226%" height="15" fill="rgb(231,118,14)" fg:x="59042" fg:w="120"/><text x="11.3753%" y="607.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="11.1579%" y="245" width="0.0102%" height="15" fill="rgb(238,83,0)" fg:x="59215" fg:w="54"/><text x="11.4079%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="11.1579%" y="229" width="0.0102%" height="15" fill="rgb(221,39,39)" fg:x="59215" fg:w="54"/><text x="11.4079%" y="239.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="11.1575%" y="261" width="0.0107%" height="15" fill="rgb(222,119,46)" fg:x="59213" fg:w="57"/><text x="11.4075%" y="271.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.1570%" y="293" width="0.0115%" height="15" fill="rgb(222,165,49)" fg:x="59210" fg:w="61"/><text x="11.4070%" y="303.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.1570%" y="277" width="0.0115%" height="15" fill="rgb(219,113,52)" fg:x="59210" fg:w="61"/><text x="11.4070%" y="287.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="11.1558%" y="309" width="0.0138%" height="15" fill="rgb(214,7,15)" fg:x="59204" fg:w="73"/><text x="11.4058%" y="319.50"></text></g><g><title>ParseGenerator::generate (92 samples, 0.02%)</title><rect x="11.1549%" y="389" width="0.0173%" height="15" fill="rgb(235,32,4)" fg:x="59199" fg:w="92"/><text x="11.4049%" y="399.50"></text></g><g><title>Parse::Parse (92 samples, 0.02%)</title><rect x="11.1549%" y="373" width="0.0173%" height="15" fill="rgb(238,90,54)" fg:x="59199" fg:w="92"/><text x="11.4049%" y="383.50"></text></g><g><title>Parse::do_all_blocks (90 samples, 0.02%)</title><rect x="11.1553%" y="357" width="0.0170%" height="15" fill="rgb(213,208,19)" fg:x="59201" fg:w="90"/><text x="11.4053%" y="367.50"></text></g><g><title>Parse::do_one_block (90 samples, 0.02%)</title><rect x="11.1553%" y="341" width="0.0170%" height="15" fill="rgb(233,156,4)" fg:x="59201" fg:w="90"/><text x="11.4053%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (90 samples, 0.02%)</title><rect x="11.1553%" y="325" width="0.0170%" height="15" fill="rgb(207,194,5)" fg:x="59201" fg:w="90"/><text x="11.4053%" y="335.50"></text></g><g><title>Parse::do_call (130 samples, 0.02%)</title><rect x="11.1515%" y="405" width="0.0245%" height="15" fill="rgb(206,111,30)" fg:x="59181" fg:w="130"/><text x="11.4015%" y="415.50"></text></g><g><title>ParseGenerator::generate (137 samples, 0.03%)</title><rect x="11.1513%" y="485" width="0.0258%" height="15" fill="rgb(243,70,54)" fg:x="59180" fg:w="137"/><text x="11.4013%" y="495.50"></text></g><g><title>Parse::Parse (137 samples, 0.03%)</title><rect x="11.1513%" y="469" width="0.0258%" height="15" fill="rgb(242,28,8)" fg:x="59180" fg:w="137"/><text x="11.4013%" y="479.50"></text></g><g><title>Parse::do_all_blocks (136 samples, 0.03%)</title><rect x="11.1515%" y="453" width="0.0256%" height="15" fill="rgb(219,106,18)" fg:x="59181" fg:w="136"/><text x="11.4015%" y="463.50"></text></g><g><title>Parse::do_one_block (136 samples, 0.03%)</title><rect x="11.1515%" y="437" width="0.0256%" height="15" fill="rgb(244,222,10)" fg:x="59181" fg:w="136"/><text x="11.4015%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (136 samples, 0.03%)</title><rect x="11.1515%" y="421" width="0.0256%" height="15" fill="rgb(236,179,52)" fg:x="59181" fg:w="136"/><text x="11.4015%" y="431.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="11.1483%" y="581" width="0.0294%" height="15" fill="rgb(213,23,39)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="591.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="11.1483%" y="565" width="0.0294%" height="15" fill="rgb(238,48,10)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="575.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="11.1483%" y="549" width="0.0294%" height="15" fill="rgb(251,196,23)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="559.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="11.1483%" y="533" width="0.0294%" height="15" fill="rgb(250,152,24)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="11.1483%" y="517" width="0.0294%" height="15" fill="rgb(209,150,17)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="527.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="11.1483%" y="501" width="0.0294%" height="15" fill="rgb(234,202,34)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="511.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.03%)</title><rect x="11.1479%" y="677" width="0.0332%" height="15" fill="rgb(253,148,53)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="687.50"></text></g><g><title>Parse::Parse (176 samples, 0.03%)</title><rect x="11.1479%" y="661" width="0.0332%" height="15" fill="rgb(218,129,16)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="671.50"></text></g><g><title>Parse::do_all_blocks (176 samples, 0.03%)</title><rect x="11.1479%" y="645" width="0.0332%" height="15" fill="rgb(216,85,19)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="655.50"></text></g><g><title>Parse::do_one_block (176 samples, 0.03%)</title><rect x="11.1479%" y="629" width="0.0332%" height="15" fill="rgb(235,228,7)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (176 samples, 0.03%)</title><rect x="11.1479%" y="613" width="0.0332%" height="15" fill="rgb(245,175,0)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="623.50"></text></g><g><title>Parse::do_call (176 samples, 0.03%)</title><rect x="11.1479%" y="597" width="0.0332%" height="15" fill="rgb(208,168,36)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="607.50"></text></g><g><title>Parse::do_call (1,072 samples, 0.20%)</title><rect x="10.9821%" y="709" width="0.2020%" height="15" fill="rgb(246,171,24)" fg:x="58282" fg:w="1072"/><text x="11.2321%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (192 samples, 0.04%)</title><rect x="11.1479%" y="693" width="0.0362%" height="15" fill="rgb(215,142,24)" fg:x="59162" fg:w="192"/><text x="11.3979%" y="703.50"></text></g><g><title>ParseGenerator::generate (1,073 samples, 0.20%)</title><rect x="10.9821%" y="789" width="0.2022%" height="15" fill="rgb(250,187,7)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="799.50"></text></g><g><title>Parse::Parse (1,073 samples, 0.20%)</title><rect x="10.9821%" y="773" width="0.2022%" height="15" fill="rgb(228,66,33)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,073 samples, 0.20%)</title><rect x="10.9821%" y="757" width="0.2022%" height="15" fill="rgb(234,215,21)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="767.50"></text></g><g><title>Parse::do_one_block (1,073 samples, 0.20%)</title><rect x="10.9821%" y="741" width="0.2022%" height="15" fill="rgb(222,191,20)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,073 samples, 0.20%)</title><rect x="10.9821%" y="725" width="0.2022%" height="15" fill="rgb(245,79,54)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="735.50"></text></g><g><title>Compile::Compile (41,529 samples, 7.83%)</title><rect x="3.3603%" y="805" width="7.8253%" height="15" fill="rgb(240,10,37)" fg:x="17833" fg:w="41529"/><text x="3.6103%" y="815.50">Compile::Co..</text></g><g><title>Compile::final_graph_reshaping_impl (102 samples, 0.02%)</title><rect x="11.2280%" y="757" width="0.0192%" height="15" fill="rgb(214,192,32)" fg:x="59587" fg:w="102"/><text x="11.4780%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (336 samples, 0.06%)</title><rect x="11.1865%" y="789" width="0.0633%" height="15" fill="rgb(209,36,54)" fg:x="59367" fg:w="336"/><text x="11.4365%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping_walk (330 samples, 0.06%)</title><rect x="11.1877%" y="773" width="0.0622%" height="15" fill="rgb(220,10,11)" fg:x="59373" fg:w="330"/><text x="11.4377%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (221 samples, 0.04%)</title><rect x="11.2568%" y="789" width="0.0416%" height="15" fill="rgb(221,106,17)" fg:x="59740" fg:w="221"/><text x="11.5068%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (81 samples, 0.02%)</title><rect x="11.3279%" y="757" width="0.0153%" height="15" fill="rgb(251,142,44)" fg:x="60117" fg:w="81"/><text x="11.5779%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (96 samples, 0.02%)</title><rect x="11.3435%" y="757" width="0.0181%" height="15" fill="rgb(238,13,15)" fg:x="60200" fg:w="96"/><text x="11.5935%" y="767.50"></text></g><g><title>ConnectionGraph::split_memory_phi (76 samples, 0.01%)</title><rect x="11.3689%" y="725" width="0.0143%" height="15" fill="rgb(208,107,27)" fg:x="60335" fg:w="76"/><text x="11.6189%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (59 samples, 0.01%)</title><rect x="11.3721%" y="709" width="0.0111%" height="15" fill="rgb(205,136,37)" fg:x="60352" fg:w="59"/><text x="11.6221%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (96 samples, 0.02%)</title><rect x="11.3661%" y="741" width="0.0181%" height="15" fill="rgb(250,205,27)" fg:x="60320" fg:w="96"/><text x="11.6161%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (132 samples, 0.02%)</title><rect x="11.3640%" y="757" width="0.0249%" height="15" fill="rgb(210,80,43)" fg:x="60309" fg:w="132"/><text x="11.6140%" y="767.50"></text></g><g><title>ConnectionGraph::compute_escape (482 samples, 0.09%)</title><rect x="11.2989%" y="773" width="0.0908%" height="15" fill="rgb(247,160,36)" fg:x="59963" fg:w="482"/><text x="11.5489%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (485 samples, 0.09%)</title><rect x="11.2987%" y="789" width="0.0914%" height="15" fill="rgb(234,13,49)" fg:x="59962" fg:w="485"/><text x="11.5487%" y="799.50"></text></g><g><title>PhaseCCP::analyze (655 samples, 0.12%)</title><rect x="11.3912%" y="789" width="0.1234%" height="15" fill="rgb(234,122,0)" fg:x="60453" fg:w="655"/><text x="11.6412%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (85 samples, 0.02%)</title><rect x="11.5361%" y="757" width="0.0160%" height="15" fill="rgb(207,146,38)" fg:x="61222" fg:w="85"/><text x="11.7861%" y="767.50"></text></g><g><title>PhaseCCP::do_transform (203 samples, 0.04%)</title><rect x="11.5146%" y="789" width="0.0383%" height="15" fill="rgb(207,177,25)" fg:x="61108" fg:w="203"/><text x="11.7646%" y="799.50"></text></g><g><title>PhaseCCP::transform (203 samples, 0.04%)</title><rect x="11.5146%" y="773" width="0.0383%" height="15" fill="rgb(211,178,42)" fg:x="61108" fg:w="203"/><text x="11.7646%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (59 samples, 0.01%)</title><rect x="11.5734%" y="709" width="0.0111%" height="15" fill="rgb(230,69,54)" fg:x="61420" fg:w="59"/><text x="11.8234%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (88 samples, 0.02%)</title><rect x="11.5726%" y="725" width="0.0166%" height="15" fill="rgb(214,135,41)" fg:x="61416" fg:w="88"/><text x="11.8226%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (134 samples, 0.03%)</title><rect x="11.5721%" y="741" width="0.0252%" height="15" fill="rgb(237,67,25)" fg:x="61413" fg:w="134"/><text x="11.8221%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (191 samples, 0.04%)</title><rect x="11.5708%" y="757" width="0.0360%" height="15" fill="rgb(222,189,50)" fg:x="61406" fg:w="191"/><text x="11.8208%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (215 samples, 0.04%)</title><rect x="11.5698%" y="773" width="0.0405%" height="15" fill="rgb(245,148,34)" fg:x="61401" fg:w="215"/><text x="11.8198%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (64 samples, 0.01%)</title><rect x="11.6105%" y="757" width="0.0121%" height="15" fill="rgb(222,29,6)" fg:x="61617" fg:w="64"/><text x="11.8605%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (73 samples, 0.01%)</title><rect x="11.6305%" y="741" width="0.0138%" height="15" fill="rgb(221,189,43)" fg:x="61723" fg:w="73"/><text x="11.8805%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (230 samples, 0.04%)</title><rect x="11.6103%" y="773" width="0.0433%" height="15" fill="rgb(207,36,27)" fg:x="61616" fg:w="230"/><text x="11.8603%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (165 samples, 0.03%)</title><rect x="11.6226%" y="757" width="0.0311%" height="15" fill="rgb(217,90,24)" fg:x="61681" fg:w="165"/><text x="11.8726%" y="767.50"></text></g><g><title>NTarjan::DFS (263 samples, 0.05%)</title><rect x="11.7916%" y="757" width="0.0496%" height="15" fill="rgb(224,66,35)" fg:x="62578" fg:w="263"/><text x="12.0416%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (991 samples, 0.19%)</title><rect x="11.6623%" y="773" width="0.1867%" height="15" fill="rgb(221,13,50)" fg:x="61892" fg:w="991"/><text x="11.9123%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (61 samples, 0.01%)</title><rect x="12.0690%" y="725" width="0.0115%" height="15" fill="rgb(236,68,49)" fg:x="64050" fg:w="61"/><text x="12.3190%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (139 samples, 0.03%)</title><rect x="12.0805%" y="725" width="0.0262%" height="15" fill="rgb(229,146,28)" fg:x="64111" fg:w="139"/><text x="12.3305%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (375 samples, 0.07%)</title><rect x="12.0362%" y="757" width="0.0707%" height="15" fill="rgb(225,31,38)" fg:x="63876" fg:w="375"/><text x="12.2862%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (342 samples, 0.06%)</title><rect x="12.0424%" y="741" width="0.0644%" height="15" fill="rgb(250,208,3)" fg:x="63909" fg:w="342"/><text x="12.2924%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,445 samples, 0.27%)</title><rect x="11.8491%" y="773" width="0.2723%" height="15" fill="rgb(246,54,23)" fg:x="62883" fg:w="1445"/><text x="12.0991%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (64 samples, 0.01%)</title><rect x="12.4289%" y="741" width="0.0121%" height="15" fill="rgb(243,76,11)" fg:x="65960" fg:w="64"/><text x="12.6789%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (66 samples, 0.01%)</title><rect x="12.4411%" y="741" width="0.0124%" height="15" fill="rgb(245,21,50)" fg:x="66025" fg:w="66"/><text x="12.6911%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (56 samples, 0.01%)</title><rect x="12.5485%" y="693" width="0.0106%" height="15" fill="rgb(228,9,43)" fg:x="66595" fg:w="56"/><text x="12.7985%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (256 samples, 0.05%)</title><rect x="12.5378%" y="709" width="0.0482%" height="15" fill="rgb(208,100,47)" fg:x="66538" fg:w="256"/><text x="12.7878%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (143 samples, 0.03%)</title><rect x="12.5591%" y="693" width="0.0269%" height="15" fill="rgb(232,26,8)" fg:x="66651" fg:w="143"/><text x="12.8091%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (361 samples, 0.07%)</title><rect x="12.5236%" y="725" width="0.0680%" height="15" fill="rgb(216,166,38)" fg:x="66463" fg:w="361"/><text x="12.7736%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (147 samples, 0.03%)</title><rect x="12.5920%" y="725" width="0.0277%" height="15" fill="rgb(251,202,51)" fg:x="66826" fg:w="147"/><text x="12.8420%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (568 samples, 0.11%)</title><rect x="13.0356%" y="709" width="0.1070%" height="15" fill="rgb(254,216,34)" fg:x="69180" fg:w="568"/><text x="13.2856%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (2,771 samples, 0.52%)</title><rect x="12.6230%" y="725" width="0.5221%" height="15" fill="rgb(251,32,27)" fg:x="66990" fg:w="2771"/><text x="12.8730%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (3,686 samples, 0.69%)</title><rect x="12.4536%" y="741" width="0.6946%" height="15" fill="rgb(208,127,28)" fg:x="66091" fg:w="3686"/><text x="12.7036%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (4,428 samples, 0.83%)</title><rect x="12.3258%" y="757" width="0.8344%" height="15" fill="rgb(224,137,22)" fg:x="65413" fg:w="4428"/><text x="12.5758%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (5,533 samples, 1.04%)</title><rect x="12.1213%" y="773" width="1.0426%" height="15" fill="rgb(254,70,32)" fg:x="64328" fg:w="5533"/><text x="12.3713%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (197 samples, 0.04%)</title><rect x="13.2708%" y="757" width="0.0371%" height="15" fill="rgb(229,75,37)" fg:x="70428" fg:w="197"/><text x="13.5208%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (771 samples, 0.15%)</title><rect x="13.1639%" y="773" width="0.1453%" height="15" fill="rgb(252,64,23)" fg:x="69861" fg:w="771"/><text x="13.4139%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (101 samples, 0.02%)</title><rect x="13.3901%" y="757" width="0.0190%" height="15" fill="rgb(232,162,48)" fg:x="71061" fg:w="101"/><text x="13.6401%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (209 samples, 0.04%)</title><rect x="13.4096%" y="757" width="0.0394%" height="15" fill="rgb(246,160,12)" fg:x="71165" fg:w="209"/><text x="13.6596%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (60 samples, 0.01%)</title><rect x="13.4858%" y="741" width="0.0113%" height="15" fill="rgb(247,166,0)" fg:x="71569" fg:w="60"/><text x="13.7358%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (132 samples, 0.02%)</title><rect x="13.4980%" y="741" width="0.0249%" height="15" fill="rgb(249,219,21)" fg:x="71634" fg:w="132"/><text x="13.7480%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (58 samples, 0.01%)</title><rect x="13.5432%" y="725" width="0.0109%" height="15" fill="rgb(205,209,3)" fg:x="71874" fg:w="58"/><text x="13.7932%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (179 samples, 0.03%)</title><rect x="13.5229%" y="741" width="0.0337%" height="15" fill="rgb(243,44,1)" fg:x="71766" fg:w="179"/><text x="13.7729%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (612 samples, 0.12%)</title><rect x="13.4490%" y="757" width="0.1153%" height="15" fill="rgb(206,159,16)" fg:x="71374" fg:w="612"/><text x="13.6990%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,311 samples, 0.25%)</title><rect x="13.3179%" y="773" width="0.2470%" height="15" fill="rgb(244,77,30)" fg:x="70678" fg:w="1311"/><text x="13.5679%" y="783.50"></text></g><g><title>LoadNode::Ideal (90 samples, 0.02%)</title><rect x="13.6401%" y="741" width="0.0170%" height="15" fill="rgb(218,69,12)" fg:x="72388" fg:w="90"/><text x="13.8901%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (100 samples, 0.02%)</title><rect x="13.6638%" y="741" width="0.0188%" height="15" fill="rgb(212,87,7)" fg:x="72514" fg:w="100"/><text x="13.9138%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (102 samples, 0.02%)</title><rect x="13.6927%" y="741" width="0.0192%" height="15" fill="rgb(245,114,25)" fg:x="72667" fg:w="102"/><text x="13.9427%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (132 samples, 0.02%)</title><rect x="13.7479%" y="725" width="0.0249%" height="15" fill="rgb(210,61,42)" fg:x="72960" fg:w="132"/><text x="13.9979%" y="735.50"></text></g><g><title>RegionNode::Ideal (222 samples, 0.04%)</title><rect x="13.7313%" y="741" width="0.0418%" height="15" fill="rgb(211,52,33)" fg:x="72872" fg:w="222"/><text x="13.9813%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="13.7744%" y="661" width="0.0107%" height="15" fill="rgb(234,58,33)" fg:x="73101" fg:w="57"/><text x="14.0244%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="13.7744%" y="677" width="0.0115%" height="15" fill="rgb(220,115,36)" fg:x="73101" fg:w="61"/><text x="14.0244%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (68 samples, 0.01%)</title><rect x="13.7744%" y="725" width="0.0128%" height="15" fill="rgb(243,153,54)" fg:x="73101" fg:w="68"/><text x="14.0244%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="13.7744%" y="709" width="0.0128%" height="15" fill="rgb(251,47,18)" fg:x="73101" fg:w="68"/><text x="14.0244%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="13.7744%" y="693" width="0.0128%" height="15" fill="rgb(242,102,42)" fg:x="73101" fg:w="68"/><text x="14.0244%" y="703.50"></text></g><g><title>StoreNode::Ideal (72 samples, 0.01%)</title><rect x="13.7744%" y="741" width="0.0136%" height="15" fill="rgb(234,31,38)" fg:x="73101" fg:w="72"/><text x="14.0244%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (1,184 samples, 0.22%)</title><rect x="13.5732%" y="757" width="0.2231%" height="15" fill="rgb(221,117,51)" fg:x="72033" fg:w="1184"/><text x="13.8232%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (1,237 samples, 0.23%)</title><rect x="13.5653%" y="773" width="0.2331%" height="15" fill="rgb(212,20,18)" fg:x="71991" fg:w="1237"/><text x="13.8153%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (12,004 samples, 2.26%)</title><rect x="11.5551%" y="789" width="2.2619%" height="15" fill="rgb(245,133,36)" fg:x="61323" fg:w="12004"/><text x="11.8051%" y="799.50">P..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (116 samples, 0.02%)</title><rect x="13.8172%" y="789" width="0.0219%" height="15" fill="rgb(212,6,19)" fg:x="73328" fg:w="116"/><text x="14.0672%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (62 samples, 0.01%)</title><rect x="13.9194%" y="725" width="0.0117%" height="15" fill="rgb(218,1,36)" fg:x="73870" fg:w="62"/><text x="14.1694%" y="735.50"></text></g><g><title>Unique_Node_List::remove (55 samples, 0.01%)</title><rect x="13.9207%" y="709" width="0.0104%" height="15" fill="rgb(246,84,54)" fg:x="73877" fg:w="55"/><text x="14.1707%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (75 samples, 0.01%)</title><rect x="13.9177%" y="741" width="0.0141%" height="15" fill="rgb(242,110,6)" fg:x="73861" fg:w="75"/><text x="14.1677%" y="751.50"></text></g><g><title>IfNode::Ideal (239 samples, 0.05%)</title><rect x="13.8986%" y="757" width="0.0450%" height="15" fill="rgb(214,47,5)" fg:x="73760" fg:w="239"/><text x="14.1486%" y="767.50"></text></g><g><title>split_if (54 samples, 0.01%)</title><rect x="13.9335%" y="741" width="0.0102%" height="15" fill="rgb(218,159,25)" fg:x="73945" fg:w="54"/><text x="14.1835%" y="751.50"></text></g><g><title>MemNode::Ideal_common (63 samples, 0.01%)</title><rect x="13.9531%" y="741" width="0.0119%" height="15" fill="rgb(215,211,28)" fg:x="74049" fg:w="63"/><text x="14.2031%" y="751.50"></text></g><g><title>MemNode::find_previous_store (70 samples, 0.01%)</title><rect x="13.9657%" y="741" width="0.0132%" height="15" fill="rgb(238,59,32)" fg:x="74116" fg:w="70"/><text x="14.2157%" y="751.50"></text></g><g><title>LoadNode::Ideal (170 samples, 0.03%)</title><rect x="13.9472%" y="757" width="0.0320%" height="15" fill="rgb(226,82,3)" fg:x="74018" fg:w="170"/><text x="14.1972%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (158 samples, 0.03%)</title><rect x="14.0026%" y="757" width="0.0298%" height="15" fill="rgb(240,164,32)" fg:x="74312" fg:w="158"/><text x="14.2526%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (82 samples, 0.02%)</title><rect x="14.0612%" y="741" width="0.0155%" height="15" fill="rgb(232,46,7)" fg:x="74623" fg:w="82"/><text x="14.3112%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (211 samples, 0.04%)</title><rect x="14.0403%" y="757" width="0.0398%" height="15" fill="rgb(229,129,53)" fg:x="74512" fg:w="211"/><text x="14.2903%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (56 samples, 0.01%)</title><rect x="14.0923%" y="741" width="0.0106%" height="15" fill="rgb(234,188,29)" fg:x="74788" fg:w="56"/><text x="14.3423%" y="751.50"></text></g><g><title>PhiNode::Ideal (141 samples, 0.03%)</title><rect x="14.0806%" y="757" width="0.0266%" height="15" fill="rgb(246,141,4)" fg:x="74726" fg:w="141"/><text x="14.3306%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (82 samples, 0.02%)</title><rect x="14.1425%" y="725" width="0.0155%" height="15" fill="rgb(229,23,39)" fg:x="75054" fg:w="82"/><text x="14.3925%" y="735.50"></text></g><g><title>Unique_Node_List::remove (74 samples, 0.01%)</title><rect x="14.1440%" y="709" width="0.0139%" height="15" fill="rgb(206,12,3)" fg:x="75062" fg:w="74"/><text x="14.3940%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (98 samples, 0.02%)</title><rect x="14.1400%" y="741" width="0.0185%" height="15" fill="rgb(252,226,20)" fg:x="75041" fg:w="98"/><text x="14.3900%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (87 samples, 0.02%)</title><rect x="14.1632%" y="741" width="0.0164%" height="15" fill="rgb(216,123,35)" fg:x="75164" fg:w="87"/><text x="14.4132%" y="751.50"></text></g><g><title>RegionNode::Ideal (311 samples, 0.06%)</title><rect x="14.1234%" y="757" width="0.0586%" height="15" fill="rgb(212,68,40)" fg:x="74953" fg:w="311"/><text x="14.3734%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="14.1852%" y="469" width="0.0115%" height="15" fill="rgb(254,125,32)" fg:x="75281" fg:w="61"/><text x="14.4352%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (82 samples, 0.02%)</title><rect x="14.1852%" y="485" width="0.0155%" height="15" fill="rgb(253,97,22)" fg:x="75281" fg:w="82"/><text x="14.4352%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (96 samples, 0.02%)</title><rect x="14.1852%" y="501" width="0.0181%" height="15" fill="rgb(241,101,14)" fg:x="75281" fg:w="96"/><text x="14.4352%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (113 samples, 0.02%)</title><rect x="14.1850%" y="517" width="0.0213%" height="15" fill="rgb(238,103,29)" fg:x="75280" fg:w="113"/><text x="14.4350%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (135 samples, 0.03%)</title><rect x="14.1850%" y="533" width="0.0254%" height="15" fill="rgb(233,195,47)" fg:x="75280" fg:w="135"/><text x="14.4350%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (149 samples, 0.03%)</title><rect x="14.1850%" y="549" width="0.0281%" height="15" fill="rgb(246,218,30)" fg:x="75280" fg:w="149"/><text x="14.4350%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (164 samples, 0.03%)</title><rect x="14.1850%" y="565" width="0.0309%" height="15" fill="rgb(219,145,47)" fg:x="75280" fg:w="164"/><text x="14.4350%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (176 samples, 0.03%)</title><rect x="14.1850%" y="581" width="0.0332%" height="15" fill="rgb(243,12,26)" fg:x="75280" fg:w="176"/><text x="14.4350%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (192 samples, 0.04%)</title><rect x="14.1850%" y="597" width="0.0362%" height="15" fill="rgb(214,87,16)" fg:x="75280" fg:w="192"/><text x="14.4350%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (209 samples, 0.04%)</title><rect x="14.1850%" y="613" width="0.0394%" height="15" fill="rgb(208,99,42)" fg:x="75280" fg:w="209"/><text x="14.4350%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (218 samples, 0.04%)</title><rect x="14.1850%" y="629" width="0.0411%" height="15" fill="rgb(253,99,2)" fg:x="75280" fg:w="218"/><text x="14.4350%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (240 samples, 0.05%)</title><rect x="14.1850%" y="645" width="0.0452%" height="15" fill="rgb(220,168,23)" fg:x="75280" fg:w="240"/><text x="14.4350%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (260 samples, 0.05%)</title><rect x="14.1850%" y="661" width="0.0490%" height="15" fill="rgb(242,38,24)" fg:x="75280" fg:w="260"/><text x="14.4350%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (279 samples, 0.05%)</title><rect x="14.1849%" y="677" width="0.0526%" height="15" fill="rgb(225,182,9)" fg:x="75279" fg:w="279"/><text x="14.4349%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (302 samples, 0.06%)</title><rect x="14.1849%" y="693" width="0.0569%" height="15" fill="rgb(243,178,37)" fg:x="75279" fg:w="302"/><text x="14.4349%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (335 samples, 0.06%)</title><rect x="14.1843%" y="741" width="0.0631%" height="15" fill="rgb(232,139,19)" fg:x="75276" fg:w="335"/><text x="14.4343%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (335 samples, 0.06%)</title><rect x="14.1843%" y="725" width="0.0631%" height="15" fill="rgb(225,201,24)" fg:x="75276" fg:w="335"/><text x="14.4343%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (333 samples, 0.06%)</title><rect x="14.1847%" y="709" width="0.0627%" height="15" fill="rgb(221,47,46)" fg:x="75278" fg:w="333"/><text x="14.4347%" y="719.50"></text></g><g><title>StoreNode::Ideal (372 samples, 0.07%)</title><rect x="14.1839%" y="757" width="0.0701%" height="15" fill="rgb(249,23,13)" fg:x="75274" fg:w="372"/><text x="14.4339%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (2,183 samples, 0.41%)</title><rect x="13.8508%" y="773" width="0.4113%" height="15" fill="rgb(219,9,5)" fg:x="73506" fg:w="2183"/><text x="14.1008%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (2,263 samples, 0.43%)</title><rect x="13.8391%" y="789" width="0.4264%" height="15" fill="rgb(254,171,16)" fg:x="73444" fg:w="2263"/><text x="14.0891%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (212 samples, 0.04%)</title><rect x="14.2761%" y="757" width="0.0399%" height="15" fill="rgb(230,171,20)" fg:x="75763" fg:w="212"/><text x="14.5261%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (220 samples, 0.04%)</title><rect x="14.2749%" y="773" width="0.0415%" height="15" fill="rgb(210,71,41)" fg:x="75757" fg:w="220"/><text x="14.5249%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (82 samples, 0.02%)</title><rect x="14.3173%" y="773" width="0.0155%" height="15" fill="rgb(206,173,20)" fg:x="75982" fg:w="82"/><text x="14.5673%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (360 samples, 0.07%)</title><rect x="14.2730%" y="789" width="0.0678%" height="15" fill="rgb(233,88,34)" fg:x="75747" fg:w="360"/><text x="14.5230%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (68 samples, 0.01%)</title><rect x="14.3452%" y="757" width="0.0128%" height="15" fill="rgb(223,209,46)" fg:x="76130" fg:w="68"/><text x="14.5952%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (141 samples, 0.03%)</title><rect x="14.3424%" y="773" width="0.0266%" height="15" fill="rgb(250,43,18)" fg:x="76115" fg:w="141"/><text x="14.5924%" y="783.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (151 samples, 0.03%)</title><rect x="14.3409%" y="789" width="0.0285%" height="15" fill="rgb(208,13,10)" fg:x="76107" fg:w="151"/><text x="14.5909%" y="799.50"></text></g><g><title>Compile::Optimize (16,898 samples, 3.18%)</title><rect x="11.1856%" y="805" width="3.1841%" height="15" fill="rgb(212,200,36)" fg:x="59362" fg:w="16898"/><text x="11.4356%" y="815.50">Com..</text></g><g><title>Parse::do_one_block (166 samples, 0.03%)</title><rect x="14.3727%" y="693" width="0.0313%" height="15" fill="rgb(225,90,30)" fg:x="76276" fg:w="166"/><text x="14.6227%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.03%)</title><rect x="14.3755%" y="677" width="0.0285%" height="15" fill="rgb(236,182,39)" fg:x="76291" fg:w="151"/><text x="14.6255%" y="687.50"></text></g><g><title>Parse::do_all_blocks (170 samples, 0.03%)</title><rect x="14.3721%" y="709" width="0.0320%" height="15" fill="rgb(212,144,35)" fg:x="76273" fg:w="170"/><text x="14.6221%" y="719.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.03%)</title><rect x="14.3720%" y="741" width="0.0326%" height="15" fill="rgb(228,63,44)" fg:x="76272" fg:w="173"/><text x="14.6220%" y="751.50"></text></g><g><title>Parse::Parse (173 samples, 0.03%)</title><rect x="14.3720%" y="725" width="0.0326%" height="15" fill="rgb(228,109,6)" fg:x="76272" fg:w="173"/><text x="14.6220%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (206 samples, 0.04%)</title><rect x="14.3701%" y="805" width="0.0388%" height="15" fill="rgb(238,117,24)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (206 samples, 0.04%)</title><rect x="14.3701%" y="789" width="0.0388%" height="15" fill="rgb(242,26,26)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="799.50"></text></g><g><title>C2Compiler::compile_method (206 samples, 0.04%)</title><rect x="14.3701%" y="773" width="0.0388%" height="15" fill="rgb(221,92,48)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="783.50"></text></g><g><title>Compile::Compile (206 samples, 0.04%)</title><rect x="14.3701%" y="757" width="0.0388%" height="15" fill="rgb(209,209,32)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (82 samples, 0.02%)</title><rect x="14.4089%" y="677" width="0.0155%" height="15" fill="rgb(221,70,22)" fg:x="76468" fg:w="82"/><text x="14.6589%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (82 samples, 0.02%)</title><rect x="14.4089%" y="661" width="0.0155%" height="15" fill="rgb(248,145,5)" fg:x="76468" fg:w="82"/><text x="14.6589%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (82 samples, 0.02%)</title><rect x="14.4089%" y="645" width="0.0155%" height="15" fill="rgb(226,116,26)" fg:x="76468" fg:w="82"/><text x="14.6589%" y="655.50"></text></g><g><title>CallGenerator::for_inline (84 samples, 0.02%)</title><rect x="14.4089%" y="757" width="0.0158%" height="15" fill="rgb(244,5,17)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (84 samples, 0.02%)</title><rect x="14.4089%" y="741" width="0.0158%" height="15" fill="rgb(252,159,33)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (84 samples, 0.02%)</title><rect x="14.4089%" y="725" width="0.0158%" height="15" fill="rgb(206,71,0)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (84 samples, 0.02%)</title><rect x="14.4089%" y="709" width="0.0158%" height="15" fill="rgb(233,118,54)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (84 samples, 0.02%)</title><rect x="14.4089%" y="693" width="0.0158%" height="15" fill="rgb(234,83,48)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="703.50"></text></g><g><title>Compile::call_generator (58 samples, 0.01%)</title><rect x="14.4338%" y="661" width="0.0109%" height="15" fill="rgb(228,3,54)" fg:x="76600" fg:w="58"/><text x="14.6838%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.02%)</title><rect x="14.4647%" y="597" width="0.0171%" height="15" fill="rgb(226,155,13)" fg:x="76764" fg:w="91"/><text x="14.7147%" y="607.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.02%)</title><rect x="14.4634%" y="613" width="0.0187%" height="15" fill="rgb(241,28,37)" fg:x="76757" fg:w="99"/><text x="14.7134%" y="623.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="14.4630%" y="629" width="0.0205%" height="15" fill="rgb(233,93,10)" fg:x="76755" fg:w="109"/><text x="14.7130%" y="639.50"></text></g><g><title>ParseGenerator::generate (181 samples, 0.03%)</title><rect x="14.4554%" y="661" width="0.0341%" height="15" fill="rgb(225,113,19)" fg:x="76715" fg:w="181"/><text x="14.7054%" y="671.50"></text></g><g><title>Parse::Parse (181 samples, 0.03%)</title><rect x="14.4554%" y="645" width="0.0341%" height="15" fill="rgb(241,2,18)" fg:x="76715" fg:w="181"/><text x="14.7054%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (72 samples, 0.01%)</title><rect x="14.4895%" y="661" width="0.0136%" height="15" fill="rgb(228,207,21)" fg:x="76896" fg:w="72"/><text x="14.7395%" y="671.50"></text></g><g><title>Parse::do_call (394 samples, 0.07%)</title><rect x="14.4338%" y="677" width="0.0742%" height="15" fill="rgb(213,211,35)" fg:x="76600" fg:w="394"/><text x="14.6838%" y="687.50"></text></g><g><title>Parse::do_all_blocks (545 samples, 0.10%)</title><rect x="14.4266%" y="725" width="0.1027%" height="15" fill="rgb(209,83,10)" fg:x="76562" fg:w="545"/><text x="14.6766%" y="735.50"></text></g><g><title>Parse::do_one_block (544 samples, 0.10%)</title><rect x="14.4268%" y="709" width="0.1025%" height="15" fill="rgb(209,164,1)" fg:x="76563" fg:w="544"/><text x="14.6768%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (539 samples, 0.10%)</title><rect x="14.4277%" y="693" width="0.1016%" height="15" fill="rgb(213,184,43)" fg:x="76568" fg:w="539"/><text x="14.6777%" y="703.50"></text></g><g><title>ParseGenerator::generate (553 samples, 0.10%)</title><rect x="14.4266%" y="757" width="0.1042%" height="15" fill="rgb(231,61,34)" fg:x="76562" fg:w="553"/><text x="14.6766%" y="767.50"></text></g><g><title>Parse::Parse (553 samples, 0.10%)</title><rect x="14.4266%" y="741" width="0.1042%" height="15" fill="rgb(235,75,3)" fg:x="76562" fg:w="553"/><text x="14.6766%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (667 samples, 0.13%)</title><rect x="14.4089%" y="805" width="0.1257%" height="15" fill="rgb(220,106,47)" fg:x="76468" fg:w="667"/><text x="14.6589%" y="815.50"></text></g><g><title>C2Compiler::compile_method (667 samples, 0.13%)</title><rect x="14.4089%" y="789" width="0.1257%" height="15" fill="rgb(210,196,33)" fg:x="76468" fg:w="667"/><text x="14.6589%" y="799.50"></text></g><g><title>Compile::Compile (667 samples, 0.13%)</title><rect x="14.4089%" y="773" width="0.1257%" height="15" fill="rgb(229,154,42)" fg:x="76468" fg:w="667"/><text x="14.6589%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (67 samples, 0.01%)</title><rect x="14.5442%" y="805" width="0.0126%" height="15" fill="rgb(228,114,26)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (67 samples, 0.01%)</title><rect x="14.5442%" y="789" width="0.0126%" height="15" fill="rgb(208,144,1)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (67 samples, 0.01%)</title><rect x="14.5442%" y="773" width="0.0126%" height="15" fill="rgb(239,112,37)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="783.50"></text></g><g><title>C2Compiler::compile_method (67 samples, 0.01%)</title><rect x="14.5442%" y="757" width="0.0126%" height="15" fill="rgb(210,96,50)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="767.50"></text></g><g><title>Compile::Compile (67 samples, 0.01%)</title><rect x="14.5442%" y="741" width="0.0126%" height="15" fill="rgb(222,178,2)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="751.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="14.5745%" y="133" width="0.0119%" height="15" fill="rgb(226,74,18)" fg:x="77347" fg:w="63"/><text x="14.8245%" y="143.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.01%)</title><rect x="14.5740%" y="309" width="0.0128%" height="15" fill="rgb(225,67,54)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="319.50"></text></g><g><title>Parse::Parse (68 samples, 0.01%)</title><rect x="14.5740%" y="293" width="0.0128%" height="15" fill="rgb(251,92,32)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="303.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.01%)</title><rect x="14.5740%" y="277" width="0.0128%" height="15" fill="rgb(228,149,22)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="287.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.01%)</title><rect x="14.5740%" y="261" width="0.0128%" height="15" fill="rgb(243,54,13)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.01%)</title><rect x="14.5740%" y="245" width="0.0128%" height="15" fill="rgb(243,180,28)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="255.50"></text></g><g><title>Parse::do_call (68 samples, 0.01%)</title><rect x="14.5740%" y="229" width="0.0128%" height="15" fill="rgb(208,167,24)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="239.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="14.5741%" y="213" width="0.0126%" height="15" fill="rgb(245,73,45)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="223.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="14.5741%" y="197" width="0.0126%" height="15" fill="rgb(237,203,48)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="207.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.01%)</title><rect x="14.5741%" y="181" width="0.0126%" height="15" fill="rgb(211,197,16)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="191.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.01%)</title><rect x="14.5741%" y="165" width="0.0126%" height="15" fill="rgb(243,99,51)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.01%)</title><rect x="14.5741%" y="149" width="0.0126%" height="15" fill="rgb(215,123,29)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="159.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.01%)</title><rect x="14.5738%" y="405" width="0.0139%" height="15" fill="rgb(239,186,37)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="415.50"></text></g><g><title>Parse::Parse (74 samples, 0.01%)</title><rect x="14.5738%" y="389" width="0.0139%" height="15" fill="rgb(252,136,39)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="399.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.01%)</title><rect x="14.5738%" y="373" width="0.0139%" height="15" fill="rgb(223,213,32)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="383.50"></text></g><g><title>Parse::do_one_block (74 samples, 0.01%)</title><rect x="14.5738%" y="357" width="0.0139%" height="15" fill="rgb(233,115,5)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (74 samples, 0.01%)</title><rect x="14.5738%" y="341" width="0.0139%" height="15" fill="rgb(207,226,44)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="351.50"></text></g><g><title>Parse::do_call (74 samples, 0.01%)</title><rect x="14.5738%" y="325" width="0.0139%" height="15" fill="rgb(208,126,0)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="335.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.02%)</title><rect x="14.5738%" y="501" width="0.0155%" height="15" fill="rgb(244,66,21)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="511.50"></text></g><g><title>Parse::Parse (82 samples, 0.02%)</title><rect x="14.5738%" y="485" width="0.0155%" height="15" fill="rgb(222,97,12)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="495.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="14.5738%" y="469" width="0.0155%" height="15" fill="rgb(219,213,19)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="479.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.02%)</title><rect x="14.5738%" y="453" width="0.0155%" height="15" fill="rgb(252,169,30)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.02%)</title><rect x="14.5738%" y="437" width="0.0155%" height="15" fill="rgb(206,32,51)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="447.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="14.5738%" y="421" width="0.0155%" height="15" fill="rgb(250,172,42)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="431.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="14.5738%" y="597" width="0.0164%" height="15" fill="rgb(209,34,43)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="607.50"></text></g><g><title>Parse::Parse (87 samples, 0.02%)</title><rect x="14.5738%" y="581" width="0.0164%" height="15" fill="rgb(223,11,35)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="591.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="14.5738%" y="565" width="0.0164%" height="15" fill="rgb(251,219,26)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="575.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.02%)</title><rect x="14.5738%" y="549" width="0.0164%" height="15" fill="rgb(231,119,3)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="14.5738%" y="533" width="0.0164%" height="15" fill="rgb(216,97,11)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="543.50"></text></g><g><title>Parse::do_call (87 samples, 0.02%)</title><rect x="14.5738%" y="517" width="0.0164%" height="15" fill="rgb(223,59,9)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="527.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="14.5738%" y="693" width="0.0177%" height="15" fill="rgb(233,93,31)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="703.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="14.5738%" y="677" width="0.0177%" height="15" fill="rgb(239,81,33)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="687.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="14.5738%" y="661" width="0.0177%" height="15" fill="rgb(213,120,34)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="671.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="14.5738%" y="645" width="0.0177%" height="15" fill="rgb(243,49,53)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="14.5738%" y="629" width="0.0177%" height="15" fill="rgb(247,216,33)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="639.50"></text></g><g><title>Parse::do_call (94 samples, 0.02%)</title><rect x="14.5738%" y="613" width="0.0177%" height="15" fill="rgb(226,26,14)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="623.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="14.5738%" y="789" width="0.0181%" height="15" fill="rgb(215,49,53)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="799.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="14.5738%" y="773" width="0.0181%" height="15" fill="rgb(245,162,40)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="783.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="14.5738%" y="757" width="0.0181%" height="15" fill="rgb(229,68,17)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="767.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="14.5738%" y="741" width="0.0181%" height="15" fill="rgb(213,182,10)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="14.5738%" y="725" width="0.0181%" height="15" fill="rgb(245,125,30)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="735.50"></text></g><g><title>Parse::do_call (96 samples, 0.02%)</title><rect x="14.5738%" y="709" width="0.0181%" height="15" fill="rgb(232,202,2)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="719.50"></text></g><g><title>Parse::do_call (101 samples, 0.02%)</title><rect x="14.5738%" y="805" width="0.0190%" height="15" fill="rgb(237,140,51)" fg:x="77343" fg:w="101"/><text x="14.8238%" y="815.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="14.6015%" y="773" width="0.0109%" height="15" fill="rgb(236,157,25)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="783.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="14.6015%" y="757" width="0.0109%" height="15" fill="rgb(219,209,0)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="767.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="14.6015%" y="741" width="0.0109%" height="15" fill="rgb(240,116,54)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="751.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="14.6015%" y="725" width="0.0109%" height="15" fill="rgb(216,10,36)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="14.6015%" y="709" width="0.0109%" height="15" fill="rgb(222,72,44)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="719.50"></text></g><g><title>Parse::do_call (58 samples, 0.01%)</title><rect x="14.6015%" y="693" width="0.0109%" height="15" fill="rgb(232,159,9)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.01%)</title><rect x="14.6015%" y="805" width="0.0113%" height="15" fill="rgb(210,39,32)" fg:x="77490" fg:w="60"/><text x="14.8515%" y="815.50"></text></g><g><title>Parse::do_call (60 samples, 0.01%)</title><rect x="14.6015%" y="789" width="0.0113%" height="15" fill="rgb(216,194,45)" fg:x="77490" fg:w="60"/><text x="14.8515%" y="799.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="14.6171%" y="53" width="0.0138%" height="15" fill="rgb(218,18,35)" fg:x="77573" fg:w="73"/><text x="14.8671%" y="63.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="14.6160%" y="101" width="0.0194%" height="15" fill="rgb(207,83,51)" fg:x="77567" fg:w="103"/><text x="14.8660%" y="111.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="14.6160%" y="85" width="0.0194%" height="15" fill="rgb(225,63,43)" fg:x="77567" fg:w="103"/><text x="14.8660%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="14.6160%" y="69" width="0.0194%" height="15" fill="rgb(207,57,36)" fg:x="77567" fg:w="103"/><text x="14.8660%" y="79.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.02%)</title><rect x="14.6156%" y="133" width="0.0200%" height="15" fill="rgb(216,99,33)" fg:x="77565" fg:w="106"/><text x="14.8656%" y="143.50"></text></g><g><title>Parse::Parse (106 samples, 0.02%)</title><rect x="14.6156%" y="117" width="0.0200%" height="15" fill="rgb(225,42,16)" fg:x="77565" fg:w="106"/><text x="14.8656%" y="127.50"></text></g><g><title>Parse::do_call (122 samples, 0.02%)</title><rect x="14.6135%" y="149" width="0.0230%" height="15" fill="rgb(220,201,45)" fg:x="77554" fg:w="122"/><text x="14.8635%" y="159.50"></text></g><g><title>ParseGenerator::generate (124 samples, 0.02%)</title><rect x="14.6135%" y="229" width="0.0234%" height="15" fill="rgb(225,33,4)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="239.50"></text></g><g><title>Parse::Parse (124 samples, 0.02%)</title><rect x="14.6135%" y="213" width="0.0234%" height="15" fill="rgb(224,33,50)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="223.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.02%)</title><rect x="14.6135%" y="197" width="0.0234%" height="15" fill="rgb(246,198,51)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="207.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.02%)</title><rect x="14.6135%" y="181" width="0.0234%" height="15" fill="rgb(205,22,4)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.02%)</title><rect x="14.6135%" y="165" width="0.0234%" height="15" fill="rgb(206,3,8)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="175.50"></text></g><g><title>Parse::do_call (133 samples, 0.03%)</title><rect x="14.6128%" y="245" width="0.0251%" height="15" fill="rgb(251,23,15)" fg:x="77550" fg:w="133"/><text x="14.8628%" y="255.50"></text></g><g><title>ParseGenerator::generate (134 samples, 0.03%)</title><rect x="14.6128%" y="325" width="0.0252%" height="15" fill="rgb(252,88,28)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="335.50"></text></g><g><title>Parse::Parse (134 samples, 0.03%)</title><rect x="14.6128%" y="309" width="0.0252%" height="15" fill="rgb(212,127,14)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="319.50"></text></g><g><title>Parse::do_all_blocks (134 samples, 0.03%)</title><rect x="14.6128%" y="293" width="0.0252%" height="15" fill="rgb(247,145,37)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="303.50"></text></g><g><title>Parse::do_one_block (134 samples, 0.03%)</title><rect x="14.6128%" y="277" width="0.0252%" height="15" fill="rgb(209,117,53)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (134 samples, 0.03%)</title><rect x="14.6128%" y="261" width="0.0252%" height="15" fill="rgb(212,90,42)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="271.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="14.6128%" y="421" width="0.0269%" height="15" fill="rgb(218,164,37)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="431.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="14.6128%" y="405" width="0.0269%" height="15" fill="rgb(246,65,34)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="415.50"></text></g><g><title>Parse::do_all_blocks (143 samples, 0.03%)</title><rect x="14.6128%" y="389" width="0.0269%" height="15" fill="rgb(231,100,33)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="399.50"></text></g><g><title>Parse::do_one_block (143 samples, 0.03%)</title><rect x="14.6128%" y="373" width="0.0269%" height="15" fill="rgb(228,126,14)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (143 samples, 0.03%)</title><rect x="14.6128%" y="357" width="0.0269%" height="15" fill="rgb(215,173,21)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="367.50"></text></g><g><title>Parse::do_call (143 samples, 0.03%)</title><rect x="14.6128%" y="341" width="0.0269%" height="15" fill="rgb(210,6,40)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="351.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="14.6128%" y="517" width="0.0294%" height="15" fill="rgb(212,48,18)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="527.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="14.6128%" y="501" width="0.0294%" height="15" fill="rgb(230,214,11)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="511.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="14.6128%" y="485" width="0.0294%" height="15" fill="rgb(254,105,39)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="495.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="14.6128%" y="469" width="0.0294%" height="15" fill="rgb(245,158,5)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="14.6128%" y="453" width="0.0294%" height="15" fill="rgb(249,208,11)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="463.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="14.6128%" y="437" width="0.0294%" height="15" fill="rgb(210,39,28)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="447.50"></text></g><g><title>Parse::do_call (171 samples, 0.03%)</title><rect x="14.6128%" y="533" width="0.0322%" height="15" fill="rgb(211,56,53)" fg:x="77550" fg:w="171"/><text x="14.8628%" y="543.50"></text></g><g><title>ParseGenerator::generate (178 samples, 0.03%)</title><rect x="14.6128%" y="613" width="0.0335%" height="15" fill="rgb(226,201,30)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="623.50"></text></g><g><title>Parse::Parse (178 samples, 0.03%)</title><rect x="14.6128%" y="597" width="0.0335%" height="15" fill="rgb(239,101,34)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="607.50"></text></g><g><title>Parse::do_all_blocks (178 samples, 0.03%)</title><rect x="14.6128%" y="581" width="0.0335%" height="15" fill="rgb(226,209,5)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="591.50"></text></g><g><title>Parse::do_one_block (178 samples, 0.03%)</title><rect x="14.6128%" y="565" width="0.0335%" height="15" fill="rgb(250,105,47)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (178 samples, 0.03%)</title><rect x="14.6128%" y="549" width="0.0335%" height="15" fill="rgb(230,72,3)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="559.50"></text></g><g><title>ParseGenerator::generate (207 samples, 0.04%)</title><rect x="14.6128%" y="709" width="0.0390%" height="15" fill="rgb(232,218,39)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="719.50"></text></g><g><title>Parse::Parse (207 samples, 0.04%)</title><rect x="14.6128%" y="693" width="0.0390%" height="15" fill="rgb(248,166,6)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="703.50"></text></g><g><title>Parse::do_all_blocks (207 samples, 0.04%)</title><rect x="14.6128%" y="677" width="0.0390%" height="15" fill="rgb(247,89,20)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="687.50"></text></g><g><title>Parse::do_one_block (207 samples, 0.04%)</title><rect x="14.6128%" y="661" width="0.0390%" height="15" fill="rgb(248,130,54)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (207 samples, 0.04%)</title><rect x="14.6128%" y="645" width="0.0390%" height="15" fill="rgb(234,196,4)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="655.50"></text></g><g><title>Parse::do_call (207 samples, 0.04%)</title><rect x="14.6128%" y="629" width="0.0390%" height="15" fill="rgb(250,143,31)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="639.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.04%)</title><rect x="14.6128%" y="805" width="0.0420%" height="15" fill="rgb(211,110,34)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="815.50"></text></g><g><title>Parse::Parse (223 samples, 0.04%)</title><rect x="14.6128%" y="789" width="0.0420%" height="15" fill="rgb(215,124,48)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="799.50"></text></g><g><title>Parse::do_all_blocks (223 samples, 0.04%)</title><rect x="14.6128%" y="773" width="0.0420%" height="15" fill="rgb(216,46,13)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="783.50"></text></g><g><title>Parse::do_one_block (223 samples, 0.04%)</title><rect x="14.6128%" y="757" width="0.0420%" height="15" fill="rgb(205,184,25)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (223 samples, 0.04%)</title><rect x="14.6128%" y="741" width="0.0420%" height="15" fill="rgb(228,1,10)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="751.50"></text></g><g><title>Parse::do_call (223 samples, 0.04%)</title><rect x="14.6128%" y="725" width="0.0420%" height="15" fill="rgb(213,116,27)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="735.50"></text></g><g><title>Thread::call_run (72 samples, 0.01%)</title><rect x="14.6631%" y="805" width="0.0136%" height="15" fill="rgb(241,95,50)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (72 samples, 0.01%)</title><rect x="14.6631%" y="789" width="0.0136%" height="15" fill="rgb(238,48,32)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (72 samples, 0.01%)</title><rect x="14.6631%" y="773" width="0.0136%" height="15" fill="rgb(235,113,49)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (72 samples, 0.01%)</title><rect x="14.6631%" y="757" width="0.0136%" height="15" fill="rgb(205,127,43)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="767.50"></text></g><g><title>C2Compiler::compile_method (72 samples, 0.01%)</title><rect x="14.6631%" y="741" width="0.0136%" height="15" fill="rgb(250,162,2)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="751.50"></text></g><g><title>Compile::Compile (72 samples, 0.01%)</title><rect x="14.6631%" y="725" width="0.0136%" height="15" fill="rgb(220,13,41)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="735.50"></text></g><g><title>start_thread (81 samples, 0.02%)</title><rect x="14.6908%" y="805" width="0.0153%" height="15" fill="rgb(249,221,25)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="815.50"></text></g><g><title>thread_native_entry (81 samples, 0.02%)</title><rect x="14.6908%" y="789" width="0.0153%" height="15" fill="rgb(215,208,19)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="799.50"></text></g><g><title>Thread::call_run (81 samples, 0.02%)</title><rect x="14.6908%" y="773" width="0.0153%" height="15" fill="rgb(236,175,2)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (81 samples, 0.02%)</title><rect x="14.6908%" y="757" width="0.0153%" height="15" fill="rgb(241,52,2)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (81 samples, 0.02%)</title><rect x="14.6908%" y="741" width="0.0153%" height="15" fill="rgb(248,140,14)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (81 samples, 0.02%)</title><rect x="14.6908%" y="725" width="0.0153%" height="15" fill="rgb(253,22,42)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="735.50"></text></g><g><title>C2Compiler::compile_method (81 samples, 0.02%)</title><rect x="14.6908%" y="709" width="0.0153%" height="15" fill="rgb(234,61,47)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="719.50"></text></g><g><title>Compile::Compile (81 samples, 0.02%)</title><rect x="14.6908%" y="693" width="0.0153%" height="15" fill="rgb(208,226,15)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="703.50"></text></g><g><title>[unknown] (62,472 samples, 11.77%)</title><rect x="2.9397%" y="821" width="11.7716%" height="15" fill="rgb(217,221,4)" fg:x="15601" fg:w="62472"/><text x="3.1897%" y="831.50">[unknown]</text></g><g><title>CompileWrapper::CompileWrapper (60 samples, 0.01%)</title><rect x="14.7360%" y="677" width="0.0113%" height="15" fill="rgb(212,174,34)" fg:x="78204" fg:w="60"/><text x="14.9860%" y="687.50"></text></g><g><title>Type::Initialize (58 samples, 0.01%)</title><rect x="14.7364%" y="661" width="0.0109%" height="15" fill="rgb(253,83,4)" fg:x="78206" fg:w="58"/><text x="14.9864%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (156 samples, 0.03%)</title><rect x="14.7573%" y="661" width="0.0294%" height="15" fill="rgb(250,195,49)" fg:x="78317" fg:w="156"/><text x="15.0073%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (173 samples, 0.03%)</title><rect x="14.7867%" y="661" width="0.0326%" height="15" fill="rgb(241,192,25)" fg:x="78473" fg:w="173"/><text x="15.0367%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (407 samples, 0.08%)</title><rect x="14.7494%" y="677" width="0.0767%" height="15" fill="rgb(208,124,10)" fg:x="78275" fg:w="407"/><text x="14.9994%" y="687.50"></text></g><g><title>C2Compiler::compile_method (597 samples, 0.11%)</title><rect x="14.7213%" y="709" width="0.1125%" height="15" fill="rgb(222,33,0)" fg:x="78126" fg:w="597"/><text x="14.9713%" y="719.50"></text></g><g><title>Compile::Compile (585 samples, 0.11%)</title><rect x="14.7236%" y="693" width="0.1102%" height="15" fill="rgb(234,209,28)" fg:x="78138" fg:w="585"/><text x="14.9736%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (732 samples, 0.14%)</title><rect x="14.7204%" y="725" width="0.1379%" height="15" fill="rgb(224,11,23)" fg:x="78121" fg:w="732"/><text x="14.9704%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (140 samples, 0.03%)</title><rect x="14.8781%" y="469" width="0.0264%" height="15" fill="rgb(232,99,1)" fg:x="78958" fg:w="140"/><text x="15.1281%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (140 samples, 0.03%)</title><rect x="14.8781%" y="453" width="0.0264%" height="15" fill="rgb(237,95,45)" fg:x="78958" fg:w="140"/><text x="15.1281%" y="463.50"></text></g><g><title>native_write_msr (140 samples, 0.03%)</title><rect x="14.8781%" y="437" width="0.0264%" height="15" fill="rgb(208,109,11)" fg:x="78958" fg:w="140"/><text x="15.1281%" y="447.50"></text></g><g><title>finish_task_switch (145 samples, 0.03%)</title><rect x="14.8779%" y="485" width="0.0273%" height="15" fill="rgb(216,190,48)" fg:x="78957" fg:w="145"/><text x="15.1279%" y="495.50"></text></g><g><title>futex_wait_queue_me (185 samples, 0.03%)</title><rect x="14.8717%" y="533" width="0.0349%" height="15" fill="rgb(251,171,36)" fg:x="78924" fg:w="185"/><text x="15.1217%" y="543.50"></text></g><g><title>schedule (171 samples, 0.03%)</title><rect x="14.8743%" y="517" width="0.0322%" height="15" fill="rgb(230,62,22)" fg:x="78938" fg:w="171"/><text x="15.1243%" y="527.50"></text></g><g><title>__schedule (171 samples, 0.03%)</title><rect x="14.8743%" y="501" width="0.0322%" height="15" fill="rgb(225,114,35)" fg:x="78938" fg:w="171"/><text x="15.1243%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (198 samples, 0.04%)</title><rect x="14.8707%" y="613" width="0.0373%" height="15" fill="rgb(215,118,42)" fg:x="78919" fg:w="198"/><text x="15.1207%" y="623.50"></text></g><g><title>do_syscall_64 (198 samples, 0.04%)</title><rect x="14.8707%" y="597" width="0.0373%" height="15" fill="rgb(243,119,21)" fg:x="78919" fg:w="198"/><text x="15.1207%" y="607.50"></text></g><g><title>__x64_sys_futex (198 samples, 0.04%)</title><rect x="14.8707%" y="581" width="0.0373%" height="15" fill="rgb(252,177,53)" fg:x="78919" fg:w="198"/><text x="15.1207%" y="591.50"></text></g><g><title>do_futex (195 samples, 0.04%)</title><rect x="14.8713%" y="565" width="0.0367%" height="15" fill="rgb(237,209,29)" fg:x="78922" fg:w="195"/><text x="15.1213%" y="575.50"></text></g><g><title>futex_wait (195 samples, 0.04%)</title><rect x="14.8713%" y="549" width="0.0367%" height="15" fill="rgb(212,65,23)" fg:x="78922" fg:w="195"/><text x="15.1213%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (211 samples, 0.04%)</title><rect x="14.8689%" y="661" width="0.0398%" height="15" fill="rgb(230,222,46)" fg:x="78909" fg:w="211"/><text x="15.1189%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (211 samples, 0.04%)</title><rect x="14.8689%" y="645" width="0.0398%" height="15" fill="rgb(215,135,32)" fg:x="78909" fg:w="211"/><text x="15.1189%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (208 samples, 0.04%)</title><rect x="14.8694%" y="629" width="0.0392%" height="15" fill="rgb(246,101,22)" fg:x="78912" fg:w="208"/><text x="15.1194%" y="639.50"></text></g><g><title>os::PlatformEvent::park (227 samples, 0.04%)</title><rect x="14.8683%" y="677" width="0.0428%" height="15" fill="rgb(206,107,13)" fg:x="78906" fg:w="227"/><text x="15.1183%" y="687.50"></text></g><g><title>Monitor::wait (263 samples, 0.05%)</title><rect x="14.8617%" y="709" width="0.0496%" height="15" fill="rgb(250,100,44)" fg:x="78871" fg:w="263"/><text x="15.1117%" y="719.50"></text></g><g><title>Monitor::IWait (258 samples, 0.05%)</title><rect x="14.8626%" y="693" width="0.0486%" height="15" fill="rgb(231,147,38)" fg:x="78876" fg:w="258"/><text x="15.1126%" y="703.50"></text></g><g><title>CompileQueue::get (309 samples, 0.06%)</title><rect x="14.8604%" y="725" width="0.0582%" height="15" fill="rgb(229,8,40)" fg:x="78864" fg:w="309"/><text x="15.1104%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,066 samples, 0.20%)</title><rect x="14.7181%" y="741" width="0.2009%" height="15" fill="rgb(221,135,30)" fg:x="78109" fg:w="1066"/><text x="14.9681%" y="751.50"></text></g><g><title>Thread::call_run (1,068 samples, 0.20%)</title><rect x="14.7179%" y="773" width="0.2012%" height="15" fill="rgb(249,193,18)" fg:x="78108" fg:w="1068"/><text x="14.9679%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,067 samples, 0.20%)</title><rect x="14.7181%" y="757" width="0.2011%" height="15" fill="rgb(209,133,39)" fg:x="78109" fg:w="1067"/><text x="14.9681%" y="767.50"></text></g><g><title>__GI___clone (1,099 samples, 0.21%)</title><rect x="14.7125%" y="821" width="0.2071%" height="15" fill="rgb(232,100,14)" fg:x="78079" fg:w="1099"/><text x="14.9625%" y="831.50"></text></g><g><title>start_thread (1,072 samples, 0.20%)</title><rect x="14.7175%" y="805" width="0.2020%" height="15" fill="rgb(224,185,1)" fg:x="78106" fg:w="1072"/><text x="14.9675%" y="815.50"></text></g><g><title>thread_native_entry (1,070 samples, 0.20%)</title><rect x="14.7179%" y="789" width="0.2016%" height="15" fill="rgb(223,139,8)" fg:x="78108" fg:w="1070"/><text x="14.9679%" y="799.50"></text></g><g><title>C2_CompilerThre (66,987 samples, 12.62%)</title><rect x="2.3162%" y="837" width="12.6224%" height="15" fill="rgb(232,213,38)" fg:x="12292" fg:w="66987"/><text x="2.5662%" y="847.50">C2_CompilerThre</text></g><g><title>[perf-925888.map] (89 samples, 0.02%)</title><rect x="14.9397%" y="821" width="0.0168%" height="15" fill="rgb(207,94,22)" fg:x="79285" fg:w="89"/><text x="15.1897%" y="831.50"></text></g><g><title>Command-Accumul (114 samples, 0.02%)</title><rect x="14.9386%" y="837" width="0.0215%" height="15" fill="rgb(219,183,54)" fg:x="79279" fg:w="114"/><text x="15.1886%" y="847.50"></text></g><g><title>update_curr (59 samples, 0.01%)</title><rect x="15.3940%" y="565" width="0.0111%" height="15" fill="rgb(216,185,54)" fg:x="81696" fg:w="59"/><text x="15.6440%" y="575.50"></text></g><g><title>dequeue_entity (133 samples, 0.03%)</title><rect x="15.3872%" y="581" width="0.0251%" height="15" fill="rgb(254,217,39)" fg:x="81660" fg:w="133"/><text x="15.6372%" y="591.50"></text></g><g><title>dequeue_task_fair (158 samples, 0.03%)</title><rect x="15.3831%" y="597" width="0.0298%" height="15" fill="rgb(240,178,23)" fg:x="81638" fg:w="158"/><text x="15.6331%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="15.4161%" y="581" width="0.0121%" height="15" fill="rgb(218,11,47)" fg:x="81813" fg:w="64"/><text x="15.6661%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (60 samples, 0.01%)</title><rect x="15.4168%" y="565" width="0.0113%" height="15" fill="rgb(218,51,51)" fg:x="81817" fg:w="60"/><text x="15.6668%" y="575.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="15.4170%" y="549" width="0.0111%" height="15" fill="rgb(238,126,27)" fg:x="81818" fg:w="59"/><text x="15.6670%" y="559.50"></text></g><g><title>finish_task_switch (87 samples, 0.02%)</title><rect x="15.4129%" y="597" width="0.0164%" height="15" fill="rgb(249,202,22)" fg:x="81796" fg:w="87"/><text x="15.6629%" y="607.50"></text></g><g><title>psi_task_change (96 samples, 0.02%)</title><rect x="15.4368%" y="597" width="0.0181%" height="15" fill="rgb(254,195,49)" fg:x="81923" fg:w="96"/><text x="15.6868%" y="607.50"></text></g><g><title>psi_group_change (75 samples, 0.01%)</title><rect x="15.4407%" y="581" width="0.0141%" height="15" fill="rgb(208,123,14)" fg:x="81944" fg:w="75"/><text x="15.6907%" y="591.50"></text></g><g><title>futex_wait_queue_me (526 samples, 0.10%)</title><rect x="15.3607%" y="645" width="0.0991%" height="15" fill="rgb(224,200,8)" fg:x="81519" fg:w="526"/><text x="15.6107%" y="655.50"></text></g><g><title>schedule (459 samples, 0.09%)</title><rect x="15.3733%" y="629" width="0.0865%" height="15" fill="rgb(217,61,36)" fg:x="81586" fg:w="459"/><text x="15.6233%" y="639.50"></text></g><g><title>__schedule (449 samples, 0.08%)</title><rect x="15.3752%" y="613" width="0.0846%" height="15" fill="rgb(206,35,45)" fg:x="81596" fg:w="449"/><text x="15.6252%" y="623.50"></text></g><g><title>do_futex (668 samples, 0.13%)</title><rect x="15.3510%" y="677" width="0.1259%" height="15" fill="rgb(217,65,33)" fg:x="81468" fg:w="668"/><text x="15.6010%" y="687.50"></text></g><g><title>futex_wait (655 samples, 0.12%)</title><rect x="15.3535%" y="661" width="0.1234%" height="15" fill="rgb(222,158,48)" fg:x="81481" fg:w="655"/><text x="15.6035%" y="671.50"></text></g><g><title>__x64_sys_futex (687 samples, 0.13%)</title><rect x="15.3503%" y="693" width="0.1295%" height="15" fill="rgb(254,2,54)" fg:x="81464" fg:w="687"/><text x="15.6003%" y="703.50"></text></g><g><title>do_syscall_64 (691 samples, 0.13%)</title><rect x="15.3499%" y="709" width="0.1302%" height="15" fill="rgb(250,143,38)" fg:x="81462" fg:w="691"/><text x="15.5999%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (724 samples, 0.14%)</title><rect x="15.3467%" y="725" width="0.1364%" height="15" fill="rgb(248,25,0)" fg:x="81445" fg:w="724"/><text x="15.5967%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (845 samples, 0.16%)</title><rect x="15.3250%" y="773" width="0.1592%" height="15" fill="rgb(206,152,27)" fg:x="81330" fg:w="845"/><text x="15.5750%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (842 samples, 0.16%)</title><rect x="15.3256%" y="757" width="0.1587%" height="15" fill="rgb(240,77,30)" fg:x="81333" fg:w="842"/><text x="15.5756%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (778 samples, 0.15%)</title><rect x="15.3377%" y="741" width="0.1466%" height="15" fill="rgb(231,5,3)" fg:x="81397" fg:w="778"/><text x="15.5877%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (87 samples, 0.02%)</title><rect x="15.4933%" y="773" width="0.0164%" height="15" fill="rgb(207,226,32)" fg:x="82223" fg:w="87"/><text x="15.7433%" y="783.50"></text></g><g><title>Parker::park (1,127 samples, 0.21%)</title><rect x="15.3041%" y="789" width="0.2124%" height="15" fill="rgb(222,207,47)" fg:x="81219" fg:w="1127"/><text x="15.5541%" y="799.50"></text></g><g><title>Unsafe_Park (1,183 samples, 0.22%)</title><rect x="15.2970%" y="805" width="0.2229%" height="15" fill="rgb(229,115,45)" fg:x="81181" fg:w="1183"/><text x="15.5470%" y="815.50"></text></g><g><title>[perf-925888.map] (2,904 samples, 0.55%)</title><rect x="14.9783%" y="821" width="0.5472%" height="15" fill="rgb(224,191,6)" fg:x="79490" fg:w="2904"/><text x="15.2283%" y="831.50"></text></g><g><title>ForkJoinPool.co (3,025 samples, 0.57%)</title><rect x="14.9687%" y="837" width="0.5700%" height="15" fill="rgb(230,227,24)" fg:x="79439" fg:w="3025"/><text x="15.2187%" y="847.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (61 samples, 0.01%)</title><rect x="15.5694%" y="693" width="0.0115%" height="15" fill="rgb(228,80,19)" fg:x="82627" fg:w="61"/><text x="15.8194%" y="703.50"></text></g><g><title>OopOopIterateDispatch<G1ConcurrentRefineOopClosure>::Table::oop_oop_iterate<InstanceKlass, unsigned int> (76 samples, 0.01%)</title><rect x="15.5879%" y="693" width="0.0143%" height="15" fill="rgb(247,229,0)" fg:x="82725" fg:w="76"/><text x="15.8379%" y="703.50"></text></g><g><title>G1RemSet::refine_card_concurrently (245 samples, 0.05%)</title><rect x="15.5611%" y="709" width="0.0462%" height="15" fill="rgb(237,194,15)" fg:x="82583" fg:w="245"/><text x="15.8111%" y="719.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (249 samples, 0.05%)</title><rect x="15.5608%" y="725" width="0.0469%" height="15" fill="rgb(219,203,20)" fg:x="82581" fg:w="249"/><text x="15.8108%" y="735.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (268 samples, 0.05%)</title><rect x="15.5608%" y="741" width="0.0505%" height="15" fill="rgb(234,128,8)" fg:x="82581" fg:w="268"/><text x="15.8108%" y="751.50"></text></g><g><title>G1_Refine#0 (297 samples, 0.06%)</title><rect x="15.5583%" y="837" width="0.0560%" height="15" fill="rgb(248,202,8)" fg:x="82568" fg:w="297"/><text x="15.8083%" y="847.50"></text></g><g><title>__GI___clone (285 samples, 0.05%)</title><rect x="15.5606%" y="821" width="0.0537%" height="15" fill="rgb(206,104,37)" fg:x="82580" fg:w="285"/><text x="15.8106%" y="831.50"></text></g><g><title>start_thread (284 samples, 0.05%)</title><rect x="15.5608%" y="805" width="0.0535%" height="15" fill="rgb(223,8,27)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="815.50"></text></g><g><title>thread_native_entry (284 samples, 0.05%)</title><rect x="15.5608%" y="789" width="0.0535%" height="15" fill="rgb(216,217,28)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="799.50"></text></g><g><title>Thread::call_run (284 samples, 0.05%)</title><rect x="15.5608%" y="773" width="0.0535%" height="15" fill="rgb(249,199,1)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (284 samples, 0.05%)</title><rect x="15.5608%" y="757" width="0.0535%" height="15" fill="rgb(240,85,17)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="767.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (101 samples, 0.02%)</title><rect x="15.6156%" y="725" width="0.0190%" height="15" fill="rgb(206,108,45)" fg:x="82872" fg:w="101"/><text x="15.8656%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (101 samples, 0.02%)</title><rect x="15.6156%" y="709" width="0.0190%" height="15" fill="rgb(245,210,41)" fg:x="82872" fg:w="101"/><text x="15.8656%" y="719.50"></text></g><g><title>G1_Refine#1 (117 samples, 0.02%)</title><rect x="15.6143%" y="837" width="0.0220%" height="15" fill="rgb(206,13,37)" fg:x="82865" fg:w="117"/><text x="15.8643%" y="847.50"></text></g><g><title>__GI___clone (111 samples, 0.02%)</title><rect x="15.6154%" y="821" width="0.0209%" height="15" fill="rgb(250,61,18)" fg:x="82871" fg:w="111"/><text x="15.8654%" y="831.50"></text></g><g><title>start_thread (110 samples, 0.02%)</title><rect x="15.6156%" y="805" width="0.0207%" height="15" fill="rgb(235,172,48)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="815.50"></text></g><g><title>thread_native_entry (110 samples, 0.02%)</title><rect x="15.6156%" y="789" width="0.0207%" height="15" fill="rgb(249,201,17)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="799.50"></text></g><g><title>Thread::call_run (110 samples, 0.02%)</title><rect x="15.6156%" y="773" width="0.0207%" height="15" fill="rgb(219,208,6)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (110 samples, 0.02%)</title><rect x="15.6156%" y="757" width="0.0207%" height="15" fill="rgb(248,31,23)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (110 samples, 0.02%)</title><rect x="15.6156%" y="741" width="0.0207%" height="15" fill="rgb(245,15,42)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="751.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (82 samples, 0.02%)</title><rect x="15.6382%" y="725" width="0.0155%" height="15" fill="rgb(222,217,39)" fg:x="82992" fg:w="82"/><text x="15.8882%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (80 samples, 0.02%)</title><rect x="15.6386%" y="709" width="0.0151%" height="15" fill="rgb(210,219,27)" fg:x="82994" fg:w="80"/><text x="15.8886%" y="719.50"></text></g><g><title>Thread::call_run (90 samples, 0.02%)</title><rect x="15.6382%" y="773" width="0.0170%" height="15" fill="rgb(252,166,36)" fg:x="82992" fg:w="90"/><text x="15.8882%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (90 samples, 0.02%)</title><rect x="15.6382%" y="757" width="0.0170%" height="15" fill="rgb(245,132,34)" fg:x="82992" fg:w="90"/><text x="15.8882%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (90 samples, 0.02%)</title><rect x="15.6382%" y="741" width="0.0170%" height="15" fill="rgb(236,54,3)" fg:x="82992" fg:w="90"/><text x="15.8882%" y="751.50"></text></g><g><title>G1_Refine#2 (101 samples, 0.02%)</title><rect x="15.6363%" y="837" width="0.0190%" height="15" fill="rgb(241,173,43)" fg:x="82982" fg:w="101"/><text x="15.8863%" y="847.50"></text></g><g><title>__GI___clone (97 samples, 0.02%)</title><rect x="15.6371%" y="821" width="0.0183%" height="15" fill="rgb(215,190,9)" fg:x="82986" fg:w="97"/><text x="15.8871%" y="831.50"></text></g><g><title>start_thread (91 samples, 0.02%)</title><rect x="15.6382%" y="805" width="0.0171%" height="15" fill="rgb(242,101,16)" fg:x="82992" fg:w="91"/><text x="15.8882%" y="815.50"></text></g><g><title>thread_native_entry (91 samples, 0.02%)</title><rect x="15.6382%" y="789" width="0.0171%" height="15" fill="rgb(223,190,21)" fg:x="82992" fg:w="91"/><text x="15.8882%" y="799.50"></text></g><g><title>G1_Refine#3 (76 samples, 0.01%)</title><rect x="15.6554%" y="837" width="0.0143%" height="15" fill="rgb(215,228,25)" fg:x="83083" fg:w="76"/><text x="15.9054%" y="847.50"></text></g><g><title>__GI___clone (74 samples, 0.01%)</title><rect x="15.6557%" y="821" width="0.0139%" height="15" fill="rgb(225,36,22)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="831.50"></text></g><g><title>start_thread (74 samples, 0.01%)</title><rect x="15.6557%" y="805" width="0.0139%" height="15" fill="rgb(251,106,46)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="815.50"></text></g><g><title>thread_native_entry (74 samples, 0.01%)</title><rect x="15.6557%" y="789" width="0.0139%" height="15" fill="rgb(208,90,1)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="799.50"></text></g><g><title>Thread::call_run (74 samples, 0.01%)</title><rect x="15.6557%" y="773" width="0.0139%" height="15" fill="rgb(243,10,4)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (74 samples, 0.01%)</title><rect x="15.6557%" y="757" width="0.0139%" height="15" fill="rgb(212,137,27)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (74 samples, 0.01%)</title><rect x="15.6557%" y="741" width="0.0139%" height="15" fill="rgb(231,220,49)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="751.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (92 samples, 0.02%)</title><rect x="15.6832%" y="709" width="0.0173%" height="15" fill="rgb(237,96,20)" fg:x="83231" fg:w="92"/><text x="15.9332%" y="719.50"></text></g><g><title>G1CollectionSet::iterate (95 samples, 0.02%)</title><rect x="15.6829%" y="725" width="0.0179%" height="15" fill="rgb(239,229,30)" fg:x="83229" fg:w="95"/><text x="15.9329%" y="735.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (128 samples, 0.02%)</title><rect x="15.6827%" y="741" width="0.0241%" height="15" fill="rgb(219,65,33)" fg:x="83228" fg:w="128"/><text x="15.9327%" y="751.50"></text></g><g><title>__GI___clone (136 samples, 0.03%)</title><rect x="15.6827%" y="821" width="0.0256%" height="15" fill="rgb(243,134,7)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="831.50"></text></g><g><title>start_thread (136 samples, 0.03%)</title><rect x="15.6827%" y="805" width="0.0256%" height="15" fill="rgb(216,177,54)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="815.50"></text></g><g><title>thread_native_entry (136 samples, 0.03%)</title><rect x="15.6827%" y="789" width="0.0256%" height="15" fill="rgb(211,160,20)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="799.50"></text></g><g><title>Thread::call_run (136 samples, 0.03%)</title><rect x="15.6827%" y="773" width="0.0256%" height="15" fill="rgb(239,85,39)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (136 samples, 0.03%)</title><rect x="15.6827%" y="757" width="0.0256%" height="15" fill="rgb(232,125,22)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="767.50"></text></g><g><title>G1_Young_RemSet (141 samples, 0.03%)</title><rect x="15.6821%" y="837" width="0.0266%" height="15" fill="rgb(244,57,34)" fg:x="83225" fg:w="141"/><text x="15.9321%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (102 samples, 0.02%)</title><rect x="15.7420%" y="693" width="0.0192%" height="15" fill="rgb(214,203,32)" fg:x="83543" fg:w="102"/><text x="15.9920%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (232 samples, 0.04%)</title><rect x="15.7185%" y="709" width="0.0437%" height="15" fill="rgb(207,58,43)" fg:x="83418" fg:w="232"/><text x="15.9685%" y="719.50"></text></g><g><title>SpinPause (69 samples, 0.01%)</title><rect x="15.7639%" y="709" width="0.0130%" height="15" fill="rgb(215,193,15)" fg:x="83659" fg:w="69"/><text x="16.0139%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (337 samples, 0.06%)</title><rect x="15.7145%" y="725" width="0.0635%" height="15" fill="rgb(232,15,44)" fg:x="83397" fg:w="337"/><text x="15.9645%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (138 samples, 0.03%)</title><rect x="15.7842%" y="629" width="0.0260%" height="15" fill="rgb(212,3,48)" fg:x="83767" fg:w="138"/><text x="16.0342%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (97 samples, 0.02%)</title><rect x="15.7920%" y="613" width="0.0183%" height="15" fill="rgb(218,128,7)" fg:x="83808" fg:w="97"/><text x="16.0420%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (177 samples, 0.03%)</title><rect x="15.7782%" y="645" width="0.0334%" height="15" fill="rgb(226,216,39)" fg:x="83735" fg:w="177"/><text x="16.0282%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (203 samples, 0.04%)</title><rect x="15.7782%" y="693" width="0.0383%" height="15" fill="rgb(243,47,51)" fg:x="83735" fg:w="203"/><text x="16.0282%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (203 samples, 0.04%)</title><rect x="15.7782%" y="677" width="0.0383%" height="15" fill="rgb(241,183,40)" fg:x="83735" fg:w="203"/><text x="16.0282%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (203 samples, 0.04%)</title><rect x="15.7782%" y="661" width="0.0383%" height="15" fill="rgb(231,217,32)" fg:x="83735" fg:w="203"/><text x="16.0282%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (254 samples, 0.05%)</title><rect x="15.7782%" y="725" width="0.0479%" height="15" fill="rgb(229,61,38)" fg:x="83735" fg:w="254"/><text x="16.0282%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (254 samples, 0.05%)</title><rect x="15.7782%" y="709" width="0.0479%" height="15" fill="rgb(225,210,5)" fg:x="83735" fg:w="254"/><text x="16.0282%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (99 samples, 0.02%)</title><rect x="15.8319%" y="629" width="0.0187%" height="15" fill="rgb(231,79,45)" fg:x="84020" fg:w="99"/><text x="16.0819%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.01%)</title><rect x="15.8366%" y="613" width="0.0139%" height="15" fill="rgb(224,100,7)" fg:x="84045" fg:w="74"/><text x="16.0866%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (135 samples, 0.03%)</title><rect x="15.8263%" y="645" width="0.0254%" height="15" fill="rgb(241,198,18)" fg:x="83990" fg:w="135"/><text x="16.0763%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (207 samples, 0.04%)</title><rect x="15.8263%" y="661" width="0.0390%" height="15" fill="rgb(252,97,53)" fg:x="83990" fg:w="207"/><text x="16.0763%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful<true, G1ScanObjsDuringScanRSClosure> (72 samples, 0.01%)</title><rect x="15.8517%" y="645" width="0.0136%" height="15" fill="rgb(220,88,7)" fg:x="84125" fg:w="72"/><text x="16.1017%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (213 samples, 0.04%)</title><rect x="15.8261%" y="677" width="0.0401%" height="15" fill="rgb(213,176,14)" fg:x="83989" fg:w="213"/><text x="16.0761%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (233 samples, 0.04%)</title><rect x="15.8261%" y="725" width="0.0439%" height="15" fill="rgb(246,73,7)" fg:x="83989" fg:w="233"/><text x="16.0761%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (233 samples, 0.04%)</title><rect x="15.8261%" y="709" width="0.0439%" height="15" fill="rgb(245,64,36)" fg:x="83989" fg:w="233"/><text x="16.0761%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (233 samples, 0.04%)</title><rect x="15.8261%" y="693" width="0.0439%" height="15" fill="rgb(245,80,10)" fg:x="83989" fg:w="233"/><text x="16.0761%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (107 samples, 0.02%)</title><rect x="15.8700%" y="709" width="0.0202%" height="15" fill="rgb(232,107,50)" fg:x="84222" fg:w="107"/><text x="16.1200%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (103 samples, 0.02%)</title><rect x="15.8707%" y="693" width="0.0194%" height="15" fill="rgb(253,3,0)" fg:x="84226" fg:w="103"/><text x="16.1207%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (103 samples, 0.02%)</title><rect x="15.8707%" y="677" width="0.0194%" height="15" fill="rgb(212,99,53)" fg:x="84226" fg:w="103"/><text x="16.1207%" y="687.50"></text></g><g><title>JavaThread::oops_do (103 samples, 0.02%)</title><rect x="15.8707%" y="661" width="0.0194%" height="15" fill="rgb(249,111,54)" fg:x="84226" fg:w="103"/><text x="16.1207%" y="671.50"></text></g><g><title>G1ParTask::work (946 samples, 0.18%)</title><rect x="15.7145%" y="741" width="0.1783%" height="15" fill="rgb(249,55,30)" fg:x="83397" fg:w="946"/><text x="15.9645%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (121 samples, 0.02%)</title><rect x="15.8700%" y="725" width="0.0228%" height="15" fill="rgb(237,47,42)" fg:x="84222" fg:w="121"/><text x="16.1200%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (58 samples, 0.01%)</title><rect x="15.8949%" y="741" width="0.0109%" height="15" fill="rgb(211,20,18)" fg:x="84354" fg:w="58"/><text x="16.1449%" y="751.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="15.9129%" y="645" width="0.0106%" height="15" fill="rgb(231,203,46)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="655.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="15.9129%" y="629" width="0.0106%" height="15" fill="rgb(237,142,3)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="639.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="15.9129%" y="613" width="0.0106%" height="15" fill="rgb(241,107,1)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="623.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="15.9129%" y="597" width="0.0106%" height="15" fill="rgb(229,83,13)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="15.9129%" y="661" width="0.0113%" height="15" fill="rgb(241,91,40)" fg:x="84450" fg:w="60"/><text x="16.1629%" y="671.50"></text></g><g><title>__GI___clone (1,116 samples, 0.21%)</title><rect x="15.7142%" y="821" width="0.2103%" height="15" fill="rgb(225,3,45)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="831.50"></text></g><g><title>start_thread (1,116 samples, 0.21%)</title><rect x="15.7142%" y="805" width="0.2103%" height="15" fill="rgb(244,223,14)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="815.50"></text></g><g><title>thread_native_entry (1,116 samples, 0.21%)</title><rect x="15.7142%" y="789" width="0.2103%" height="15" fill="rgb(224,124,37)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="799.50"></text></g><g><title>Thread::call_run (1,116 samples, 0.21%)</title><rect x="15.7142%" y="773" width="0.2103%" height="15" fill="rgb(251,171,30)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="783.50"></text></g><g><title>GangWorker::loop (1,116 samples, 0.21%)</title><rect x="15.7142%" y="757" width="0.2103%" height="15" fill="rgb(236,46,54)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (62 samples, 0.01%)</title><rect x="15.9128%" y="741" width="0.0117%" height="15" fill="rgb(245,213,5)" fg:x="84449" fg:w="62"/><text x="16.1628%" y="751.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.01%)</title><rect x="15.9128%" y="725" width="0.0117%" height="15" fill="rgb(230,144,27)" fg:x="84449" fg:w="62"/><text x="16.1628%" y="735.50"></text></g><g><title>__new_sem_wait_slow (62 samples, 0.01%)</title><rect x="15.9128%" y="709" width="0.0117%" height="15" fill="rgb(220,86,6)" fg:x="84449" fg:w="62"/><text x="16.1628%" y="719.50"></text></g><g><title>do_futex_wait (61 samples, 0.01%)</title><rect x="15.9129%" y="693" width="0.0115%" height="15" fill="rgb(240,20,13)" fg:x="84450" fg:w="61"/><text x="16.1629%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (61 samples, 0.01%)</title><rect x="15.9129%" y="677" width="0.0115%" height="15" fill="rgb(217,89,34)" fg:x="84450" fg:w="61"/><text x="16.1629%" y="687.50"></text></g><g><title>GC_Thread#0 (1,147 samples, 0.22%)</title><rect x="15.7087%" y="837" width="0.2161%" height="15" fill="rgb(229,13,5)" fg:x="83366" fg:w="1147"/><text x="15.9587%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (107 samples, 0.02%)</title><rect x="15.9555%" y="693" width="0.0202%" height="15" fill="rgb(244,67,35)" fg:x="84676" fg:w="107"/><text x="16.2055%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (199 samples, 0.04%)</title><rect x="15.9386%" y="709" width="0.0375%" height="15" fill="rgb(221,40,2)" fg:x="84586" fg:w="199"/><text x="16.1886%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (270 samples, 0.05%)</title><rect x="15.9369%" y="725" width="0.0509%" height="15" fill="rgb(237,157,21)" fg:x="84577" fg:w="270"/><text x="16.1869%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.01%)</title><rect x="15.9981%" y="613" width="0.0147%" height="15" fill="rgb(222,94,11)" fg:x="84902" fg:w="78"/><text x="16.2481%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (115 samples, 0.02%)</title><rect x="15.9913%" y="629" width="0.0217%" height="15" fill="rgb(249,113,6)" fg:x="84866" fg:w="115"/><text x="16.2413%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (134 samples, 0.03%)</title><rect x="15.9883%" y="645" width="0.0252%" height="15" fill="rgb(238,137,36)" fg:x="84850" fg:w="134"/><text x="16.2383%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (173 samples, 0.03%)</title><rect x="15.9881%" y="693" width="0.0326%" height="15" fill="rgb(210,102,26)" fg:x="84849" fg:w="173"/><text x="16.2381%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (173 samples, 0.03%)</title><rect x="15.9881%" y="677" width="0.0326%" height="15" fill="rgb(218,30,30)" fg:x="84849" fg:w="173"/><text x="16.2381%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (172 samples, 0.03%)</title><rect x="15.9883%" y="661" width="0.0324%" height="15" fill="rgb(214,67,26)" fg:x="84850" fg:w="172"/><text x="16.2383%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (200 samples, 0.04%)</title><rect x="15.9879%" y="725" width="0.0377%" height="15" fill="rgb(251,9,53)" fg:x="84848" fg:w="200"/><text x="16.2379%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (200 samples, 0.04%)</title><rect x="15.9879%" y="709" width="0.0377%" height="15" fill="rgb(228,204,25)" fg:x="84848" fg:w="200"/><text x="16.2379%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (86 samples, 0.02%)</title><rect x="16.0362%" y="613" width="0.0162%" height="15" fill="rgb(207,153,8)" fg:x="85104" fg:w="86"/><text x="16.2862%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (112 samples, 0.02%)</title><rect x="16.0315%" y="629" width="0.0211%" height="15" fill="rgb(242,9,16)" fg:x="85079" fg:w="112"/><text x="16.2815%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (145 samples, 0.03%)</title><rect x="16.0266%" y="645" width="0.0273%" height="15" fill="rgb(217,211,10)" fg:x="85053" fg:w="145"/><text x="16.2766%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (218 samples, 0.04%)</title><rect x="16.0262%" y="661" width="0.0411%" height="15" fill="rgb(219,228,52)" fg:x="85051" fg:w="218"/><text x="16.2762%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful<true, G1ScanObjsDuringScanRSClosure> (71 samples, 0.01%)</title><rect x="16.0539%" y="645" width="0.0134%" height="15" fill="rgb(231,92,29)" fg:x="85198" fg:w="71"/><text x="16.3039%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (232 samples, 0.04%)</title><rect x="16.0258%" y="677" width="0.0437%" height="15" fill="rgb(232,8,23)" fg:x="85049" fg:w="232"/><text x="16.2758%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (243 samples, 0.05%)</title><rect x="16.0256%" y="725" width="0.0458%" height="15" fill="rgb(216,211,34)" fg:x="85048" fg:w="243"/><text x="16.2756%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (243 samples, 0.05%)</title><rect x="16.0256%" y="709" width="0.0458%" height="15" fill="rgb(236,151,0)" fg:x="85048" fg:w="243"/><text x="16.2756%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (243 samples, 0.05%)</title><rect x="16.0256%" y="693" width="0.0458%" height="15" fill="rgb(209,168,3)" fg:x="85048" fg:w="243"/><text x="16.2756%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (63 samples, 0.01%)</title><rect x="16.0724%" y="693" width="0.0119%" height="15" fill="rgb(208,129,28)" fg:x="85296" fg:w="63"/><text x="16.3224%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (63 samples, 0.01%)</title><rect x="16.0724%" y="677" width="0.0119%" height="15" fill="rgb(229,78,22)" fg:x="85296" fg:w="63"/><text x="16.3224%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (63 samples, 0.01%)</title><rect x="16.0724%" y="661" width="0.0119%" height="15" fill="rgb(228,187,13)" fg:x="85296" fg:w="63"/><text x="16.3224%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (133 samples, 0.03%)</title><rect x="16.0724%" y="709" width="0.0251%" height="15" fill="rgb(240,119,24)" fg:x="85296" fg:w="133"/><text x="16.3224%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (70 samples, 0.01%)</title><rect x="16.0842%" y="693" width="0.0132%" height="15" fill="rgb(209,194,42)" fg:x="85359" fg:w="70"/><text x="16.3342%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (70 samples, 0.01%)</title><rect x="16.0842%" y="677" width="0.0132%" height="15" fill="rgb(247,200,46)" fg:x="85359" fg:w="70"/><text x="16.3342%" y="687.50"></text></g><g><title>JavaThread::oops_do (69 samples, 0.01%)</title><rect x="16.0844%" y="661" width="0.0130%" height="15" fill="rgb(218,76,16)" fg:x="85360" fg:w="69"/><text x="16.3344%" y="671.50"></text></g><g><title>G1ParTask::work (891 samples, 0.17%)</title><rect x="15.9369%" y="741" width="0.1679%" height="15" fill="rgb(225,21,48)" fg:x="84577" fg:w="891"/><text x="16.1869%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (177 samples, 0.03%)</title><rect x="16.0714%" y="725" width="0.0334%" height="15" fill="rgb(239,223,50)" fg:x="85291" fg:w="177"/><text x="16.3214%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (76 samples, 0.01%)</title><rect x="16.1070%" y="741" width="0.0143%" height="15" fill="rgb(244,45,21)" fg:x="85480" fg:w="76"/><text x="16.3570%" y="751.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="16.1289%" y="645" width="0.0121%" height="15" fill="rgb(232,33,43)" fg:x="85596" fg:w="64"/><text x="16.3789%" y="655.50"></text></g><g><title>__x64_sys_futex (63 samples, 0.01%)</title><rect x="16.1291%" y="629" width="0.0119%" height="15" fill="rgb(209,8,3)" fg:x="85597" fg:w="63"/><text x="16.3791%" y="639.50"></text></g><g><title>do_futex (63 samples, 0.01%)</title><rect x="16.1291%" y="613" width="0.0119%" height="15" fill="rgb(214,25,53)" fg:x="85597" fg:w="63"/><text x="16.3791%" y="623.50"></text></g><g><title>futex_wait (63 samples, 0.01%)</title><rect x="16.1291%" y="597" width="0.0119%" height="15" fill="rgb(254,186,54)" fg:x="85597" fg:w="63"/><text x="16.3791%" y="607.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.01%)</title><rect x="16.1293%" y="581" width="0.0117%" height="15" fill="rgb(208,174,49)" fg:x="85598" fg:w="62"/><text x="16.3793%" y="591.50"></text></g><g><title>schedule (61 samples, 0.01%)</title><rect x="16.1295%" y="565" width="0.0115%" height="15" fill="rgb(233,191,51)" fg:x="85599" fg:w="61"/><text x="16.3795%" y="575.50"></text></g><g><title>__schedule (61 samples, 0.01%)</title><rect x="16.1295%" y="549" width="0.0115%" height="15" fill="rgb(222,134,10)" fg:x="85599" fg:w="61"/><text x="16.3795%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="16.1289%" y="661" width="0.0122%" height="15" fill="rgb(230,226,20)" fg:x="85596" fg:w="65"/><text x="16.3789%" y="671.50"></text></g><g><title>__GI___clone (1,119 samples, 0.21%)</title><rect x="15.9305%" y="821" width="0.2109%" height="15" fill="rgb(251,111,25)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="831.50"></text></g><g><title>start_thread (1,119 samples, 0.21%)</title><rect x="15.9305%" y="805" width="0.2109%" height="15" fill="rgb(224,40,46)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="815.50"></text></g><g><title>thread_native_entry (1,119 samples, 0.21%)</title><rect x="15.9305%" y="789" width="0.2109%" height="15" fill="rgb(236,108,47)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="799.50"></text></g><g><title>Thread::call_run (1,119 samples, 0.21%)</title><rect x="15.9305%" y="773" width="0.2109%" height="15" fill="rgb(234,93,0)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="783.50"></text></g><g><title>GangWorker::loop (1,119 samples, 0.21%)</title><rect x="15.9305%" y="757" width="0.2109%" height="15" fill="rgb(224,213,32)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.01%)</title><rect x="16.1289%" y="741" width="0.0124%" height="15" fill="rgb(251,11,48)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="751.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.01%)</title><rect x="16.1289%" y="725" width="0.0124%" height="15" fill="rgb(236,173,5)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="735.50"></text></g><g><title>__new_sem_wait_slow (66 samples, 0.01%)</title><rect x="16.1289%" y="709" width="0.0124%" height="15" fill="rgb(230,95,12)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="719.50"></text></g><g><title>do_futex_wait (66 samples, 0.01%)</title><rect x="16.1289%" y="693" width="0.0124%" height="15" fill="rgb(232,209,1)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (66 samples, 0.01%)</title><rect x="16.1289%" y="677" width="0.0124%" height="15" fill="rgb(232,6,1)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="687.50"></text></g><g><title>GC_Thread#1 (1,152 samples, 0.22%)</title><rect x="15.9248%" y="837" width="0.2171%" height="15" fill="rgb(210,224,50)" fg:x="84513" fg:w="1152"/><text x="16.1748%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (89 samples, 0.02%)</title><rect x="16.1626%" y="693" width="0.0168%" height="15" fill="rgb(228,127,35)" fg:x="85775" fg:w="89"/><text x="16.4126%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (160 samples, 0.03%)</title><rect x="16.1500%" y="709" width="0.0301%" height="15" fill="rgb(245,102,45)" fg:x="85708" fg:w="160"/><text x="16.4000%" y="719.50"></text></g><g><title>SpinPause (56 samples, 0.01%)</title><rect x="16.1811%" y="709" width="0.0106%" height="15" fill="rgb(214,1,49)" fg:x="85873" fg:w="56"/><text x="16.4311%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (242 samples, 0.05%)</title><rect x="16.1477%" y="725" width="0.0456%" height="15" fill="rgb(226,163,40)" fg:x="85696" fg:w="242"/><text x="16.3977%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (105 samples, 0.02%)</title><rect x="16.2095%" y="613" width="0.0198%" height="15" fill="rgb(239,212,28)" fg:x="86024" fg:w="105"/><text x="16.4595%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (157 samples, 0.03%)</title><rect x="16.1999%" y="629" width="0.0296%" height="15" fill="rgb(220,20,13)" fg:x="85973" fg:w="157"/><text x="16.4499%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (194 samples, 0.04%)</title><rect x="16.1935%" y="645" width="0.0366%" height="15" fill="rgb(210,164,35)" fg:x="85939" fg:w="194"/><text x="16.4435%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (218 samples, 0.04%)</title><rect x="16.1935%" y="693" width="0.0411%" height="15" fill="rgb(248,109,41)" fg:x="85939" fg:w="218"/><text x="16.4435%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (218 samples, 0.04%)</title><rect x="16.1935%" y="677" width="0.0411%" height="15" fill="rgb(238,23,50)" fg:x="85939" fg:w="218"/><text x="16.4435%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (218 samples, 0.04%)</title><rect x="16.1935%" y="661" width="0.0411%" height="15" fill="rgb(211,48,49)" fg:x="85939" fg:w="218"/><text x="16.4435%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (240 samples, 0.05%)</title><rect x="16.1935%" y="725" width="0.0452%" height="15" fill="rgb(223,36,21)" fg:x="85939" fg:w="240"/><text x="16.4435%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (240 samples, 0.05%)</title><rect x="16.1935%" y="709" width="0.0452%" height="15" fill="rgb(207,123,46)" fg:x="85939" fg:w="240"/><text x="16.4435%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="16.2389%" y="645" width="0.0107%" height="15" fill="rgb(240,218,32)" fg:x="86180" fg:w="57"/><text x="16.4889%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (88 samples, 0.02%)</title><rect x="16.2389%" y="661" width="0.0166%" height="15" fill="rgb(252,5,43)" fg:x="86180" fg:w="88"/><text x="16.4889%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (93 samples, 0.02%)</title><rect x="16.2389%" y="677" width="0.0175%" height="15" fill="rgb(252,84,19)" fg:x="86180" fg:w="93"/><text x="16.4889%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (104 samples, 0.02%)</title><rect x="16.2387%" y="725" width="0.0196%" height="15" fill="rgb(243,152,39)" fg:x="86179" fg:w="104"/><text x="16.4887%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (104 samples, 0.02%)</title><rect x="16.2387%" y="709" width="0.0196%" height="15" fill="rgb(234,160,15)" fg:x="86179" fg:w="104"/><text x="16.4887%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (103 samples, 0.02%)</title><rect x="16.2389%" y="693" width="0.0194%" height="15" fill="rgb(237,34,20)" fg:x="86180" fg:w="103"/><text x="16.4889%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (136 samples, 0.03%)</title><rect x="16.2712%" y="629" width="0.0256%" height="15" fill="rgb(229,97,13)" fg:x="86351" fg:w="136"/><text x="16.5212%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (91 samples, 0.02%)</title><rect x="16.2796%" y="613" width="0.0171%" height="15" fill="rgb(234,71,50)" fg:x="86396" fg:w="91"/><text x="16.5296%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (207 samples, 0.04%)</title><rect x="16.2585%" y="693" width="0.0390%" height="15" fill="rgb(253,155,4)" fg:x="86284" fg:w="207"/><text x="16.5085%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (202 samples, 0.04%)</title><rect x="16.2595%" y="677" width="0.0381%" height="15" fill="rgb(222,185,37)" fg:x="86289" fg:w="202"/><text x="16.5095%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (202 samples, 0.04%)</title><rect x="16.2595%" y="661" width="0.0381%" height="15" fill="rgb(251,177,13)" fg:x="86289" fg:w="202"/><text x="16.5095%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (179 samples, 0.03%)</title><rect x="16.2638%" y="645" width="0.0337%" height="15" fill="rgb(250,179,40)" fg:x="86312" fg:w="179"/><text x="16.5138%" y="655.50"></text></g><g><title>frame::oops_do_internal (76 samples, 0.01%)</title><rect x="16.3011%" y="645" width="0.0143%" height="15" fill="rgb(242,44,2)" fg:x="86510" fg:w="76"/><text x="16.5511%" y="655.50"></text></g><g><title>OopMapSet::oops_do (76 samples, 0.01%)</title><rect x="16.3011%" y="629" width="0.0143%" height="15" fill="rgb(216,177,13)" fg:x="86510" fg:w="76"/><text x="16.5511%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (68 samples, 0.01%)</title><rect x="16.3026%" y="613" width="0.0128%" height="15" fill="rgb(216,106,43)" fg:x="86518" fg:w="68"/><text x="16.5526%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (329 samples, 0.06%)</title><rect x="16.2585%" y="709" width="0.0620%" height="15" fill="rgb(216,183,2)" fg:x="86284" fg:w="329"/><text x="16.5085%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (122 samples, 0.02%)</title><rect x="16.2975%" y="693" width="0.0230%" height="15" fill="rgb(249,75,3)" fg:x="86491" fg:w="122"/><text x="16.5475%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (122 samples, 0.02%)</title><rect x="16.2975%" y="677" width="0.0230%" height="15" fill="rgb(219,67,39)" fg:x="86491" fg:w="122"/><text x="16.5475%" y="687.50"></text></g><g><title>JavaThread::oops_do (122 samples, 0.02%)</title><rect x="16.2975%" y="661" width="0.0230%" height="15" fill="rgb(253,228,2)" fg:x="86491" fg:w="122"/><text x="16.5475%" y="671.50"></text></g><g><title>G1RootProcessor::evacuate_roots (342 samples, 0.06%)</title><rect x="16.2583%" y="725" width="0.0644%" height="15" fill="rgb(235,138,27)" fg:x="86283" fg:w="342"/><text x="16.5083%" y="735.50"></text></g><g><title>G1ParTask::work (930 samples, 0.18%)</title><rect x="16.1477%" y="741" width="0.1752%" height="15" fill="rgb(236,97,51)" fg:x="85696" fg:w="930"/><text x="16.3977%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (61 samples, 0.01%)</title><rect x="16.3249%" y="709" width="0.0115%" height="15" fill="rgb(240,80,30)" fg:x="86636" fg:w="61"/><text x="16.5749%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (72 samples, 0.01%)</title><rect x="16.3249%" y="725" width="0.0136%" height="15" fill="rgb(230,178,19)" fg:x="86636" fg:w="72"/><text x="16.5749%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (85 samples, 0.02%)</title><rect x="16.3249%" y="741" width="0.0160%" height="15" fill="rgb(210,190,27)" fg:x="86636" fg:w="85"/><text x="16.5749%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="16.3516%" y="517" width="0.0117%" height="15" fill="rgb(222,107,31)" fg:x="86778" fg:w="62"/><text x="16.6016%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="16.3516%" y="501" width="0.0117%" height="15" fill="rgb(216,127,34)" fg:x="86778" fg:w="62"/><text x="16.6016%" y="511.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="16.3516%" y="485" width="0.0117%" height="15" fill="rgb(234,116,52)" fg:x="86778" fg:w="62"/><text x="16.6016%" y="495.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="16.3512%" y="533" width="0.0122%" height="15" fill="rgb(222,124,15)" fg:x="86776" fg:w="65"/><text x="16.6012%" y="543.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.01%)</title><rect x="16.3499%" y="581" width="0.0145%" height="15" fill="rgb(231,179,28)" fg:x="86769" fg:w="77"/><text x="16.5999%" y="591.50"></text></g><g><title>schedule (74 samples, 0.01%)</title><rect x="16.3505%" y="565" width="0.0139%" height="15" fill="rgb(226,93,45)" fg:x="86772" fg:w="74"/><text x="16.6005%" y="575.50"></text></g><g><title>__schedule (74 samples, 0.01%)</title><rect x="16.3505%" y="549" width="0.0139%" height="15" fill="rgb(215,8,51)" fg:x="86772" fg:w="74"/><text x="16.6005%" y="559.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="16.3492%" y="645" width="0.0155%" height="15" fill="rgb(223,106,5)" fg:x="86765" fg:w="82"/><text x="16.5992%" y="655.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.02%)</title><rect x="16.3493%" y="629" width="0.0153%" height="15" fill="rgb(250,191,5)" fg:x="86766" fg:w="81"/><text x="16.5993%" y="639.50"></text></g><g><title>do_futex (81 samples, 0.02%)</title><rect x="16.3493%" y="613" width="0.0153%" height="15" fill="rgb(242,132,44)" fg:x="86766" fg:w="81"/><text x="16.5993%" y="623.50"></text></g><g><title>futex_wait (79 samples, 0.01%)</title><rect x="16.3497%" y="597" width="0.0149%" height="15" fill="rgb(251,152,29)" fg:x="86768" fg:w="79"/><text x="16.5997%" y="607.50"></text></g><g><title>__GI___clone (1,166 samples, 0.22%)</title><rect x="16.1453%" y="821" width="0.2197%" height="15" fill="rgb(218,179,5)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="831.50"></text></g><g><title>start_thread (1,166 samples, 0.22%)</title><rect x="16.1453%" y="805" width="0.2197%" height="15" fill="rgb(227,67,19)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="815.50"></text></g><g><title>thread_native_entry (1,166 samples, 0.22%)</title><rect x="16.1453%" y="789" width="0.2197%" height="15" fill="rgb(233,119,31)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="799.50"></text></g><g><title>Thread::call_run (1,166 samples, 0.22%)</title><rect x="16.1453%" y="773" width="0.2197%" height="15" fill="rgb(241,120,22)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="783.50"></text></g><g><title>GangWorker::loop (1,166 samples, 0.22%)</title><rect x="16.1453%" y="757" width="0.2197%" height="15" fill="rgb(224,102,30)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (87 samples, 0.02%)</title><rect x="16.3486%" y="741" width="0.0164%" height="15" fill="rgb(210,164,37)" fg:x="86762" fg:w="87"/><text x="16.5986%" y="751.50"></text></g><g><title>PosixSemaphore::wait (87 samples, 0.02%)</title><rect x="16.3486%" y="725" width="0.0164%" height="15" fill="rgb(226,191,16)" fg:x="86762" fg:w="87"/><text x="16.5986%" y="735.50"></text></g><g><title>__new_sem_wait_slow (87 samples, 0.02%)</title><rect x="16.3486%" y="709" width="0.0164%" height="15" fill="rgb(214,40,45)" fg:x="86762" fg:w="87"/><text x="16.5986%" y="719.50"></text></g><g><title>do_futex_wait (86 samples, 0.02%)</title><rect x="16.3488%" y="693" width="0.0162%" height="15" fill="rgb(244,29,26)" fg:x="86763" fg:w="86"/><text x="16.5988%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (85 samples, 0.02%)</title><rect x="16.3490%" y="677" width="0.0160%" height="15" fill="rgb(216,16,5)" fg:x="86764" fg:w="85"/><text x="16.5990%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="16.3492%" y="661" width="0.0158%" height="15" fill="rgb(249,76,35)" fg:x="86765" fg:w="84"/><text x="16.5992%" y="671.50"></text></g><g><title>GC_Thread#2 (1,185 samples, 0.22%)</title><rect x="16.1419%" y="837" width="0.2233%" height="15" fill="rgb(207,11,44)" fg:x="85665" fg:w="1185"/><text x="16.3919%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (99 samples, 0.02%)</title><rect x="16.3946%" y="693" width="0.0187%" height="15" fill="rgb(228,190,49)" fg:x="87006" fg:w="99"/><text x="16.6446%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (193 samples, 0.04%)</title><rect x="16.3770%" y="709" width="0.0364%" height="15" fill="rgb(214,173,12)" fg:x="86913" fg:w="193"/><text x="16.6270%" y="719.50"></text></g><g><title>SpinPause (91 samples, 0.02%)</title><rect x="16.4144%" y="709" width="0.0171%" height="15" fill="rgb(218,26,35)" fg:x="87111" fg:w="91"/><text x="16.6644%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (308 samples, 0.06%)</title><rect x="16.3738%" y="725" width="0.0580%" height="15" fill="rgb(220,200,19)" fg:x="86896" fg:w="308"/><text x="16.6238%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (57 samples, 0.01%)</title><rect x="16.4336%" y="629" width="0.0107%" height="15" fill="rgb(239,95,49)" fg:x="87213" fg:w="57"/><text x="16.6836%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.01%)</title><rect x="16.4319%" y="645" width="0.0130%" height="15" fill="rgb(235,85,53)" fg:x="87204" fg:w="69"/><text x="16.6819%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (89 samples, 0.02%)</title><rect x="16.4319%" y="693" width="0.0168%" height="15" fill="rgb(233,133,31)" fg:x="87204" fg:w="89"/><text x="16.6819%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (89 samples, 0.02%)</title><rect x="16.4319%" y="677" width="0.0168%" height="15" fill="rgb(218,25,20)" fg:x="87204" fg:w="89"/><text x="16.6819%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (89 samples, 0.02%)</title><rect x="16.4319%" y="661" width="0.0168%" height="15" fill="rgb(252,210,38)" fg:x="87204" fg:w="89"/><text x="16.6819%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (70 samples, 0.01%)</title><rect x="16.4507%" y="645" width="0.0132%" height="15" fill="rgb(242,134,21)" fg:x="87304" fg:w="70"/><text x="16.7007%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (86 samples, 0.02%)</title><rect x="16.4487%" y="661" width="0.0162%" height="15" fill="rgb(213,28,48)" fg:x="87293" fg:w="86"/><text x="16.6987%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (177 samples, 0.03%)</title><rect x="16.4319%" y="725" width="0.0334%" height="15" fill="rgb(250,196,2)" fg:x="87204" fg:w="177"/><text x="16.6819%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (177 samples, 0.03%)</title><rect x="16.4319%" y="709" width="0.0334%" height="15" fill="rgb(227,5,17)" fg:x="87204" fg:w="177"/><text x="16.6819%" y="719.50"></text></g><g><title>G1HotCardCache::drain (88 samples, 0.02%)</title><rect x="16.4487%" y="693" width="0.0166%" height="15" fill="rgb(221,226,24)" fg:x="87293" fg:w="88"/><text x="16.6987%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (88 samples, 0.02%)</title><rect x="16.4487%" y="677" width="0.0166%" height="15" fill="rgb(211,5,48)" fg:x="87293" fg:w="88"/><text x="16.6987%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (93 samples, 0.02%)</title><rect x="16.4684%" y="629" width="0.0175%" height="15" fill="rgb(219,150,6)" fg:x="87398" fg:w="93"/><text x="16.7184%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (67 samples, 0.01%)</title><rect x="16.4733%" y="613" width="0.0126%" height="15" fill="rgb(251,46,16)" fg:x="87424" fg:w="67"/><text x="16.7233%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (110 samples, 0.02%)</title><rect x="16.4660%" y="645" width="0.0207%" height="15" fill="rgb(220,204,40)" fg:x="87385" fg:w="110"/><text x="16.7160%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (141 samples, 0.03%)</title><rect x="16.4660%" y="661" width="0.0266%" height="15" fill="rgb(211,85,2)" fg:x="87385" fg:w="141"/><text x="16.7160%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (146 samples, 0.03%)</title><rect x="16.4658%" y="677" width="0.0275%" height="15" fill="rgb(229,17,7)" fg:x="87384" fg:w="146"/><text x="16.7158%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (165 samples, 0.03%)</title><rect x="16.4652%" y="725" width="0.0311%" height="15" fill="rgb(239,72,28)" fg:x="87381" fg:w="165"/><text x="16.7152%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (165 samples, 0.03%)</title><rect x="16.4652%" y="709" width="0.0311%" height="15" fill="rgb(230,47,54)" fg:x="87381" fg:w="165"/><text x="16.7152%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (165 samples, 0.03%)</title><rect x="16.4652%" y="693" width="0.0311%" height="15" fill="rgb(214,50,8)" fg:x="87381" fg:w="165"/><text x="16.7152%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (62 samples, 0.01%)</title><rect x="16.5005%" y="629" width="0.0117%" height="15" fill="rgb(216,198,43)" fg:x="87568" fg:w="62"/><text x="16.7505%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (88 samples, 0.02%)</title><rect x="16.4963%" y="693" width="0.0166%" height="15" fill="rgb(234,20,35)" fg:x="87546" fg:w="88"/><text x="16.7463%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (87 samples, 0.02%)</title><rect x="16.4965%" y="677" width="0.0164%" height="15" fill="rgb(254,45,19)" fg:x="87547" fg:w="87"/><text x="16.7465%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (87 samples, 0.02%)</title><rect x="16.4965%" y="661" width="0.0164%" height="15" fill="rgb(219,14,44)" fg:x="87547" fg:w="87"/><text x="16.7465%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (80 samples, 0.02%)</title><rect x="16.4978%" y="645" width="0.0151%" height="15" fill="rgb(217,220,26)" fg:x="87554" fg:w="80"/><text x="16.7478%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (166 samples, 0.03%)</title><rect x="16.4963%" y="709" width="0.0313%" height="15" fill="rgb(213,158,28)" fg:x="87546" fg:w="166"/><text x="16.7463%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (77 samples, 0.01%)</title><rect x="16.5131%" y="693" width="0.0145%" height="15" fill="rgb(252,51,52)" fg:x="87635" fg:w="77"/><text x="16.7631%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (77 samples, 0.01%)</title><rect x="16.5131%" y="677" width="0.0145%" height="15" fill="rgb(246,89,16)" fg:x="87635" fg:w="77"/><text x="16.7631%" y="687.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.01%)</title><rect x="16.5133%" y="661" width="0.0143%" height="15" fill="rgb(216,158,49)" fg:x="87636" fg:w="76"/><text x="16.7633%" y="671.50"></text></g><g><title>G1RootProcessor::evacuate_roots (198 samples, 0.04%)</title><rect x="16.4963%" y="725" width="0.0373%" height="15" fill="rgb(236,107,19)" fg:x="87546" fg:w="198"/><text x="16.7463%" y="735.50"></text></g><g><title>G1ParTask::work (849 samples, 0.16%)</title><rect x="16.3738%" y="741" width="0.1600%" height="15" fill="rgb(228,185,30)" fg:x="86896" fg:w="849"/><text x="16.6238%" y="751.50"></text></g><g><title>__GI___clone (1,016 samples, 0.19%)</title><rect x="16.3682%" y="821" width="0.1914%" height="15" fill="rgb(246,134,8)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="831.50"></text></g><g><title>start_thread (1,016 samples, 0.19%)</title><rect x="16.3682%" y="805" width="0.1914%" height="15" fill="rgb(214,143,50)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="815.50"></text></g><g><title>thread_native_entry (1,016 samples, 0.19%)</title><rect x="16.3682%" y="789" width="0.1914%" height="15" fill="rgb(228,75,8)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="799.50"></text></g><g><title>Thread::call_run (1,016 samples, 0.19%)</title><rect x="16.3682%" y="773" width="0.1914%" height="15" fill="rgb(207,175,4)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="783.50"></text></g><g><title>GangWorker::loop (1,016 samples, 0.19%)</title><rect x="16.3682%" y="757" width="0.1914%" height="15" fill="rgb(205,108,24)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (57 samples, 0.01%)</title><rect x="16.5489%" y="741" width="0.0107%" height="15" fill="rgb(244,120,49)" fg:x="87825" fg:w="57"/><text x="16.7989%" y="751.50"></text></g><g><title>PosixSemaphore::wait (57 samples, 0.01%)</title><rect x="16.5489%" y="725" width="0.0107%" height="15" fill="rgb(223,47,38)" fg:x="87825" fg:w="57"/><text x="16.7989%" y="735.50"></text></g><g><title>__new_sem_wait_slow (56 samples, 0.01%)</title><rect x="16.5491%" y="709" width="0.0106%" height="15" fill="rgb(229,179,11)" fg:x="87826" fg:w="56"/><text x="16.7991%" y="719.50"></text></g><g><title>do_futex_wait (56 samples, 0.01%)</title><rect x="16.5491%" y="693" width="0.0106%" height="15" fill="rgb(231,122,1)" fg:x="87826" fg:w="56"/><text x="16.7991%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (56 samples, 0.01%)</title><rect x="16.5491%" y="677" width="0.0106%" height="15" fill="rgb(245,119,9)" fg:x="87826" fg:w="56"/><text x="16.7991%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="16.5493%" y="661" width="0.0104%" height="15" fill="rgb(241,163,25)" fg:x="87827" fg:w="55"/><text x="16.7993%" y="671.50"></text></g><g><title>GC_Thread#3 (1,034 samples, 0.19%)</title><rect x="16.3652%" y="837" width="0.1948%" height="15" fill="rgb(217,214,3)" fg:x="86850" fg:w="1034"/><text x="16.6152%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (198 samples, 0.04%)</title><rect x="16.5683%" y="709" width="0.0373%" height="15" fill="rgb(240,86,28)" fg:x="87928" fg:w="198"/><text x="16.8183%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (109 samples, 0.02%)</title><rect x="16.5851%" y="693" width="0.0205%" height="15" fill="rgb(215,47,9)" fg:x="88017" fg:w="109"/><text x="16.8351%" y="703.50"></text></g><g><title>SpinPause (99 samples, 0.02%)</title><rect x="16.6071%" y="709" width="0.0187%" height="15" fill="rgb(252,25,45)" fg:x="88134" fg:w="99"/><text x="16.8571%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (324 samples, 0.06%)</title><rect x="16.5662%" y="725" width="0.0611%" height="15" fill="rgb(251,164,9)" fg:x="87917" fg:w="324"/><text x="16.8162%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (97 samples, 0.02%)</title><rect x="16.6312%" y="629" width="0.0183%" height="15" fill="rgb(233,194,0)" fg:x="88262" fg:w="97"/><text x="16.8812%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.01%)</title><rect x="16.6348%" y="613" width="0.0147%" height="15" fill="rgb(249,111,24)" fg:x="88281" fg:w="78"/><text x="16.8848%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (123 samples, 0.02%)</title><rect x="16.6277%" y="645" width="0.0232%" height="15" fill="rgb(250,223,3)" fg:x="88243" fg:w="123"/><text x="16.8777%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (147 samples, 0.03%)</title><rect x="16.6275%" y="693" width="0.0277%" height="15" fill="rgb(236,178,37)" fg:x="88242" fg:w="147"/><text x="16.8775%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (147 samples, 0.03%)</title><rect x="16.6275%" y="677" width="0.0277%" height="15" fill="rgb(241,158,50)" fg:x="88242" fg:w="147"/><text x="16.8775%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (147 samples, 0.03%)</title><rect x="16.6275%" y="661" width="0.0277%" height="15" fill="rgb(213,121,41)" fg:x="88242" fg:w="147"/><text x="16.8775%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (197 samples, 0.04%)</title><rect x="16.6275%" y="725" width="0.0371%" height="15" fill="rgb(240,92,3)" fg:x="88242" fg:w="197"/><text x="16.8775%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (197 samples, 0.04%)</title><rect x="16.6275%" y="709" width="0.0371%" height="15" fill="rgb(205,123,3)" fg:x="88242" fg:w="197"/><text x="16.8775%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (76 samples, 0.01%)</title><rect x="16.6706%" y="629" width="0.0143%" height="15" fill="rgb(205,97,47)" fg:x="88471" fg:w="76"/><text x="16.9206%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (60 samples, 0.01%)</title><rect x="16.6736%" y="613" width="0.0113%" height="15" fill="rgb(247,152,14)" fg:x="88487" fg:w="60"/><text x="16.9236%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (117 samples, 0.02%)</title><rect x="16.6648%" y="645" width="0.0220%" height="15" fill="rgb(248,195,53)" fg:x="88440" fg:w="117"/><text x="16.9148%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (173 samples, 0.03%)</title><rect x="16.6648%" y="661" width="0.0326%" height="15" fill="rgb(226,201,16)" fg:x="88440" fg:w="173"/><text x="16.9148%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful<true, G1ScanObjsDuringScanRSClosure> (56 samples, 0.01%)</title><rect x="16.6868%" y="645" width="0.0106%" height="15" fill="rgb(205,98,0)" fg:x="88557" fg:w="56"/><text x="16.9368%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (183 samples, 0.03%)</title><rect x="16.6648%" y="677" width="0.0345%" height="15" fill="rgb(214,191,48)" fg:x="88440" fg:w="183"/><text x="16.9148%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (214 samples, 0.04%)</title><rect x="16.6646%" y="725" width="0.0403%" height="15" fill="rgb(237,112,39)" fg:x="88439" fg:w="214"/><text x="16.9146%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (214 samples, 0.04%)</title><rect x="16.6646%" y="709" width="0.0403%" height="15" fill="rgb(247,203,27)" fg:x="88439" fg:w="214"/><text x="16.9146%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (214 samples, 0.04%)</title><rect x="16.6646%" y="693" width="0.0403%" height="15" fill="rgb(235,124,28)" fg:x="88439" fg:w="214"/><text x="16.9146%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (79 samples, 0.01%)</title><rect x="16.7160%" y="629" width="0.0149%" height="15" fill="rgb(208,207,46)" fg:x="88712" fg:w="79"/><text x="16.9660%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (74 samples, 0.01%)</title><rect x="16.7170%" y="613" width="0.0139%" height="15" fill="rgb(234,176,4)" fg:x="88717" fg:w="74"/><text x="16.9670%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (56 samples, 0.01%)</title><rect x="16.7204%" y="597" width="0.0106%" height="15" fill="rgb(230,133,28)" fg:x="88735" fg:w="56"/><text x="16.9704%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (83 samples, 0.02%)</title><rect x="16.7158%" y="645" width="0.0156%" height="15" fill="rgb(211,137,40)" fg:x="88711" fg:w="83"/><text x="16.9658%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (140 samples, 0.03%)</title><rect x="16.7055%" y="709" width="0.0264%" height="15" fill="rgb(254,35,13)" fg:x="88656" fg:w="140"/><text x="16.9555%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (99 samples, 0.02%)</title><rect x="16.7132%" y="693" width="0.0187%" height="15" fill="rgb(225,49,51)" fg:x="88697" fg:w="99"/><text x="16.9632%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (99 samples, 0.02%)</title><rect x="16.7132%" y="677" width="0.0187%" height="15" fill="rgb(251,10,15)" fg:x="88697" fg:w="99"/><text x="16.9632%" y="687.50"></text></g><g><title>JavaThread::oops_do (99 samples, 0.02%)</title><rect x="16.7132%" y="661" width="0.0187%" height="15" fill="rgb(228,207,15)" fg:x="88697" fg:w="99"/><text x="16.9632%" y="671.50"></text></g><g><title>G1ParTask::work (886 samples, 0.17%)</title><rect x="16.5662%" y="741" width="0.1669%" height="15" fill="rgb(241,99,19)" fg:x="87917" fg:w="886"/><text x="16.8162%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (150 samples, 0.03%)</title><rect x="16.7049%" y="725" width="0.0283%" height="15" fill="rgb(207,104,49)" fg:x="88653" fg:w="150"/><text x="16.9549%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (57 samples, 0.01%)</title><rect x="16.7345%" y="725" width="0.0107%" height="15" fill="rgb(234,99,18)" fg:x="88810" fg:w="57"/><text x="16.9845%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (77 samples, 0.01%)</title><rect x="16.7345%" y="741" width="0.0145%" height="15" fill="rgb(213,191,49)" fg:x="88810" fg:w="77"/><text x="16.9845%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.02%)</title><rect x="16.7596%" y="517" width="0.0213%" height="15" fill="rgb(210,226,19)" fg:x="88943" fg:w="113"/><text x="17.0096%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="16.7598%" y="501" width="0.0211%" height="15" fill="rgb(229,97,18)" fg:x="88944" fg:w="112"/><text x="17.0098%" y="511.50"></text></g><g><title>native_write_msr (112 samples, 0.02%)</title><rect x="16.7598%" y="485" width="0.0211%" height="15" fill="rgb(211,167,15)" fg:x="88944" fg:w="112"/><text x="17.0098%" y="495.50"></text></g><g><title>finish_task_switch (118 samples, 0.02%)</title><rect x="16.7592%" y="533" width="0.0222%" height="15" fill="rgb(210,169,34)" fg:x="88941" fg:w="118"/><text x="17.0092%" y="543.50"></text></g><g><title>futex_wait_queue_me (138 samples, 0.03%)</title><rect x="16.7579%" y="581" width="0.0260%" height="15" fill="rgb(241,121,31)" fg:x="88934" fg:w="138"/><text x="17.0079%" y="591.50"></text></g><g><title>schedule (138 samples, 0.03%)</title><rect x="16.7579%" y="565" width="0.0260%" height="15" fill="rgb(232,40,11)" fg:x="88934" fg:w="138"/><text x="17.0079%" y="575.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="16.7581%" y="549" width="0.0258%" height="15" fill="rgb(205,86,26)" fg:x="88935" fg:w="137"/><text x="17.0081%" y="559.50"></text></g><g><title>__x64_sys_futex (145 samples, 0.03%)</title><rect x="16.7571%" y="629" width="0.0273%" height="15" fill="rgb(231,126,28)" fg:x="88930" fg:w="145"/><text x="17.0071%" y="639.50"></text></g><g><title>do_futex (145 samples, 0.03%)</title><rect x="16.7571%" y="613" width="0.0273%" height="15" fill="rgb(219,221,18)" fg:x="88930" fg:w="145"/><text x="17.0071%" y="623.50"></text></g><g><title>futex_wait (143 samples, 0.03%)</title><rect x="16.7575%" y="597" width="0.0269%" height="15" fill="rgb(211,40,0)" fg:x="88932" fg:w="143"/><text x="17.0075%" y="607.50"></text></g><g><title>do_syscall_64 (146 samples, 0.03%)</title><rect x="16.7571%" y="645" width="0.0275%" height="15" fill="rgb(239,85,43)" fg:x="88930" fg:w="146"/><text x="17.0071%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="16.7571%" y="661" width="0.0288%" height="15" fill="rgb(231,55,21)" fg:x="88930" fg:w="153"/><text x="17.0071%" y="671.50"></text></g><g><title>GC_Thread#4 (1,201 samples, 0.23%)</title><rect x="16.5600%" y="837" width="0.2263%" height="15" fill="rgb(225,184,43)" fg:x="87884" fg:w="1201"/><text x="16.8100%" y="847.50"></text></g><g><title>__GI___clone (1,184 samples, 0.22%)</title><rect x="16.5632%" y="821" width="0.2231%" height="15" fill="rgb(251,158,41)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="831.50"></text></g><g><title>start_thread (1,184 samples, 0.22%)</title><rect x="16.5632%" y="805" width="0.2231%" height="15" fill="rgb(234,159,37)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="815.50"></text></g><g><title>thread_native_entry (1,184 samples, 0.22%)</title><rect x="16.5632%" y="789" width="0.2231%" height="15" fill="rgb(216,204,22)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="799.50"></text></g><g><title>Thread::call_run (1,184 samples, 0.22%)</title><rect x="16.5632%" y="773" width="0.2231%" height="15" fill="rgb(214,17,3)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="783.50"></text></g><g><title>GangWorker::loop (1,184 samples, 0.22%)</title><rect x="16.5632%" y="757" width="0.2231%" height="15" fill="rgb(212,111,17)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (156 samples, 0.03%)</title><rect x="16.7569%" y="741" width="0.0294%" height="15" fill="rgb(221,157,24)" fg:x="88929" fg:w="156"/><text x="17.0069%" y="751.50"></text></g><g><title>PosixSemaphore::wait (156 samples, 0.03%)</title><rect x="16.7569%" y="725" width="0.0294%" height="15" fill="rgb(252,16,13)" fg:x="88929" fg:w="156"/><text x="17.0069%" y="735.50"></text></g><g><title>__new_sem_wait_slow (155 samples, 0.03%)</title><rect x="16.7571%" y="709" width="0.0292%" height="15" fill="rgb(221,62,2)" fg:x="88930" fg:w="155"/><text x="17.0071%" y="719.50"></text></g><g><title>do_futex_wait (155 samples, 0.03%)</title><rect x="16.7571%" y="693" width="0.0292%" height="15" fill="rgb(247,87,22)" fg:x="88930" fg:w="155"/><text x="17.0071%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (155 samples, 0.03%)</title><rect x="16.7571%" y="677" width="0.0292%" height="15" fill="rgb(215,73,9)" fg:x="88930" fg:w="155"/><text x="17.0071%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.01%)</title><rect x="16.8127%" y="693" width="0.0139%" height="15" fill="rgb(207,175,33)" fg:x="89225" fg:w="74"/><text x="17.0627%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (143 samples, 0.03%)</title><rect x="16.8005%" y="709" width="0.0269%" height="15" fill="rgb(243,129,54)" fg:x="89160" fg:w="143"/><text x="17.0505%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (195 samples, 0.04%)</title><rect x="16.7971%" y="725" width="0.0367%" height="15" fill="rgb(227,119,45)" fg:x="89142" fg:w="195"/><text x="17.0471%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (190 samples, 0.04%)</title><rect x="16.8413%" y="629" width="0.0358%" height="15" fill="rgb(205,109,36)" fg:x="89377" fg:w="190"/><text x="17.0913%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (130 samples, 0.02%)</title><rect x="16.8526%" y="613" width="0.0245%" height="15" fill="rgb(205,6,39)" fg:x="89437" fg:w="130"/><text x="17.1026%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (245 samples, 0.05%)</title><rect x="16.8342%" y="645" width="0.0462%" height="15" fill="rgb(221,32,16)" fg:x="89339" fg:w="245"/><text x="17.0842%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (273 samples, 0.05%)</title><rect x="16.8340%" y="693" width="0.0514%" height="15" fill="rgb(228,144,50)" fg:x="89338" fg:w="273"/><text x="17.0840%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (273 samples, 0.05%)</title><rect x="16.8340%" y="677" width="0.0514%" height="15" fill="rgb(229,201,53)" fg:x="89338" fg:w="273"/><text x="17.0840%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (273 samples, 0.05%)</title><rect x="16.8340%" y="661" width="0.0514%" height="15" fill="rgb(249,153,27)" fg:x="89338" fg:w="273"/><text x="17.0840%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (304 samples, 0.06%)</title><rect x="16.8340%" y="725" width="0.0573%" height="15" fill="rgb(227,106,25)" fg:x="89338" fg:w="304"/><text x="17.0840%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (304 samples, 0.06%)</title><rect x="16.8340%" y="709" width="0.0573%" height="15" fill="rgb(230,65,29)" fg:x="89338" fg:w="304"/><text x="17.0840%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (92 samples, 0.02%)</title><rect x="16.8962%" y="629" width="0.0173%" height="15" fill="rgb(221,57,46)" fg:x="89668" fg:w="92"/><text x="17.1462%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.01%)</title><rect x="16.9015%" y="613" width="0.0121%" height="15" fill="rgb(229,161,17)" fg:x="89696" fg:w="64"/><text x="17.1515%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (121 samples, 0.02%)</title><rect x="16.8920%" y="645" width="0.0228%" height="15" fill="rgb(222,213,11)" fg:x="89646" fg:w="121"/><text x="17.1420%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (155 samples, 0.03%)</title><rect x="16.8920%" y="661" width="0.0292%" height="15" fill="rgb(235,35,13)" fg:x="89646" fg:w="155"/><text x="17.1420%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (167 samples, 0.03%)</title><rect x="16.8917%" y="677" width="0.0315%" height="15" fill="rgb(233,158,34)" fg:x="89644" fg:w="167"/><text x="17.1417%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (179 samples, 0.03%)</title><rect x="16.8913%" y="725" width="0.0337%" height="15" fill="rgb(215,151,48)" fg:x="89642" fg:w="179"/><text x="17.1413%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (179 samples, 0.03%)</title><rect x="16.8913%" y="709" width="0.0337%" height="15" fill="rgb(229,84,14)" fg:x="89642" fg:w="179"/><text x="17.1413%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (179 samples, 0.03%)</title><rect x="16.8913%" y="693" width="0.0337%" height="15" fill="rgb(229,68,14)" fg:x="89642" fg:w="179"/><text x="17.1413%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (59 samples, 0.01%)</title><rect x="16.9397%" y="597" width="0.0111%" height="15" fill="rgb(243,106,26)" fg:x="89899" fg:w="59"/><text x="17.1897%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (91 samples, 0.02%)</title><rect x="16.9348%" y="629" width="0.0171%" height="15" fill="rgb(206,45,38)" fg:x="89873" fg:w="91"/><text x="17.1848%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (78 samples, 0.01%)</title><rect x="16.9373%" y="613" width="0.0147%" height="15" fill="rgb(226,6,15)" fg:x="89886" fg:w="78"/><text x="17.1873%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (147 samples, 0.03%)</title><rect x="16.9252%" y="709" width="0.0277%" height="15" fill="rgb(232,22,54)" fg:x="89822" fg:w="147"/><text x="17.1752%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (139 samples, 0.03%)</title><rect x="16.9267%" y="693" width="0.0262%" height="15" fill="rgb(229,222,32)" fg:x="89830" fg:w="139"/><text x="17.1767%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (139 samples, 0.03%)</title><rect x="16.9267%" y="677" width="0.0262%" height="15" fill="rgb(228,62,29)" fg:x="89830" fg:w="139"/><text x="17.1767%" y="687.50"></text></g><g><title>JavaThread::oops_do (139 samples, 0.03%)</title><rect x="16.9267%" y="661" width="0.0262%" height="15" fill="rgb(251,103,34)" fg:x="89830" fg:w="139"/><text x="17.1767%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (98 samples, 0.02%)</title><rect x="16.9344%" y="645" width="0.0185%" height="15" fill="rgb(233,12,30)" fg:x="89871" fg:w="98"/><text x="17.1844%" y="655.50"></text></g><g><title>G1ParTask::work (858 samples, 0.16%)</title><rect x="16.7971%" y="741" width="0.1617%" height="15" fill="rgb(238,52,0)" fg:x="89142" fg:w="858"/><text x="17.0471%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (179 samples, 0.03%)</title><rect x="16.9250%" y="725" width="0.0337%" height="15" fill="rgb(223,98,5)" fg:x="89821" fg:w="179"/><text x="17.1750%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (56 samples, 0.01%)</title><rect x="16.9612%" y="709" width="0.0106%" height="15" fill="rgb(228,75,37)" fg:x="90013" fg:w="56"/><text x="17.2112%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.01%)</title><rect x="16.9612%" y="725" width="0.0119%" height="15" fill="rgb(205,115,49)" fg:x="90013" fg:w="63"/><text x="17.2112%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (79 samples, 0.01%)</title><rect x="16.9612%" y="741" width="0.0149%" height="15" fill="rgb(250,154,43)" fg:x="90013" fg:w="79"/><text x="17.2112%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="16.9829%" y="517" width="0.0183%" height="15" fill="rgb(226,43,29)" fg:x="90128" fg:w="97"/><text x="17.2329%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (97 samples, 0.02%)</title><rect x="16.9829%" y="501" width="0.0183%" height="15" fill="rgb(249,228,39)" fg:x="90128" fg:w="97"/><text x="17.2329%" y="511.50"></text></g><g><title>native_write_msr (97 samples, 0.02%)</title><rect x="16.9829%" y="485" width="0.0183%" height="15" fill="rgb(216,79,43)" fg:x="90128" fg:w="97"/><text x="17.2329%" y="495.50"></text></g><g><title>finish_task_switch (99 samples, 0.02%)</title><rect x="16.9829%" y="533" width="0.0187%" height="15" fill="rgb(228,95,12)" fg:x="90128" fg:w="99"/><text x="17.2329%" y="543.50"></text></g><g><title>futex_wait_queue_me (109 samples, 0.02%)</title><rect x="16.9823%" y="581" width="0.0205%" height="15" fill="rgb(249,221,15)" fg:x="90125" fg:w="109"/><text x="17.2323%" y="591.50"></text></g><g><title>schedule (108 samples, 0.02%)</title><rect x="16.9825%" y="565" width="0.0204%" height="15" fill="rgb(233,34,13)" fg:x="90126" fg:w="108"/><text x="17.2325%" y="575.50"></text></g><g><title>__schedule (108 samples, 0.02%)</title><rect x="16.9825%" y="549" width="0.0204%" height="15" fill="rgb(214,103,39)" fg:x="90126" fg:w="108"/><text x="17.2325%" y="559.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="16.9823%" y="645" width="0.0209%" height="15" fill="rgb(251,126,39)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="655.50"></text></g><g><title>__x64_sys_futex (111 samples, 0.02%)</title><rect x="16.9823%" y="629" width="0.0209%" height="15" fill="rgb(214,216,36)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="639.50"></text></g><g><title>do_futex (111 samples, 0.02%)</title><rect x="16.9823%" y="613" width="0.0209%" height="15" fill="rgb(220,221,8)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="623.50"></text></g><g><title>futex_wait (111 samples, 0.02%)</title><rect x="16.9823%" y="597" width="0.0209%" height="15" fill="rgb(240,216,3)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="607.50"></text></g><g><title>__GI___clone (1,133 samples, 0.21%)</title><rect x="16.7914%" y="821" width="0.2135%" height="15" fill="rgb(232,218,17)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="831.50"></text></g><g><title>start_thread (1,133 samples, 0.21%)</title><rect x="16.7914%" y="805" width="0.2135%" height="15" fill="rgb(229,163,45)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="815.50"></text></g><g><title>thread_native_entry (1,133 samples, 0.21%)</title><rect x="16.7914%" y="789" width="0.2135%" height="15" fill="rgb(231,110,42)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="799.50"></text></g><g><title>Thread::call_run (1,133 samples, 0.21%)</title><rect x="16.7914%" y="773" width="0.2135%" height="15" fill="rgb(208,170,48)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="783.50"></text></g><g><title>GangWorker::loop (1,133 samples, 0.21%)</title><rect x="16.7914%" y="757" width="0.2135%" height="15" fill="rgb(239,116,25)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (120 samples, 0.02%)</title><rect x="16.9823%" y="741" width="0.0226%" height="15" fill="rgb(219,200,50)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="751.50"></text></g><g><title>PosixSemaphore::wait (120 samples, 0.02%)</title><rect x="16.9823%" y="725" width="0.0226%" height="15" fill="rgb(245,200,0)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="735.50"></text></g><g><title>__new_sem_wait_slow (120 samples, 0.02%)</title><rect x="16.9823%" y="709" width="0.0226%" height="15" fill="rgb(245,119,33)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="719.50"></text></g><g><title>do_futex_wait (120 samples, 0.02%)</title><rect x="16.9823%" y="693" width="0.0226%" height="15" fill="rgb(231,125,12)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (120 samples, 0.02%)</title><rect x="16.9823%" y="677" width="0.0226%" height="15" fill="rgb(216,96,41)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (120 samples, 0.02%)</title><rect x="16.9823%" y="661" width="0.0226%" height="15" fill="rgb(248,43,45)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="671.50"></text></g><g><title>GC_Thread#5 (1,163 samples, 0.22%)</title><rect x="16.7863%" y="837" width="0.2191%" height="15" fill="rgb(217,222,7)" fg:x="89085" fg:w="1163"/><text x="17.0363%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (88 samples, 0.02%)</title><rect x="17.0339%" y="693" width="0.0166%" height="15" fill="rgb(233,28,6)" fg:x="90399" fg:w="88"/><text x="17.2839%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (164 samples, 0.03%)</title><rect x="17.0202%" y="709" width="0.0309%" height="15" fill="rgb(231,218,15)" fg:x="90326" fg:w="164"/><text x="17.2702%" y="719.50"></text></g><g><title>SpinPause (68 samples, 0.01%)</title><rect x="17.0524%" y="709" width="0.0128%" height="15" fill="rgb(226,171,48)" fg:x="90497" fg:w="68"/><text x="17.3024%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (264 samples, 0.05%)</title><rect x="17.0160%" y="725" width="0.0497%" height="15" fill="rgb(235,201,9)" fg:x="90304" fg:w="264"/><text x="17.2660%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (170 samples, 0.03%)</title><rect x="17.0708%" y="629" width="0.0320%" height="15" fill="rgb(217,80,15)" fg:x="90595" fg:w="170"/><text x="17.3208%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (117 samples, 0.02%)</title><rect x="17.0808%" y="613" width="0.0220%" height="15" fill="rgb(219,152,8)" fg:x="90648" fg:w="117"/><text x="17.3308%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (204 samples, 0.04%)</title><rect x="17.0658%" y="645" width="0.0384%" height="15" fill="rgb(243,107,38)" fg:x="90568" fg:w="204"/><text x="17.3158%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (219 samples, 0.04%)</title><rect x="17.0658%" y="693" width="0.0413%" height="15" fill="rgb(231,17,5)" fg:x="90568" fg:w="219"/><text x="17.3158%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (219 samples, 0.04%)</title><rect x="17.0658%" y="677" width="0.0413%" height="15" fill="rgb(209,25,54)" fg:x="90568" fg:w="219"/><text x="17.3158%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (219 samples, 0.04%)</title><rect x="17.0658%" y="661" width="0.0413%" height="15" fill="rgb(219,0,2)" fg:x="90568" fg:w="219"/><text x="17.3158%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (230 samples, 0.04%)</title><rect x="17.0658%" y="725" width="0.0433%" height="15" fill="rgb(246,9,5)" fg:x="90568" fg:w="230"/><text x="17.3158%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (230 samples, 0.04%)</title><rect x="17.0658%" y="709" width="0.0433%" height="15" fill="rgb(226,159,4)" fg:x="90568" fg:w="230"/><text x="17.3158%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (79 samples, 0.01%)</title><rect x="17.1091%" y="661" width="0.0149%" height="15" fill="rgb(219,175,34)" fg:x="90798" fg:w="79"/><text x="17.3591%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (83 samples, 0.02%)</title><rect x="17.1091%" y="677" width="0.0156%" height="15" fill="rgb(236,10,46)" fg:x="90798" fg:w="83"/><text x="17.3591%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (89 samples, 0.02%)</title><rect x="17.1091%" y="725" width="0.0168%" height="15" fill="rgb(240,211,16)" fg:x="90798" fg:w="89"/><text x="17.3591%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (89 samples, 0.02%)</title><rect x="17.1091%" y="709" width="0.0168%" height="15" fill="rgb(205,3,43)" fg:x="90798" fg:w="89"/><text x="17.3591%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (89 samples, 0.02%)</title><rect x="17.1091%" y="693" width="0.0168%" height="15" fill="rgb(245,7,22)" fg:x="90798" fg:w="89"/><text x="17.3591%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (75 samples, 0.01%)</title><rect x="17.1311%" y="629" width="0.0141%" height="15" fill="rgb(239,132,32)" fg:x="90915" fg:w="75"/><text x="17.3811%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (105 samples, 0.02%)</title><rect x="17.1261%" y="693" width="0.0198%" height="15" fill="rgb(228,202,34)" fg:x="90888" fg:w="105"/><text x="17.3761%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (102 samples, 0.02%)</title><rect x="17.1266%" y="677" width="0.0192%" height="15" fill="rgb(254,200,22)" fg:x="90891" fg:w="102"/><text x="17.3766%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (102 samples, 0.02%)</title><rect x="17.1266%" y="661" width="0.0192%" height="15" fill="rgb(219,10,39)" fg:x="90891" fg:w="102"/><text x="17.3766%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (97 samples, 0.02%)</title><rect x="17.1276%" y="645" width="0.0183%" height="15" fill="rgb(226,210,39)" fg:x="90896" fg:w="97"/><text x="17.3776%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (266 samples, 0.05%)</title><rect x="17.1261%" y="709" width="0.0501%" height="15" fill="rgb(208,219,16)" fg:x="90888" fg:w="266"/><text x="17.3761%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (161 samples, 0.03%)</title><rect x="17.1458%" y="693" width="0.0303%" height="15" fill="rgb(216,158,51)" fg:x="90993" fg:w="161"/><text x="17.3958%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (161 samples, 0.03%)</title><rect x="17.1458%" y="677" width="0.0303%" height="15" fill="rgb(233,14,44)" fg:x="90993" fg:w="161"/><text x="17.3958%" y="687.50"></text></g><g><title>JavaThread::oops_do (161 samples, 0.03%)</title><rect x="17.1458%" y="661" width="0.0303%" height="15" fill="rgb(237,97,39)" fg:x="90993" fg:w="161"/><text x="17.3958%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (105 samples, 0.02%)</title><rect x="17.1564%" y="645" width="0.0198%" height="15" fill="rgb(218,198,43)" fg:x="91049" fg:w="105"/><text x="17.4064%" y="655.50"></text></g><g><title>G1ParTask::work (857 samples, 0.16%)</title><rect x="17.0160%" y="741" width="0.1615%" height="15" fill="rgb(231,104,20)" fg:x="90304" fg:w="857"/><text x="17.2660%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (274 samples, 0.05%)</title><rect x="17.1259%" y="725" width="0.0516%" height="15" fill="rgb(254,36,13)" fg:x="90887" fg:w="274"/><text x="17.3759%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (59 samples, 0.01%)</title><rect x="17.1807%" y="741" width="0.0111%" height="15" fill="rgb(248,14,50)" fg:x="91178" fg:w="59"/><text x="17.4307%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.01%)</title><rect x="17.2016%" y="517" width="0.0143%" height="15" fill="rgb(217,107,29)" fg:x="91289" fg:w="76"/><text x="17.4516%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="17.2018%" y="501" width="0.0141%" height="15" fill="rgb(251,169,33)" fg:x="91290" fg:w="75"/><text x="17.4518%" y="511.50"></text></g><g><title>native_write_msr (75 samples, 0.01%)</title><rect x="17.2018%" y="485" width="0.0141%" height="15" fill="rgb(217,108,32)" fg:x="91290" fg:w="75"/><text x="17.4518%" y="495.50"></text></g><g><title>finish_task_switch (81 samples, 0.02%)</title><rect x="17.2012%" y="533" width="0.0153%" height="15" fill="rgb(219,66,42)" fg:x="91287" fg:w="81"/><text x="17.4512%" y="543.50"></text></g><g><title>do_syscall_64 (101 samples, 0.02%)</title><rect x="17.1992%" y="645" width="0.0190%" height="15" fill="rgb(206,180,7)" fg:x="91276" fg:w="101"/><text x="17.4492%" y="655.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.02%)</title><rect x="17.1994%" y="629" width="0.0188%" height="15" fill="rgb(208,226,31)" fg:x="91277" fg:w="100"/><text x="17.4494%" y="639.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="17.1994%" y="613" width="0.0188%" height="15" fill="rgb(218,26,49)" fg:x="91277" fg:w="100"/><text x="17.4494%" y="623.50"></text></g><g><title>futex_wait (100 samples, 0.02%)</title><rect x="17.1994%" y="597" width="0.0188%" height="15" fill="rgb(233,197,48)" fg:x="91277" fg:w="100"/><text x="17.4494%" y="607.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.02%)</title><rect x="17.1995%" y="581" width="0.0187%" height="15" fill="rgb(252,181,51)" fg:x="91278" fg:w="99"/><text x="17.4495%" y="591.50"></text></g><g><title>schedule (98 samples, 0.02%)</title><rect x="17.1997%" y="565" width="0.0185%" height="15" fill="rgb(253,90,19)" fg:x="91279" fg:w="98"/><text x="17.4497%" y="575.50"></text></g><g><title>__schedule (98 samples, 0.02%)</title><rect x="17.1997%" y="549" width="0.0185%" height="15" fill="rgb(215,171,30)" fg:x="91279" fg:w="98"/><text x="17.4497%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="17.1990%" y="661" width="0.0196%" height="15" fill="rgb(214,222,9)" fg:x="91275" fg:w="104"/><text x="17.4490%" y="671.50"></text></g><g><title>__GI___clone (1,108 samples, 0.21%)</title><rect x="17.0100%" y="821" width="0.2088%" height="15" fill="rgb(223,3,22)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="831.50"></text></g><g><title>start_thread (1,108 samples, 0.21%)</title><rect x="17.0100%" y="805" width="0.2088%" height="15" fill="rgb(225,196,46)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="815.50"></text></g><g><title>thread_native_entry (1,108 samples, 0.21%)</title><rect x="17.0100%" y="789" width="0.2088%" height="15" fill="rgb(209,110,37)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="799.50"></text></g><g><title>Thread::call_run (1,108 samples, 0.21%)</title><rect x="17.0100%" y="773" width="0.2088%" height="15" fill="rgb(249,89,12)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="783.50"></text></g><g><title>GangWorker::loop (1,108 samples, 0.21%)</title><rect x="17.0100%" y="757" width="0.2088%" height="15" fill="rgb(226,27,33)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (106 samples, 0.02%)</title><rect x="17.1988%" y="741" width="0.0200%" height="15" fill="rgb(213,82,22)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="751.50"></text></g><g><title>PosixSemaphore::wait (106 samples, 0.02%)</title><rect x="17.1988%" y="725" width="0.0200%" height="15" fill="rgb(248,140,0)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="735.50"></text></g><g><title>__new_sem_wait_slow (106 samples, 0.02%)</title><rect x="17.1988%" y="709" width="0.0200%" height="15" fill="rgb(228,106,3)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="719.50"></text></g><g><title>do_futex_wait (106 samples, 0.02%)</title><rect x="17.1988%" y="693" width="0.0200%" height="15" fill="rgb(209,23,37)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="17.1988%" y="677" width="0.0200%" height="15" fill="rgb(241,93,50)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="687.50"></text></g><g><title>GC_Thread#6 (1,134 samples, 0.21%)</title><rect x="17.0055%" y="837" width="0.2137%" height="15" fill="rgb(253,46,43)" fg:x="90248" fg:w="1134"/><text x="17.2555%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (111 samples, 0.02%)</title><rect x="17.2525%" y="693" width="0.0209%" height="15" fill="rgb(226,206,43)" fg:x="91559" fg:w="111"/><text x="17.5025%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (223 samples, 0.04%)</title><rect x="17.2327%" y="709" width="0.0420%" height="15" fill="rgb(217,54,7)" fg:x="91454" fg:w="223"/><text x="17.4827%" y="719.50"></text></g><g><title>SpinPause (66 samples, 0.01%)</title><rect x="17.2755%" y="709" width="0.0124%" height="15" fill="rgb(223,5,52)" fg:x="91681" fg:w="66"/><text x="17.5255%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (319 samples, 0.06%)</title><rect x="17.2291%" y="725" width="0.0601%" height="15" fill="rgb(206,52,46)" fg:x="91435" fg:w="319"/><text x="17.4791%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="17.3032%" y="613" width="0.0175%" height="15" fill="rgb(253,136,11)" fg:x="91828" fg:w="93"/><text x="17.5532%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (141 samples, 0.03%)</title><rect x="17.2943%" y="629" width="0.0266%" height="15" fill="rgb(208,106,33)" fg:x="91781" fg:w="141"/><text x="17.5443%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (177 samples, 0.03%)</title><rect x="17.2904%" y="645" width="0.0334%" height="15" fill="rgb(206,54,4)" fg:x="91760" fg:w="177"/><text x="17.5404%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (210 samples, 0.04%)</title><rect x="17.2900%" y="693" width="0.0396%" height="15" fill="rgb(213,3,15)" fg:x="91758" fg:w="210"/><text x="17.5400%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (210 samples, 0.04%)</title><rect x="17.2900%" y="677" width="0.0396%" height="15" fill="rgb(252,211,39)" fg:x="91758" fg:w="210"/><text x="17.5400%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (210 samples, 0.04%)</title><rect x="17.2900%" y="661" width="0.0396%" height="15" fill="rgb(223,6,36)" fg:x="91758" fg:w="210"/><text x="17.5400%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (232 samples, 0.04%)</title><rect x="17.2900%" y="725" width="0.0437%" height="15" fill="rgb(252,169,45)" fg:x="91758" fg:w="232"/><text x="17.5400%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (232 samples, 0.04%)</title><rect x="17.2900%" y="709" width="0.0437%" height="15" fill="rgb(212,48,26)" fg:x="91758" fg:w="232"/><text x="17.5400%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (80 samples, 0.02%)</title><rect x="17.3392%" y="629" width="0.0151%" height="15" fill="rgb(251,102,48)" fg:x="92019" fg:w="80"/><text x="17.5892%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (62 samples, 0.01%)</title><rect x="17.3426%" y="613" width="0.0117%" height="15" fill="rgb(243,208,16)" fg:x="92037" fg:w="62"/><text x="17.5926%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (106 samples, 0.02%)</title><rect x="17.3352%" y="645" width="0.0200%" height="15" fill="rgb(219,96,24)" fg:x="91998" fg:w="106"/><text x="17.5852%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (170 samples, 0.03%)</title><rect x="17.3350%" y="661" width="0.0320%" height="15" fill="rgb(219,33,29)" fg:x="91997" fg:w="170"/><text x="17.5850%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful<true, G1ScanObjsDuringScanRSClosure> (63 samples, 0.01%)</title><rect x="17.3552%" y="645" width="0.0119%" height="15" fill="rgb(223,176,5)" fg:x="92104" fg:w="63"/><text x="17.6052%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (180 samples, 0.03%)</title><rect x="17.3347%" y="677" width="0.0339%" height="15" fill="rgb(228,140,14)" fg:x="91995" fg:w="180"/><text x="17.5847%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (188 samples, 0.04%)</title><rect x="17.3337%" y="725" width="0.0354%" height="15" fill="rgb(217,179,31)" fg:x="91990" fg:w="188"/><text x="17.5837%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (188 samples, 0.04%)</title><rect x="17.3337%" y="709" width="0.0354%" height="15" fill="rgb(230,9,30)" fg:x="91990" fg:w="188"/><text x="17.5837%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (186 samples, 0.04%)</title><rect x="17.3341%" y="693" width="0.0350%" height="15" fill="rgb(230,136,20)" fg:x="91992" fg:w="186"/><text x="17.5841%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.01%)</title><rect x="17.3829%" y="629" width="0.0122%" height="15" fill="rgb(215,210,22)" fg:x="92251" fg:w="65"/><text x="17.6329%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (140 samples, 0.03%)</title><rect x="17.3701%" y="709" width="0.0264%" height="15" fill="rgb(218,43,5)" fg:x="92183" fg:w="140"/><text x="17.6201%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (95 samples, 0.02%)</title><rect x="17.3786%" y="693" width="0.0179%" height="15" fill="rgb(216,11,5)" fg:x="92228" fg:w="95"/><text x="17.6286%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (95 samples, 0.02%)</title><rect x="17.3786%" y="677" width="0.0179%" height="15" fill="rgb(209,82,29)" fg:x="92228" fg:w="95"/><text x="17.6286%" y="687.50"></text></g><g><title>JavaThread::oops_do (95 samples, 0.02%)</title><rect x="17.3786%" y="661" width="0.0179%" height="15" fill="rgb(244,115,12)" fg:x="92228" fg:w="95"/><text x="17.6286%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (73 samples, 0.01%)</title><rect x="17.3827%" y="645" width="0.0138%" height="15" fill="rgb(222,82,18)" fg:x="92250" fg:w="73"/><text x="17.6327%" y="655.50"></text></g><g><title>G1ParTask::work (919 samples, 0.17%)</title><rect x="17.2291%" y="741" width="0.1732%" height="15" fill="rgb(249,227,8)" fg:x="91435" fg:w="919"/><text x="17.4791%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.03%)</title><rect x="17.3691%" y="725" width="0.0332%" height="15" fill="rgb(253,141,45)" fg:x="92178" fg:w="176"/><text x="17.6191%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (66 samples, 0.01%)</title><rect x="17.4029%" y="741" width="0.0124%" height="15" fill="rgb(234,184,4)" fg:x="92357" fg:w="66"/><text x="17.6529%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="17.4221%" y="517" width="0.0122%" height="15" fill="rgb(218,194,23)" fg:x="92459" fg:w="65"/><text x="17.6721%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="17.4221%" y="501" width="0.0122%" height="15" fill="rgb(235,66,41)" fg:x="92459" fg:w="65"/><text x="17.6721%" y="511.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="17.4221%" y="485" width="0.0122%" height="15" fill="rgb(245,217,1)" fg:x="92459" fg:w="65"/><text x="17.6721%" y="495.50"></text></g><g><title>finish_task_switch (69 samples, 0.01%)</title><rect x="17.4221%" y="533" width="0.0130%" height="15" fill="rgb(229,91,1)" fg:x="92459" fg:w="69"/><text x="17.6721%" y="543.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="17.4208%" y="645" width="0.0164%" height="15" fill="rgb(207,101,30)" fg:x="92452" fg:w="87"/><text x="17.6708%" y="655.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="17.4210%" y="629" width="0.0162%" height="15" fill="rgb(223,82,49)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="639.50"></text></g><g><title>do_futex (86 samples, 0.02%)</title><rect x="17.4210%" y="613" width="0.0162%" height="15" fill="rgb(218,167,17)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="623.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="17.4210%" y="597" width="0.0162%" height="15" fill="rgb(208,103,14)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="607.50"></text></g><g><title>futex_wait_queue_me (86 samples, 0.02%)</title><rect x="17.4210%" y="581" width="0.0162%" height="15" fill="rgb(238,20,8)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="591.50"></text></g><g><title>schedule (86 samples, 0.02%)</title><rect x="17.4210%" y="565" width="0.0162%" height="15" fill="rgb(218,80,54)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="575.50"></text></g><g><title>__schedule (85 samples, 0.02%)</title><rect x="17.4211%" y="549" width="0.0160%" height="15" fill="rgb(240,144,17)" fg:x="92454" fg:w="85"/><text x="17.6711%" y="559.50"></text></g><g><title>__GI___clone (1,135 samples, 0.21%)</title><rect x="17.2235%" y="821" width="0.2139%" height="15" fill="rgb(245,27,50)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="831.50"></text></g><g><title>start_thread (1,135 samples, 0.21%)</title><rect x="17.2235%" y="805" width="0.2139%" height="15" fill="rgb(251,51,7)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="815.50"></text></g><g><title>thread_native_entry (1,135 samples, 0.21%)</title><rect x="17.2235%" y="789" width="0.2139%" height="15" fill="rgb(245,217,29)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="799.50"></text></g><g><title>Thread::call_run (1,135 samples, 0.21%)</title><rect x="17.2235%" y="773" width="0.2139%" height="15" fill="rgb(221,176,29)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="783.50"></text></g><g><title>GangWorker::loop (1,135 samples, 0.21%)</title><rect x="17.2235%" y="757" width="0.2139%" height="15" fill="rgb(212,180,24)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (90 samples, 0.02%)</title><rect x="17.4204%" y="741" width="0.0170%" height="15" fill="rgb(254,24,2)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="751.50"></text></g><g><title>PosixSemaphore::wait (90 samples, 0.02%)</title><rect x="17.4204%" y="725" width="0.0170%" height="15" fill="rgb(230,100,2)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="735.50"></text></g><g><title>__new_sem_wait_slow (90 samples, 0.02%)</title><rect x="17.4204%" y="709" width="0.0170%" height="15" fill="rgb(219,142,25)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="719.50"></text></g><g><title>do_futex_wait (90 samples, 0.02%)</title><rect x="17.4204%" y="693" width="0.0170%" height="15" fill="rgb(240,73,43)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (90 samples, 0.02%)</title><rect x="17.4204%" y="677" width="0.0170%" height="15" fill="rgb(214,114,15)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="17.4208%" y="661" width="0.0166%" height="15" fill="rgb(207,130,4)" fg:x="92452" fg:w="88"/><text x="17.6708%" y="671.50"></text></g><g><title>GC_Thread#7 (1,159 samples, 0.22%)</title><rect x="17.2191%" y="837" width="0.2184%" height="15" fill="rgb(221,25,40)" fg:x="91382" fg:w="1159"/><text x="17.4691%" y="847.50"></text></g><g><title>[perf-925888.map] (112 samples, 0.02%)</title><rect x="17.4477%" y="821" width="0.0211%" height="15" fill="rgb(241,184,7)" fg:x="92595" fg:w="112"/><text x="17.6977%" y="831.50"></text></g><g><title>Service_Thread (138 samples, 0.03%)</title><rect x="17.4466%" y="837" width="0.0260%" height="15" fill="rgb(235,159,4)" fg:x="92589" fg:w="138"/><text x="17.6966%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (115 samples, 0.02%)</title><rect x="17.5078%" y="485" width="0.0217%" height="15" fill="rgb(214,87,48)" fg:x="92914" fg:w="115"/><text x="17.7578%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="17.5084%" y="469" width="0.0211%" height="15" fill="rgb(246,198,24)" fg:x="92917" fg:w="112"/><text x="17.7584%" y="479.50"></text></g><g><title>native_write_msr (111 samples, 0.02%)</title><rect x="17.5086%" y="453" width="0.0209%" height="15" fill="rgb(209,66,40)" fg:x="92918" fg:w="111"/><text x="17.7586%" y="463.50"></text></g><g><title>finish_task_switch (121 samples, 0.02%)</title><rect x="17.5069%" y="501" width="0.0228%" height="15" fill="rgb(233,147,39)" fg:x="92909" fg:w="121"/><text x="17.7569%" y="511.50"></text></g><g><title>futex_wait_queue_me (233 samples, 0.04%)</title><rect x="17.4943%" y="549" width="0.0439%" height="15" fill="rgb(231,145,52)" fg:x="92842" fg:w="233"/><text x="17.7443%" y="559.50"></text></g><g><title>schedule (202 samples, 0.04%)</title><rect x="17.5001%" y="533" width="0.0381%" height="15" fill="rgb(206,20,26)" fg:x="92873" fg:w="202"/><text x="17.7501%" y="543.50"></text></g><g><title>__schedule (198 samples, 0.04%)</title><rect x="17.5008%" y="517" width="0.0373%" height="15" fill="rgb(238,220,4)" fg:x="92877" fg:w="198"/><text x="17.7508%" y="527.50"></text></g><g><title>do_futex (263 samples, 0.05%)</title><rect x="17.4927%" y="581" width="0.0496%" height="15" fill="rgb(252,195,42)" fg:x="92834" fg:w="263"/><text x="17.7427%" y="591.50"></text></g><g><title>futex_wait (260 samples, 0.05%)</title><rect x="17.4933%" y="565" width="0.0490%" height="15" fill="rgb(209,10,6)" fg:x="92837" fg:w="260"/><text x="17.7433%" y="575.50"></text></g><g><title>do_syscall_64 (275 samples, 0.05%)</title><rect x="17.4914%" y="613" width="0.0518%" height="15" fill="rgb(229,3,52)" fg:x="92827" fg:w="275"/><text x="17.7414%" y="623.50"></text></g><g><title>__x64_sys_futex (273 samples, 0.05%)</title><rect x="17.4918%" y="597" width="0.0514%" height="15" fill="rgb(253,49,37)" fg:x="92829" fg:w="273"/><text x="17.7418%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (285 samples, 0.05%)</title><rect x="17.4909%" y="629" width="0.0537%" height="15" fill="rgb(240,103,49)" fg:x="92824" fg:w="285"/><text x="17.7409%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (301 samples, 0.06%)</title><rect x="17.4882%" y="677" width="0.0567%" height="15" fill="rgb(250,182,30)" fg:x="92810" fg:w="301"/><text x="17.7382%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (301 samples, 0.06%)</title><rect x="17.4882%" y="661" width="0.0567%" height="15" fill="rgb(248,8,30)" fg:x="92810" fg:w="301"/><text x="17.7382%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (294 samples, 0.06%)</title><rect x="17.4895%" y="645" width="0.0554%" height="15" fill="rgb(237,120,30)" fg:x="92817" fg:w="294"/><text x="17.7395%" y="655.50"></text></g><g><title>Monitor::wait (372 samples, 0.07%)</title><rect x="17.4816%" y="725" width="0.0701%" height="15" fill="rgb(221,146,34)" fg:x="92775" fg:w="372"/><text x="17.7316%" y="735.50"></text></g><g><title>Monitor::IWait (370 samples, 0.07%)</title><rect x="17.4820%" y="709" width="0.0697%" height="15" fill="rgb(242,55,13)" fg:x="92777" fg:w="370"/><text x="17.7320%" y="719.50"></text></g><g><title>os::PlatformEvent::park (345 samples, 0.07%)</title><rect x="17.4867%" y="693" width="0.0650%" height="15" fill="rgb(242,112,31)" fg:x="92802" fg:w="345"/><text x="17.7367%" y="703.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (95 samples, 0.02%)</title><rect x="17.5589%" y="677" width="0.0179%" height="15" fill="rgb(249,192,27)" fg:x="93185" fg:w="95"/><text x="17.8089%" y="687.50"></text></g><g><title>NMethodSweeper::possibly_sweep (159 samples, 0.03%)</title><rect x="17.5517%" y="725" width="0.0300%" height="15" fill="rgb(208,204,44)" fg:x="93147" fg:w="159"/><text x="17.8017%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (142 samples, 0.03%)</title><rect x="17.5549%" y="709" width="0.0268%" height="15" fill="rgb(208,93,54)" fg:x="93164" fg:w="142"/><text x="17.8049%" y="719.50"></text></g><g><title>NMethodSweeper::process_compiled_method (122 samples, 0.02%)</title><rect x="17.5587%" y="693" width="0.0230%" height="15" fill="rgb(242,1,31)" fg:x="93184" fg:w="122"/><text x="17.8087%" y="703.50"></text></g><g><title>__GI___clone (554 samples, 0.10%)</title><rect x="17.4786%" y="821" width="0.1044%" height="15" fill="rgb(241,83,25)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="831.50"></text></g><g><title>start_thread (554 samples, 0.10%)</title><rect x="17.4786%" y="805" width="0.1044%" height="15" fill="rgb(205,169,50)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="815.50"></text></g><g><title>thread_native_entry (554 samples, 0.10%)</title><rect x="17.4786%" y="789" width="0.1044%" height="15" fill="rgb(239,186,37)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="799.50"></text></g><g><title>Thread::call_run (554 samples, 0.10%)</title><rect x="17.4786%" y="773" width="0.1044%" height="15" fill="rgb(205,221,10)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (554 samples, 0.10%)</title><rect x="17.4786%" y="757" width="0.1044%" height="15" fill="rgb(218,196,15)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (553 samples, 0.10%)</title><rect x="17.4788%" y="741" width="0.1042%" height="15" fill="rgb(218,196,35)" fg:x="92760" fg:w="553"/><text x="17.7288%" y="751.50"></text></g><g><title>Sweeper_thread (580 samples, 0.11%)</title><rect x="17.4754%" y="837" width="0.1093%" height="15" fill="rgb(233,63,24)" fg:x="92742" fg:w="580"/><text x="17.7254%" y="847.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="17.6444%" y="629" width="0.0106%" height="15" fill="rgb(225,8,4)" fg:x="93639" fg:w="56"/><text x="17.8944%" y="639.50"></text></g><g><title>do_syscall_64 (61 samples, 0.01%)</title><rect x="17.6437%" y="693" width="0.0115%" height="15" fill="rgb(234,105,35)" fg:x="93635" fg:w="61"/><text x="17.8937%" y="703.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.01%)</title><rect x="17.6437%" y="677" width="0.0115%" height="15" fill="rgb(236,21,32)" fg:x="93635" fg:w="61"/><text x="17.8937%" y="687.50"></text></g><g><title>do_futex (59 samples, 0.01%)</title><rect x="17.6441%" y="661" width="0.0111%" height="15" fill="rgb(228,109,6)" fg:x="93637" fg:w="59"/><text x="17.8941%" y="671.50"></text></g><g><title>futex_wait (59 samples, 0.01%)</title><rect x="17.6441%" y="645" width="0.0111%" height="15" fill="rgb(229,215,31)" fg:x="93637" fg:w="59"/><text x="17.8941%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (65 samples, 0.01%)</title><rect x="17.6433%" y="757" width="0.0122%" height="15" fill="rgb(221,52,54)" fg:x="93633" fg:w="65"/><text x="17.8933%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.01%)</title><rect x="17.6433%" y="741" width="0.0122%" height="15" fill="rgb(252,129,43)" fg:x="93633" fg:w="65"/><text x="17.8933%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (64 samples, 0.01%)</title><rect x="17.6435%" y="725" width="0.0121%" height="15" fill="rgb(248,183,27)" fg:x="93634" fg:w="64"/><text x="17.8935%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="17.6437%" y="709" width="0.0119%" height="15" fill="rgb(250,0,22)" fg:x="93635" fg:w="63"/><text x="17.8937%" y="719.50"></text></g><g><title>JVM_Sleep (71 samples, 0.01%)</title><rect x="17.6424%" y="805" width="0.0134%" height="15" fill="rgb(213,166,10)" fg:x="93628" fg:w="71"/><text x="17.8924%" y="815.50"></text></g><g><title>os::sleep (69 samples, 0.01%)</title><rect x="17.6427%" y="789" width="0.0130%" height="15" fill="rgb(207,163,36)" fg:x="93630" fg:w="69"/><text x="17.8927%" y="799.50"></text></g><g><title>os::PlatformEvent::park (67 samples, 0.01%)</title><rect x="17.6431%" y="773" width="0.0126%" height="15" fill="rgb(208,122,22)" fg:x="93632" fg:w="67"/><text x="17.8931%" y="783.50"></text></g><g><title>get_cpu_load (76 samples, 0.01%)</title><rect x="17.6831%" y="805" width="0.0143%" height="15" fill="rgb(207,104,49)" fg:x="93844" fg:w="76"/><text x="17.9331%" y="815.50"></text></g><g><title>get_cpuload_internal (76 samples, 0.01%)</title><rect x="17.6831%" y="789" width="0.0143%" height="15" fill="rgb(248,211,50)" fg:x="93844" fg:w="76"/><text x="17.9331%" y="799.50"></text></g><g><title>get_totalticks (76 samples, 0.01%)</title><rect x="17.6831%" y="773" width="0.0143%" height="15" fill="rgb(217,13,45)" fg:x="93844" fg:w="76"/><text x="17.9331%" y="783.50"></text></g><g><title>[perf-925888.map] (579 samples, 0.11%)</title><rect x="17.5898%" y="821" width="0.1091%" height="15" fill="rgb(211,216,49)" fg:x="93349" fg:w="579"/><text x="17.8398%" y="831.50"></text></g><g><title>Thread-0 (648 samples, 0.12%)</title><rect x="17.5847%" y="837" width="0.1221%" height="15" fill="rgb(221,58,53)" fg:x="93322" fg:w="648"/><text x="17.8347%" y="847.50"></text></g><g><title>futex_wait_queue_me (75 samples, 0.01%)</title><rect x="17.7258%" y="549" width="0.0141%" height="15" fill="rgb(220,112,41)" fg:x="94071" fg:w="75"/><text x="17.9758%" y="559.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="17.7279%" y="533" width="0.0121%" height="15" fill="rgb(236,38,28)" fg:x="94082" fg:w="64"/><text x="17.9779%" y="543.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="17.7283%" y="517" width="0.0117%" height="15" fill="rgb(227,195,22)" fg:x="94084" fg:w="62"/><text x="17.9783%" y="527.50"></text></g><g><title>do_futex (83 samples, 0.02%)</title><rect x="17.7247%" y="581" width="0.0156%" height="15" fill="rgb(214,55,33)" fg:x="94065" fg:w="83"/><text x="17.9747%" y="591.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="17.7249%" y="565" width="0.0155%" height="15" fill="rgb(248,80,13)" fg:x="94066" fg:w="82"/><text x="17.9749%" y="575.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="17.7243%" y="613" width="0.0162%" height="15" fill="rgb(238,52,6)" fg:x="94063" fg:w="86"/><text x="17.9743%" y="623.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="17.7245%" y="597" width="0.0160%" height="15" fill="rgb(224,198,47)" fg:x="94064" fg:w="85"/><text x="17.9745%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (111 samples, 0.02%)</title><rect x="17.7211%" y="677" width="0.0209%" height="15" fill="rgb(233,171,20)" fg:x="94046" fg:w="111"/><text x="17.9711%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (111 samples, 0.02%)</title><rect x="17.7211%" y="661" width="0.0209%" height="15" fill="rgb(241,30,25)" fg:x="94046" fg:w="111"/><text x="17.9711%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="17.7221%" y="645" width="0.0200%" height="15" fill="rgb(207,171,38)" fg:x="94051" fg:w="106"/><text x="17.9721%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.02%)</title><rect x="17.7241%" y="629" width="0.0179%" height="15" fill="rgb(234,70,1)" fg:x="94062" fg:w="95"/><text x="17.9741%" y="639.50"></text></g><g><title>Monitor::wait (143 samples, 0.03%)</title><rect x="17.7175%" y="725" width="0.0269%" height="15" fill="rgb(232,178,18)" fg:x="94027" fg:w="143"/><text x="17.9675%" y="735.50"></text></g><g><title>Monitor::IWait (142 samples, 0.03%)</title><rect x="17.7177%" y="709" width="0.0268%" height="15" fill="rgb(241,78,40)" fg:x="94028" fg:w="142"/><text x="17.9677%" y="719.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.02%)</title><rect x="17.7198%" y="693" width="0.0247%" height="15" fill="rgb(222,35,25)" fg:x="94039" fg:w="131"/><text x="17.9698%" y="703.50"></text></g><g><title>__GI___clone (187 samples, 0.04%)</title><rect x="17.7100%" y="821" width="0.0352%" height="15" fill="rgb(207,92,16)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="831.50"></text></g><g><title>start_thread (187 samples, 0.04%)</title><rect x="17.7100%" y="805" width="0.0352%" height="15" fill="rgb(216,59,51)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="815.50"></text></g><g><title>thread_native_entry (187 samples, 0.04%)</title><rect x="17.7100%" y="789" width="0.0352%" height="15" fill="rgb(213,80,28)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="799.50"></text></g><g><title>Thread::call_run (187 samples, 0.04%)</title><rect x="17.7100%" y="773" width="0.0352%" height="15" fill="rgb(220,93,7)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="783.50"></text></g><g><title>WatcherThread::run (187 samples, 0.04%)</title><rect x="17.7100%" y="757" width="0.0352%" height="15" fill="rgb(225,24,44)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="767.50"></text></g><g><title>WatcherThread::sleep (149 samples, 0.03%)</title><rect x="17.7172%" y="741" width="0.0281%" height="15" fill="rgb(243,74,40)" fg:x="94025" fg:w="149"/><text x="17.9672%" y="751.50"></text></g><g><title>VM_Periodic_Tas (207 samples, 0.04%)</title><rect x="17.7068%" y="837" width="0.0390%" height="15" fill="rgb(228,39,7)" fg:x="93970" fg:w="207"/><text x="17.9568%" y="847.50"></text></g><g><title>[unknown] (84 samples, 0.02%)</title><rect x="17.7494%" y="821" width="0.0158%" height="15" fill="rgb(227,79,8)" fg:x="94196" fg:w="84"/><text x="17.9994%" y="831.50"></text></g><g><title>vframe::sender (79 samples, 0.01%)</title><rect x="17.7503%" y="805" width="0.0149%" height="15" fill="rgb(236,58,11)" fg:x="94201" fg:w="79"/><text x="18.0003%" y="815.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.01%)</title><rect x="17.7748%" y="549" width="0.0104%" height="15" fill="rgb(249,63,35)" fg:x="94331" fg:w="55"/><text x="18.0248%" y="559.50"></text></g><g><title>do_futex (57 samples, 0.01%)</title><rect x="17.7748%" y="581" width="0.0107%" height="15" fill="rgb(252,114,16)" fg:x="94331" fg:w="57"/><text x="18.0248%" y="591.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="17.7748%" y="565" width="0.0107%" height="15" fill="rgb(254,151,24)" fg:x="94331" fg:w="57"/><text x="18.0248%" y="575.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="17.7746%" y="613" width="0.0111%" height="15" fill="rgb(253,54,39)" fg:x="94330" fg:w="59"/><text x="18.0246%" y="623.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.01%)</title><rect x="17.7746%" y="597" width="0.0111%" height="15" fill="rgb(243,25,45)" fg:x="94330" fg:w="59"/><text x="18.0246%" y="607.50"></text></g><g><title>Monitor::wait (68 samples, 0.01%)</title><rect x="17.7731%" y="725" width="0.0128%" height="15" fill="rgb(234,134,9)" fg:x="94322" fg:w="68"/><text x="18.0231%" y="735.50"></text></g><g><title>Monitor::IWait (68 samples, 0.01%)</title><rect x="17.7731%" y="709" width="0.0128%" height="15" fill="rgb(227,166,31)" fg:x="94322" fg:w="68"/><text x="18.0231%" y="719.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.01%)</title><rect x="17.7735%" y="693" width="0.0124%" height="15" fill="rgb(245,143,41)" fg:x="94324" fg:w="66"/><text x="18.0235%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (66 samples, 0.01%)</title><rect x="17.7735%" y="677" width="0.0124%" height="15" fill="rgb(238,181,32)" fg:x="94324" fg:w="66"/><text x="18.0235%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (66 samples, 0.01%)</title><rect x="17.7735%" y="661" width="0.0124%" height="15" fill="rgb(224,113,18)" fg:x="94324" fg:w="66"/><text x="18.0235%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (65 samples, 0.01%)</title><rect x="17.7737%" y="645" width="0.0122%" height="15" fill="rgb(240,229,28)" fg:x="94325" fg:w="65"/><text x="18.0237%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="17.7746%" y="629" width="0.0113%" height="15" fill="rgb(250,185,3)" fg:x="94330" fg:w="60"/><text x="18.0246%" y="639.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="17.8076%" y="597" width="0.0121%" height="15" fill="rgb(212,59,25)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="607.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.01%)</title><rect x="17.8076%" y="581" width="0.0121%" height="15" fill="rgb(221,87,20)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="591.50"></text></g><g><title>do_futex (64 samples, 0.01%)</title><rect x="17.8076%" y="565" width="0.0121%" height="15" fill="rgb(213,74,28)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="575.50"></text></g><g><title>futex_wake (64 samples, 0.01%)</title><rect x="17.8076%" y="549" width="0.0121%" height="15" fill="rgb(224,132,34)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="559.50"></text></g><g><title>wake_up_q (57 samples, 0.01%)</title><rect x="17.8089%" y="533" width="0.0107%" height="15" fill="rgb(222,101,24)" fg:x="94512" fg:w="57"/><text x="18.0589%" y="543.50"></text></g><g><title>try_to_wake_up (57 samples, 0.01%)</title><rect x="17.8089%" y="517" width="0.0107%" height="15" fill="rgb(254,142,4)" fg:x="94512" fg:w="57"/><text x="18.0589%" y="527.50"></text></g><g><title>PosixSemaphore::signal (68 samples, 0.01%)</title><rect x="17.8070%" y="661" width="0.0128%" height="15" fill="rgb(230,229,49)" fg:x="94502" fg:w="68"/><text x="18.0570%" y="671.50"></text></g><g><title>__new_sem_post (68 samples, 0.01%)</title><rect x="17.8070%" y="645" width="0.0128%" height="15" fill="rgb(238,70,47)" fg:x="94502" fg:w="68"/><text x="18.0570%" y="655.50"></text></g><g><title>futex_wake (66 samples, 0.01%)</title><rect x="17.8074%" y="629" width="0.0124%" height="15" fill="rgb(231,160,17)" fg:x="94504" fg:w="66"/><text x="18.0574%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="17.8076%" y="613" width="0.0122%" height="15" fill="rgb(218,68,53)" fg:x="94505" fg:w="65"/><text x="18.0576%" y="623.50"></text></g><g><title>WorkGang::run_task (108 samples, 0.02%)</title><rect x="17.8067%" y="693" width="0.0204%" height="15" fill="rgb(236,111,10)" fg:x="94500" fg:w="108"/><text x="18.0567%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (106 samples, 0.02%)</title><rect x="17.8070%" y="677" width="0.0200%" height="15" fill="rgb(224,34,41)" fg:x="94502" fg:w="106"/><text x="18.0570%" y="687.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (117 samples, 0.02%)</title><rect x="17.8054%" y="709" width="0.0220%" height="15" fill="rgb(241,118,19)" fg:x="94493" fg:w="117"/><text x="18.0554%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (254 samples, 0.05%)</title><rect x="17.7859%" y="725" width="0.0479%" height="15" fill="rgb(238,129,25)" fg:x="94390" fg:w="254"/><text x="18.0359%" y="735.50"></text></g><g><title>VM_Operation::evaluate (133 samples, 0.03%)</title><rect x="17.8400%" y="709" width="0.0251%" height="15" fill="rgb(238,22,31)" fg:x="94677" fg:w="133"/><text x="18.0900%" y="719.50"></text></g><g><title>VMThread::evaluate_operation (136 samples, 0.03%)</title><rect x="17.8396%" y="725" width="0.0256%" height="15" fill="rgb(222,174,48)" fg:x="94675" fg:w="136"/><text x="18.0896%" y="735.50"></text></g><g><title>Thread::call_run (510 samples, 0.10%)</title><rect x="17.7701%" y="773" width="0.0961%" height="15" fill="rgb(206,152,40)" fg:x="94306" fg:w="510"/><text x="18.0201%" y="783.50"></text></g><g><title>VMThread::run (510 samples, 0.10%)</title><rect x="17.7701%" y="757" width="0.0961%" height="15" fill="rgb(218,99,54)" fg:x="94306" fg:w="510"/><text x="18.0201%" y="767.50"></text></g><g><title>VMThread::loop (510 samples, 0.10%)</title><rect x="17.7701%" y="741" width="0.0961%" height="15" fill="rgb(220,174,26)" fg:x="94306" fg:w="510"/><text x="18.0201%" y="751.50"></text></g><g><title>__GI___clone (539 samples, 0.10%)</title><rect x="17.7652%" y="821" width="0.1016%" height="15" fill="rgb(245,116,9)" fg:x="94280" fg:w="539"/><text x="18.0152%" y="831.50"></text></g><g><title>start_thread (513 samples, 0.10%)</title><rect x="17.7701%" y="805" width="0.0967%" height="15" fill="rgb(209,72,35)" fg:x="94306" fg:w="513"/><text x="18.0201%" y="815.50"></text></g><g><title>thread_native_entry (513 samples, 0.10%)</title><rect x="17.7701%" y="789" width="0.0967%" height="15" fill="rgb(226,126,21)" fg:x="94306" fg:w="513"/><text x="18.0201%" y="799.50"></text></g><g><title>VM_Thread (648 samples, 0.12%)</title><rect x="17.7458%" y="837" width="0.1221%" height="15" fill="rgb(227,192,1)" fg:x="94177" fg:w="648"/><text x="17.9958%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (74 samples, 0.01%)</title><rect x="17.9459%" y="741" width="0.0139%" height="15" fill="rgb(237,180,29)" fg:x="95239" fg:w="74"/><text x="18.1959%" y="751.50"></text></g><g><title>schedule (66 samples, 0.01%)</title><rect x="17.9474%" y="725" width="0.0124%" height="15" fill="rgb(230,197,35)" fg:x="95247" fg:w="66"/><text x="18.1974%" y="735.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="17.9474%" y="709" width="0.0124%" height="15" fill="rgb(246,193,31)" fg:x="95247" fg:w="66"/><text x="18.1974%" y="719.50"></text></g><g><title>do_epoll_wait (84 samples, 0.02%)</title><rect x="17.9444%" y="757" width="0.0158%" height="15" fill="rgb(241,36,4)" fg:x="95231" fg:w="84"/><text x="18.1944%" y="767.50"></text></g><g><title>__x64_sys_epoll_pwait (85 samples, 0.02%)</title><rect x="17.9444%" y="773" width="0.0160%" height="15" fill="rgb(241,130,17)" fg:x="95231" fg:w="85"/><text x="18.1944%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.02%)</title><rect x="17.9657%" y="661" width="0.0156%" height="15" fill="rgb(206,137,32)" fg:x="95344" fg:w="83"/><text x="18.2157%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.02%)</title><rect x="17.9661%" y="645" width="0.0153%" height="15" fill="rgb(237,228,51)" fg:x="95346" fg:w="81"/><text x="18.2161%" y="655.50"></text></g><g><title>native_write_msr (80 samples, 0.02%)</title><rect x="17.9663%" y="629" width="0.0151%" height="15" fill="rgb(243,6,42)" fg:x="95347" fg:w="80"/><text x="18.2163%" y="639.50"></text></g><g><title>finish_task_switch (93 samples, 0.02%)</title><rect x="17.9650%" y="677" width="0.0175%" height="15" fill="rgb(251,74,28)" fg:x="95340" fg:w="93"/><text x="18.2150%" y="687.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.02%)</title><rect x="17.9617%" y="725" width="0.0236%" height="15" fill="rgb(218,20,49)" fg:x="95323" fg:w="125"/><text x="18.2117%" y="735.50"></text></g><g><title>schedule (122 samples, 0.02%)</title><rect x="17.9623%" y="709" width="0.0230%" height="15" fill="rgb(238,28,14)" fg:x="95326" fg:w="122"/><text x="18.2123%" y="719.50"></text></g><g><title>__schedule (119 samples, 0.02%)</title><rect x="17.9629%" y="693" width="0.0224%" height="15" fill="rgb(229,40,46)" fg:x="95329" fg:w="119"/><text x="18.2129%" y="703.50"></text></g><g><title>futex_wait (133 samples, 0.03%)</title><rect x="17.9610%" y="741" width="0.0251%" height="15" fill="rgb(244,195,20)" fg:x="95319" fg:w="133"/><text x="18.2110%" y="751.50"></text></g><g><title>do_futex (156 samples, 0.03%)</title><rect x="17.9606%" y="757" width="0.0294%" height="15" fill="rgb(253,56,35)" fg:x="95317" fg:w="156"/><text x="18.2106%" y="767.50"></text></g><g><title>__x64_sys_futex (157 samples, 0.03%)</title><rect x="17.9606%" y="773" width="0.0296%" height="15" fill="rgb(210,149,44)" fg:x="95317" fg:w="157"/><text x="18.2106%" y="783.50"></text></g><g><title>do_syscall_64 (345 samples, 0.07%)</title><rect x="17.9433%" y="789" width="0.0650%" height="15" fill="rgb(240,135,12)" fg:x="95225" fg:w="345"/><text x="18.1933%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.07%)</title><rect x="17.9427%" y="805" width="0.0671%" height="15" fill="rgb(251,24,50)" fg:x="95222" fg:w="356"/><text x="18.1927%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="18.0111%" y="757" width="0.0104%" height="15" fill="rgb(243,200,47)" fg:x="95585" fg:w="55"/><text x="18.2611%" y="767.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="18.0104%" y="789" width="0.0115%" height="15" fill="rgb(224,166,26)" fg:x="95581" fg:w="61"/><text x="18.2604%" y="799.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="18.0104%" y="773" width="0.0115%" height="15" fill="rgb(233,0,47)" fg:x="95581" fg:w="61"/><text x="18.2604%" y="783.50"></text></g><g><title>ret_from_fork (63 samples, 0.01%)</title><rect x="18.0102%" y="805" width="0.0119%" height="15" fill="rgb(253,80,5)" fg:x="95580" fg:w="63"/><text x="18.2602%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (770 samples, 0.15%)</title><rect x="17.8771%" y="821" width="0.1451%" height="15" fill="rgb(214,133,25)" fg:x="94874" fg:w="770"/><text x="18.1271%" y="831.50"></text></g><g><title>bazel (835 samples, 0.16%)</title><rect x="17.8762%" y="837" width="0.1573%" height="15" fill="rgb(209,27,14)" fg:x="94869" fg:w="835"/><text x="18.1262%" y="847.50"></text></g><g><title>elf_machine_rela (73 samples, 0.01%)</title><rect x="18.0545%" y="709" width="0.0138%" height="15" fill="rgb(219,102,51)" fg:x="95815" fg:w="73"/><text x="18.3045%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (56 samples, 0.01%)</title><rect x="18.0577%" y="693" width="0.0106%" height="15" fill="rgb(237,18,16)" fg:x="95832" fg:w="56"/><text x="18.3077%" y="703.50"></text></g><g><title>_dl_relocate_object (92 samples, 0.02%)</title><rect x="18.0513%" y="741" width="0.0173%" height="15" fill="rgb(241,85,17)" fg:x="95798" fg:w="92"/><text x="18.3013%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (90 samples, 0.02%)</title><rect x="18.0516%" y="725" width="0.0170%" height="15" fill="rgb(236,90,42)" fg:x="95800" fg:w="90"/><text x="18.3016%" y="735.50"></text></g><g><title>_dl_start_final (141 samples, 0.03%)</title><rect x="18.0426%" y="789" width="0.0266%" height="15" fill="rgb(249,57,21)" fg:x="95752" fg:w="141"/><text x="18.2926%" y="799.50"></text></g><g><title>_dl_sysdep_start (140 samples, 0.03%)</title><rect x="18.0428%" y="773" width="0.0264%" height="15" fill="rgb(243,12,36)" fg:x="95753" fg:w="140"/><text x="18.2928%" y="783.50"></text></g><g><title>[ld-2.31.so] (140 samples, 0.03%)</title><rect x="18.0428%" y="757" width="0.0264%" height="15" fill="rgb(253,128,47)" fg:x="95753" fg:w="140"/><text x="18.2928%" y="767.50"></text></g><g><title>_dl_start (144 samples, 0.03%)</title><rect x="18.0426%" y="805" width="0.0271%" height="15" fill="rgb(207,33,20)" fg:x="95752" fg:w="144"/><text x="18.2926%" y="815.50"></text></g><g><title>_start (160 samples, 0.03%)</title><rect x="18.0399%" y="821" width="0.0301%" height="15" fill="rgb(233,215,35)" fg:x="95738" fg:w="160"/><text x="18.2899%" y="831.50"></text></g><g><title>build-runfiles (251 samples, 0.05%)</title><rect x="18.0343%" y="837" width="0.0473%" height="15" fill="rgb(249,188,52)" fg:x="95708" fg:w="251"/><text x="18.2843%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="18.0708%" y="821" width="0.0107%" height="15" fill="rgb(225,12,32)" fg:x="95902" fg:w="57"/><text x="18.3208%" y="831.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="18.0708%" y="805" width="0.0107%" height="15" fill="rgb(247,98,14)" fg:x="95902" fg:w="57"/><text x="18.3208%" y="815.50"></text></g><g><title>__GI___libc_malloc (62 samples, 0.01%)</title><rect x="18.1298%" y="453" width="0.0117%" height="15" fill="rgb(247,219,48)" fg:x="96215" fg:w="62"/><text x="18.3798%" y="463.50"></text></g><g><title>_int_malloc (62 samples, 0.01%)</title><rect x="18.1298%" y="437" width="0.0117%" height="15" fill="rgb(253,60,48)" fg:x="96215" fg:w="62"/><text x="18.3798%" y="447.50"></text></g><g><title>[dash] (63 samples, 0.01%)</title><rect x="18.1298%" y="469" width="0.0119%" height="15" fill="rgb(245,15,52)" fg:x="96215" fg:w="63"/><text x="18.3798%" y="479.50"></text></g><g><title>[dash] (69 samples, 0.01%)</title><rect x="18.1291%" y="485" width="0.0130%" height="15" fill="rgb(220,133,28)" fg:x="96211" fg:w="69"/><text x="18.3791%" y="495.50"></text></g><g><title>[dash] (84 samples, 0.02%)</title><rect x="18.1289%" y="501" width="0.0158%" height="15" fill="rgb(217,180,4)" fg:x="96210" fg:w="84"/><text x="18.3789%" y="511.50"></text></g><g><title>new_sync_write (54 samples, 0.01%)</title><rect x="18.1528%" y="421" width="0.0102%" height="15" fill="rgb(251,24,1)" fg:x="96337" fg:w="54"/><text x="18.4028%" y="431.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="18.1487%" y="469" width="0.0168%" height="15" fill="rgb(212,185,49)" fg:x="96315" fg:w="89"/><text x="18.3987%" y="479.50"></text></g><g><title>ksys_write (89 samples, 0.02%)</title><rect x="18.1487%" y="453" width="0.0168%" height="15" fill="rgb(215,175,22)" fg:x="96315" fg:w="89"/><text x="18.3987%" y="463.50"></text></g><g><title>vfs_write (85 samples, 0.02%)</title><rect x="18.1494%" y="437" width="0.0160%" height="15" fill="rgb(250,205,14)" fg:x="96319" fg:w="85"/><text x="18.3994%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.02%)</title><rect x="18.1487%" y="485" width="0.0170%" height="15" fill="rgb(225,211,22)" fg:x="96315" fg:w="90"/><text x="18.3987%" y="495.50"></text></g><g><title>__GI___libc_write (95 samples, 0.02%)</title><rect x="18.1479%" y="501" width="0.0179%" height="15" fill="rgb(251,179,42)" fg:x="96311" fg:w="95"/><text x="18.3979%" y="511.50"></text></g><g><title>alloc_bprm (87 samples, 0.02%)</title><rect x="18.1669%" y="421" width="0.0164%" height="15" fill="rgb(208,216,51)" fg:x="96412" fg:w="87"/><text x="18.4169%" y="431.50"></text></g><g><title>link_path_walk.part.0 (59 samples, 0.01%)</title><rect x="18.1980%" y="357" width="0.0111%" height="15" fill="rgb(235,36,11)" fg:x="96577" fg:w="59"/><text x="18.4480%" y="367.50"></text></g><g><title>do_open_execat (131 samples, 0.02%)</title><rect x="18.1884%" y="405" width="0.0247%" height="15" fill="rgb(213,189,28)" fg:x="96526" fg:w="131"/><text x="18.4384%" y="415.50"></text></g><g><title>do_filp_open (130 samples, 0.02%)</title><rect x="18.1886%" y="389" width="0.0245%" height="15" fill="rgb(227,203,42)" fg:x="96527" fg:w="130"/><text x="18.4386%" y="399.50"></text></g><g><title>path_openat (129 samples, 0.02%)</title><rect x="18.1888%" y="373" width="0.0243%" height="15" fill="rgb(244,72,36)" fg:x="96528" fg:w="129"/><text x="18.4388%" y="383.50"></text></g><g><title>btrfs_lookup_xattr (59 samples, 0.01%)</title><rect x="18.2188%" y="293" width="0.0111%" height="15" fill="rgb(213,53,17)" fg:x="96687" fg:w="59"/><text x="18.4688%" y="303.50"></text></g><g><title>btrfs_search_slot (58 samples, 0.01%)</title><rect x="18.2190%" y="277" width="0.0109%" height="15" fill="rgb(207,167,3)" fg:x="96688" fg:w="58"/><text x="18.4690%" y="287.50"></text></g><g><title>btrfs_getxattr (76 samples, 0.01%)</title><rect x="18.2169%" y="309" width="0.0143%" height="15" fill="rgb(216,98,30)" fg:x="96677" fg:w="76"/><text x="18.4669%" y="319.50"></text></g><g><title>get_vfs_caps_from_disk (78 samples, 0.01%)</title><rect x="18.2169%" y="341" width="0.0147%" height="15" fill="rgb(236,123,15)" fg:x="96677" fg:w="78"/><text x="18.4669%" y="351.50"></text></g><g><title>__vfs_getxattr (78 samples, 0.01%)</title><rect x="18.2169%" y="325" width="0.0147%" height="15" fill="rgb(248,81,50)" fg:x="96677" fg:w="78"/><text x="18.4669%" y="335.50"></text></g><g><title>security_bprm_creds_from_file (84 samples, 0.02%)</title><rect x="18.2159%" y="373" width="0.0158%" height="15" fill="rgb(214,120,4)" fg:x="96672" fg:w="84"/><text x="18.4659%" y="383.50"></text></g><g><title>cap_bprm_creds_from_file (83 samples, 0.02%)</title><rect x="18.2161%" y="357" width="0.0156%" height="15" fill="rgb(208,179,34)" fg:x="96673" fg:w="83"/><text x="18.4661%" y="367.50"></text></g><g><title>begin_new_exec (92 samples, 0.02%)</title><rect x="18.2146%" y="389" width="0.0173%" height="15" fill="rgb(227,140,7)" fg:x="96665" fg:w="92"/><text x="18.4646%" y="399.50"></text></g><g><title>load_elf_binary (166 samples, 0.03%)</title><rect x="18.2131%" y="405" width="0.0313%" height="15" fill="rgb(214,22,6)" fg:x="96657" fg:w="166"/><text x="18.4631%" y="415.50"></text></g><g><title>select_task_rq_fair (83 samples, 0.02%)</title><rect x="18.2546%" y="389" width="0.0156%" height="15" fill="rgb(207,137,27)" fg:x="96877" fg:w="83"/><text x="18.5046%" y="399.50"></text></g><g><title>find_idlest_group (69 samples, 0.01%)</title><rect x="18.2572%" y="373" width="0.0130%" height="15" fill="rgb(210,8,46)" fg:x="96891" fg:w="69"/><text x="18.5072%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (162 samples, 0.03%)</title><rect x="18.2713%" y="325" width="0.0305%" height="15" fill="rgb(240,16,54)" fg:x="96966" fg:w="162"/><text x="18.5213%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (159 samples, 0.03%)</title><rect x="18.2719%" y="309" width="0.0300%" height="15" fill="rgb(211,209,29)" fg:x="96969" fg:w="159"/><text x="18.5219%" y="319.50"></text></g><g><title>native_write_msr (158 samples, 0.03%)</title><rect x="18.2721%" y="293" width="0.0298%" height="15" fill="rgb(226,228,24)" fg:x="96970" fg:w="158"/><text x="18.5221%" y="303.50"></text></g><g><title>finish_task_switch (169 samples, 0.03%)</title><rect x="18.2706%" y="341" width="0.0318%" height="15" fill="rgb(222,84,9)" fg:x="96962" fg:w="169"/><text x="18.5206%" y="351.50"></text></g><g><title>_cond_resched (170 samples, 0.03%)</title><rect x="18.2706%" y="373" width="0.0320%" height="15" fill="rgb(234,203,30)" fg:x="96962" fg:w="170"/><text x="18.5206%" y="383.50"></text></g><g><title>__schedule (170 samples, 0.03%)</title><rect x="18.2706%" y="357" width="0.0320%" height="15" fill="rgb(238,109,14)" fg:x="96962" fg:w="170"/><text x="18.5206%" y="367.50"></text></g><g><title>sched_exec (258 samples, 0.05%)</title><rect x="18.2544%" y="405" width="0.0486%" height="15" fill="rgb(233,206,34)" fg:x="96876" fg:w="258"/><text x="18.5044%" y="415.50"></text></g><g><title>stop_one_cpu (174 samples, 0.03%)</title><rect x="18.2702%" y="389" width="0.0328%" height="15" fill="rgb(220,167,47)" fg:x="96960" fg:w="174"/><text x="18.5202%" y="399.50"></text></g><g><title>security_bprm_check (86 samples, 0.02%)</title><rect x="18.3030%" y="405" width="0.0162%" height="15" fill="rgb(238,105,10)" fg:x="97134" fg:w="86"/><text x="18.5530%" y="415.50"></text></g><g><title>tomoyo_bprm_check_security (86 samples, 0.02%)</title><rect x="18.3030%" y="389" width="0.0162%" height="15" fill="rgb(213,227,17)" fg:x="97134" fg:w="86"/><text x="18.5530%" y="399.50"></text></g><g><title>tomoyo_find_next_domain (84 samples, 0.02%)</title><rect x="18.3034%" y="373" width="0.0158%" height="15" fill="rgb(217,132,38)" fg:x="97136" fg:w="84"/><text x="18.5534%" y="383.50"></text></g><g><title>apparmor_bprm_creds_for_exec (112 samples, 0.02%)</title><rect x="18.3194%" y="389" width="0.0211%" height="15" fill="rgb(242,146,4)" fg:x="97221" fg:w="112"/><text x="18.5694%" y="399.50"></text></g><g><title>profile_transition (99 samples, 0.02%)</title><rect x="18.3218%" y="373" width="0.0187%" height="15" fill="rgb(212,61,9)" fg:x="97234" fg:w="99"/><text x="18.5718%" y="383.50"></text></g><g><title>find_attach (78 samples, 0.01%)</title><rect x="18.3258%" y="357" width="0.0147%" height="15" fill="rgb(247,126,22)" fg:x="97255" fg:w="78"/><text x="18.5758%" y="367.50"></text></g><g><title>security_bprm_creds_for_exec (115 samples, 0.02%)</title><rect x="18.3192%" y="405" width="0.0217%" height="15" fill="rgb(220,196,2)" fg:x="97220" fg:w="115"/><text x="18.5692%" y="415.50"></text></g><g><title>bprm_execve (841 samples, 0.16%)</title><rect x="18.1833%" y="421" width="0.1585%" height="15" fill="rgb(208,46,4)" fg:x="96499" fg:w="841"/><text x="18.4333%" y="431.50"></text></g><g><title>__get_user_pages_remote (158 samples, 0.03%)</title><rect x="18.3424%" y="389" width="0.0298%" height="15" fill="rgb(252,104,46)" fg:x="97343" fg:w="158"/><text x="18.5924%" y="399.50"></text></g><g><title>__get_user_pages (158 samples, 0.03%)</title><rect x="18.3424%" y="373" width="0.0298%" height="15" fill="rgb(237,152,48)" fg:x="97343" fg:w="158"/><text x="18.5924%" y="383.50"></text></g><g><title>handle_mm_fault (131 samples, 0.02%)</title><rect x="18.3475%" y="357" width="0.0247%" height="15" fill="rgb(221,59,37)" fg:x="97370" fg:w="131"/><text x="18.5975%" y="367.50"></text></g><g><title>copy_string_kernel (168 samples, 0.03%)</title><rect x="18.3418%" y="421" width="0.0317%" height="15" fill="rgb(209,202,51)" fg:x="97340" fg:w="168"/><text x="18.5918%" y="431.50"></text></g><g><title>get_arg_page (166 samples, 0.03%)</title><rect x="18.3422%" y="405" width="0.0313%" height="15" fill="rgb(228,81,30)" fg:x="97342" fg:w="166"/><text x="18.5922%" y="415.50"></text></g><g><title>copy_strings.isra.0 (81 samples, 0.02%)</title><rect x="18.3735%" y="421" width="0.0153%" height="15" fill="rgb(227,42,39)" fg:x="97508" fg:w="81"/><text x="18.6235%" y="431.50"></text></g><g><title>do_execveat_common (1,194 samples, 0.22%)</title><rect x="18.1668%" y="437" width="0.2250%" height="15" fill="rgb(221,26,2)" fg:x="96411" fg:w="1194"/><text x="18.4168%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,214 samples, 0.23%)</title><rect x="18.1666%" y="485" width="0.2288%" height="15" fill="rgb(254,61,31)" fg:x="96410" fg:w="1214"/><text x="18.4166%" y="495.50"></text></g><g><title>do_syscall_64 (1,214 samples, 0.23%)</title><rect x="18.1666%" y="469" width="0.2288%" height="15" fill="rgb(222,173,38)" fg:x="96410" fg:w="1214"/><text x="18.4166%" y="479.50"></text></g><g><title>__x64_sys_execve (1,214 samples, 0.23%)</title><rect x="18.1666%" y="453" width="0.2288%" height="15" fill="rgb(218,50,12)" fg:x="96410" fg:w="1214"/><text x="18.4166%" y="463.50"></text></g><g><title>__GI_execve (1,219 samples, 0.23%)</title><rect x="18.1658%" y="501" width="0.2297%" height="15" fill="rgb(223,88,40)" fg:x="96406" fg:w="1219"/><text x="18.4158%" y="511.50"></text></g><g><title>[dash] (1,462 samples, 0.28%)</title><rect x="18.1240%" y="517" width="0.2755%" height="15" fill="rgb(237,54,19)" fg:x="96184" fg:w="1462"/><text x="18.3740%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (1,180 samples, 0.22%)</title><rect x="18.4234%" y="389" width="0.2223%" height="15" fill="rgb(251,129,25)" fg:x="97773" fg:w="1180"/><text x="18.6734%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,110 samples, 0.21%)</title><rect x="18.4366%" y="373" width="0.2092%" height="15" fill="rgb(238,97,19)" fg:x="97843" fg:w="1110"/><text x="18.6866%" y="383.50"></text></g><g><title>native_write_msr (1,106 samples, 0.21%)</title><rect x="18.4373%" y="357" width="0.2084%" height="15" fill="rgb(240,169,18)" fg:x="97847" fg:w="1106"/><text x="18.6873%" y="367.50"></text></g><g><title>finish_task_switch (1,233 samples, 0.23%)</title><rect x="18.4161%" y="405" width="0.2323%" height="15" fill="rgb(230,187,49)" fg:x="97734" fg:w="1233"/><text x="18.6661%" y="415.50"></text></g><g><title>schedule (1,248 samples, 0.24%)</title><rect x="18.4149%" y="437" width="0.2352%" height="15" fill="rgb(209,44,26)" fg:x="97728" fg:w="1248"/><text x="18.6649%" y="447.50"></text></g><g><title>__schedule (1,248 samples, 0.24%)</title><rect x="18.4149%" y="421" width="0.2352%" height="15" fill="rgb(244,0,6)" fg:x="97728" fg:w="1248"/><text x="18.6649%" y="431.50"></text></g><g><title>release_task (119 samples, 0.02%)</title><rect x="18.6544%" y="421" width="0.0224%" height="15" fill="rgb(248,18,21)" fg:x="98999" fg:w="119"/><text x="18.9044%" y="431.50"></text></g><g><title>do_syscall_64 (1,411 samples, 0.27%)</title><rect x="18.4115%" y="485" width="0.2659%" height="15" fill="rgb(245,180,19)" fg:x="97710" fg:w="1411"/><text x="18.6615%" y="495.50"></text></g><g><title>kernel_wait4 (1,408 samples, 0.27%)</title><rect x="18.4121%" y="469" width="0.2653%" height="15" fill="rgb(252,118,36)" fg:x="97713" fg:w="1408"/><text x="18.6621%" y="479.50"></text></g><g><title>do_wait (1,407 samples, 0.27%)</title><rect x="18.4123%" y="453" width="0.2651%" height="15" fill="rgb(210,224,19)" fg:x="97714" fg:w="1407"/><text x="18.6623%" y="463.50"></text></g><g><title>wait_consider_task (145 samples, 0.03%)</title><rect x="18.6501%" y="437" width="0.0273%" height="15" fill="rgb(218,30,24)" fg:x="98976" fg:w="145"/><text x="18.9001%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,454 samples, 0.27%)</title><rect x="18.4115%" y="501" width="0.2740%" height="15" fill="rgb(219,75,50)" fg:x="97710" fg:w="1454"/><text x="18.6615%" y="511.50"></text></g><g><title>__GI___wait4 (1,468 samples, 0.28%)</title><rect x="18.4104%" y="517" width="0.2766%" height="15" fill="rgb(234,72,50)" fg:x="97704" fg:w="1468"/><text x="18.6604%" y="527.50"></text></g><g><title>[dash] (3,141 samples, 0.59%)</title><rect x="18.1189%" y="533" width="0.5919%" height="15" fill="rgb(219,100,48)" fg:x="96157" fg:w="3141"/><text x="18.3689%" y="543.50"></text></g><g><title>filemap_map_pages (59 samples, 0.01%)</title><rect x="18.7206%" y="453" width="0.0111%" height="15" fill="rgb(253,5,41)" fg:x="99350" fg:w="59"/><text x="18.9706%" y="463.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="18.7189%" y="517" width="0.0130%" height="15" fill="rgb(247,181,11)" fg:x="99341" fg:w="69"/><text x="18.9689%" y="527.50"></text></g><g><title>exc_page_fault (69 samples, 0.01%)</title><rect x="18.7189%" y="501" width="0.0130%" height="15" fill="rgb(222,223,25)" fg:x="99341" fg:w="69"/><text x="18.9689%" y="511.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.01%)</title><rect x="18.7189%" y="485" width="0.0130%" height="15" fill="rgb(214,198,28)" fg:x="99341" fg:w="69"/><text x="18.9689%" y="495.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="18.7192%" y="469" width="0.0126%" height="15" fill="rgb(230,46,43)" fg:x="99343" fg:w="67"/><text x="18.9692%" y="479.50"></text></g><g><title>__longjmp_chk (89 samples, 0.02%)</title><rect x="18.7166%" y="533" width="0.0168%" height="15" fill="rgb(233,65,53)" fg:x="99329" fg:w="89"/><text x="18.9666%" y="543.50"></text></g><g><title>handle_mm_fault (85 samples, 0.02%)</title><rect x="18.7409%" y="485" width="0.0160%" height="15" fill="rgb(221,121,27)" fg:x="99458" fg:w="85"/><text x="18.9909%" y="495.50"></text></g><g><title>wp_page_copy (64 samples, 0.01%)</title><rect x="18.7449%" y="469" width="0.0121%" height="15" fill="rgb(247,70,47)" fg:x="99479" fg:w="64"/><text x="18.9949%" y="479.50"></text></g><g><title>exc_page_fault (111 samples, 0.02%)</title><rect x="18.7366%" y="517" width="0.0209%" height="15" fill="rgb(228,85,35)" fg:x="99435" fg:w="111"/><text x="18.9866%" y="527.50"></text></g><g><title>do_user_addr_fault (110 samples, 0.02%)</title><rect x="18.7368%" y="501" width="0.0207%" height="15" fill="rgb(209,50,18)" fg:x="99436" fg:w="110"/><text x="18.9868%" y="511.50"></text></g><g><title>asm_exc_page_fault (116 samples, 0.02%)</title><rect x="18.7358%" y="533" width="0.0219%" height="15" fill="rgb(250,19,35)" fg:x="99431" fg:w="116"/><text x="18.9858%" y="543.50"></text></g><g><title>[dash] (3,451 samples, 0.65%)</title><rect x="18.1095%" y="549" width="0.6503%" height="15" fill="rgb(253,107,29)" fg:x="96107" fg:w="3451"/><text x="18.3595%" y="559.50"></text></g><g><title>filename_lookup (59 samples, 0.01%)</title><rect x="18.7673%" y="469" width="0.0111%" height="15" fill="rgb(252,179,29)" fg:x="99598" fg:w="59"/><text x="19.0173%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.02%)</title><rect x="18.7665%" y="533" width="0.0181%" height="15" fill="rgb(238,194,6)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="543.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="18.7665%" y="517" width="0.0181%" height="15" fill="rgb(238,164,29)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="527.50"></text></g><g><title>__do_sys_newstat (96 samples, 0.02%)</title><rect x="18.7665%" y="501" width="0.0181%" height="15" fill="rgb(224,25,9)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="511.50"></text></g><g><title>vfs_statx (96 samples, 0.02%)</title><rect x="18.7665%" y="485" width="0.0181%" height="15" fill="rgb(244,153,23)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="495.50"></text></g><g><title>__GI___xstat (132 samples, 0.02%)</title><rect x="18.7603%" y="549" width="0.0249%" height="15" fill="rgb(212,203,14)" fg:x="99561" fg:w="132"/><text x="19.0103%" y="559.50"></text></g><g><title>filemap_map_pages (116 samples, 0.02%)</title><rect x="18.8029%" y="453" width="0.0219%" height="15" fill="rgb(220,164,20)" fg:x="99787" fg:w="116"/><text x="19.0529%" y="463.50"></text></g><g><title>handle_mm_fault (131 samples, 0.02%)</title><rect x="18.8014%" y="469" width="0.0247%" height="15" fill="rgb(222,203,48)" fg:x="99779" fg:w="131"/><text x="19.0514%" y="479.50"></text></g><g><title>asm_exc_page_fault (143 samples, 0.03%)</title><rect x="18.7995%" y="517" width="0.0269%" height="15" fill="rgb(215,159,22)" fg:x="99769" fg:w="143"/><text x="19.0495%" y="527.50"></text></g><g><title>exc_page_fault (143 samples, 0.03%)</title><rect x="18.7995%" y="501" width="0.0269%" height="15" fill="rgb(216,183,47)" fg:x="99769" fg:w="143"/><text x="19.0495%" y="511.50"></text></g><g><title>do_user_addr_fault (142 samples, 0.03%)</title><rect x="18.7997%" y="485" width="0.0268%" height="15" fill="rgb(229,195,25)" fg:x="99770" fg:w="142"/><text x="19.0497%" y="495.50"></text></g><g><title>__run_fork_handlers (167 samples, 0.03%)</title><rect x="18.7969%" y="533" width="0.0315%" height="15" fill="rgb(224,132,51)" fg:x="99755" fg:w="167"/><text x="19.0469%" y="543.50"></text></g><g><title>alloc_set_pte (73 samples, 0.01%)</title><rect x="18.9062%" y="437" width="0.0138%" height="15" fill="rgb(240,63,7)" fg:x="100335" fg:w="73"/><text x="19.1562%" y="447.50"></text></g><g><title>filemap_map_pages (332 samples, 0.06%)</title><rect x="18.8771%" y="453" width="0.0626%" height="15" fill="rgb(249,182,41)" fg:x="100181" fg:w="332"/><text x="19.1271%" y="463.50"></text></g><g><title>xas_find (73 samples, 0.01%)</title><rect x="18.9259%" y="437" width="0.0138%" height="15" fill="rgb(243,47,26)" fg:x="100440" fg:w="73"/><text x="19.1759%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (135 samples, 0.03%)</title><rect x="18.9410%" y="437" width="0.0254%" height="15" fill="rgb(233,48,2)" fg:x="100520" fg:w="135"/><text x="19.1910%" y="447.50"></text></g><g><title>get_page_from_freelist (81 samples, 0.02%)</title><rect x="18.9512%" y="421" width="0.0153%" height="15" fill="rgb(244,165,34)" fg:x="100574" fg:w="81"/><text x="19.2012%" y="431.50"></text></g><g><title>pte_alloc_one (150 samples, 0.03%)</title><rect x="18.9403%" y="453" width="0.0283%" height="15" fill="rgb(207,89,7)" fg:x="100516" fg:w="150"/><text x="19.1903%" y="463.50"></text></g><g><title>handle_mm_fault (583 samples, 0.11%)</title><rect x="18.8592%" y="469" width="0.1099%" height="15" fill="rgb(244,117,36)" fg:x="100086" fg:w="583"/><text x="19.1092%" y="479.50"></text></g><g><title>do_user_addr_fault (656 samples, 0.12%)</title><rect x="18.8457%" y="485" width="0.1236%" height="15" fill="rgb(226,144,34)" fg:x="100014" fg:w="656"/><text x="19.0957%" y="495.50"></text></g><g><title>exc_page_fault (659 samples, 0.12%)</title><rect x="18.8453%" y="501" width="0.1242%" height="15" fill="rgb(213,23,19)" fg:x="100012" fg:w="659"/><text x="19.0953%" y="511.50"></text></g><g><title>asm_exc_page_fault (667 samples, 0.13%)</title><rect x="18.8442%" y="517" width="0.1257%" height="15" fill="rgb(217,75,12)" fg:x="100006" fg:w="667"/><text x="19.0942%" y="527.50"></text></g><g><title>__vmalloc_node_range (60 samples, 0.01%)</title><rect x="18.9840%" y="437" width="0.0113%" height="15" fill="rgb(224,159,17)" fg:x="100748" fg:w="60"/><text x="19.2340%" y="447.50"></text></g><g><title>copy_creds (55 samples, 0.01%)</title><rect x="19.0158%" y="437" width="0.0104%" height="15" fill="rgb(217,118,1)" fg:x="100917" fg:w="55"/><text x="19.2658%" y="447.50"></text></g><g><title>kmem_cache_alloc (71 samples, 0.01%)</title><rect x="19.0622%" y="389" width="0.0134%" height="15" fill="rgb(232,180,48)" fg:x="101163" fg:w="71"/><text x="19.3122%" y="399.50"></text></g><g><title>anon_vma_clone (129 samples, 0.02%)</title><rect x="19.0522%" y="405" width="0.0243%" height="15" fill="rgb(230,27,33)" fg:x="101110" fg:w="129"/><text x="19.3022%" y="415.50"></text></g><g><title>kmem_cache_alloc (74 samples, 0.01%)</title><rect x="19.0771%" y="405" width="0.0139%" height="15" fill="rgb(205,31,21)" fg:x="101242" fg:w="74"/><text x="19.3271%" y="415.50"></text></g><g><title>anon_vma_fork (219 samples, 0.04%)</title><rect x="19.0507%" y="421" width="0.0413%" height="15" fill="rgb(253,59,4)" fg:x="101102" fg:w="219"/><text x="19.3007%" y="431.50"></text></g><g><title>copy_page_range (200 samples, 0.04%)</title><rect x="19.0920%" y="421" width="0.0377%" height="15" fill="rgb(224,201,9)" fg:x="101321" fg:w="200"/><text x="19.3420%" y="431.50"></text></g><g><title>vm_area_dup (146 samples, 0.03%)</title><rect x="19.1406%" y="421" width="0.0275%" height="15" fill="rgb(229,206,30)" fg:x="101579" fg:w="146"/><text x="19.3906%" y="431.50"></text></g><g><title>kmem_cache_alloc (102 samples, 0.02%)</title><rect x="19.1489%" y="405" width="0.0192%" height="15" fill="rgb(212,67,47)" fg:x="101623" fg:w="102"/><text x="19.3989%" y="415.50"></text></g><g><title>dup_mm (703 samples, 0.13%)</title><rect x="19.0362%" y="437" width="0.1325%" height="15" fill="rgb(211,96,50)" fg:x="101025" fg:w="703"/><text x="19.2862%" y="447.50"></text></g><g><title>kmem_cache_alloc_node (56 samples, 0.01%)</title><rect x="19.1766%" y="437" width="0.0106%" height="15" fill="rgb(252,114,18)" fg:x="101770" fg:w="56"/><text x="19.4266%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (70 samples, 0.01%)</title><rect x="19.2239%" y="373" width="0.0132%" height="15" fill="rgb(223,58,37)" fg:x="102021" fg:w="70"/><text x="19.4739%" y="383.50"></text></g><g><title>allocate_fake_cpuc (73 samples, 0.01%)</title><rect x="19.2387%" y="341" width="0.0138%" height="15" fill="rgb(237,70,4)" fg:x="102100" fg:w="73"/><text x="19.4887%" y="351.50"></text></g><g><title>kmem_cache_alloc_trace (56 samples, 0.01%)</title><rect x="19.2419%" y="325" width="0.0106%" height="15" fill="rgb(244,85,46)" fg:x="102117" fg:w="56"/><text x="19.4919%" y="335.50"></text></g><g><title>perf_try_init_event (142 samples, 0.03%)</title><rect x="19.2370%" y="373" width="0.0268%" height="15" fill="rgb(223,39,52)" fg:x="102091" fg:w="142"/><text x="19.4870%" y="383.50"></text></g><g><title>x86_pmu_event_init (141 samples, 0.03%)</title><rect x="19.2372%" y="357" width="0.0266%" height="15" fill="rgb(218,200,14)" fg:x="102092" fg:w="141"/><text x="19.4872%" y="367.50"></text></g><g><title>perf_event_alloc (287 samples, 0.05%)</title><rect x="19.2099%" y="389" width="0.0541%" height="15" fill="rgb(208,171,16)" fg:x="101947" fg:w="287"/><text x="19.4599%" y="399.50"></text></g><g><title>inherit_task_group.isra.0 (352 samples, 0.07%)</title><rect x="19.1979%" y="421" width="0.0663%" height="15" fill="rgb(234,200,18)" fg:x="101883" fg:w="352"/><text x="19.4479%" y="431.50"></text></g><g><title>inherit_event.constprop.0 (340 samples, 0.06%)</title><rect x="19.2001%" y="405" width="0.0641%" height="15" fill="rgb(228,45,11)" fg:x="101895" fg:w="340"/><text x="19.4501%" y="415.50"></text></g><g><title>perf_event_init_task (377 samples, 0.07%)</title><rect x="19.1956%" y="437" width="0.0710%" height="15" fill="rgb(237,182,11)" fg:x="101871" fg:w="377"/><text x="19.4456%" y="447.50"></text></g><g><title>copy_process (1,617 samples, 0.30%)</title><rect x="18.9712%" y="453" width="0.3047%" height="15" fill="rgb(241,175,49)" fg:x="100680" fg:w="1617"/><text x="19.2212%" y="463.50"></text></g><g><title>__do_sys_clone (1,726 samples, 0.33%)</title><rect x="18.9704%" y="485" width="0.3252%" height="15" fill="rgb(247,38,35)" fg:x="100676" fg:w="1726"/><text x="19.2204%" y="495.50"></text></g><g><title>kernel_clone (1,722 samples, 0.32%)</title><rect x="18.9712%" y="469" width="0.3245%" height="15" fill="rgb(228,39,49)" fg:x="100680" fg:w="1722"/><text x="19.2212%" y="479.50"></text></g><g><title>wake_up_new_task (104 samples, 0.02%)</title><rect x="19.2761%" y="453" width="0.0196%" height="15" fill="rgb(226,101,26)" fg:x="102298" fg:w="104"/><text x="19.5261%" y="463.50"></text></g><g><title>do_syscall_64 (1,733 samples, 0.33%)</title><rect x="18.9699%" y="501" width="0.3265%" height="15" fill="rgb(206,141,19)" fg:x="100673" fg:w="1733"/><text x="19.2199%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,734 samples, 0.33%)</title><rect x="18.9699%" y="517" width="0.3267%" height="15" fill="rgb(211,200,13)" fg:x="100673" fg:w="1734"/><text x="19.2199%" y="527.50"></text></g><g><title>error_entry (54 samples, 0.01%)</title><rect x="19.2966%" y="517" width="0.0102%" height="15" fill="rgb(241,121,6)" fg:x="102407" fg:w="54"/><text x="19.5466%" y="527.50"></text></g><g><title>do_wp_page (55 samples, 0.01%)</title><rect x="19.3729%" y="405" width="0.0104%" height="15" fill="rgb(234,221,29)" fg:x="102812" fg:w="55"/><text x="19.6229%" y="415.50"></text></g><g><title>alloc_pages_vma (67 samples, 0.01%)</title><rect x="19.3848%" y="389" width="0.0126%" height="15" fill="rgb(229,136,5)" fg:x="102875" fg:w="67"/><text x="19.6348%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (65 samples, 0.01%)</title><rect x="19.3852%" y="373" width="0.0122%" height="15" fill="rgb(238,36,11)" fg:x="102877" fg:w="65"/><text x="19.6352%" y="383.50"></text></g><g><title>handle_mm_fault (312 samples, 0.06%)</title><rect x="19.3586%" y="421" width="0.0588%" height="15" fill="rgb(251,55,41)" fg:x="102736" fg:w="312"/><text x="19.6086%" y="431.50"></text></g><g><title>wp_page_copy (178 samples, 0.03%)</title><rect x="19.3838%" y="405" width="0.0335%" height="15" fill="rgb(242,34,40)" fg:x="102870" fg:w="178"/><text x="19.6338%" y="415.50"></text></g><g><title>exc_page_fault (378 samples, 0.07%)</title><rect x="19.3471%" y="453" width="0.0712%" height="15" fill="rgb(215,42,17)" fg:x="102675" fg:w="378"/><text x="19.5971%" y="463.50"></text></g><g><title>do_user_addr_fault (375 samples, 0.07%)</title><rect x="19.3477%" y="437" width="0.0707%" height="15" fill="rgb(207,44,46)" fg:x="102678" fg:w="375"/><text x="19.5977%" y="447.50"></text></g><g><title>asm_exc_page_fault (480 samples, 0.09%)</title><rect x="19.3281%" y="469" width="0.0904%" height="15" fill="rgb(211,206,28)" fg:x="102574" fg:w="480"/><text x="19.5781%" y="479.50"></text></g><g><title>__put_user_nocheck_4 (519 samples, 0.10%)</title><rect x="19.3213%" y="485" width="0.0978%" height="15" fill="rgb(237,167,16)" fg:x="102538" fg:w="519"/><text x="19.5713%" y="495.50"></text></g><g><title>__free_pages_ok (59 samples, 0.01%)</title><rect x="19.5602%" y="453" width="0.0111%" height="15" fill="rgb(233,66,6)" fg:x="103806" fg:w="59"/><text x="19.8102%" y="463.50"></text></g><g><title>__mmdrop (217 samples, 0.04%)</title><rect x="19.5523%" y="469" width="0.0409%" height="15" fill="rgb(246,123,29)" fg:x="103764" fg:w="217"/><text x="19.8023%" y="479.50"></text></g><g><title>pgd_free (114 samples, 0.02%)</title><rect x="19.5717%" y="453" width="0.0215%" height="15" fill="rgb(209,62,40)" fg:x="103867" fg:w="114"/><text x="19.8217%" y="463.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="19.5828%" y="437" width="0.0104%" height="15" fill="rgb(218,4,25)" fg:x="103926" fg:w="55"/><text x="19.8328%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (13,728 samples, 2.59%)</title><rect x="19.5932%" y="469" width="2.5868%" height="15" fill="rgb(253,91,49)" fg:x="103981" fg:w="13728"/><text x="19.8432%" y="479.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,075 samples, 2.46%)</title><rect x="19.7162%" y="453" width="2.4637%" height="15" fill="rgb(228,155,29)" fg:x="104634" fg:w="13075"/><text x="19.9662%" y="463.50">__..</text></g><g><title>native_write_msr (12,931 samples, 2.44%)</title><rect x="19.7434%" y="437" width="2.4366%" height="15" fill="rgb(243,57,37)" fg:x="104778" fg:w="12931"/><text x="19.9934%" y="447.50">na..</text></g><g><title>asm_sysvec_irq_work (136 samples, 0.03%)</title><rect x="22.1830%" y="469" width="0.0256%" height="15" fill="rgb(244,167,17)" fg:x="117725" fg:w="136"/><text x="22.4330%" y="479.50"></text></g><g><title>sysvec_irq_work (59 samples, 0.01%)</title><rect x="22.1975%" y="453" width="0.0111%" height="15" fill="rgb(207,181,38)" fg:x="117802" fg:w="59"/><text x="22.4475%" y="463.50"></text></g><g><title>schedule_tail (15,365 samples, 2.90%)</title><rect x="19.3175%" y="501" width="2.8952%" height="15" fill="rgb(211,8,23)" fg:x="102518" fg:w="15365"/><text x="19.5675%" y="511.50">sc..</text></g><g><title>finish_task_switch (14,784 samples, 2.79%)</title><rect x="19.4270%" y="485" width="2.7858%" height="15" fill="rgb(235,11,44)" fg:x="103099" fg:w="14784"/><text x="19.6770%" y="495.50">fi..</text></g><g><title>ret_from_fork (15,485 samples, 2.92%)</title><rect x="19.3098%" y="517" width="2.9178%" height="15" fill="rgb(248,18,52)" fg:x="102477" fg:w="15485"/><text x="19.5598%" y="527.50">re..</text></g><g><title>syscall_exit_to_user_mode (79 samples, 0.01%)</title><rect x="22.2127%" y="501" width="0.0149%" height="15" fill="rgb(208,4,7)" fg:x="117883" fg:w="79"/><text x="22.4627%" y="511.50"></text></g><g><title>exit_to_user_mode_prepare (79 samples, 0.01%)</title><rect x="22.2127%" y="485" width="0.0149%" height="15" fill="rgb(240,17,39)" fg:x="117883" fg:w="79"/><text x="22.4627%" y="495.50"></text></g><g><title>switch_fpu_return (74 samples, 0.01%)</title><rect x="22.2137%" y="469" width="0.0139%" height="15" fill="rgb(207,170,3)" fg:x="117888" fg:w="74"/><text x="22.4637%" y="479.50"></text></g><g><title>arch_fork (18,041 samples, 3.40%)</title><rect x="18.8283%" y="533" width="3.3995%" height="15" fill="rgb(236,100,52)" fg:x="99922" fg:w="18041"/><text x="19.0783%" y="543.50">arc..</text></g><g><title>handle_mm_fault (182 samples, 0.03%)</title><rect x="22.2323%" y="485" width="0.0343%" height="15" fill="rgb(246,78,51)" fg:x="117987" fg:w="182"/><text x="22.4823%" y="495.50"></text></g><g><title>wp_page_copy (139 samples, 0.03%)</title><rect x="22.2404%" y="469" width="0.0262%" height="15" fill="rgb(211,17,15)" fg:x="118030" fg:w="139"/><text x="22.4904%" y="479.50"></text></g><g><title>asm_exc_page_fault (208 samples, 0.04%)</title><rect x="22.2278%" y="533" width="0.0392%" height="15" fill="rgb(209,59,46)" fg:x="117963" fg:w="208"/><text x="22.4778%" y="543.50"></text></g><g><title>exc_page_fault (206 samples, 0.04%)</title><rect x="22.2282%" y="517" width="0.0388%" height="15" fill="rgb(210,92,25)" fg:x="117965" fg:w="206"/><text x="22.4782%" y="527.50"></text></g><g><title>do_user_addr_fault (205 samples, 0.04%)</title><rect x="22.2284%" y="501" width="0.0386%" height="15" fill="rgb(238,174,52)" fg:x="117966" fg:w="205"/><text x="22.4784%" y="511.50"></text></g><g><title>__libc_fork (18,493 samples, 3.48%)</title><rect x="18.7861%" y="549" width="3.4846%" height="15" fill="rgb(230,73,7)" fg:x="99698" fg:w="18493"/><text x="19.0361%" y="559.50">__l..</text></g><g><title>filemap_map_pages (113 samples, 0.02%)</title><rect x="22.2806%" y="485" width="0.0213%" height="15" fill="rgb(243,124,40)" fg:x="118243" fg:w="113"/><text x="22.5306%" y="495.50"></text></g><g><title>handle_mm_fault (136 samples, 0.03%)</title><rect x="22.2768%" y="501" width="0.0256%" height="15" fill="rgb(244,170,11)" fg:x="118223" fg:w="136"/><text x="22.5268%" y="511.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.03%)</title><rect x="22.2715%" y="549" width="0.0311%" height="15" fill="rgb(207,114,54)" fg:x="118195" fg:w="165"/><text x="22.5215%" y="559.50"></text></g><g><title>exc_page_fault (162 samples, 0.03%)</title><rect x="22.2721%" y="533" width="0.0305%" height="15" fill="rgb(205,42,20)" fg:x="118198" fg:w="162"/><text x="22.5221%" y="543.50"></text></g><g><title>do_user_addr_fault (162 samples, 0.03%)</title><rect x="22.2721%" y="517" width="0.0305%" height="15" fill="rgb(230,30,28)" fg:x="118198" fg:w="162"/><text x="22.5221%" y="527.50"></text></g><g><title>[dash] (22,280 samples, 4.20%)</title><rect x="18.1057%" y="565" width="4.1982%" height="15" fill="rgb(205,73,54)" fg:x="96087" fg:w="22280"/><text x="18.3557%" y="575.50">[dash]</text></g><g><title>alloc_file_pseudo (65 samples, 0.01%)</title><rect x="22.3211%" y="469" width="0.0122%" height="15" fill="rgb(254,227,23)" fg:x="118458" fg:w="65"/><text x="22.5711%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.03%)</title><rect x="22.3124%" y="549" width="0.0349%" height="15" fill="rgb(228,202,34)" fg:x="118412" fg:w="185"/><text x="22.5624%" y="559.50"></text></g><g><title>do_syscall_64 (184 samples, 0.03%)</title><rect x="22.3126%" y="533" width="0.0347%" height="15" fill="rgb(222,225,37)" fg:x="118413" fg:w="184"/><text x="22.5626%" y="543.50"></text></g><g><title>__x64_sys_pipe (184 samples, 0.03%)</title><rect x="22.3126%" y="517" width="0.0347%" height="15" fill="rgb(221,14,54)" fg:x="118413" fg:w="184"/><text x="22.5626%" y="527.50"></text></g><g><title>do_pipe2 (184 samples, 0.03%)</title><rect x="22.3126%" y="501" width="0.0347%" height="15" fill="rgb(254,102,2)" fg:x="118413" fg:w="184"/><text x="22.5626%" y="511.50"></text></g><g><title>create_pipe_files (159 samples, 0.03%)</title><rect x="22.3173%" y="485" width="0.0300%" height="15" fill="rgb(232,104,17)" fg:x="118438" fg:w="159"/><text x="22.5673%" y="495.50"></text></g><g><title>__GI_pipe (189 samples, 0.04%)</title><rect x="22.3119%" y="565" width="0.0356%" height="15" fill="rgb(250,220,14)" fg:x="118409" fg:w="189"/><text x="22.5619%" y="575.50"></text></g><g><title>[dash] (22,514 samples, 4.24%)</title><rect x="18.1053%" y="581" width="4.2423%" height="15" fill="rgb(241,158,9)" fg:x="96085" fg:w="22514"/><text x="18.3553%" y="591.50">[dash]</text></g><g><title>[dash] (22,545 samples, 4.25%)</title><rect x="18.1044%" y="597" width="4.2482%" height="15" fill="rgb(246,9,43)" fg:x="96080" fg:w="22545"/><text x="18.3544%" y="607.50">[dash]</text></g><g><title>[dash] (22,637 samples, 4.27%)</title><rect x="18.1025%" y="613" width="4.2655%" height="15" fill="rgb(206,73,33)" fg:x="96070" fg:w="22637"/><text x="18.3525%" y="623.50">[dash]</text></g><g><title>[dash] (22,770 samples, 4.29%)</title><rect x="18.0993%" y="629" width="4.2906%" height="15" fill="rgb(222,79,8)" fg:x="96053" fg:w="22770"/><text x="18.3493%" y="639.50">[dash]</text></g><g><title>filemap_map_pages (87 samples, 0.02%)</title><rect x="22.4196%" y="533" width="0.0164%" height="15" fill="rgb(234,8,54)" fg:x="118981" fg:w="87"/><text x="22.6696%" y="543.50"></text></g><g><title>exc_page_fault (132 samples, 0.02%)</title><rect x="22.4140%" y="581" width="0.0249%" height="15" fill="rgb(209,134,38)" fg:x="118951" fg:w="132"/><text x="22.6640%" y="591.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.02%)</title><rect x="22.4140%" y="565" width="0.0249%" height="15" fill="rgb(230,127,29)" fg:x="118951" fg:w="132"/><text x="22.6640%" y="575.50"></text></g><g><title>handle_mm_fault (121 samples, 0.02%)</title><rect x="22.4161%" y="549" width="0.0228%" height="15" fill="rgb(242,44,41)" fg:x="118962" fg:w="121"/><text x="22.6661%" y="559.50"></text></g><g><title>asm_exc_page_fault (135 samples, 0.03%)</title><rect x="22.4138%" y="597" width="0.0254%" height="15" fill="rgb(222,56,43)" fg:x="118950" fg:w="135"/><text x="22.6638%" y="607.50"></text></g><g><title>anon_vma_fork (55 samples, 0.01%)</title><rect x="22.4618%" y="501" width="0.0104%" height="15" fill="rgb(238,39,47)" fg:x="119205" fg:w="55"/><text x="22.7118%" y="511.50"></text></g><g><title>copy_page_range (85 samples, 0.02%)</title><rect x="22.4722%" y="501" width="0.0160%" height="15" fill="rgb(226,79,43)" fg:x="119260" fg:w="85"/><text x="22.7222%" y="511.50"></text></g><g><title>vm_area_dup (71 samples, 0.01%)</title><rect x="22.4918%" y="501" width="0.0134%" height="15" fill="rgb(242,105,53)" fg:x="119364" fg:w="71"/><text x="22.7418%" y="511.50"></text></g><g><title>kmem_cache_alloc (54 samples, 0.01%)</title><rect x="22.4950%" y="485" width="0.0102%" height="15" fill="rgb(251,132,46)" fg:x="119381" fg:w="54"/><text x="22.7450%" y="495.50"></text></g><g><title>dup_mm (255 samples, 0.05%)</title><rect x="22.4573%" y="517" width="0.0480%" height="15" fill="rgb(231,77,14)" fg:x="119181" fg:w="255"/><text x="22.7073%" y="527.50"></text></g><g><title>inherit_task_group.isra.0 (98 samples, 0.02%)</title><rect x="22.5122%" y="501" width="0.0185%" height="15" fill="rgb(240,135,9)" fg:x="119472" fg:w="98"/><text x="22.7622%" y="511.50"></text></g><g><title>inherit_event.constprop.0 (96 samples, 0.02%)</title><rect x="22.5125%" y="485" width="0.0181%" height="15" fill="rgb(248,109,14)" fg:x="119474" fg:w="96"/><text x="22.7625%" y="495.50"></text></g><g><title>perf_event_alloc (72 samples, 0.01%)</title><rect x="22.5171%" y="469" width="0.0136%" height="15" fill="rgb(227,146,52)" fg:x="119498" fg:w="72"/><text x="22.7671%" y="479.50"></text></g><g><title>perf_event_init_task (103 samples, 0.02%)</title><rect x="22.5120%" y="517" width="0.0194%" height="15" fill="rgb(232,54,3)" fg:x="119471" fg:w="103"/><text x="22.7620%" y="527.50"></text></g><g><title>copy_process (515 samples, 0.10%)</title><rect x="22.4394%" y="533" width="0.0970%" height="15" fill="rgb(229,201,43)" fg:x="119086" fg:w="515"/><text x="22.6894%" y="543.50"></text></g><g><title>do_syscall_64 (556 samples, 0.10%)</title><rect x="22.4392%" y="581" width="0.1048%" height="15" fill="rgb(252,161,33)" fg:x="119085" fg:w="556"/><text x="22.6892%" y="591.50"></text></g><g><title>__do_sys_clone (556 samples, 0.10%)</title><rect x="22.4392%" y="565" width="0.1048%" height="15" fill="rgb(226,146,40)" fg:x="119085" fg:w="556"/><text x="22.6892%" y="575.50"></text></g><g><title>kernel_clone (555 samples, 0.10%)</title><rect x="22.4394%" y="549" width="0.1046%" height="15" fill="rgb(219,47,25)" fg:x="119086" fg:w="555"/><text x="22.6894%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (557 samples, 0.10%)</title><rect x="22.4392%" y="597" width="0.1050%" height="15" fill="rgb(250,135,13)" fg:x="119085" fg:w="557"/><text x="22.6892%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.01%)</title><rect x="22.5826%" y="453" width="0.0121%" height="15" fill="rgb(219,229,18)" fg:x="119846" fg:w="64"/><text x="22.8326%" y="463.50"></text></g><g><title>alloc_pages_vma (76 samples, 0.01%)</title><rect x="22.5809%" y="469" width="0.0143%" height="15" fill="rgb(217,152,27)" fg:x="119837" fg:w="76"/><text x="22.8309%" y="479.50"></text></g><g><title>handle_mm_fault (329 samples, 0.06%)</title><rect x="22.5700%" y="501" width="0.0620%" height="15" fill="rgb(225,71,47)" fg:x="119779" fg:w="329"/><text x="22.8200%" y="511.50"></text></g><g><title>wp_page_copy (297 samples, 0.06%)</title><rect x="22.5760%" y="485" width="0.0560%" height="15" fill="rgb(220,139,14)" fg:x="119811" fg:w="297"/><text x="22.8260%" y="495.50"></text></g><g><title>do_user_addr_fault (356 samples, 0.07%)</title><rect x="22.5655%" y="517" width="0.0671%" height="15" fill="rgb(247,54,32)" fg:x="119755" fg:w="356"/><text x="22.8155%" y="527.50"></text></g><g><title>asm_exc_page_fault (389 samples, 0.07%)</title><rect x="22.5596%" y="549" width="0.0733%" height="15" fill="rgb(252,131,39)" fg:x="119724" fg:w="389"/><text x="22.8096%" y="559.50"></text></g><g><title>exc_page_fault (360 samples, 0.07%)</title><rect x="22.5651%" y="533" width="0.0678%" height="15" fill="rgb(210,108,39)" fg:x="119753" fg:w="360"/><text x="22.8151%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (419 samples, 0.08%)</title><rect x="22.5549%" y="565" width="0.0790%" height="15" fill="rgb(205,23,29)" fg:x="119699" fg:w="419"/><text x="22.8049%" y="575.50"></text></g><g><title>__free_pages_ok (100 samples, 0.02%)</title><rect x="22.7070%" y="533" width="0.0188%" height="15" fill="rgb(246,139,46)" fg:x="120506" fg:w="100"/><text x="22.9570%" y="543.50"></text></g><g><title>__mmdrop (253 samples, 0.05%)</title><rect x="22.6985%" y="549" width="0.0477%" height="15" fill="rgb(250,81,26)" fg:x="120461" fg:w="253"/><text x="22.9485%" y="559.50"></text></g><g><title>pgd_free (106 samples, 0.02%)</title><rect x="22.7262%" y="533" width="0.0200%" height="15" fill="rgb(214,104,7)" fg:x="120608" fg:w="106"/><text x="22.9762%" y="543.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="22.7360%" y="517" width="0.0102%" height="15" fill="rgb(233,189,8)" fg:x="120660" fg:w="54"/><text x="22.9860%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (6,059 samples, 1.14%)</title><rect x="22.7462%" y="549" width="1.1417%" height="15" fill="rgb(228,141,17)" fg:x="120714" fg:w="6059"/><text x="22.9962%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,875 samples, 1.11%)</title><rect x="22.7809%" y="533" width="1.1070%" height="15" fill="rgb(247,157,1)" fg:x="120898" fg:w="5875"/><text x="23.0309%" y="543.50"></text></g><g><title>native_write_msr (5,843 samples, 1.10%)</title><rect x="22.7869%" y="517" width="1.1010%" height="15" fill="rgb(249,225,5)" fg:x="120930" fg:w="5843"/><text x="23.0369%" y="527.50"></text></g><g><title>asm_sysvec_irq_work (99 samples, 0.02%)</title><rect x="23.8888%" y="549" width="0.0187%" height="15" fill="rgb(242,55,13)" fg:x="126778" fg:w="99"/><text x="24.1388%" y="559.50"></text></g><g><title>schedule_tail (7,200 samples, 1.36%)</title><rect x="22.5540%" y="581" width="1.3567%" height="15" fill="rgb(230,49,50)" fg:x="119694" fg:w="7200"/><text x="22.8040%" y="591.50"></text></g><g><title>finish_task_switch (6,765 samples, 1.27%)</title><rect x="22.6360%" y="565" width="1.2747%" height="15" fill="rgb(241,111,38)" fg:x="120129" fg:w="6765"/><text x="22.8860%" y="575.50"></text></g><g><title>ret_from_fork (7,257 samples, 1.37%)</title><rect x="22.5489%" y="597" width="1.3674%" height="15" fill="rgb(252,155,4)" fg:x="119667" fg:w="7257"/><text x="22.7989%" y="607.50"></text></g><g><title>arch_fork (8,011 samples, 1.51%)</title><rect x="22.4070%" y="613" width="1.5095%" height="15" fill="rgb(212,69,32)" fg:x="118914" fg:w="8011"/><text x="22.6570%" y="623.50"></text></g><g><title>exc_page_fault (72 samples, 0.01%)</title><rect x="23.9167%" y="597" width="0.0136%" height="15" fill="rgb(243,107,47)" fg:x="126926" fg:w="72"/><text x="24.1667%" y="607.50"></text></g><g><title>do_user_addr_fault (71 samples, 0.01%)</title><rect x="23.9169%" y="581" width="0.0134%" height="15" fill="rgb(247,130,12)" fg:x="126927" fg:w="71"/><text x="24.1669%" y="591.50"></text></g><g><title>handle_mm_fault (63 samples, 0.01%)</title><rect x="23.9184%" y="565" width="0.0119%" height="15" fill="rgb(233,74,16)" fg:x="126935" fg:w="63"/><text x="24.1684%" y="575.50"></text></g><g><title>asm_exc_page_fault (75 samples, 0.01%)</title><rect x="23.9165%" y="613" width="0.0141%" height="15" fill="rgb(208,58,18)" fg:x="126925" fg:w="75"/><text x="24.1665%" y="623.50"></text></g><g><title>__libc_fork (8,184 samples, 1.54%)</title><rect x="22.3901%" y="629" width="1.5421%" height="15" fill="rgb(242,225,1)" fg:x="118824" fg:w="8184"/><text x="22.6401%" y="639.50"></text></g><g><title>[dash] (31,011 samples, 5.84%)</title><rect x="18.0965%" y="645" width="5.8434%" height="15" fill="rgb(249,39,40)" fg:x="96038" fg:w="31011"/><text x="18.3465%" y="655.50">[dash]</text></g><g><title>[dash] (31,101 samples, 5.86%)</title><rect x="18.0944%" y="661" width="5.8604%" height="15" fill="rgb(207,72,44)" fg:x="96027" fg:w="31101"/><text x="18.3444%" y="671.50">[dash]</text></g><g><title>__perf_event_task_sched_in (565 samples, 0.11%)</title><rect x="23.9798%" y="501" width="0.1065%" height="15" fill="rgb(215,193,12)" fg:x="127261" fg:w="565"/><text x="24.2298%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (557 samples, 0.10%)</title><rect x="23.9813%" y="485" width="0.1050%" height="15" fill="rgb(248,41,39)" fg:x="127269" fg:w="557"/><text x="24.2313%" y="495.50"></text></g><g><title>native_write_msr (556 samples, 0.10%)</title><rect x="23.9815%" y="469" width="0.1048%" height="15" fill="rgb(253,85,4)" fg:x="127270" fg:w="556"/><text x="24.2315%" y="479.50"></text></g><g><title>finish_task_switch (604 samples, 0.11%)</title><rect x="23.9757%" y="517" width="0.1138%" height="15" fill="rgb(243,70,31)" fg:x="127239" fg:w="604"/><text x="24.2257%" y="527.50"></text></g><g><title>schedule (638 samples, 0.12%)</title><rect x="23.9729%" y="549" width="0.1202%" height="15" fill="rgb(253,195,26)" fg:x="127224" fg:w="638"/><text x="24.2229%" y="559.50"></text></g><g><title>__schedule (638 samples, 0.12%)</title><rect x="23.9729%" y="533" width="0.1202%" height="15" fill="rgb(243,42,11)" fg:x="127224" fg:w="638"/><text x="24.2229%" y="543.50"></text></g><g><title>new_sync_read (676 samples, 0.13%)</title><rect x="23.9672%" y="581" width="0.1274%" height="15" fill="rgb(239,66,17)" fg:x="127194" fg:w="676"/><text x="24.2172%" y="591.50"></text></g><g><title>pipe_read (671 samples, 0.13%)</title><rect x="23.9682%" y="565" width="0.1264%" height="15" fill="rgb(217,132,21)" fg:x="127199" fg:w="671"/><text x="24.2182%" y="575.50"></text></g><g><title>do_syscall_64 (695 samples, 0.13%)</title><rect x="23.9651%" y="629" width="0.1310%" height="15" fill="rgb(252,202,21)" fg:x="127183" fg:w="695"/><text x="24.2151%" y="639.50"></text></g><g><title>ksys_read (693 samples, 0.13%)</title><rect x="23.9655%" y="613" width="0.1306%" height="15" fill="rgb(233,98,36)" fg:x="127185" fg:w="693"/><text x="24.2155%" y="623.50"></text></g><g><title>vfs_read (690 samples, 0.13%)</title><rect x="23.9661%" y="597" width="0.1300%" height="15" fill="rgb(216,153,54)" fg:x="127188" fg:w="690"/><text x="24.2161%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (721 samples, 0.14%)</title><rect x="23.9650%" y="645" width="0.1359%" height="15" fill="rgb(250,99,7)" fg:x="127182" fg:w="721"/><text x="24.2150%" y="655.50"></text></g><g><title>__GI___libc_read (767 samples, 0.14%)</title><rect x="23.9627%" y="661" width="0.1445%" height="15" fill="rgb(207,56,50)" fg:x="127170" fg:w="767"/><text x="24.2127%" y="671.50"></text></g><g><title>[dash] (31,974 samples, 6.02%)</title><rect x="18.0920%" y="677" width="6.0249%" height="15" fill="rgb(244,61,34)" fg:x="96014" fg:w="31974"/><text x="18.3420%" y="687.50">[dash]</text></g><g><title>[dash] (31,988 samples, 6.03%)</title><rect x="18.0910%" y="693" width="6.0275%" height="15" fill="rgb(241,50,38)" fg:x="96009" fg:w="31988"/><text x="18.3410%" y="703.50">[dash]</text></g><g><title>[dash] (32,010 samples, 6.03%)</title><rect x="18.0884%" y="709" width="6.0317%" height="15" fill="rgb(212,166,30)" fg:x="95995" fg:w="32010"/><text x="18.3384%" y="719.50">[dash]</text></g><g><title>[dash] (32,013 samples, 6.03%)</title><rect x="18.0884%" y="725" width="6.0322%" height="15" fill="rgb(249,127,32)" fg:x="95995" fg:w="32013"/><text x="18.3384%" y="735.50">[dash]</text></g><g><title>[dash] (32,032 samples, 6.04%)</title><rect x="18.0882%" y="741" width="6.0358%" height="15" fill="rgb(209,103,0)" fg:x="95994" fg:w="32032"/><text x="18.3382%" y="751.50">[dash]</text></g><g><title>[dash] (32,036 samples, 6.04%)</title><rect x="18.0876%" y="757" width="6.0366%" height="15" fill="rgb(238,209,51)" fg:x="95991" fg:w="32036"/><text x="18.3376%" y="767.50">[dash]</text></g><g><title>__GI__exit (62 samples, 0.01%)</title><rect x="24.1253%" y="757" width="0.0117%" height="15" fill="rgb(237,56,23)" fg:x="128033" fg:w="62"/><text x="24.3753%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="24.1257%" y="741" width="0.0113%" height="15" fill="rgb(215,153,46)" fg:x="128035" fg:w="60"/><text x="24.3757%" y="751.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="24.1257%" y="725" width="0.0113%" height="15" fill="rgb(224,49,31)" fg:x="128035" fg:w="60"/><text x="24.3757%" y="735.50"></text></g><g><title>__x64_sys_exit_group (60 samples, 0.01%)</title><rect x="24.1257%" y="709" width="0.0113%" height="15" fill="rgb(250,18,42)" fg:x="128035" fg:w="60"/><text x="24.3757%" y="719.50"></text></g><g><title>do_group_exit (59 samples, 0.01%)</title><rect x="24.1259%" y="693" width="0.0111%" height="15" fill="rgb(215,176,39)" fg:x="128036" fg:w="59"/><text x="24.3759%" y="703.50"></text></g><g><title>do_exit (57 samples, 0.01%)</title><rect x="24.1262%" y="677" width="0.0107%" height="15" fill="rgb(223,77,29)" fg:x="128038" fg:w="57"/><text x="24.3762%" y="687.50"></text></g><g><title>[dash] (32,109 samples, 6.05%)</title><rect x="18.0869%" y="773" width="6.0503%" height="15" fill="rgb(234,94,52)" fg:x="95987" fg:w="32109"/><text x="18.3369%" y="783.50">[dash]</text></g><g><title>__libc_start_main (32,130 samples, 6.05%)</title><rect x="18.0861%" y="805" width="6.0543%" height="15" fill="rgb(220,154,50)" fg:x="95983" fg:w="32130"/><text x="18.3361%" y="815.50">__libc_s..</text></g><g><title>[dash] (32,130 samples, 6.05%)</title><rect x="18.0861%" y="789" width="6.0543%" height="15" fill="rgb(212,11,10)" fg:x="95983" fg:w="32130"/><text x="18.3361%" y="799.50">[dash]</text></g><g><title>[dash] (32,135 samples, 6.06%)</title><rect x="18.0854%" y="821" width="6.0552%" height="15" fill="rgb(205,166,19)" fg:x="95979" fg:w="32135"/><text x="18.3354%" y="831.50">[dash]</text></g><g><title>_dl_start_final (58 samples, 0.01%)</title><rect x="24.1492%" y="789" width="0.0109%" height="15" fill="rgb(244,198,16)" fg:x="128160" fg:w="58"/><text x="24.3992%" y="799.50"></text></g><g><title>_dl_sysdep_start (58 samples, 0.01%)</title><rect x="24.1492%" y="773" width="0.0109%" height="15" fill="rgb(219,69,12)" fg:x="128160" fg:w="58"/><text x="24.3992%" y="783.50"></text></g><g><title>_dl_start (69 samples, 0.01%)</title><rect x="24.1492%" y="805" width="0.0130%" height="15" fill="rgb(245,30,7)" fg:x="128160" fg:w="69"/><text x="24.3992%" y="815.50"></text></g><g><title>_start (80 samples, 0.02%)</title><rect x="24.1490%" y="821" width="0.0151%" height="15" fill="rgb(218,221,48)" fg:x="128159" fg:w="80"/><text x="24.3990%" y="831.50"></text></g><g><title>asm_exc_page_fault (474 samples, 0.09%)</title><rect x="24.1641%" y="821" width="0.0893%" height="15" fill="rgb(216,66,15)" fg:x="128239" fg:w="474"/><text x="24.4141%" y="831.50"></text></g><g><title>unlink_anon_vmas (125 samples, 0.02%)</title><rect x="24.2689%" y="661" width="0.0236%" height="15" fill="rgb(226,122,50)" fg:x="128795" fg:w="125"/><text x="24.5189%" y="671.50"></text></g><g><title>kmem_cache_free (59 samples, 0.01%)</title><rect x="24.2813%" y="645" width="0.0111%" height="15" fill="rgb(239,156,16)" fg:x="128861" fg:w="59"/><text x="24.5313%" y="655.50"></text></g><g><title>free_pgtables (180 samples, 0.03%)</title><rect x="24.2653%" y="677" width="0.0339%" height="15" fill="rgb(224,27,38)" fg:x="128776" fg:w="180"/><text x="24.5153%" y="687.50"></text></g><g><title>tlb_finish_mmu (66 samples, 0.01%)</title><rect x="24.3088%" y="677" width="0.0124%" height="15" fill="rgb(224,39,27)" fg:x="129007" fg:w="66"/><text x="24.5588%" y="687.50"></text></g><g><title>unmap_page_range (154 samples, 0.03%)</title><rect x="24.3222%" y="661" width="0.0290%" height="15" fill="rgb(215,92,29)" fg:x="129078" fg:w="154"/><text x="24.5722%" y="671.50"></text></g><g><title>mmput (474 samples, 0.09%)</title><rect x="24.2632%" y="709" width="0.0893%" height="15" fill="rgb(207,159,16)" fg:x="128765" fg:w="474"/><text x="24.5132%" y="719.50"></text></g><g><title>exit_mmap (472 samples, 0.09%)</title><rect x="24.2636%" y="693" width="0.0889%" height="15" fill="rgb(238,163,47)" fg:x="128767" fg:w="472"/><text x="24.5136%" y="703.50"></text></g><g><title>unmap_vmas (165 samples, 0.03%)</title><rect x="24.3215%" y="677" width="0.0311%" height="15" fill="rgb(219,91,49)" fg:x="129074" fg:w="165"/><text x="24.5715%" y="687.50"></text></g><g><title>begin_new_exec (525 samples, 0.10%)</title><rect x="24.2587%" y="725" width="0.0989%" height="15" fill="rgb(227,167,31)" fg:x="128741" fg:w="525"/><text x="24.5087%" y="735.50"></text></g><g><title>load_elf_binary (559 samples, 0.11%)</title><rect x="24.2578%" y="741" width="0.1053%" height="15" fill="rgb(234,80,54)" fg:x="128736" fg:w="559"/><text x="24.5078%" y="751.50"></text></g><g><title>bprm_execve (568 samples, 0.11%)</title><rect x="24.2566%" y="757" width="0.1070%" height="15" fill="rgb(212,114,2)" fg:x="128730" fg:w="568"/><text x="24.5066%" y="767.50"></text></g><g><title>__x64_sys_execve (570 samples, 0.11%)</title><rect x="24.2565%" y="789" width="0.1074%" height="15" fill="rgb(234,50,24)" fg:x="128729" fg:w="570"/><text x="24.5065%" y="799.50"></text></g><g><title>do_execveat_common (570 samples, 0.11%)</title><rect x="24.2565%" y="773" width="0.1074%" height="15" fill="rgb(221,68,8)" fg:x="128729" fg:w="570"/><text x="24.5065%" y="783.50"></text></g><g><title>kmem_cache_free (86 samples, 0.02%)</title><rect x="24.3959%" y="677" width="0.0162%" height="15" fill="rgb(254,180,31)" fg:x="129469" fg:w="86"/><text x="24.6459%" y="687.50"></text></g><g><title>unlink_anon_vmas (196 samples, 0.04%)</title><rect x="24.3761%" y="693" width="0.0369%" height="15" fill="rgb(247,130,50)" fg:x="129364" fg:w="196"/><text x="24.6261%" y="703.50"></text></g><g><title>free_pgtables (266 samples, 0.05%)</title><rect x="24.3721%" y="709" width="0.0501%" height="15" fill="rgb(211,109,4)" fg:x="129343" fg:w="266"/><text x="24.6221%" y="719.50"></text></g><g><title>lru_add_drain_cpu (62 samples, 0.01%)</title><rect x="24.4228%" y="693" width="0.0117%" height="15" fill="rgb(238,50,21)" fg:x="129612" fg:w="62"/><text x="24.6728%" y="703.50"></text></g><g><title>pagevec_lru_move_fn (55 samples, 0.01%)</title><rect x="24.4242%" y="677" width="0.0104%" height="15" fill="rgb(225,57,45)" fg:x="129619" fg:w="55"/><text x="24.6742%" y="687.50"></text></g><g><title>lru_add_drain (66 samples, 0.01%)</title><rect x="24.4228%" y="709" width="0.0124%" height="15" fill="rgb(209,196,50)" fg:x="129612" fg:w="66"/><text x="24.6728%" y="719.50"></text></g><g><title>remove_vma (99 samples, 0.02%)</title><rect x="24.4358%" y="709" width="0.0187%" height="15" fill="rgb(242,140,13)" fg:x="129681" fg:w="99"/><text x="24.6858%" y="719.50"></text></g><g><title>kmem_cache_free (83 samples, 0.02%)</title><rect x="24.4389%" y="693" width="0.0156%" height="15" fill="rgb(217,111,7)" fg:x="129697" fg:w="83"/><text x="24.6889%" y="703.50"></text></g><g><title>tlb_finish_mmu (191 samples, 0.04%)</title><rect x="24.4545%" y="709" width="0.0360%" height="15" fill="rgb(253,193,51)" fg:x="129780" fg:w="191"/><text x="24.7045%" y="719.50"></text></g><g><title>release_pages (158 samples, 0.03%)</title><rect x="24.4607%" y="693" width="0.0298%" height="15" fill="rgb(252,70,29)" fg:x="129813" fg:w="158"/><text x="24.7107%" y="703.50"></text></g><g><title>page_remove_rmap (126 samples, 0.02%)</title><rect x="24.5547%" y="677" width="0.0237%" height="15" fill="rgb(232,127,12)" fg:x="130312" fg:w="126"/><text x="24.8047%" y="687.50"></text></g><g><title>unmap_page_range (489 samples, 0.09%)</title><rect x="24.4918%" y="693" width="0.0921%" height="15" fill="rgb(211,180,21)" fg:x="129978" fg:w="489"/><text x="24.7418%" y="703.50"></text></g><g><title>exit_mmap (1,150 samples, 0.22%)</title><rect x="24.3705%" y="725" width="0.2167%" height="15" fill="rgb(229,72,13)" fg:x="129334" fg:w="1150"/><text x="24.6205%" y="735.50"></text></g><g><title>unmap_vmas (513 samples, 0.10%)</title><rect x="24.4905%" y="709" width="0.0967%" height="15" fill="rgb(240,211,49)" fg:x="129971" fg:w="513"/><text x="24.7405%" y="719.50"></text></g><g><title>mmput (1,159 samples, 0.22%)</title><rect x="24.3697%" y="741" width="0.2184%" height="15" fill="rgb(219,149,40)" fg:x="129330" fg:w="1159"/><text x="24.6197%" y="751.50"></text></g><g><title>task_work_run (77 samples, 0.01%)</title><rect x="24.5937%" y="741" width="0.0145%" height="15" fill="rgb(210,127,46)" fg:x="130519" fg:w="77"/><text x="24.8437%" y="751.50"></text></g><g><title>__fput (74 samples, 0.01%)</title><rect x="24.5943%" y="725" width="0.0139%" height="15" fill="rgb(220,106,7)" fg:x="130522" fg:w="74"/><text x="24.8443%" y="735.50"></text></g><g><title>__x64_sys_exit_group (1,298 samples, 0.24%)</title><rect x="24.3639%" y="789" width="0.2446%" height="15" fill="rgb(249,31,22)" fg:x="129299" fg:w="1298"/><text x="24.6139%" y="799.50"></text></g><g><title>do_group_exit (1,298 samples, 0.24%)</title><rect x="24.3639%" y="773" width="0.2446%" height="15" fill="rgb(253,1,49)" fg:x="129299" fg:w="1298"/><text x="24.6139%" y="783.50"></text></g><g><title>do_exit (1,298 samples, 0.24%)</title><rect x="24.3639%" y="757" width="0.2446%" height="15" fill="rgb(227,144,33)" fg:x="129299" fg:w="1298"/><text x="24.6139%" y="767.50"></text></g><g><title>do_syscall_64 (1,892 samples, 0.36%)</title><rect x="24.2540%" y="805" width="0.3565%" height="15" fill="rgb(249,163,44)" fg:x="128716" fg:w="1892"/><text x="24.5040%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,897 samples, 0.36%)</title><rect x="24.2534%" y="821" width="0.3575%" height="15" fill="rgb(234,15,39)" fg:x="128713" fg:w="1897"/><text x="24.5034%" y="831.50"></text></g><g><title>c++ (34,713 samples, 6.54%)</title><rect x="18.0816%" y="837" width="6.5410%" height="15" fill="rgb(207,66,16)" fg:x="95959" fg:w="34713"/><text x="18.3316%" y="847.50">c++</text></g><g><title>[perf-925888.map] (418 samples, 0.08%)</title><rect x="24.6265%" y="821" width="0.0788%" height="15" fill="rgb(233,112,24)" fg:x="130693" fg:w="418"/><text x="24.8765%" y="831.50"></text></g><g><title>find-action-loo (453 samples, 0.09%)</title><rect x="24.6262%" y="837" width="0.0854%" height="15" fill="rgb(230,90,22)" fg:x="130691" fg:w="453"/><text x="24.8762%" y="847.50"></text></g><g><title>[perf-925888.map] (68 samples, 0.01%)</title><rect x="24.7117%" y="821" width="0.0128%" height="15" fill="rgb(229,61,13)" fg:x="131145" fg:w="68"/><text x="24.9617%" y="831.50"></text></g><g><title>globbing_pool-0 (97 samples, 0.02%)</title><rect x="24.7115%" y="837" width="0.0183%" height="15" fill="rgb(225,57,24)" fg:x="131144" fg:w="97"/><text x="24.9615%" y="847.50"></text></g><g><title>JVM_StartThread (60 samples, 0.01%)</title><rect x="24.7596%" y="805" width="0.0113%" height="15" fill="rgb(208,169,48)" fg:x="131399" fg:w="60"/><text x="25.0096%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="24.7724%" y="581" width="0.0106%" height="15" fill="rgb(244,218,51)" fg:x="131467" fg:w="56"/><text x="25.0224%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="24.7726%" y="565" width="0.0104%" height="15" fill="rgb(214,148,10)" fg:x="131468" fg:w="55"/><text x="25.0226%" y="575.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="24.7726%" y="549" width="0.0104%" height="15" fill="rgb(225,174,27)" fg:x="131468" fg:w="55"/><text x="25.0226%" y="559.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="24.7722%" y="597" width="0.0117%" height="15" fill="rgb(230,96,26)" fg:x="131466" fg:w="62"/><text x="25.0222%" y="607.50"></text></g><g><title>do_syscall_64 (66 samples, 0.01%)</title><rect x="24.7716%" y="709" width="0.0124%" height="15" fill="rgb(232,10,30)" fg:x="131463" fg:w="66"/><text x="25.0216%" y="719.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="24.7718%" y="693" width="0.0122%" height="15" fill="rgb(222,8,50)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="703.50"></text></g><g><title>do_futex (65 samples, 0.01%)</title><rect x="24.7718%" y="677" width="0.0122%" height="15" fill="rgb(213,81,27)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="687.50"></text></g><g><title>futex_wait (65 samples, 0.01%)</title><rect x="24.7718%" y="661" width="0.0122%" height="15" fill="rgb(245,50,10)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="671.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="24.7718%" y="645" width="0.0122%" height="15" fill="rgb(216,100,18)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="655.50"></text></g><g><title>schedule (63 samples, 0.01%)</title><rect x="24.7722%" y="629" width="0.0119%" height="15" fill="rgb(236,147,54)" fg:x="131466" fg:w="63"/><text x="25.0222%" y="639.50"></text></g><g><title>__schedule (63 samples, 0.01%)</title><rect x="24.7722%" y="613" width="0.0119%" height="15" fill="rgb(205,143,26)" fg:x="131466" fg:w="63"/><text x="25.0222%" y="623.50"></text></g><g><title>__pthread_cond_wait (68 samples, 0.01%)</title><rect x="24.7716%" y="773" width="0.0128%" height="15" fill="rgb(236,26,9)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (68 samples, 0.01%)</title><rect x="24.7716%" y="757" width="0.0128%" height="15" fill="rgb(221,165,53)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="767.50"></text></g><g><title>futex_wait_cancelable (68 samples, 0.01%)</title><rect x="24.7716%" y="741" width="0.0128%" height="15" fill="rgb(214,110,17)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="24.7716%" y="725" width="0.0128%" height="15" fill="rgb(237,197,12)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="735.50"></text></g><g><title>Unsafe_Park (70 samples, 0.01%)</title><rect x="24.7714%" y="805" width="0.0132%" height="15" fill="rgb(205,84,17)" fg:x="131462" fg:w="70"/><text x="25.0214%" y="815.50"></text></g><g><title>Parker::park (69 samples, 0.01%)</title><rect x="24.7716%" y="789" width="0.0130%" height="15" fill="rgb(237,18,45)" fg:x="131463" fg:w="69"/><text x="25.0216%" y="799.50"></text></g><g><title>[perf-925888.map] (264 samples, 0.05%)</title><rect x="24.7370%" y="821" width="0.0497%" height="15" fill="rgb(221,87,14)" fg:x="131279" fg:w="264"/><text x="24.9870%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.01%)</title><rect x="24.7895%" y="757" width="0.0141%" height="15" fill="rgb(238,186,15)" fg:x="131558" fg:w="75"/><text x="25.0395%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="24.7895%" y="741" width="0.0141%" height="15" fill="rgb(208,115,11)" fg:x="131558" fg:w="75"/><text x="25.0395%" y="751.50"></text></g><g><title>native_write_msr (74 samples, 0.01%)</title><rect x="24.7897%" y="725" width="0.0139%" height="15" fill="rgb(254,175,0)" fg:x="131559" fg:w="74"/><text x="25.0397%" y="735.50"></text></g><g><title>schedule_tail (78 samples, 0.01%)</title><rect x="24.7893%" y="789" width="0.0147%" height="15" fill="rgb(227,24,42)" fg:x="131557" fg:w="78"/><text x="25.0393%" y="799.50"></text></g><g><title>finish_task_switch (78 samples, 0.01%)</title><rect x="24.7893%" y="773" width="0.0147%" height="15" fill="rgb(223,211,37)" fg:x="131557" fg:w="78"/><text x="25.0393%" y="783.50"></text></g><g><title>ret_from_fork (81 samples, 0.02%)</title><rect x="24.7891%" y="805" width="0.0153%" height="15" fill="rgb(235,49,27)" fg:x="131556" fg:w="81"/><text x="25.0391%" y="815.50"></text></g><g><title>os::PlatformEvent::park (54 samples, 0.01%)</title><rect x="24.8044%" y="741" width="0.0102%" height="15" fill="rgb(254,97,51)" fg:x="131637" fg:w="54"/><text x="25.0544%" y="751.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.01%)</title><rect x="24.8044%" y="725" width="0.0102%" height="15" fill="rgb(249,51,40)" fg:x="131637" fg:w="54"/><text x="25.0544%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.01%)</title><rect x="24.8044%" y="709" width="0.0102%" height="15" fill="rgb(210,128,45)" fg:x="131637" fg:w="54"/><text x="25.0544%" y="719.50"></text></g><g><title>Monitor::wait (55 samples, 0.01%)</title><rect x="24.8044%" y="773" width="0.0104%" height="15" fill="rgb(224,137,50)" fg:x="131637" fg:w="55"/><text x="25.0544%" y="783.50"></text></g><g><title>Monitor::IWait (55 samples, 0.01%)</title><rect x="24.8044%" y="757" width="0.0104%" height="15" fill="rgb(242,15,9)" fg:x="131637" fg:w="55"/><text x="25.0544%" y="767.50"></text></g><g><title>__GI___clone (167 samples, 0.03%)</title><rect x="24.7873%" y="821" width="0.0315%" height="15" fill="rgb(233,187,41)" fg:x="131546" fg:w="167"/><text x="25.0373%" y="831.50"></text></g><g><title>start_thread (76 samples, 0.01%)</title><rect x="24.8044%" y="805" width="0.0143%" height="15" fill="rgb(227,2,29)" fg:x="131637" fg:w="76"/><text x="25.0544%" y="815.50"></text></g><g><title>thread_native_entry (76 samples, 0.01%)</title><rect x="24.8044%" y="789" width="0.0143%" height="15" fill="rgb(222,70,3)" fg:x="131637" fg:w="76"/><text x="25.0544%" y="799.50"></text></g><g><title>globbing_pool-1 (524 samples, 0.10%)</title><rect x="24.7298%" y="837" width="0.0987%" height="15" fill="rgb(213,11,42)" fg:x="131241" fg:w="524"/><text x="24.9798%" y="847.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.01%)</title><rect x="24.8647%" y="741" width="0.0102%" height="15" fill="rgb(225,150,9)" fg:x="131957" fg:w="54"/><text x="25.1147%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.01%)</title><rect x="24.8647%" y="725" width="0.0102%" height="15" fill="rgb(230,162,45)" fg:x="131957" fg:w="54"/><text x="25.1147%" y="735.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.01%)</title><rect x="24.8647%" y="709" width="0.0102%" height="15" fill="rgb(222,14,52)" fg:x="131957" fg:w="54"/><text x="25.1147%" y="719.50"></text></g><g><title>Monitor::lock (57 samples, 0.01%)</title><rect x="24.8643%" y="789" width="0.0107%" height="15" fill="rgb(254,198,14)" fg:x="131955" fg:w="57"/><text x="25.1143%" y="799.50"></text></g><g><title>Monitor::ILock (57 samples, 0.01%)</title><rect x="24.8643%" y="773" width="0.0107%" height="15" fill="rgb(220,217,30)" fg:x="131955" fg:w="57"/><text x="25.1143%" y="783.50"></text></g><g><title>os::PlatformEvent::park (56 samples, 0.01%)</title><rect x="24.8645%" y="757" width="0.0106%" height="15" fill="rgb(215,146,41)" fg:x="131956" fg:w="56"/><text x="25.1145%" y="767.50"></text></g><g><title>JVM_StartThread (74 samples, 0.01%)</title><rect x="24.8634%" y="805" width="0.0139%" height="15" fill="rgb(217,27,36)" fg:x="131950" fg:w="74"/><text x="25.1134%" y="815.50"></text></g><g><title>Unsafe_Park (56 samples, 0.01%)</title><rect x="24.8785%" y="805" width="0.0106%" height="15" fill="rgb(219,218,39)" fg:x="132030" fg:w="56"/><text x="25.1285%" y="815.50"></text></g><g><title>Parker::park (56 samples, 0.01%)</title><rect x="24.8785%" y="789" width="0.0106%" height="15" fill="rgb(219,4,42)" fg:x="132030" fg:w="56"/><text x="25.1285%" y="799.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.01%)</title><rect x="24.8787%" y="773" width="0.0104%" height="15" fill="rgb(249,119,36)" fg:x="132031" fg:w="55"/><text x="25.1287%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.01%)</title><rect x="24.8787%" y="757" width="0.0104%" height="15" fill="rgb(209,23,33)" fg:x="132031" fg:w="55"/><text x="25.1287%" y="767.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.01%)</title><rect x="24.8787%" y="741" width="0.0104%" height="15" fill="rgb(211,10,0)" fg:x="132031" fg:w="55"/><text x="25.1287%" y="751.50"></text></g><g><title>[perf-925888.map] (285 samples, 0.05%)</title><rect x="24.8378%" y="821" width="0.0537%" height="15" fill="rgb(208,99,37)" fg:x="131814" fg:w="285"/><text x="25.0878%" y="831.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="24.8935%" y="805" width="0.0104%" height="15" fill="rgb(213,132,31)" fg:x="132110" fg:w="55"/><text x="25.1435%" y="815.50"></text></g><g><title>globbing_pool-2 (417 samples, 0.08%)</title><rect x="24.8285%" y="837" width="0.0786%" height="15" fill="rgb(243,129,40)" fg:x="131765" fg:w="417"/><text x="25.0785%" y="847.50"></text></g><g><title>__GI___clone (79 samples, 0.01%)</title><rect x="24.8922%" y="821" width="0.0149%" height="15" fill="rgb(210,66,33)" fg:x="132103" fg:w="79"/><text x="25.1422%" y="831.50"></text></g><g><title>JVM_StartThread (76 samples, 0.01%)</title><rect x="24.9348%" y="805" width="0.0143%" height="15" fill="rgb(209,189,4)" fg:x="132329" fg:w="76"/><text x="25.1848%" y="815.50"></text></g><g><title>[perf-925888.map] (245 samples, 0.05%)</title><rect x="24.9139%" y="821" width="0.0462%" height="15" fill="rgb(214,107,37)" fg:x="132218" fg:w="245"/><text x="25.1639%" y="831.50"></text></g><g><title>globbing_pool-3 (338 samples, 0.06%)</title><rect x="24.9071%" y="837" width="0.0637%" height="15" fill="rgb(245,88,54)" fg:x="132182" fg:w="338"/><text x="25.1571%" y="847.50"></text></g><g><title>JVM_StartThread (56 samples, 0.01%)</title><rect x="24.9968%" y="805" width="0.0106%" height="15" fill="rgb(205,146,20)" fg:x="132658" fg:w="56"/><text x="25.2468%" y="815.50"></text></g><g><title>Unsafe_Park (57 samples, 0.01%)</title><rect x="25.0077%" y="805" width="0.0107%" height="15" fill="rgb(220,161,25)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="815.50"></text></g><g><title>Parker::park (57 samples, 0.01%)</title><rect x="25.0077%" y="789" width="0.0107%" height="15" fill="rgb(215,152,15)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="799.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.01%)</title><rect x="25.0077%" y="773" width="0.0107%" height="15" fill="rgb(233,192,44)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.01%)</title><rect x="25.0077%" y="757" width="0.0107%" height="15" fill="rgb(240,170,46)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="767.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.01%)</title><rect x="25.0079%" y="741" width="0.0106%" height="15" fill="rgb(207,104,33)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="25.0079%" y="725" width="0.0106%" height="15" fill="rgb(219,21,39)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="25.0079%" y="709" width="0.0106%" height="15" fill="rgb(214,133,29)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="719.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="25.0079%" y="693" width="0.0106%" height="15" fill="rgb(226,93,6)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="703.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="25.0079%" y="677" width="0.0106%" height="15" fill="rgb(252,222,34)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="687.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="25.0079%" y="661" width="0.0106%" height="15" fill="rgb(252,92,48)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="671.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="25.0079%" y="645" width="0.0106%" height="15" fill="rgb(245,223,24)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="655.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="25.0081%" y="629" width="0.0104%" height="15" fill="rgb(205,176,3)" fg:x="132718" fg:w="55"/><text x="25.2581%" y="639.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="25.0083%" y="613" width="0.0102%" height="15" fill="rgb(235,151,15)" fg:x="132719" fg:w="54"/><text x="25.2583%" y="623.50"></text></g><g><title>[perf-925888.map] (231 samples, 0.04%)</title><rect x="24.9759%" y="821" width="0.0435%" height="15" fill="rgb(237,209,11)" fg:x="132547" fg:w="231"/><text x="25.2259%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="25.0211%" y="757" width="0.0119%" height="15" fill="rgb(243,227,24)" fg:x="132787" fg:w="63"/><text x="25.2711%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="25.0213%" y="741" width="0.0117%" height="15" fill="rgb(239,193,16)" fg:x="132788" fg:w="62"/><text x="25.2713%" y="751.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="25.0213%" y="725" width="0.0117%" height="15" fill="rgb(231,27,9)" fg:x="132788" fg:w="62"/><text x="25.2713%" y="735.50"></text></g><g><title>schedule_tail (65 samples, 0.01%)</title><rect x="25.0211%" y="789" width="0.0122%" height="15" fill="rgb(219,169,10)" fg:x="132787" fg:w="65"/><text x="25.2711%" y="799.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="25.0211%" y="773" width="0.0122%" height="15" fill="rgb(244,229,43)" fg:x="132787" fg:w="65"/><text x="25.2711%" y="783.50"></text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="25.0209%" y="805" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="132786" fg:w="67"/><text x="25.2709%" y="815.50"></text></g><g><title>__GI___clone (113 samples, 0.02%)</title><rect x="25.0200%" y="821" width="0.0213%" height="15" fill="rgb(250,47,30)" fg:x="132781" fg:w="113"/><text x="25.2700%" y="831.50"></text></g><g><title>globbing_pool-4 (377 samples, 0.07%)</title><rect x="24.9708%" y="837" width="0.0710%" height="15" fill="rgb(224,124,36)" fg:x="132520" fg:w="377"/><text x="25.2208%" y="847.50"></text></g><g><title>[perf-925888.map] (101 samples, 0.02%)</title><rect x="25.0432%" y="821" width="0.0190%" height="15" fill="rgb(246,68,51)" fg:x="132904" fg:w="101"/><text x="25.2932%" y="831.50"></text></g><g><title>globbing_pool-5 (146 samples, 0.03%)</title><rect x="25.0418%" y="837" width="0.0275%" height="15" fill="rgb(253,43,49)" fg:x="132897" fg:w="146"/><text x="25.2918%" y="847.50"></text></g><g><title>[perf-925888.map] (136 samples, 0.03%)</title><rect x="25.0750%" y="821" width="0.0256%" height="15" fill="rgb(219,54,36)" fg:x="133073" fg:w="136"/><text x="25.3250%" y="831.50"></text></g><g><title>globbing_pool-6 (202 samples, 0.04%)</title><rect x="25.0693%" y="837" width="0.0381%" height="15" fill="rgb(227,133,34)" fg:x="133043" fg:w="202"/><text x="25.3193%" y="847.50"></text></g><g><title>[perf-925888.map] (180 samples, 0.03%)</title><rect x="25.1123%" y="821" width="0.0339%" height="15" fill="rgb(247,227,15)" fg:x="133271" fg:w="180"/><text x="25.3623%" y="831.50"></text></g><g><title>globbing_pool-7 (210 samples, 0.04%)</title><rect x="25.1074%" y="837" width="0.0396%" height="15" fill="rgb(229,96,14)" fg:x="133245" fg:w="210"/><text x="25.3574%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.01%)</title><rect x="25.2020%" y="581" width="0.0141%" height="15" fill="rgb(220,79,17)" fg:x="133747" fg:w="75"/><text x="25.4520%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (74 samples, 0.01%)</title><rect x="25.2022%" y="565" width="0.0139%" height="15" fill="rgb(205,131,53)" fg:x="133748" fg:w="74"/><text x="25.4522%" y="575.50"></text></g><g><title>native_write_msr (73 samples, 0.01%)</title><rect x="25.2024%" y="549" width="0.0138%" height="15" fill="rgb(209,50,29)" fg:x="133749" fg:w="73"/><text x="25.4524%" y="559.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="25.2007%" y="709" width="0.0156%" height="15" fill="rgb(245,86,46)" fg:x="133740" fg:w="83"/><text x="25.4507%" y="719.50"></text></g><g><title>__x64_sys_futex (83 samples, 0.02%)</title><rect x="25.2007%" y="693" width="0.0156%" height="15" fill="rgb(235,66,46)" fg:x="133740" fg:w="83"/><text x="25.4507%" y="703.50"></text></g><g><title>do_futex (81 samples, 0.02%)</title><rect x="25.2011%" y="677" width="0.0153%" height="15" fill="rgb(232,148,31)" fg:x="133742" fg:w="81"/><text x="25.4511%" y="687.50"></text></g><g><title>futex_wait (81 samples, 0.02%)</title><rect x="25.2011%" y="661" width="0.0153%" height="15" fill="rgb(217,149,8)" fg:x="133742" fg:w="81"/><text x="25.4511%" y="671.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="25.2011%" y="645" width="0.0153%" height="15" fill="rgb(209,183,11)" fg:x="133742" fg:w="81"/><text x="25.4511%" y="655.50"></text></g><g><title>schedule (79 samples, 0.01%)</title><rect x="25.2014%" y="629" width="0.0149%" height="15" fill="rgb(208,55,20)" fg:x="133744" fg:w="79"/><text x="25.4514%" y="639.50"></text></g><g><title>__schedule (79 samples, 0.01%)</title><rect x="25.2014%" y="613" width="0.0149%" height="15" fill="rgb(218,39,14)" fg:x="133744" fg:w="79"/><text x="25.4514%" y="623.50"></text></g><g><title>finish_task_switch (78 samples, 0.01%)</title><rect x="25.2016%" y="597" width="0.0147%" height="15" fill="rgb(216,169,33)" fg:x="133745" fg:w="78"/><text x="25.4516%" y="607.50"></text></g><g><title>__pthread_cond_wait (86 samples, 0.02%)</title><rect x="25.2005%" y="773" width="0.0162%" height="15" fill="rgb(233,80,24)" fg:x="133739" fg:w="86"/><text x="25.4505%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (86 samples, 0.02%)</title><rect x="25.2005%" y="757" width="0.0162%" height="15" fill="rgb(213,179,31)" fg:x="133739" fg:w="86"/><text x="25.4505%" y="767.50"></text></g><g><title>futex_wait_cancelable (85 samples, 0.02%)</title><rect x="25.2007%" y="741" width="0.0160%" height="15" fill="rgb(209,19,5)" fg:x="133740" fg:w="85"/><text x="25.4507%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="25.2007%" y="725" width="0.0160%" height="15" fill="rgb(219,18,35)" fg:x="133740" fg:w="85"/><text x="25.4507%" y="735.50"></text></g><g><title>Unsafe_Park (91 samples, 0.02%)</title><rect x="25.1999%" y="805" width="0.0171%" height="15" fill="rgb(209,169,16)" fg:x="133736" fg:w="91"/><text x="25.4499%" y="815.50"></text></g><g><title>Parker::park (91 samples, 0.02%)</title><rect x="25.1999%" y="789" width="0.0171%" height="15" fill="rgb(245,90,51)" fg:x="133736" fg:w="91"/><text x="25.4499%" y="799.50"></text></g><g><title>[perf-925888.map] (340 samples, 0.06%)</title><rect x="25.1555%" y="821" width="0.0641%" height="15" fill="rgb(220,99,45)" fg:x="133500" fg:w="340"/><text x="25.4055%" y="831.50"></text></g><g><title>globbing_pool-8 (420 samples, 0.08%)</title><rect x="25.1470%" y="837" width="0.0791%" height="15" fill="rgb(249,89,25)" fg:x="133455" fg:w="420"/><text x="25.3970%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="25.2467%" y="581" width="0.0115%" height="15" fill="rgb(239,193,0)" fg:x="133984" fg:w="61"/><text x="25.4967%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="25.2467%" y="565" width="0.0115%" height="15" fill="rgb(231,126,1)" fg:x="133984" fg:w="61"/><text x="25.4967%" y="575.50"></text></g><g><title>native_write_msr (61 samples, 0.01%)</title><rect x="25.2467%" y="549" width="0.0115%" height="15" fill="rgb(243,166,3)" fg:x="133984" fg:w="61"/><text x="25.4967%" y="559.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="25.2457%" y="709" width="0.0132%" height="15" fill="rgb(223,22,34)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="719.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.01%)</title><rect x="25.2457%" y="693" width="0.0132%" height="15" fill="rgb(251,52,51)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="703.50"></text></g><g><title>do_futex (70 samples, 0.01%)</title><rect x="25.2457%" y="677" width="0.0132%" height="15" fill="rgb(221,165,28)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="687.50"></text></g><g><title>futex_wait (70 samples, 0.01%)</title><rect x="25.2457%" y="661" width="0.0132%" height="15" fill="rgb(218,121,47)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="671.50"></text></g><g><title>futex_wait_queue_me (69 samples, 0.01%)</title><rect x="25.2459%" y="645" width="0.0130%" height="15" fill="rgb(209,120,9)" fg:x="133980" fg:w="69"/><text x="25.4959%" y="655.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="25.2459%" y="629" width="0.0130%" height="15" fill="rgb(236,68,12)" fg:x="133980" fg:w="69"/><text x="25.4959%" y="639.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="25.2461%" y="613" width="0.0128%" height="15" fill="rgb(225,194,26)" fg:x="133981" fg:w="68"/><text x="25.4961%" y="623.50"></text></g><g><title>finish_task_switch (68 samples, 0.01%)</title><rect x="25.2461%" y="597" width="0.0128%" height="15" fill="rgb(231,84,39)" fg:x="133981" fg:w="68"/><text x="25.4961%" y="607.50"></text></g><g><title>Unsafe_Park (72 samples, 0.01%)</title><rect x="25.2457%" y="805" width="0.0136%" height="15" fill="rgb(210,11,45)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="815.50"></text></g><g><title>Parker::park (72 samples, 0.01%)</title><rect x="25.2457%" y="789" width="0.0136%" height="15" fill="rgb(224,54,52)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="799.50"></text></g><g><title>__pthread_cond_wait (72 samples, 0.01%)</title><rect x="25.2457%" y="773" width="0.0136%" height="15" fill="rgb(238,102,14)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (72 samples, 0.01%)</title><rect x="25.2457%" y="757" width="0.0136%" height="15" fill="rgb(243,160,52)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="767.50"></text></g><g><title>futex_wait_cancelable (72 samples, 0.01%)</title><rect x="25.2457%" y="741" width="0.0136%" height="15" fill="rgb(216,114,19)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="25.2457%" y="725" width="0.0136%" height="15" fill="rgb(244,166,37)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="735.50"></text></g><g><title>[perf-925888.map] (177 samples, 0.03%)</title><rect x="25.2274%" y="821" width="0.0334%" height="15" fill="rgb(246,29,44)" fg:x="133882" fg:w="177"/><text x="25.4774%" y="831.50"></text></g><g><title>globbing_pool-9 (195 samples, 0.04%)</title><rect x="25.2261%" y="837" width="0.0367%" height="15" fill="rgb(215,56,53)" fg:x="133875" fg:w="195"/><text x="25.4761%" y="847.50"></text></g><g><title>[anon] (188 samples, 0.04%)</title><rect x="25.2655%" y="821" width="0.0354%" height="15" fill="rgb(217,60,2)" fg:x="134084" fg:w="188"/><text x="25.5155%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (70 samples, 0.01%)</title><rect x="25.6386%" y="693" width="0.0132%" height="15" fill="rgb(207,26,24)" fg:x="136064" fg:w="70"/><text x="25.8886%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (70 samples, 0.01%)</title><rect x="25.6386%" y="677" width="0.0132%" height="15" fill="rgb(252,210,15)" fg:x="136064" fg:w="70"/><text x="25.8886%" y="687.50"></text></g><g><title>ClassLoader::load_class (119 samples, 0.02%)</title><rect x="25.6365%" y="725" width="0.0224%" height="15" fill="rgb(253,209,26)" fg:x="136053" fg:w="119"/><text x="25.8865%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (108 samples, 0.02%)</title><rect x="25.6386%" y="709" width="0.0204%" height="15" fill="rgb(238,170,14)" fg:x="136064" fg:w="108"/><text x="25.8886%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (133 samples, 0.03%)</title><rect x="25.6361%" y="741" width="0.0251%" height="15" fill="rgb(216,178,15)" fg:x="136051" fg:w="133"/><text x="25.8861%" y="751.50"></text></g><g><title>ConstantPool::klass_at_impl (142 samples, 0.03%)</title><rect x="25.6346%" y="789" width="0.0268%" height="15" fill="rgb(250,197,2)" fg:x="136043" fg:w="142"/><text x="25.8846%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (139 samples, 0.03%)</title><rect x="25.6352%" y="773" width="0.0262%" height="15" fill="rgb(212,70,42)" fg:x="136046" fg:w="139"/><text x="25.8852%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (138 samples, 0.03%)</title><rect x="25.6354%" y="757" width="0.0260%" height="15" fill="rgb(227,213,9)" fg:x="136047" fg:w="138"/><text x="25.8854%" y="767.50"></text></g><g><title>Rewriter::rewrite (57 samples, 0.01%)</title><rect x="25.6701%" y="757" width="0.0107%" height="15" fill="rgb(245,99,25)" fg:x="136231" fg:w="57"/><text x="25.9201%" y="767.50"></text></g><g><title>Rewriter::Rewriter (57 samples, 0.01%)</title><rect x="25.6701%" y="741" width="0.0107%" height="15" fill="rgb(250,82,29)" fg:x="136231" fg:w="57"/><text x="25.9201%" y="751.50"></text></g><g><title>InterpreterRuntime::_new (272 samples, 0.05%)</title><rect x="25.6346%" y="805" width="0.0513%" height="15" fill="rgb(241,226,54)" fg:x="136043" fg:w="272"/><text x="25.8846%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (129 samples, 0.02%)</title><rect x="25.6616%" y="789" width="0.0243%" height="15" fill="rgb(221,99,41)" fg:x="136186" fg:w="129"/><text x="25.9116%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (127 samples, 0.02%)</title><rect x="25.6620%" y="773" width="0.0239%" height="15" fill="rgb(213,90,21)" fg:x="136188" fg:w="127"/><text x="25.9120%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (54 samples, 0.01%)</title><rect x="25.6972%" y="805" width="0.0102%" height="15" fill="rgb(205,208,24)" fg:x="136375" fg:w="54"/><text x="25.9472%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (54 samples, 0.01%)</title><rect x="25.6972%" y="789" width="0.0102%" height="15" fill="rgb(246,31,12)" fg:x="136375" fg:w="54"/><text x="25.9472%" y="799.50"></text></g><g><title>LinkResolver::resolve_field_access (75 samples, 0.01%)</title><rect x="25.7215%" y="773" width="0.0141%" height="15" fill="rgb(213,154,6)" fg:x="136504" fg:w="75"/><text x="25.9715%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (90 samples, 0.02%)</title><rect x="25.7192%" y="789" width="0.0170%" height="15" fill="rgb(222,163,29)" fg:x="136492" fg:w="90"/><text x="25.9692%" y="799.50"></text></g><g><title>ClassLoader::load_class (65 samples, 0.01%)</title><rect x="25.7441%" y="693" width="0.0122%" height="15" fill="rgb(227,201,8)" fg:x="136624" fg:w="65"/><text x="25.9941%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (60 samples, 0.01%)</title><rect x="25.7451%" y="677" width="0.0113%" height="15" fill="rgb(233,9,32)" fg:x="136629" fg:w="60"/><text x="25.9951%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (67 samples, 0.01%)</title><rect x="25.7441%" y="709" width="0.0126%" height="15" fill="rgb(217,54,24)" fg:x="136624" fg:w="67"/><text x="25.9941%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (88 samples, 0.02%)</title><rect x="25.7405%" y="757" width="0.0166%" height="15" fill="rgb(235,192,0)" fg:x="136605" fg:w="88"/><text x="25.9905%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (82 samples, 0.02%)</title><rect x="25.7417%" y="741" width="0.0155%" height="15" fill="rgb(235,45,9)" fg:x="136611" fg:w="82"/><text x="25.9917%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (82 samples, 0.02%)</title><rect x="25.7417%" y="725" width="0.0155%" height="15" fill="rgb(246,42,40)" fg:x="136611" fg:w="82"/><text x="25.9917%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (93 samples, 0.02%)</title><rect x="25.7684%" y="741" width="0.0175%" height="15" fill="rgb(248,111,24)" fg:x="136753" fg:w="93"/><text x="26.0184%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (84 samples, 0.02%)</title><rect x="25.7701%" y="725" width="0.0158%" height="15" fill="rgb(249,65,22)" fg:x="136762" fg:w="84"/><text x="26.0201%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (111 samples, 0.02%)</title><rect x="25.7679%" y="757" width="0.0209%" height="15" fill="rgb(238,111,51)" fg:x="136750" fg:w="111"/><text x="26.0179%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (262 samples, 0.05%)</title><rect x="25.7403%" y="773" width="0.0494%" height="15" fill="rgb(250,118,22)" fg:x="136604" fg:w="262"/><text x="25.9903%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (297 samples, 0.06%)</title><rect x="25.7362%" y="789" width="0.0560%" height="15" fill="rgb(234,84,26)" fg:x="136582" fg:w="297"/><text x="25.9862%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (434 samples, 0.08%)</title><rect x="25.7177%" y="805" width="0.0818%" height="15" fill="rgb(243,172,12)" fg:x="136484" fg:w="434"/><text x="25.9677%" y="815.50"></text></g><g><title>SymbolTable::lookup_only (423 samples, 0.08%)</title><rect x="25.8656%" y="661" width="0.0797%" height="15" fill="rgb(236,150,49)" fg:x="137269" fg:w="423"/><text x="26.1156%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (490 samples, 0.09%)</title><rect x="25.8532%" y="677" width="0.0923%" height="15" fill="rgb(225,197,26)" fg:x="137203" fg:w="490"/><text x="26.1032%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (508 samples, 0.10%)</title><rect x="25.8506%" y="693" width="0.0957%" height="15" fill="rgb(214,17,42)" fg:x="137189" fg:w="508"/><text x="26.1006%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (141 samples, 0.03%)</title><rect x="25.9508%" y="677" width="0.0266%" height="15" fill="rgb(224,165,40)" fg:x="137721" fg:w="141"/><text x="26.2008%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (143 samples, 0.03%)</title><rect x="25.9506%" y="693" width="0.0269%" height="15" fill="rgb(246,100,4)" fg:x="137720" fg:w="143"/><text x="26.2006%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (696 samples, 0.13%)</title><rect x="25.8493%" y="725" width="0.1311%" height="15" fill="rgb(222,103,0)" fg:x="137182" fg:w="696"/><text x="26.0993%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (696 samples, 0.13%)</title><rect x="25.8493%" y="709" width="0.1311%" height="15" fill="rgb(227,189,26)" fg:x="137182" fg:w="696"/><text x="26.0993%" y="719.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (86 samples, 0.02%)</title><rect x="25.9844%" y="677" width="0.0162%" height="15" fill="rgb(214,202,17)" fg:x="137899" fg:w="86"/><text x="26.2344%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (129 samples, 0.02%)</title><rect x="25.9813%" y="693" width="0.0243%" height="15" fill="rgb(229,111,3)" fg:x="137883" fg:w="129"/><text x="26.2313%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (168 samples, 0.03%)</title><rect x="25.9804%" y="709" width="0.0317%" height="15" fill="rgb(229,172,15)" fg:x="137878" fg:w="168"/><text x="26.2304%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (178 samples, 0.03%)</title><rect x="25.9804%" y="725" width="0.0335%" height="15" fill="rgb(230,224,35)" fg:x="137878" fg:w="178"/><text x="26.2304%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (920 samples, 0.17%)</title><rect x="25.8493%" y="741" width="0.1734%" height="15" fill="rgb(251,141,6)" fg:x="137182" fg:w="920"/><text x="26.0993%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (964 samples, 0.18%)</title><rect x="25.8472%" y="789" width="0.1816%" height="15" fill="rgb(225,208,6)" fg:x="137171" fg:w="964"/><text x="26.0972%" y="799.50"></text></g><g><title>jvm_define_class_common (964 samples, 0.18%)</title><rect x="25.8472%" y="773" width="0.1816%" height="15" fill="rgb(246,181,16)" fg:x="137171" fg:w="964"/><text x="26.0972%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (954 samples, 0.18%)</title><rect x="25.8491%" y="757" width="0.1798%" height="15" fill="rgb(227,129,36)" fg:x="137181" fg:w="954"/><text x="26.0991%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,003 samples, 0.19%)</title><rect x="25.8468%" y="805" width="0.1890%" height="15" fill="rgb(248,117,24)" fg:x="137169" fg:w="1003"/><text x="26.0968%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (69 samples, 0.01%)</title><rect x="26.0358%" y="805" width="0.0130%" height="15" fill="rgb(214,185,35)" fg:x="138172" fg:w="69"/><text x="26.2858%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (60 samples, 0.01%)</title><rect x="26.0669%" y="805" width="0.0113%" height="15" fill="rgb(236,150,34)" fg:x="138337" fg:w="60"/><text x="26.3169%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (59 samples, 0.01%)</title><rect x="26.0671%" y="789" width="0.0111%" height="15" fill="rgb(243,228,27)" fg:x="138338" fg:w="59"/><text x="26.3171%" y="799.50"></text></g><g><title>[perf-925888.map] (4,171 samples, 0.79%)</title><rect x="25.3030%" y="821" width="0.7859%" height="15" fill="rgb(245,77,44)" fg:x="134283" fg:w="4171"/><text x="25.5530%" y="831.50"></text></g><g><title>[unknown] (151 samples, 0.03%)</title><rect x="26.0889%" y="821" width="0.0285%" height="15" fill="rgb(235,214,42)" fg:x="138454" fg:w="151"/><text x="26.3389%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (274 samples, 0.05%)</title><rect x="26.1208%" y="757" width="0.0516%" height="15" fill="rgb(221,74,3)" fg:x="138623" fg:w="274"/><text x="26.3708%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (272 samples, 0.05%)</title><rect x="26.1212%" y="741" width="0.0513%" height="15" fill="rgb(206,121,29)" fg:x="138625" fg:w="272"/><text x="26.3712%" y="751.50"></text></g><g><title>native_write_msr (271 samples, 0.05%)</title><rect x="26.1213%" y="725" width="0.0511%" height="15" fill="rgb(249,131,53)" fg:x="138626" fg:w="271"/><text x="26.3713%" y="735.50"></text></g><g><title>schedule_tail (286 samples, 0.05%)</title><rect x="26.1198%" y="789" width="0.0539%" height="15" fill="rgb(236,170,29)" fg:x="138618" fg:w="286"/><text x="26.3698%" y="799.50"></text></g><g><title>finish_task_switch (286 samples, 0.05%)</title><rect x="26.1198%" y="773" width="0.0539%" height="15" fill="rgb(247,96,15)" fg:x="138618" fg:w="286"/><text x="26.3698%" y="783.50"></text></g><g><title>ret_from_fork (295 samples, 0.06%)</title><rect x="26.1187%" y="805" width="0.0556%" height="15" fill="rgb(211,210,7)" fg:x="138612" fg:w="295"/><text x="26.3687%" y="815.50"></text></g><g><title>JNI_CreateJavaVM (63 samples, 0.01%)</title><rect x="26.1743%" y="773" width="0.0119%" height="15" fill="rgb(240,88,50)" fg:x="138907" fg:w="63"/><text x="26.4243%" y="783.50"></text></g><g><title>Threads::create_vm (63 samples, 0.01%)</title><rect x="26.1743%" y="757" width="0.0119%" height="15" fill="rgb(209,229,26)" fg:x="138907" fg:w="63"/><text x="26.4243%" y="767.50"></text></g><g><title>JavaMain (65 samples, 0.01%)</title><rect x="26.1743%" y="789" width="0.0122%" height="15" fill="rgb(210,68,23)" fg:x="138907" fg:w="65"/><text x="26.4243%" y="799.50"></text></g><g><title>__GI___clone (468 samples, 0.09%)</title><rect x="26.1174%" y="821" width="0.0882%" height="15" fill="rgb(229,180,13)" fg:x="138605" fg:w="468"/><text x="26.3674%" y="831.50"></text></g><g><title>start_thread (166 samples, 0.03%)</title><rect x="26.1743%" y="805" width="0.0313%" height="15" fill="rgb(236,53,44)" fg:x="138907" fg:w="166"/><text x="26.4243%" y="815.50"></text></g><g><title>thread_native_entry (97 samples, 0.02%)</title><rect x="26.1873%" y="789" width="0.0183%" height="15" fill="rgb(244,214,29)" fg:x="138976" fg:w="97"/><text x="26.4373%" y="799.50"></text></g><g><title>java (5,030 samples, 0.95%)</title><rect x="25.2629%" y="837" width="0.9478%" height="15" fill="rgb(220,75,29)" fg:x="134070" fg:w="5030"/><text x="25.5129%" y="847.50"></text></g><g><title>[bash] (85 samples, 0.02%)</title><rect x="26.2333%" y="789" width="0.0160%" height="15" fill="rgb(214,183,37)" fg:x="139220" fg:w="85"/><text x="26.4833%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="26.2553%" y="69" width="0.0115%" height="15" fill="rgb(239,117,29)" fg:x="139337" fg:w="61"/><text x="26.5053%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="26.2553%" y="53" width="0.0115%" height="15" fill="rgb(237,171,35)" fg:x="139337" fg:w="61"/><text x="26.5053%" y="63.50"></text></g><g><title>native_write_msr (61 samples, 0.01%)</title><rect x="26.2553%" y="37" width="0.0115%" height="15" fill="rgb(229,178,53)" fg:x="139337" fg:w="61"/><text x="26.5053%" y="47.50"></text></g><g><title>arch_fork (82 samples, 0.02%)</title><rect x="26.2516%" y="133" width="0.0155%" height="15" fill="rgb(210,102,19)" fg:x="139317" fg:w="82"/><text x="26.5016%" y="143.50"></text></g><g><title>ret_from_fork (68 samples, 0.01%)</title><rect x="26.2542%" y="117" width="0.0128%" height="15" fill="rgb(235,127,22)" fg:x="139331" fg:w="68"/><text x="26.5042%" y="127.50"></text></g><g><title>schedule_tail (68 samples, 0.01%)</title><rect x="26.2542%" y="101" width="0.0128%" height="15" fill="rgb(244,31,31)" fg:x="139331" fg:w="68"/><text x="26.5042%" y="111.50"></text></g><g><title>finish_task_switch (63 samples, 0.01%)</title><rect x="26.2551%" y="85" width="0.0119%" height="15" fill="rgb(231,43,21)" fg:x="139336" fg:w="63"/><text x="26.5051%" y="95.50"></text></g><g><title>execute_command_internal (181 samples, 0.03%)</title><rect x="26.2333%" y="805" width="0.0341%" height="15" fill="rgb(217,131,35)" fg:x="139220" fg:w="181"/><text x="26.4833%" y="815.50"></text></g><g><title>execute_command_internal (95 samples, 0.02%)</title><rect x="26.2495%" y="789" width="0.0179%" height="15" fill="rgb(221,149,4)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="799.50"></text></g><g><title>[bash] (95 samples, 0.02%)</title><rect x="26.2495%" y="773" width="0.0179%" height="15" fill="rgb(232,170,28)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="783.50"></text></g><g><title>execute_command (95 samples, 0.02%)</title><rect x="26.2495%" y="757" width="0.0179%" height="15" fill="rgb(238,56,10)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="767.50"></text></g><g><title>execute_command_internal (95 samples, 0.02%)</title><rect x="26.2495%" y="741" width="0.0179%" height="15" fill="rgb(235,196,14)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="751.50"></text></g><g><title>[bash] (95 samples, 0.02%)</title><rect x="26.2495%" y="725" width="0.0179%" height="15" fill="rgb(216,45,48)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="735.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="709" width="0.0171%" height="15" fill="rgb(238,213,17)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="719.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="693" width="0.0171%" height="15" fill="rgb(212,13,2)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="703.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="677" width="0.0171%" height="15" fill="rgb(240,114,20)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="687.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="661" width="0.0171%" height="15" fill="rgb(228,41,40)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="671.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="645" width="0.0171%" height="15" fill="rgb(244,132,35)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="655.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="629" width="0.0171%" height="15" fill="rgb(253,189,4)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="639.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="613" width="0.0171%" height="15" fill="rgb(224,37,19)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="623.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="597" width="0.0171%" height="15" fill="rgb(235,223,18)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="607.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="581" width="0.0171%" height="15" fill="rgb(235,163,25)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="591.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="565" width="0.0171%" height="15" fill="rgb(217,145,28)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="575.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="549" width="0.0171%" height="15" fill="rgb(223,223,32)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="559.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="533" width="0.0171%" height="15" fill="rgb(227,189,39)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="543.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="517" width="0.0171%" height="15" fill="rgb(248,10,22)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="527.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="501" width="0.0171%" height="15" fill="rgb(248,46,39)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="511.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="485" width="0.0171%" height="15" fill="rgb(248,113,48)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="495.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="469" width="0.0171%" height="15" fill="rgb(245,16,25)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="479.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="453" width="0.0171%" height="15" fill="rgb(249,152,16)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="463.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="437" width="0.0171%" height="15" fill="rgb(250,16,1)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="447.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="421" width="0.0171%" height="15" fill="rgb(249,138,3)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="431.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="405" width="0.0171%" height="15" fill="rgb(227,71,41)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="415.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="389" width="0.0171%" height="15" fill="rgb(209,184,23)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="399.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="373" width="0.0171%" height="15" fill="rgb(223,215,31)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="383.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="357" width="0.0171%" height="15" fill="rgb(210,146,28)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="367.50"></text></g><g><title>expand_words (91 samples, 0.02%)</title><rect x="26.2502%" y="341" width="0.0171%" height="15" fill="rgb(209,183,41)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="351.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="325" width="0.0171%" height="15" fill="rgb(209,224,45)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="335.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="309" width="0.0171%" height="15" fill="rgb(224,209,51)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="319.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="293" width="0.0171%" height="15" fill="rgb(223,17,39)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="303.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="277" width="0.0171%" height="15" fill="rgb(234,204,37)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="287.50"></text></g><g><title>command_substitute (91 samples, 0.02%)</title><rect x="26.2502%" y="261" width="0.0171%" height="15" fill="rgb(236,120,5)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="271.50"></text></g><g><title>parse_and_execute (91 samples, 0.02%)</title><rect x="26.2502%" y="245" width="0.0171%" height="15" fill="rgb(248,97,27)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="255.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="229" width="0.0171%" height="15" fill="rgb(240,66,17)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="239.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="213" width="0.0171%" height="15" fill="rgb(210,79,3)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="223.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="197" width="0.0171%" height="15" fill="rgb(214,176,27)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="207.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="181" width="0.0171%" height="15" fill="rgb(235,185,3)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="191.50"></text></g><g><title>make_child (85 samples, 0.02%)</title><rect x="26.2514%" y="165" width="0.0160%" height="15" fill="rgb(227,24,12)" fg:x="139316" fg:w="85"/><text x="26.5014%" y="175.50"></text></g><g><title>__libc_fork (85 samples, 0.02%)</title><rect x="26.2514%" y="149" width="0.0160%" height="15" fill="rgb(252,169,48)" fg:x="139316" fg:w="85"/><text x="26.5014%" y="159.50"></text></g><g><title>[unknown] (273 samples, 0.05%)</title><rect x="26.2222%" y="821" width="0.0514%" height="15" fill="rgb(212,65,1)" fg:x="139161" fg:w="273"/><text x="26.4722%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="26.2900%" y="581" width="0.0111%" height="15" fill="rgb(242,39,24)" fg:x="139521" fg:w="59"/><text x="26.5400%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="26.2900%" y="565" width="0.0111%" height="15" fill="rgb(249,32,23)" fg:x="139521" fg:w="59"/><text x="26.5400%" y="575.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="26.2900%" y="549" width="0.0111%" height="15" fill="rgb(251,195,23)" fg:x="139521" fg:w="59"/><text x="26.5400%" y="559.50"></text></g><g><title>arch_fork (73 samples, 0.01%)</title><rect x="26.2875%" y="645" width="0.0138%" height="15" fill="rgb(236,174,8)" fg:x="139508" fg:w="73"/><text x="26.5375%" y="655.50"></text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="26.2887%" y="629" width="0.0126%" height="15" fill="rgb(220,197,8)" fg:x="139514" fg:w="67"/><text x="26.5387%" y="639.50"></text></g><g><title>schedule_tail (67 samples, 0.01%)</title><rect x="26.2887%" y="613" width="0.0126%" height="15" fill="rgb(240,108,37)" fg:x="139514" fg:w="67"/><text x="26.5387%" y="623.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="26.2898%" y="597" width="0.0115%" height="15" fill="rgb(232,176,24)" fg:x="139520" fg:w="61"/><text x="26.5398%" y="607.50"></text></g><g><title>__libc_fork (74 samples, 0.01%)</title><rect x="26.2875%" y="661" width="0.0139%" height="15" fill="rgb(243,35,29)" fg:x="139508" fg:w="74"/><text x="26.5375%" y="671.50"></text></g><g><title>make_child (79 samples, 0.01%)</title><rect x="26.2874%" y="677" width="0.0149%" height="15" fill="rgb(210,37,18)" fg:x="139507" fg:w="79"/><text x="26.5374%" y="687.50"></text></g><g><title>execute_command (145 samples, 0.03%)</title><rect x="26.2802%" y="709" width="0.0273%" height="15" fill="rgb(224,184,40)" fg:x="139469" fg:w="145"/><text x="26.5302%" y="719.50"></text></g><g><title>execute_command_internal (145 samples, 0.03%)</title><rect x="26.2802%" y="693" width="0.0273%" height="15" fill="rgb(236,39,29)" fg:x="139469" fg:w="145"/><text x="26.5302%" y="703.50"></text></g><g><title>[bash] (168 samples, 0.03%)</title><rect x="26.2794%" y="725" width="0.0317%" height="15" fill="rgb(232,48,39)" fg:x="139465" fg:w="168"/><text x="26.5294%" y="735.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="26.3117%" y="693" width="0.0107%" height="15" fill="rgb(236,34,42)" fg:x="139636" fg:w="57"/><text x="26.5617%" y="703.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="26.3119%" y="677" width="0.0106%" height="15" fill="rgb(243,106,37)" fg:x="139637" fg:w="56"/><text x="26.5619%" y="687.50"></text></g><g><title>bind_function (59 samples, 0.01%)</title><rect x="26.3115%" y="725" width="0.0111%" height="15" fill="rgb(218,96,6)" fg:x="139635" fg:w="59"/><text x="26.5615%" y="735.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.3117%" y="709" width="0.0109%" height="15" fill="rgb(235,130,12)" fg:x="139636" fg:w="58"/><text x="26.5617%" y="719.50"></text></g><g><title>copy_command (55 samples, 0.01%)</title><rect x="26.3232%" y="661" width="0.0104%" height="15" fill="rgb(231,95,0)" fg:x="139697" fg:w="55"/><text x="26.5732%" y="671.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="26.3233%" y="645" width="0.0102%" height="15" fill="rgb(228,12,23)" fg:x="139698" fg:w="54"/><text x="26.5733%" y="655.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.3230%" y="709" width="0.0109%" height="15" fill="rgb(216,12,1)" fg:x="139696" fg:w="58"/><text x="26.5730%" y="719.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.3230%" y="693" width="0.0109%" height="15" fill="rgb(219,59,3)" fg:x="139696" fg:w="58"/><text x="26.5730%" y="703.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="26.3232%" y="677" width="0.0107%" height="15" fill="rgb(215,208,46)" fg:x="139697" fg:w="57"/><text x="26.5732%" y="687.50"></text></g><g><title>copy_function_def_contents (60 samples, 0.01%)</title><rect x="26.3228%" y="725" width="0.0113%" height="15" fill="rgb(254,224,29)" fg:x="139695" fg:w="60"/><text x="26.5728%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.01%)</title><rect x="26.3416%" y="549" width="0.0124%" height="15" fill="rgb(232,14,29)" fg:x="139795" fg:w="66"/><text x="26.5916%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="26.3418%" y="533" width="0.0122%" height="15" fill="rgb(208,45,52)" fg:x="139796" fg:w="65"/><text x="26.5918%" y="543.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="26.3418%" y="517" width="0.0122%" height="15" fill="rgb(234,191,28)" fg:x="139796" fg:w="65"/><text x="26.5918%" y="527.50"></text></g><g><title>arch_fork (81 samples, 0.02%)</title><rect x="26.3390%" y="613" width="0.0153%" height="15" fill="rgb(244,67,43)" fg:x="139781" fg:w="81"/><text x="26.5890%" y="623.50"></text></g><g><title>ret_from_fork (72 samples, 0.01%)</title><rect x="26.3407%" y="597" width="0.0136%" height="15" fill="rgb(236,189,24)" fg:x="139790" fg:w="72"/><text x="26.5907%" y="607.50"></text></g><g><title>schedule_tail (72 samples, 0.01%)</title><rect x="26.3407%" y="581" width="0.0136%" height="15" fill="rgb(239,214,33)" fg:x="139790" fg:w="72"/><text x="26.5907%" y="591.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="26.3416%" y="565" width="0.0126%" height="15" fill="rgb(226,176,41)" fg:x="139795" fg:w="67"/><text x="26.5916%" y="575.50"></text></g><g><title>__libc_fork (84 samples, 0.02%)</title><rect x="26.3388%" y="629" width="0.0158%" height="15" fill="rgb(248,47,8)" fg:x="139780" fg:w="84"/><text x="26.5888%" y="639.50"></text></g><g><title>make_child (85 samples, 0.02%)</title><rect x="26.3388%" y="645" width="0.0160%" height="15" fill="rgb(218,81,44)" fg:x="139780" fg:w="85"/><text x="26.5888%" y="655.50"></text></g><g><title>execute_command_internal (75 samples, 0.01%)</title><rect x="26.3550%" y="629" width="0.0141%" height="15" fill="rgb(213,98,6)" fg:x="139866" fg:w="75"/><text x="26.6050%" y="639.50"></text></g><g><title>parse_and_execute (78 samples, 0.01%)</title><rect x="26.3548%" y="645" width="0.0147%" height="15" fill="rgb(222,85,22)" fg:x="139865" fg:w="78"/><text x="26.6048%" y="655.50"></text></g><g><title>command_substitute (217 samples, 0.04%)</title><rect x="26.3375%" y="661" width="0.0409%" height="15" fill="rgb(239,46,39)" fg:x="139773" fg:w="217"/><text x="26.5875%" y="671.50"></text></g><g><title>expand_word_leave_quoted (219 samples, 0.04%)</title><rect x="26.3373%" y="693" width="0.0413%" height="15" fill="rgb(237,12,29)" fg:x="139772" fg:w="219"/><text x="26.5873%" y="703.50"></text></g><g><title>[bash] (219 samples, 0.04%)</title><rect x="26.3373%" y="677" width="0.0413%" height="15" fill="rgb(214,77,8)" fg:x="139772" fg:w="219"/><text x="26.5873%" y="687.50"></text></g><g><title>execute_command (246 samples, 0.05%)</title><rect x="26.3341%" y="725" width="0.0464%" height="15" fill="rgb(217,168,37)" fg:x="139755" fg:w="246"/><text x="26.5841%" y="735.50"></text></g><g><title>execute_command_internal (246 samples, 0.05%)</title><rect x="26.3341%" y="709" width="0.0464%" height="15" fill="rgb(221,217,23)" fg:x="139755" fg:w="246"/><text x="26.5841%" y="719.50"></text></g><g><title>arch_fork (67 samples, 0.01%)</title><rect x="26.3844%" y="597" width="0.0126%" height="15" fill="rgb(243,229,36)" fg:x="140022" fg:w="67"/><text x="26.6344%" y="607.50"></text></g><g><title>ret_from_fork (61 samples, 0.01%)</title><rect x="26.3855%" y="581" width="0.0115%" height="15" fill="rgb(251,163,40)" fg:x="140028" fg:w="61"/><text x="26.6355%" y="591.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="26.3855%" y="565" width="0.0115%" height="15" fill="rgb(237,222,12)" fg:x="140028" fg:w="61"/><text x="26.6355%" y="575.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="26.3865%" y="549" width="0.0106%" height="15" fill="rgb(248,132,6)" fg:x="140033" fg:w="56"/><text x="26.6365%" y="559.50"></text></g><g><title>__libc_fork (68 samples, 0.01%)</title><rect x="26.3844%" y="613" width="0.0128%" height="15" fill="rgb(227,167,50)" fg:x="140022" fg:w="68"/><text x="26.6344%" y="623.50"></text></g><g><title>make_child (71 samples, 0.01%)</title><rect x="26.3844%" y="629" width="0.0134%" height="15" fill="rgb(242,84,37)" fg:x="140022" fg:w="71"/><text x="26.6344%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (87 samples, 0.02%)</title><rect x="26.4144%" y="453" width="0.0164%" height="15" fill="rgb(212,4,50)" fg:x="140181" fg:w="87"/><text x="26.6644%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.02%)</title><rect x="26.4145%" y="437" width="0.0162%" height="15" fill="rgb(230,228,32)" fg:x="140182" fg:w="86"/><text x="26.6645%" y="447.50"></text></g><g><title>native_write_msr (86 samples, 0.02%)</title><rect x="26.4145%" y="421" width="0.0162%" height="15" fill="rgb(248,217,23)" fg:x="140182" fg:w="86"/><text x="26.6645%" y="431.50"></text></g><g><title>arch_fork (108 samples, 0.02%)</title><rect x="26.4106%" y="517" width="0.0204%" height="15" fill="rgb(238,197,32)" fg:x="140161" fg:w="108"/><text x="26.6606%" y="527.50"></text></g><g><title>ret_from_fork (95 samples, 0.02%)</title><rect x="26.4130%" y="501" width="0.0179%" height="15" fill="rgb(236,106,1)" fg:x="140174" fg:w="95"/><text x="26.6630%" y="511.50"></text></g><g><title>schedule_tail (95 samples, 0.02%)</title><rect x="26.4130%" y="485" width="0.0179%" height="15" fill="rgb(219,228,13)" fg:x="140174" fg:w="95"/><text x="26.6630%" y="495.50"></text></g><g><title>finish_task_switch (90 samples, 0.02%)</title><rect x="26.4140%" y="469" width="0.0170%" height="15" fill="rgb(238,30,35)" fg:x="140179" fg:w="90"/><text x="26.6640%" y="479.50"></text></g><g><title>__libc_fork (116 samples, 0.02%)</title><rect x="26.4098%" y="533" width="0.0219%" height="15" fill="rgb(236,70,23)" fg:x="140157" fg:w="116"/><text x="26.6598%" y="543.50"></text></g><g><title>make_child (119 samples, 0.02%)</title><rect x="26.4098%" y="549" width="0.0224%" height="15" fill="rgb(249,104,48)" fg:x="140157" fg:w="119"/><text x="26.6598%" y="559.50"></text></g><g><title>execute_command_internal (206 samples, 0.04%)</title><rect x="26.3980%" y="613" width="0.0388%" height="15" fill="rgb(254,117,50)" fg:x="140094" fg:w="206"/><text x="26.6480%" y="623.50"></text></g><g><title>[bash] (206 samples, 0.04%)</title><rect x="26.3980%" y="597" width="0.0388%" height="15" fill="rgb(223,152,4)" fg:x="140094" fg:w="206"/><text x="26.6480%" y="607.50"></text></g><g><title>[bash] (206 samples, 0.04%)</title><rect x="26.3980%" y="581" width="0.0388%" height="15" fill="rgb(245,6,2)" fg:x="140094" fg:w="206"/><text x="26.6480%" y="591.50"></text></g><g><title>execute_command_internal (201 samples, 0.04%)</title><rect x="26.3989%" y="565" width="0.0379%" height="15" fill="rgb(249,150,24)" fg:x="140099" fg:w="201"/><text x="26.6489%" y="575.50"></text></g><g><title>parse_and_execute (209 samples, 0.04%)</title><rect x="26.3978%" y="629" width="0.0394%" height="15" fill="rgb(228,185,42)" fg:x="140093" fg:w="209"/><text x="26.6478%" y="639.50"></text></g><g><title>command_substitute (301 samples, 0.06%)</title><rect x="26.3819%" y="645" width="0.0567%" height="15" fill="rgb(226,39,33)" fg:x="140009" fg:w="301"/><text x="26.6319%" y="655.50"></text></g><g><title>[bash] (308 samples, 0.06%)</title><rect x="26.3808%" y="661" width="0.0580%" height="15" fill="rgb(221,166,19)" fg:x="140003" fg:w="308"/><text x="26.6308%" y="671.50"></text></g><g><title>[bash] (310 samples, 0.06%)</title><rect x="26.3808%" y="677" width="0.0584%" height="15" fill="rgb(209,109,2)" fg:x="140003" fg:w="310"/><text x="26.6308%" y="687.50"></text></g><g><title>[bash] (315 samples, 0.06%)</title><rect x="26.3804%" y="693" width="0.0594%" height="15" fill="rgb(252,216,26)" fg:x="140001" fg:w="315"/><text x="26.6304%" y="703.50"></text></g><g><title>expand_words (319 samples, 0.06%)</title><rect x="26.3804%" y="725" width="0.0601%" height="15" fill="rgb(227,173,36)" fg:x="140001" fg:w="319"/><text x="26.6304%" y="735.50"></text></g><g><title>[bash] (319 samples, 0.06%)</title><rect x="26.3804%" y="709" width="0.0601%" height="15" fill="rgb(209,90,7)" fg:x="140001" fg:w="319"/><text x="26.6304%" y="719.50"></text></g><g><title>execute_command (864 samples, 0.16%)</title><rect x="26.2791%" y="757" width="0.1628%" height="15" fill="rgb(250,194,11)" fg:x="139463" fg:w="864"/><text x="26.5291%" y="767.50"></text></g><g><title>execute_command_internal (864 samples, 0.16%)</title><rect x="26.2791%" y="741" width="0.1628%" height="15" fill="rgb(220,72,50)" fg:x="139463" fg:w="864"/><text x="26.5291%" y="751.50"></text></g><g><title>[bash] (204 samples, 0.04%)</title><rect x="26.4677%" y="693" width="0.0384%" height="15" fill="rgb(222,106,48)" fg:x="140464" fg:w="204"/><text x="26.7177%" y="703.50"></text></g><g><title>[bash] (347 samples, 0.07%)</title><rect x="26.4522%" y="709" width="0.0654%" height="15" fill="rgb(216,220,45)" fg:x="140382" fg:w="347"/><text x="26.7022%" y="719.50"></text></g><g><title>reader_loop (1,316 samples, 0.25%)</title><rect x="26.2753%" y="773" width="0.2480%" height="15" fill="rgb(234,112,18)" fg:x="139443" fg:w="1316"/><text x="26.5253%" y="783.50"></text></g><g><title>read_command (432 samples, 0.08%)</title><rect x="26.4419%" y="757" width="0.0814%" height="15" fill="rgb(206,179,9)" fg:x="140327" fg:w="432"/><text x="26.6919%" y="767.50"></text></g><g><title>parse_command (431 samples, 0.08%)</title><rect x="26.4421%" y="741" width="0.0812%" height="15" fill="rgb(215,115,40)" fg:x="140328" fg:w="431"/><text x="26.6921%" y="751.50"></text></g><g><title>yyparse (431 samples, 0.08%)</title><rect x="26.4421%" y="725" width="0.0812%" height="15" fill="rgb(222,69,34)" fg:x="140328" fg:w="431"/><text x="26.6921%" y="735.50"></text></g><g><title>__libc_start_main (1,333 samples, 0.25%)</title><rect x="26.2744%" y="805" width="0.2512%" height="15" fill="rgb(209,161,10)" fg:x="139438" fg:w="1333"/><text x="26.5244%" y="815.50"></text></g><g><title>main (1,333 samples, 0.25%)</title><rect x="26.2744%" y="789" width="0.2512%" height="15" fill="rgb(217,6,38)" fg:x="139438" fg:w="1333"/><text x="26.5244%" y="799.50"></text></g><g><title>_start (1,360 samples, 0.26%)</title><rect x="26.2744%" y="821" width="0.2563%" height="15" fill="rgb(229,229,48)" fg:x="139438" fg:w="1360"/><text x="26.5244%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="26.5372%" y="821" width="0.0130%" height="15" fill="rgb(225,21,28)" fg:x="140833" fg:w="69"/><text x="26.7872%" y="831.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="26.5372%" y="805" width="0.0130%" height="15" fill="rgb(206,33,13)" fg:x="140833" fg:w="69"/><text x="26.7872%" y="815.50"></text></g><g><title>__x64_sys_exit_group (55 samples, 0.01%)</title><rect x="26.5399%" y="789" width="0.0104%" height="15" fill="rgb(242,178,17)" fg:x="140847" fg:w="55"/><text x="26.7899%" y="799.50"></text></g><g><title>do_group_exit (55 samples, 0.01%)</title><rect x="26.5399%" y="773" width="0.0104%" height="15" fill="rgb(220,162,5)" fg:x="140847" fg:w="55"/><text x="26.7899%" y="783.50"></text></g><g><title>do_exit (55 samples, 0.01%)</title><rect x="26.5399%" y="757" width="0.0104%" height="15" fill="rgb(210,33,43)" fg:x="140847" fg:w="55"/><text x="26.7899%" y="767.50"></text></g><g><title>libtool (1,806 samples, 0.34%)</title><rect x="26.2107%" y="837" width="0.3403%" height="15" fill="rgb(216,116,54)" fg:x="139100" fg:w="1806"/><text x="26.4607%" y="847.50"></text></g><g><title>copy_process (56 samples, 0.01%)</title><rect x="26.5561%" y="709" width="0.0106%" height="15" fill="rgb(249,92,24)" fg:x="140933" fg:w="56"/><text x="26.8061%" y="719.50"></text></g><g><title>__libc_start_main (59 samples, 0.01%)</title><rect x="26.5559%" y="805" width="0.0111%" height="15" fill="rgb(231,189,14)" fg:x="140932" fg:w="59"/><text x="26.8059%" y="815.50"></text></g><g><title>__GI___clone (59 samples, 0.01%)</title><rect x="26.5559%" y="789" width="0.0111%" height="15" fill="rgb(230,8,41)" fg:x="140932" fg:w="59"/><text x="26.8059%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="26.5561%" y="773" width="0.0109%" height="15" fill="rgb(249,7,27)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="783.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="26.5561%" y="757" width="0.0109%" height="15" fill="rgb(232,86,5)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="767.50"></text></g><g><title>__do_sys_clone (58 samples, 0.01%)</title><rect x="26.5561%" y="741" width="0.0109%" height="15" fill="rgb(224,175,18)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="751.50"></text></g><g><title>kernel_clone (58 samples, 0.01%)</title><rect x="26.5561%" y="725" width="0.0109%" height="15" fill="rgb(220,129,12)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="735.50"></text></g><g><title>[unknown] (70 samples, 0.01%)</title><rect x="26.5549%" y="821" width="0.0132%" height="15" fill="rgb(210,19,36)" fg:x="140927" fg:w="70"/><text x="26.8049%" y="831.50"></text></g><g><title>CreateTarget (61 samples, 0.01%)</title><rect x="26.5696%" y="789" width="0.0115%" height="15" fill="rgb(219,96,14)" fg:x="141005" fg:w="61"/><text x="26.8196%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (156 samples, 0.03%)</title><rect x="26.5981%" y="661" width="0.0294%" height="15" fill="rgb(249,106,1)" fg:x="141156" fg:w="156"/><text x="26.8481%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (153 samples, 0.03%)</title><rect x="26.5986%" y="645" width="0.0288%" height="15" fill="rgb(249,155,20)" fg:x="141159" fg:w="153"/><text x="26.8486%" y="655.50"></text></g><g><title>native_write_msr (152 samples, 0.03%)</title><rect x="26.5988%" y="629" width="0.0286%" height="15" fill="rgb(244,168,9)" fg:x="141160" fg:w="152"/><text x="26.8488%" y="639.50"></text></g><g><title>finish_task_switch (158 samples, 0.03%)</title><rect x="26.5981%" y="677" width="0.0298%" height="15" fill="rgb(216,23,50)" fg:x="141156" fg:w="158"/><text x="26.8481%" y="687.50"></text></g><g><title>schedule (159 samples, 0.03%)</title><rect x="26.5981%" y="709" width="0.0300%" height="15" fill="rgb(224,219,20)" fg:x="141156" fg:w="159"/><text x="26.8481%" y="719.50"></text></g><g><title>__schedule (159 samples, 0.03%)</title><rect x="26.5981%" y="693" width="0.0300%" height="15" fill="rgb(222,156,15)" fg:x="141156" fg:w="159"/><text x="26.8481%" y="703.50"></text></g><g><title>do_syscall_64 (186 samples, 0.04%)</title><rect x="26.5977%" y="757" width="0.0350%" height="15" fill="rgb(231,97,17)" fg:x="141154" fg:w="186"/><text x="26.8477%" y="767.50"></text></g><g><title>kernel_wait4 (186 samples, 0.04%)</title><rect x="26.5977%" y="741" width="0.0350%" height="15" fill="rgb(218,70,48)" fg:x="141154" fg:w="186"/><text x="26.8477%" y="751.50"></text></g><g><title>do_wait (186 samples, 0.04%)</title><rect x="26.5977%" y="725" width="0.0350%" height="15" fill="rgb(212,196,52)" fg:x="141154" fg:w="186"/><text x="26.8477%" y="735.50"></text></g><g><title>__GI___wait4 (188 samples, 0.04%)</title><rect x="26.5977%" y="789" width="0.0354%" height="15" fill="rgb(243,203,18)" fg:x="141154" fg:w="188"/><text x="26.8477%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (188 samples, 0.04%)</title><rect x="26.5977%" y="773" width="0.0354%" height="15" fill="rgb(252,125,41)" fg:x="141154" fg:w="188"/><text x="26.8477%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (440 samples, 0.08%)</title><rect x="26.6652%" y="709" width="0.0829%" height="15" fill="rgb(223,180,33)" fg:x="141512" fg:w="440"/><text x="26.9152%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (435 samples, 0.08%)</title><rect x="26.6661%" y="693" width="0.0820%" height="15" fill="rgb(254,159,46)" fg:x="141517" fg:w="435"/><text x="26.9161%" y="703.50"></text></g><g><title>native_write_msr (435 samples, 0.08%)</title><rect x="26.6661%" y="677" width="0.0820%" height="15" fill="rgb(254,38,10)" fg:x="141517" fg:w="435"/><text x="26.9161%" y="687.50"></text></g><g><title>schedule_tail (458 samples, 0.09%)</title><rect x="26.6625%" y="741" width="0.0863%" height="15" fill="rgb(208,217,32)" fg:x="141498" fg:w="458"/><text x="26.9125%" y="751.50"></text></g><g><title>finish_task_switch (445 samples, 0.08%)</title><rect x="26.6650%" y="725" width="0.0839%" height="15" fill="rgb(221,120,13)" fg:x="141511" fg:w="445"/><text x="26.9150%" y="735.50"></text></g><g><title>ret_from_fork (459 samples, 0.09%)</title><rect x="26.6625%" y="757" width="0.0865%" height="15" fill="rgb(246,54,52)" fg:x="141498" fg:w="459"/><text x="26.9125%" y="767.50"></text></g><g><title>arch_fork (516 samples, 0.10%)</title><rect x="26.6520%" y="773" width="0.0972%" height="15" fill="rgb(242,34,25)" fg:x="141442" fg:w="516"/><text x="26.9020%" y="783.50"></text></g><g><title>__libc_fork (558 samples, 0.11%)</title><rect x="26.6486%" y="789" width="0.1051%" height="15" fill="rgb(247,209,9)" fg:x="141424" fg:w="558"/><text x="26.8986%" y="799.50"></text></g><g><title>chroot_fs_refs (68 samples, 0.01%)</title><rect x="26.7822%" y="725" width="0.0128%" height="15" fill="rgb(228,71,26)" fg:x="142133" fg:w="68"/><text x="27.0322%" y="735.50"></text></g><g><title>syscall (72 samples, 0.01%)</title><rect x="26.7822%" y="789" width="0.0136%" height="15" fill="rgb(222,145,49)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="26.7822%" y="773" width="0.0136%" height="15" fill="rgb(218,121,17)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="783.50"></text></g><g><title>do_syscall_64 (72 samples, 0.01%)</title><rect x="26.7822%" y="757" width="0.0136%" height="15" fill="rgb(244,50,7)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="767.50"></text></g><g><title>__do_sys_pivot_root (72 samples, 0.01%)</title><rect x="26.7822%" y="741" width="0.0136%" height="15" fill="rgb(246,229,37)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="751.50"></text></g><g><title>Pid1Main (1,204 samples, 0.23%)</title><rect x="26.5691%" y="805" width="0.2269%" height="15" fill="rgb(225,18,5)" fg:x="141002" fg:w="1204"/><text x="26.8191%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (447 samples, 0.08%)</title><rect x="26.8070%" y="757" width="0.0842%" height="15" fill="rgb(213,204,8)" fg:x="142265" fg:w="447"/><text x="27.0570%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (445 samples, 0.08%)</title><rect x="26.8074%" y="741" width="0.0839%" height="15" fill="rgb(238,103,6)" fg:x="142267" fg:w="445"/><text x="27.0574%" y="751.50"></text></g><g><title>native_write_msr (445 samples, 0.08%)</title><rect x="26.8074%" y="725" width="0.0839%" height="15" fill="rgb(222,25,35)" fg:x="142267" fg:w="445"/><text x="27.0574%" y="735.50"></text></g><g><title>schedule_tail (457 samples, 0.09%)</title><rect x="26.8063%" y="789" width="0.0861%" height="15" fill="rgb(213,203,35)" fg:x="142261" fg:w="457"/><text x="27.0563%" y="799.50"></text></g><g><title>finish_task_switch (457 samples, 0.09%)</title><rect x="26.8063%" y="773" width="0.0861%" height="15" fill="rgb(221,79,53)" fg:x="142261" fg:w="457"/><text x="27.0563%" y="783.50"></text></g><g><title>__GI___clone (1,725 samples, 0.33%)</title><rect x="26.5681%" y="821" width="0.3250%" height="15" fill="rgb(243,200,35)" fg:x="140997" fg:w="1725"/><text x="26.8181%" y="831.50"></text></g><g><title>ret_from_fork (479 samples, 0.09%)</title><rect x="26.8029%" y="805" width="0.0903%" height="15" fill="rgb(248,60,25)" fg:x="142243" fg:w="479"/><text x="27.0529%" y="815.50"></text></g><g><title>exc_page_fault (65 samples, 0.01%)</title><rect x="26.9148%" y="741" width="0.0122%" height="15" fill="rgb(227,53,46)" fg:x="142837" fg:w="65"/><text x="27.1648%" y="751.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.01%)</title><rect x="26.9152%" y="725" width="0.0119%" height="15" fill="rgb(216,120,32)" fg:x="142839" fg:w="63"/><text x="27.1652%" y="735.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="26.9160%" y="709" width="0.0111%" height="15" fill="rgb(220,134,1)" fg:x="142843" fg:w="59"/><text x="27.1660%" y="719.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="26.9143%" y="757" width="0.0130%" height="15" fill="rgb(237,168,5)" fg:x="142834" fg:w="69"/><text x="27.1643%" y="767.50"></text></g><g><title>[libc-2.31.so] (89 samples, 0.02%)</title><rect x="26.9120%" y="773" width="0.0168%" height="15" fill="rgb(231,100,33)" fg:x="142822" fg:w="89"/><text x="27.1620%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (112 samples, 0.02%)</title><rect x="26.9301%" y="629" width="0.0211%" height="15" fill="rgb(236,177,47)" fg:x="142918" fg:w="112"/><text x="27.1801%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="26.9301%" y="613" width="0.0211%" height="15" fill="rgb(235,7,49)" fg:x="142918" fg:w="112"/><text x="27.1801%" y="623.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="26.9308%" y="597" width="0.0204%" height="15" fill="rgb(232,119,22)" fg:x="142922" fg:w="108"/><text x="27.1808%" y="607.50"></text></g><g><title>finish_task_switch (114 samples, 0.02%)</title><rect x="26.9301%" y="645" width="0.0215%" height="15" fill="rgb(254,73,53)" fg:x="142918" fg:w="114"/><text x="27.1801%" y="655.50"></text></g><g><title>schedule (118 samples, 0.02%)</title><rect x="26.9295%" y="677" width="0.0222%" height="15" fill="rgb(251,35,20)" fg:x="142915" fg:w="118"/><text x="27.1795%" y="687.50"></text></g><g><title>__schedule (118 samples, 0.02%)</title><rect x="26.9295%" y="661" width="0.0222%" height="15" fill="rgb(241,119,20)" fg:x="142915" fg:w="118"/><text x="27.1795%" y="671.50"></text></g><g><title>do_syscall_64 (138 samples, 0.03%)</title><rect x="26.9292%" y="741" width="0.0260%" height="15" fill="rgb(207,102,14)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="751.50"></text></g><g><title>__do_sys_wait4 (138 samples, 0.03%)</title><rect x="26.9292%" y="725" width="0.0260%" height="15" fill="rgb(248,201,50)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="735.50"></text></g><g><title>kernel_wait4 (138 samples, 0.03%)</title><rect x="26.9292%" y="709" width="0.0260%" height="15" fill="rgb(222,185,44)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="719.50"></text></g><g><title>do_wait (138 samples, 0.03%)</title><rect x="26.9292%" y="693" width="0.0260%" height="15" fill="rgb(218,107,18)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="703.50"></text></g><g><title>__GI___wait4 (140 samples, 0.03%)</title><rect x="26.9290%" y="773" width="0.0264%" height="15" fill="rgb(237,177,39)" fg:x="142912" fg:w="140"/><text x="27.1790%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (139 samples, 0.03%)</title><rect x="26.9292%" y="757" width="0.0262%" height="15" fill="rgb(246,69,6)" fg:x="142913" fg:w="139"/><text x="27.1792%" y="767.50"></text></g><g><title>__libc_start_main (350 samples, 0.07%)</title><rect x="26.9013%" y="805" width="0.0660%" height="15" fill="rgb(234,208,37)" fg:x="142765" fg:w="350"/><text x="27.1513%" y="815.50"></text></g><g><title>main (307 samples, 0.06%)</title><rect x="26.9094%" y="789" width="0.0578%" height="15" fill="rgb(225,4,6)" fg:x="142808" fg:w="307"/><text x="27.1594%" y="799.50"></text></g><g><title>_dl_catch_exception (68 samples, 0.01%)</title><rect x="26.9706%" y="725" width="0.0128%" height="15" fill="rgb(233,45,0)" fg:x="143133" fg:w="68"/><text x="27.2206%" y="735.50"></text></g><g><title>openaux (68 samples, 0.01%)</title><rect x="26.9706%" y="709" width="0.0128%" height="15" fill="rgb(226,136,5)" fg:x="143133" fg:w="68"/><text x="27.2206%" y="719.50"></text></g><g><title>_dl_map_object (68 samples, 0.01%)</title><rect x="26.9706%" y="693" width="0.0128%" height="15" fill="rgb(211,91,47)" fg:x="143133" fg:w="68"/><text x="27.2206%" y="703.50"></text></g><g><title>_dl_map_object_deps (78 samples, 0.01%)</title><rect x="26.9697%" y="741" width="0.0147%" height="15" fill="rgb(242,88,51)" fg:x="143128" fg:w="78"/><text x="27.2197%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (142 samples, 0.03%)</title><rect x="26.9992%" y="693" width="0.0268%" height="15" fill="rgb(230,91,28)" fg:x="143285" fg:w="142"/><text x="27.2492%" y="703.50"></text></g><g><title>do_lookup_x (98 samples, 0.02%)</title><rect x="27.0075%" y="677" width="0.0185%" height="15" fill="rgb(254,186,29)" fg:x="143329" fg:w="98"/><text x="27.2575%" y="687.50"></text></g><g><title>elf_machine_rela (177 samples, 0.03%)</title><rect x="26.9928%" y="709" width="0.0334%" height="15" fill="rgb(238,6,4)" fg:x="143251" fg:w="177"/><text x="27.2428%" y="719.50"></text></g><g><title>_dl_relocate_object (229 samples, 0.04%)</title><rect x="26.9853%" y="741" width="0.0432%" height="15" fill="rgb(221,151,16)" fg:x="143211" fg:w="229"/><text x="27.2353%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (212 samples, 0.04%)</title><rect x="26.9885%" y="725" width="0.0399%" height="15" fill="rgb(251,143,52)" fg:x="143228" fg:w="212"/><text x="27.2385%" y="735.50"></text></g><g><title>[ld-2.31.so] (329 samples, 0.06%)</title><rect x="26.9672%" y="757" width="0.0620%" height="15" fill="rgb(206,90,15)" fg:x="143115" fg:w="329"/><text x="27.2172%" y="767.50"></text></g><g><title>_dl_start_final (333 samples, 0.06%)</title><rect x="26.9672%" y="789" width="0.0627%" height="15" fill="rgb(218,35,8)" fg:x="143115" fg:w="333"/><text x="27.2172%" y="799.50"></text></g><g><title>_dl_sysdep_start (333 samples, 0.06%)</title><rect x="26.9672%" y="773" width="0.0627%" height="15" fill="rgb(239,215,6)" fg:x="143115" fg:w="333"/><text x="27.2172%" y="783.50"></text></g><g><title>_start (686 samples, 0.13%)</title><rect x="26.9011%" y="821" width="0.1293%" height="15" fill="rgb(245,116,39)" fg:x="142764" fg:w="686"/><text x="27.1511%" y="831.50"></text></g><g><title>_dl_start (335 samples, 0.06%)</title><rect x="26.9672%" y="805" width="0.0631%" height="15" fill="rgb(242,65,28)" fg:x="143115" fg:w="335"/><text x="27.2172%" y="815.50"></text></g><g><title>asm_exc_page_fault (93 samples, 0.02%)</title><rect x="27.0303%" y="821" width="0.0175%" height="15" fill="rgb(252,132,53)" fg:x="143450" fg:w="93"/><text x="27.2803%" y="831.50"></text></g><g><title>exit_mmap (66 samples, 0.01%)</title><rect x="27.0499%" y="693" width="0.0124%" height="15" fill="rgb(224,159,50)" fg:x="143554" fg:w="66"/><text x="27.2999%" y="703.50"></text></g><g><title>mmput (68 samples, 0.01%)</title><rect x="27.0497%" y="709" width="0.0128%" height="15" fill="rgb(224,93,4)" fg:x="143553" fg:w="68"/><text x="27.2997%" y="719.50"></text></g><g><title>begin_new_exec (72 samples, 0.01%)</title><rect x="27.0496%" y="725" width="0.0136%" height="15" fill="rgb(208,81,34)" fg:x="143552" fg:w="72"/><text x="27.2996%" y="735.50"></text></g><g><title>__x64_sys_execve (136 samples, 0.03%)</title><rect x="27.0486%" y="789" width="0.0256%" height="15" fill="rgb(233,92,54)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="799.50"></text></g><g><title>do_execveat_common (136 samples, 0.03%)</title><rect x="27.0486%" y="773" width="0.0256%" height="15" fill="rgb(237,21,14)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="783.50"></text></g><g><title>bprm_execve (136 samples, 0.03%)</title><rect x="27.0486%" y="757" width="0.0256%" height="15" fill="rgb(249,128,51)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="767.50"></text></g><g><title>load_elf_binary (136 samples, 0.03%)</title><rect x="27.0486%" y="741" width="0.0256%" height="15" fill="rgb(223,129,24)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="751.50"></text></g><g><title>mmput (72 samples, 0.01%)</title><rect x="27.0757%" y="757" width="0.0136%" height="15" fill="rgb(231,168,25)" fg:x="143691" fg:w="72"/><text x="27.3257%" y="767.50"></text></g><g><title>exit_mmap (72 samples, 0.01%)</title><rect x="27.0757%" y="741" width="0.0136%" height="15" fill="rgb(224,39,20)" fg:x="143691" fg:w="72"/><text x="27.3257%" y="751.50"></text></g><g><title>__x64_sys_exit (105 samples, 0.02%)</title><rect x="27.0742%" y="789" width="0.0198%" height="15" fill="rgb(225,152,53)" fg:x="143683" fg:w="105"/><text x="27.3242%" y="799.50"></text></g><g><title>do_exit (105 samples, 0.02%)</title><rect x="27.0742%" y="773" width="0.0198%" height="15" fill="rgb(252,17,24)" fg:x="143683" fg:w="105"/><text x="27.3242%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (282 samples, 0.05%)</title><rect x="27.0482%" y="821" width="0.0531%" height="15" fill="rgb(250,114,30)" fg:x="143545" fg:w="282"/><text x="27.2982%" y="831.50"></text></g><g><title>do_syscall_64 (281 samples, 0.05%)</title><rect x="27.0484%" y="805" width="0.0529%" height="15" fill="rgb(229,5,4)" fg:x="143546" fg:w="281"/><text x="27.2984%" y="815.50"></text></g><g><title>linux-sandbox (2,926 samples, 0.55%)</title><rect x="26.5510%" y="837" width="0.5513%" height="15" fill="rgb(225,176,49)" fg:x="140906" fg:w="2926"/><text x="26.8010%" y="847.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (72 samples, 0.01%)</title><rect x="27.1057%" y="773" width="0.0136%" height="15" fill="rgb(224,221,49)" fg:x="143850" fg:w="72"/><text x="27.3557%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (72 samples, 0.01%)</title><rect x="27.1057%" y="757" width="0.0136%" height="15" fill="rgb(253,169,27)" fg:x="143850" fg:w="72"/><text x="27.3557%" y="767.50"></text></g><g><title>__libc_start_main (101 samples, 0.02%)</title><rect x="27.1050%" y="805" width="0.0190%" height="15" fill="rgb(211,206,16)" fg:x="143846" fg:w="101"/><text x="27.3550%" y="815.50"></text></g><g><title>main (97 samples, 0.02%)</title><rect x="27.1057%" y="789" width="0.0183%" height="15" fill="rgb(244,87,35)" fg:x="143850" fg:w="97"/><text x="27.3557%" y="799.50"></text></g><g><title>_start (155 samples, 0.03%)</title><rect x="27.1050%" y="821" width="0.0292%" height="15" fill="rgb(246,28,10)" fg:x="143846" fg:w="155"/><text x="27.3550%" y="831.50"></text></g><g><title>_dl_start (54 samples, 0.01%)</title><rect x="27.1240%" y="805" width="0.0102%" height="15" fill="rgb(229,12,44)" fg:x="143947" fg:w="54"/><text x="27.3740%" y="815.50"></text></g><g><title>process-wrapper (193 samples, 0.04%)</title><rect x="27.1034%" y="837" width="0.0364%" height="15" fill="rgb(210,145,37)" fg:x="143838" fg:w="193"/><text x="27.3534%" y="847.50"></text></g><g><title>do_wait (73 samples, 0.01%)</title><rect x="27.1539%" y="725" width="0.0138%" height="15" fill="rgb(227,112,52)" fg:x="144106" fg:w="73"/><text x="27.4039%" y="735.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="27.1536%" y="757" width="0.0143%" height="15" fill="rgb(238,155,34)" fg:x="144104" fg:w="76"/><text x="27.4036%" y="767.50"></text></g><g><title>kernel_wait4 (76 samples, 0.01%)</title><rect x="27.1536%" y="741" width="0.0143%" height="15" fill="rgb(239,226,36)" fg:x="144104" fg:w="76"/><text x="27.4036%" y="751.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (78 samples, 0.01%)</title><rect x="27.1534%" y="805" width="0.0147%" height="15" fill="rgb(230,16,23)" fg:x="144103" fg:w="78"/><text x="27.4034%" y="815.50"></text></g><g><title>__GI___wait4 (77 samples, 0.01%)</title><rect x="27.1536%" y="789" width="0.0145%" height="15" fill="rgb(236,171,36)" fg:x="144104" fg:w="77"/><text x="27.4036%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.01%)</title><rect x="27.1536%" y="773" width="0.0145%" height="15" fill="rgb(221,22,14)" fg:x="144104" fg:w="77"/><text x="27.4036%" y="783.50"></text></g><g><title>[perf-925888.map] (156 samples, 0.03%)</title><rect x="27.1409%" y="821" width="0.0294%" height="15" fill="rgb(242,43,11)" fg:x="144037" fg:w="156"/><text x="27.3909%" y="831.50"></text></g><g><title>process_reaper (167 samples, 0.03%)</title><rect x="27.1398%" y="837" width="0.0315%" height="15" fill="rgb(232,69,23)" fg:x="144031" fg:w="167"/><text x="27.3898%" y="847.50"></text></g><g><title>__pthread_cond_wait (56 samples, 0.01%)</title><rect x="27.2404%" y="773" width="0.0106%" height="15" fill="rgb(216,180,54)" fg:x="144565" fg:w="56"/><text x="27.4904%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.01%)</title><rect x="27.2404%" y="757" width="0.0106%" height="15" fill="rgb(216,5,24)" fg:x="144565" fg:w="56"/><text x="27.4904%" y="767.50"></text></g><g><title>Parker::park (77 samples, 0.01%)</title><rect x="27.2386%" y="789" width="0.0145%" height="15" fill="rgb(225,89,9)" fg:x="144555" fg:w="77"/><text x="27.4886%" y="799.50"></text></g><g><title>Unsafe_Park (83 samples, 0.02%)</title><rect x="27.2380%" y="805" width="0.0156%" height="15" fill="rgb(243,75,33)" fg:x="144552" fg:w="83"/><text x="27.4880%" y="815.50"></text></g><g><title>[perf-925888.map] (425 samples, 0.08%)</title><rect x="27.1737%" y="821" width="0.0801%" height="15" fill="rgb(247,141,45)" fg:x="144211" fg:w="425"/><text x="27.4237%" y="831.50"></text></g><g><title>profile-writer- (455 samples, 0.09%)</title><rect x="27.1713%" y="837" width="0.0857%" height="15" fill="rgb(232,177,36)" fg:x="144198" fg:w="455"/><text x="27.4213%" y="847.50"></text></g><g><title>[python3.9] (66 samples, 0.01%)</title><rect x="27.2708%" y="805" width="0.0124%" height="15" fill="rgb(219,125,36)" fg:x="144726" fg:w="66"/><text x="27.5208%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (74 samples, 0.01%)</title><rect x="27.2936%" y="789" width="0.0139%" height="15" fill="rgb(227,94,9)" fg:x="144847" fg:w="74"/><text x="27.5436%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (55 samples, 0.01%)</title><rect x="27.2972%" y="773" width="0.0104%" height="15" fill="rgb(240,34,52)" fg:x="144866" fg:w="55"/><text x="27.5472%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="27.2973%" y="757" width="0.0102%" height="15" fill="rgb(216,45,12)" fg:x="144867" fg:w="54"/><text x="27.5473%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (120 samples, 0.02%)</title><rect x="27.2851%" y="805" width="0.0226%" height="15" fill="rgb(246,21,19)" fg:x="144802" fg:w="120"/><text x="27.5351%" y="815.50"></text></g><g><title>[unknown] (319 samples, 0.06%)</title><rect x="27.2634%" y="821" width="0.0601%" height="15" fill="rgb(213,98,42)" fg:x="144687" fg:w="319"/><text x="27.5134%" y="831.50"></text></g><g><title>Py_RunMain (81 samples, 0.02%)</title><rect x="27.3237%" y="773" width="0.0153%" height="15" fill="rgb(250,136,47)" fg:x="145007" fg:w="81"/><text x="27.5737%" y="783.50"></text></g><g><title>Py_FinalizeEx (56 samples, 0.01%)</title><rect x="27.3284%" y="757" width="0.0106%" height="15" fill="rgb(251,124,27)" fg:x="145032" fg:w="56"/><text x="27.5784%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (89 samples, 0.02%)</title><rect x="27.3390%" y="741" width="0.0168%" height="15" fill="rgb(229,180,14)" fg:x="145088" fg:w="89"/><text x="27.5890%" y="751.50"></text></g><g><title>[python3.9] (89 samples, 0.02%)</title><rect x="27.3390%" y="725" width="0.0168%" height="15" fill="rgb(245,216,25)" fg:x="145088" fg:w="89"/><text x="27.5890%" y="735.50"></text></g><g><title>[python3.9] (88 samples, 0.02%)</title><rect x="27.3392%" y="709" width="0.0166%" height="15" fill="rgb(251,43,5)" fg:x="145089" fg:w="88"/><text x="27.5892%" y="719.50"></text></g><g><title>Py_BytesMain (172 samples, 0.03%)</title><rect x="27.3237%" y="789" width="0.0324%" height="15" fill="rgb(250,128,24)" fg:x="145007" fg:w="172"/><text x="27.5737%" y="799.50"></text></g><g><title>[python3.9] (91 samples, 0.02%)</title><rect x="27.3390%" y="773" width="0.0171%" height="15" fill="rgb(217,117,27)" fg:x="145088" fg:w="91"/><text x="27.5890%" y="783.50"></text></g><g><title>[python3.9] (91 samples, 0.02%)</title><rect x="27.3390%" y="757" width="0.0171%" height="15" fill="rgb(245,147,4)" fg:x="145088" fg:w="91"/><text x="27.5890%" y="767.50"></text></g><g><title>__libc_start_main (173 samples, 0.03%)</title><rect x="27.3237%" y="805" width="0.0326%" height="15" fill="rgb(242,201,35)" fg:x="145007" fg:w="173"/><text x="27.5737%" y="815.50"></text></g><g><title>_start (182 samples, 0.03%)</title><rect x="27.3237%" y="821" width="0.0343%" height="15" fill="rgb(218,181,1)" fg:x="145007" fg:w="182"/><text x="27.5737%" y="831.50"></text></g><g><title>python3 (549 samples, 0.10%)</title><rect x="27.2572%" y="837" width="0.1034%" height="15" fill="rgb(222,6,29)" fg:x="144654" fg:w="549"/><text x="27.5072%" y="847.50"></text></g><g><title>[[stack]] (66 samples, 0.01%)</title><rect x="27.3612%" y="821" width="0.0124%" height="15" fill="rgb(208,186,3)" fg:x="145206" fg:w="66"/><text x="27.6112%" y="831.50"></text></g><g><title>[sed] (92 samples, 0.02%)</title><rect x="27.3878%" y="709" width="0.0173%" height="15" fill="rgb(216,36,26)" fg:x="145347" fg:w="92"/><text x="27.6378%" y="719.50"></text></g><g><title>[sed] (156 samples, 0.03%)</title><rect x="27.3876%" y="725" width="0.0294%" height="15" fill="rgb(248,201,23)" fg:x="145346" fg:w="156"/><text x="27.6376%" y="735.50"></text></g><g><title>[sed] (175 samples, 0.03%)</title><rect x="27.3850%" y="741" width="0.0330%" height="15" fill="rgb(251,170,31)" fg:x="145332" fg:w="175"/><text x="27.6350%" y="751.50"></text></g><g><title>[sed] (242 samples, 0.05%)</title><rect x="27.3831%" y="757" width="0.0456%" height="15" fill="rgb(207,110,25)" fg:x="145322" fg:w="242"/><text x="27.6331%" y="767.50"></text></g><g><title>[sed] (260 samples, 0.05%)</title><rect x="27.3821%" y="773" width="0.0490%" height="15" fill="rgb(250,54,15)" fg:x="145317" fg:w="260"/><text x="27.6321%" y="783.50"></text></g><g><title>[sed] (297 samples, 0.06%)</title><rect x="27.3819%" y="789" width="0.0560%" height="15" fill="rgb(227,68,33)" fg:x="145316" fg:w="297"/><text x="27.6319%" y="799.50"></text></g><g><title>__libc_start_main (338 samples, 0.06%)</title><rect x="27.3819%" y="805" width="0.0637%" height="15" fill="rgb(238,34,41)" fg:x="145316" fg:w="338"/><text x="27.6319%" y="815.50"></text></g><g><title>[sed] (342 samples, 0.06%)</title><rect x="27.3816%" y="821" width="0.0644%" height="15" fill="rgb(220,11,15)" fg:x="145314" fg:w="342"/><text x="27.6316%" y="831.50"></text></g><g><title>__GI__dl_addr (75 samples, 0.01%)</title><rect x="27.4703%" y="661" width="0.0141%" height="15" fill="rgb(246,111,35)" fg:x="145785" fg:w="75"/><text x="27.7203%" y="671.50"></text></g><g><title>determine_info (69 samples, 0.01%)</title><rect x="27.4715%" y="645" width="0.0130%" height="15" fill="rgb(209,88,53)" fg:x="145791" fg:w="69"/><text x="27.7215%" y="655.50"></text></g><g><title>__fopen_internal (95 samples, 0.02%)</title><rect x="27.4671%" y="725" width="0.0179%" height="15" fill="rgb(231,185,47)" fg:x="145768" fg:w="95"/><text x="27.7171%" y="735.50"></text></g><g><title>malloc_hook_ini (80 samples, 0.02%)</title><rect x="27.4699%" y="709" width="0.0151%" height="15" fill="rgb(233,154,1)" fg:x="145783" fg:w="80"/><text x="27.7199%" y="719.50"></text></g><g><title>ptmalloc_init (80 samples, 0.02%)</title><rect x="27.4699%" y="693" width="0.0151%" height="15" fill="rgb(225,15,46)" fg:x="145783" fg:w="80"/><text x="27.7199%" y="703.50"></text></g><g><title>ptmalloc_init (80 samples, 0.02%)</title><rect x="27.4699%" y="677" width="0.0151%" height="15" fill="rgb(211,135,41)" fg:x="145783" fg:w="80"/><text x="27.7199%" y="687.50"></text></g><g><title>selinuxfs_exists (123 samples, 0.02%)</title><rect x="27.4624%" y="741" width="0.0232%" height="15" fill="rgb(208,54,0)" fg:x="145743" fg:w="123"/><text x="27.7124%" y="751.50"></text></g><g><title>[libselinux.so.1] (160 samples, 0.03%)</title><rect x="27.4556%" y="757" width="0.0301%" height="15" fill="rgb(244,136,14)" fg:x="145707" fg:w="160"/><text x="27.7056%" y="767.50"></text></g><g><title>_dl_start_user (203 samples, 0.04%)</title><rect x="27.4551%" y="821" width="0.0383%" height="15" fill="rgb(241,56,14)" fg:x="145704" fg:w="203"/><text x="27.7051%" y="831.50"></text></g><g><title>_dl_init (203 samples, 0.04%)</title><rect x="27.4551%" y="805" width="0.0383%" height="15" fill="rgb(205,80,24)" fg:x="145704" fg:w="203"/><text x="27.7051%" y="815.50"></text></g><g><title>call_init (202 samples, 0.04%)</title><rect x="27.4552%" y="789" width="0.0381%" height="15" fill="rgb(220,57,4)" fg:x="145705" fg:w="202"/><text x="27.7052%" y="799.50"></text></g><g><title>call_init (201 samples, 0.04%)</title><rect x="27.4554%" y="773" width="0.0379%" height="15" fill="rgb(226,193,50)" fg:x="145706" fg:w="201"/><text x="27.7054%" y="783.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="27.5318%" y="581" width="0.0111%" height="15" fill="rgb(231,168,22)" fg:x="146111" fg:w="59"/><text x="27.7818%" y="591.50"></text></g><g><title>exc_page_fault (64 samples, 0.01%)</title><rect x="27.5314%" y="613" width="0.0121%" height="15" fill="rgb(254,215,14)" fg:x="146109" fg:w="64"/><text x="27.7814%" y="623.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.01%)</title><rect x="27.5314%" y="597" width="0.0121%" height="15" fill="rgb(211,115,16)" fg:x="146109" fg:w="64"/><text x="27.7814%" y="607.50"></text></g><g><title>asm_exc_page_fault (66 samples, 0.01%)</title><rect x="27.5312%" y="629" width="0.0124%" height="15" fill="rgb(236,210,16)" fg:x="146108" fg:w="66"/><text x="27.7812%" y="639.50"></text></g><g><title>[ld-2.31.so] (79 samples, 0.01%)</title><rect x="27.5299%" y="645" width="0.0149%" height="15" fill="rgb(221,94,12)" fg:x="146101" fg:w="79"/><text x="27.7799%" y="655.50"></text></g><g><title>__vma_adjust (124 samples, 0.02%)</title><rect x="27.5549%" y="485" width="0.0234%" height="15" fill="rgb(235,218,49)" fg:x="146234" fg:w="124"/><text x="27.8049%" y="495.50"></text></g><g><title>__split_vma (191 samples, 0.04%)</title><rect x="27.5538%" y="501" width="0.0360%" height="15" fill="rgb(217,114,14)" fg:x="146228" fg:w="191"/><text x="27.8038%" y="511.50"></text></g><g><title>vm_area_dup (59 samples, 0.01%)</title><rect x="27.5787%" y="485" width="0.0111%" height="15" fill="rgb(216,145,22)" fg:x="146360" fg:w="59"/><text x="27.8287%" y="495.50"></text></g><g><title>unmap_region (58 samples, 0.01%)</title><rect x="27.5975%" y="501" width="0.0109%" height="15" fill="rgb(217,112,39)" fg:x="146460" fg:w="58"/><text x="27.8475%" y="511.50"></text></g><g><title>__do_munmap (301 samples, 0.06%)</title><rect x="27.5521%" y="517" width="0.0567%" height="15" fill="rgb(225,85,32)" fg:x="146219" fg:w="301"/><text x="27.8021%" y="527.50"></text></g><g><title>perf_iterate_sb (63 samples, 0.01%)</title><rect x="27.6213%" y="501" width="0.0119%" height="15" fill="rgb(245,209,47)" fg:x="146586" fg:w="63"/><text x="27.8713%" y="511.50"></text></g><g><title>perf_iterate_ctx (58 samples, 0.01%)</title><rect x="27.6222%" y="485" width="0.0109%" height="15" fill="rgb(218,220,15)" fg:x="146591" fg:w="58"/><text x="27.8722%" y="495.50"></text></g><g><title>perf_event_mmap (132 samples, 0.02%)</title><rect x="27.6099%" y="517" width="0.0249%" height="15" fill="rgb(222,202,31)" fg:x="146526" fg:w="132"/><text x="27.8599%" y="527.50"></text></g><g><title>vma_link (57 samples, 0.01%)</title><rect x="27.6407%" y="517" width="0.0107%" height="15" fill="rgb(243,203,4)" fg:x="146689" fg:w="57"/><text x="27.8907%" y="527.50"></text></g><g><title>mmap_region (578 samples, 0.11%)</title><rect x="27.5487%" y="533" width="0.1089%" height="15" fill="rgb(237,92,17)" fg:x="146201" fg:w="578"/><text x="27.7987%" y="543.50"></text></g><g><title>do_mmap (588 samples, 0.11%)</title><rect x="27.5470%" y="549" width="0.1108%" height="15" fill="rgb(231,119,7)" fg:x="146192" fg:w="588"/><text x="27.7970%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (606 samples, 0.11%)</title><rect x="27.5461%" y="581" width="0.1142%" height="15" fill="rgb(237,82,41)" fg:x="146187" fg:w="606"/><text x="27.7961%" y="591.50"></text></g><g><title>vm_mmap_pgoff (603 samples, 0.11%)</title><rect x="27.5466%" y="565" width="0.1136%" height="15" fill="rgb(226,81,48)" fg:x="146190" fg:w="603"/><text x="27.7966%" y="575.50"></text></g><g><title>do_syscall_64 (665 samples, 0.13%)</title><rect x="27.5461%" y="597" width="0.1253%" height="15" fill="rgb(234,70,51)" fg:x="146187" fg:w="665"/><text x="27.7961%" y="607.50"></text></g><g><title>vm_mmap_pgoff (58 samples, 0.01%)</title><rect x="27.6604%" y="581" width="0.0109%" height="15" fill="rgb(251,86,4)" fg:x="146794" fg:w="58"/><text x="27.9104%" y="591.50"></text></g><g><title>do_mmap (58 samples, 0.01%)</title><rect x="27.6604%" y="565" width="0.0109%" height="15" fill="rgb(244,144,28)" fg:x="146794" fg:w="58"/><text x="27.9104%" y="575.50"></text></g><g><title>mmap_region (58 samples, 0.01%)</title><rect x="27.6604%" y="549" width="0.0109%" height="15" fill="rgb(232,161,39)" fg:x="146794" fg:w="58"/><text x="27.9104%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (667 samples, 0.13%)</title><rect x="27.5461%" y="613" width="0.1257%" height="15" fill="rgb(247,34,51)" fg:x="146187" fg:w="667"/><text x="27.7961%" y="623.50"></text></g><g><title>_dl_map_segments (759 samples, 0.14%)</title><rect x="27.5291%" y="661" width="0.1430%" height="15" fill="rgb(225,132,2)" fg:x="146097" fg:w="759"/><text x="27.7791%" y="671.50"></text></g><g><title>__mmap64 (676 samples, 0.13%)</title><rect x="27.5448%" y="645" width="0.1274%" height="15" fill="rgb(209,159,44)" fg:x="146180" fg:w="676"/><text x="27.7948%" y="655.50"></text></g><g><title>__mmap64 (676 samples, 0.13%)</title><rect x="27.5448%" y="629" width="0.1274%" height="15" fill="rgb(251,214,1)" fg:x="146180" fg:w="676"/><text x="27.7948%" y="639.50"></text></g><g><title>handle_mm_fault (74 samples, 0.01%)</title><rect x="27.6912%" y="597" width="0.0139%" height="15" fill="rgb(247,84,47)" fg:x="146957" fg:w="74"/><text x="27.9412%" y="607.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="27.6898%" y="629" width="0.0160%" height="15" fill="rgb(240,111,43)" fg:x="146950" fg:w="85"/><text x="27.9398%" y="639.50"></text></g><g><title>do_user_addr_fault (85 samples, 0.02%)</title><rect x="27.6898%" y="613" width="0.0160%" height="15" fill="rgb(215,214,35)" fg:x="146950" fg:w="85"/><text x="27.9398%" y="623.50"></text></g><g><title>asm_exc_page_fault (86 samples, 0.02%)</title><rect x="27.6898%" y="645" width="0.0162%" height="15" fill="rgb(248,207,23)" fg:x="146950" fg:w="86"/><text x="27.9398%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (989 samples, 0.19%)</title><rect x="27.5220%" y="677" width="0.1864%" height="15" fill="rgb(214,186,4)" fg:x="146059" fg:w="989"/><text x="27.7720%" y="687.50"></text></g><g><title>elf_get_dynamic_info (118 samples, 0.02%)</title><rect x="27.6861%" y="661" width="0.0222%" height="15" fill="rgb(220,133,22)" fg:x="146930" fg:w="118"/><text x="27.9361%" y="671.50"></text></g><g><title>do_filp_open (71 samples, 0.01%)</title><rect x="27.7138%" y="565" width="0.0134%" height="15" fill="rgb(239,134,19)" fg:x="147077" fg:w="71"/><text x="27.9638%" y="575.50"></text></g><g><title>path_openat (68 samples, 0.01%)</title><rect x="27.7143%" y="549" width="0.0128%" height="15" fill="rgb(250,140,9)" fg:x="147080" fg:w="68"/><text x="27.9643%" y="559.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="27.7128%" y="613" width="0.0168%" height="15" fill="rgb(225,59,14)" fg:x="147072" fg:w="89"/><text x="27.9628%" y="623.50"></text></g><g><title>__x64_sys_openat (89 samples, 0.02%)</title><rect x="27.7128%" y="597" width="0.0168%" height="15" fill="rgb(214,152,51)" fg:x="147072" fg:w="89"/><text x="27.9628%" y="607.50"></text></g><g><title>do_sys_openat2 (89 samples, 0.02%)</title><rect x="27.7128%" y="581" width="0.0168%" height="15" fill="rgb(251,227,43)" fg:x="147072" fg:w="89"/><text x="27.9628%" y="591.50"></text></g><g><title>__GI___open64_nocancel (96 samples, 0.02%)</title><rect x="27.7121%" y="645" width="0.0181%" height="15" fill="rgb(241,96,17)" fg:x="147068" fg:w="96"/><text x="27.9621%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="27.7128%" y="629" width="0.0173%" height="15" fill="rgb(234,198,43)" fg:x="147072" fg:w="92"/><text x="27.9628%" y="639.50"></text></g><g><title>open_path (136 samples, 0.03%)</title><rect x="27.7089%" y="677" width="0.0256%" height="15" fill="rgb(220,108,29)" fg:x="147051" fg:w="136"/><text x="27.9589%" y="687.50"></text></g><g><title>open_verify (122 samples, 0.02%)</title><rect x="27.7115%" y="661" width="0.0230%" height="15" fill="rgb(226,163,33)" fg:x="147065" fg:w="122"/><text x="27.9615%" y="671.50"></text></g><g><title>_dl_catch_exception (1,162 samples, 0.22%)</title><rect x="27.5178%" y="725" width="0.2190%" height="15" fill="rgb(205,194,45)" fg:x="146037" fg:w="1162"/><text x="27.7678%" y="735.50"></text></g><g><title>openaux (1,160 samples, 0.22%)</title><rect x="27.5182%" y="709" width="0.2186%" height="15" fill="rgb(206,143,44)" fg:x="146039" fg:w="1160"/><text x="27.7682%" y="719.50"></text></g><g><title>_dl_map_object (1,159 samples, 0.22%)</title><rect x="27.5184%" y="693" width="0.2184%" height="15" fill="rgb(236,136,36)" fg:x="146040" fg:w="1159"/><text x="27.7684%" y="703.50"></text></g><g><title>_dl_map_object_deps (1,192 samples, 0.22%)</title><rect x="27.5154%" y="741" width="0.2246%" height="15" fill="rgb(249,172,42)" fg:x="146024" fg:w="1192"/><text x="27.7654%" y="751.50"></text></g><g><title>__split_vma (64 samples, 0.01%)</title><rect x="27.7509%" y="613" width="0.0121%" height="15" fill="rgb(216,139,23)" fg:x="147274" fg:w="64"/><text x="28.0009%" y="623.50"></text></g><g><title>mprotect_fixup (130 samples, 0.02%)</title><rect x="27.7503%" y="629" width="0.0245%" height="15" fill="rgb(207,166,20)" fg:x="147271" fg:w="130"/><text x="28.0003%" y="639.50"></text></g><g><title>_dl_protect_relro (154 samples, 0.03%)</title><rect x="27.7469%" y="725" width="0.0290%" height="15" fill="rgb(210,209,22)" fg:x="147253" fg:w="154"/><text x="27.9969%" y="735.50"></text></g><g><title>__mprotect (153 samples, 0.03%)</title><rect x="27.7471%" y="709" width="0.0288%" height="15" fill="rgb(232,118,20)" fg:x="147254" fg:w="153"/><text x="27.9971%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.03%)</title><rect x="27.7479%" y="693" width="0.0281%" height="15" fill="rgb(238,113,42)" fg:x="147258" fg:w="149"/><text x="27.9979%" y="703.50"></text></g><g><title>do_syscall_64 (149 samples, 0.03%)</title><rect x="27.7479%" y="677" width="0.0281%" height="15" fill="rgb(231,42,5)" fg:x="147258" fg:w="149"/><text x="27.9979%" y="687.50"></text></g><g><title>__x64_sys_mprotect (148 samples, 0.03%)</title><rect x="27.7481%" y="661" width="0.0279%" height="15" fill="rgb(243,166,24)" fg:x="147259" fg:w="148"/><text x="27.9981%" y="671.50"></text></g><g><title>do_mprotect_pkey (148 samples, 0.03%)</title><rect x="27.7481%" y="645" width="0.0279%" height="15" fill="rgb(237,226,12)" fg:x="147259" fg:w="148"/><text x="27.9981%" y="655.50"></text></g><g><title>elf_machine_lazy_rel (67 samples, 0.01%)</title><rect x="27.7829%" y="709" width="0.0126%" height="15" fill="rgb(229,133,24)" fg:x="147444" fg:w="67"/><text x="28.0329%" y="719.50"></text></g><g><title>dl_new_hash (83 samples, 0.02%)</title><rect x="27.8182%" y="677" width="0.0156%" height="15" fill="rgb(238,33,43)" fg:x="147631" fg:w="83"/><text x="28.0682%" y="687.50"></text></g><g><title>check_match (123 samples, 0.02%)</title><rect x="27.8937%" y="661" width="0.0232%" height="15" fill="rgb(227,59,38)" fg:x="148032" fg:w="123"/><text x="28.1437%" y="671.50"></text></g><g><title>strcmp (90 samples, 0.02%)</title><rect x="27.8999%" y="645" width="0.0170%" height="15" fill="rgb(230,97,0)" fg:x="148065" fg:w="90"/><text x="28.1499%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (585 samples, 0.11%)</title><rect x="27.8084%" y="693" width="0.1102%" height="15" fill="rgb(250,173,50)" fg:x="147579" fg:w="585"/><text x="28.0584%" y="703.50"></text></g><g><title>do_lookup_x (450 samples, 0.08%)</title><rect x="27.8338%" y="677" width="0.0848%" height="15" fill="rgb(240,15,50)" fg:x="147714" fg:w="450"/><text x="28.0838%" y="687.50"></text></g><g><title>elf_machine_rela (661 samples, 0.12%)</title><rect x="27.7956%" y="709" width="0.1246%" height="15" fill="rgb(221,93,22)" fg:x="147511" fg:w="661"/><text x="28.0456%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (794 samples, 0.15%)</title><rect x="27.7760%" y="725" width="0.1496%" height="15" fill="rgb(245,180,53)" fg:x="147407" fg:w="794"/><text x="28.0260%" y="735.50"></text></g><g><title>_dl_relocate_object (972 samples, 0.18%)</title><rect x="27.7451%" y="741" width="0.1832%" height="15" fill="rgb(231,88,51)" fg:x="147243" fg:w="972"/><text x="27.9951%" y="751.50"></text></g><g><title>[ld-2.31.so] (2,319 samples, 0.44%)</title><rect x="27.5033%" y="757" width="0.4370%" height="15" fill="rgb(240,58,21)" fg:x="145960" fg:w="2319"/><text x="27.7533%" y="767.50"></text></g><g><title>_dl_start_final (2,380 samples, 0.45%)</title><rect x="27.5024%" y="789" width="0.4485%" height="15" fill="rgb(237,21,10)" fg:x="145955" fg:w="2380"/><text x="27.7524%" y="799.50"></text></g><g><title>_dl_sysdep_start (2,379 samples, 0.45%)</title><rect x="27.5025%" y="773" width="0.4483%" height="15" fill="rgb(218,43,11)" fg:x="145956" fg:w="2379"/><text x="27.7525%" y="783.50"></text></g><g><title>_dl_start (2,410 samples, 0.45%)</title><rect x="27.5020%" y="805" width="0.4541%" height="15" fill="rgb(218,221,29)" fg:x="145953" fg:w="2410"/><text x="27.7520%" y="815.50"></text></g><g><title>_start (2,454 samples, 0.46%)</title><rect x="27.5014%" y="821" width="0.4624%" height="15" fill="rgb(214,118,42)" fg:x="145950" fg:w="2454"/><text x="27.7514%" y="831.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.03%)</title><rect x="27.9638%" y="821" width="0.0311%" height="15" fill="rgb(251,200,26)" fg:x="148404" fg:w="165"/><text x="28.2138%" y="831.50"></text></g><g><title>setup_arg_pages (82 samples, 0.02%)</title><rect x="28.0254%" y="725" width="0.0155%" height="15" fill="rgb(237,101,39)" fg:x="148731" fg:w="82"/><text x="28.2754%" y="735.50"></text></g><g><title>__x64_sys_execve (309 samples, 0.06%)</title><rect x="27.9953%" y="789" width="0.0582%" height="15" fill="rgb(251,117,11)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="799.50"></text></g><g><title>do_execveat_common (309 samples, 0.06%)</title><rect x="27.9953%" y="773" width="0.0582%" height="15" fill="rgb(216,223,23)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="783.50"></text></g><g><title>bprm_execve (309 samples, 0.06%)</title><rect x="27.9953%" y="757" width="0.0582%" height="15" fill="rgb(251,54,12)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="767.50"></text></g><g><title>load_elf_binary (309 samples, 0.06%)</title><rect x="27.9953%" y="741" width="0.0582%" height="15" fill="rgb(254,176,54)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="751.50"></text></g><g><title>unmap_page_range (130 samples, 0.02%)</title><rect x="28.0675%" y="693" width="0.0245%" height="15" fill="rgb(210,32,8)" fg:x="148954" fg:w="130"/><text x="28.3175%" y="703.50"></text></g><g><title>mmput (203 samples, 0.04%)</title><rect x="28.0539%" y="741" width="0.0383%" height="15" fill="rgb(235,52,38)" fg:x="148882" fg:w="203"/><text x="28.3039%" y="751.50"></text></g><g><title>exit_mmap (202 samples, 0.04%)</title><rect x="28.0541%" y="725" width="0.0381%" height="15" fill="rgb(231,4,44)" fg:x="148883" fg:w="202"/><text x="28.3041%" y="735.50"></text></g><g><title>unmap_vmas (131 samples, 0.02%)</title><rect x="28.0675%" y="709" width="0.0247%" height="15" fill="rgb(249,2,32)" fg:x="148954" fg:w="131"/><text x="28.3175%" y="719.50"></text></g><g><title>__x64_sys_exit_group (209 samples, 0.04%)</title><rect x="28.0535%" y="789" width="0.0394%" height="15" fill="rgb(224,65,26)" fg:x="148880" fg:w="209"/><text x="28.3035%" y="799.50"></text></g><g><title>do_group_exit (209 samples, 0.04%)</title><rect x="28.0535%" y="773" width="0.0394%" height="15" fill="rgb(250,73,40)" fg:x="148880" fg:w="209"/><text x="28.3035%" y="783.50"></text></g><g><title>do_exit (209 samples, 0.04%)</title><rect x="28.0535%" y="757" width="0.0394%" height="15" fill="rgb(253,177,16)" fg:x="148880" fg:w="209"/><text x="28.3035%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (524 samples, 0.10%)</title><rect x="27.9951%" y="821" width="0.0987%" height="15" fill="rgb(217,32,34)" fg:x="148570" fg:w="524"/><text x="28.2451%" y="831.50"></text></g><g><title>do_syscall_64 (523 samples, 0.10%)</title><rect x="27.9953%" y="805" width="0.0985%" height="15" fill="rgb(212,7,10)" fg:x="148571" fg:w="523"/><text x="28.2453%" y="815.50"></text></g><g><title>sed (3,900 samples, 0.73%)</title><rect x="27.3607%" y="837" width="0.7349%" height="15" fill="rgb(245,89,8)" fg:x="145203" fg:w="3900"/><text x="27.6107%" y="847.50"></text></g><g><title>JavaThread::is_Java_thread (78 samples, 0.01%)</title><rect x="28.1901%" y="805" width="0.0147%" height="15" fill="rgb(237,16,53)" fg:x="149605" fg:w="78"/><text x="28.4401%" y="815.50"></text></g><g><title>__GI___xstat (55 samples, 0.01%)</title><rect x="28.2689%" y="805" width="0.0104%" height="15" fill="rgb(250,204,30)" fg:x="150023" fg:w="55"/><text x="28.5189%" y="815.50"></text></g><g><title>_int_free (89 samples, 0.02%)</title><rect x="28.2860%" y="805" width="0.0168%" height="15" fill="rgb(208,77,27)" fg:x="150114" fg:w="89"/><text x="28.5360%" y="815.50"></text></g><g><title>[anon] (1,327 samples, 0.25%)</title><rect x="28.1072%" y="821" width="0.2500%" height="15" fill="rgb(250,204,28)" fg:x="149165" fg:w="1327"/><text x="28.3572%" y="831.50"></text></g><g><title>[libc-2.31.so] (61 samples, 0.01%)</title><rect x="28.8321%" y="805" width="0.0115%" height="15" fill="rgb(244,63,21)" fg:x="153012" fg:w="61"/><text x="29.0821%" y="815.50"></text></g><g><title>__x64_sys_close (87 samples, 0.02%)</title><rect x="28.8489%" y="757" width="0.0164%" height="15" fill="rgb(236,85,44)" fg:x="153101" fg:w="87"/><text x="29.0989%" y="767.50"></text></g><g><title>filp_close (67 samples, 0.01%)</title><rect x="28.8526%" y="741" width="0.0126%" height="15" fill="rgb(215,98,4)" fg:x="153121" fg:w="67"/><text x="29.1026%" y="751.50"></text></g><g><title>do_syscall_64 (91 samples, 0.02%)</title><rect x="28.8485%" y="773" width="0.0171%" height="15" fill="rgb(235,38,11)" fg:x="153099" fg:w="91"/><text x="29.0985%" y="783.50"></text></g><g><title>btrfs_release_file (73 samples, 0.01%)</title><rect x="28.8762%" y="709" width="0.0138%" height="15" fill="rgb(254,186,25)" fg:x="153246" fg:w="73"/><text x="29.1262%" y="719.50"></text></g><g><title>kfree (66 samples, 0.01%)</title><rect x="28.8775%" y="693" width="0.0124%" height="15" fill="rgb(225,55,31)" fg:x="153253" fg:w="66"/><text x="29.1275%" y="703.50"></text></g><g><title>__fput (137 samples, 0.03%)</title><rect x="28.8719%" y="725" width="0.0258%" height="15" fill="rgb(211,15,21)" fg:x="153223" fg:w="137"/><text x="29.1219%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (304 samples, 0.06%)</title><rect x="28.8474%" y="789" width="0.0573%" height="15" fill="rgb(215,187,41)" fg:x="153093" fg:w="304"/><text x="29.0974%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (207 samples, 0.04%)</title><rect x="28.8656%" y="773" width="0.0390%" height="15" fill="rgb(248,69,32)" fg:x="153190" fg:w="207"/><text x="29.1156%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (206 samples, 0.04%)</title><rect x="28.8658%" y="757" width="0.0388%" height="15" fill="rgb(252,102,52)" fg:x="153191" fg:w="206"/><text x="29.1158%" y="767.50"></text></g><g><title>task_work_run (181 samples, 0.03%)</title><rect x="28.8705%" y="741" width="0.0341%" height="15" fill="rgb(253,140,32)" fg:x="153216" fg:w="181"/><text x="29.1205%" y="751.50"></text></g><g><title>__GI___close_nocancel (327 samples, 0.06%)</title><rect x="28.8436%" y="805" width="0.0616%" height="15" fill="rgb(216,56,42)" fg:x="153073" fg:w="327"/><text x="29.0936%" y="815.50"></text></g><g><title>__GI___libc_free (387 samples, 0.07%)</title><rect x="28.9052%" y="805" width="0.0729%" height="15" fill="rgb(216,184,14)" fg:x="153400" fg:w="387"/><text x="29.1552%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (148 samples, 0.03%)</title><rect x="29.0026%" y="789" width="0.0279%" height="15" fill="rgb(237,187,27)" fg:x="153917" fg:w="148"/><text x="29.2526%" y="799.50"></text></g><g><title>btrfs_dentry_delete (58 samples, 0.01%)</title><rect x="29.1038%" y="709" width="0.0109%" height="15" fill="rgb(219,65,3)" fg:x="154454" fg:w="58"/><text x="29.3538%" y="719.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="29.1393%" y="693" width="0.0198%" height="15" fill="rgb(245,83,25)" fg:x="154642" fg:w="105"/><text x="29.3893%" y="703.50"></text></g><g><title>lockref_put_or_lock (236 samples, 0.04%)</title><rect x="29.1148%" y="709" width="0.0445%" height="15" fill="rgb(214,205,45)" fg:x="154512" fg:w="236"/><text x="29.3648%" y="719.50"></text></g><g><title>dput (498 samples, 0.09%)</title><rect x="29.0665%" y="725" width="0.0938%" height="15" fill="rgb(241,20,18)" fg:x="154256" fg:w="498"/><text x="29.3165%" y="735.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="29.1945%" y="645" width="0.0109%" height="15" fill="rgb(232,163,23)" fg:x="154935" fg:w="58"/><text x="29.4445%" y="655.50"></text></g><g><title>__lookup_hash (192 samples, 0.04%)</title><rect x="29.1705%" y="709" width="0.0362%" height="15" fill="rgb(214,5,46)" fg:x="154808" fg:w="192"/><text x="29.4205%" y="719.50"></text></g><g><title>lookup_dcache (172 samples, 0.03%)</title><rect x="29.1743%" y="693" width="0.0324%" height="15" fill="rgb(229,78,17)" fg:x="154828" fg:w="172"/><text x="29.4243%" y="703.50"></text></g><g><title>d_lookup (168 samples, 0.03%)</title><rect x="29.1751%" y="677" width="0.0317%" height="15" fill="rgb(248,89,10)" fg:x="154832" fg:w="168"/><text x="29.4251%" y="687.50"></text></g><g><title>__d_lookup (153 samples, 0.03%)</title><rect x="29.1779%" y="661" width="0.0288%" height="15" fill="rgb(248,54,15)" fg:x="154847" fg:w="153"/><text x="29.4279%" y="671.50"></text></g><g><title>down_write (74 samples, 0.01%)</title><rect x="29.2067%" y="709" width="0.0139%" height="15" fill="rgb(223,116,6)" fg:x="155000" fg:w="74"/><text x="29.4567%" y="719.50"></text></g><g><title>__legitimize_mnt (99 samples, 0.02%)</title><rect x="29.2474%" y="629" width="0.0187%" height="15" fill="rgb(205,125,38)" fg:x="155216" fg:w="99"/><text x="29.4974%" y="639.50"></text></g><g><title>__legitimize_path (185 samples, 0.03%)</title><rect x="29.2442%" y="645" width="0.0349%" height="15" fill="rgb(251,78,38)" fg:x="155199" fg:w="185"/><text x="29.4942%" y="655.50"></text></g><g><title>lockref_get_not_dead (69 samples, 0.01%)</title><rect x="29.2661%" y="629" width="0.0130%" height="15" fill="rgb(253,78,28)" fg:x="155315" fg:w="69"/><text x="29.5161%" y="639.50"></text></g><g><title>complete_walk (255 samples, 0.05%)</title><rect x="29.2357%" y="677" width="0.0480%" height="15" fill="rgb(209,120,3)" fg:x="155154" fg:w="255"/><text x="29.4857%" y="687.50"></text></g><g><title>try_to_unlazy (231 samples, 0.04%)</title><rect x="29.2402%" y="661" width="0.0435%" height="15" fill="rgb(238,229,9)" fg:x="155178" fg:w="231"/><text x="29.4902%" y="671.50"></text></g><g><title>btrfs_permission (78 samples, 0.01%)</title><rect x="29.6003%" y="645" width="0.0147%" height="15" fill="rgb(253,159,18)" fg:x="157089" fg:w="78"/><text x="29.8503%" y="655.50"></text></g><g><title>inode_permission.part.0 (1,072 samples, 0.20%)</title><rect x="29.4852%" y="661" width="0.2020%" height="15" fill="rgb(244,42,34)" fg:x="156478" fg:w="1072"/><text x="29.7352%" y="671.50"></text></g><g><title>generic_permission (383 samples, 0.07%)</title><rect x="29.6150%" y="645" width="0.0722%" height="15" fill="rgb(224,8,7)" fg:x="157167" fg:w="383"/><text x="29.8650%" y="655.50"></text></g><g><title>security_inode_permission (141 samples, 0.03%)</title><rect x="29.6872%" y="661" width="0.0266%" height="15" fill="rgb(210,201,45)" fg:x="157550" fg:w="141"/><text x="29.9372%" y="671.50"></text></g><g><title>lookup_fast (1,848 samples, 0.35%)</title><rect x="29.7916%" y="645" width="0.3482%" height="15" fill="rgb(252,185,21)" fg:x="158104" fg:w="1848"/><text x="30.0416%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,336 samples, 0.25%)</title><rect x="29.8881%" y="629" width="0.2517%" height="15" fill="rgb(223,131,1)" fg:x="158616" fg:w="1336"/><text x="30.1381%" y="639.50"></text></g><g><title>link_path_walk.part.0 (5,073 samples, 0.96%)</title><rect x="29.2838%" y="677" width="0.9559%" height="15" fill="rgb(245,141,16)" fg:x="155409" fg:w="5073"/><text x="29.5338%" y="687.50"></text></g><g><title>walk_component (2,791 samples, 0.53%)</title><rect x="29.7138%" y="661" width="0.5259%" height="15" fill="rgb(229,55,45)" fg:x="157691" fg:w="2791"/><text x="29.9638%" y="671.50"></text></g><g><title>step_into (530 samples, 0.10%)</title><rect x="30.1398%" y="645" width="0.0999%" height="15" fill="rgb(208,92,15)" fg:x="159952" fg:w="530"/><text x="30.3898%" y="655.50"></text></g><g><title>path_init (105 samples, 0.02%)</title><rect x="30.2397%" y="677" width="0.0198%" height="15" fill="rgb(234,185,47)" fg:x="160482" fg:w="105"/><text x="30.4897%" y="687.50"></text></g><g><title>nd_jump_root (73 samples, 0.01%)</title><rect x="30.2457%" y="661" width="0.0138%" height="15" fill="rgb(253,104,50)" fg:x="160514" fg:w="73"/><text x="30.4957%" y="671.50"></text></g><g><title>filename_parentat (5,537 samples, 1.04%)</title><rect x="29.2207%" y="709" width="1.0433%" height="15" fill="rgb(205,70,7)" fg:x="155074" fg:w="5537"/><text x="29.4707%" y="719.50"></text></g><g><title>path_parentat (5,483 samples, 1.03%)</title><rect x="29.2308%" y="693" width="1.0332%" height="15" fill="rgb(240,178,43)" fg:x="155128" fg:w="5483"/><text x="29.4808%" y="703.50"></text></g><g><title>kmem_cache_free (181 samples, 0.03%)</title><rect x="30.2640%" y="709" width="0.0341%" height="15" fill="rgb(214,112,2)" fg:x="160611" fg:w="181"/><text x="30.5140%" y="719.50"></text></g><g><title>__mnt_want_write (78 samples, 0.01%)</title><rect x="30.3103%" y="693" width="0.0147%" height="15" fill="rgb(206,46,17)" fg:x="160857" fg:w="78"/><text x="30.5603%" y="703.50"></text></g><g><title>mnt_want_write (158 samples, 0.03%)</title><rect x="30.2981%" y="709" width="0.0298%" height="15" fill="rgb(225,220,16)" fg:x="160792" fg:w="158"/><text x="30.5481%" y="719.50"></text></g><g><title>filename_create (6,209 samples, 1.17%)</title><rect x="29.1604%" y="725" width="1.1700%" height="15" fill="rgb(238,65,40)" fg:x="154754" fg:w="6209"/><text x="29.4104%" y="735.50"></text></g><g><title>kmem_cache_free (145 samples, 0.03%)</title><rect x="30.3416%" y="709" width="0.0273%" height="15" fill="rgb(230,151,21)" fg:x="161023" fg:w="145"/><text x="30.5916%" y="719.50"></text></g><g><title>__legitimize_mnt (84 samples, 0.02%)</title><rect x="30.3867%" y="645" width="0.0158%" height="15" fill="rgb(218,58,49)" fg:x="161262" fg:w="84"/><text x="30.6367%" y="655.50"></text></g><g><title>__legitimize_path (161 samples, 0.03%)</title><rect x="30.3844%" y="661" width="0.0303%" height="15" fill="rgb(219,179,14)" fg:x="161250" fg:w="161"/><text x="30.6344%" y="671.50"></text></g><g><title>lockref_get_not_dead (65 samples, 0.01%)</title><rect x="30.4025%" y="645" width="0.0122%" height="15" fill="rgb(223,72,1)" fg:x="161346" fg:w="65"/><text x="30.6525%" y="655.50"></text></g><g><title>complete_walk (206 samples, 0.04%)</title><rect x="30.3786%" y="693" width="0.0388%" height="15" fill="rgb(238,126,10)" fg:x="161219" fg:w="206"/><text x="30.6286%" y="703.50"></text></g><g><title>try_to_unlazy (192 samples, 0.04%)</title><rect x="30.3812%" y="677" width="0.0362%" height="15" fill="rgb(224,206,38)" fg:x="161233" fg:w="192"/><text x="30.6312%" y="687.50"></text></g><g><title>btrfs_permission (93 samples, 0.02%)</title><rect x="30.8385%" y="661" width="0.0175%" height="15" fill="rgb(212,201,54)" fg:x="163660" fg:w="93"/><text x="31.0885%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,376 samples, 0.26%)</title><rect x="30.6915%" y="677" width="0.2593%" height="15" fill="rgb(218,154,48)" fg:x="162880" fg:w="1376"/><text x="30.9415%" y="687.50"></text></g><g><title>generic_permission (503 samples, 0.09%)</title><rect x="30.8560%" y="661" width="0.0948%" height="15" fill="rgb(232,93,24)" fg:x="163753" fg:w="503"/><text x="31.1060%" y="671.50"></text></g><g><title>security_inode_permission (160 samples, 0.03%)</title><rect x="30.9508%" y="677" width="0.0301%" height="15" fill="rgb(245,30,21)" fg:x="164256" fg:w="160"/><text x="31.2008%" y="687.50"></text></g><g><title>lookup_fast (2,763 samples, 0.52%)</title><rect x="31.0756%" y="661" width="0.5206%" height="15" fill="rgb(242,148,29)" fg:x="164918" fg:w="2763"/><text x="31.3256%" y="671.50"></text></g><g><title>__d_lookup_rcu (2,118 samples, 0.40%)</title><rect x="31.1971%" y="645" width="0.3991%" height="15" fill="rgb(244,153,54)" fg:x="165563" fg:w="2118"/><text x="31.4471%" y="655.50"></text></g><g><title>atime_needs_update (56 samples, 0.01%)</title><rect x="31.7464%" y="645" width="0.0106%" height="15" fill="rgb(252,87,22)" fg:x="168478" fg:w="56"/><text x="31.9964%" y="655.50"></text></g><g><title>page_get_link (194 samples, 0.04%)</title><rect x="31.7601%" y="645" width="0.0366%" height="15" fill="rgb(210,51,29)" fg:x="168551" fg:w="194"/><text x="32.0101%" y="655.50"></text></g><g><title>pagecache_get_page (133 samples, 0.03%)</title><rect x="31.7716%" y="629" width="0.0251%" height="15" fill="rgb(242,136,47)" fg:x="168612" fg:w="133"/><text x="32.0216%" y="639.50"></text></g><g><title>find_get_entry (101 samples, 0.02%)</title><rect x="31.7777%" y="613" width="0.0190%" height="15" fill="rgb(238,68,4)" fg:x="168644" fg:w="101"/><text x="32.0277%" y="623.50"></text></g><g><title>link_path_walk.part.0 (7,327 samples, 1.38%)</title><rect x="30.4174%" y="693" width="1.3806%" height="15" fill="rgb(242,161,30)" fg:x="161425" fg:w="7327"/><text x="30.6674%" y="703.50"></text></g><g><title>walk_component (4,336 samples, 0.82%)</title><rect x="30.9810%" y="677" width="0.8170%" height="15" fill="rgb(218,58,44)" fg:x="164416" fg:w="4336"/><text x="31.2310%" y="687.50"></text></g><g><title>step_into (1,023 samples, 0.19%)</title><rect x="31.6052%" y="661" width="0.1928%" height="15" fill="rgb(252,125,32)" fg:x="167729" fg:w="1023"/><text x="31.8552%" y="671.50"></text></g><g><title>path_init (195 samples, 0.04%)</title><rect x="31.7980%" y="693" width="0.0367%" height="15" fill="rgb(219,178,0)" fg:x="168752" fg:w="195"/><text x="32.0480%" y="703.50"></text></g><g><title>nd_jump_root (147 samples, 0.03%)</title><rect x="31.8070%" y="677" width="0.0277%" height="15" fill="rgb(213,152,7)" fg:x="168800" fg:w="147"/><text x="32.0570%" y="687.50"></text></g><g><title>set_root (120 samples, 0.02%)</title><rect x="31.8121%" y="661" width="0.0226%" height="15" fill="rgb(249,109,34)" fg:x="168827" fg:w="120"/><text x="32.0621%" y="671.50"></text></g><g><title>lookup_fast (165 samples, 0.03%)</title><rect x="31.8421%" y="677" width="0.0311%" height="15" fill="rgb(232,96,21)" fg:x="168986" fg:w="165"/><text x="32.0921%" y="687.50"></text></g><g><title>__d_lookup_rcu (132 samples, 0.02%)</title><rect x="31.8483%" y="661" width="0.0249%" height="15" fill="rgb(228,27,39)" fg:x="169019" fg:w="132"/><text x="32.0983%" y="671.50"></text></g><g><title>path_lookupat (8,019 samples, 1.51%)</title><rect x="30.3689%" y="709" width="1.5110%" height="15" fill="rgb(211,182,52)" fg:x="161168" fg:w="8019"/><text x="30.6189%" y="719.50"></text></g><g><title>walk_component (217 samples, 0.04%)</title><rect x="31.8391%" y="693" width="0.0409%" height="15" fill="rgb(234,178,38)" fg:x="168970" fg:w="217"/><text x="32.0891%" y="703.50"></text></g><g><title>filename_lookup (8,236 samples, 1.55%)</title><rect x="30.3303%" y="725" width="1.5519%" height="15" fill="rgb(221,111,3)" fg:x="160963" fg:w="8236"/><text x="30.5803%" y="735.50"></text></g><g><title>getname_flags (58 samples, 0.01%)</title><rect x="31.8822%" y="725" width="0.0109%" height="15" fill="rgb(228,175,21)" fg:x="169199" fg:w="58"/><text x="32.1322%" y="735.50"></text></g><g><title>memset_erms (688 samples, 0.13%)</title><rect x="31.9565%" y="693" width="0.1296%" height="15" fill="rgb(228,174,43)" fg:x="169593" fg:w="688"/><text x="32.2065%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,079 samples, 0.20%)</title><rect x="31.9116%" y="709" width="0.2033%" height="15" fill="rgb(211,191,0)" fg:x="169355" fg:w="1079"/><text x="32.1616%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (153 samples, 0.03%)</title><rect x="32.0861%" y="693" width="0.0288%" height="15" fill="rgb(253,117,3)" fg:x="170281" fg:w="153"/><text x="32.3361%" y="703.50"></text></g><g><title>__check_heap_object (138 samples, 0.03%)</title><rect x="32.2632%" y="677" width="0.0260%" height="15" fill="rgb(241,127,19)" fg:x="171221" fg:w="138"/><text x="32.5132%" y="687.50"></text></g><g><title>__virt_addr_valid (190 samples, 0.04%)</title><rect x="32.2892%" y="677" width="0.0358%" height="15" fill="rgb(218,103,12)" fg:x="171359" fg:w="190"/><text x="32.5392%" y="687.50"></text></g><g><title>getname_flags.part.0 (2,305 samples, 0.43%)</title><rect x="31.8932%" y="725" width="0.4343%" height="15" fill="rgb(236,214,43)" fg:x="169257" fg:w="2305"/><text x="32.1432%" y="735.50"></text></g><g><title>strncpy_from_user (1,128 samples, 0.21%)</title><rect x="32.1149%" y="709" width="0.2125%" height="15" fill="rgb(244,144,19)" fg:x="170434" fg:w="1128"/><text x="32.3649%" y="719.50"></text></g><g><title>__check_object_size (425 samples, 0.08%)</title><rect x="32.2474%" y="693" width="0.0801%" height="15" fill="rgb(246,188,10)" fg:x="171137" fg:w="425"/><text x="32.4974%" y="703.50"></text></g><g><title>inode_permission.part.0 (80 samples, 0.02%)</title><rect x="32.3446%" y="709" width="0.0151%" height="15" fill="rgb(212,193,33)" fg:x="171653" fg:w="80"/><text x="32.5946%" y="719.50"></text></g><g><title>may_linkat (178 samples, 0.03%)</title><rect x="32.3275%" y="725" width="0.0335%" height="15" fill="rgb(241,51,29)" fg:x="171562" fg:w="178"/><text x="32.5775%" y="735.50"></text></g><g><title>mntput_no_expire (58 samples, 0.01%)</title><rect x="32.3708%" y="725" width="0.0109%" height="15" fill="rgb(211,58,19)" fg:x="171792" fg:w="58"/><text x="32.6208%" y="735.50"></text></g><g><title>apparmor_path_link (171 samples, 0.03%)</title><rect x="32.4000%" y="709" width="0.0322%" height="15" fill="rgb(229,111,26)" fg:x="171947" fg:w="171"/><text x="32.6500%" y="719.50"></text></g><g><title>security_path_link (467 samples, 0.09%)</title><rect x="32.3818%" y="725" width="0.0880%" height="15" fill="rgb(213,115,40)" fg:x="171850" fg:w="467"/><text x="32.6318%" y="735.50"></text></g><g><title>tomoyo_path_link (199 samples, 0.04%)</title><rect x="32.4323%" y="709" width="0.0375%" height="15" fill="rgb(209,56,44)" fg:x="172118" fg:w="199"/><text x="32.6823%" y="719.50"></text></g><g><title>tomoyo_path2_perm (187 samples, 0.04%)</title><rect x="32.4345%" y="693" width="0.0352%" height="15" fill="rgb(230,108,32)" fg:x="172130" fg:w="187"/><text x="32.6845%" y="703.50"></text></g><g><title>tomoyo_init_request_info (98 samples, 0.02%)</title><rect x="32.4513%" y="677" width="0.0185%" height="15" fill="rgb(216,165,31)" fg:x="172219" fg:w="98"/><text x="32.7013%" y="687.50"></text></g><g><title>up_write (84 samples, 0.02%)</title><rect x="32.4698%" y="725" width="0.0158%" height="15" fill="rgb(218,122,21)" fg:x="172317" fg:w="84"/><text x="32.7198%" y="735.50"></text></g><g><title>btrfs_create_pending_block_groups (56 samples, 0.01%)</title><rect x="32.6314%" y="677" width="0.0106%" height="15" fill="rgb(223,224,47)" fg:x="173175" fg:w="56"/><text x="32.8814%" y="687.50"></text></g><g><title>btrfs_put_transaction (71 samples, 0.01%)</title><rect x="32.6420%" y="677" width="0.0134%" height="15" fill="rgb(238,102,44)" fg:x="173231" fg:w="71"/><text x="32.8920%" y="687.50"></text></g><g><title>_raw_spin_lock (142 samples, 0.03%)</title><rect x="32.6748%" y="645" width="0.0268%" height="15" fill="rgb(236,46,40)" fg:x="173405" fg:w="142"/><text x="32.9248%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (287 samples, 0.05%)</title><rect x="32.6582%" y="677" width="0.0541%" height="15" fill="rgb(247,202,50)" fg:x="173317" fg:w="287"/><text x="32.9082%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (270 samples, 0.05%)</title><rect x="32.6614%" y="661" width="0.0509%" height="15" fill="rgb(209,99,20)" fg:x="173334" fg:w="270"/><text x="32.9114%" y="671.50"></text></g><g><title>__btrfs_end_transaction (812 samples, 0.15%)</title><rect x="32.5868%" y="693" width="0.1530%" height="15" fill="rgb(252,27,34)" fg:x="172938" fg:w="812"/><text x="32.8368%" y="703.50"></text></g><g><title>kmem_cache_free (146 samples, 0.03%)</title><rect x="32.7123%" y="677" width="0.0275%" height="15" fill="rgb(215,206,23)" fg:x="173604" fg:w="146"/><text x="32.9623%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (222 samples, 0.04%)</title><rect x="32.8543%" y="629" width="0.0418%" height="15" fill="rgb(212,135,36)" fg:x="174358" fg:w="222"/><text x="33.1043%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (580 samples, 0.11%)</title><rect x="32.8151%" y="645" width="0.1093%" height="15" fill="rgb(240,189,1)" fg:x="174150" fg:w="580"/><text x="33.0651%" y="655.50"></text></g><g><title>rb_insert_color (150 samples, 0.03%)</title><rect x="32.8962%" y="629" width="0.0283%" height="15" fill="rgb(242,56,20)" fg:x="174580" fg:w="150"/><text x="33.1462%" y="639.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="32.9527%" y="629" width="0.0102%" height="15" fill="rgb(247,132,33)" fg:x="174880" fg:w="54"/><text x="33.2027%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (259 samples, 0.05%)</title><rect x="32.9244%" y="645" width="0.0488%" height="15" fill="rgb(208,149,11)" fg:x="174730" fg:w="259"/><text x="33.1744%" y="655.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="32.9629%" y="629" width="0.0104%" height="15" fill="rgb(211,33,11)" fg:x="174934" fg:w="55"/><text x="33.2129%" y="639.50"></text></g><g><title>__slab_alloc (122 samples, 0.02%)</title><rect x="33.0077%" y="629" width="0.0230%" height="15" fill="rgb(221,29,38)" fg:x="175172" fg:w="122"/><text x="33.2577%" y="639.50"></text></g><g><title>___slab_alloc (115 samples, 0.02%)</title><rect x="33.0090%" y="613" width="0.0217%" height="15" fill="rgb(206,182,49)" fg:x="175179" fg:w="115"/><text x="33.2590%" y="623.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="33.0379%" y="629" width="0.0104%" height="15" fill="rgb(216,140,1)" fg:x="175332" fg:w="55"/><text x="33.2879%" y="639.50"></text></g><g><title>__kmalloc (436 samples, 0.08%)</title><rect x="32.9732%" y="645" width="0.0822%" height="15" fill="rgb(232,57,40)" fg:x="174989" fg:w="436"/><text x="33.2232%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (297 samples, 0.06%)</title><rect x="33.0554%" y="645" width="0.0560%" height="15" fill="rgb(224,186,18)" fg:x="175425" fg:w="297"/><text x="33.3054%" y="655.50"></text></g><g><title>mutex_spin_on_owner (294 samples, 0.06%)</title><rect x="33.0560%" y="629" width="0.0554%" height="15" fill="rgb(215,121,11)" fg:x="175428" fg:w="294"/><text x="33.3060%" y="639.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (384 samples, 0.07%)</title><rect x="33.1114%" y="645" width="0.0724%" height="15" fill="rgb(245,147,10)" fg:x="175722" fg:w="384"/><text x="33.3614%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (260 samples, 0.05%)</title><rect x="33.1347%" y="629" width="0.0490%" height="15" fill="rgb(238,153,13)" fg:x="175846" fg:w="260"/><text x="33.3847%" y="639.50"></text></g><g><title>_raw_spin_lock (203 samples, 0.04%)</title><rect x="33.1455%" y="613" width="0.0383%" height="15" fill="rgb(233,108,0)" fg:x="175903" fg:w="203"/><text x="33.3955%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (117 samples, 0.02%)</title><rect x="33.1837%" y="645" width="0.0220%" height="15" fill="rgb(212,157,17)" fg:x="176106" fg:w="117"/><text x="33.4337%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (102 samples, 0.02%)</title><rect x="33.1865%" y="629" width="0.0192%" height="15" fill="rgb(225,213,38)" fg:x="176121" fg:w="102"/><text x="33.4365%" y="639.50"></text></g><g><title>mutex_lock (77 samples, 0.01%)</title><rect x="33.2127%" y="645" width="0.0145%" height="15" fill="rgb(248,16,11)" fg:x="176260" fg:w="77"/><text x="33.4627%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,317 samples, 0.44%)</title><rect x="32.8029%" y="661" width="0.4366%" height="15" fill="rgb(241,33,4)" fg:x="174085" fg:w="2317"/><text x="33.0529%" y="671.50"></text></g><g><title>mutex_unlock (65 samples, 0.01%)</title><rect x="33.2272%" y="645" width="0.0122%" height="15" fill="rgb(222,26,43)" fg:x="176337" fg:w="65"/><text x="33.4772%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (159 samples, 0.03%)</title><rect x="33.2395%" y="661" width="0.0300%" height="15" fill="rgb(243,29,36)" fg:x="176402" fg:w="159"/><text x="33.4895%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (101 samples, 0.02%)</title><rect x="33.2504%" y="645" width="0.0190%" height="15" fill="rgb(241,9,27)" fg:x="176460" fg:w="101"/><text x="33.5004%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (223 samples, 0.04%)</title><rect x="33.2823%" y="645" width="0.0420%" height="15" fill="rgb(205,117,26)" fg:x="176629" fg:w="223"/><text x="33.5323%" y="655.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.03%)</title><rect x="33.2923%" y="629" width="0.0320%" height="15" fill="rgb(209,80,39)" fg:x="176682" fg:w="170"/><text x="33.5423%" y="639.50"></text></g><g><title>btrfs_release_path (470 samples, 0.09%)</title><rect x="33.2695%" y="661" width="0.0886%" height="15" fill="rgb(239,155,6)" fg:x="176561" fg:w="470"/><text x="33.5195%" y="671.50"></text></g><g><title>release_extent_buffer (179 samples, 0.03%)</title><rect x="33.3243%" y="645" width="0.0337%" height="15" fill="rgb(212,104,12)" fg:x="176852" fg:w="179"/><text x="33.5743%" y="655.50"></text></g><g><title>btrfs_set_16 (71 samples, 0.01%)</title><rect x="33.3580%" y="661" width="0.0134%" height="15" fill="rgb(234,204,3)" fg:x="177031" fg:w="71"/><text x="33.6080%" y="671.50"></text></g><g><title>crc32c (130 samples, 0.02%)</title><rect x="33.3831%" y="661" width="0.0245%" height="15" fill="rgb(251,218,7)" fg:x="177164" fg:w="130"/><text x="33.6331%" y="671.50"></text></g><g><title>crypto_shash_update (110 samples, 0.02%)</title><rect x="33.3868%" y="645" width="0.0207%" height="15" fill="rgb(221,81,32)" fg:x="177184" fg:w="110"/><text x="33.6368%" y="655.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="33.4155%" y="645" width="0.0158%" height="15" fill="rgb(214,152,26)" fg:x="177336" fg:w="84"/><text x="33.6655%" y="655.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="33.4993%" y="581" width="0.0106%" height="15" fill="rgb(223,22,3)" fg:x="177781" fg:w="56"/><text x="33.7493%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (83 samples, 0.02%)</title><rect x="33.4944%" y="597" width="0.0156%" height="15" fill="rgb(207,174,7)" fg:x="177755" fg:w="83"/><text x="33.7444%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (185 samples, 0.03%)</title><rect x="33.4909%" y="613" width="0.0349%" height="15" fill="rgb(224,19,52)" fg:x="177736" fg:w="185"/><text x="33.7409%" y="623.50"></text></g><g><title>btrfs_root_node (83 samples, 0.02%)</title><rect x="33.5101%" y="597" width="0.0156%" height="15" fill="rgb(228,24,14)" fg:x="177838" fg:w="83"/><text x="33.7601%" y="607.50"></text></g><g><title>__btrfs_tree_lock (137 samples, 0.03%)</title><rect x="33.5257%" y="613" width="0.0258%" height="15" fill="rgb(230,153,43)" fg:x="177921" fg:w="137"/><text x="33.7757%" y="623.50"></text></g><g><title>schedule (104 samples, 0.02%)</title><rect x="33.5319%" y="597" width="0.0196%" height="15" fill="rgb(231,106,12)" fg:x="177954" fg:w="104"/><text x="33.7819%" y="607.50"></text></g><g><title>__schedule (103 samples, 0.02%)</title><rect x="33.5321%" y="581" width="0.0194%" height="15" fill="rgb(215,92,2)" fg:x="177955" fg:w="103"/><text x="33.7821%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (187 samples, 0.04%)</title><rect x="33.5564%" y="613" width="0.0352%" height="15" fill="rgb(249,143,25)" fg:x="178084" fg:w="187"/><text x="33.8064%" y="623.50"></text></g><g><title>leaf_space_used (161 samples, 0.03%)</title><rect x="33.5613%" y="597" width="0.0303%" height="15" fill="rgb(252,7,35)" fg:x="178110" fg:w="161"/><text x="33.8113%" y="607.50"></text></g><g><title>btrfs_get_32 (111 samples, 0.02%)</title><rect x="33.5708%" y="581" width="0.0209%" height="15" fill="rgb(216,69,40)" fg:x="178160" fg:w="111"/><text x="33.8208%" y="591.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="33.6005%" y="597" width="0.0200%" height="15" fill="rgb(240,36,33)" fg:x="178318" fg:w="106"/><text x="33.8505%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (179 samples, 0.03%)</title><rect x="33.5956%" y="613" width="0.0337%" height="15" fill="rgb(231,128,14)" fg:x="178292" fg:w="179"/><text x="33.8456%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (1,078 samples, 0.20%)</title><rect x="33.6294%" y="613" width="0.2031%" height="15" fill="rgb(245,143,14)" fg:x="178471" fg:w="1078"/><text x="33.8794%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (70 samples, 0.01%)</title><rect x="33.8560%" y="597" width="0.0132%" height="15" fill="rgb(222,130,28)" fg:x="179674" fg:w="70"/><text x="34.1060%" y="607.50"></text></g><g><title>btrfs_get_64 (126 samples, 0.02%)</title><rect x="33.8692%" y="597" width="0.0237%" height="15" fill="rgb(212,10,48)" fg:x="179744" fg:w="126"/><text x="34.1192%" y="607.50"></text></g><g><title>__radix_tree_lookup (627 samples, 0.12%)</title><rect x="33.9352%" y="581" width="0.1181%" height="15" fill="rgb(254,118,45)" fg:x="180094" fg:w="627"/><text x="34.1852%" y="591.50"></text></g><g><title>check_buffer_tree_ref (57 samples, 0.01%)</title><rect x="34.0633%" y="565" width="0.0107%" height="15" fill="rgb(228,6,45)" fg:x="180774" fg:w="57"/><text x="34.3133%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (315 samples, 0.06%)</title><rect x="34.0533%" y="581" width="0.0594%" height="15" fill="rgb(241,18,35)" fg:x="180721" fg:w="315"/><text x="34.3033%" y="591.50"></text></g><g><title>mark_page_accessed (205 samples, 0.04%)</title><rect x="34.0741%" y="565" width="0.0386%" height="15" fill="rgb(227,214,53)" fg:x="180831" fg:w="205"/><text x="34.3241%" y="575.50"></text></g><g><title>find_extent_buffer (1,138 samples, 0.21%)</title><rect x="33.8999%" y="597" width="0.2144%" height="15" fill="rgb(224,107,51)" fg:x="179907" fg:w="1138"/><text x="34.1499%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,664 samples, 0.31%)</title><rect x="33.8325%" y="613" width="0.3135%" height="15" fill="rgb(248,60,28)" fg:x="179549" fg:w="1664"/><text x="34.0825%" y="623.50"></text></g><g><title>read_extent_buffer (168 samples, 0.03%)</title><rect x="34.1144%" y="597" width="0.0317%" height="15" fill="rgb(249,101,23)" fg:x="181045" fg:w="168"/><text x="34.3644%" y="607.50"></text></g><g><title>alloc_extent_buffer (60 samples, 0.01%)</title><rect x="34.1500%" y="565" width="0.0113%" height="15" fill="rgb(228,51,19)" fg:x="181234" fg:w="60"/><text x="34.4000%" y="575.50"></text></g><g><title>alloc_tree_block_no_bg_flush (175 samples, 0.03%)</title><rect x="34.1490%" y="597" width="0.0330%" height="15" fill="rgb(213,20,6)" fg:x="181229" fg:w="175"/><text x="34.3990%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (174 samples, 0.03%)</title><rect x="34.1492%" y="581" width="0.0328%" height="15" fill="rgb(212,124,10)" fg:x="181230" fg:w="174"/><text x="34.3992%" y="591.50"></text></g><g><title>copy_for_split (144 samples, 0.03%)</title><rect x="34.1843%" y="597" width="0.0271%" height="15" fill="rgb(248,3,40)" fg:x="181416" fg:w="144"/><text x="34.4343%" y="607.50"></text></g><g><title>btrfs_get_token_32 (131 samples, 0.02%)</title><rect x="34.2257%" y="565" width="0.0247%" height="15" fill="rgb(223,178,23)" fg:x="181636" fg:w="131"/><text x="34.4757%" y="575.50"></text></g><g><title>btrfs_set_token_32 (142 samples, 0.03%)</title><rect x="34.2512%" y="565" width="0.0268%" height="15" fill="rgb(240,132,45)" fg:x="181771" fg:w="142"/><text x="34.5012%" y="575.50"></text></g><g><title>memmove_extent_buffer (55 samples, 0.01%)</title><rect x="34.2872%" y="565" width="0.0104%" height="15" fill="rgb(245,164,36)" fg:x="181962" fg:w="55"/><text x="34.5372%" y="575.50"></text></g><g><title>__push_leaf_left (454 samples, 0.09%)</title><rect x="34.2124%" y="581" width="0.0855%" height="15" fill="rgb(231,188,53)" fg:x="181565" fg:w="454"/><text x="34.4624%" y="591.50"></text></g><g><title>push_leaf_left (502 samples, 0.09%)</title><rect x="34.2114%" y="597" width="0.0946%" height="15" fill="rgb(237,198,39)" fg:x="181560" fg:w="502"/><text x="34.4614%" y="607.50"></text></g><g><title>btrfs_get_token_32 (98 samples, 0.02%)</title><rect x="34.3239%" y="565" width="0.0185%" height="15" fill="rgb(223,120,35)" fg:x="182157" fg:w="98"/><text x="34.5739%" y="575.50"></text></g><g><title>btrfs_set_token_32 (111 samples, 0.02%)</title><rect x="34.3433%" y="565" width="0.0209%" height="15" fill="rgb(253,107,49)" fg:x="182260" fg:w="111"/><text x="34.5933%" y="575.50"></text></g><g><title>__push_leaf_right (387 samples, 0.07%)</title><rect x="34.3086%" y="581" width="0.0729%" height="15" fill="rgb(216,44,31)" fg:x="182076" fg:w="387"/><text x="34.5586%" y="591.50"></text></g><g><title>btrfs_read_node_slot (63 samples, 0.01%)</title><rect x="34.3852%" y="581" width="0.0119%" height="15" fill="rgb(253,87,21)" fg:x="182482" fg:w="63"/><text x="34.6352%" y="591.50"></text></g><g><title>read_tree_block (57 samples, 0.01%)</title><rect x="34.3863%" y="565" width="0.0107%" height="15" fill="rgb(226,18,2)" fg:x="182488" fg:w="57"/><text x="34.6363%" y="575.50"></text></g><g><title>split_leaf (1,344 samples, 0.25%)</title><rect x="34.1460%" y="613" width="0.2533%" height="15" fill="rgb(216,8,46)" fg:x="181213" fg:w="1344"/><text x="34.3960%" y="623.50"></text></g><g><title>push_leaf_right (495 samples, 0.09%)</title><rect x="34.3060%" y="597" width="0.0933%" height="15" fill="rgb(226,140,39)" fg:x="182062" fg:w="495"/><text x="34.5560%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (65 samples, 0.01%)</title><rect x="34.4334%" y="597" width="0.0122%" height="15" fill="rgb(221,194,54)" fg:x="182738" fg:w="65"/><text x="34.6834%" y="607.50"></text></g><g><title>btrfs_search_slot (5,367 samples, 1.01%)</title><rect x="33.4377%" y="629" width="1.0113%" height="15" fill="rgb(213,92,11)" fg:x="177454" fg:w="5367"/><text x="33.6877%" y="639.50"></text></g><g><title>unlock_up (264 samples, 0.05%)</title><rect x="34.3993%" y="613" width="0.0497%" height="15" fill="rgb(229,162,46)" fg:x="182557" fg:w="264"/><text x="34.6493%" y="623.50"></text></g><g><title>btrfs_get_32 (134 samples, 0.03%)</title><rect x="34.6137%" y="613" width="0.0252%" height="15" fill="rgb(214,111,36)" fg:x="183695" fg:w="134"/><text x="34.8637%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,194 samples, 0.60%)</title><rect x="34.6390%" y="613" width="0.6018%" height="15" fill="rgb(207,6,21)" fg:x="183829" fg:w="3194"/><text x="34.8890%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (669 samples, 0.13%)</title><rect x="35.1148%" y="597" width="0.1261%" height="15" fill="rgb(213,127,38)" fg:x="186354" fg:w="669"/><text x="35.3648%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (268 samples, 0.05%)</title><rect x="35.2408%" y="613" width="0.0505%" height="15" fill="rgb(238,118,32)" fg:x="187023" fg:w="268"/><text x="35.4908%" y="623.50"></text></g><g><title>leaf_space_used (228 samples, 0.04%)</title><rect x="35.2484%" y="597" width="0.0430%" height="15" fill="rgb(240,139,39)" fg:x="187063" fg:w="228"/><text x="35.4984%" y="607.50"></text></g><g><title>btrfs_get_32 (171 samples, 0.03%)</title><rect x="35.2591%" y="581" width="0.0322%" height="15" fill="rgb(235,10,37)" fg:x="187120" fg:w="171"/><text x="35.5091%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (128 samples, 0.02%)</title><rect x="35.2913%" y="613" width="0.0241%" height="15" fill="rgb(249,171,38)" fg:x="187291" fg:w="128"/><text x="35.5413%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (95 samples, 0.02%)</title><rect x="35.2975%" y="597" width="0.0179%" height="15" fill="rgb(242,144,32)" fg:x="187324" fg:w="95"/><text x="35.5475%" y="607.50"></text></g><g><title>btrfs_set_token_32 (2,815 samples, 0.53%)</title><rect x="35.3154%" y="613" width="0.5304%" height="15" fill="rgb(217,117,21)" fg:x="187419" fg:w="2815"/><text x="35.5654%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (531 samples, 0.10%)</title><rect x="35.7458%" y="597" width="0.1001%" height="15" fill="rgb(249,87,1)" fg:x="189703" fg:w="531"/><text x="35.9958%" y="607.50"></text></g><g><title>btrfs_unlock_up_safe (60 samples, 0.01%)</title><rect x="35.8459%" y="613" width="0.0113%" height="15" fill="rgb(248,196,48)" fg:x="190234" fg:w="60"/><text x="36.0959%" y="623.50"></text></g><g><title>copy_pages (134 samples, 0.03%)</title><rect x="35.8690%" y="597" width="0.0252%" height="15" fill="rgb(251,206,33)" fg:x="190357" fg:w="134"/><text x="36.1190%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,090 samples, 0.21%)</title><rect x="35.8574%" y="613" width="0.2054%" height="15" fill="rgb(232,141,28)" fg:x="190295" fg:w="1090"/><text x="36.1074%" y="623.50"></text></g><g><title>memmove (894 samples, 0.17%)</title><rect x="35.8943%" y="597" width="0.1685%" height="15" fill="rgb(209,167,14)" fg:x="190491" fg:w="894"/><text x="36.1443%" y="607.50"></text></g><g><title>copy_pages (119 samples, 0.02%)</title><rect x="36.0825%" y="597" width="0.0224%" height="15" fill="rgb(225,11,50)" fg:x="191490" fg:w="119"/><text x="36.3325%" y="607.50"></text></g><g><title>memmove_extent_buffer (903 samples, 0.17%)</title><rect x="36.0627%" y="613" width="0.1702%" height="15" fill="rgb(209,50,20)" fg:x="191385" fg:w="903"/><text x="36.3127%" y="623.50"></text></g><g><title>memmove (679 samples, 0.13%)</title><rect x="36.1050%" y="597" width="0.1279%" height="15" fill="rgb(212,17,46)" fg:x="191609" fg:w="679"/><text x="36.3550%" y="607.50"></text></g><g><title>insert_with_overflow (15,098 samples, 2.84%)</title><rect x="33.4076%" y="661" width="2.8449%" height="15" fill="rgb(216,101,39)" fg:x="177294" fg:w="15098"/><text x="33.6576%" y="671.50">in..</text></g><g><title>btrfs_insert_empty_items (14,972 samples, 2.82%)</title><rect x="33.4313%" y="645" width="2.8212%" height="15" fill="rgb(212,228,48)" fg:x="177420" fg:w="14972"/><text x="33.6813%" y="655.50">bt..</text></g><g><title>setup_items_for_insert (9,571 samples, 1.80%)</title><rect x="34.4490%" y="629" width="1.8035%" height="15" fill="rgb(250,6,50)" fg:x="182821" fg:w="9571"/><text x="34.6990%" y="639.50">s..</text></g><g><title>write_extent_buffer (104 samples, 0.02%)</title><rect x="36.2329%" y="613" width="0.0196%" height="15" fill="rgb(250,160,48)" fg:x="192288" fg:w="104"/><text x="36.4829%" y="623.50"></text></g><g><title>memset_erms (64 samples, 0.01%)</title><rect x="36.2672%" y="645" width="0.0121%" height="15" fill="rgb(244,216,33)" fg:x="192470" fg:w="64"/><text x="36.5172%" y="655.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="36.2525%" y="661" width="0.0318%" height="15" fill="rgb(207,157,5)" fg:x="192392" fg:w="169"/><text x="36.5025%" y="671.50"></text></g><g><title>kmem_cache_free (101 samples, 0.02%)</title><rect x="36.2843%" y="661" width="0.0190%" height="15" fill="rgb(228,199,8)" fg:x="192561" fg:w="101"/><text x="36.5343%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (18,983 samples, 3.58%)</title><rect x="32.7773%" y="677" width="3.5770%" height="15" fill="rgb(227,80,20)" fg:x="173949" fg:w="18983"/><text x="33.0273%" y="687.50">btrf..</text></g><g><title>write_extent_buffer (270 samples, 0.05%)</title><rect x="36.3034%" y="661" width="0.0509%" height="15" fill="rgb(222,9,33)" fg:x="192662" fg:w="270"/><text x="36.5534%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (223 samples, 0.04%)</title><rect x="36.3744%" y="629" width="0.0420%" height="15" fill="rgb(239,44,28)" fg:x="193039" fg:w="223"/><text x="36.6244%" y="639.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.03%)</title><rect x="36.3844%" y="613" width="0.0320%" height="15" fill="rgb(249,187,43)" fg:x="193092" fg:w="170"/><text x="36.6344%" y="623.50"></text></g><g><title>btrfs_free_path (457 samples, 0.09%)</title><rect x="36.3654%" y="661" width="0.0861%" height="15" fill="rgb(216,141,28)" fg:x="192991" fg:w="457"/><text x="36.6154%" y="671.50"></text></g><g><title>btrfs_release_path (450 samples, 0.08%)</title><rect x="36.3667%" y="645" width="0.0848%" height="15" fill="rgb(230,154,53)" fg:x="192998" fg:w="450"/><text x="36.6167%" y="655.50"></text></g><g><title>release_extent_buffer (186 samples, 0.04%)</title><rect x="36.4164%" y="629" width="0.0350%" height="15" fill="rgb(227,82,4)" fg:x="193262" fg:w="186"/><text x="36.6664%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (73 samples, 0.01%)</title><rect x="36.5291%" y="613" width="0.0138%" height="15" fill="rgb(220,107,16)" fg:x="193860" fg:w="73"/><text x="36.7791%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (222 samples, 0.04%)</title><rect x="36.5255%" y="629" width="0.0418%" height="15" fill="rgb(207,187,2)" fg:x="193841" fg:w="222"/><text x="36.7755%" y="639.50"></text></g><g><title>btrfs_root_node (130 samples, 0.02%)</title><rect x="36.5429%" y="613" width="0.0245%" height="15" fill="rgb(210,162,52)" fg:x="193933" fg:w="130"/><text x="36.7929%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (192 samples, 0.04%)</title><rect x="36.5806%" y="629" width="0.0362%" height="15" fill="rgb(217,216,49)" fg:x="194133" fg:w="192"/><text x="36.8306%" y="639.50"></text></g><g><title>leaf_space_used (162 samples, 0.03%)</title><rect x="36.5862%" y="613" width="0.0305%" height="15" fill="rgb(218,146,49)" fg:x="194163" fg:w="162"/><text x="36.8362%" y="623.50"></text></g><g><title>btrfs_get_32 (118 samples, 0.02%)</title><rect x="36.5945%" y="597" width="0.0222%" height="15" fill="rgb(216,55,40)" fg:x="194207" fg:w="118"/><text x="36.8445%" y="607.50"></text></g><g><title>_raw_write_lock (108 samples, 0.02%)</title><rect x="36.6263%" y="613" width="0.0204%" height="15" fill="rgb(208,196,21)" fg:x="194376" fg:w="108"/><text x="36.8763%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (171 samples, 0.03%)</title><rect x="36.6171%" y="629" width="0.0322%" height="15" fill="rgb(242,117,42)" fg:x="194327" fg:w="171"/><text x="36.8671%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,460 samples, 0.28%)</title><rect x="36.6493%" y="629" width="0.2751%" height="15" fill="rgb(210,11,23)" fg:x="194498" fg:w="1460"/><text x="36.8993%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (183 samples, 0.03%)</title><rect x="36.9523%" y="613" width="0.0345%" height="15" fill="rgb(217,110,2)" fg:x="196106" fg:w="183"/><text x="37.2023%" y="623.50"></text></g><g><title>verify_parent_transid (145 samples, 0.03%)</title><rect x="36.9595%" y="597" width="0.0273%" height="15" fill="rgb(229,77,54)" fg:x="196144" fg:w="145"/><text x="37.2095%" y="607.50"></text></g><g><title>btrfs_get_64 (150 samples, 0.03%)</title><rect x="36.9868%" y="613" width="0.0283%" height="15" fill="rgb(218,53,16)" fg:x="196289" fg:w="150"/><text x="37.2368%" y="623.50"></text></g><g><title>__radix_tree_lookup (912 samples, 0.17%)</title><rect x="37.0822%" y="597" width="0.1718%" height="15" fill="rgb(215,38,13)" fg:x="196795" fg:w="912"/><text x="37.3322%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (335 samples, 0.06%)</title><rect x="37.2544%" y="597" width="0.0631%" height="15" fill="rgb(235,42,18)" fg:x="197709" fg:w="335"/><text x="37.5044%" y="607.50"></text></g><g><title>mark_page_accessed (247 samples, 0.05%)</title><rect x="37.2710%" y="581" width="0.0465%" height="15" fill="rgb(219,66,54)" fg:x="197797" fg:w="247"/><text x="37.5210%" y="591.50"></text></g><g><title>find_extent_buffer (1,566 samples, 0.30%)</title><rect x="37.0239%" y="613" width="0.2951%" height="15" fill="rgb(222,205,4)" fg:x="196486" fg:w="1566"/><text x="37.2739%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,276 samples, 0.43%)</title><rect x="36.9244%" y="629" width="0.4289%" height="15" fill="rgb(227,213,46)" fg:x="195958" fg:w="2276"/><text x="37.1744%" y="639.50"></text></g><g><title>read_extent_buffer (182 samples, 0.03%)</title><rect x="37.3190%" y="613" width="0.0343%" height="15" fill="rgb(250,145,42)" fg:x="198052" fg:w="182"/><text x="37.5690%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (70 samples, 0.01%)</title><rect x="37.3914%" y="613" width="0.0132%" height="15" fill="rgb(219,15,2)" fg:x="198436" fg:w="70"/><text x="37.6414%" y="623.50"></text></g><g><title>btrfs_search_slot (5,028 samples, 0.95%)</title><rect x="36.4603%" y="645" width="0.9474%" height="15" fill="rgb(231,181,52)" fg:x="193495" fg:w="5028"/><text x="36.7103%" y="655.50"></text></g><g><title>unlock_up (289 samples, 0.05%)</title><rect x="37.3533%" y="629" width="0.0545%" height="15" fill="rgb(235,1,42)" fg:x="198234" fg:w="289"/><text x="37.6033%" y="639.50"></text></g><g><title>btrfs_get_32 (114 samples, 0.02%)</title><rect x="37.5057%" y="629" width="0.0215%" height="15" fill="rgb(249,88,27)" fg:x="199043" fg:w="114"/><text x="37.7557%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,323 samples, 0.25%)</title><rect x="37.5272%" y="629" width="0.2493%" height="15" fill="rgb(235,145,16)" fg:x="199157" fg:w="1323"/><text x="37.7772%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (253 samples, 0.05%)</title><rect x="37.7288%" y="613" width="0.0477%" height="15" fill="rgb(237,114,19)" fg:x="200227" fg:w="253"/><text x="37.9788%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (265 samples, 0.05%)</title><rect x="37.7765%" y="629" width="0.0499%" height="15" fill="rgb(238,51,50)" fg:x="200480" fg:w="265"/><text x="38.0265%" y="639.50"></text></g><g><title>leaf_space_used (233 samples, 0.04%)</title><rect x="37.7826%" y="613" width="0.0439%" height="15" fill="rgb(205,194,25)" fg:x="200512" fg:w="233"/><text x="38.0326%" y="623.50"></text></g><g><title>btrfs_get_32 (161 samples, 0.03%)</title><rect x="37.7961%" y="597" width="0.0303%" height="15" fill="rgb(215,203,17)" fg:x="200584" fg:w="161"/><text x="38.0461%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (257 samples, 0.05%)</title><rect x="37.8265%" y="629" width="0.0484%" height="15" fill="rgb(233,112,49)" fg:x="200745" fg:w="257"/><text x="38.0765%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (103 samples, 0.02%)</title><rect x="37.8555%" y="613" width="0.0194%" height="15" fill="rgb(241,130,26)" fg:x="200899" fg:w="103"/><text x="38.1055%" y="623.50"></text></g><g><title>btrfs_set_token_32 (1,262 samples, 0.24%)</title><rect x="37.8749%" y="629" width="0.2378%" height="15" fill="rgb(252,223,19)" fg:x="201002" fg:w="1262"/><text x="38.1249%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (258 samples, 0.05%)</title><rect x="38.0641%" y="613" width="0.0486%" height="15" fill="rgb(211,95,25)" fg:x="202006" fg:w="258"/><text x="38.3141%" y="623.50"></text></g><g><title>copy_pages (140 samples, 0.03%)</title><rect x="38.1362%" y="613" width="0.0264%" height="15" fill="rgb(251,182,27)" fg:x="202389" fg:w="140"/><text x="38.3862%" y="623.50"></text></g><g><title>memcpy_extent_buffer (1,599 samples, 0.30%)</title><rect x="38.1215%" y="629" width="0.3013%" height="15" fill="rgb(238,24,4)" fg:x="202311" fg:w="1599"/><text x="38.3715%" y="639.50"></text></g><g><title>memmove (1,381 samples, 0.26%)</title><rect x="38.1626%" y="613" width="0.2602%" height="15" fill="rgb(224,220,25)" fg:x="202529" fg:w="1381"/><text x="38.4126%" y="623.50"></text></g><g><title>copy_pages (111 samples, 0.02%)</title><rect x="38.4358%" y="613" width="0.0209%" height="15" fill="rgb(239,133,26)" fg:x="203979" fg:w="111"/><text x="38.6858%" y="623.50"></text></g><g><title>memmove_extent_buffer (551 samples, 0.10%)</title><rect x="38.4228%" y="629" width="0.1038%" height="15" fill="rgb(211,94,48)" fg:x="203910" fg:w="551"/><text x="38.6728%" y="639.50"></text></g><g><title>memmove (371 samples, 0.07%)</title><rect x="38.4568%" y="613" width="0.0699%" height="15" fill="rgb(239,87,6)" fg:x="204090" fg:w="371"/><text x="38.7068%" y="623.50"></text></g><g><title>btrfs_insert_empty_items (11,125 samples, 2.10%)</title><rect x="36.4556%" y="661" width="2.0963%" height="15" fill="rgb(227,62,0)" fg:x="193470" fg:w="11125"/><text x="36.7056%" y="671.50">b..</text></g><g><title>setup_items_for_insert (6,072 samples, 1.14%)</title><rect x="37.4078%" y="645" width="1.1441%" height="15" fill="rgb(211,226,4)" fg:x="198523" fg:w="6072"/><text x="37.6578%" y="655.50"></text></g><g><title>write_extent_buffer (134 samples, 0.03%)</title><rect x="38.5267%" y="629" width="0.0252%" height="15" fill="rgb(253,38,52)" fg:x="204461" fg:w="134"/><text x="38.7767%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (170 samples, 0.03%)</title><rect x="38.5519%" y="661" width="0.0320%" height="15" fill="rgb(229,126,40)" fg:x="204595" fg:w="170"/><text x="38.8019%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (92 samples, 0.02%)</title><rect x="38.5666%" y="645" width="0.0173%" height="15" fill="rgb(229,165,44)" fg:x="204673" fg:w="92"/><text x="38.8166%" y="655.50"></text></g><g><title>btrfs_set_16 (66 samples, 0.01%)</title><rect x="38.5839%" y="661" width="0.0124%" height="15" fill="rgb(247,95,47)" fg:x="204765" fg:w="66"/><text x="38.8339%" y="671.50"></text></g><g><title>btrfs_set_64 (62 samples, 0.01%)</title><rect x="38.5964%" y="661" width="0.0117%" height="15" fill="rgb(216,140,30)" fg:x="204831" fg:w="62"/><text x="38.8464%" y="671.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="38.6280%" y="645" width="0.0109%" height="15" fill="rgb(246,214,8)" fg:x="204999" fg:w="58"/><text x="38.8780%" y="655.50"></text></g><g><title>kmem_cache_alloc (199 samples, 0.04%)</title><rect x="38.6081%" y="661" width="0.0375%" height="15" fill="rgb(227,224,15)" fg:x="204893" fg:w="199"/><text x="38.8581%" y="671.50"></text></g><g><title>kmem_cache_free (111 samples, 0.02%)</title><rect x="38.6456%" y="661" width="0.0209%" height="15" fill="rgb(233,175,4)" fg:x="205092" fg:w="111"/><text x="38.8956%" y="671.50"></text></g><g><title>btrfs_insert_inode_ref (12,434 samples, 2.34%)</title><rect x="36.3542%" y="677" width="2.3429%" height="15" fill="rgb(221,66,45)" fg:x="192932" fg:w="12434"/><text x="36.6042%" y="687.50">b..</text></g><g><title>write_extent_buffer (163 samples, 0.03%)</title><rect x="38.6665%" y="661" width="0.0307%" height="15" fill="rgb(221,178,18)" fg:x="205203" fg:w="163"/><text x="38.9165%" y="671.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="38.7458%" y="629" width="0.0122%" height="15" fill="rgb(213,81,29)" fg:x="205624" fg:w="65"/><text x="38.9958%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (246 samples, 0.05%)</title><rect x="38.7204%" y="645" width="0.0464%" height="15" fill="rgb(220,89,49)" fg:x="205489" fg:w="246"/><text x="38.9704%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (115 samples, 0.02%)</title><rect x="38.7728%" y="645" width="0.0217%" height="15" fill="rgb(227,60,33)" fg:x="205767" fg:w="115"/><text x="39.0228%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (92 samples, 0.02%)</title><rect x="38.7771%" y="629" width="0.0173%" height="15" fill="rgb(205,113,12)" fg:x="205790" fg:w="92"/><text x="39.0271%" y="639.50"></text></g><g><title>inode_get_bytes (66 samples, 0.01%)</title><rect x="38.8055%" y="629" width="0.0124%" height="15" fill="rgb(211,32,1)" fg:x="205941" fg:w="66"/><text x="39.0555%" y="639.50"></text></g><g><title>fill_stack_inode_item (155 samples, 0.03%)</title><rect x="38.7944%" y="645" width="0.0292%" height="15" fill="rgb(246,2,12)" fg:x="205882" fg:w="155"/><text x="39.0444%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (699 samples, 0.13%)</title><rect x="38.7134%" y="661" width="0.1317%" height="15" fill="rgb(243,37,27)" fg:x="205452" fg:w="699"/><text x="38.9634%" y="671.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="38.8331%" y="645" width="0.0121%" height="15" fill="rgb(248,211,31)" fg:x="206087" fg:w="64"/><text x="39.0831%" y="655.50"></text></g><g><title>_raw_spin_lock (81 samples, 0.02%)</title><rect x="38.8500%" y="645" width="0.0153%" height="15" fill="rgb(242,146,47)" fg:x="206177" fg:w="81"/><text x="39.1000%" y="655.50"></text></g><g><title>btrfs_update_inode (1,049 samples, 0.20%)</title><rect x="38.6972%" y="677" width="0.1977%" height="15" fill="rgb(206,70,20)" fg:x="205366" fg:w="1049"/><text x="38.9472%" y="687.50"></text></g><g><title>btrfs_update_root_times (264 samples, 0.05%)</title><rect x="38.8451%" y="661" width="0.0497%" height="15" fill="rgb(215,10,51)" fg:x="206151" fg:w="264"/><text x="39.0951%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (157 samples, 0.03%)</title><rect x="38.8653%" y="645" width="0.0296%" height="15" fill="rgb(243,178,53)" fg:x="206258" fg:w="157"/><text x="39.1153%" y="655.50"></text></g><g><title>read_tsc (83 samples, 0.02%)</title><rect x="38.8792%" y="629" width="0.0156%" height="15" fill="rgb(233,221,20)" fg:x="206332" fg:w="83"/><text x="39.1292%" y="639.50"></text></g><g><title>btrfs_add_link (32,736 samples, 6.17%)</title><rect x="32.7398%" y="693" width="6.1685%" height="15" fill="rgb(218,95,35)" fg:x="173750" fg:w="32736"/><text x="32.9898%" y="703.50">btrfs_ad..</text></g><g><title>btrfs_balance_delayed_items (62 samples, 0.01%)</title><rect x="38.9150%" y="677" width="0.0117%" height="15" fill="rgb(229,13,5)" fg:x="206522" fg:w="62"/><text x="39.1650%" y="687.50"></text></g><g><title>enqueue_task_fair (77 samples, 0.01%)</title><rect x="38.9520%" y="613" width="0.0145%" height="15" fill="rgb(252,164,30)" fg:x="206718" fg:w="77"/><text x="39.2020%" y="623.50"></text></g><g><title>enqueue_entity (62 samples, 0.01%)</title><rect x="38.9548%" y="597" width="0.0117%" height="15" fill="rgb(232,68,36)" fg:x="206733" fg:w="62"/><text x="39.2048%" y="607.50"></text></g><g><title>ttwu_do_activate (136 samples, 0.03%)</title><rect x="38.9499%" y="629" width="0.0256%" height="15" fill="rgb(219,59,54)" fg:x="206707" fg:w="136"/><text x="39.1999%" y="639.50"></text></g><g><title>btrfs_btree_balance_dirty (379 samples, 0.07%)</title><rect x="38.9082%" y="693" width="0.0714%" height="15" fill="rgb(250,92,33)" fg:x="206486" fg:w="379"/><text x="39.1582%" y="703.50"></text></g><g><title>queue_work_on (264 samples, 0.05%)</title><rect x="38.9299%" y="677" width="0.0497%" height="15" fill="rgb(229,162,54)" fg:x="206601" fg:w="264"/><text x="39.1799%" y="687.50"></text></g><g><title>__queue_work (254 samples, 0.05%)</title><rect x="38.9318%" y="661" width="0.0479%" height="15" fill="rgb(244,114,52)" fg:x="206611" fg:w="254"/><text x="39.1818%" y="671.50"></text></g><g><title>try_to_wake_up (216 samples, 0.04%)</title><rect x="38.9389%" y="645" width="0.0407%" height="15" fill="rgb(212,211,43)" fg:x="206649" fg:w="216"/><text x="39.1889%" y="655.50"></text></g><g><title>btrfs_iget (72 samples, 0.01%)</title><rect x="39.0021%" y="661" width="0.0136%" height="15" fill="rgb(226,147,8)" fg:x="206984" fg:w="72"/><text x="39.2521%" y="671.50"></text></g><g><title>iget5_locked (70 samples, 0.01%)</title><rect x="39.0024%" y="645" width="0.0132%" height="15" fill="rgb(226,23,13)" fg:x="206986" fg:w="70"/><text x="39.2524%" y="655.50"></text></g><g><title>ilookup5 (68 samples, 0.01%)</title><rect x="39.0028%" y="629" width="0.0128%" height="15" fill="rgb(240,63,4)" fg:x="206988" fg:w="68"/><text x="39.2528%" y="639.50"></text></g><g><title>ilookup5_nowait (56 samples, 0.01%)</title><rect x="39.0051%" y="613" width="0.0106%" height="15" fill="rgb(221,1,32)" fg:x="207000" fg:w="56"/><text x="39.2551%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (97 samples, 0.02%)</title><rect x="39.0349%" y="597" width="0.0183%" height="15" fill="rgb(242,117,10)" fg:x="207158" fg:w="97"/><text x="39.2849%" y="607.50"></text></g><g><title>btrfs_search_slot (179 samples, 0.03%)</title><rect x="39.0209%" y="613" width="0.0337%" height="15" fill="rgb(249,172,44)" fg:x="207084" fg:w="179"/><text x="39.2709%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (183 samples, 0.03%)</title><rect x="39.0209%" y="629" width="0.0345%" height="15" fill="rgb(244,46,45)" fg:x="207084" fg:w="183"/><text x="39.2709%" y="639.50"></text></g><g><title>btrfs_check_ref_name_override (280 samples, 0.05%)</title><rect x="39.0188%" y="645" width="0.0528%" height="15" fill="rgb(206,43,17)" fg:x="207073" fg:w="280"/><text x="39.2688%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (82 samples, 0.02%)</title><rect x="39.0936%" y="613" width="0.0155%" height="15" fill="rgb(239,218,39)" fg:x="207470" fg:w="82"/><text x="39.3436%" y="623.50"></text></g><g><title>btrfs_insert_delayed_items (95 samples, 0.02%)</title><rect x="39.0929%" y="629" width="0.0179%" height="15" fill="rgb(208,169,54)" fg:x="207466" fg:w="95"/><text x="39.3429%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_items (160 samples, 0.03%)</title><rect x="39.0816%" y="645" width="0.0301%" height="15" fill="rgb(247,25,42)" fg:x="207406" fg:w="160"/><text x="39.3316%" y="655.50"></text></g><g><title>alloc_extent_buffer (74 samples, 0.01%)</title><rect x="39.1425%" y="597" width="0.0139%" height="15" fill="rgb(226,23,31)" fg:x="207729" fg:w="74"/><text x="39.3925%" y="607.50"></text></g><g><title>find_extent_buffer (70 samples, 0.01%)</title><rect x="39.1432%" y="581" width="0.0132%" height="15" fill="rgb(247,16,28)" fg:x="207733" fg:w="70"/><text x="39.3932%" y="591.50"></text></g><g><title>btrfs_read_node_slot (125 samples, 0.02%)</title><rect x="39.1364%" y="629" width="0.0236%" height="15" fill="rgb(231,147,38)" fg:x="207697" fg:w="125"/><text x="39.3864%" y="639.50"></text></g><g><title>read_tree_block (96 samples, 0.02%)</title><rect x="39.1419%" y="613" width="0.0181%" height="15" fill="rgb(253,81,48)" fg:x="207726" fg:w="96"/><text x="39.3919%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (86 samples, 0.02%)</title><rect x="39.1662%" y="629" width="0.0162%" height="15" fill="rgb(249,222,43)" fg:x="207855" fg:w="86"/><text x="39.4162%" y="639.50"></text></g><g><title>btrfs_search_forward (323 samples, 0.06%)</title><rect x="39.1270%" y="645" width="0.0609%" height="15" fill="rgb(221,3,27)" fg:x="207647" fg:w="323"/><text x="39.3770%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.01%)</title><rect x="39.2252%" y="597" width="0.0104%" height="15" fill="rgb(228,180,5)" fg:x="208168" fg:w="55"/><text x="39.4752%" y="607.50"></text></g><g><title>btrfs_search_slot (241 samples, 0.05%)</title><rect x="39.1994%" y="613" width="0.0454%" height="15" fill="rgb(227,131,42)" fg:x="208031" fg:w="241"/><text x="39.4494%" y="623.50"></text></g><g><title>btrfs_get_token_32 (96 samples, 0.02%)</title><rect x="39.2540%" y="597" width="0.0181%" height="15" fill="rgb(212,3,39)" fg:x="208321" fg:w="96"/><text x="39.5040%" y="607.50"></text></g><g><title>btrfs_set_token_32 (127 samples, 0.02%)</title><rect x="39.2766%" y="597" width="0.0239%" height="15" fill="rgb(226,45,5)" fg:x="208441" fg:w="127"/><text x="39.5266%" y="607.50"></text></g><g><title>memcpy_extent_buffer (65 samples, 0.01%)</title><rect x="39.3009%" y="597" width="0.0122%" height="15" fill="rgb(215,167,45)" fg:x="208570" fg:w="65"/><text x="39.5509%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (662 samples, 0.12%)</title><rect x="39.1988%" y="629" width="0.1247%" height="15" fill="rgb(250,218,53)" fg:x="208028" fg:w="662"/><text x="39.4488%" y="639.50"></text></g><g><title>setup_items_for_insert (418 samples, 0.08%)</title><rect x="39.2448%" y="613" width="0.0788%" height="15" fill="rgb(207,140,0)" fg:x="208272" fg:w="418"/><text x="39.4948%" y="623.50"></text></g><g><title>fill_inode_item (60 samples, 0.01%)</title><rect x="39.3333%" y="629" width="0.0113%" height="15" fill="rgb(238,133,51)" fg:x="208742" fg:w="60"/><text x="39.5833%" y="639.50"></text></g><g><title>copy_items.isra.0 (840 samples, 0.16%)</title><rect x="39.1916%" y="645" width="0.1583%" height="15" fill="rgb(218,203,53)" fg:x="207990" fg:w="840"/><text x="39.4416%" y="655.50"></text></g><g><title>btrfs_get_token_32 (100 samples, 0.02%)</title><rect x="39.3599%" y="613" width="0.0188%" height="15" fill="rgb(226,184,25)" fg:x="208883" fg:w="100"/><text x="39.6099%" y="623.50"></text></g><g><title>btrfs_set_token_32 (102 samples, 0.02%)</title><rect x="39.3806%" y="613" width="0.0192%" height="15" fill="rgb(231,121,21)" fg:x="208993" fg:w="102"/><text x="39.6306%" y="623.50"></text></g><g><title>btrfs_del_items (365 samples, 0.07%)</title><rect x="39.3510%" y="629" width="0.0688%" height="15" fill="rgb(251,14,34)" fg:x="208836" fg:w="365"/><text x="39.6010%" y="639.50"></text></g><g><title>memmove_extent_buffer (88 samples, 0.02%)</title><rect x="39.4032%" y="613" width="0.0166%" height="15" fill="rgb(249,193,11)" fg:x="209113" fg:w="88"/><text x="39.6532%" y="623.50"></text></g><g><title>memmove (74 samples, 0.01%)</title><rect x="39.4059%" y="597" width="0.0139%" height="15" fill="rgb(220,172,37)" fg:x="209127" fg:w="74"/><text x="39.6559%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (65 samples, 0.01%)</title><rect x="39.4390%" y="613" width="0.0122%" height="15" fill="rgb(231,229,43)" fg:x="209303" fg:w="65"/><text x="39.6890%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.01%)</title><rect x="39.4513%" y="613" width="0.0104%" height="15" fill="rgb(250,161,5)" fg:x="209368" fg:w="55"/><text x="39.7013%" y="623.50"></text></g><g><title>btrfs_search_slot (198 samples, 0.04%)</title><rect x="39.4262%" y="629" width="0.0373%" height="15" fill="rgb(218,225,18)" fg:x="209235" fg:w="198"/><text x="39.6762%" y="639.50"></text></g><g><title>drop_objectid_items (632 samples, 0.12%)</title><rect x="39.3499%" y="645" width="0.1191%" height="15" fill="rgb(245,45,42)" fg:x="208830" fg:w="632"/><text x="39.5999%" y="655.50"></text></g><g><title>btrfs_search_forward (87 samples, 0.02%)</title><rect x="39.4995%" y="613" width="0.0164%" height="15" fill="rgb(211,115,1)" fg:x="209624" fg:w="87"/><text x="39.7495%" y="623.50"></text></g><g><title>btrfs_get_token_32 (60 samples, 0.01%)</title><rect x="39.5350%" y="565" width="0.0113%" height="15" fill="rgb(248,133,52)" fg:x="209812" fg:w="60"/><text x="39.7850%" y="575.50"></text></g><g><title>btrfs_set_token_32 (61 samples, 0.01%)</title><rect x="39.5470%" y="565" width="0.0115%" height="15" fill="rgb(238,100,21)" fg:x="209876" fg:w="61"/><text x="39.7970%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (223 samples, 0.04%)</title><rect x="39.5259%" y="597" width="0.0420%" height="15" fill="rgb(247,144,11)" fg:x="209764" fg:w="223"/><text x="39.7759%" y="607.50"></text></g><g><title>setup_items_for_insert (192 samples, 0.04%)</title><rect x="39.5318%" y="581" width="0.0362%" height="15" fill="rgb(206,164,16)" fg:x="209795" fg:w="192"/><text x="39.7818%" y="591.50"></text></g><g><title>insert_dir_log_key (229 samples, 0.04%)</title><rect x="39.5259%" y="613" width="0.0432%" height="15" fill="rgb(222,34,3)" fg:x="209764" fg:w="229"/><text x="39.7759%" y="623.50"></text></g><g><title>memset_erms (73 samples, 0.01%)</title><rect x="39.6241%" y="581" width="0.0138%" height="15" fill="rgb(248,82,4)" fg:x="210285" fg:w="73"/><text x="39.8741%" y="591.50"></text></g><g><title>__kmalloc (326 samples, 0.06%)</title><rect x="39.5862%" y="597" width="0.0614%" height="15" fill="rgb(228,81,46)" fg:x="210084" fg:w="326"/><text x="39.8362%" y="607.50"></text></g><g><title>btrfs_get_32 (78 samples, 0.01%)</title><rect x="39.6476%" y="597" width="0.0147%" height="15" fill="rgb(227,67,47)" fg:x="210410" fg:w="78"/><text x="39.8976%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (133 samples, 0.03%)</title><rect x="39.6623%" y="597" width="0.0251%" height="15" fill="rgb(215,93,53)" fg:x="210488" fg:w="133"/><text x="39.9123%" y="607.50"></text></g><g><title>setup_items_for_insert (111 samples, 0.02%)</title><rect x="39.6665%" y="581" width="0.0209%" height="15" fill="rgb(248,194,39)" fg:x="210510" fg:w="111"/><text x="39.9165%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (80 samples, 0.02%)</title><rect x="39.6983%" y="581" width="0.0151%" height="15" fill="rgb(215,5,19)" fg:x="210679" fg:w="80"/><text x="39.9483%" y="591.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="39.7010%" y="565" width="0.0124%" height="15" fill="rgb(226,215,51)" fg:x="210693" fg:w="66"/><text x="39.9510%" y="575.50"></text></g><g><title>btrfs_release_path (218 samples, 0.04%)</title><rect x="39.6876%" y="597" width="0.0411%" height="15" fill="rgb(225,56,26)" fg:x="210622" fg:w="218"/><text x="39.9376%" y="607.50"></text></g><g><title>release_extent_buffer (81 samples, 0.02%)</title><rect x="39.7134%" y="581" width="0.0153%" height="15" fill="rgb(222,75,29)" fg:x="210759" fg:w="81"/><text x="39.9634%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (92 samples, 0.02%)</title><rect x="39.7488%" y="581" width="0.0173%" height="15" fill="rgb(236,139,6)" fg:x="210947" fg:w="92"/><text x="39.9988%" y="591.50"></text></g><g><title>btrfs_set_path_blocking (101 samples, 0.02%)</title><rect x="39.7667%" y="581" width="0.0190%" height="15" fill="rgb(223,137,36)" fg:x="211042" fg:w="101"/><text x="40.0167%" y="591.50"></text></g><g><title>btrfs_set_lock_blocking_read (65 samples, 0.01%)</title><rect x="39.7735%" y="565" width="0.0122%" height="15" fill="rgb(226,99,2)" fg:x="211078" fg:w="65"/><text x="40.0235%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (331 samples, 0.06%)</title><rect x="39.8003%" y="581" width="0.0624%" height="15" fill="rgb(206,133,23)" fg:x="211220" fg:w="331"/><text x="40.0503%" y="591.50"></text></g><g><title>__radix_tree_lookup (105 samples, 0.02%)</title><rect x="39.8907%" y="549" width="0.0198%" height="15" fill="rgb(243,173,15)" fg:x="211700" fg:w="105"/><text x="40.1407%" y="559.50"></text></g><g><title>mark_extent_buffer_accessed (79 samples, 0.01%)</title><rect x="39.9105%" y="549" width="0.0149%" height="15" fill="rgb(228,69,28)" fg:x="211805" fg:w="79"/><text x="40.1605%" y="559.50"></text></g><g><title>find_extent_buffer (225 samples, 0.04%)</title><rect x="39.8834%" y="565" width="0.0424%" height="15" fill="rgb(212,51,22)" fg:x="211661" fg:w="225"/><text x="40.1334%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (387 samples, 0.07%)</title><rect x="39.8626%" y="581" width="0.0729%" height="15" fill="rgb(227,113,0)" fg:x="211551" fg:w="387"/><text x="40.1126%" y="591.50"></text></g><g><title>btrfs_search_slot (1,145 samples, 0.22%)</title><rect x="39.7287%" y="597" width="0.2158%" height="15" fill="rgb(252,84,27)" fg:x="210840" fg:w="1145"/><text x="39.9787%" y="607.50"></text></g><g><title>kfree (236 samples, 0.04%)</title><rect x="39.9454%" y="597" width="0.0445%" height="15" fill="rgb(223,145,39)" fg:x="211990" fg:w="236"/><text x="40.1954%" y="607.50"></text></g><g><title>memcmp (140 samples, 0.03%)</title><rect x="39.9898%" y="597" width="0.0264%" height="15" fill="rgb(239,219,30)" fg:x="212226" fg:w="140"/><text x="40.2398%" y="607.50"></text></g><g><title>overwrite_item (2,518 samples, 0.47%)</title><rect x="39.5691%" y="613" width="0.4745%" height="15" fill="rgb(224,196,39)" fg:x="209993" fg:w="2518"/><text x="39.8191%" y="623.50"></text></g><g><title>read_extent_buffer (145 samples, 0.03%)</title><rect x="40.0162%" y="597" width="0.0273%" height="15" fill="rgb(205,35,43)" fg:x="212366" fg:w="145"/><text x="40.2662%" y="607.50"></text></g><g><title>log_directory_changes (3,101 samples, 0.58%)</title><rect x="39.4792%" y="645" width="0.5843%" height="15" fill="rgb(228,201,21)" fg:x="209516" fg:w="3101"/><text x="39.7292%" y="655.50"></text></g><g><title>log_dir_items (3,101 samples, 0.58%)</title><rect x="39.4792%" y="629" width="0.5843%" height="15" fill="rgb(237,118,16)" fg:x="209516" fg:w="3101"/><text x="39.7292%" y="639.50"></text></g><g><title>read_extent_buffer (106 samples, 0.02%)</title><rect x="40.0435%" y="613" width="0.0200%" height="15" fill="rgb(241,17,19)" fg:x="212511" fg:w="106"/><text x="40.2935%" y="623.50"></text></g><g><title>btrfs_log_inode (5,579 samples, 1.05%)</title><rect x="39.0156%" y="661" width="1.0513%" height="15" fill="rgb(214,10,25)" fg:x="207056" fg:w="5579"/><text x="39.2656%" y="671.50"></text></g><g><title>btrfs_release_path (103 samples, 0.02%)</title><rect x="40.0688%" y="661" width="0.0194%" height="15" fill="rgb(238,37,29)" fg:x="212645" fg:w="103"/><text x="40.3188%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (359 samples, 0.07%)</title><rect x="40.1281%" y="645" width="0.0676%" height="15" fill="rgb(253,83,25)" fg:x="212960" fg:w="359"/><text x="40.3781%" y="655.50"></text></g><g><title>__radix_tree_lookup (156 samples, 0.03%)</title><rect x="40.2333%" y="613" width="0.0294%" height="15" fill="rgb(234,192,12)" fg:x="213518" fg:w="156"/><text x="40.4833%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (80 samples, 0.02%)</title><rect x="40.2627%" y="613" width="0.0151%" height="15" fill="rgb(241,216,45)" fg:x="213674" fg:w="80"/><text x="40.5127%" y="623.50"></text></g><g><title>find_extent_buffer (298 samples, 0.06%)</title><rect x="40.2231%" y="629" width="0.0562%" height="15" fill="rgb(242,22,33)" fg:x="213464" fg:w="298"/><text x="40.4731%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (488 samples, 0.09%)</title><rect x="40.1958%" y="645" width="0.0920%" height="15" fill="rgb(231,105,49)" fg:x="213319" fg:w="488"/><text x="40.4458%" y="655.50"></text></g><g><title>btrfs_search_slot (1,096 samples, 0.21%)</title><rect x="40.0882%" y="661" width="0.2065%" height="15" fill="rgb(218,204,15)" fg:x="212748" fg:w="1096"/><text x="40.3382%" y="671.50"></text></g><g><title>btrfs_search_forward (66 samples, 0.01%)</title><rect x="40.3179%" y="629" width="0.0124%" height="15" fill="rgb(235,138,41)" fg:x="213967" fg:w="66"/><text x="40.5679%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (149 samples, 0.03%)</title><rect x="40.3314%" y="613" width="0.0281%" height="15" fill="rgb(246,0,9)" fg:x="214039" fg:w="149"/><text x="40.5814%" y="623.50"></text></g><g><title>setup_items_for_insert (124 samples, 0.02%)</title><rect x="40.3362%" y="597" width="0.0234%" height="15" fill="rgb(210,74,4)" fg:x="214064" fg:w="124"/><text x="40.5862%" y="607.50"></text></g><g><title>copy_items.isra.0 (174 samples, 0.03%)</title><rect x="40.3303%" y="629" width="0.0328%" height="15" fill="rgb(250,60,41)" fg:x="214033" fg:w="174"/><text x="40.5803%" y="639.50"></text></g><g><title>btrfs_del_items (126 samples, 0.02%)</title><rect x="40.3635%" y="613" width="0.0237%" height="15" fill="rgb(220,115,12)" fg:x="214209" fg:w="126"/><text x="40.6135%" y="623.50"></text></g><g><title>drop_objectid_items (184 samples, 0.03%)</title><rect x="40.3631%" y="629" width="0.0347%" height="15" fill="rgb(237,100,13)" fg:x="214207" fg:w="184"/><text x="40.6131%" y="639.50"></text></g><g><title>btrfs_search_forward (110 samples, 0.02%)</title><rect x="40.4083%" y="597" width="0.0207%" height="15" fill="rgb(213,55,26)" fg:x="214447" fg:w="110"/><text x="40.6583%" y="607.50"></text></g><g><title>btrfs_search_slot (79 samples, 0.01%)</title><rect x="40.4291%" y="597" width="0.0149%" height="15" fill="rgb(216,17,4)" fg:x="214557" fg:w="79"/><text x="40.6791%" y="607.50"></text></g><g><title>btrfs_search_slot (54 samples, 0.01%)</title><rect x="40.4439%" y="565" width="0.0102%" height="15" fill="rgb(220,153,47)" fg:x="214636" fg:w="54"/><text x="40.6939%" y="575.50"></text></g><g><title>btrfs_get_token_32 (89 samples, 0.02%)</title><rect x="40.4575%" y="549" width="0.0168%" height="15" fill="rgb(215,131,9)" fg:x="214708" fg:w="89"/><text x="40.7075%" y="559.50"></text></g><g><title>btrfs_set_token_32 (89 samples, 0.02%)</title><rect x="40.4765%" y="549" width="0.0168%" height="15" fill="rgb(233,46,42)" fg:x="214809" fg:w="89"/><text x="40.7265%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (319 samples, 0.06%)</title><rect x="40.4439%" y="581" width="0.0601%" height="15" fill="rgb(226,86,7)" fg:x="214636" fg:w="319"/><text x="40.6939%" y="591.50"></text></g><g><title>setup_items_for_insert (265 samples, 0.05%)</title><rect x="40.4541%" y="565" width="0.0499%" height="15" fill="rgb(239,226,21)" fg:x="214690" fg:w="265"/><text x="40.7041%" y="575.50"></text></g><g><title>insert_dir_log_key (334 samples, 0.06%)</title><rect x="40.4439%" y="597" width="0.0629%" height="15" fill="rgb(244,137,22)" fg:x="214636" fg:w="334"/><text x="40.6939%" y="607.50"></text></g><g><title>__kmalloc (77 samples, 0.01%)</title><rect x="40.5114%" y="581" width="0.0145%" height="15" fill="rgb(211,139,35)" fg:x="214994" fg:w="77"/><text x="40.7614%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (139 samples, 0.03%)</title><rect x="40.5319%" y="581" width="0.0262%" height="15" fill="rgb(214,62,50)" fg:x="215103" fg:w="139"/><text x="40.7819%" y="591.50"></text></g><g><title>setup_items_for_insert (110 samples, 0.02%)</title><rect x="40.5374%" y="565" width="0.0207%" height="15" fill="rgb(212,113,44)" fg:x="215132" fg:w="110"/><text x="40.7874%" y="575.50"></text></g><g><title>btrfs_release_path (78 samples, 0.01%)</title><rect x="40.5585%" y="581" width="0.0147%" height="15" fill="rgb(226,150,43)" fg:x="215244" fg:w="78"/><text x="40.8085%" y="591.50"></text></g><g><title>generic_bin_search.constprop.0 (100 samples, 0.02%)</title><rect x="40.5958%" y="565" width="0.0188%" height="15" fill="rgb(250,71,37)" fg:x="215442" fg:w="100"/><text x="40.8458%" y="575.50"></text></g><g><title>find_extent_buffer (70 samples, 0.01%)</title><rect x="40.6213%" y="549" width="0.0132%" height="15" fill="rgb(219,76,19)" fg:x="215577" fg:w="70"/><text x="40.8713%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (128 samples, 0.02%)</title><rect x="40.6147%" y="565" width="0.0241%" height="15" fill="rgb(250,39,11)" fg:x="215542" fg:w="128"/><text x="40.8647%" y="575.50"></text></g><g><title>btrfs_search_slot (362 samples, 0.07%)</title><rect x="40.5732%" y="581" width="0.0682%" height="15" fill="rgb(230,64,31)" fg:x="215322" fg:w="362"/><text x="40.8232%" y="591.50"></text></g><g><title>kfree (66 samples, 0.01%)</title><rect x="40.6420%" y="581" width="0.0124%" height="15" fill="rgb(208,222,23)" fg:x="215687" fg:w="66"/><text x="40.8920%" y="591.50"></text></g><g><title>overwrite_item (862 samples, 0.16%)</title><rect x="40.5069%" y="597" width="0.1624%" height="15" fill="rgb(227,125,18)" fg:x="214970" fg:w="862"/><text x="40.7569%" y="607.50"></text></g><g><title>log_directory_changes (1,458 samples, 0.27%)</title><rect x="40.3987%" y="629" width="0.2747%" height="15" fill="rgb(234,210,9)" fg:x="214396" fg:w="1458"/><text x="40.6487%" y="639.50"></text></g><g><title>log_dir_items (1,456 samples, 0.27%)</title><rect x="40.3991%" y="613" width="0.2744%" height="15" fill="rgb(217,127,24)" fg:x="214398" fg:w="1456"/><text x="40.6491%" y="623.50"></text></g><g><title>btrfs_log_inode (1,916 samples, 0.36%)</title><rect x="40.3126%" y="645" width="0.3610%" height="15" fill="rgb(239,141,48)" fg:x="213939" fg:w="1916"/><text x="40.5626%" y="655.50"></text></g><g><title>log_new_dir_dentries (2,022 samples, 0.38%)</title><rect x="40.3056%" y="661" width="0.3810%" height="15" fill="rgb(227,109,8)" fg:x="213902" fg:w="2022"/><text x="40.5556%" y="671.50"></text></g><g><title>btrfs_log_new_name (9,089 samples, 1.71%)</title><rect x="38.9798%" y="693" width="1.7126%" height="15" fill="rgb(235,184,23)" fg:x="206866" fg:w="9089"/><text x="39.2298%" y="703.50"></text></g><g><title>btrfs_log_inode_parent (9,059 samples, 1.71%)</title><rect x="38.9855%" y="677" width="1.7070%" height="15" fill="rgb(227,226,48)" fg:x="206896" fg:w="9059"/><text x="39.2355%" y="687.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="40.7743%" y="645" width="0.0104%" height="15" fill="rgb(206,150,11)" fg:x="216389" fg:w="55"/><text x="41.0243%" y="655.50"></text></g><g><title>mutex_lock (71 samples, 0.01%)</title><rect x="40.7848%" y="645" width="0.0134%" height="15" fill="rgb(254,2,33)" fg:x="216445" fg:w="71"/><text x="41.0348%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (376 samples, 0.07%)</title><rect x="40.7375%" y="661" width="0.0708%" height="15" fill="rgb(243,160,20)" fg:x="216194" fg:w="376"/><text x="40.9875%" y="671.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="40.7982%" y="645" width="0.0102%" height="15" fill="rgb(218,208,30)" fg:x="216516" fg:w="54"/><text x="41.0482%" y="655.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.03%)</title><rect x="40.8138%" y="645" width="0.0258%" height="15" fill="rgb(224,120,49)" fg:x="216599" fg:w="137"/><text x="41.0638%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (167 samples, 0.03%)</title><rect x="40.8084%" y="661" width="0.0315%" height="15" fill="rgb(246,12,2)" fg:x="216570" fg:w="167"/><text x="41.0584%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (501 samples, 0.09%)</title><rect x="40.8398%" y="661" width="0.0944%" height="15" fill="rgb(236,117,3)" fg:x="216737" fg:w="501"/><text x="41.0898%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (479 samples, 0.09%)</title><rect x="40.8440%" y="645" width="0.0903%" height="15" fill="rgb(216,128,52)" fg:x="216759" fg:w="479"/><text x="41.0940%" y="655.50"></text></g><g><title>inode_get_bytes (79 samples, 0.01%)</title><rect x="40.9401%" y="645" width="0.0149%" height="15" fill="rgb(246,145,19)" fg:x="217269" fg:w="79"/><text x="41.1901%" y="655.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="40.9423%" y="629" width="0.0126%" height="15" fill="rgb(222,11,46)" fg:x="217281" fg:w="67"/><text x="41.1923%" y="639.50"></text></g><g><title>fill_stack_inode_item (151 samples, 0.03%)</title><rect x="40.9342%" y="661" width="0.0285%" height="15" fill="rgb(245,82,36)" fg:x="217238" fg:w="151"/><text x="41.1842%" y="671.50"></text></g><g><title>mutex_lock (89 samples, 0.02%)</title><rect x="40.9627%" y="661" width="0.0168%" height="15" fill="rgb(250,73,51)" fg:x="217389" fg:w="89"/><text x="41.2127%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (1,494 samples, 0.28%)</title><rect x="40.7059%" y="677" width="0.2815%" height="15" fill="rgb(221,189,23)" fg:x="216026" fg:w="1494"/><text x="40.9559%" y="687.50"></text></g><g><title>btrfs_update_inode (1,728 samples, 0.33%)</title><rect x="40.6929%" y="693" width="0.3256%" height="15" fill="rgb(210,33,7)" fg:x="215957" fg:w="1728"/><text x="40.9429%" y="703.50"></text></g><g><title>btrfs_update_root_times (165 samples, 0.03%)</title><rect x="40.9874%" y="677" width="0.0311%" height="15" fill="rgb(210,107,22)" fg:x="217520" fg:w="165"/><text x="41.2374%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (110 samples, 0.02%)</title><rect x="40.9977%" y="661" width="0.0207%" height="15" fill="rgb(222,116,37)" fg:x="217575" fg:w="110"/><text x="41.2477%" y="671.50"></text></g><g><title>read_tsc (72 samples, 0.01%)</title><rect x="41.0049%" y="645" width="0.0136%" height="15" fill="rgb(254,17,48)" fg:x="217613" fg:w="72"/><text x="41.2549%" y="655.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="41.0362%" y="661" width="0.0115%" height="15" fill="rgb(224,36,32)" fg:x="217779" fg:w="61"/><text x="41.2862%" y="671.50"></text></g><g><title>__d_instantiate (140 samples, 0.03%)</title><rect x="41.0241%" y="677" width="0.0264%" height="15" fill="rgb(232,90,46)" fg:x="217715" fg:w="140"/><text x="41.2741%" y="687.50"></text></g><g><title>d_instantiate (189 samples, 0.04%)</title><rect x="41.0224%" y="693" width="0.0356%" height="15" fill="rgb(241,66,40)" fg:x="217706" fg:w="189"/><text x="41.2724%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="41.1347%" y="661" width="0.0117%" height="15" fill="rgb(249,184,29)" fg:x="218302" fg:w="62"/><text x="41.3847%" y="671.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="41.1771%" y="629" width="0.0188%" height="15" fill="rgb(231,181,1)" fg:x="218527" fg:w="100"/><text x="41.4271%" y="639.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="41.2666%" y="597" width="0.0198%" height="15" fill="rgb(224,94,2)" fg:x="219002" fg:w="105"/><text x="41.5166%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (481 samples, 0.09%)</title><rect x="41.1960%" y="629" width="0.0906%" height="15" fill="rgb(229,170,15)" fg:x="218627" fg:w="481"/><text x="41.4460%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (263 samples, 0.05%)</title><rect x="41.2370%" y="613" width="0.0496%" height="15" fill="rgb(240,127,35)" fg:x="218845" fg:w="263"/><text x="41.4870%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (1,136 samples, 0.21%)</title><rect x="41.1313%" y="677" width="0.2141%" height="15" fill="rgb(248,196,34)" fg:x="218284" fg:w="1136"/><text x="41.3813%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,056 samples, 0.20%)</title><rect x="41.1464%" y="661" width="0.1990%" height="15" fill="rgb(236,137,7)" fg:x="218364" fg:w="1056"/><text x="41.3964%" y="671.50"></text></g><g><title>__reserve_bytes (1,005 samples, 0.19%)</title><rect x="41.1560%" y="645" width="0.1894%" height="15" fill="rgb(235,127,16)" fg:x="218415" fg:w="1005"/><text x="41.4060%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (312 samples, 0.06%)</title><rect x="41.2866%" y="629" width="0.0588%" height="15" fill="rgb(250,192,54)" fg:x="219108" fg:w="312"/><text x="41.5366%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (202 samples, 0.04%)</title><rect x="41.3073%" y="613" width="0.0381%" height="15" fill="rgb(218,98,20)" fg:x="219218" fg:w="202"/><text x="41.5573%" y="623.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="41.3326%" y="597" width="0.0128%" height="15" fill="rgb(230,176,47)" fg:x="219352" fg:w="68"/><text x="41.5826%" y="607.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="41.3765%" y="661" width="0.0124%" height="15" fill="rgb(244,2,33)" fg:x="219585" fg:w="66"/><text x="41.6265%" y="671.50"></text></g><g><title>join_transaction (220 samples, 0.04%)</title><rect x="41.3477%" y="677" width="0.0415%" height="15" fill="rgb(231,100,17)" fg:x="219432" fg:w="220"/><text x="41.5977%" y="687.50"></text></g><g><title>kmem_cache_alloc (217 samples, 0.04%)</title><rect x="41.3891%" y="677" width="0.0409%" height="15" fill="rgb(245,23,12)" fg:x="219652" fg:w="217"/><text x="41.6391%" y="687.50"></text></g><g><title>btrfs_link (47,383 samples, 8.93%)</title><rect x="32.5236%" y="709" width="8.9284%" height="15" fill="rgb(249,55,22)" fg:x="172603" fg:w="47383"/><text x="32.7736%" y="719.50">btrfs_link</text></g><g><title>start_transaction (2,037 samples, 0.38%)</title><rect x="41.0682%" y="693" width="0.3838%" height="15" fill="rgb(207,134,9)" fg:x="217949" fg:w="2037"/><text x="41.3182%" y="703.50"></text></g><g><title>wait_current_trans (117 samples, 0.02%)</title><rect x="41.4300%" y="677" width="0.0220%" height="15" fill="rgb(218,134,0)" fg:x="219869" fg:w="117"/><text x="41.6800%" y="687.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="41.4343%" y="661" width="0.0177%" height="15" fill="rgb(213,212,33)" fg:x="219892" fg:w="94"/><text x="41.6843%" y="671.50"></text></g><g><title>down_write (78 samples, 0.01%)</title><rect x="41.4520%" y="709" width="0.0147%" height="15" fill="rgb(252,106,18)" fg:x="219986" fg:w="78"/><text x="41.7020%" y="719.50"></text></g><g><title>fsnotify (159 samples, 0.03%)</title><rect x="41.4675%" y="709" width="0.0300%" height="15" fill="rgb(208,126,42)" fg:x="220068" fg:w="159"/><text x="41.7175%" y="719.50"></text></g><g><title>btrfs_permission (64 samples, 0.01%)</title><rect x="41.5005%" y="693" width="0.0121%" height="15" fill="rgb(246,175,29)" fg:x="220243" fg:w="64"/><text x="41.7505%" y="703.50"></text></g><g><title>inode_permission.part.0 (92 samples, 0.02%)</title><rect x="41.4975%" y="709" width="0.0173%" height="15" fill="rgb(215,13,50)" fg:x="220227" fg:w="92"/><text x="41.7475%" y="719.50"></text></g><g><title>__x64_sys_link (66,307 samples, 12.49%)</title><rect x="29.0462%" y="757" width="12.4943%" height="15" fill="rgb(216,172,15)" fg:x="154148" fg:w="66307"/><text x="29.2962%" y="767.50">__x64_sys_link</text></g><g><title>do_linkat (66,300 samples, 12.49%)</title><rect x="29.0475%" y="741" width="12.4929%" height="15" fill="rgb(212,103,13)" fg:x="154155" fg:w="66300"/><text x="29.2975%" y="751.50">do_linkat</text></g><g><title>vfs_link (48,054 samples, 9.05%)</title><rect x="32.4856%" y="725" width="9.0548%" height="15" fill="rgb(231,171,36)" fg:x="172401" fg:w="48054"/><text x="32.7356%" y="735.50">vfs_link</text></g><g><title>up_write (68 samples, 0.01%)</title><rect x="41.5276%" y="709" width="0.0128%" height="15" fill="rgb(250,123,20)" fg:x="220387" fg:w="68"/><text x="41.7776%" y="719.50"></text></g><g><title>do_syscall_64 (66,354 samples, 12.50%)</title><rect x="29.0396%" y="773" width="12.5031%" height="15" fill="rgb(212,53,50)" fg:x="154113" fg:w="66354"/><text x="29.2896%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (66,467 samples, 12.52%)</title><rect x="29.0305%" y="789" width="12.5244%" height="15" fill="rgb(243,54,12)" fg:x="154065" fg:w="66467"/><text x="29.2805%" y="799.50">entry_SYSCALL_64_af..</text></g><g><title>syscall_exit_to_user_mode (65 samples, 0.01%)</title><rect x="41.5427%" y="773" width="0.0122%" height="15" fill="rgb(234,101,34)" fg:x="220467" fg:w="65"/><text x="41.7927%" y="783.50"></text></g><g><title>__GI___link (66,802 samples, 12.59%)</title><rect x="28.9783%" y="805" width="12.5875%" height="15" fill="rgb(254,67,22)" fg:x="153788" fg:w="66802"/><text x="29.2283%" y="815.50">__GI___link</text></g><g><title>syscall_return_via_sysret (57 samples, 0.01%)</title><rect x="41.5551%" y="789" width="0.0107%" height="15" fill="rgb(250,35,47)" fg:x="220533" fg:w="57"/><text x="41.8051%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (298 samples, 0.06%)</title><rect x="41.6062%" y="789" width="0.0562%" height="15" fill="rgb(226,126,38)" fg:x="220804" fg:w="298"/><text x="41.8562%" y="799.50"></text></g><g><title>_copy_to_user (383 samples, 0.07%)</title><rect x="41.7166%" y="725" width="0.0722%" height="15" fill="rgb(216,138,53)" fg:x="221390" fg:w="383"/><text x="41.9666%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (331 samples, 0.06%)</title><rect x="41.7264%" y="709" width="0.0624%" height="15" fill="rgb(246,199,43)" fg:x="221442" fg:w="331"/><text x="41.9764%" y="719.50"></text></g><g><title>from_kgid_munged (61 samples, 0.01%)</title><rect x="41.7888%" y="725" width="0.0115%" height="15" fill="rgb(232,125,11)" fg:x="221773" fg:w="61"/><text x="42.0388%" y="735.50"></text></g><g><title>map_id_up (54 samples, 0.01%)</title><rect x="41.7901%" y="709" width="0.0102%" height="15" fill="rgb(218,219,45)" fg:x="221780" fg:w="54"/><text x="42.0401%" y="719.50"></text></g><g><title>cp_new_stat (624 samples, 0.12%)</title><rect x="41.6961%" y="741" width="0.1176%" height="15" fill="rgb(216,102,54)" fg:x="221281" fg:w="624"/><text x="41.9461%" y="751.50"></text></g><g><title>from_kuid_munged (71 samples, 0.01%)</title><rect x="41.8003%" y="725" width="0.0134%" height="15" fill="rgb(250,228,7)" fg:x="221834" fg:w="71"/><text x="42.0503%" y="735.50"></text></g><g><title>_raw_spin_lock (158 samples, 0.03%)</title><rect x="41.9258%" y="709" width="0.0298%" height="15" fill="rgb(226,125,25)" fg:x="222500" fg:w="158"/><text x="42.1758%" y="719.50"></text></g><g><title>generic_fillattr (110 samples, 0.02%)</title><rect x="41.9557%" y="709" width="0.0207%" height="15" fill="rgb(224,165,27)" fg:x="222659" fg:w="110"/><text x="42.2057%" y="719.50"></text></g><g><title>btrfs_getattr (904 samples, 0.17%)</title><rect x="41.8314%" y="725" width="0.1703%" height="15" fill="rgb(233,86,3)" fg:x="221999" fg:w="904"/><text x="42.0814%" y="735.50"></text></g><g><title>inode_get_bytes (134 samples, 0.03%)</title><rect x="41.9764%" y="709" width="0.0252%" height="15" fill="rgb(228,116,20)" fg:x="222769" fg:w="134"/><text x="42.2264%" y="719.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="41.9800%" y="693" width="0.0217%" height="15" fill="rgb(209,192,17)" fg:x="222788" fg:w="115"/><text x="42.2300%" y="703.50"></text></g><g><title>kmem_cache_free (277 samples, 0.05%)</title><rect x="42.0237%" y="709" width="0.0522%" height="15" fill="rgb(224,88,34)" fg:x="223020" fg:w="277"/><text x="42.2737%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (62 samples, 0.01%)</title><rect x="42.0643%" y="693" width="0.0117%" height="15" fill="rgb(233,38,6)" fg:x="223235" fg:w="62"/><text x="42.3143%" y="703.50"></text></g><g><title>__legitimize_mnt (177 samples, 0.03%)</title><rect x="42.1097%" y="645" width="0.0334%" height="15" fill="rgb(212,59,30)" fg:x="223476" fg:w="177"/><text x="42.3597%" y="655.50"></text></g><g><title>__legitimize_path (341 samples, 0.06%)</title><rect x="42.1044%" y="661" width="0.0643%" height="15" fill="rgb(213,80,3)" fg:x="223448" fg:w="341"/><text x="42.3544%" y="671.50"></text></g><g><title>lockref_get_not_dead (136 samples, 0.03%)</title><rect x="42.1430%" y="645" width="0.0256%" height="15" fill="rgb(251,178,7)" fg:x="223653" fg:w="136"/><text x="42.3930%" y="655.50"></text></g><g><title>complete_walk (446 samples, 0.08%)</title><rect x="42.0923%" y="693" width="0.0840%" height="15" fill="rgb(213,154,26)" fg:x="223384" fg:w="446"/><text x="42.3423%" y="703.50"></text></g><g><title>try_to_unlazy (422 samples, 0.08%)</title><rect x="42.0969%" y="677" width="0.0795%" height="15" fill="rgb(238,165,49)" fg:x="223408" fg:w="422"/><text x="42.3469%" y="687.50"></text></g><g><title>btrfs_permission (223 samples, 0.04%)</title><rect x="43.0094%" y="661" width="0.0420%" height="15" fill="rgb(248,91,46)" fg:x="228251" fg:w="223"/><text x="43.2594%" y="671.50"></text></g><g><title>inode_permission.part.0 (2,735 samples, 0.52%)</title><rect x="42.7221%" y="677" width="0.5154%" height="15" fill="rgb(244,21,52)" fg:x="226726" fg:w="2735"/><text x="42.9721%" y="687.50"></text></g><g><title>generic_permission (987 samples, 0.19%)</title><rect x="43.0514%" y="661" width="0.1860%" height="15" fill="rgb(247,122,20)" fg:x="228474" fg:w="987"/><text x="43.3014%" y="671.50"></text></g><g><title>security_inode_permission (326 samples, 0.06%)</title><rect x="43.2374%" y="677" width="0.0614%" height="15" fill="rgb(218,27,9)" fg:x="229461" fg:w="326"/><text x="43.4874%" y="687.50"></text></g><g><title>lookup_fast (5,621 samples, 1.06%)</title><rect x="43.4971%" y="661" width="1.0592%" height="15" fill="rgb(246,7,6)" fg:x="230839" fg:w="5621"/><text x="43.7471%" y="671.50"></text></g><g><title>__d_lookup_rcu (4,416 samples, 0.83%)</title><rect x="43.7241%" y="645" width="0.8321%" height="15" fill="rgb(227,135,54)" fg:x="232044" fg:w="4416"/><text x="43.9741%" y="655.50"></text></g><g><title>page_put_link (91 samples, 0.02%)</title><rect x="44.5562%" y="661" width="0.0171%" height="15" fill="rgb(247,14,11)" fg:x="236460" fg:w="91"/><text x="44.8062%" y="671.50"></text></g><g><title>__lookup_mnt (67 samples, 0.01%)</title><rect x="44.8398%" y="645" width="0.0126%" height="15" fill="rgb(206,149,34)" fg:x="237965" fg:w="67"/><text x="45.0898%" y="655.50"></text></g><g><title>atime_needs_update (124 samples, 0.02%)</title><rect x="44.8526%" y="645" width="0.0234%" height="15" fill="rgb(227,228,4)" fg:x="238033" fg:w="124"/><text x="45.1026%" y="655.50"></text></g><g><title>current_time (71 samples, 0.01%)</title><rect x="44.8626%" y="629" width="0.0134%" height="15" fill="rgb(238,218,28)" fg:x="238086" fg:w="71"/><text x="45.1126%" y="639.50"></text></g><g><title>page_get_link (451 samples, 0.08%)</title><rect x="44.8817%" y="645" width="0.0850%" height="15" fill="rgb(252,86,40)" fg:x="238187" fg:w="451"/><text x="45.1317%" y="655.50"></text></g><g><title>pagecache_get_page (332 samples, 0.06%)</title><rect x="44.9041%" y="629" width="0.0626%" height="15" fill="rgb(251,225,11)" fg:x="238306" fg:w="332"/><text x="45.1541%" y="639.50"></text></g><g><title>find_get_entry (254 samples, 0.05%)</title><rect x="44.9188%" y="613" width="0.0479%" height="15" fill="rgb(206,46,49)" fg:x="238384" fg:w="254"/><text x="45.1688%" y="623.50"></text></g><g><title>link_path_walk.part.0 (14,824 samples, 2.79%)</title><rect x="42.1764%" y="693" width="2.7933%" height="15" fill="rgb(245,128,24)" fg:x="223830" fg:w="14824"/><text x="42.4264%" y="703.50">li..</text></g><g><title>walk_component (8,867 samples, 1.67%)</title><rect x="43.2989%" y="677" width="1.6708%" height="15" fill="rgb(219,177,34)" fg:x="229787" fg:w="8867"/><text x="43.5489%" y="687.50"></text></g><g><title>step_into (2,103 samples, 0.40%)</title><rect x="44.5734%" y="661" width="0.3963%" height="15" fill="rgb(218,60,48)" fg:x="236551" fg:w="2103"/><text x="44.8234%" y="671.50"></text></g><g><title>path_init (449 samples, 0.08%)</title><rect x="44.9697%" y="693" width="0.0846%" height="15" fill="rgb(221,11,5)" fg:x="238654" fg:w="449"/><text x="45.2197%" y="703.50"></text></g><g><title>nd_jump_root (363 samples, 0.07%)</title><rect x="44.9859%" y="677" width="0.0684%" height="15" fill="rgb(220,148,13)" fg:x="238740" fg:w="363"/><text x="45.2359%" y="687.50"></text></g><g><title>set_root (298 samples, 0.06%)</title><rect x="44.9981%" y="661" width="0.0562%" height="15" fill="rgb(210,16,3)" fg:x="238805" fg:w="298"/><text x="45.2481%" y="671.50"></text></g><g><title>lookup_fast (1,286 samples, 0.24%)</title><rect x="45.0703%" y="677" width="0.2423%" height="15" fill="rgb(236,80,2)" fg:x="239188" fg:w="1286"/><text x="45.3203%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,238 samples, 0.23%)</title><rect x="45.0793%" y="661" width="0.2333%" height="15" fill="rgb(239,129,19)" fg:x="239236" fg:w="1238"/><text x="45.3293%" y="671.50"></text></g><g><title>path_lookupat (17,230 samples, 3.25%)</title><rect x="42.0759%" y="709" width="3.2467%" height="15" fill="rgb(220,106,35)" fg:x="223297" fg:w="17230"/><text x="42.3259%" y="719.50">pat..</text></g><g><title>walk_component (1,382 samples, 0.26%)</title><rect x="45.0622%" y="693" width="0.2604%" height="15" fill="rgb(252,139,45)" fg:x="239145" fg:w="1382"/><text x="45.3122%" y="703.50"></text></g><g><title>filename_lookup (17,632 samples, 3.32%)</title><rect x="42.0017%" y="725" width="3.3224%" height="15" fill="rgb(229,8,36)" fg:x="222903" fg:w="17632"/><text x="42.2517%" y="735.50">fil..</text></g><g><title>lockref_put_or_lock (150 samples, 0.03%)</title><rect x="45.3537%" y="693" width="0.0283%" height="15" fill="rgb(230,126,33)" fg:x="240692" fg:w="150"/><text x="45.6037%" y="703.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="45.3601%" y="677" width="0.0219%" height="15" fill="rgb(239,140,21)" fg:x="240726" fg:w="116"/><text x="45.6101%" y="687.50"></text></g><g><title>path_put (255 samples, 0.05%)</title><rect x="45.3347%" y="725" width="0.0480%" height="15" fill="rgb(254,104,9)" fg:x="240591" fg:w="255"/><text x="45.5847%" y="735.50"></text></g><g><title>dput (244 samples, 0.05%)</title><rect x="45.3367%" y="709" width="0.0460%" height="15" fill="rgb(239,52,14)" fg:x="240602" fg:w="244"/><text x="45.5867%" y="719.50"></text></g><g><title>apparmor_inode_getattr (110 samples, 0.02%)</title><rect x="45.4946%" y="709" width="0.0207%" height="15" fill="rgb(208,227,44)" fg:x="241440" fg:w="110"/><text x="45.7446%" y="719.50"></text></g><g><title>security_inode_getattr (1,121 samples, 0.21%)</title><rect x="45.3827%" y="725" width="0.2112%" height="15" fill="rgb(246,18,19)" fg:x="240846" fg:w="1121"/><text x="45.6327%" y="735.50"></text></g><g><title>tomoyo_path_perm (411 samples, 0.08%)</title><rect x="45.5165%" y="709" width="0.0774%" height="15" fill="rgb(235,228,25)" fg:x="241556" fg:w="411"/><text x="45.7665%" y="719.50"></text></g><g><title>tomoyo_init_request_info (243 samples, 0.05%)</title><rect x="45.5481%" y="693" width="0.0458%" height="15" fill="rgb(240,156,20)" fg:x="241724" fg:w="243"/><text x="45.7981%" y="703.50"></text></g><g><title>tomoyo_domain (72 samples, 0.01%)</title><rect x="45.5804%" y="677" width="0.0136%" height="15" fill="rgb(224,8,20)" fg:x="241895" fg:w="72"/><text x="45.8304%" y="687.50"></text></g><g><title>memcg_slab_post_alloc_hook (54 samples, 0.01%)</title><rect x="45.6829%" y="677" width="0.0102%" height="15" fill="rgb(214,12,52)" fg:x="242439" fg:w="54"/><text x="45.9329%" y="687.50"></text></g><g><title>memset_erms (731 samples, 0.14%)</title><rect x="45.6940%" y="677" width="0.1377%" height="15" fill="rgb(211,220,47)" fg:x="242498" fg:w="731"/><text x="45.9440%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,335 samples, 0.25%)</title><rect x="45.6226%" y="693" width="0.2516%" height="15" fill="rgb(250,173,5)" fg:x="242119" fg:w="1335"/><text x="45.8726%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (225 samples, 0.04%)</title><rect x="45.8317%" y="677" width="0.0424%" height="15" fill="rgb(250,125,52)" fg:x="243229" fg:w="225"/><text x="46.0817%" y="687.50"></text></g><g><title>__check_heap_object (121 samples, 0.02%)</title><rect x="46.0324%" y="661" width="0.0228%" height="15" fill="rgb(209,133,18)" fg:x="244294" fg:w="121"/><text x="46.2824%" y="671.50"></text></g><g><title>__virt_addr_valid (374 samples, 0.07%)</title><rect x="46.0552%" y="661" width="0.0705%" height="15" fill="rgb(216,173,22)" fg:x="244415" fg:w="374"/><text x="46.3052%" y="671.50"></text></g><g><title>__check_object_size (598 samples, 0.11%)</title><rect x="46.0149%" y="677" width="0.1127%" height="15" fill="rgb(205,3,22)" fg:x="244201" fg:w="598"/><text x="46.2649%" y="687.50"></text></g><g><title>user_path_at_empty (2,833 samples, 0.53%)</title><rect x="45.5939%" y="725" width="0.5338%" height="15" fill="rgb(248,22,20)" fg:x="241967" fg:w="2833"/><text x="45.8439%" y="735.50"></text></g><g><title>getname_flags.part.0 (2,795 samples, 0.53%)</title><rect x="45.6011%" y="709" width="0.5267%" height="15" fill="rgb(233,6,29)" fg:x="242005" fg:w="2795"/><text x="45.8511%" y="719.50"></text></g><g><title>strncpy_from_user (1,346 samples, 0.25%)</title><rect x="45.8741%" y="693" width="0.2536%" height="15" fill="rgb(240,22,54)" fg:x="243454" fg:w="1346"/><text x="46.1241%" y="703.50"></text></g><g><title>__do_sys_newlstat (23,763 samples, 4.48%)</title><rect x="41.6851%" y="757" width="4.4777%" height="15" fill="rgb(231,133,32)" fg:x="221223" fg:w="23763"/><text x="41.9351%" y="767.50">__do_..</text></g><g><title>vfs_statx (23,081 samples, 4.35%)</title><rect x="41.8136%" y="741" width="4.3492%" height="15" fill="rgb(248,193,4)" fg:x="221905" fg:w="23081"/><text x="42.0636%" y="751.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (186 samples, 0.04%)</title><rect x="46.1278%" y="725" width="0.0350%" height="15" fill="rgb(211,178,46)" fg:x="244800" fg:w="186"/><text x="46.3778%" y="735.50"></text></g><g><title>do_syscall_64 (23,855 samples, 4.50%)</title><rect x="41.6755%" y="773" width="4.4950%" height="15" fill="rgb(224,5,42)" fg:x="221172" fg:w="23855"/><text x="41.9255%" y="783.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (24,004 samples, 4.52%)</title><rect x="41.6623%" y="789" width="4.5231%" height="15" fill="rgb(239,176,25)" fg:x="221102" fg:w="24004"/><text x="41.9123%" y="799.50">entry..</text></g><g><title>syscall_exit_to_user_mode (79 samples, 0.01%)</title><rect x="46.1705%" y="773" width="0.0149%" height="15" fill="rgb(245,187,50)" fg:x="245027" fg:w="79"/><text x="46.4205%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (56 samples, 0.01%)</title><rect x="46.1749%" y="757" width="0.0106%" height="15" fill="rgb(248,24,15)" fg:x="245050" fg:w="56"/><text x="46.4249%" y="767.50"></text></g><g><title>__GI___lxstat (24,655 samples, 4.65%)</title><rect x="41.5659%" y="805" width="4.6458%" height="15" fill="rgb(205,166,13)" fg:x="220590" fg:w="24655"/><text x="41.8159%" y="815.50">__GI_..</text></g><g><title>syscall_return_via_sysret (139 samples, 0.03%)</title><rect x="46.1854%" y="789" width="0.0262%" height="15" fill="rgb(208,114,23)" fg:x="245106" fg:w="139"/><text x="46.4354%" y="799.50"></text></g><g><title>generic_bin_search.constprop.0 (91 samples, 0.02%)</title><rect x="46.2683%" y="645" width="0.0171%" height="15" fill="rgb(239,127,18)" fg:x="245546" fg:w="91"/><text x="46.5183%" y="655.50"></text></g><g><title>__radix_tree_lookup (76 samples, 0.01%)</title><rect x="46.2958%" y="613" width="0.0143%" height="15" fill="rgb(219,154,28)" fg:x="245692" fg:w="76"/><text x="46.5458%" y="623.50"></text></g><g><title>find_extent_buffer (134 samples, 0.03%)</title><rect x="46.2911%" y="629" width="0.0252%" height="15" fill="rgb(225,157,23)" fg:x="245667" fg:w="134"/><text x="46.5411%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (180 samples, 0.03%)</title><rect x="46.2855%" y="645" width="0.0339%" height="15" fill="rgb(219,8,6)" fg:x="245637" fg:w="180"/><text x="46.5355%" y="655.50"></text></g><g><title>btrfs_search_slot (424 samples, 0.08%)</title><rect x="46.2404%" y="661" width="0.0799%" height="15" fill="rgb(212,47,6)" fg:x="245398" fg:w="424"/><text x="46.4904%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (436 samples, 0.08%)</title><rect x="46.2401%" y="677" width="0.0822%" height="15" fill="rgb(224,190,4)" fg:x="245396" fg:w="436"/><text x="46.4901%" y="687.50"></text></g><g><title>btrfs_lookup (520 samples, 0.10%)</title><rect x="46.2297%" y="709" width="0.0980%" height="15" fill="rgb(239,183,29)" fg:x="245341" fg:w="520"/><text x="46.4797%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (520 samples, 0.10%)</title><rect x="46.2297%" y="693" width="0.0980%" height="15" fill="rgb(213,57,7)" fg:x="245341" fg:w="520"/><text x="46.4797%" y="703.50"></text></g><g><title>kmem_cache_alloc (87 samples, 0.02%)</title><rect x="46.3299%" y="677" width="0.0164%" height="15" fill="rgb(216,148,1)" fg:x="245873" fg:w="87"/><text x="46.5799%" y="687.50"></text></g><g><title>__d_alloc (99 samples, 0.02%)</title><rect x="46.3282%" y="693" width="0.0187%" height="15" fill="rgb(236,182,29)" fg:x="245864" fg:w="99"/><text x="46.5782%" y="703.50"></text></g><g><title>d_alloc (109 samples, 0.02%)</title><rect x="46.3277%" y="709" width="0.0205%" height="15" fill="rgb(244,120,48)" fg:x="245861" fg:w="109"/><text x="46.5777%" y="719.50"></text></g><g><title>__lookup_hash (689 samples, 0.13%)</title><rect x="46.2295%" y="725" width="0.1298%" height="15" fill="rgb(206,71,34)" fg:x="245340" fg:w="689"/><text x="46.4795%" y="735.50"></text></g><g><title>inode_permission.part.0 (81 samples, 0.02%)</title><rect x="46.3891%" y="677" width="0.0153%" height="15" fill="rgb(242,32,6)" fg:x="246187" fg:w="81"/><text x="46.6391%" y="687.50"></text></g><g><title>lookup_fast (208 samples, 0.04%)</title><rect x="46.4125%" y="661" width="0.0392%" height="15" fill="rgb(241,35,3)" fg:x="246311" fg:w="208"/><text x="46.6625%" y="671.50"></text></g><g><title>__d_lookup_rcu (166 samples, 0.03%)</title><rect x="46.4204%" y="645" width="0.0313%" height="15" fill="rgb(222,62,19)" fg:x="246353" fg:w="166"/><text x="46.6704%" y="655.50"></text></g><g><title>link_path_walk.part.0 (481 samples, 0.09%)</title><rect x="46.3676%" y="693" width="0.0906%" height="15" fill="rgb(223,110,41)" fg:x="246073" fg:w="481"/><text x="46.6176%" y="703.50"></text></g><g><title>walk_component (276 samples, 0.05%)</title><rect x="46.4063%" y="677" width="0.0520%" height="15" fill="rgb(208,224,4)" fg:x="246278" fg:w="276"/><text x="46.6563%" y="687.50"></text></g><g><title>filename_parentat (544 samples, 0.10%)</title><rect x="46.3601%" y="725" width="0.1025%" height="15" fill="rgb(241,137,19)" fg:x="246033" fg:w="544"/><text x="46.6101%" y="735.50"></text></g><g><title>path_parentat (538 samples, 0.10%)</title><rect x="46.3612%" y="709" width="0.1014%" height="15" fill="rgb(244,24,17)" fg:x="246039" fg:w="538"/><text x="46.6112%" y="719.50"></text></g><g><title>filename_create (1,277 samples, 0.24%)</title><rect x="46.2284%" y="741" width="0.2406%" height="15" fill="rgb(245,178,49)" fg:x="245334" fg:w="1277"/><text x="46.4784%" y="751.50"></text></g><g><title>kmem_cache_alloc (54 samples, 0.01%)</title><rect x="46.4709%" y="725" width="0.0102%" height="15" fill="rgb(219,160,38)" fg:x="246621" fg:w="54"/><text x="46.7209%" y="735.50"></text></g><g><title>getname_flags.part.0 (116 samples, 0.02%)</title><rect x="46.4696%" y="741" width="0.0219%" height="15" fill="rgb(228,137,14)" fg:x="246614" fg:w="116"/><text x="46.7196%" y="751.50"></text></g><g><title>strncpy_from_user (55 samples, 0.01%)</title><rect x="46.4811%" y="725" width="0.0104%" height="15" fill="rgb(237,134,11)" fg:x="246675" fg:w="55"/><text x="46.7311%" y="735.50"></text></g><g><title>__btrfs_end_transaction (65 samples, 0.01%)</title><rect x="46.4995%" y="709" width="0.0122%" height="15" fill="rgb(211,126,44)" fg:x="246773" fg:w="65"/><text x="46.7495%" y="719.50"></text></g><g><title>btrfs_insert_delayed_dir_index (145 samples, 0.03%)</title><rect x="46.5155%" y="677" width="0.0273%" height="15" fill="rgb(226,171,33)" fg:x="246858" fg:w="145"/><text x="46.7655%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.01%)</title><rect x="46.5798%" y="629" width="0.0138%" height="15" fill="rgb(253,99,13)" fg:x="247199" fg:w="73"/><text x="46.8298%" y="639.50"></text></g><g><title>find_extent_buffer (72 samples, 0.01%)</title><rect x="46.5983%" y="613" width="0.0136%" height="15" fill="rgb(244,48,7)" fg:x="247297" fg:w="72"/><text x="46.8483%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (104 samples, 0.02%)</title><rect x="46.5936%" y="629" width="0.0196%" height="15" fill="rgb(244,217,54)" fg:x="247272" fg:w="104"/><text x="46.8436%" y="639.50"></text></g><g><title>btrfs_search_slot (368 samples, 0.07%)</title><rect x="46.5585%" y="645" width="0.0693%" height="15" fill="rgb(224,15,18)" fg:x="247086" fg:w="368"/><text x="46.8085%" y="655.50"></text></g><g><title>btrfs_get_token_32 (139 samples, 0.03%)</title><rect x="46.6407%" y="629" width="0.0262%" height="15" fill="rgb(244,99,12)" fg:x="247522" fg:w="139"/><text x="46.8907%" y="639.50"></text></g><g><title>btrfs_set_token_32 (145 samples, 0.03%)</title><rect x="46.6746%" y="629" width="0.0273%" height="15" fill="rgb(233,226,8)" fg:x="247702" fg:w="145"/><text x="46.9246%" y="639.50"></text></g><g><title>insert_with_overflow (874 samples, 0.16%)</title><rect x="46.5570%" y="677" width="0.1647%" height="15" fill="rgb(229,211,3)" fg:x="247078" fg:w="874"/><text x="46.8070%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (867 samples, 0.16%)</title><rect x="46.5583%" y="661" width="0.1634%" height="15" fill="rgb(216,140,21)" fg:x="247085" fg:w="867"/><text x="46.8083%" y="671.50"></text></g><g><title>setup_items_for_insert (498 samples, 0.09%)</title><rect x="46.6279%" y="645" width="0.0938%" height="15" fill="rgb(234,122,30)" fg:x="247454" fg:w="498"/><text x="46.8779%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (1,145 samples, 0.22%)</title><rect x="46.5138%" y="693" width="0.2158%" height="15" fill="rgb(236,25,46)" fg:x="246849" fg:w="1145"/><text x="46.7638%" y="703.50"></text></g><g><title>btrfs_update_inode (78 samples, 0.01%)</title><rect x="46.7296%" y="693" width="0.0147%" height="15" fill="rgb(217,52,54)" fg:x="247994" fg:w="78"/><text x="46.9796%" y="703.50"></text></g><g><title>btrfs_add_link (1,235 samples, 0.23%)</title><rect x="46.5118%" y="709" width="0.2327%" height="15" fill="rgb(222,29,26)" fg:x="246838" fg:w="1235"/><text x="46.7618%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (60 samples, 0.01%)</title><rect x="46.7901%" y="661" width="0.0113%" height="15" fill="rgb(216,177,29)" fg:x="248315" fg:w="60"/><text x="47.0401%" y="671.50"></text></g><g><title>find_extent_buffer (82 samples, 0.02%)</title><rect x="46.8074%" y="645" width="0.0155%" height="15" fill="rgb(247,136,51)" fg:x="248407" fg:w="82"/><text x="47.0574%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (124 samples, 0.02%)</title><rect x="46.8014%" y="661" width="0.0234%" height="15" fill="rgb(231,47,47)" fg:x="248375" fg:w="124"/><text x="47.0514%" y="671.50"></text></g><g><title>__push_leaf_left (78 samples, 0.01%)</title><rect x="46.8355%" y="629" width="0.0147%" height="15" fill="rgb(211,192,36)" fg:x="248556" fg:w="78"/><text x="47.0855%" y="639.50"></text></g><g><title>push_leaf_left (93 samples, 0.02%)</title><rect x="46.8346%" y="645" width="0.0175%" height="15" fill="rgb(229,156,32)" fg:x="248551" fg:w="93"/><text x="47.0846%" y="655.50"></text></g><g><title>split_leaf (147 samples, 0.03%)</title><rect x="46.8248%" y="661" width="0.0277%" height="15" fill="rgb(248,213,20)" fg:x="248499" fg:w="147"/><text x="47.0748%" y="671.50"></text></g><g><title>btrfs_search_slot (464 samples, 0.09%)</title><rect x="46.7711%" y="677" width="0.0874%" height="15" fill="rgb(217,64,7)" fg:x="248214" fg:w="464"/><text x="47.0211%" y="687.50"></text></g><g><title>btrfs_get_token_32 (62 samples, 0.01%)</title><rect x="46.8677%" y="661" width="0.0117%" height="15" fill="rgb(232,142,8)" fg:x="248727" fg:w="62"/><text x="47.1177%" y="671.50"></text></g><g><title>btrfs_set_token_32 (75 samples, 0.01%)</title><rect x="46.8871%" y="661" width="0.0141%" height="15" fill="rgb(224,92,44)" fg:x="248830" fg:w="75"/><text x="47.1371%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (745 samples, 0.14%)</title><rect x="46.7703%" y="693" width="0.1404%" height="15" fill="rgb(214,169,17)" fg:x="248210" fg:w="745"/><text x="47.0203%" y="703.50"></text></g><g><title>setup_items_for_insert (277 samples, 0.05%)</title><rect x="46.8585%" y="677" width="0.0522%" height="15" fill="rgb(210,59,37)" fg:x="248678" fg:w="277"/><text x="47.1085%" y="687.50"></text></g><g><title>fill_inode_item (84 samples, 0.02%)</title><rect x="46.9194%" y="693" width="0.0158%" height="15" fill="rgb(214,116,48)" fg:x="249001" fg:w="84"/><text x="47.1694%" y="703.50"></text></g><g><title>inode_tree_add (92 samples, 0.02%)</title><rect x="46.9357%" y="693" width="0.0173%" height="15" fill="rgb(244,191,6)" fg:x="249088" fg:w="92"/><text x="47.1857%" y="703.50"></text></g><g><title>insert_inode_locked4 (59 samples, 0.01%)</title><rect x="46.9531%" y="693" width="0.0111%" height="15" fill="rgb(241,50,52)" fg:x="249180" fg:w="59"/><text x="47.2031%" y="703.50"></text></g><g><title>inode_insert5 (59 samples, 0.01%)</title><rect x="46.9531%" y="677" width="0.0111%" height="15" fill="rgb(236,75,39)" fg:x="249180" fg:w="59"/><text x="47.2031%" y="687.50"></text></g><g><title>btrfs_alloc_inode (120 samples, 0.02%)</title><rect x="46.9748%" y="661" width="0.0226%" height="15" fill="rgb(236,99,0)" fg:x="249295" fg:w="120"/><text x="47.2248%" y="671.50"></text></g><g><title>kmem_cache_alloc (90 samples, 0.02%)</title><rect x="46.9804%" y="645" width="0.0170%" height="15" fill="rgb(207,202,15)" fg:x="249325" fg:w="90"/><text x="47.2304%" y="655.50"></text></g><g><title>alloc_inode (168 samples, 0.03%)</title><rect x="46.9744%" y="677" width="0.0317%" height="15" fill="rgb(233,207,14)" fg:x="249293" fg:w="168"/><text x="47.2244%" y="687.50"></text></g><g><title>new_inode (206 samples, 0.04%)</title><rect x="46.9693%" y="693" width="0.0388%" height="15" fill="rgb(226,27,51)" fg:x="249266" fg:w="206"/><text x="47.2193%" y="703.50"></text></g><g><title>btrfs_new_inode (1,347 samples, 0.25%)</title><rect x="46.7562%" y="709" width="0.2538%" height="15" fill="rgb(206,104,42)" fg:x="248135" fg:w="1347"/><text x="47.0062%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (103 samples, 0.02%)</title><rect x="47.0241%" y="677" width="0.0194%" height="15" fill="rgb(212,225,4)" fg:x="249557" fg:w="103"/><text x="47.2741%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (192 samples, 0.04%)</title><rect x="47.0117%" y="693" width="0.0362%" height="15" fill="rgb(233,96,42)" fg:x="249491" fg:w="192"/><text x="47.2617%" y="703.50"></text></g><g><title>btrfs_update_inode (215 samples, 0.04%)</title><rect x="47.0102%" y="709" width="0.0405%" height="15" fill="rgb(229,21,32)" fg:x="249483" fg:w="215"/><text x="47.2602%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (83 samples, 0.02%)</title><rect x="47.0633%" y="693" width="0.0156%" height="15" fill="rgb(226,216,24)" fg:x="249765" fg:w="83"/><text x="47.3133%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="47.0650%" y="677" width="0.0139%" height="15" fill="rgb(221,163,17)" fg:x="249774" fg:w="74"/><text x="47.3150%" y="687.50"></text></g><g><title>__reserve_bytes (73 samples, 0.01%)</title><rect x="47.0652%" y="661" width="0.0138%" height="15" fill="rgb(216,216,42)" fg:x="249775" fg:w="73"/><text x="47.3152%" y="671.50"></text></g><g><title>btrfs_mkdir (3,127 samples, 0.59%)</title><rect x="46.4992%" y="725" width="0.5892%" height="15" fill="rgb(240,118,7)" fg:x="246771" fg:w="3127"/><text x="46.7492%" y="735.50"></text></g><g><title>start_transaction (155 samples, 0.03%)</title><rect x="47.0592%" y="709" width="0.0292%" height="15" fill="rgb(221,67,37)" fg:x="249743" fg:w="155"/><text x="47.3092%" y="719.50"></text></g><g><title>do_mkdirat (4,631 samples, 0.87%)</title><rect x="46.2178%" y="757" width="0.8726%" height="15" fill="rgb(241,32,44)" fg:x="245278" fg:w="4631"/><text x="46.4678%" y="767.50"></text></g><g><title>vfs_mkdir (3,147 samples, 0.59%)</title><rect x="46.4975%" y="741" width="0.5930%" height="15" fill="rgb(235,204,43)" fg:x="246762" fg:w="3147"/><text x="46.7475%" y="751.50"></text></g><g><title>do_syscall_64 (4,637 samples, 0.87%)</title><rect x="46.2173%" y="773" width="0.8738%" height="15" fill="rgb(213,116,10)" fg:x="245275" fg:w="4637"/><text x="46.4673%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,647 samples, 0.88%)</title><rect x="46.2167%" y="789" width="0.8756%" height="15" fill="rgb(239,15,48)" fg:x="245272" fg:w="4647"/><text x="46.4667%" y="799.50"></text></g><g><title>__GI___mkdir (4,683 samples, 0.88%)</title><rect x="46.2116%" y="805" width="0.8824%" height="15" fill="rgb(207,123,36)" fg:x="245245" fg:w="4683"/><text x="46.4616%" y="815.50"></text></g><g><title>btrfs_filldir (388 samples, 0.07%)</title><rect x="47.1809%" y="693" width="0.0731%" height="15" fill="rgb(209,103,30)" fg:x="250389" fg:w="388"/><text x="47.4309%" y="703.50"></text></g><g><title>filldir64 (351 samples, 0.07%)</title><rect x="47.1879%" y="677" width="0.0661%" height="15" fill="rgb(238,100,19)" fg:x="250426" fg:w="351"/><text x="47.4379%" y="687.50"></text></g><g><title>verify_dirent_name (120 samples, 0.02%)</title><rect x="47.2314%" y="661" width="0.0226%" height="15" fill="rgb(244,30,14)" fg:x="250657" fg:w="120"/><text x="47.4814%" y="671.50"></text></g><g><title>memchr (85 samples, 0.02%)</title><rect x="47.2380%" y="645" width="0.0160%" height="15" fill="rgb(249,174,6)" fg:x="250692" fg:w="85"/><text x="47.4880%" y="655.50"></text></g><g><title>btrfs_get_16 (62 samples, 0.01%)</title><rect x="47.2565%" y="693" width="0.0117%" height="15" fill="rgb(235,213,41)" fg:x="250790" fg:w="62"/><text x="47.5065%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (78 samples, 0.01%)</title><rect x="47.2802%" y="693" width="0.0147%" height="15" fill="rgb(213,118,6)" fg:x="250916" fg:w="78"/><text x="47.5302%" y="703.50"></text></g><g><title>btrfs_readdir_get_delayed_items (95 samples, 0.02%)</title><rect x="47.2951%" y="693" width="0.0179%" height="15" fill="rgb(235,44,51)" fg:x="250995" fg:w="95"/><text x="47.5451%" y="703.50"></text></g><g><title>btrfs_release_path (87 samples, 0.02%)</title><rect x="47.3139%" y="693" width="0.0164%" height="15" fill="rgb(217,9,53)" fg:x="251095" fg:w="87"/><text x="47.5639%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (189 samples, 0.04%)</title><rect x="47.3618%" y="677" width="0.0356%" height="15" fill="rgb(237,172,34)" fg:x="251349" fg:w="189"/><text x="47.6118%" y="687.50"></text></g><g><title>__radix_tree_lookup (133 samples, 0.03%)</title><rect x="47.4166%" y="645" width="0.0251%" height="15" fill="rgb(206,206,11)" fg:x="251640" fg:w="133"/><text x="47.6666%" y="655.50"></text></g><g><title>find_extent_buffer (222 samples, 0.04%)</title><rect x="47.4106%" y="661" width="0.0418%" height="15" fill="rgb(214,149,29)" fg:x="251608" fg:w="222"/><text x="47.6606%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (55 samples, 0.01%)</title><rect x="47.4421%" y="645" width="0.0104%" height="15" fill="rgb(208,123,3)" fg:x="251775" fg:w="55"/><text x="47.6921%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (315 samples, 0.06%)</title><rect x="47.3974%" y="677" width="0.0594%" height="15" fill="rgb(229,126,4)" fg:x="251538" fg:w="315"/><text x="47.6474%" y="687.50"></text></g><g><title>btrfs_search_slot (691 samples, 0.13%)</title><rect x="47.3303%" y="693" width="0.1302%" height="15" fill="rgb(222,92,36)" fg:x="251182" fg:w="691"/><text x="47.5803%" y="703.50"></text></g><g><title>kmem_cache_alloc (57 samples, 0.01%)</title><rect x="47.4813%" y="693" width="0.0107%" height="15" fill="rgb(216,39,41)" fg:x="251983" fg:w="57"/><text x="47.7313%" y="703.50"></text></g><g><title>btrfs_real_readdir (2,182 samples, 0.41%)</title><rect x="47.1494%" y="709" width="0.4112%" height="15" fill="rgb(253,127,28)" fg:x="250222" fg:w="2182"/><text x="47.3994%" y="719.50"></text></g><g><title>read_extent_buffer (340 samples, 0.06%)</title><rect x="47.4965%" y="693" width="0.0641%" height="15" fill="rgb(249,152,51)" fg:x="252064" fg:w="340"/><text x="47.7465%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (65 samples, 0.01%)</title><rect x="47.5962%" y="645" width="0.0122%" height="15" fill="rgb(209,123,42)" fg:x="252593" fg:w="65"/><text x="47.8462%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (62 samples, 0.01%)</title><rect x="47.5968%" y="629" width="0.0117%" height="15" fill="rgb(241,118,22)" fg:x="252596" fg:w="62"/><text x="47.8468%" y="639.50"></text></g><g><title>__reserve_bytes (61 samples, 0.01%)</title><rect x="47.5969%" y="613" width="0.0115%" height="15" fill="rgb(208,25,7)" fg:x="252597" fg:w="61"/><text x="47.8469%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (141 samples, 0.03%)</title><rect x="47.5871%" y="661" width="0.0266%" height="15" fill="rgb(243,144,39)" fg:x="252545" fg:w="141"/><text x="47.8371%" y="671.50"></text></g><g><title>btrfs_update_inode (161 samples, 0.03%)</title><rect x="47.5866%" y="677" width="0.0303%" height="15" fill="rgb(250,50,5)" fg:x="252542" fg:w="161"/><text x="47.8366%" y="687.50"></text></g><g><title>btrfs_dirty_inode (263 samples, 0.05%)</title><rect x="47.5821%" y="693" width="0.0496%" height="15" fill="rgb(207,67,11)" fg:x="252518" fg:w="263"/><text x="47.8321%" y="703.50"></text></g><g><title>start_transaction (71 samples, 0.01%)</title><rect x="47.6182%" y="677" width="0.0134%" height="15" fill="rgb(245,204,40)" fg:x="252710" fg:w="71"/><text x="47.8682%" y="687.50"></text></g><g><title>touch_atime (310 samples, 0.06%)</title><rect x="47.5740%" y="709" width="0.0584%" height="15" fill="rgb(238,228,24)" fg:x="252475" fg:w="310"/><text x="47.8240%" y="719.50"></text></g><g><title>iterate_dir (2,593 samples, 0.49%)</title><rect x="47.1464%" y="725" width="0.4886%" height="15" fill="rgb(217,116,22)" fg:x="250206" fg:w="2593"/><text x="47.3964%" y="735.50"></text></g><g><title>do_syscall_64 (2,661 samples, 0.50%)</title><rect x="47.1351%" y="757" width="0.5014%" height="15" fill="rgb(234,98,12)" fg:x="250146" fg:w="2661"/><text x="47.3851%" y="767.50"></text></g><g><title>__x64_sys_getdents64 (2,659 samples, 0.50%)</title><rect x="47.1355%" y="741" width="0.5010%" height="15" fill="rgb(242,170,50)" fg:x="250148" fg:w="2659"/><text x="47.3855%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,670 samples, 0.50%)</title><rect x="47.1342%" y="773" width="0.5031%" height="15" fill="rgb(235,7,5)" fg:x="250141" fg:w="2670"/><text x="47.3842%" y="783.50"></text></g><g><title>__GI___readdir64 (2,887 samples, 0.54%)</title><rect x="47.0940%" y="805" width="0.5440%" height="15" fill="rgb(241,114,28)" fg:x="249928" fg:w="2887"/><text x="47.3440%" y="815.50"></text></g><g><title>__GI___getdents64 (2,718 samples, 0.51%)</title><rect x="47.1259%" y="789" width="0.5122%" height="15" fill="rgb(246,112,42)" fg:x="250097" fg:w="2718"/><text x="47.3759%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (331 samples, 0.06%)</title><rect x="47.7187%" y="789" width="0.0624%" height="15" fill="rgb(248,228,14)" fg:x="253243" fg:w="331"/><text x="47.9687%" y="799.50"></text></g><g><title>_copy_to_user (343 samples, 0.06%)</title><rect x="47.8415%" y="725" width="0.0646%" height="15" fill="rgb(208,133,18)" fg:x="253895" fg:w="343"/><text x="48.0915%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (307 samples, 0.06%)</title><rect x="47.8483%" y="709" width="0.0578%" height="15" fill="rgb(207,35,49)" fg:x="253931" fg:w="307"/><text x="48.0983%" y="719.50"></text></g><g><title>cp_new_stat (528 samples, 0.10%)</title><rect x="47.8233%" y="741" width="0.0995%" height="15" fill="rgb(205,68,36)" fg:x="253798" fg:w="528"/><text x="48.0733%" y="751.50"></text></g><g><title>from_kuid_munged (58 samples, 0.01%)</title><rect x="47.9118%" y="725" width="0.0109%" height="15" fill="rgb(245,62,40)" fg:x="254268" fg:w="58"/><text x="48.1618%" y="735.50"></text></g><g><title>_raw_spin_lock (118 samples, 0.02%)</title><rect x="48.0285%" y="709" width="0.0222%" height="15" fill="rgb(228,27,24)" fg:x="254887" fg:w="118"/><text x="48.2785%" y="719.50"></text></g><g><title>generic_fillattr (150 samples, 0.03%)</title><rect x="48.0513%" y="709" width="0.0283%" height="15" fill="rgb(253,19,12)" fg:x="255008" fg:w="150"/><text x="48.3013%" y="719.50"></text></g><g><title>btrfs_getattr (823 samples, 0.16%)</title><rect x="47.9486%" y="725" width="0.1551%" height="15" fill="rgb(232,28,20)" fg:x="254463" fg:w="823"/><text x="48.1986%" y="735.50"></text></g><g><title>inode_get_bytes (128 samples, 0.02%)</title><rect x="48.0795%" y="709" width="0.0241%" height="15" fill="rgb(218,35,51)" fg:x="255158" fg:w="128"/><text x="48.3295%" y="719.50"></text></g><g><title>_raw_spin_lock (101 samples, 0.02%)</title><rect x="48.0846%" y="693" width="0.0190%" height="15" fill="rgb(212,90,40)" fg:x="255185" fg:w="101"/><text x="48.3346%" y="703.50"></text></g><g><title>kmem_cache_free (428 samples, 0.08%)</title><rect x="48.1281%" y="709" width="0.0806%" height="15" fill="rgb(220,172,12)" fg:x="255416" fg:w="428"/><text x="48.3781%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (101 samples, 0.02%)</title><rect x="48.1897%" y="693" width="0.0190%" height="15" fill="rgb(226,159,20)" fg:x="255743" fg:w="101"/><text x="48.4397%" y="703.50"></text></g><g><title>__legitimize_mnt (171 samples, 0.03%)</title><rect x="48.2440%" y="645" width="0.0322%" height="15" fill="rgb(234,205,16)" fg:x="256031" fg:w="171"/><text x="48.4940%" y="655.50"></text></g><g><title>__legitimize_path (324 samples, 0.06%)</title><rect x="48.2401%" y="661" width="0.0611%" height="15" fill="rgb(207,9,39)" fg:x="256010" fg:w="324"/><text x="48.4901%" y="671.50"></text></g><g><title>lockref_get_not_dead (132 samples, 0.02%)</title><rect x="48.2762%" y="645" width="0.0249%" height="15" fill="rgb(249,143,15)" fg:x="256202" fg:w="132"/><text x="48.5262%" y="655.50"></text></g><g><title>complete_walk (414 samples, 0.08%)</title><rect x="48.2301%" y="693" width="0.0780%" height="15" fill="rgb(253,133,29)" fg:x="255957" fg:w="414"/><text x="48.4801%" y="703.50"></text></g><g><title>try_to_unlazy (399 samples, 0.08%)</title><rect x="48.2329%" y="677" width="0.0752%" height="15" fill="rgb(221,187,0)" fg:x="255972" fg:w="399"/><text x="48.4829%" y="687.50"></text></g><g><title>btrfs_permission (280 samples, 0.05%)</title><rect x="49.4066%" y="661" width="0.0528%" height="15" fill="rgb(205,204,26)" fg:x="262201" fg:w="280"/><text x="49.6566%" y="671.50"></text></g><g><title>inode_permission.part.0 (3,604 samples, 0.68%)</title><rect x="49.0279%" y="677" width="0.6791%" height="15" fill="rgb(224,68,54)" fg:x="260191" fg:w="3604"/><text x="49.2779%" y="687.50"></text></g><g><title>generic_permission (1,314 samples, 0.25%)</title><rect x="49.4594%" y="661" width="0.2476%" height="15" fill="rgb(209,67,4)" fg:x="262481" fg:w="1314"/><text x="49.7094%" y="671.50"></text></g><g><title>security_inode_permission (465 samples, 0.09%)</title><rect x="49.7070%" y="677" width="0.0876%" height="15" fill="rgb(228,229,18)" fg:x="263795" fg:w="465"/><text x="49.9570%" y="687.50"></text></g><g><title>lookup_fast (7,024 samples, 1.32%)</title><rect x="50.0614%" y="661" width="1.3235%" height="15" fill="rgb(231,89,13)" fg:x="265676" fg:w="7024"/><text x="50.3114%" y="671.50"></text></g><g><title>__d_lookup_rcu (5,393 samples, 1.02%)</title><rect x="50.3688%" y="645" width="1.0162%" height="15" fill="rgb(210,182,18)" fg:x="267307" fg:w="5393"/><text x="50.6188%" y="655.50"></text></g><g><title>page_put_link (95 samples, 0.02%)</title><rect x="51.3850%" y="661" width="0.0179%" height="15" fill="rgb(240,105,2)" fg:x="272700" fg:w="95"/><text x="51.6350%" y="671.50"></text></g><g><title>__lookup_mnt (87 samples, 0.02%)</title><rect x="51.7564%" y="645" width="0.0164%" height="15" fill="rgb(207,170,50)" fg:x="274671" fg:w="87"/><text x="52.0064%" y="655.50"></text></g><g><title>atime_needs_update (126 samples, 0.02%)</title><rect x="51.7735%" y="645" width="0.0237%" height="15" fill="rgb(232,133,24)" fg:x="274762" fg:w="126"/><text x="52.0235%" y="655.50"></text></g><g><title>current_time (84 samples, 0.02%)</title><rect x="51.7814%" y="629" width="0.0158%" height="15" fill="rgb(235,166,27)" fg:x="274804" fg:w="84"/><text x="52.0314%" y="639.50"></text></g><g><title>page_get_link (315 samples, 0.06%)</title><rect x="51.8027%" y="645" width="0.0594%" height="15" fill="rgb(209,19,13)" fg:x="274917" fg:w="315"/><text x="52.0527%" y="655.50"></text></g><g><title>pagecache_get_page (262 samples, 0.05%)</title><rect x="51.8127%" y="629" width="0.0494%" height="15" fill="rgb(226,79,39)" fg:x="274970" fg:w="262"/><text x="52.0627%" y="639.50"></text></g><g><title>find_get_entry (195 samples, 0.04%)</title><rect x="51.8253%" y="613" width="0.0367%" height="15" fill="rgb(222,163,10)" fg:x="275037" fg:w="195"/><text x="52.0753%" y="623.50"></text></g><g><title>link_path_walk.part.0 (18,880 samples, 3.56%)</title><rect x="48.3081%" y="693" width="3.5576%" height="15" fill="rgb(214,44,19)" fg:x="256371" fg:w="18880"/><text x="48.5581%" y="703.50">link..</text></g><g><title>walk_component (10,991 samples, 2.07%)</title><rect x="49.7946%" y="677" width="2.0710%" height="15" fill="rgb(210,217,13)" fg:x="264260" fg:w="10991"/><text x="50.0446%" y="687.50">w..</text></g><g><title>step_into (2,456 samples, 0.46%)</title><rect x="51.4029%" y="661" width="0.4628%" height="15" fill="rgb(237,61,54)" fg:x="272795" fg:w="2456"/><text x="51.6529%" y="671.50"></text></g><g><title>path_init (471 samples, 0.09%)</title><rect x="51.8656%" y="693" width="0.0888%" height="15" fill="rgb(226,184,24)" fg:x="275251" fg:w="471"/><text x="52.1156%" y="703.50"></text></g><g><title>nd_jump_root (372 samples, 0.07%)</title><rect x="51.8843%" y="677" width="0.0701%" height="15" fill="rgb(223,226,4)" fg:x="275350" fg:w="372"/><text x="52.1343%" y="687.50"></text></g><g><title>set_root (297 samples, 0.06%)</title><rect x="51.8984%" y="661" width="0.0560%" height="15" fill="rgb(210,26,41)" fg:x="275425" fg:w="297"/><text x="52.1484%" y="671.50"></text></g><g><title>dput (182 samples, 0.03%)</title><rect x="51.9633%" y="677" width="0.0343%" height="15" fill="rgb(220,221,6)" fg:x="275769" fg:w="182"/><text x="52.2133%" y="687.50"></text></g><g><title>lockref_put_or_lock (122 samples, 0.02%)</title><rect x="51.9746%" y="661" width="0.0230%" height="15" fill="rgb(225,89,49)" fg:x="275829" fg:w="122"/><text x="52.2246%" y="671.50"></text></g><g><title>terminate_walk (303 samples, 0.06%)</title><rect x="51.9544%" y="693" width="0.0571%" height="15" fill="rgb(218,70,45)" fg:x="275722" fg:w="303"/><text x="52.2044%" y="703.50"></text></g><g><title>mntput_no_expire (57 samples, 0.01%)</title><rect x="52.0008%" y="677" width="0.0107%" height="15" fill="rgb(238,166,21)" fg:x="275968" fg:w="57"/><text x="52.2508%" y="687.50"></text></g><g><title>btrfs_alloc_path (73 samples, 0.01%)</title><rect x="52.0878%" y="629" width="0.0138%" height="15" fill="rgb(224,141,44)" fg:x="276430" fg:w="73"/><text x="52.3378%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (59 samples, 0.01%)</title><rect x="52.1204%" y="597" width="0.0111%" height="15" fill="rgb(230,12,49)" fg:x="276603" fg:w="59"/><text x="52.3704%" y="607.50"></text></g><g><title>free_extent_buffer.part.0 (226 samples, 0.04%)</title><rect x="52.1323%" y="597" width="0.0426%" height="15" fill="rgb(212,174,12)" fg:x="276666" fg:w="226"/><text x="52.3823%" y="607.50"></text></g><g><title>_raw_spin_lock (166 samples, 0.03%)</title><rect x="52.1436%" y="581" width="0.0313%" height="15" fill="rgb(246,67,9)" fg:x="276726" fg:w="166"/><text x="52.3936%" y="591.50"></text></g><g><title>btrfs_free_path (556 samples, 0.10%)</title><rect x="52.1016%" y="629" width="0.1048%" height="15" fill="rgb(239,35,23)" fg:x="276503" fg:w="556"/><text x="52.3516%" y="639.50"></text></g><g><title>btrfs_release_path (503 samples, 0.09%)</title><rect x="52.1116%" y="613" width="0.0948%" height="15" fill="rgb(211,167,0)" fg:x="276556" fg:w="503"/><text x="52.3616%" y="623.50"></text></g><g><title>release_extent_buffer (167 samples, 0.03%)</title><rect x="52.1749%" y="597" width="0.0315%" height="15" fill="rgb(225,119,45)" fg:x="276892" fg:w="167"/><text x="52.4249%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (72 samples, 0.01%)</title><rect x="52.2894%" y="581" width="0.0136%" height="15" fill="rgb(210,162,6)" fg:x="277500" fg:w="72"/><text x="52.5394%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (260 samples, 0.05%)</title><rect x="52.2858%" y="597" width="0.0490%" height="15" fill="rgb(208,118,35)" fg:x="277481" fg:w="260"/><text x="52.5358%" y="607.50"></text></g><g><title>btrfs_root_node (169 samples, 0.03%)</title><rect x="52.3030%" y="581" width="0.0318%" height="15" fill="rgb(239,4,53)" fg:x="277572" fg:w="169"/><text x="52.5530%" y="591.50"></text></g><g><title>dequeue_task_fair (57 samples, 0.01%)</title><rect x="52.3460%" y="549" width="0.0107%" height="15" fill="rgb(213,130,21)" fg:x="277800" fg:w="57"/><text x="52.5960%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (173 samples, 0.03%)</title><rect x="52.3348%" y="597" width="0.0326%" height="15" fill="rgb(235,148,0)" fg:x="277741" fg:w="173"/><text x="52.5848%" y="607.50"></text></g><g><title>schedule (142 samples, 0.03%)</title><rect x="52.3407%" y="581" width="0.0268%" height="15" fill="rgb(244,224,18)" fg:x="277772" fg:w="142"/><text x="52.5907%" y="591.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="52.3416%" y="565" width="0.0258%" height="15" fill="rgb(211,214,4)" fg:x="277777" fg:w="137"/><text x="52.5916%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (267 samples, 0.05%)</title><rect x="52.3772%" y="597" width="0.0503%" height="15" fill="rgb(206,119,25)" fg:x="277966" fg:w="267"/><text x="52.6272%" y="607.50"></text></g><g><title>btrfs_set_lock_blocking_read (161 samples, 0.03%)</title><rect x="52.3972%" y="581" width="0.0303%" height="15" fill="rgb(243,93,47)" fg:x="278072" fg:w="161"/><text x="52.6472%" y="591.50"></text></g><g><title>_raw_read_lock (112 samples, 0.02%)</title><rect x="52.4407%" y="581" width="0.0211%" height="15" fill="rgb(224,194,6)" fg:x="278303" fg:w="112"/><text x="52.6907%" y="591.50"></text></g><g><title>btrfs_tree_read_lock_atomic (261 samples, 0.05%)</title><rect x="52.4275%" y="597" width="0.0492%" height="15" fill="rgb(243,229,6)" fg:x="278233" fg:w="261"/><text x="52.6775%" y="607.50"></text></g><g><title>queued_read_lock_slowpath (79 samples, 0.01%)</title><rect x="52.4618%" y="581" width="0.0149%" height="15" fill="rgb(207,23,50)" fg:x="278415" fg:w="79"/><text x="52.7118%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock (140 samples, 0.03%)</title><rect x="52.4767%" y="597" width="0.0264%" height="15" fill="rgb(253,192,32)" fg:x="278494" fg:w="140"/><text x="52.7267%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,216 samples, 0.23%)</title><rect x="52.5052%" y="597" width="0.2291%" height="15" fill="rgb(213,21,6)" fg:x="278645" fg:w="1216"/><text x="52.7552%" y="607.50"></text></g><g><title>btrfs_buffer_uptodate (95 samples, 0.02%)</title><rect x="52.7680%" y="581" width="0.0179%" height="15" fill="rgb(243,151,13)" fg:x="280040" fg:w="95"/><text x="53.0180%" y="591.50"></text></g><g><title>verify_parent_transid (54 samples, 0.01%)</title><rect x="52.7758%" y="565" width="0.0102%" height="15" fill="rgb(233,165,41)" fg:x="280081" fg:w="54"/><text x="53.0258%" y="575.50"></text></g><g><title>btrfs_get_64 (144 samples, 0.03%)</title><rect x="52.7859%" y="581" width="0.0271%" height="15" fill="rgb(246,176,45)" fg:x="280135" fg:w="144"/><text x="53.0359%" y="591.50"></text></g><g><title>__radix_tree_lookup (962 samples, 0.18%)</title><rect x="52.8722%" y="565" width="0.1813%" height="15" fill="rgb(217,170,52)" fg:x="280593" fg:w="962"/><text x="53.1222%" y="575.50"></text></g><g><title>check_buffer_tree_ref (58 samples, 0.01%)</title><rect x="53.0624%" y="549" width="0.0109%" height="15" fill="rgb(214,203,54)" fg:x="281602" fg:w="58"/><text x="53.3124%" y="559.50"></text></g><g><title>mark_extent_buffer_accessed (310 samples, 0.06%)</title><rect x="53.0535%" y="565" width="0.0584%" height="15" fill="rgb(248,215,49)" fg:x="281555" fg:w="310"/><text x="53.3035%" y="575.50"></text></g><g><title>mark_page_accessed (205 samples, 0.04%)</title><rect x="53.0733%" y="549" width="0.0386%" height="15" fill="rgb(208,46,10)" fg:x="281660" fg:w="205"/><text x="53.3233%" y="559.50"></text></g><g><title>find_extent_buffer (1,537 samples, 0.29%)</title><rect x="52.8236%" y="581" width="0.2896%" height="15" fill="rgb(254,5,31)" fg:x="280335" fg:w="1537"/><text x="53.0736%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (2,200 samples, 0.41%)</title><rect x="52.7343%" y="597" width="0.4145%" height="15" fill="rgb(222,104,33)" fg:x="279861" fg:w="2200"/><text x="52.9843%" y="607.50"></text></g><g><title>read_extent_buffer (189 samples, 0.04%)</title><rect x="53.1132%" y="581" width="0.0356%" height="15" fill="rgb(248,49,16)" fg:x="281872" fg:w="189"/><text x="53.3632%" y="591.50"></text></g><g><title>btrfs_search_slot (5,083 samples, 0.96%)</title><rect x="52.2159%" y="613" width="0.9578%" height="15" fill="rgb(232,198,41)" fg:x="277110" fg:w="5083"/><text x="52.4659%" y="623.50"></text></g><g><title>unlock_up (132 samples, 0.02%)</title><rect x="53.1489%" y="597" width="0.0249%" height="15" fill="rgb(214,125,3)" fg:x="282061" fg:w="132"/><text x="53.3989%" y="607.50"></text></g><g><title>btrfs_lookup_dir_item (5,341 samples, 1.01%)</title><rect x="52.2063%" y="629" width="1.0064%" height="15" fill="rgb(229,220,28)" fg:x="277059" fg:w="5341"/><text x="52.4563%" y="639.50"></text></g><g><title>crc32c (207 samples, 0.04%)</title><rect x="53.1737%" y="613" width="0.0390%" height="15" fill="rgb(222,64,37)" fg:x="282193" fg:w="207"/><text x="53.4237%" y="623.50"></text></g><g><title>crypto_shash_update (167 samples, 0.03%)</title><rect x="53.1813%" y="597" width="0.0315%" height="15" fill="rgb(249,184,13)" fg:x="282233" fg:w="167"/><text x="53.4313%" y="607.50"></text></g><g><title>kmem_cache_alloc (302 samples, 0.06%)</title><rect x="53.2127%" y="629" width="0.0569%" height="15" fill="rgb(252,176,6)" fg:x="282400" fg:w="302"/><text x="53.4627%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (57 samples, 0.01%)</title><rect x="53.2589%" y="613" width="0.0107%" height="15" fill="rgb(228,153,7)" fg:x="282645" fg:w="57"/><text x="53.5089%" y="623.50"></text></g><g><title>btrfs_lookup (6,669 samples, 1.26%)</title><rect x="52.0324%" y="661" width="1.2566%" height="15" fill="rgb(242,193,5)" fg:x="276136" fg:w="6669"/><text x="52.2824%" y="671.50"></text></g><g><title>btrfs_lookup_dentry (6,661 samples, 1.26%)</title><rect x="52.0339%" y="645" width="1.2551%" height="15" fill="rgb(232,140,9)" fg:x="276144" fg:w="6661"/><text x="52.2839%" y="655.50"></text></g><g><title>kmem_cache_free (103 samples, 0.02%)</title><rect x="53.2696%" y="629" width="0.0194%" height="15" fill="rgb(213,222,16)" fg:x="282702" fg:w="103"/><text x="53.5196%" y="639.50"></text></g><g><title>___slab_alloc (129 samples, 0.02%)</title><rect x="53.4115%" y="581" width="0.0243%" height="15" fill="rgb(222,75,50)" fg:x="283455" fg:w="129"/><text x="53.6615%" y="591.50"></text></g><g><title>get_partial_node.part.0 (64 samples, 0.01%)</title><rect x="53.4238%" y="565" width="0.0121%" height="15" fill="rgb(205,180,2)" fg:x="283520" fg:w="64"/><text x="53.6738%" y="575.50"></text></g><g><title>__slab_alloc (138 samples, 0.03%)</title><rect x="53.4100%" y="597" width="0.0260%" height="15" fill="rgb(216,34,7)" fg:x="283447" fg:w="138"/><text x="53.6600%" y="607.50"></text></g><g><title>__mod_memcg_lruvec_state (147 samples, 0.03%)</title><rect x="53.5148%" y="581" width="0.0277%" height="15" fill="rgb(253,16,32)" fg:x="284003" fg:w="147"/><text x="53.7648%" y="591.50"></text></g><g><title>__mod_memcg_state.part.0 (91 samples, 0.02%)</title><rect x="53.5253%" y="565" width="0.0171%" height="15" fill="rgb(208,97,28)" fg:x="284059" fg:w="91"/><text x="53.7753%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (593 samples, 0.11%)</title><rect x="53.4360%" y="597" width="0.1117%" height="15" fill="rgb(225,92,11)" fg:x="283585" fg:w="593"/><text x="53.6860%" y="607.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="53.5485%" y="597" width="0.0117%" height="15" fill="rgb(243,38,12)" fg:x="284182" fg:w="62"/><text x="53.7985%" y="607.50"></text></g><g><title>get_obj_cgroup_from_current (413 samples, 0.08%)</title><rect x="53.5749%" y="581" width="0.0778%" height="15" fill="rgb(208,139,16)" fg:x="284322" fg:w="413"/><text x="53.8249%" y="591.50"></text></g><g><title>obj_cgroup_charge (109 samples, 0.02%)</title><rect x="53.6527%" y="581" width="0.0205%" height="15" fill="rgb(227,24,9)" fg:x="284735" fg:w="109"/><text x="53.9027%" y="591.50"></text></g><g><title>kmem_cache_alloc (1,589 samples, 0.30%)</title><rect x="53.3748%" y="613" width="0.2994%" height="15" fill="rgb(206,62,11)" fg:x="283260" fg:w="1589"/><text x="53.6248%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (604 samples, 0.11%)</title><rect x="53.5604%" y="597" width="0.1138%" height="15" fill="rgb(228,134,27)" fg:x="284245" fg:w="604"/><text x="53.8104%" y="607.50"></text></g><g><title>__d_alloc (1,817 samples, 0.34%)</title><rect x="53.3401%" y="629" width="0.3424%" height="15" fill="rgb(205,55,33)" fg:x="283076" fg:w="1817"/><text x="53.5901%" y="639.50"></text></g><g><title>d_alloc (1,924 samples, 0.36%)</title><rect x="53.3339%" y="645" width="0.3625%" height="15" fill="rgb(243,75,43)" fg:x="283043" fg:w="1924"/><text x="53.5839%" y="655.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="53.6861%" y="629" width="0.0104%" height="15" fill="rgb(223,27,42)" fg:x="284912" fg:w="55"/><text x="53.9361%" y="639.50"></text></g><g><title>d_alloc_parallel (2,163 samples, 0.41%)</title><rect x="53.2891%" y="661" width="0.4076%" height="15" fill="rgb(232,189,33)" fg:x="282805" fg:w="2163"/><text x="53.5391%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (57 samples, 0.01%)</title><rect x="53.7554%" y="597" width="0.0107%" height="15" fill="rgb(210,9,39)" fg:x="285280" fg:w="57"/><text x="54.0054%" y="607.50"></text></g><g><title>__d_lookup_done (307 samples, 0.06%)</title><rect x="53.7134%" y="629" width="0.0578%" height="15" fill="rgb(242,85,26)" fg:x="285057" fg:w="307"/><text x="53.9634%" y="639.50"></text></g><g><title>__wake_up_common_lock (161 samples, 0.03%)</title><rect x="53.7409%" y="613" width="0.0303%" height="15" fill="rgb(248,44,4)" fg:x="285203" fg:w="161"/><text x="53.9909%" y="623.50"></text></g><g><title>__d_rehash (103 samples, 0.02%)</title><rect x="53.7712%" y="629" width="0.0194%" height="15" fill="rgb(250,96,46)" fg:x="285364" fg:w="103"/><text x="54.0212%" y="639.50"></text></g><g><title>__lookup_slow (9,435 samples, 1.78%)</title><rect x="52.0262%" y="677" width="1.7778%" height="15" fill="rgb(229,116,26)" fg:x="276103" fg:w="9435"/><text x="52.2762%" y="687.50">_..</text></g><g><title>d_splice_alias (570 samples, 0.11%)</title><rect x="53.6966%" y="661" width="0.1074%" height="15" fill="rgb(246,94,34)" fg:x="284968" fg:w="570"/><text x="53.9466%" y="671.50"></text></g><g><title>__d_add (546 samples, 0.10%)</title><rect x="53.7011%" y="645" width="0.1029%" height="15" fill="rgb(251,73,21)" fg:x="284992" fg:w="546"/><text x="53.9511%" y="655.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="53.7907%" y="629" width="0.0134%" height="15" fill="rgb(254,121,25)" fg:x="285467" fg:w="71"/><text x="54.0407%" y="639.50"></text></g><g><title>down_read (57 samples, 0.01%)</title><rect x="53.8042%" y="677" width="0.0107%" height="15" fill="rgb(215,161,49)" fg:x="285539" fg:w="57"/><text x="54.0542%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,834 samples, 0.35%)</title><rect x="53.8274%" y="661" width="0.3456%" height="15" fill="rgb(221,43,13)" fg:x="285662" fg:w="1834"/><text x="54.0774%" y="671.50"></text></g><g><title>__legitimize_mnt (151 samples, 0.03%)</title><rect x="54.1820%" y="629" width="0.0285%" height="15" fill="rgb(249,5,37)" fg:x="287544" fg:w="151"/><text x="54.4320%" y="639.50"></text></g><g><title>__legitimize_path (311 samples, 0.06%)</title><rect x="54.1777%" y="645" width="0.0586%" height="15" fill="rgb(226,25,44)" fg:x="287521" fg:w="311"/><text x="54.4277%" y="655.50"></text></g><g><title>lockref_get_not_dead (137 samples, 0.03%)</title><rect x="54.2105%" y="629" width="0.0258%" height="15" fill="rgb(238,189,16)" fg:x="287695" fg:w="137"/><text x="54.4605%" y="639.50"></text></g><g><title>lookup_fast (2,272 samples, 0.43%)</title><rect x="53.8150%" y="677" width="0.4281%" height="15" fill="rgb(251,186,8)" fg:x="285596" fg:w="2272"/><text x="54.0650%" y="687.50"></text></g><g><title>try_to_unlazy (372 samples, 0.07%)</title><rect x="54.1730%" y="661" width="0.0701%" height="15" fill="rgb(254,34,31)" fg:x="287496" fg:w="372"/><text x="54.4230%" y="671.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.03%)</title><rect x="54.2992%" y="613" width="0.0266%" height="15" fill="rgb(225,215,27)" fg:x="288166" fg:w="141"/><text x="54.5492%" y="623.50"></text></g><g><title>d_lru_add (320 samples, 0.06%)</title><rect x="54.2708%" y="645" width="0.0603%" height="15" fill="rgb(221,192,48)" fg:x="288015" fg:w="320"/><text x="54.5208%" y="655.50"></text></g><g><title>list_lru_add (306 samples, 0.06%)</title><rect x="54.2734%" y="629" width="0.0577%" height="15" fill="rgb(219,137,20)" fg:x="288029" fg:w="306"/><text x="54.5234%" y="639.50"></text></g><g><title>lockref_put_or_lock (64 samples, 0.01%)</title><rect x="54.3311%" y="645" width="0.0121%" height="15" fill="rgb(219,84,11)" fg:x="288335" fg:w="64"/><text x="54.5811%" y="655.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="54.3328%" y="629" width="0.0104%" height="15" fill="rgb(224,10,23)" fg:x="288344" fg:w="55"/><text x="54.5828%" y="639.50"></text></g><g><title>dput (434 samples, 0.08%)</title><rect x="54.2619%" y="661" width="0.0818%" height="15" fill="rgb(248,22,39)" fg:x="287968" fg:w="434"/><text x="54.5119%" y="671.50"></text></g><g><title>step_into (535 samples, 0.10%)</title><rect x="54.2431%" y="677" width="0.1008%" height="15" fill="rgb(212,154,20)" fg:x="287868" fg:w="535"/><text x="54.4931%" y="687.50"></text></g><g><title>path_lookupat (32,628 samples, 6.15%)</title><rect x="48.2088%" y="709" width="6.1481%" height="15" fill="rgb(236,199,50)" fg:x="255844" fg:w="32628"/><text x="48.4588%" y="719.50">path_loo..</text></g><g><title>walk_component (12,447 samples, 2.35%)</title><rect x="52.0115%" y="693" width="2.3454%" height="15" fill="rgb(211,9,17)" fg:x="276025" fg:w="12447"/><text x="52.2615%" y="703.50">w..</text></g><g><title>up_read (69 samples, 0.01%)</title><rect x="54.3439%" y="677" width="0.0130%" height="15" fill="rgb(243,216,36)" fg:x="288403" fg:w="69"/><text x="54.5939%" y="687.50"></text></g><g><title>filename_lookup (33,217 samples, 6.26%)</title><rect x="48.1036%" y="725" width="6.2591%" height="15" fill="rgb(250,2,10)" fg:x="255286" fg:w="33217"/><text x="48.3536%" y="735.50">filename..</text></g><g><title>lockref_put_or_lock (128 samples, 0.02%)</title><rect x="54.3906%" y="693" width="0.0241%" height="15" fill="rgb(226,50,48)" fg:x="288651" fg:w="128"/><text x="54.6406%" y="703.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.02%)</title><rect x="54.3965%" y="677" width="0.0183%" height="15" fill="rgb(243,81,16)" fg:x="288682" fg:w="97"/><text x="54.6465%" y="687.50"></text></g><g><title>path_put (236 samples, 0.04%)</title><rect x="54.3710%" y="725" width="0.0445%" height="15" fill="rgb(250,14,2)" fg:x="288547" fg:w="236"/><text x="54.6210%" y="735.50"></text></g><g><title>dput (230 samples, 0.04%)</title><rect x="54.3721%" y="709" width="0.0433%" height="15" fill="rgb(233,135,29)" fg:x="288553" fg:w="230"/><text x="54.6221%" y="719.50"></text></g><g><title>apparmor_inode_getattr (79 samples, 0.01%)</title><rect x="54.5212%" y="709" width="0.0149%" height="15" fill="rgb(224,64,43)" fg:x="289344" fg:w="79"/><text x="54.7712%" y="719.50"></text></g><g><title>security_inode_getattr (975 samples, 0.18%)</title><rect x="54.4155%" y="725" width="0.1837%" height="15" fill="rgb(238,84,13)" fg:x="288783" fg:w="975"/><text x="54.6655%" y="735.50"></text></g><g><title>tomoyo_path_perm (326 samples, 0.06%)</title><rect x="54.5378%" y="709" width="0.0614%" height="15" fill="rgb(253,48,26)" fg:x="289432" fg:w="326"/><text x="54.7878%" y="719.50"></text></g><g><title>tomoyo_init_request_info (176 samples, 0.03%)</title><rect x="54.5660%" y="693" width="0.0332%" height="15" fill="rgb(205,223,31)" fg:x="289582" fg:w="176"/><text x="54.8160%" y="703.50"></text></g><g><title>memset_erms (969 samples, 0.18%)</title><rect x="54.7040%" y="677" width="0.1826%" height="15" fill="rgb(221,41,32)" fg:x="290314" fg:w="969"/><text x="54.9540%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,639 samples, 0.31%)</title><rect x="54.6314%" y="693" width="0.3088%" height="15" fill="rgb(213,158,31)" fg:x="289929" fg:w="1639"/><text x="54.8814%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (285 samples, 0.05%)</title><rect x="54.8866%" y="677" width="0.0537%" height="15" fill="rgb(245,126,43)" fg:x="291283" fg:w="285"/><text x="55.1366%" y="687.50"></text></g><g><title>__check_heap_object (203 samples, 0.04%)</title><rect x="55.1709%" y="661" width="0.0383%" height="15" fill="rgb(227,7,22)" fg:x="292792" fg:w="203"/><text x="55.4209%" y="671.50"></text></g><g><title>__virt_addr_valid (305 samples, 0.06%)</title><rect x="55.2092%" y="661" width="0.0575%" height="15" fill="rgb(252,90,44)" fg:x="292995" fg:w="305"/><text x="55.4592%" y="671.50"></text></g><g><title>user_path_at_empty (3,563 samples, 0.67%)</title><rect x="54.5992%" y="725" width="0.6714%" height="15" fill="rgb(253,91,0)" fg:x="289758" fg:w="3563"/><text x="54.8492%" y="735.50"></text></g><g><title>getname_flags.part.0 (3,502 samples, 0.66%)</title><rect x="54.6107%" y="709" width="0.6599%" height="15" fill="rgb(252,175,49)" fg:x="289819" fg:w="3502"/><text x="54.8607%" y="719.50"></text></g><g><title>strncpy_from_user (1,753 samples, 0.33%)</title><rect x="54.9403%" y="693" width="0.3303%" height="15" fill="rgb(246,150,1)" fg:x="291568" fg:w="1753"/><text x="55.1903%" y="703.50"></text></g><g><title>__check_object_size (637 samples, 0.12%)</title><rect x="55.1506%" y="677" width="0.1200%" height="15" fill="rgb(241,192,25)" fg:x="292684" fg:w="637"/><text x="55.4006%" y="687.50"></text></g><g><title>__do_sys_newstat (39,836 samples, 7.51%)</title><rect x="47.8103%" y="757" width="7.5063%" height="15" fill="rgb(239,187,11)" fg:x="253729" fg:w="39836"/><text x="48.0603%" y="767.50">__do_sys_n..</text></g><g><title>vfs_statx (39,239 samples, 7.39%)</title><rect x="47.9227%" y="741" width="7.3938%" height="15" fill="rgb(218,202,51)" fg:x="254326" fg:w="39239"/><text x="48.1727%" y="751.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (244 samples, 0.05%)</title><rect x="55.2706%" y="725" width="0.0460%" height="15" fill="rgb(225,176,8)" fg:x="293321" fg:w="244"/><text x="55.5206%" y="735.50"></text></g><g><title>do_syscall_64 (39,922 samples, 7.52%)</title><rect x="47.8021%" y="773" width="7.5225%" height="15" fill="rgb(219,122,41)" fg:x="253686" fg:w="39922"/><text x="48.0521%" y="783.50">do_syscall..</text></g><g><title>entry_SYSCALL_64_after_hwframe (40,158 samples, 7.57%)</title><rect x="47.7810%" y="789" width="7.5670%" height="15" fill="rgb(248,140,20)" fg:x="253574" fg:w="40158"/><text x="48.0310%" y="799.50">entry_SYSC..</text></g><g><title>syscall_exit_to_user_mode (124 samples, 0.02%)</title><rect x="55.3247%" y="773" width="0.0234%" height="15" fill="rgb(245,41,37)" fg:x="293608" fg:w="124"/><text x="55.5747%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (93 samples, 0.02%)</title><rect x="55.3305%" y="757" width="0.0175%" height="15" fill="rgb(235,82,39)" fg:x="293639" fg:w="93"/><text x="55.5805%" y="767.50"></text></g><g><title>syscall_return_via_sysret (210 samples, 0.04%)</title><rect x="55.3510%" y="789" width="0.0396%" height="15" fill="rgb(230,108,42)" fg:x="293748" fg:w="210"/><text x="55.6010%" y="799.50"></text></g><g><title>__GI___xstat (41,142 samples, 7.75%)</title><rect x="47.6384%" y="805" width="7.7524%" height="15" fill="rgb(215,150,50)" fg:x="252817" fg:w="41142"/><text x="47.8884%" y="815.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (122 samples, 0.02%)</title><rect x="55.4234%" y="789" width="0.0230%" height="15" fill="rgb(233,212,5)" fg:x="294132" fg:w="122"/><text x="55.6734%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (124 samples, 0.02%)</title><rect x="55.4464%" y="789" width="0.0234%" height="15" fill="rgb(245,80,22)" fg:x="294254" fg:w="124"/><text x="55.6964%" y="799.50"></text></g><g><title>memset_erms (591 samples, 0.11%)</title><rect x="55.5240%" y="709" width="0.1114%" height="15" fill="rgb(238,129,16)" fg:x="294666" fg:w="591"/><text x="55.7740%" y="719.50"></text></g><g><title>kmem_cache_alloc (760 samples, 0.14%)</title><rect x="55.5012%" y="725" width="0.1432%" height="15" fill="rgb(240,19,0)" fg:x="294545" fg:w="760"/><text x="55.7512%" y="735.50"></text></g><g><title>__virt_addr_valid (181 samples, 0.03%)</title><rect x="55.7117%" y="693" width="0.0341%" height="15" fill="rgb(232,42,35)" fg:x="295662" fg:w="181"/><text x="55.9617%" y="703.50"></text></g><g><title>__check_object_size (297 samples, 0.06%)</title><rect x="55.6929%" y="709" width="0.0560%" height="15" fill="rgb(223,130,24)" fg:x="295562" fg:w="297"/><text x="55.9429%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (1,422 samples, 0.27%)</title><rect x="55.4811%" y="757" width="0.2679%" height="15" fill="rgb(237,16,22)" fg:x="294438" fg:w="1422"/><text x="55.7311%" y="767.50"></text></g><g><title>getname_flags.part.0 (1,387 samples, 0.26%)</title><rect x="55.4877%" y="741" width="0.2614%" height="15" fill="rgb(248,192,20)" fg:x="294473" fg:w="1387"/><text x="55.7377%" y="751.50"></text></g><g><title>strncpy_from_user (555 samples, 0.10%)</title><rect x="55.6444%" y="725" width="0.1046%" height="15" fill="rgb(233,167,2)" fg:x="295305" fg:w="555"/><text x="55.8944%" y="735.50"></text></g><g><title>filename_parentat (69 samples, 0.01%)</title><rect x="55.7662%" y="741" width="0.0130%" height="15" fill="rgb(252,71,44)" fg:x="295951" fg:w="69"/><text x="56.0162%" y="751.50"></text></g><g><title>path_parentat (68 samples, 0.01%)</title><rect x="55.7663%" y="725" width="0.0128%" height="15" fill="rgb(238,37,47)" fg:x="295952" fg:w="68"/><text x="56.0163%" y="735.50"></text></g><g><title>__btrfs_end_transaction (60 samples, 0.01%)</title><rect x="55.8033%" y="709" width="0.0113%" height="15" fill="rgb(214,202,54)" fg:x="296148" fg:w="60"/><text x="56.0533%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.01%)</title><rect x="55.8462%" y="645" width="0.0102%" height="15" fill="rgb(254,165,40)" fg:x="296376" fg:w="54"/><text x="56.0962%" y="655.50"></text></g><g><title>btrfs_lookup_dir_index_item (155 samples, 0.03%)</title><rect x="55.8282%" y="677" width="0.0292%" height="15" fill="rgb(246,173,38)" fg:x="296280" fg:w="155"/><text x="56.0782%" y="687.50"></text></g><g><title>btrfs_search_slot (154 samples, 0.03%)</title><rect x="55.8283%" y="661" width="0.0290%" height="15" fill="rgb(215,3,27)" fg:x="296281" fg:w="154"/><text x="56.0783%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (66 samples, 0.01%)</title><rect x="55.8777%" y="645" width="0.0124%" height="15" fill="rgb(239,169,51)" fg:x="296543" fg:w="66"/><text x="56.1277%" y="655.50"></text></g><g><title>btrfs_search_slot (181 samples, 0.03%)</title><rect x="55.8579%" y="661" width="0.0341%" height="15" fill="rgb(212,5,25)" fg:x="296438" fg:w="181"/><text x="56.1079%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (186 samples, 0.04%)</title><rect x="55.8574%" y="677" width="0.0350%" height="15" fill="rgb(243,45,17)" fg:x="296435" fg:w="186"/><text x="56.1074%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (479 samples, 0.09%)</title><rect x="55.8197%" y="693" width="0.0903%" height="15" fill="rgb(242,97,9)" fg:x="296235" fg:w="479"/><text x="56.0697%" y="703.50"></text></g><g><title>btrfs_free_path (71 samples, 0.01%)</title><rect x="55.9145%" y="661" width="0.0134%" height="15" fill="rgb(228,71,31)" fg:x="296738" fg:w="71"/><text x="56.1645%" y="671.50"></text></g><g><title>btrfs_release_path (69 samples, 0.01%)</title><rect x="55.9148%" y="645" width="0.0130%" height="15" fill="rgb(252,184,16)" fg:x="296740" fg:w="69"/><text x="56.1648%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.01%)</title><rect x="55.9568%" y="645" width="0.0138%" height="15" fill="rgb(236,169,46)" fg:x="296963" fg:w="73"/><text x="56.2068%" y="655.50"></text></g><g><title>find_extent_buffer (73 samples, 0.01%)</title><rect x="55.9768%" y="629" width="0.0138%" height="15" fill="rgb(207,17,47)" fg:x="297069" fg:w="73"/><text x="56.2268%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (122 samples, 0.02%)</title><rect x="55.9706%" y="645" width="0.0230%" height="15" fill="rgb(206,201,28)" fg:x="297036" fg:w="122"/><text x="56.2206%" y="655.50"></text></g><g><title>btrfs_search_slot (369 samples, 0.07%)</title><rect x="55.9278%" y="661" width="0.0695%" height="15" fill="rgb(224,184,23)" fg:x="296809" fg:w="369"/><text x="56.1778%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (501 samples, 0.09%)</title><rect x="55.9114%" y="677" width="0.0944%" height="15" fill="rgb(208,139,48)" fg:x="296722" fg:w="501"/><text x="56.1614%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (528 samples, 0.10%)</title><rect x="55.9099%" y="693" width="0.0995%" height="15" fill="rgb(208,130,10)" fg:x="296714" fg:w="528"/><text x="56.1599%" y="703.50"></text></g><g><title>_find_next_bit.constprop.0 (82 samples, 0.02%)</title><rect x="56.0262%" y="613" width="0.0155%" height="15" fill="rgb(211,213,45)" fg:x="297331" fg:w="82"/><text x="56.2762%" y="623.50"></text></g><g><title>__btrfs_add_free_space (112 samples, 0.02%)</title><rect x="56.0226%" y="645" width="0.0211%" height="15" fill="rgb(235,100,30)" fg:x="297312" fg:w="112"/><text x="56.2726%" y="655.50"></text></g><g><title>steal_from_bitmap.part.0 (112 samples, 0.02%)</title><rect x="56.0226%" y="629" width="0.0211%" height="15" fill="rgb(206,144,31)" fg:x="297312" fg:w="112"/><text x="56.2726%" y="639.50"></text></g><g><title>btrfs_free_tree_block (127 samples, 0.02%)</title><rect x="56.0226%" y="661" width="0.0239%" height="15" fill="rgb(224,200,26)" fg:x="297312" fg:w="127"/><text x="56.2726%" y="671.50"></text></g><g><title>btrfs_del_leaf (129 samples, 0.02%)</title><rect x="56.0224%" y="677" width="0.0243%" height="15" fill="rgb(247,104,53)" fg:x="297311" fg:w="129"/><text x="56.2724%" y="687.50"></text></g><g><title>btrfs_get_token_32 (204 samples, 0.04%)</title><rect x="56.0479%" y="677" width="0.0384%" height="15" fill="rgb(220,14,17)" fg:x="297446" fg:w="204"/><text x="56.2979%" y="687.50"></text></g><g><title>btrfs_set_token_32 (163 samples, 0.03%)</title><rect x="56.0888%" y="677" width="0.0307%" height="15" fill="rgb(230,140,40)" fg:x="297663" fg:w="163"/><text x="56.3388%" y="687.50"></text></g><g><title>memmove_extent_buffer (115 samples, 0.02%)</title><rect x="56.1287%" y="677" width="0.0217%" height="15" fill="rgb(229,2,41)" fg:x="297875" fg:w="115"/><text x="56.3787%" y="687.50"></text></g><g><title>memmove (97 samples, 0.02%)</title><rect x="56.1321%" y="661" width="0.0183%" height="15" fill="rgb(232,89,16)" fg:x="297893" fg:w="97"/><text x="56.3821%" y="671.50"></text></g><g><title>__push_leaf_right (69 samples, 0.01%)</title><rect x="56.1538%" y="661" width="0.0130%" height="15" fill="rgb(247,59,52)" fg:x="298008" fg:w="69"/><text x="56.4038%" y="671.50"></text></g><g><title>push_leaf_right (72 samples, 0.01%)</title><rect x="56.1538%" y="677" width="0.0136%" height="15" fill="rgb(226,110,21)" fg:x="298008" fg:w="72"/><text x="56.4038%" y="687.50"></text></g><g><title>btrfs_del_items (839 samples, 0.16%)</title><rect x="56.0094%" y="693" width="0.1581%" height="15" fill="rgb(224,176,43)" fg:x="297242" fg:w="839"/><text x="56.2594%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (182 samples, 0.03%)</title><rect x="56.1764%" y="693" width="0.0343%" height="15" fill="rgb(221,73,6)" fg:x="298128" fg:w="182"/><text x="56.4264%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (86 samples, 0.02%)</title><rect x="56.2450%" y="661" width="0.0162%" height="15" fill="rgb(232,78,19)" fg:x="298492" fg:w="86"/><text x="56.4950%" y="671.50"></text></g><g><title>find_extent_buffer (92 samples, 0.02%)</title><rect x="56.2674%" y="645" width="0.0173%" height="15" fill="rgb(233,112,48)" fg:x="298611" fg:w="92"/><text x="56.5174%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (139 samples, 0.03%)</title><rect x="56.2612%" y="661" width="0.0262%" height="15" fill="rgb(243,131,47)" fg:x="298578" fg:w="139"/><text x="56.5112%" y="671.50"></text></g><g><title>btrfs_search_slot (359 samples, 0.07%)</title><rect x="56.2240%" y="677" width="0.0676%" height="15" fill="rgb(226,51,1)" fg:x="298381" fg:w="359"/><text x="56.4740%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (429 samples, 0.08%)</title><rect x="56.2146%" y="693" width="0.0808%" height="15" fill="rgb(247,58,7)" fg:x="298331" fg:w="429"/><text x="56.4646%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (65 samples, 0.01%)</title><rect x="56.3041%" y="677" width="0.0122%" height="15" fill="rgb(209,7,32)" fg:x="298806" fg:w="65"/><text x="56.5541%" y="687.50"></text></g><g><title>btrfs_update_inode (90 samples, 0.02%)</title><rect x="56.3030%" y="693" width="0.0170%" height="15" fill="rgb(209,39,41)" fg:x="298800" fg:w="90"/><text x="56.5530%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (2,715 samples, 0.51%)</title><rect x="55.8146%" y="709" width="0.5116%" height="15" fill="rgb(226,182,46)" fg:x="296208" fg:w="2715"/><text x="56.0646%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (63 samples, 0.01%)</title><rect x="56.3610%" y="645" width="0.0119%" height="15" fill="rgb(230,219,10)" fg:x="299108" fg:w="63"/><text x="56.6110%" y="655.50"></text></g><g><title>__radix_tree_lookup (59 samples, 0.01%)</title><rect x="56.3825%" y="613" width="0.0111%" height="15" fill="rgb(227,175,30)" fg:x="299222" fg:w="59"/><text x="56.6325%" y="623.50"></text></g><g><title>find_extent_buffer (101 samples, 0.02%)</title><rect x="56.3784%" y="629" width="0.0190%" height="15" fill="rgb(217,2,50)" fg:x="299200" fg:w="101"/><text x="56.6284%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (142 samples, 0.03%)</title><rect x="56.3729%" y="645" width="0.0268%" height="15" fill="rgb(229,160,0)" fg:x="299171" fg:w="142"/><text x="56.6229%" y="655.50"></text></g><g><title>btrfs_search_slot (346 samples, 0.07%)</title><rect x="56.3407%" y="661" width="0.0652%" height="15" fill="rgb(207,78,37)" fg:x="299000" fg:w="346"/><text x="56.5907%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (442 samples, 0.08%)</title><rect x="56.3397%" y="677" width="0.0833%" height="15" fill="rgb(225,57,0)" fg:x="298995" fg:w="442"/><text x="56.5897%" y="687.50"></text></g><g><title>setup_items_for_insert (91 samples, 0.02%)</title><rect x="56.4059%" y="661" width="0.0171%" height="15" fill="rgb(232,154,2)" fg:x="299346" fg:w="91"/><text x="56.6559%" y="671.50"></text></g><g><title>btrfs_orphan_add (517 samples, 0.10%)</title><rect x="56.3298%" y="709" width="0.0974%" height="15" fill="rgb(241,212,25)" fg:x="298942" fg:w="517"/><text x="56.5798%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (516 samples, 0.10%)</title><rect x="56.3299%" y="693" width="0.0972%" height="15" fill="rgb(226,69,20)" fg:x="298943" fg:w="516"/><text x="56.5799%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (64 samples, 0.01%)</title><rect x="56.4283%" y="693" width="0.0121%" height="15" fill="rgb(247,184,54)" fg:x="299465" fg:w="64"/><text x="56.6783%" y="703.50"></text></g><g><title>btrfs_update_inode (81 samples, 0.02%)</title><rect x="56.4275%" y="709" width="0.0153%" height="15" fill="rgb(210,145,0)" fg:x="299461" fg:w="81"/><text x="56.6775%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (79 samples, 0.01%)</title><rect x="56.4487%" y="693" width="0.0149%" height="15" fill="rgb(253,82,12)" fg:x="299573" fg:w="79"/><text x="56.6987%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (63 samples, 0.01%)</title><rect x="56.4517%" y="677" width="0.0119%" height="15" fill="rgb(245,42,11)" fg:x="299589" fg:w="63"/><text x="56.7017%" y="687.50"></text></g><g><title>__reserve_bytes (62 samples, 0.01%)</title><rect x="56.4519%" y="661" width="0.0117%" height="15" fill="rgb(219,147,32)" fg:x="299590" fg:w="62"/><text x="56.7019%" y="671.50"></text></g><g><title>btrfs_rmdir (3,565 samples, 0.67%)</title><rect x="55.8001%" y="725" width="0.6718%" height="15" fill="rgb(246,12,7)" fg:x="296131" fg:w="3565"/><text x="56.0501%" y="735.50"></text></g><g><title>start_transaction (148 samples, 0.03%)</title><rect x="56.4439%" y="709" width="0.0279%" height="15" fill="rgb(243,50,9)" fg:x="299548" fg:w="148"/><text x="56.6939%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (72 samples, 0.01%)</title><rect x="56.4914%" y="693" width="0.0136%" height="15" fill="rgb(219,149,6)" fg:x="299800" fg:w="72"/><text x="56.7414%" y="703.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (58 samples, 0.01%)</title><rect x="56.5140%" y="693" width="0.0109%" height="15" fill="rgb(241,51,42)" fg:x="299920" fg:w="58"/><text x="56.7640%" y="703.50"></text></g><g><title>btrfs_destroy_inode (242 samples, 0.05%)</title><rect x="56.4884%" y="709" width="0.0456%" height="15" fill="rgb(226,128,27)" fg:x="299784" fg:w="242"/><text x="56.7384%" y="719.50"></text></g><g><title>destroy_inode (267 samples, 0.05%)</title><rect x="56.4846%" y="725" width="0.0503%" height="15" fill="rgb(244,144,4)" fg:x="299764" fg:w="267"/><text x="56.7346%" y="735.50"></text></g><g><title>__btrfs_end_transaction (82 samples, 0.02%)</title><rect x="56.5472%" y="693" width="0.0155%" height="15" fill="rgb(221,4,13)" fg:x="300096" fg:w="82"/><text x="56.7972%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (80 samples, 0.02%)</title><rect x="56.5627%" y="693" width="0.0151%" height="15" fill="rgb(208,170,28)" fg:x="300178" fg:w="80"/><text x="56.8127%" y="703.50"></text></g><g><title>radix_tree_delete_item (61 samples, 0.01%)</title><rect x="56.5662%" y="677" width="0.0115%" height="15" fill="rgb(226,131,13)" fg:x="300197" fg:w="61"/><text x="56.8162%" y="687.50"></text></g><g><title>btrfs_get_token_32 (294 samples, 0.06%)</title><rect x="56.6241%" y="645" width="0.0554%" height="15" fill="rgb(215,72,41)" fg:x="300504" fg:w="294"/><text x="56.8741%" y="655.50"></text></g><g><title>btrfs_set_token_32 (255 samples, 0.05%)</title><rect x="56.6821%" y="645" width="0.0480%" height="15" fill="rgb(243,108,20)" fg:x="300812" fg:w="255"/><text x="56.9321%" y="655.50"></text></g><g><title>memmove_extent_buffer (137 samples, 0.03%)</title><rect x="56.7392%" y="645" width="0.0258%" height="15" fill="rgb(230,189,17)" fg:x="301115" fg:w="137"/><text x="56.9892%" y="655.50"></text></g><g><title>memmove (110 samples, 0.02%)</title><rect x="56.7443%" y="629" width="0.0207%" height="15" fill="rgb(220,50,17)" fg:x="301142" fg:w="110"/><text x="56.9943%" y="639.50"></text></g><g><title>btrfs_del_items (909 samples, 0.17%)</title><rect x="56.5996%" y="661" width="0.1713%" height="15" fill="rgb(248,152,48)" fg:x="300374" fg:w="909"/><text x="56.8496%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (78 samples, 0.01%)</title><rect x="56.7920%" y="629" width="0.0147%" height="15" fill="rgb(244,91,11)" fg:x="301395" fg:w="78"/><text x="57.0420%" y="639.50"></text></g><g><title>find_extent_buffer (83 samples, 0.02%)</title><rect x="56.8136%" y="613" width="0.0156%" height="15" fill="rgb(220,157,5)" fg:x="301510" fg:w="83"/><text x="57.0636%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (131 samples, 0.02%)</title><rect x="56.8067%" y="629" width="0.0247%" height="15" fill="rgb(253,137,8)" fg:x="301473" fg:w="131"/><text x="57.0567%" y="639.50"></text></g><g><title>btrfs_lookup_inode (310 samples, 0.06%)</title><rect x="56.7760%" y="661" width="0.0584%" height="15" fill="rgb(217,137,51)" fg:x="301310" fg:w="310"/><text x="57.0260%" y="671.50"></text></g><g><title>btrfs_search_slot (305 samples, 0.06%)</title><rect x="56.7769%" y="645" width="0.0575%" height="15" fill="rgb(218,209,53)" fg:x="301315" fg:w="305"/><text x="57.0269%" y="655.50"></text></g><g><title>__btrfs_update_delayed_inode (1,359 samples, 0.26%)</title><rect x="56.5969%" y="677" width="0.2561%" height="15" fill="rgb(249,137,25)" fg:x="300360" fg:w="1359"/><text x="56.8469%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,519 samples, 0.29%)</title><rect x="56.5862%" y="693" width="0.2862%" height="15" fill="rgb(239,155,26)" fg:x="300303" fg:w="1519"/><text x="56.8362%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (77 samples, 0.01%)</title><rect x="56.9077%" y="661" width="0.0145%" height="15" fill="rgb(227,85,46)" fg:x="302009" fg:w="77"/><text x="57.1577%" y="671.50"></text></g><g><title>find_extent_buffer (75 samples, 0.01%)</title><rect x="56.9271%" y="645" width="0.0141%" height="15" fill="rgb(251,107,43)" fg:x="302112" fg:w="75"/><text x="57.1771%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (116 samples, 0.02%)</title><rect x="56.9222%" y="661" width="0.0219%" height="15" fill="rgb(234,170,33)" fg:x="302086" fg:w="116"/><text x="57.1722%" y="671.50"></text></g><g><title>btrfs_search_slot (305 samples, 0.06%)</title><rect x="56.8901%" y="677" width="0.0575%" height="15" fill="rgb(206,29,35)" fg:x="301916" fg:w="305"/><text x="57.1401%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (419 samples, 0.08%)</title><rect x="56.8724%" y="693" width="0.0790%" height="15" fill="rgb(227,138,25)" fg:x="301822" fg:w="419"/><text x="57.1224%" y="703.50"></text></g><g><title>clear_state_bit (54 samples, 0.01%)</title><rect x="56.9795%" y="661" width="0.0102%" height="15" fill="rgb(249,131,35)" fg:x="302390" fg:w="54"/><text x="57.2295%" y="671.50"></text></g><g><title>__clear_extent_bit (108 samples, 0.02%)</title><rect x="56.9715%" y="677" width="0.0204%" height="15" fill="rgb(239,6,40)" fg:x="302348" fg:w="108"/><text x="57.2215%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (466 samples, 0.09%)</title><rect x="57.0320%" y="597" width="0.0878%" height="15" fill="rgb(246,136,47)" fg:x="302669" fg:w="466"/><text x="57.2820%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (563 samples, 0.11%)</title><rect x="57.0188%" y="613" width="0.1061%" height="15" fill="rgb(253,58,26)" fg:x="302599" fg:w="563"/><text x="57.2688%" y="623.50"></text></g><g><title>__btrfs_add_free_space (577 samples, 0.11%)</title><rect x="57.0171%" y="629" width="0.1087%" height="15" fill="rgb(237,141,10)" fg:x="302590" fg:w="577"/><text x="57.2671%" y="639.50"></text></g><g><title>btrfs_free_tree_block (625 samples, 0.12%)</title><rect x="57.0171%" y="645" width="0.1178%" height="15" fill="rgb(234,156,12)" fg:x="302590" fg:w="625"/><text x="57.2671%" y="655.50"></text></g><g><title>btrfs_del_leaf (631 samples, 0.12%)</title><rect x="57.0170%" y="661" width="0.1189%" height="15" fill="rgb(243,224,36)" fg:x="302589" fg:w="631"/><text x="57.2670%" y="671.50"></text></g><g><title>btrfs_get_token_32 (268 samples, 0.05%)</title><rect x="57.1423%" y="661" width="0.0505%" height="15" fill="rgb(205,229,51)" fg:x="303254" fg:w="268"/><text x="57.3923%" y="671.50"></text></g><g><title>btrfs_set_token_32 (270 samples, 0.05%)</title><rect x="57.1954%" y="661" width="0.0509%" height="15" fill="rgb(223,189,4)" fg:x="303536" fg:w="270"/><text x="57.4454%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (62 samples, 0.01%)</title><rect x="57.2346%" y="645" width="0.0117%" height="15" fill="rgb(249,167,54)" fg:x="303744" fg:w="62"/><text x="57.4846%" y="655.50"></text></g><g><title>memmove_extent_buffer (143 samples, 0.03%)</title><rect x="57.2606%" y="661" width="0.0269%" height="15" fill="rgb(218,34,28)" fg:x="303882" fg:w="143"/><text x="57.5106%" y="671.50"></text></g><g><title>memmove (106 samples, 0.02%)</title><rect x="57.2676%" y="645" width="0.0200%" height="15" fill="rgb(232,109,42)" fg:x="303919" fg:w="106"/><text x="57.5176%" y="655.50"></text></g><g><title>push_leaf_left (65 samples, 0.01%)</title><rect x="57.2875%" y="661" width="0.0122%" height="15" fill="rgb(248,214,46)" fg:x="304025" fg:w="65"/><text x="57.5375%" y="671.50"></text></g><g><title>btrfs_del_items (1,693 samples, 0.32%)</title><rect x="56.9919%" y="677" width="0.3190%" height="15" fill="rgb(244,216,40)" fg:x="302456" fg:w="1693"/><text x="57.2419%" y="687.50"></text></g><g><title>alloc_extent_map (66 samples, 0.01%)</title><rect x="57.3130%" y="661" width="0.0124%" height="15" fill="rgb(231,226,31)" fg:x="304160" fg:w="66"/><text x="57.5630%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (110 samples, 0.02%)</title><rect x="57.3109%" y="677" width="0.0207%" height="15" fill="rgb(238,38,43)" fg:x="304149" fg:w="110"/><text x="57.5609%" y="687.50"></text></g><g><title>btrfs_free_path (64 samples, 0.01%)</title><rect x="57.3316%" y="677" width="0.0121%" height="15" fill="rgb(208,88,43)" fg:x="304259" fg:w="64"/><text x="57.5816%" y="687.50"></text></g><g><title>btrfs_release_path (64 samples, 0.01%)</title><rect x="57.3316%" y="661" width="0.0121%" height="15" fill="rgb(205,136,37)" fg:x="304259" fg:w="64"/><text x="57.5816%" y="671.50"></text></g><g><title>_raw_spin_lock (75 samples, 0.01%)</title><rect x="57.3561%" y="629" width="0.0141%" height="15" fill="rgb(237,34,14)" fg:x="304389" fg:w="75"/><text x="57.6061%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (115 samples, 0.02%)</title><rect x="57.3507%" y="645" width="0.0217%" height="15" fill="rgb(236,193,44)" fg:x="304360" fg:w="115"/><text x="57.6007%" y="655.50"></text></g><g><title>finish_one_item (77 samples, 0.01%)</title><rect x="57.3821%" y="629" width="0.0145%" height="15" fill="rgb(231,48,10)" fg:x="304527" fg:w="77"/><text x="57.6321%" y="639.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (188 samples, 0.04%)</title><rect x="57.3723%" y="645" width="0.0354%" height="15" fill="rgb(213,141,34)" fg:x="304475" fg:w="188"/><text x="57.6223%" y="655.50"></text></g><g><title>kfree (144 samples, 0.03%)</title><rect x="57.4078%" y="645" width="0.0271%" height="15" fill="rgb(249,130,34)" fg:x="304663" fg:w="144"/><text x="57.6578%" y="655.50"></text></g><g><title>__btrfs_kill_delayed_node (479 samples, 0.09%)</title><rect x="57.3475%" y="661" width="0.0903%" height="15" fill="rgb(219,42,41)" fg:x="304343" fg:w="479"/><text x="57.5975%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (490 samples, 0.09%)</title><rect x="57.3473%" y="677" width="0.0923%" height="15" fill="rgb(224,100,54)" fg:x="304342" fg:w="490"/><text x="57.5973%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (84 samples, 0.02%)</title><rect x="57.4601%" y="661" width="0.0158%" height="15" fill="rgb(229,200,27)" fg:x="304941" fg:w="84"/><text x="57.7101%" y="671.50"></text></g><g><title>find_extent_buffer (76 samples, 0.01%)</title><rect x="57.4818%" y="645" width="0.0143%" height="15" fill="rgb(217,118,10)" fg:x="305056" fg:w="76"/><text x="57.7318%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (120 samples, 0.02%)</title><rect x="57.4760%" y="661" width="0.0226%" height="15" fill="rgb(206,22,3)" fg:x="305025" fg:w="120"/><text x="57.7260%" y="671.50"></text></g><g><title>btrfs_search_slot (334 samples, 0.06%)</title><rect x="57.4404%" y="677" width="0.0629%" height="15" fill="rgb(232,163,46)" fg:x="304836" fg:w="334"/><text x="57.6904%" y="687.50"></text></g><g><title>lock_extent_bits (88 samples, 0.02%)</title><rect x="57.5048%" y="677" width="0.0166%" height="15" fill="rgb(206,95,13)" fg:x="305178" fg:w="88"/><text x="57.7548%" y="687.50"></text></g><g><title>__set_extent_bit (86 samples, 0.02%)</title><rect x="57.5052%" y="661" width="0.0162%" height="15" fill="rgb(253,154,18)" fg:x="305180" fg:w="86"/><text x="57.7552%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (3,066 samples, 0.58%)</title><rect x="56.9561%" y="693" width="0.5777%" height="15" fill="rgb(219,32,23)" fg:x="302266" fg:w="3066"/><text x="57.2061%" y="703.50"></text></g><g><title>read_extent_buffer (66 samples, 0.01%)</title><rect x="57.5214%" y="677" width="0.0124%" height="15" fill="rgb(230,191,45)" fg:x="305266" fg:w="66"/><text x="57.7714%" y="687.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (72 samples, 0.01%)</title><rect x="57.5480%" y="629" width="0.0136%" height="15" fill="rgb(229,64,36)" fg:x="305407" fg:w="72"/><text x="57.7980%" y="639.50"></text></g><g><title>btrfs_block_rsv_refill (172 samples, 0.03%)</title><rect x="57.5374%" y="677" width="0.0324%" height="15" fill="rgb(205,129,25)" fg:x="305351" fg:w="172"/><text x="57.7874%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (141 samples, 0.03%)</title><rect x="57.5432%" y="661" width="0.0266%" height="15" fill="rgb(254,112,7)" fg:x="305382" fg:w="141"/><text x="57.7932%" y="671.50"></text></g><g><title>__reserve_bytes (140 samples, 0.03%)</title><rect x="57.5434%" y="645" width="0.0264%" height="15" fill="rgb(226,53,48)" fg:x="305383" fg:w="140"/><text x="57.7934%" y="655.50"></text></g><g><title>evict_refill_and_join (283 samples, 0.05%)</title><rect x="57.5338%" y="693" width="0.0533%" height="15" fill="rgb(214,153,38)" fg:x="305332" fg:w="283"/><text x="57.7838%" y="703.50"></text></g><g><title>start_transaction (92 samples, 0.02%)</title><rect x="57.5698%" y="677" width="0.0173%" height="15" fill="rgb(243,101,7)" fg:x="305523" fg:w="92"/><text x="57.8198%" y="687.50"></text></g><g><title>btrfs_evict_inode (5,595 samples, 1.05%)</title><rect x="56.5455%" y="709" width="1.0543%" height="15" fill="rgb(240,140,22)" fg:x="300087" fg:w="5595"/><text x="56.7955%" y="719.50"></text></g><g><title>evict (5,671 samples, 1.07%)</title><rect x="56.5363%" y="725" width="1.0686%" height="15" fill="rgb(235,114,2)" fg:x="300038" fg:w="5671"/><text x="56.7863%" y="735.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="57.6237%" y="693" width="0.0124%" height="15" fill="rgb(242,59,12)" fg:x="305809" fg:w="66"/><text x="57.8737%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="57.6691%" y="645" width="0.0115%" height="15" fill="rgb(252,134,9)" fg:x="306050" fg:w="61"/><text x="57.9191%" y="655.50"></text></g><g><title>d_lru_del (374 samples, 0.07%)</title><rect x="57.6435%" y="677" width="0.0705%" height="15" fill="rgb(236,4,44)" fg:x="305914" fg:w="374"/><text x="57.8935%" y="687.50"></text></g><g><title>list_lru_del (365 samples, 0.07%)</title><rect x="57.6452%" y="661" width="0.0688%" height="15" fill="rgb(254,172,41)" fg:x="305923" fg:w="365"/><text x="57.8952%" y="671.50"></text></g><g><title>mem_cgroup_from_obj (177 samples, 0.03%)</title><rect x="57.6806%" y="645" width="0.0334%" height="15" fill="rgb(244,63,20)" fg:x="306111" fg:w="177"/><text x="57.9306%" y="655.50"></text></g><g><title>d_walk (538 samples, 0.10%)</title><rect x="57.6169%" y="709" width="0.1014%" height="15" fill="rgb(250,73,31)" fg:x="305773" fg:w="538"/><text x="57.8669%" y="719.50"></text></g><g><title>select_collect (436 samples, 0.08%)</title><rect x="57.6361%" y="693" width="0.0822%" height="15" fill="rgb(241,38,36)" fg:x="305875" fg:w="436"/><text x="57.8861%" y="703.50"></text></g><g><title>___d_drop (244 samples, 0.05%)</title><rect x="57.7294%" y="677" width="0.0460%" height="15" fill="rgb(245,211,2)" fg:x="306370" fg:w="244"/><text x="57.9794%" y="687.50"></text></g><g><title>call_rcu (281 samples, 0.05%)</title><rect x="57.7884%" y="677" width="0.0529%" height="15" fill="rgb(206,120,28)" fg:x="306683" fg:w="281"/><text x="58.0384%" y="687.50"></text></g><g><title>rcu_segcblist_enqueue (148 samples, 0.03%)</title><rect x="57.8135%" y="661" width="0.0279%" height="15" fill="rgb(211,59,34)" fg:x="306816" fg:w="148"/><text x="58.0635%" y="671.50"></text></g><g><title>__dentry_kill (648 samples, 0.12%)</title><rect x="57.7211%" y="693" width="0.1221%" height="15" fill="rgb(233,168,5)" fg:x="306326" fg:w="648"/><text x="57.9711%" y="703.50"></text></g><g><title>__dput_to_list (56 samples, 0.01%)</title><rect x="57.8432%" y="693" width="0.0106%" height="15" fill="rgb(234,33,13)" fg:x="306974" fg:w="56"/><text x="58.0932%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="57.8555%" y="693" width="0.0115%" height="15" fill="rgb(231,150,26)" fg:x="307039" fg:w="61"/><text x="58.1055%" y="703.50"></text></g><g><title>shrink_dcache_parent (1,471 samples, 0.28%)</title><rect x="57.6154%" y="725" width="0.2772%" height="15" fill="rgb(217,191,4)" fg:x="305765" fg:w="1471"/><text x="57.8654%" y="735.50"></text></g><g><title>shrink_dentry_list (925 samples, 0.17%)</title><rect x="57.7183%" y="709" width="0.1743%" height="15" fill="rgb(246,198,38)" fg:x="306311" fg:w="925"/><text x="57.9683%" y="719.50"></text></g><g><title>shrink_lock_dentry.part.0 (92 samples, 0.02%)</title><rect x="57.8753%" y="693" width="0.0173%" height="15" fill="rgb(245,64,37)" fg:x="307144" fg:w="92"/><text x="58.1253%" y="703.50"></text></g><g><title>_raw_spin_trylock (73 samples, 0.01%)</title><rect x="57.8788%" y="677" width="0.0138%" height="15" fill="rgb(250,30,36)" fg:x="307163" fg:w="73"/><text x="58.1288%" y="687.50"></text></g><g><title>do_rmdir (11,381 samples, 2.14%)</title><rect x="55.7490%" y="757" width="2.1445%" height="15" fill="rgb(217,86,53)" fg:x="295860" fg:w="11381"/><text x="55.9990%" y="767.50">d..</text></g><g><title>vfs_rmdir.part.0 (11,118 samples, 2.09%)</title><rect x="55.7986%" y="741" width="2.0950%" height="15" fill="rgb(228,157,16)" fg:x="296123" fg:w="11118"/><text x="56.0486%" y="751.50">v..</text></g><g><title>_raw_spin_lock (145 samples, 0.03%)</title><rect x="58.0778%" y="677" width="0.0273%" height="15" fill="rgb(217,59,31)" fg:x="308219" fg:w="145"/><text x="58.3278%" y="687.50"></text></g><g><title>__lookup_hash (1,059 samples, 0.20%)</title><rect x="57.9065%" y="741" width="0.1995%" height="15" fill="rgb(237,138,41)" fg:x="307310" fg:w="1059"/><text x="58.1565%" y="751.50"></text></g><g><title>lookup_dcache (1,045 samples, 0.20%)</title><rect x="57.9092%" y="725" width="0.1969%" height="15" fill="rgb(227,91,49)" fg:x="307324" fg:w="1045"/><text x="58.1592%" y="735.50"></text></g><g><title>d_lookup (1,039 samples, 0.20%)</title><rect x="57.9103%" y="709" width="0.1958%" height="15" fill="rgb(247,21,44)" fg:x="307330" fg:w="1039"/><text x="58.1603%" y="719.50"></text></g><g><title>__d_lookup (1,031 samples, 0.19%)</title><rect x="57.9118%" y="693" width="0.1943%" height="15" fill="rgb(219,210,51)" fg:x="307338" fg:w="1031"/><text x="58.1618%" y="703.50"></text></g><g><title>down_write (60 samples, 0.01%)</title><rect x="58.1065%" y="741" width="0.0113%" height="15" fill="rgb(209,140,6)" fg:x="308371" fg:w="60"/><text x="58.3565%" y="751.50"></text></g><g><title>lockref_put_or_lock (119 samples, 0.02%)</title><rect x="58.1300%" y="725" width="0.0224%" height="15" fill="rgb(221,188,24)" fg:x="308496" fg:w="119"/><text x="58.3800%" y="735.50"></text></g><g><title>dput (186 samples, 0.04%)</title><rect x="58.1178%" y="741" width="0.0350%" height="15" fill="rgb(232,154,20)" fg:x="308431" fg:w="186"/><text x="58.3678%" y="751.50"></text></g><g><title>__legitimize_mnt (63 samples, 0.01%)</title><rect x="58.1767%" y="661" width="0.0119%" height="15" fill="rgb(244,137,50)" fg:x="308744" fg:w="63"/><text x="58.4267%" y="671.50"></text></g><g><title>__legitimize_path (133 samples, 0.03%)</title><rect x="58.1745%" y="677" width="0.0251%" height="15" fill="rgb(225,185,43)" fg:x="308732" fg:w="133"/><text x="58.4245%" y="687.50"></text></g><g><title>lockref_get_not_dead (58 samples, 0.01%)</title><rect x="58.1886%" y="661" width="0.0109%" height="15" fill="rgb(213,205,38)" fg:x="308807" fg:w="58"/><text x="58.4386%" y="671.50"></text></g><g><title>complete_walk (172 samples, 0.03%)</title><rect x="58.1702%" y="709" width="0.0324%" height="15" fill="rgb(236,73,12)" fg:x="308709" fg:w="172"/><text x="58.4202%" y="719.50"></text></g><g><title>try_to_unlazy (162 samples, 0.03%)</title><rect x="58.1720%" y="693" width="0.0305%" height="15" fill="rgb(235,219,13)" fg:x="308719" fg:w="162"/><text x="58.4220%" y="703.50"></text></g><g><title>link_path_walk.part.0 (114 samples, 0.02%)</title><rect x="58.2026%" y="709" width="0.0215%" height="15" fill="rgb(218,59,36)" fg:x="308881" fg:w="114"/><text x="58.4526%" y="719.50"></text></g><g><title>__fget_light (188 samples, 0.04%)</title><rect x="58.2318%" y="693" width="0.0354%" height="15" fill="rgb(205,110,39)" fg:x="309036" fg:w="188"/><text x="58.4818%" y="703.50"></text></g><g><title>__fget_files (136 samples, 0.03%)</title><rect x="58.2416%" y="677" width="0.0256%" height="15" fill="rgb(218,206,42)" fg:x="309088" fg:w="136"/><text x="58.4916%" y="687.50"></text></g><g><title>path_init (287 samples, 0.05%)</title><rect x="58.2240%" y="709" width="0.0541%" height="15" fill="rgb(248,125,24)" fg:x="308995" fg:w="287"/><text x="58.4740%" y="719.50"></text></g><g><title>fput_many (56 samples, 0.01%)</title><rect x="58.2676%" y="693" width="0.0106%" height="15" fill="rgb(242,28,27)" fg:x="309226" fg:w="56"/><text x="58.5176%" y="703.50"></text></g><g><title>filename_parentat (683 samples, 0.13%)</title><rect x="58.1560%" y="741" width="0.1287%" height="15" fill="rgb(216,228,15)" fg:x="308634" fg:w="683"/><text x="58.4060%" y="751.50"></text></g><g><title>path_parentat (635 samples, 0.12%)</title><rect x="58.1651%" y="725" width="0.1197%" height="15" fill="rgb(235,116,46)" fg:x="308682" fg:w="635"/><text x="58.4151%" y="735.50"></text></g><g><title>ihold (324 samples, 0.06%)</title><rect x="58.2847%" y="741" width="0.0611%" height="15" fill="rgb(224,18,32)" fg:x="309317" fg:w="324"/><text x="58.5347%" y="751.50"></text></g><g><title>iput.part.0 (65 samples, 0.01%)</title><rect x="58.3461%" y="741" width="0.0122%" height="15" fill="rgb(252,5,12)" fg:x="309643" fg:w="65"/><text x="58.5961%" y="751.50"></text></g><g><title>_atomic_dec_and_lock (56 samples, 0.01%)</title><rect x="58.3478%" y="725" width="0.0106%" height="15" fill="rgb(251,36,5)" fg:x="309652" fg:w="56"/><text x="58.5978%" y="735.50"></text></g><g><title>kmem_cache_free (132 samples, 0.02%)</title><rect x="58.3584%" y="741" width="0.0249%" height="15" fill="rgb(217,53,14)" fg:x="309708" fg:w="132"/><text x="58.6084%" y="751.50"></text></g><g><title>__mnt_want_write (58 samples, 0.01%)</title><rect x="58.3899%" y="725" width="0.0109%" height="15" fill="rgb(215,86,45)" fg:x="309875" fg:w="58"/><text x="58.6399%" y="735.50"></text></g><g><title>mnt_want_write (86 samples, 0.02%)</title><rect x="58.3863%" y="741" width="0.0162%" height="15" fill="rgb(242,169,11)" fg:x="309856" fg:w="86"/><text x="58.6363%" y="751.50"></text></g><g><title>apparmor_path_unlink (72 samples, 0.01%)</title><rect x="58.4136%" y="725" width="0.0136%" height="15" fill="rgb(211,213,45)" fg:x="310001" fg:w="72"/><text x="58.6636%" y="735.50"></text></g><g><title>security_path_unlink (288 samples, 0.05%)</title><rect x="58.4104%" y="741" width="0.0543%" height="15" fill="rgb(205,88,11)" fg:x="309984" fg:w="288"/><text x="58.6604%" y="751.50"></text></g><g><title>tomoyo_path_unlink (199 samples, 0.04%)</title><rect x="58.4272%" y="725" width="0.0375%" height="15" fill="rgb(252,69,26)" fg:x="310073" fg:w="199"/><text x="58.6772%" y="735.50"></text></g><g><title>tomoyo_path_perm (187 samples, 0.04%)</title><rect x="58.4294%" y="709" width="0.0352%" height="15" fill="rgb(246,123,37)" fg:x="310085" fg:w="187"/><text x="58.6794%" y="719.50"></text></g><g><title>tomoyo_init_request_info (101 samples, 0.02%)</title><rect x="58.4456%" y="693" width="0.0190%" height="15" fill="rgb(212,205,5)" fg:x="310171" fg:w="101"/><text x="58.6956%" y="703.50"></text></g><g><title>up_write (64 samples, 0.01%)</title><rect x="58.4647%" y="741" width="0.0121%" height="15" fill="rgb(253,148,0)" fg:x="310272" fg:w="64"/><text x="58.7147%" y="751.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="58.4973%" y="725" width="0.0113%" height="15" fill="rgb(239,22,4)" fg:x="310445" fg:w="60"/><text x="58.7473%" y="735.50"></text></g><g><title>btrfs_put_transaction (79 samples, 0.01%)</title><rect x="58.5519%" y="693" width="0.0149%" height="15" fill="rgb(226,26,53)" fg:x="310735" fg:w="79"/><text x="58.8019%" y="703.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="58.5787%" y="661" width="0.0219%" height="15" fill="rgb(225,229,45)" fg:x="310877" fg:w="116"/><text x="58.8287%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (199 samples, 0.04%)</title><rect x="58.5672%" y="693" width="0.0375%" height="15" fill="rgb(220,60,37)" fg:x="310816" fg:w="199"/><text x="58.8172%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (192 samples, 0.04%)</title><rect x="58.5685%" y="677" width="0.0362%" height="15" fill="rgb(217,180,35)" fg:x="310823" fg:w="192"/><text x="58.8185%" y="687.50"></text></g><g><title>__btrfs_end_transaction (596 samples, 0.11%)</title><rect x="58.5135%" y="709" width="0.1123%" height="15" fill="rgb(229,7,53)" fg:x="310531" fg:w="596"/><text x="58.7635%" y="719.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="58.6047%" y="693" width="0.0211%" height="15" fill="rgb(254,137,3)" fg:x="311015" fg:w="112"/><text x="58.8547%" y="703.50"></text></g><g><title>btrfs_tree_unlock (90 samples, 0.02%)</title><rect x="58.7518%" y="645" width="0.0170%" height="15" fill="rgb(215,140,41)" fg:x="311796" fg:w="90"/><text x="59.0018%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (123 samples, 0.02%)</title><rect x="58.7690%" y="645" width="0.0232%" height="15" fill="rgb(250,80,15)" fg:x="311887" fg:w="123"/><text x="59.0190%" y="655.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="58.7733%" y="629" width="0.0188%" height="15" fill="rgb(252,191,6)" fg:x="311910" fg:w="100"/><text x="59.0233%" y="639.50"></text></g><g><title>btrfs_free_path (381 samples, 0.07%)</title><rect x="58.7411%" y="677" width="0.0718%" height="15" fill="rgb(246,217,18)" fg:x="311739" fg:w="381"/><text x="58.9911%" y="687.50"></text></g><g><title>btrfs_release_path (376 samples, 0.07%)</title><rect x="58.7420%" y="661" width="0.0708%" height="15" fill="rgb(223,93,7)" fg:x="311744" fg:w="376"/><text x="58.9920%" y="671.50"></text></g><g><title>release_extent_buffer (110 samples, 0.02%)</title><rect x="58.7922%" y="645" width="0.0207%" height="15" fill="rgb(225,55,52)" fg:x="312010" fg:w="110"/><text x="59.0422%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (86 samples, 0.02%)</title><rect x="58.8517%" y="629" width="0.0162%" height="15" fill="rgb(240,31,24)" fg:x="312326" fg:w="86"/><text x="59.1017%" y="639.50"></text></g><g><title>_raw_read_lock (60 samples, 0.01%)</title><rect x="58.8566%" y="613" width="0.0113%" height="15" fill="rgb(205,56,52)" fg:x="312352" fg:w="60"/><text x="59.1066%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (165 samples, 0.03%)</title><rect x="58.8496%" y="645" width="0.0311%" height="15" fill="rgb(246,146,12)" fg:x="312315" fg:w="165"/><text x="59.0996%" y="655.50"></text></g><g><title>btrfs_root_node (68 samples, 0.01%)</title><rect x="58.8679%" y="629" width="0.0128%" height="15" fill="rgb(239,84,36)" fg:x="312412" fg:w="68"/><text x="59.1179%" y="639.50"></text></g><g><title>balance_level (73 samples, 0.01%)</title><rect x="58.8807%" y="645" width="0.0138%" height="15" fill="rgb(207,41,40)" fg:x="312480" fg:w="73"/><text x="59.1307%" y="655.50"></text></g><g><title>__btrfs_tree_lock (82 samples, 0.02%)</title><rect x="58.8990%" y="629" width="0.0155%" height="15" fill="rgb(241,179,25)" fg:x="312577" fg:w="82"/><text x="59.1490%" y="639.50"></text></g><g><title>btrfs_lock_root_node (146 samples, 0.03%)</title><rect x="58.8971%" y="645" width="0.0275%" height="15" fill="rgb(210,0,34)" fg:x="312567" fg:w="146"/><text x="59.1471%" y="655.50"></text></g><g><title>btrfs_root_node (54 samples, 0.01%)</title><rect x="58.9145%" y="629" width="0.0102%" height="15" fill="rgb(225,217,29)" fg:x="312659" fg:w="54"/><text x="59.1645%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (98 samples, 0.02%)</title><rect x="58.9246%" y="645" width="0.0185%" height="15" fill="rgb(216,191,38)" fg:x="312713" fg:w="98"/><text x="59.1746%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (58 samples, 0.01%)</title><rect x="58.9525%" y="645" width="0.0109%" height="15" fill="rgb(232,140,52)" fg:x="312861" fg:w="58"/><text x="59.2025%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (55 samples, 0.01%)</title><rect x="58.9636%" y="645" width="0.0104%" height="15" fill="rgb(223,158,51)" fg:x="312920" fg:w="55"/><text x="59.2136%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (293 samples, 0.06%)</title><rect x="58.9740%" y="645" width="0.0552%" height="15" fill="rgb(235,29,51)" fg:x="312975" fg:w="293"/><text x="59.2240%" y="655.50"></text></g><g><title>btrfs_get_64 (61 samples, 0.01%)</title><rect x="59.0516%" y="629" width="0.0115%" height="15" fill="rgb(215,181,18)" fg:x="313387" fg:w="61"/><text x="59.3016%" y="639.50"></text></g><g><title>__radix_tree_lookup (182 samples, 0.03%)</title><rect x="59.0801%" y="613" width="0.0343%" height="15" fill="rgb(227,125,34)" fg:x="313538" fg:w="182"/><text x="59.3301%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (101 samples, 0.02%)</title><rect x="59.1144%" y="613" width="0.0190%" height="15" fill="rgb(230,197,49)" fg:x="313720" fg:w="101"/><text x="59.3644%" y="623.50"></text></g><g><title>mark_page_accessed (60 samples, 0.01%)</title><rect x="59.1221%" y="597" width="0.0113%" height="15" fill="rgb(239,141,16)" fg:x="313761" fg:w="60"/><text x="59.3721%" y="607.50"></text></g><g><title>find_extent_buffer (348 samples, 0.07%)</title><rect x="59.0682%" y="629" width="0.0656%" height="15" fill="rgb(225,105,43)" fg:x="313475" fg:w="348"/><text x="59.3182%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (636 samples, 0.12%)</title><rect x="59.0292%" y="645" width="0.1198%" height="15" fill="rgb(214,131,14)" fg:x="313268" fg:w="636"/><text x="59.2792%" y="655.50"></text></g><g><title>read_extent_buffer (81 samples, 0.02%)</title><rect x="59.1338%" y="629" width="0.0153%" height="15" fill="rgb(229,177,11)" fg:x="313823" fg:w="81"/><text x="59.3838%" y="639.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,899 samples, 0.36%)</title><rect x="58.8129%" y="677" width="0.3578%" height="15" fill="rgb(231,180,14)" fg:x="312120" fg:w="1899"/><text x="59.0629%" y="687.50"></text></g><g><title>btrfs_search_slot (1,888 samples, 0.36%)</title><rect x="58.8150%" y="661" width="0.3558%" height="15" fill="rgb(232,88,2)" fg:x="312131" fg:w="1888"/><text x="59.0650%" y="671.50"></text></g><g><title>unlock_up (55 samples, 0.01%)</title><rect x="59.1604%" y="645" width="0.0104%" height="15" fill="rgb(205,220,8)" fg:x="313964" fg:w="55"/><text x="59.4104%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (74 samples, 0.01%)</title><rect x="59.2235%" y="629" width="0.0139%" height="15" fill="rgb(225,23,53)" fg:x="314299" fg:w="74"/><text x="59.4735%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (162 samples, 0.03%)</title><rect x="59.2207%" y="645" width="0.0305%" height="15" fill="rgb(213,62,29)" fg:x="314284" fg:w="162"/><text x="59.4707%" y="655.50"></text></g><g><title>btrfs_root_node (73 samples, 0.01%)</title><rect x="59.2374%" y="629" width="0.0138%" height="15" fill="rgb(227,75,7)" fg:x="314373" fg:w="73"/><text x="59.4874%" y="639.50"></text></g><g><title>balance_level (94 samples, 0.02%)</title><rect x="59.2514%" y="645" width="0.0177%" height="15" fill="rgb(207,105,14)" fg:x="314447" fg:w="94"/><text x="59.5014%" y="655.50"></text></g><g><title>__btrfs_tree_lock (89 samples, 0.02%)</title><rect x="59.2727%" y="629" width="0.0168%" height="15" fill="rgb(245,62,29)" fg:x="314560" fg:w="89"/><text x="59.5227%" y="639.50"></text></g><g><title>_raw_write_lock (55 samples, 0.01%)</title><rect x="59.2791%" y="613" width="0.0104%" height="15" fill="rgb(236,202,4)" fg:x="314594" fg:w="55"/><text x="59.5291%" y="623.50"></text></g><g><title>btrfs_lock_root_node (153 samples, 0.03%)</title><rect x="59.2706%" y="645" width="0.0288%" height="15" fill="rgb(250,67,1)" fg:x="314549" fg:w="153"/><text x="59.5206%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (105 samples, 0.02%)</title><rect x="59.2994%" y="645" width="0.0198%" height="15" fill="rgb(253,115,44)" fg:x="314702" fg:w="105"/><text x="59.5494%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (335 samples, 0.06%)</title><rect x="59.3452%" y="645" width="0.0631%" height="15" fill="rgb(251,139,18)" fg:x="314945" fg:w="335"/><text x="59.5952%" y="655.50"></text></g><g><title>btrfs_get_64 (79 samples, 0.01%)</title><rect x="59.4270%" y="629" width="0.0149%" height="15" fill="rgb(218,22,32)" fg:x="315379" fg:w="79"/><text x="59.6770%" y="639.50"></text></g><g><title>__radix_tree_lookup (274 samples, 0.05%)</title><rect x="59.4643%" y="613" width="0.0516%" height="15" fill="rgb(243,53,5)" fg:x="315577" fg:w="274"/><text x="59.7143%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (126 samples, 0.02%)</title><rect x="59.5159%" y="613" width="0.0237%" height="15" fill="rgb(227,56,16)" fg:x="315851" fg:w="126"/><text x="59.7659%" y="623.50"></text></g><g><title>mark_page_accessed (71 samples, 0.01%)</title><rect x="59.5263%" y="597" width="0.0134%" height="15" fill="rgb(245,53,0)" fg:x="315906" fg:w="71"/><text x="59.7763%" y="607.50"></text></g><g><title>find_extent_buffer (499 samples, 0.09%)</title><rect x="59.4462%" y="629" width="0.0940%" height="15" fill="rgb(216,170,35)" fg:x="315481" fg:w="499"/><text x="59.6962%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (767 samples, 0.14%)</title><rect x="59.4083%" y="645" width="0.1445%" height="15" fill="rgb(211,200,8)" fg:x="315280" fg:w="767"/><text x="59.6583%" y="655.50"></text></g><g><title>read_extent_buffer (67 samples, 0.01%)</title><rect x="59.5402%" y="629" width="0.0126%" height="15" fill="rgb(228,204,44)" fg:x="315980" fg:w="67"/><text x="59.7902%" y="639.50"></text></g><g><title>btrfs_search_slot (2,119 samples, 0.40%)</title><rect x="59.1779%" y="661" width="0.3993%" height="15" fill="rgb(214,121,17)" fg:x="314057" fg:w="2119"/><text x="59.4279%" y="671.50"></text></g><g><title>unlock_up (68 samples, 0.01%)</title><rect x="59.5643%" y="645" width="0.0128%" height="15" fill="rgb(233,64,38)" fg:x="316108" fg:w="68"/><text x="59.8143%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (2,187 samples, 0.41%)</title><rect x="59.1707%" y="677" width="0.4121%" height="15" fill="rgb(253,54,19)" fg:x="314019" fg:w="2187"/><text x="59.4207%" y="687.50"></text></g><g><title>btrfs_tree_unlock (104 samples, 0.02%)</title><rect x="59.5962%" y="661" width="0.0196%" height="15" fill="rgb(253,94,18)" fg:x="316277" fg:w="104"/><text x="59.8462%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (137 samples, 0.03%)</title><rect x="59.6164%" y="661" width="0.0258%" height="15" fill="rgb(227,57,52)" fg:x="316384" fg:w="137"/><text x="59.8664%" y="671.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="59.6220%" y="645" width="0.0202%" height="15" fill="rgb(230,228,50)" fg:x="316414" fg:w="107"/><text x="59.8720%" y="655.50"></text></g><g><title>btrfs_release_path (400 samples, 0.08%)</title><rect x="59.5828%" y="677" width="0.0754%" height="15" fill="rgb(217,205,27)" fg:x="316206" fg:w="400"/><text x="59.8328%" y="687.50"></text></g><g><title>release_extent_buffer (85 samples, 0.02%)</title><rect x="59.6422%" y="661" width="0.0160%" height="15" fill="rgb(252,71,50)" fg:x="316521" fg:w="85"/><text x="59.8922%" y="671.50"></text></g><g><title>kmem_cache_alloc (124 samples, 0.02%)</title><rect x="59.6582%" y="677" width="0.0234%" height="15" fill="rgb(209,86,4)" fg:x="316606" fg:w="124"/><text x="59.9082%" y="687.50"></text></g><g><title>kmem_cache_free (98 samples, 0.02%)</title><rect x="59.6816%" y="677" width="0.0185%" height="15" fill="rgb(229,94,0)" fg:x="316730" fg:w="98"/><text x="59.9316%" y="687.50"></text></g><g><title>mutex_lock (111 samples, 0.02%)</title><rect x="59.7000%" y="677" width="0.0209%" height="15" fill="rgb(252,223,21)" fg:x="316828" fg:w="111"/><text x="59.9500%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (5,482 samples, 1.03%)</title><rect x="58.7113%" y="693" width="1.0330%" height="15" fill="rgb(230,210,4)" fg:x="311581" fg:w="5482"/><text x="58.9613%" y="703.50"></text></g><g><title>mutex_unlock (124 samples, 0.02%)</title><rect x="59.7209%" y="677" width="0.0234%" height="15" fill="rgb(240,149,38)" fg:x="316939" fg:w="124"/><text x="59.9709%" y="687.50"></text></g><g><title>btrfs_get_32 (130 samples, 0.02%)</title><rect x="59.8564%" y="661" width="0.0245%" height="15" fill="rgb(254,105,20)" fg:x="317658" fg:w="130"/><text x="60.1064%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,149 samples, 0.22%)</title><rect x="59.8809%" y="661" width="0.2165%" height="15" fill="rgb(253,87,46)" fg:x="317788" fg:w="1149"/><text x="60.1309%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (154 samples, 0.03%)</title><rect x="60.0684%" y="645" width="0.0290%" height="15" fill="rgb(253,116,33)" fg:x="318783" fg:w="154"/><text x="60.3184%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (138 samples, 0.03%)</title><rect x="60.0974%" y="661" width="0.0260%" height="15" fill="rgb(229,198,5)" fg:x="318937" fg:w="138"/><text x="60.3474%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (94 samples, 0.02%)</title><rect x="60.1057%" y="645" width="0.0177%" height="15" fill="rgb(242,38,37)" fg:x="318981" fg:w="94"/><text x="60.3557%" y="655.50"></text></g><g><title>btrfs_set_token_32 (965 samples, 0.18%)</title><rect x="60.1234%" y="661" width="0.1818%" height="15" fill="rgb(242,69,53)" fg:x="319075" fg:w="965"/><text x="60.3734%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (186 samples, 0.04%)</title><rect x="60.2702%" y="645" width="0.0350%" height="15" fill="rgb(249,80,16)" fg:x="319854" fg:w="186"/><text x="60.5202%" y="655.50"></text></g><g><title>leaf_space_used (142 samples, 0.03%)</title><rect x="60.3053%" y="661" width="0.0268%" height="15" fill="rgb(206,128,11)" fg:x="320040" fg:w="142"/><text x="60.5553%" y="671.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="60.3124%" y="645" width="0.0196%" height="15" fill="rgb(212,35,20)" fg:x="320078" fg:w="104"/><text x="60.5624%" y="655.50"></text></g><g><title>memcpy_extent_buffer (253 samples, 0.05%)</title><rect x="60.3320%" y="661" width="0.0477%" height="15" fill="rgb(236,79,13)" fg:x="320182" fg:w="253"/><text x="60.5820%" y="671.50"></text></g><g><title>memmove (195 samples, 0.04%)</title><rect x="60.3429%" y="645" width="0.0367%" height="15" fill="rgb(233,123,3)" fg:x="320240" fg:w="195"/><text x="60.5929%" y="655.50"></text></g><g><title>copy_pages (286 samples, 0.05%)</title><rect x="60.4025%" y="645" width="0.0539%" height="15" fill="rgb(214,93,52)" fg:x="320556" fg:w="286"/><text x="60.6525%" y="655.50"></text></g><g><title>btrfs_del_items (5,694 samples, 1.07%)</title><rect x="59.7603%" y="677" width="1.0729%" height="15" fill="rgb(251,37,40)" fg:x="317148" fg:w="5694"/><text x="60.0103%" y="687.50"></text></g><g><title>memmove_extent_buffer (2,407 samples, 0.45%)</title><rect x="60.3797%" y="661" width="0.4536%" height="15" fill="rgb(227,80,54)" fg:x="320435" fg:w="2407"/><text x="60.6297%" y="671.50"></text></g><g><title>memmove (2,000 samples, 0.38%)</title><rect x="60.4564%" y="645" width="0.3769%" height="15" fill="rgb(254,48,11)" fg:x="320842" fg:w="2000"/><text x="60.7064%" y="655.50"></text></g><g><title>btrfs_get_16 (200 samples, 0.04%)</title><rect x="60.8427%" y="661" width="0.0377%" height="15" fill="rgb(235,193,26)" fg:x="322892" fg:w="200"/><text x="61.0927%" y="671.50"></text></g><g><title>btrfs_get_32 (76 samples, 0.01%)</title><rect x="60.8803%" y="661" width="0.0143%" height="15" fill="rgb(229,99,21)" fg:x="323092" fg:w="76"/><text x="61.1303%" y="671.50"></text></g><g><title>btrfs_find_name_in_backref (435 samples, 0.08%)</title><rect x="60.8332%" y="677" width="0.0820%" height="15" fill="rgb(211,140,41)" fg:x="322842" fg:w="435"/><text x="61.0832%" y="687.50"></text></g><g><title>memcmp_extent_buffer (109 samples, 0.02%)</title><rect x="60.8947%" y="661" width="0.0205%" height="15" fill="rgb(240,227,30)" fg:x="323168" fg:w="109"/><text x="61.1447%" y="671.50"></text></g><g><title>memcmp (54 samples, 0.01%)</title><rect x="60.9050%" y="645" width="0.0102%" height="15" fill="rgb(215,224,45)" fg:x="323223" fg:w="54"/><text x="61.1550%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (233 samples, 0.04%)</title><rect x="60.9288%" y="645" width="0.0439%" height="15" fill="rgb(206,123,31)" fg:x="323349" fg:w="233"/><text x="61.1788%" y="655.50"></text></g><g><title>_raw_spin_lock (181 samples, 0.03%)</title><rect x="60.9386%" y="629" width="0.0341%" height="15" fill="rgb(210,138,16)" fg:x="323401" fg:w="181"/><text x="61.1886%" y="639.50"></text></g><g><title>btrfs_free_path (467 samples, 0.09%)</title><rect x="60.9152%" y="677" width="0.0880%" height="15" fill="rgb(228,57,28)" fg:x="323277" fg:w="467"/><text x="61.1652%" y="687.50"></text></g><g><title>btrfs_release_path (462 samples, 0.09%)</title><rect x="60.9161%" y="661" width="0.0871%" height="15" fill="rgb(242,170,10)" fg:x="323282" fg:w="462"/><text x="61.1661%" y="671.50"></text></g><g><title>release_extent_buffer (162 samples, 0.03%)</title><rect x="60.9727%" y="645" width="0.0305%" height="15" fill="rgb(228,214,39)" fg:x="323582" fg:w="162"/><text x="61.2227%" y="655.50"></text></g><g><title>_raw_read_lock (68 samples, 0.01%)</title><rect x="61.0776%" y="629" width="0.0128%" height="15" fill="rgb(218,179,33)" fg:x="324139" fg:w="68"/><text x="61.3276%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (97 samples, 0.02%)</title><rect x="61.0735%" y="645" width="0.0183%" height="15" fill="rgb(235,193,39)" fg:x="324117" fg:w="97"/><text x="61.3235%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (189 samples, 0.04%)</title><rect x="61.0712%" y="661" width="0.0356%" height="15" fill="rgb(219,221,36)" fg:x="324105" fg:w="189"/><text x="61.3212%" y="671.50"></text></g><g><title>btrfs_root_node (80 samples, 0.02%)</title><rect x="61.0918%" y="645" width="0.0151%" height="15" fill="rgb(248,218,19)" fg:x="324214" fg:w="80"/><text x="61.3418%" y="655.50"></text></g><g><title>_raw_write_lock (61 samples, 0.01%)</title><rect x="61.1396%" y="629" width="0.0115%" height="15" fill="rgb(205,50,9)" fg:x="324468" fg:w="61"/><text x="61.3896%" y="639.50"></text></g><g><title>__btrfs_tree_lock (181 samples, 0.03%)</title><rect x="61.1272%" y="645" width="0.0341%" height="15" fill="rgb(238,81,28)" fg:x="324402" fg:w="181"/><text x="61.3772%" y="655.50"></text></g><g><title>btrfs_lock_root_node (265 samples, 0.05%)</title><rect x="61.1236%" y="661" width="0.0499%" height="15" fill="rgb(235,110,19)" fg:x="324383" fg:w="265"/><text x="61.3736%" y="671.50"></text></g><g><title>btrfs_root_node (65 samples, 0.01%)</title><rect x="61.1613%" y="645" width="0.0122%" height="15" fill="rgb(214,7,14)" fg:x="324583" fg:w="65"/><text x="61.4113%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (69 samples, 0.01%)</title><rect x="61.1735%" y="661" width="0.0130%" height="15" fill="rgb(211,77,3)" fg:x="324648" fg:w="69"/><text x="61.4235%" y="671.50"></text></g><g><title>_raw_write_lock (107 samples, 0.02%)</title><rect x="61.1922%" y="645" width="0.0202%" height="15" fill="rgb(229,5,9)" fg:x="324747" fg:w="107"/><text x="61.4422%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (168 samples, 0.03%)</title><rect x="61.1865%" y="661" width="0.0317%" height="15" fill="rgb(225,90,11)" fg:x="324717" fg:w="168"/><text x="61.4365%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="61.2182%" y="661" width="0.0119%" height="15" fill="rgb(242,56,8)" fg:x="324885" fg:w="63"/><text x="61.4682%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,204 samples, 0.23%)</title><rect x="61.2301%" y="661" width="0.2269%" height="15" fill="rgb(249,212,39)" fg:x="324948" fg:w="1204"/><text x="61.4801%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (133 samples, 0.03%)</title><rect x="61.4850%" y="645" width="0.0251%" height="15" fill="rgb(236,90,9)" fg:x="326301" fg:w="133"/><text x="61.7350%" y="655.50"></text></g><g><title>verify_parent_transid (111 samples, 0.02%)</title><rect x="61.4892%" y="629" width="0.0209%" height="15" fill="rgb(206,88,35)" fg:x="326323" fg:w="111"/><text x="61.7392%" y="639.50"></text></g><g><title>btrfs_get_64 (142 samples, 0.03%)</title><rect x="61.5101%" y="645" width="0.0268%" height="15" fill="rgb(205,126,30)" fg:x="326434" fg:w="142"/><text x="61.7601%" y="655.50"></text></g><g><title>__radix_tree_lookup (619 samples, 0.12%)</title><rect x="61.6050%" y="629" width="0.1166%" height="15" fill="rgb(230,176,12)" fg:x="326938" fg:w="619"/><text x="61.8550%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (361 samples, 0.07%)</title><rect x="61.7219%" y="629" width="0.0680%" height="15" fill="rgb(243,19,9)" fg:x="327558" fg:w="361"/><text x="61.9719%" y="639.50"></text></g><g><title>mark_page_accessed (256 samples, 0.05%)</title><rect x="61.7417%" y="613" width="0.0482%" height="15" fill="rgb(245,171,17)" fg:x="327663" fg:w="256"/><text x="61.9917%" y="623.50"></text></g><g><title>find_extent_buffer (1,300 samples, 0.24%)</title><rect x="61.5461%" y="645" width="0.2450%" height="15" fill="rgb(227,52,21)" fg:x="326625" fg:w="1300"/><text x="61.7961%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,919 samples, 0.36%)</title><rect x="61.4569%" y="661" width="0.3616%" height="15" fill="rgb(238,69,14)" fg:x="326152" fg:w="1919"/><text x="61.7069%" y="671.50"></text></g><g><title>read_extent_buffer (146 samples, 0.03%)</title><rect x="61.7910%" y="645" width="0.0275%" height="15" fill="rgb(241,156,39)" fg:x="327925" fg:w="146"/><text x="62.0410%" y="655.50"></text></g><g><title>btrfs_search_slot (4,463 samples, 0.84%)</title><rect x="61.0171%" y="677" width="0.8410%" height="15" fill="rgb(212,227,28)" fg:x="323818" fg:w="4463"/><text x="61.2671%" y="687.50"></text></g><g><title>unlock_up (180 samples, 0.03%)</title><rect x="61.8242%" y="661" width="0.0339%" height="15" fill="rgb(209,118,27)" fg:x="328101" fg:w="180"/><text x="62.0742%" y="671.50"></text></g><g><title>memset_erms (56 samples, 0.01%)</title><rect x="61.8730%" y="661" width="0.0106%" height="15" fill="rgb(226,102,5)" fg:x="328360" fg:w="56"/><text x="62.1230%" y="671.50"></text></g><g><title>kmem_cache_alloc (165 samples, 0.03%)</title><rect x="61.8585%" y="677" width="0.0311%" height="15" fill="rgb(223,34,3)" fg:x="328283" fg:w="165"/><text x="62.1085%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (11,512 samples, 2.17%)</title><rect x="59.7443%" y="693" width="2.1692%" height="15" fill="rgb(221,81,38)" fg:x="317063" fg:w="11512"/><text x="59.9943%" y="703.50">b..</text></g><g><title>kmem_cache_free (127 samples, 0.02%)</title><rect x="61.8896%" y="677" width="0.0239%" height="15" fill="rgb(236,219,28)" fg:x="328448" fg:w="127"/><text x="62.1396%" y="687.50"></text></g><g><title>btrfs_del_items (64 samples, 0.01%)</title><rect x="61.9322%" y="661" width="0.0121%" height="15" fill="rgb(213,200,14)" fg:x="328674" fg:w="64"/><text x="62.1822%" y="671.50"></text></g><g><title>btrfs_tree_unlock (108 samples, 0.02%)</title><rect x="61.9601%" y="629" width="0.0204%" height="15" fill="rgb(240,33,19)" fg:x="328822" fg:w="108"/><text x="62.2101%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (160 samples, 0.03%)</title><rect x="61.9817%" y="629" width="0.0301%" height="15" fill="rgb(233,113,27)" fg:x="328937" fg:w="160"/><text x="62.2317%" y="639.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.02%)</title><rect x="61.9883%" y="613" width="0.0236%" height="15" fill="rgb(220,221,18)" fg:x="328972" fg:w="125"/><text x="62.2383%" y="623.50"></text></g><g><title>btrfs_free_path (499 samples, 0.09%)</title><rect x="61.9446%" y="661" width="0.0940%" height="15" fill="rgb(238,92,8)" fg:x="328740" fg:w="499"/><text x="62.1946%" y="671.50"></text></g><g><title>btrfs_release_path (488 samples, 0.09%)</title><rect x="61.9467%" y="645" width="0.0920%" height="15" fill="rgb(222,164,16)" fg:x="328751" fg:w="488"/><text x="62.1967%" y="655.50"></text></g><g><title>release_extent_buffer (142 samples, 0.03%)</title><rect x="62.0119%" y="629" width="0.0268%" height="15" fill="rgb(241,119,3)" fg:x="329097" fg:w="142"/><text x="62.2619%" y="639.50"></text></g><g><title>_raw_read_lock (61 samples, 0.01%)</title><rect x="62.1176%" y="613" width="0.0115%" height="15" fill="rgb(241,44,8)" fg:x="329658" fg:w="61"/><text x="62.3676%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (98 samples, 0.02%)</title><rect x="62.1108%" y="629" width="0.0185%" height="15" fill="rgb(230,36,40)" fg:x="329622" fg:w="98"/><text x="62.3608%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (237 samples, 0.04%)</title><rect x="62.1080%" y="645" width="0.0447%" height="15" fill="rgb(243,16,36)" fg:x="329607" fg:w="237"/><text x="62.3580%" y="655.50"></text></g><g><title>btrfs_root_node (124 samples, 0.02%)</title><rect x="62.1293%" y="629" width="0.0234%" height="15" fill="rgb(231,4,26)" fg:x="329720" fg:w="124"/><text x="62.3793%" y="639.50"></text></g><g><title>balance_level (152 samples, 0.03%)</title><rect x="62.1530%" y="645" width="0.0286%" height="15" fill="rgb(240,9,31)" fg:x="329846" fg:w="152"/><text x="62.4030%" y="655.50"></text></g><g><title>btrfs_get_64 (56 samples, 0.01%)</title><rect x="62.1711%" y="629" width="0.0106%" height="15" fill="rgb(207,173,15)" fg:x="329942" fg:w="56"/><text x="62.4211%" y="639.50"></text></g><g><title>__btrfs_tree_lock (134 samples, 0.03%)</title><rect x="62.1886%" y="629" width="0.0252%" height="15" fill="rgb(224,192,53)" fg:x="330035" fg:w="134"/><text x="62.4386%" y="639.50"></text></g><g><title>_raw_write_lock (63 samples, 0.01%)</title><rect x="62.2020%" y="613" width="0.0119%" height="15" fill="rgb(223,67,28)" fg:x="330106" fg:w="63"/><text x="62.4520%" y="623.50"></text></g><g><title>btrfs_lock_root_node (220 samples, 0.04%)</title><rect x="62.1864%" y="645" width="0.0415%" height="15" fill="rgb(211,20,47)" fg:x="330023" fg:w="220"/><text x="62.4364%" y="655.50"></text></g><g><title>btrfs_root_node (74 samples, 0.01%)</title><rect x="62.2139%" y="629" width="0.0139%" height="15" fill="rgb(240,228,2)" fg:x="330169" fg:w="74"/><text x="62.4639%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (85 samples, 0.02%)</title><rect x="62.2278%" y="645" width="0.0160%" height="15" fill="rgb(248,151,12)" fg:x="330243" fg:w="85"/><text x="62.4778%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (68 samples, 0.01%)</title><rect x="62.2438%" y="645" width="0.0128%" height="15" fill="rgb(244,8,39)" fg:x="330328" fg:w="68"/><text x="62.4938%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (81 samples, 0.02%)</title><rect x="62.2566%" y="645" width="0.0153%" height="15" fill="rgb(222,26,8)" fg:x="330396" fg:w="81"/><text x="62.5066%" y="655.50"></text></g><g><title>_raw_write_lock (63 samples, 0.01%)</title><rect x="62.2600%" y="629" width="0.0119%" height="15" fill="rgb(213,106,44)" fg:x="330414" fg:w="63"/><text x="62.5100%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (81 samples, 0.02%)</title><rect x="62.2721%" y="645" width="0.0153%" height="15" fill="rgb(214,129,20)" fg:x="330478" fg:w="81"/><text x="62.5221%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="62.2751%" y="629" width="0.0122%" height="15" fill="rgb(212,32,13)" fg:x="330494" fg:w="65"/><text x="62.5251%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (825 samples, 0.16%)</title><rect x="62.2874%" y="645" width="0.1555%" height="15" fill="rgb(208,168,33)" fg:x="330559" fg:w="825"/><text x="62.5374%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (59 samples, 0.01%)</title><rect x="62.4624%" y="629" width="0.0111%" height="15" fill="rgb(231,207,8)" fg:x="331488" fg:w="59"/><text x="62.7124%" y="639.50"></text></g><g><title>btrfs_get_64 (99 samples, 0.02%)</title><rect x="62.4735%" y="629" width="0.0187%" height="15" fill="rgb(235,219,23)" fg:x="331547" fg:w="99"/><text x="62.7235%" y="639.50"></text></g><g><title>__radix_tree_lookup (346 samples, 0.07%)</title><rect x="62.5291%" y="613" width="0.0652%" height="15" fill="rgb(226,216,26)" fg:x="331842" fg:w="346"/><text x="62.7791%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (174 samples, 0.03%)</title><rect x="62.5943%" y="613" width="0.0328%" height="15" fill="rgb(239,137,16)" fg:x="332188" fg:w="174"/><text x="62.8443%" y="623.50"></text></g><g><title>mark_page_accessed (110 samples, 0.02%)</title><rect x="62.6064%" y="597" width="0.0207%" height="15" fill="rgb(207,12,36)" fg:x="332252" fg:w="110"/><text x="62.8564%" y="607.50"></text></g><g><title>find_extent_buffer (674 samples, 0.13%)</title><rect x="62.5010%" y="629" width="0.1270%" height="15" fill="rgb(210,214,24)" fg:x="331693" fg:w="674"/><text x="62.7510%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,085 samples, 0.20%)</title><rect x="62.4428%" y="645" width="0.2044%" height="15" fill="rgb(206,56,30)" fg:x="331384" fg:w="1085"/><text x="62.6928%" y="655.50"></text></g><g><title>read_extent_buffer (102 samples, 0.02%)</title><rect x="62.6280%" y="629" width="0.0192%" height="15" fill="rgb(228,143,26)" fg:x="332367" fg:w="102"/><text x="62.8780%" y="639.50"></text></g><g><title>release_extent_buffer (59 samples, 0.01%)</title><rect x="62.6512%" y="645" width="0.0111%" height="15" fill="rgb(216,218,46)" fg:x="332490" fg:w="59"/><text x="62.9012%" y="655.50"></text></g><g><title>btrfs_search_slot (3,417 samples, 0.64%)</title><rect x="62.0386%" y="661" width="0.6439%" height="15" fill="rgb(206,6,19)" fg:x="329239" fg:w="3417"/><text x="62.2886%" y="671.50"></text></g><g><title>unlock_up (107 samples, 0.02%)</title><rect x="62.6623%" y="645" width="0.0202%" height="15" fill="rgb(239,177,51)" fg:x="332549" fg:w="107"/><text x="62.9123%" y="655.50"></text></g><g><title>memset_erms (66 samples, 0.01%)</title><rect x="62.7128%" y="645" width="0.0124%" height="15" fill="rgb(216,55,25)" fg:x="332817" fg:w="66"/><text x="62.9628%" y="655.50"></text></g><g><title>kmem_cache_alloc (242 samples, 0.05%)</title><rect x="62.6893%" y="661" width="0.0456%" height="15" fill="rgb(231,163,29)" fg:x="332692" fg:w="242"/><text x="62.9393%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (4,438 samples, 0.84%)</title><rect x="61.9261%" y="677" width="0.8363%" height="15" fill="rgb(232,149,50)" fg:x="328642" fg:w="4438"/><text x="62.1761%" y="687.50"></text></g><g><title>kmem_cache_free (146 samples, 0.03%)</title><rect x="62.7349%" y="661" width="0.0275%" height="15" fill="rgb(223,142,48)" fg:x="332934" fg:w="146"/><text x="62.9849%" y="671.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="62.7699%" y="677" width="0.0121%" height="15" fill="rgb(245,83,23)" fg:x="333120" fg:w="64"/><text x="63.0199%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,692 samples, 0.88%)</title><rect x="61.9135%" y="693" width="0.8841%" height="15" fill="rgb(224,63,2)" fg:x="328575" fg:w="4692"/><text x="62.1635%" y="703.50"></text></g><g><title>mutex_unlock (83 samples, 0.02%)</title><rect x="62.7820%" y="677" width="0.0156%" height="15" fill="rgb(218,65,53)" fg:x="333184" fg:w="83"/><text x="63.0320%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (520 samples, 0.10%)</title><rect x="63.0405%" y="613" width="0.0980%" height="15" fill="rgb(221,84,29)" fg:x="334556" fg:w="520"/><text x="63.2905%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (615 samples, 0.12%)</title><rect x="63.0285%" y="629" width="0.1159%" height="15" fill="rgb(234,0,32)" fg:x="334492" fg:w="615"/><text x="63.2785%" y="639.50"></text></g><g><title>__btrfs_add_free_space (629 samples, 0.12%)</title><rect x="63.0273%" y="645" width="0.1185%" height="15" fill="rgb(206,20,16)" fg:x="334486" fg:w="629"/><text x="63.2773%" y="655.50"></text></g><g><title>btrfs_free_tree_block (677 samples, 0.13%)</title><rect x="63.0271%" y="661" width="0.1276%" height="15" fill="rgb(244,172,18)" fg:x="334485" fg:w="677"/><text x="63.2771%" y="671.50"></text></g><g><title>btrfs_del_leaf (690 samples, 0.13%)</title><rect x="63.0269%" y="677" width="0.1300%" height="15" fill="rgb(254,133,1)" fg:x="334484" fg:w="690"/><text x="63.2769%" y="687.50"></text></g><g><title>btrfs_get_32 (144 samples, 0.03%)</title><rect x="63.1570%" y="677" width="0.0271%" height="15" fill="rgb(222,206,41)" fg:x="335174" fg:w="144"/><text x="63.4070%" y="687.50"></text></g><g><title>btrfs_get_token_32 (3,578 samples, 0.67%)</title><rect x="63.1841%" y="677" width="0.6742%" height="15" fill="rgb(212,3,42)" fg:x="335318" fg:w="3578"/><text x="63.4341%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (465 samples, 0.09%)</title><rect x="63.7707%" y="661" width="0.0876%" height="15" fill="rgb(241,11,4)" fg:x="338431" fg:w="465"/><text x="64.0207%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (177 samples, 0.03%)</title><rect x="63.8583%" y="677" width="0.0334%" height="15" fill="rgb(205,19,26)" fg:x="338896" fg:w="177"/><text x="64.1083%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="63.8724%" y="661" width="0.0192%" height="15" fill="rgb(210,179,32)" fg:x="338971" fg:w="102"/><text x="64.1224%" y="671.50"></text></g><g><title>btrfs_set_token_32 (3,033 samples, 0.57%)</title><rect x="63.8924%" y="677" width="0.5715%" height="15" fill="rgb(227,116,49)" fg:x="339077" fg:w="3033"/><text x="64.1424%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (619 samples, 0.12%)</title><rect x="64.3473%" y="661" width="0.1166%" height="15" fill="rgb(211,146,6)" fg:x="341491" fg:w="619"/><text x="64.5973%" y="671.50"></text></g><g><title>leaf_space_used (139 samples, 0.03%)</title><rect x="64.4645%" y="677" width="0.0262%" height="15" fill="rgb(219,44,39)" fg:x="342113" fg:w="139"/><text x="64.7145%" y="687.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="64.4748%" y="661" width="0.0158%" height="15" fill="rgb(234,128,11)" fg:x="342168" fg:w="84"/><text x="64.7248%" y="671.50"></text></g><g><title>copy_pages (77 samples, 0.01%)</title><rect x="64.5042%" y="661" width="0.0145%" height="15" fill="rgb(220,183,53)" fg:x="342324" fg:w="77"/><text x="64.7542%" y="671.50"></text></g><g><title>memcpy_extent_buffer (618 samples, 0.12%)</title><rect x="64.4907%" y="677" width="0.1164%" height="15" fill="rgb(213,219,32)" fg:x="342252" fg:w="618"/><text x="64.7407%" y="687.50"></text></g><g><title>memmove (469 samples, 0.09%)</title><rect x="64.5187%" y="661" width="0.0884%" height="15" fill="rgb(232,156,16)" fg:x="342401" fg:w="469"/><text x="64.7687%" y="671.50"></text></g><g><title>copy_pages (154 samples, 0.03%)</title><rect x="64.6307%" y="661" width="0.0290%" height="15" fill="rgb(246,135,34)" fg:x="342995" fg:w="154"/><text x="64.8807%" y="671.50"></text></g><g><title>memmove_extent_buffer (1,741 samples, 0.33%)</title><rect x="64.6071%" y="677" width="0.3281%" height="15" fill="rgb(241,99,0)" fg:x="342870" fg:w="1741"/><text x="64.8571%" y="687.50"></text></g><g><title>memmove (1,462 samples, 0.28%)</title><rect x="64.6597%" y="661" width="0.2755%" height="15" fill="rgb(222,103,45)" fg:x="343149" fg:w="1462"/><text x="64.9097%" y="671.50"></text></g><g><title>__push_leaf_left (102 samples, 0.02%)</title><rect x="64.9365%" y="661" width="0.0192%" height="15" fill="rgb(212,57,4)" fg:x="344618" fg:w="102"/><text x="65.1865%" y="671.50"></text></g><g><title>push_leaf_left (162 samples, 0.03%)</title><rect x="64.9352%" y="677" width="0.0305%" height="15" fill="rgb(215,68,47)" fg:x="344611" fg:w="162"/><text x="65.1852%" y="687.50"></text></g><g><title>__push_leaf_right (116 samples, 0.02%)</title><rect x="64.9665%" y="661" width="0.0219%" height="15" fill="rgb(230,84,2)" fg:x="344777" fg:w="116"/><text x="65.2165%" y="671.50"></text></g><g><title>push_leaf_right (164 samples, 0.03%)</title><rect x="64.9657%" y="677" width="0.0309%" height="15" fill="rgb(220,102,14)" fg:x="344773" fg:w="164"/><text x="65.2157%" y="687.50"></text></g><g><title>btrfs_del_items (11,685 samples, 2.20%)</title><rect x="62.7976%" y="693" width="2.2018%" height="15" fill="rgb(240,10,32)" fg:x="333267" fg:w="11685"/><text x="63.0476%" y="703.50">b..</text></g><g><title>btrfs_comp_cpu_keys (81 samples, 0.02%)</title><rect x="65.0379%" y="661" width="0.0153%" height="15" fill="rgb(215,47,27)" fg:x="345156" fg:w="81"/><text x="65.2879%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (336 samples, 0.06%)</title><rect x="65.0075%" y="677" width="0.0633%" height="15" fill="rgb(233,188,43)" fg:x="344995" fg:w="336"/><text x="65.2575%" y="687.50"></text></g><g><title>rb_insert_color (94 samples, 0.02%)</title><rect x="65.0531%" y="661" width="0.0177%" height="15" fill="rgb(253,190,1)" fg:x="345237" fg:w="94"/><text x="65.3031%" y="671.50"></text></g><g><title>mutex_lock (59 samples, 0.01%)</title><rect x="65.0985%" y="661" width="0.0111%" height="15" fill="rgb(206,114,52)" fg:x="345478" fg:w="59"/><text x="65.3485%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (292 samples, 0.06%)</title><rect x="65.0708%" y="677" width="0.0550%" height="15" fill="rgb(233,120,37)" fg:x="345331" fg:w="292"/><text x="65.3208%" y="687.50"></text></g><g><title>mutex_unlock (86 samples, 0.02%)</title><rect x="65.1097%" y="661" width="0.0162%" height="15" fill="rgb(214,52,39)" fg:x="345537" fg:w="86"/><text x="65.3597%" y="671.50"></text></g><g><title>mutex_spin_on_owner (513 samples, 0.10%)</title><rect x="65.1262%" y="661" width="0.0967%" height="15" fill="rgb(223,80,29)" fg:x="345625" fg:w="513"/><text x="65.3762%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (517 samples, 0.10%)</title><rect x="65.1259%" y="677" width="0.0974%" height="15" fill="rgb(230,101,40)" fg:x="345623" fg:w="517"/><text x="65.3759%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (215 samples, 0.04%)</title><rect x="65.2233%" y="677" width="0.0405%" height="15" fill="rgb(219,211,8)" fg:x="346140" fg:w="215"/><text x="65.4733%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (193 samples, 0.04%)</title><rect x="65.2274%" y="661" width="0.0364%" height="15" fill="rgb(252,126,28)" fg:x="346162" fg:w="193"/><text x="65.4774%" y="671.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.03%)</title><rect x="65.2331%" y="645" width="0.0307%" height="15" fill="rgb(215,56,38)" fg:x="346192" fg:w="163"/><text x="65.4831%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (93 samples, 0.02%)</title><rect x="65.2638%" y="677" width="0.0175%" height="15" fill="rgb(249,55,44)" fg:x="346355" fg:w="93"/><text x="65.5138%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (73 samples, 0.01%)</title><rect x="65.2676%" y="661" width="0.0138%" height="15" fill="rgb(220,221,32)" fg:x="346375" fg:w="73"/><text x="65.5176%" y="671.50"></text></g><g><title>__slab_alloc (58 samples, 0.01%)</title><rect x="65.2964%" y="661" width="0.0109%" height="15" fill="rgb(212,216,41)" fg:x="346528" fg:w="58"/><text x="65.5464%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (239 samples, 0.05%)</title><rect x="65.2813%" y="677" width="0.0450%" height="15" fill="rgb(228,213,43)" fg:x="346448" fg:w="239"/><text x="65.5313%" y="687.50"></text></g><g><title>mutex_lock (112 samples, 0.02%)</title><rect x="65.3264%" y="677" width="0.0211%" height="15" fill="rgb(211,31,26)" fg:x="346687" fg:w="112"/><text x="65.5764%" y="687.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,969 samples, 0.37%)</title><rect x="64.9994%" y="693" width="0.3710%" height="15" fill="rgb(229,202,19)" fg:x="344952" fg:w="1969"/><text x="65.2494%" y="703.50"></text></g><g><title>mutex_unlock (122 samples, 0.02%)</title><rect x="65.3475%" y="677" width="0.0230%" height="15" fill="rgb(229,105,46)" fg:x="346799" fg:w="122"/><text x="65.5975%" y="687.50"></text></g><g><title>btrfs_get_16 (58 samples, 0.01%)</title><rect x="65.3799%" y="677" width="0.0109%" height="15" fill="rgb(235,108,1)" fg:x="346971" fg:w="58"/><text x="65.6299%" y="687.50"></text></g><g><title>btrfs_delete_one_dir_name (145 samples, 0.03%)</title><rect x="65.3705%" y="693" width="0.0273%" height="15" fill="rgb(245,111,35)" fg:x="346921" fg:w="145"/><text x="65.6205%" y="703.50"></text></g><g><title>btrfs_get_16 (110 samples, 0.02%)</title><rect x="65.4234%" y="661" width="0.0207%" height="15" fill="rgb(219,185,31)" fg:x="347202" fg:w="110"/><text x="65.6734%" y="671.50"></text></g><g><title>btrfs_get_32 (92 samples, 0.02%)</title><rect x="65.4441%" y="661" width="0.0173%" height="15" fill="rgb(214,4,43)" fg:x="347312" fg:w="92"/><text x="65.6941%" y="671.50"></text></g><g><title>btrfs_match_dir_item_name (430 samples, 0.08%)</title><rect x="65.4106%" y="677" width="0.0810%" height="15" fill="rgb(235,227,40)" fg:x="347134" fg:w="430"/><text x="65.6606%" y="687.50"></text></g><g><title>memcmp_extent_buffer (160 samples, 0.03%)</title><rect x="65.4615%" y="661" width="0.0301%" height="15" fill="rgb(230,88,30)" fg:x="347404" fg:w="160"/><text x="65.7115%" y="671.50"></text></g><g><title>memcmp (93 samples, 0.02%)</title><rect x="65.4741%" y="645" width="0.0175%" height="15" fill="rgb(216,217,1)" fg:x="347471" fg:w="93"/><text x="65.7241%" y="655.50"></text></g><g><title>_raw_read_lock (62 samples, 0.01%)</title><rect x="65.5474%" y="629" width="0.0117%" height="15" fill="rgb(248,139,50)" fg:x="347860" fg:w="62"/><text x="65.7974%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="65.5425%" y="645" width="0.0170%" height="15" fill="rgb(233,1,21)" fg:x="347834" fg:w="90"/><text x="65.7925%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (236 samples, 0.04%)</title><rect x="65.5391%" y="661" width="0.0445%" height="15" fill="rgb(215,183,12)" fg:x="347816" fg:w="236"/><text x="65.7891%" y="671.50"></text></g><g><title>btrfs_root_node (128 samples, 0.02%)</title><rect x="65.5594%" y="645" width="0.0241%" height="15" fill="rgb(229,104,42)" fg:x="347924" fg:w="128"/><text x="65.8094%" y="655.50"></text></g><g><title>_raw_write_lock (60 samples, 0.01%)</title><rect x="65.6039%" y="629" width="0.0113%" height="15" fill="rgb(243,34,48)" fg:x="348160" fg:w="60"/><text x="65.8539%" y="639.50"></text></g><g><title>__btrfs_tree_lock (153 samples, 0.03%)</title><rect x="65.5943%" y="645" width="0.0288%" height="15" fill="rgb(239,11,44)" fg:x="348109" fg:w="153"/><text x="65.8443%" y="655.50"></text></g><g><title>btrfs_lock_root_node (237 samples, 0.04%)</title><rect x="65.5920%" y="661" width="0.0447%" height="15" fill="rgb(231,98,35)" fg:x="348097" fg:w="237"/><text x="65.8420%" y="671.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="65.6231%" y="645" width="0.0136%" height="15" fill="rgb(233,28,25)" fg:x="348262" fg:w="72"/><text x="65.8731%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (54 samples, 0.01%)</title><rect x="65.6367%" y="661" width="0.0102%" height="15" fill="rgb(234,123,11)" fg:x="348334" fg:w="54"/><text x="65.8867%" y="671.50"></text></g><g><title>_raw_write_lock (87 samples, 0.02%)</title><rect x="65.6510%" y="645" width="0.0164%" height="15" fill="rgb(220,69,3)" fg:x="348410" fg:w="87"/><text x="65.9010%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (216 samples, 0.04%)</title><rect x="65.6469%" y="661" width="0.0407%" height="15" fill="rgb(214,64,36)" fg:x="348388" fg:w="216"/><text x="65.8969%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (107 samples, 0.02%)</title><rect x="65.6674%" y="645" width="0.0202%" height="15" fill="rgb(211,138,32)" fg:x="348497" fg:w="107"/><text x="65.9174%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (59 samples, 0.01%)</title><rect x="65.6880%" y="661" width="0.0111%" height="15" fill="rgb(213,118,47)" fg:x="348606" fg:w="59"/><text x="65.9380%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,070 samples, 0.20%)</title><rect x="65.6991%" y="661" width="0.2016%" height="15" fill="rgb(243,124,49)" fg:x="348665" fg:w="1070"/><text x="65.9491%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="65.9258%" y="645" width="0.0134%" height="15" fill="rgb(221,30,28)" fg:x="349868" fg:w="71"/><text x="66.1758%" y="655.50"></text></g><g><title>btrfs_get_64 (147 samples, 0.03%)</title><rect x="65.9391%" y="645" width="0.0277%" height="15" fill="rgb(246,37,13)" fg:x="349939" fg:w="147"/><text x="66.1891%" y="655.50"></text></g><g><title>__radix_tree_lookup (617 samples, 0.12%)</title><rect x="66.0147%" y="629" width="0.1163%" height="15" fill="rgb(249,66,14)" fg:x="350340" fg:w="617"/><text x="66.2647%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (284 samples, 0.05%)</title><rect x="66.1317%" y="629" width="0.0535%" height="15" fill="rgb(213,166,5)" fg:x="350961" fg:w="284"/><text x="66.3817%" y="639.50"></text></g><g><title>mark_page_accessed (180 samples, 0.03%)</title><rect x="66.1513%" y="613" width="0.0339%" height="15" fill="rgb(221,66,24)" fg:x="351065" fg:w="180"/><text x="66.4013%" y="623.50"></text></g><g><title>find_extent_buffer (1,112 samples, 0.21%)</title><rect x="65.9766%" y="645" width="0.2095%" height="15" fill="rgb(210,132,17)" fg:x="350138" fg:w="1112"/><text x="66.2266%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,681 samples, 0.32%)</title><rect x="65.9007%" y="661" width="0.3168%" height="15" fill="rgb(243,202,5)" fg:x="349735" fg:w="1681"/><text x="66.1507%" y="671.50"></text></g><g><title>read_extent_buffer (166 samples, 0.03%)</title><rect x="66.1862%" y="645" width="0.0313%" height="15" fill="rgb(233,70,48)" fg:x="351250" fg:w="166"/><text x="66.4362%" y="655.50"></text></g><g><title>btrfs_search_slot (4,075 samples, 0.77%)</title><rect x="65.4916%" y="677" width="0.7679%" height="15" fill="rgb(238,41,26)" fg:x="347564" fg:w="4075"/><text x="65.7416%" y="687.50"></text></g><g><title>unlock_up (196 samples, 0.04%)</title><rect x="66.2225%" y="661" width="0.0369%" height="15" fill="rgb(241,19,31)" fg:x="351443" fg:w="196"/><text x="66.4725%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (4,594 samples, 0.87%)</title><rect x="65.4032%" y="693" width="0.8656%" height="15" fill="rgb(214,76,10)" fg:x="347095" fg:w="4594"/><text x="65.6532%" y="703.50"></text></g><g><title>_raw_spin_lock (155 samples, 0.03%)</title><rect x="66.2941%" y="661" width="0.0292%" height="15" fill="rgb(254,202,22)" fg:x="351823" fg:w="155"/><text x="66.5441%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (218 samples, 0.04%)</title><rect x="66.2825%" y="677" width="0.0411%" height="15" fill="rgb(214,72,24)" fg:x="351761" fg:w="218"/><text x="66.5325%" y="687.50"></text></g><g><title>btrfs_release_path (444 samples, 0.08%)</title><rect x="66.2689%" y="693" width="0.0837%" height="15" fill="rgb(221,92,46)" fg:x="351689" fg:w="444"/><text x="66.5189%" y="703.50"></text></g><g><title>release_extent_buffer (154 samples, 0.03%)</title><rect x="66.3235%" y="677" width="0.0290%" height="15" fill="rgb(246,13,50)" fg:x="351979" fg:w="154"/><text x="66.5735%" y="687.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="66.4010%" y="645" width="0.0121%" height="15" fill="rgb(240,165,38)" fg:x="352390" fg:w="64"/><text x="66.6510%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (282 samples, 0.05%)</title><rect x="66.3714%" y="661" width="0.0531%" height="15" fill="rgb(241,24,51)" fg:x="352233" fg:w="282"/><text x="66.6214%" y="671.50"></text></g><g><title>mutex_unlock (61 samples, 0.01%)</title><rect x="66.4130%" y="645" width="0.0115%" height="15" fill="rgb(227,51,44)" fg:x="352454" fg:w="61"/><text x="66.6630%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (80 samples, 0.02%)</title><rect x="66.4245%" y="661" width="0.0151%" height="15" fill="rgb(231,121,3)" fg:x="352515" fg:w="80"/><text x="66.6745%" y="671.50"></text></g><g><title>mutex_spin_on_owner (79 samples, 0.01%)</title><rect x="66.4247%" y="645" width="0.0149%" height="15" fill="rgb(245,3,41)" fg:x="352516" fg:w="79"/><text x="66.6747%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (101 samples, 0.02%)</title><rect x="66.4396%" y="661" width="0.0190%" height="15" fill="rgb(214,13,26)" fg:x="352595" fg:w="101"/><text x="66.6896%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (84 samples, 0.02%)</title><rect x="66.4428%" y="645" width="0.0158%" height="15" fill="rgb(252,75,11)" fg:x="352612" fg:w="84"/><text x="66.6928%" y="655.50"></text></g><g><title>inode_get_bytes (84 samples, 0.02%)</title><rect x="66.4660%" y="645" width="0.0158%" height="15" fill="rgb(218,226,17)" fg:x="352735" fg:w="84"/><text x="66.7160%" y="655.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="66.4690%" y="629" width="0.0128%" height="15" fill="rgb(248,89,38)" fg:x="352751" fg:w="68"/><text x="66.7190%" y="639.50"></text></g><g><title>fill_stack_inode_item (155 samples, 0.03%)</title><rect x="66.4586%" y="661" width="0.0292%" height="15" fill="rgb(237,73,46)" fg:x="352696" fg:w="155"/><text x="66.7086%" y="671.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="66.4878%" y="661" width="0.0113%" height="15" fill="rgb(242,78,33)" fg:x="352851" fg:w="60"/><text x="66.7378%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (784 samples, 0.15%)</title><rect x="66.3671%" y="677" width="0.1477%" height="15" fill="rgb(235,60,3)" fg:x="352210" fg:w="784"/><text x="66.6171%" y="687.50"></text></g><g><title>mutex_unlock (83 samples, 0.02%)</title><rect x="66.4992%" y="661" width="0.0156%" height="15" fill="rgb(216,172,19)" fg:x="352911" fg:w="83"/><text x="66.7492%" y="671.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="66.5180%" y="661" width="0.0107%" height="15" fill="rgb(227,6,42)" fg:x="353011" fg:w="57"/><text x="66.7680%" y="671.50"></text></g><g><title>btrfs_update_inode (1,035 samples, 0.20%)</title><rect x="66.3526%" y="693" width="0.1950%" height="15" fill="rgb(223,207,42)" fg:x="352133" fg:w="1035"/><text x="66.6026%" y="703.50"></text></g><g><title>btrfs_update_root_times (174 samples, 0.03%)</title><rect x="66.5148%" y="677" width="0.0328%" height="15" fill="rgb(246,138,30)" fg:x="352994" fg:w="174"/><text x="66.7648%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (100 samples, 0.02%)</title><rect x="66.5287%" y="661" width="0.0188%" height="15" fill="rgb(251,199,47)" fg:x="353068" fg:w="100"/><text x="66.7787%" y="671.50"></text></g><g><title>read_tsc (69 samples, 0.01%)</title><rect x="66.5346%" y="645" width="0.0130%" height="15" fill="rgb(228,218,44)" fg:x="353099" fg:w="69"/><text x="66.7846%" y="655.50"></text></g><g><title>current_time (65 samples, 0.01%)</title><rect x="66.5476%" y="693" width="0.0122%" height="15" fill="rgb(220,68,6)" fg:x="353168" fg:w="65"/><text x="66.7976%" y="703.50"></text></g><g><title>kmem_cache_alloc (149 samples, 0.03%)</title><rect x="66.5598%" y="693" width="0.0281%" height="15" fill="rgb(240,60,26)" fg:x="353233" fg:w="149"/><text x="66.8098%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (42,394 samples, 7.99%)</title><rect x="58.6258%" y="709" width="7.9883%" height="15" fill="rgb(211,200,19)" fg:x="311127" fg:w="42394"/><text x="58.8758%" y="719.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (139 samples, 0.03%)</title><rect x="66.5879%" y="693" width="0.0262%" height="15" fill="rgb(242,145,30)" fg:x="353382" fg:w="139"/><text x="66.8379%" y="703.50"></text></g><g><title>btrfs_balance_delayed_items (69 samples, 0.01%)</title><rect x="66.6186%" y="693" width="0.0130%" height="15" fill="rgb(225,64,13)" fg:x="353545" fg:w="69"/><text x="66.8686%" y="703.50"></text></g><g><title>ttwu_do_activate (71 samples, 0.01%)</title><rect x="66.6525%" y="645" width="0.0134%" height="15" fill="rgb(218,103,35)" fg:x="353725" fg:w="71"/><text x="66.9025%" y="655.50"></text></g><g><title>btrfs_btree_balance_dirty (299 samples, 0.06%)</title><rect x="66.6141%" y="709" width="0.0563%" height="15" fill="rgb(216,93,46)" fg:x="353521" fg:w="299"/><text x="66.8641%" y="719.50"></text></g><g><title>queue_work_on (197 samples, 0.04%)</title><rect x="66.6333%" y="693" width="0.0371%" height="15" fill="rgb(225,159,27)" fg:x="353623" fg:w="197"/><text x="66.8833%" y="703.50"></text></g><g><title>__queue_work (190 samples, 0.04%)</title><rect x="66.6346%" y="677" width="0.0358%" height="15" fill="rgb(225,204,11)" fg:x="353630" fg:w="190"/><text x="66.8846%" y="687.50"></text></g><g><title>try_to_wake_up (136 samples, 0.03%)</title><rect x="66.6448%" y="661" width="0.0256%" height="15" fill="rgb(205,56,4)" fg:x="353684" fg:w="136"/><text x="66.8948%" y="671.50"></text></g><g><title>mutex_lock (295 samples, 0.06%)</title><rect x="66.6750%" y="693" width="0.0556%" height="15" fill="rgb(206,6,35)" fg:x="353844" fg:w="295"/><text x="66.9250%" y="703.50"></text></g><g><title>btrfs_record_unlink_dir (452 samples, 0.09%)</title><rect x="66.6706%" y="709" width="0.0852%" height="15" fill="rgb(247,73,52)" fg:x="353821" fg:w="452"/><text x="66.9206%" y="719.50"></text></g><g><title>mutex_unlock (134 samples, 0.03%)</title><rect x="66.7305%" y="693" width="0.0252%" height="15" fill="rgb(246,97,4)" fg:x="354139" fg:w="134"/><text x="66.9805%" y="703.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="66.8459%" y="661" width="0.0132%" height="15" fill="rgb(212,37,15)" fg:x="354751" fg:w="70"/><text x="67.0959%" y="671.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="66.8591%" y="661" width="0.0113%" height="15" fill="rgb(208,130,40)" fg:x="354821" fg:w="60"/><text x="67.1091%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (426 samples, 0.08%)</title><rect x="66.8010%" y="677" width="0.0803%" height="15" fill="rgb(236,55,29)" fg:x="354513" fg:w="426"/><text x="67.0510%" y="687.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="66.8704%" y="661" width="0.0109%" height="15" fill="rgb(209,156,45)" fg:x="354881" fg:w="58"/><text x="67.1204%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (168 samples, 0.03%)</title><rect x="66.8813%" y="677" width="0.0317%" height="15" fill="rgb(249,107,4)" fg:x="354939" fg:w="168"/><text x="67.1313%" y="687.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.03%)</title><rect x="66.8873%" y="661" width="0.0256%" height="15" fill="rgb(227,7,13)" fg:x="354971" fg:w="136"/><text x="67.1373%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (488 samples, 0.09%)</title><rect x="66.9129%" y="677" width="0.0920%" height="15" fill="rgb(250,129,14)" fg:x="355107" fg:w="488"/><text x="67.1629%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (474 samples, 0.09%)</title><rect x="66.9156%" y="661" width="0.0893%" height="15" fill="rgb(229,92,13)" fg:x="355121" fg:w="474"/><text x="67.1656%" y="671.50"></text></g><g><title>inode_get_bytes (66 samples, 0.01%)</title><rect x="67.0122%" y="661" width="0.0124%" height="15" fill="rgb(245,98,39)" fg:x="355634" fg:w="66"/><text x="67.2622%" y="671.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="67.0138%" y="645" width="0.0109%" height="15" fill="rgb(234,135,48)" fg:x="355642" fg:w="58"/><text x="67.2638%" y="655.50"></text></g><g><title>fill_stack_inode_item (144 samples, 0.03%)</title><rect x="67.0049%" y="677" width="0.0271%" height="15" fill="rgb(230,98,28)" fg:x="355595" fg:w="144"/><text x="67.2549%" y="687.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="67.0320%" y="677" width="0.0155%" height="15" fill="rgb(223,121,0)" fg:x="355739" fg:w="82"/><text x="67.2820%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (1,515 samples, 0.29%)</title><rect x="66.7695%" y="693" width="0.2855%" height="15" fill="rgb(234,173,33)" fg:x="354346" fg:w="1515"/><text x="67.0195%" y="703.50"></text></g><g><title>btrfs_update_inode (1,758 samples, 0.33%)</title><rect x="66.7564%" y="709" width="0.3313%" height="15" fill="rgb(245,47,8)" fg:x="354276" fg:w="1758"/><text x="67.0064%" y="719.50"></text></g><g><title>btrfs_update_root_times (173 samples, 0.03%)</title><rect x="67.0550%" y="693" width="0.0326%" height="15" fill="rgb(205,17,20)" fg:x="355861" fg:w="173"/><text x="67.3050%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (107 samples, 0.02%)</title><rect x="67.0675%" y="677" width="0.0202%" height="15" fill="rgb(232,151,16)" fg:x="355927" fg:w="107"/><text x="67.3175%" y="687.50"></text></g><g><title>read_tsc (65 samples, 0.01%)</title><rect x="67.0754%" y="661" width="0.0122%" height="15" fill="rgb(208,30,32)" fg:x="355969" fg:w="65"/><text x="67.3254%" y="671.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.01%)</title><rect x="67.1259%" y="677" width="0.0147%" height="15" fill="rgb(254,26,3)" fg:x="356237" fg:w="78"/><text x="67.3759%" y="687.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="67.1523%" y="645" width="0.0215%" height="15" fill="rgb(240,177,30)" fg:x="356377" fg:w="114"/><text x="67.4023%" y="655.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="67.2397%" y="613" width="0.0192%" height="15" fill="rgb(248,76,44)" fg:x="356841" fg:w="102"/><text x="67.4897%" y="623.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (453 samples, 0.09%)</title><rect x="67.1737%" y="645" width="0.0854%" height="15" fill="rgb(241,186,54)" fg:x="356491" fg:w="453"/><text x="67.4237%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (261 samples, 0.05%)</title><rect x="67.2099%" y="629" width="0.0492%" height="15" fill="rgb(249,171,29)" fg:x="356683" fg:w="261"/><text x="67.4599%" y="639.50"></text></g><g><title>btrfs_block_rsv_add (946 samples, 0.18%)</title><rect x="67.1230%" y="693" width="0.1783%" height="15" fill="rgb(237,151,44)" fg:x="356222" fg:w="946"/><text x="67.3730%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (853 samples, 0.16%)</title><rect x="67.1406%" y="677" width="0.1607%" height="15" fill="rgb(228,174,30)" fg:x="356315" fg:w="853"/><text x="67.3906%" y="687.50"></text></g><g><title>__reserve_bytes (846 samples, 0.16%)</title><rect x="67.1419%" y="661" width="0.1594%" height="15" fill="rgb(252,14,37)" fg:x="356322" fg:w="846"/><text x="67.3919%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (224 samples, 0.04%)</title><rect x="67.2591%" y="645" width="0.0422%" height="15" fill="rgb(207,111,40)" fg:x="356944" fg:w="224"/><text x="67.5091%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (132 samples, 0.02%)</title><rect x="67.2764%" y="629" width="0.0249%" height="15" fill="rgb(248,171,54)" fg:x="357036" fg:w="132"/><text x="67.5264%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="67.2894%" y="613" width="0.0119%" height="15" fill="rgb(211,127,2)" fg:x="357105" fg:w="63"/><text x="67.5394%" y="623.50"></text></g><g><title>join_transaction (279 samples, 0.05%)</title><rect x="67.3026%" y="693" width="0.0526%" height="15" fill="rgb(236,87,47)" fg:x="357175" fg:w="279"/><text x="67.5526%" y="703.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="67.3439%" y="677" width="0.0113%" height="15" fill="rgb(223,190,45)" fg:x="357394" fg:w="60"/><text x="67.5939%" y="687.50"></text></g><g><title>kmem_cache_alloc (159 samples, 0.03%)</title><rect x="67.3552%" y="693" width="0.0300%" height="15" fill="rgb(215,5,16)" fg:x="357454" fg:w="159"/><text x="67.6052%" y="703.50"></text></g><g><title>btrfs_unlink (47,197 samples, 8.89%)</title><rect x="58.5088%" y="725" width="8.8933%" height="15" fill="rgb(252,82,33)" fg:x="310506" fg:w="47197"/><text x="58.7588%" y="735.50">btrfs_unlink</text></g><g><title>start_transaction (1,666 samples, 0.31%)</title><rect x="67.0882%" y="709" width="0.3139%" height="15" fill="rgb(247,213,44)" fg:x="356037" fg:w="1666"/><text x="67.3382%" y="719.50"></text></g><g><title>wait_current_trans (90 samples, 0.02%)</title><rect x="67.3852%" y="693" width="0.0170%" height="15" fill="rgb(205,196,44)" fg:x="357613" fg:w="90"/><text x="67.6352%" y="703.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="67.3884%" y="677" width="0.0138%" height="15" fill="rgb(237,96,54)" fg:x="357630" fg:w="73"/><text x="67.6384%" y="687.50"></text></g><g><title>d_delete (105 samples, 0.02%)</title><rect x="67.4021%" y="725" width="0.0198%" height="15" fill="rgb(230,113,34)" fg:x="357703" fg:w="105"/><text x="67.6521%" y="735.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="67.4051%" y="709" width="0.0168%" height="15" fill="rgb(221,224,12)" fg:x="357719" fg:w="89"/><text x="67.6551%" y="719.50"></text></g><g><title>down_write (497 samples, 0.09%)</title><rect x="67.4287%" y="725" width="0.0936%" height="15" fill="rgb(219,112,44)" fg:x="357844" fg:w="497"/><text x="67.6787%" y="735.50"></text></g><g><title>fsnotify (343 samples, 0.06%)</title><rect x="67.5223%" y="725" width="0.0646%" height="15" fill="rgb(210,31,13)" fg:x="358341" fg:w="343"/><text x="67.7723%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (149 samples, 0.03%)</title><rect x="67.6011%" y="709" width="0.0281%" height="15" fill="rgb(230,25,16)" fg:x="358759" fg:w="149"/><text x="67.8511%" y="719.50"></text></g><g><title>iput.part.0 (176 samples, 0.03%)</title><rect x="67.5962%" y="725" width="0.0332%" height="15" fill="rgb(246,108,53)" fg:x="358733" fg:w="176"/><text x="67.8462%" y="735.50"></text></g><g><title>may_delete (101 samples, 0.02%)</title><rect x="67.6294%" y="725" width="0.0190%" height="15" fill="rgb(241,172,50)" fg:x="358909" fg:w="101"/><text x="67.8794%" y="735.50"></text></g><g><title>do_unlinkat (51,851 samples, 9.77%)</title><rect x="57.8935%" y="757" width="9.7703%" height="15" fill="rgb(235,141,10)" fg:x="307241" fg:w="51851"/><text x="58.1435%" y="767.50">do_unlinkat</text></g><g><title>vfs_unlink (48,756 samples, 9.19%)</title><rect x="58.4767%" y="741" width="9.1871%" height="15" fill="rgb(220,174,43)" fg:x="310336" fg:w="48756"/><text x="58.7267%" y="751.50">vfs_unlink</text></g><g><title>up_write (65 samples, 0.01%)</title><rect x="67.6516%" y="725" width="0.0122%" height="15" fill="rgb(215,181,40)" fg:x="359027" fg:w="65"/><text x="67.9016%" y="735.50"></text></g><g><title>do_syscall_64 (64,682 samples, 12.19%)</title><rect x="55.4782%" y="773" width="12.1881%" height="15" fill="rgb(230,97,2)" fg:x="294423" fg:w="64682"/><text x="55.7282%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (64,800 samples, 12.21%)</title><rect x="55.4698%" y="789" width="12.2103%" height="15" fill="rgb(211,25,27)" fg:x="294378" fg:w="64800"/><text x="55.7198%" y="799.50">entry_SYSCALL_64_a..</text></g><g><title>syscall_exit_to_user_mode (73 samples, 0.01%)</title><rect x="67.6663%" y="773" width="0.0138%" height="15" fill="rgb(230,87,26)" fg:x="359105" fg:w="73"/><text x="67.9163%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (60 samples, 0.01%)</title><rect x="67.6687%" y="757" width="0.0113%" height="15" fill="rgb(227,160,17)" fg:x="359118" fg:w="60"/><text x="67.9187%" y="767.50"></text></g><g><title>__GI_unlinkat (65,232 samples, 12.29%)</title><rect x="55.4004%" y="805" width="12.2917%" height="15" fill="rgb(244,85,34)" fg:x="294010" fg:w="65232"/><text x="55.6504%" y="815.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (61 samples, 0.01%)</title><rect x="67.6806%" y="789" width="0.0115%" height="15" fill="rgb(207,70,0)" fg:x="359181" fg:w="61"/><text x="67.9306%" y="799.50"></text></g><g><title>__closedir (72 samples, 0.01%)</title><rect x="67.6932%" y="805" width="0.0136%" height="15" fill="rgb(223,129,7)" fg:x="359248" fg:w="72"/><text x="67.9432%" y="815.50"></text></g><g><title>_int_free (59 samples, 0.01%)</title><rect x="67.6957%" y="789" width="0.0111%" height="15" fill="rgb(246,105,7)" fg:x="359261" fg:w="59"/><text x="67.9457%" y="799.50"></text></g><g><title>__errno_location (64 samples, 0.01%)</title><rect x="67.7081%" y="805" width="0.0121%" height="15" fill="rgb(215,154,42)" fg:x="359327" fg:w="64"/><text x="67.9581%" y="815.50"></text></g><g><title>__GI___fcntl64_nocancel (61 samples, 0.01%)</title><rect x="67.7207%" y="789" width="0.0115%" height="15" fill="rgb(220,215,30)" fg:x="359394" fg:w="61"/><text x="67.9707%" y="799.50"></text></g><g><title>__fcntl64_nocancel_adjusted (61 samples, 0.01%)</title><rect x="67.7207%" y="773" width="0.0115%" height="15" fill="rgb(228,81,51)" fg:x="359394" fg:w="61"/><text x="67.9707%" y="783.50"></text></g><g><title>__do_sys_newfstat (127 samples, 0.02%)</title><rect x="67.7370%" y="741" width="0.0239%" height="15" fill="rgb(247,71,54)" fg:x="359480" fg:w="127"/><text x="67.9870%" y="751.50"></text></g><g><title>vfs_fstat (93 samples, 0.02%)</title><rect x="67.7434%" y="725" width="0.0175%" height="15" fill="rgb(234,176,34)" fg:x="359514" fg:w="93"/><text x="67.9934%" y="735.50"></text></g><g><title>do_syscall_64 (133 samples, 0.03%)</title><rect x="67.7360%" y="757" width="0.0251%" height="15" fill="rgb(241,103,54)" fg:x="359475" fg:w="133"/><text x="67.9860%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="67.7360%" y="773" width="0.0254%" height="15" fill="rgb(228,22,34)" fg:x="359475" fg:w="135"/><text x="67.9860%" y="783.50"></text></g><g><title>__GI___fxstat (159 samples, 0.03%)</title><rect x="67.7322%" y="789" width="0.0300%" height="15" fill="rgb(241,179,48)" fg:x="359455" fg:w="159"/><text x="67.9822%" y="799.50"></text></g><g><title>__GI___fcntl64_nocancel (62 samples, 0.01%)</title><rect x="67.7628%" y="773" width="0.0117%" height="15" fill="rgb(235,167,37)" fg:x="359617" fg:w="62"/><text x="68.0128%" y="783.50"></text></g><g><title>__fcntl64_nocancel_adjusted (57 samples, 0.01%)</title><rect x="67.7637%" y="757" width="0.0107%" height="15" fill="rgb(213,109,30)" fg:x="359622" fg:w="57"/><text x="68.0137%" y="767.50"></text></g><g><title>__GI___libc_malloc (127 samples, 0.02%)</title><rect x="67.7744%" y="773" width="0.0239%" height="15" fill="rgb(222,172,16)" fg:x="359679" fg:w="127"/><text x="68.0244%" y="783.50"></text></g><g><title>_int_malloc (82 samples, 0.02%)</title><rect x="67.7829%" y="757" width="0.0155%" height="15" fill="rgb(233,192,5)" fg:x="359724" fg:w="82"/><text x="68.0329%" y="767.50"></text></g><g><title>__fdopendir (418 samples, 0.08%)</title><rect x="67.7202%" y="805" width="0.0788%" height="15" fill="rgb(247,189,41)" fg:x="359391" fg:w="418"/><text x="67.9702%" y="815.50"></text></g><g><title>__alloc_dir (195 samples, 0.04%)</title><rect x="67.7622%" y="789" width="0.0367%" height="15" fill="rgb(218,134,47)" fg:x="359614" fg:w="195"/><text x="68.0122%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (64 samples, 0.01%)</title><rect x="67.8381%" y="645" width="0.0121%" height="15" fill="rgb(216,29,3)" fg:x="360017" fg:w="64"/><text x="68.0881%" y="655.50"></text></g><g><title>kmem_cache_alloc (150 samples, 0.03%)</title><rect x="67.8321%" y="661" width="0.0283%" height="15" fill="rgb(246,140,12)" fg:x="359985" fg:w="150"/><text x="68.0821%" y="671.50"></text></g><g><title>__alloc_file (198 samples, 0.04%)</title><rect x="67.8300%" y="677" width="0.0373%" height="15" fill="rgb(230,136,11)" fg:x="359974" fg:w="198"/><text x="68.0800%" y="687.50"></text></g><g><title>alloc_empty_file (204 samples, 0.04%)</title><rect x="67.8291%" y="693" width="0.0384%" height="15" fill="rgb(247,22,47)" fg:x="359969" fg:w="204"/><text x="68.0791%" y="703.50"></text></g><g><title>btrfs_opendir (91 samples, 0.02%)</title><rect x="67.8781%" y="677" width="0.0171%" height="15" fill="rgb(218,84,22)" fg:x="360229" fg:w="91"/><text x="68.1281%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (88 samples, 0.02%)</title><rect x="67.8787%" y="661" width="0.0166%" height="15" fill="rgb(216,87,39)" fg:x="360232" fg:w="88"/><text x="68.1287%" y="671.50"></text></g><g><title>do_dentry_open (217 samples, 0.04%)</title><rect x="67.8707%" y="693" width="0.0409%" height="15" fill="rgb(221,178,8)" fg:x="360190" fg:w="217"/><text x="68.1207%" y="703.50"></text></g><g><title>security_file_open (55 samples, 0.01%)</title><rect x="67.9013%" y="677" width="0.0104%" height="15" fill="rgb(230,42,11)" fg:x="360352" fg:w="55"/><text x="68.1513%" y="687.50"></text></g><g><title>lookup_fast (88 samples, 0.02%)</title><rect x="67.9133%" y="693" width="0.0166%" height="15" fill="rgb(237,229,4)" fg:x="360416" fg:w="88"/><text x="68.1633%" y="703.50"></text></g><g><title>__d_lookup_rcu (81 samples, 0.02%)</title><rect x="67.9146%" y="677" width="0.0153%" height="15" fill="rgb(222,31,33)" fg:x="360423" fg:w="81"/><text x="68.1646%" y="687.50"></text></g><g><title>do_filp_open (614 samples, 0.12%)</title><rect x="67.8253%" y="725" width="0.1157%" height="15" fill="rgb(210,17,39)" fg:x="359949" fg:w="614"/><text x="68.0753%" y="735.50"></text></g><g><title>path_openat (606 samples, 0.11%)</title><rect x="67.8268%" y="709" width="0.1142%" height="15" fill="rgb(244,93,20)" fg:x="359957" fg:w="606"/><text x="68.0768%" y="719.50"></text></g><g><title>getname_flags.part.0 (96 samples, 0.02%)</title><rect x="67.9461%" y="725" width="0.0181%" height="15" fill="rgb(210,40,47)" fg:x="360590" fg:w="96"/><text x="68.1961%" y="735.50"></text></g><g><title>do_syscall_64 (831 samples, 0.16%)</title><rect x="67.8116%" y="773" width="0.1566%" height="15" fill="rgb(239,211,47)" fg:x="359876" fg:w="831"/><text x="68.0616%" y="783.50"></text></g><g><title>__x64_sys_openat (826 samples, 0.16%)</title><rect x="67.8125%" y="757" width="0.1556%" height="15" fill="rgb(251,223,49)" fg:x="359881" fg:w="826"/><text x="68.0625%" y="767.50"></text></g><g><title>do_sys_openat2 (815 samples, 0.15%)</title><rect x="67.8146%" y="741" width="0.1536%" height="15" fill="rgb(221,149,5)" fg:x="359892" fg:w="815"/><text x="68.0646%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (836 samples, 0.16%)</title><rect x="67.8108%" y="789" width="0.1575%" height="15" fill="rgb(219,224,51)" fg:x="359872" fg:w="836"/><text x="68.0608%" y="799.50"></text></g><g><title>__libc_openat64 (888 samples, 0.17%)</title><rect x="67.8023%" y="805" width="0.1673%" height="15" fill="rgb(223,7,8)" fg:x="359827" fg:w="888"/><text x="68.0523%" y="815.50"></text></g><g><title>_int_free (306 samples, 0.06%)</title><rect x="67.9802%" y="805" width="0.0577%" height="15" fill="rgb(241,217,22)" fg:x="360771" fg:w="306"/><text x="68.2302%" y="815.50"></text></g><g><title>free@plt (72 samples, 0.01%)</title><rect x="68.0435%" y="805" width="0.0136%" height="15" fill="rgb(248,209,0)" fg:x="361107" fg:w="72"/><text x="68.2935%" y="815.50"></text></g><g><title>jni_ExceptionOccurred (74 samples, 0.01%)</title><rect x="68.0571%" y="805" width="0.0139%" height="15" fill="rgb(217,205,4)" fg:x="361179" fg:w="74"/><text x="68.3071%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (93 samples, 0.02%)</title><rect x="68.1502%" y="789" width="0.0175%" height="15" fill="rgb(228,124,39)" fg:x="361673" fg:w="93"/><text x="68.4002%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (591 samples, 0.11%)</title><rect x="68.1707%" y="789" width="0.1114%" height="15" fill="rgb(250,116,42)" fg:x="361782" fg:w="591"/><text x="68.4207%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (513 samples, 0.10%)</title><rect x="68.2821%" y="789" width="0.0967%" height="15" fill="rgb(223,202,9)" fg:x="362373" fg:w="513"/><text x="68.5321%" y="799.50"></text></g><g><title>[libc-2.31.so] (176 samples, 0.03%)</title><rect x="68.3787%" y="789" width="0.0332%" height="15" fill="rgb(242,222,40)" fg:x="362886" fg:w="176"/><text x="68.6287%" y="799.50"></text></g><g><title>check_bounds (219 samples, 0.04%)</title><rect x="68.4119%" y="789" width="0.0413%" height="15" fill="rgb(229,99,46)" fg:x="363062" fg:w="219"/><text x="68.6619%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (2,046 samples, 0.39%)</title><rect x="68.0710%" y="805" width="0.3855%" height="15" fill="rgb(225,56,46)" fg:x="361253" fg:w="2046"/><text x="68.3210%" y="815.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (238 samples, 0.04%)</title><rect x="68.5380%" y="773" width="0.0448%" height="15" fill="rgb(227,94,5)" fg:x="363731" fg:w="238"/><text x="68.7880%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (183 samples, 0.03%)</title><rect x="68.5483%" y="757" width="0.0345%" height="15" fill="rgb(205,112,38)" fg:x="363786" fg:w="183"/><text x="68.7983%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (356 samples, 0.07%)</title><rect x="68.5167%" y="789" width="0.0671%" height="15" fill="rgb(231,133,46)" fg:x="363618" fg:w="356"/><text x="68.7667%" y="799.50"></text></g><g><title>HandleMark::pop_and_restore (187 samples, 0.04%)</title><rect x="68.5838%" y="789" width="0.0352%" height="15" fill="rgb(217,16,9)" fg:x="363974" fg:w="187"/><text x="68.8338%" y="799.50"></text></g><g><title>JNIHandles::make_local (202 samples, 0.04%)</title><rect x="68.6190%" y="789" width="0.0381%" height="15" fill="rgb(249,173,9)" fg:x="364161" fg:w="202"/><text x="68.8690%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (522 samples, 0.10%)</title><rect x="68.6597%" y="789" width="0.0984%" height="15" fill="rgb(205,163,53)" fg:x="364377" fg:w="522"/><text x="68.9097%" y="799.50"></text></g><g><title>jni_GetObjectField (2,106 samples, 0.40%)</title><rect x="68.4568%" y="805" width="0.3968%" height="15" fill="rgb(217,54,41)" fg:x="363300" fg:w="2106"/><text x="68.7068%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (507 samples, 0.10%)</title><rect x="68.7581%" y="789" width="0.0955%" height="15" fill="rgb(228,216,12)" fg:x="364899" fg:w="507"/><text x="69.0081%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<573558ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 573558ul>::oop_access_barrier (77 samples, 0.01%)</title><rect x="68.9090%" y="789" width="0.0145%" height="15" fill="rgb(244,228,15)" fg:x="365700" fg:w="77"/><text x="69.1590%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (385 samples, 0.07%)</title><rect x="68.9267%" y="789" width="0.0725%" height="15" fill="rgb(221,176,53)" fg:x="365794" fg:w="385"/><text x="69.1767%" y="799.50"></text></g><g><title>jni_GetStringLength (1,461 samples, 0.28%)</title><rect x="68.8536%" y="805" width="0.2753%" height="15" fill="rgb(205,94,34)" fg:x="365406" fg:w="1461"/><text x="69.1036%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (688 samples, 0.13%)</title><rect x="68.9992%" y="789" width="0.1296%" height="15" fill="rgb(213,110,48)" fg:x="366179" fg:w="688"/><text x="69.2492%" y="799.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (100 samples, 0.02%)</title><rect x="69.3571%" y="741" width="0.0188%" height="15" fill="rgb(236,142,28)" fg:x="368078" fg:w="100"/><text x="69.6071%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (95 samples, 0.02%)</title><rect x="69.3759%" y="741" width="0.0179%" height="15" fill="rgb(225,135,29)" fg:x="368178" fg:w="95"/><text x="69.6259%" y="751.50"></text></g><g><title>[libc-2.31.so] (112 samples, 0.02%)</title><rect x="69.4170%" y="725" width="0.0211%" height="15" fill="rgb(252,45,31)" fg:x="368396" fg:w="112"/><text x="69.6670%" y="735.50"></text></g><g><title>ObjAllocator::initialize (257 samples, 0.05%)</title><rect x="69.3953%" y="741" width="0.0484%" height="15" fill="rgb(211,187,50)" fg:x="368281" fg:w="257"/><text x="69.6453%" y="751.50"></text></g><g><title>__tls_get_addr (79 samples, 0.01%)</title><rect x="69.4441%" y="741" width="0.0149%" height="15" fill="rgb(229,109,7)" fg:x="368540" fg:w="79"/><text x="69.6941%" y="751.50"></text></g><g><title>CollectedHeap::obj_allocate (896 samples, 0.17%)</title><rect x="69.2947%" y="773" width="0.1688%" height="15" fill="rgb(251,131,51)" fg:x="367747" fg:w="896"/><text x="69.5447%" y="783.50"></text></g><g><title>MemAllocator::allocate (833 samples, 0.16%)</title><rect x="69.3066%" y="757" width="0.1570%" height="15" fill="rgb(251,180,35)" fg:x="367810" fg:w="833"/><text x="69.5566%" y="767.50"></text></g><g><title>InstanceKlass::allocate_instance (1,073 samples, 0.20%)</title><rect x="69.2615%" y="789" width="0.2022%" height="15" fill="rgb(211,46,32)" fg:x="367571" fg:w="1073"/><text x="69.5115%" y="799.50"></text></g><g><title>JNIHandles::make_local (255 samples, 0.05%)</title><rect x="69.4645%" y="789" width="0.0480%" height="15" fill="rgb(248,123,17)" fg:x="368648" fg:w="255"/><text x="69.7145%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (334 samples, 0.06%)</title><rect x="69.5246%" y="789" width="0.0629%" height="15" fill="rgb(227,141,18)" fg:x="368967" fg:w="334"/><text x="69.7746%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (495 samples, 0.09%)</title><rect x="69.5875%" y="789" width="0.0933%" height="15" fill="rgb(216,102,9)" fg:x="369301" fg:w="495"/><text x="69.8375%" y="799.50"></text></g><g><title>alloc_object (701 samples, 0.13%)</title><rect x="69.6808%" y="789" width="0.1321%" height="15" fill="rgb(253,47,13)" fg:x="369796" fg:w="701"/><text x="69.9308%" y="799.50"></text></g><g><title>oopDesc::metadata_field (59 samples, 0.01%)</title><rect x="69.8018%" y="773" width="0.0111%" height="15" fill="rgb(226,93,23)" fg:x="370438" fg:w="59"/><text x="70.0518%" y="783.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (961 samples, 0.18%)</title><rect x="69.9389%" y="773" width="0.1811%" height="15" fill="rgb(247,104,17)" fg:x="371166" fg:w="961"/><text x="70.1889%" y="783.50"></text></g><g><title>HandleMark::~HandleMark (76 samples, 0.01%)</title><rect x="70.2534%" y="757" width="0.0143%" height="15" fill="rgb(233,203,26)" fg:x="372835" fg:w="76"/><text x="70.5034%" y="767.50"></text></g><g><title>JNIHandleBlock::release_block (85 samples, 0.02%)</title><rect x="70.2681%" y="757" width="0.0160%" height="15" fill="rgb(244,98,49)" fg:x="372913" fg:w="85"/><text x="70.5181%" y="767.50"></text></g><g><title>JavaCallArguments::parameters (248 samples, 0.05%)</title><rect x="70.2842%" y="757" width="0.0467%" height="15" fill="rgb(235,134,22)" fg:x="372998" fg:w="248"/><text x="70.5342%" y="767.50"></text></g><g><title>JNIHandleBlock::allocate_block (76 samples, 0.01%)</title><rect x="70.4720%" y="741" width="0.0143%" height="15" fill="rgb(221,70,32)" fg:x="373995" fg:w="76"/><text x="70.7220%" y="751.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (950 samples, 0.18%)</title><rect x="70.3309%" y="757" width="0.1790%" height="15" fill="rgb(238,15,50)" fg:x="373246" fg:w="950"/><text x="70.5809%" y="767.50"></text></g><g><title>ThreadShadow::clear_pending_exception (121 samples, 0.02%)</title><rect x="70.4871%" y="741" width="0.0228%" height="15" fill="rgb(215,221,48)" fg:x="374075" fg:w="121"/><text x="70.7371%" y="751.50"></text></g><g><title>AbstractInterpreter::size_top_interpreter_activation (118 samples, 0.02%)</title><rect x="70.5704%" y="741" width="0.0222%" height="15" fill="rgb(236,73,3)" fg:x="374517" fg:w="118"/><text x="70.8204%" y="751.50"></text></g><g><title>JavaCalls::call_helper (2,496 samples, 0.47%)</title><rect x="70.1238%" y="773" width="0.4703%" height="15" fill="rgb(250,107,11)" fg:x="372147" fg:w="2496"/><text x="70.3738%" y="783.50"></text></g><g><title>os::stack_shadow_pages_available (416 samples, 0.08%)</title><rect x="70.5157%" y="757" width="0.0784%" height="15" fill="rgb(242,39,14)" fg:x="374227" fg:w="416"/><text x="70.7657%" y="767.50"></text></g><g><title>methodHandle::operator= (126 samples, 0.02%)</title><rect x="70.5983%" y="773" width="0.0237%" height="15" fill="rgb(248,164,37)" fg:x="374665" fg:w="126"/><text x="70.8483%" y="783.50"></text></g><g><title>methodHandle::~methodHandle (328 samples, 0.06%)</title><rect x="70.6220%" y="773" width="0.0618%" height="15" fill="rgb(217,60,12)" fg:x="374791" fg:w="328"/><text x="70.8720%" y="783.50"></text></g><g><title>jni_invoke_nonstatic (4,821 samples, 0.91%)</title><rect x="69.8131%" y="789" width="0.9084%" height="15" fill="rgb(240,125,29)" fg:x="370498" fg:w="4821"/><text x="70.0631%" y="799.50"></text></g><g><title>resource_allocate_bytes (175 samples, 0.03%)</title><rect x="70.6885%" y="773" width="0.0330%" height="15" fill="rgb(208,207,28)" fg:x="375144" fg:w="175"/><text x="70.9385%" y="783.50"></text></g><g><title>jni_NewObjectV (8,459 samples, 1.59%)</title><rect x="69.1296%" y="805" width="1.5939%" height="15" fill="rgb(209,159,27)" fg:x="366871" fg:w="8459"/><text x="69.3796%" y="815.50"></text></g><g><title>operator delete@plt (60 samples, 0.01%)</title><rect x="70.7385%" y="805" width="0.0113%" height="15" fill="rgb(251,176,53)" fg:x="375409" fg:w="60"/><text x="70.9885%" y="815.50"></text></g><g><title>__GI___libc_malloc (345 samples, 0.07%)</title><rect x="70.7618%" y="789" width="0.0650%" height="15" fill="rgb(211,85,7)" fg:x="375533" fg:w="345"/><text x="71.0118%" y="799.50"></text></g><g><title>tcache_get (181 samples, 0.03%)</title><rect x="70.7927%" y="773" width="0.0341%" height="15" fill="rgb(216,64,54)" fg:x="375697" fg:w="181"/><text x="71.0427%" y="783.50"></text></g><g><title>operator new (387 samples, 0.07%)</title><rect x="70.7575%" y="805" width="0.0729%" height="15" fill="rgb(217,54,24)" fg:x="375510" fg:w="387"/><text x="71.0075%" y="815.50"></text></g><g><title>_int_malloc (98 samples, 0.02%)</title><rect x="70.8615%" y="757" width="0.0185%" height="15" fill="rgb(208,206,53)" fg:x="376062" fg:w="98"/><text x="71.1115%" y="767.50"></text></g><g><title>__GI___libc_malloc (215 samples, 0.04%)</title><rect x="70.8455%" y="773" width="0.0405%" height="15" fill="rgb(251,74,39)" fg:x="375977" fg:w="215"/><text x="71.0955%" y="783.50"></text></g><g><title>operator new (225 samples, 0.04%)</title><rect x="70.8449%" y="789" width="0.0424%" height="15" fill="rgb(226,47,5)" fg:x="375974" fg:w="225"/><text x="71.0949%" y="799.50"></text></g><g><title>std::string::_Rep::_S_create (245 samples, 0.05%)</title><rect x="70.8428%" y="805" width="0.0462%" height="15" fill="rgb(234,111,33)" fg:x="375963" fg:w="245"/><text x="71.0928%" y="815.50"></text></g><g><title>[libunix_jni.so] (225,716 samples, 42.53%)</title><rect x="28.3575%" y="821" width="42.5318%" height="15" fill="rgb(251,14,10)" fg:x="150493" fg:w="225716"/><text x="28.6075%" y="831.50">[libunix_jni.so]</text></g><g><title>InstanceKlass::link_class_impl (64 samples, 0.01%)</title><rect x="83.2461%" y="773" width="0.0121%" height="15" fill="rgb(232,43,0)" fg:x="441787" fg:w="64"/><text x="83.4961%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (112 samples, 0.02%)</title><rect x="83.2374%" y="805" width="0.0211%" height="15" fill="rgb(222,68,43)" fg:x="441741" fg:w="112"/><text x="83.4874%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (67 samples, 0.01%)</title><rect x="83.2459%" y="789" width="0.0126%" height="15" fill="rgb(217,24,23)" fg:x="441786" fg:w="67"/><text x="83.4959%" y="799.50"></text></g><g><title>InstanceKlass::allocate_objArray (77 samples, 0.01%)</title><rect x="83.2640%" y="789" width="0.0145%" height="15" fill="rgb(229,209,14)" fg:x="441882" fg:w="77"/><text x="83.5140%" y="799.50"></text></g><g><title>InterpreterRuntime::anewarray (111 samples, 0.02%)</title><rect x="83.2585%" y="805" width="0.0209%" height="15" fill="rgb(250,149,48)" fg:x="441853" fg:w="111"/><text x="83.5085%" y="815.50"></text></g><g><title>CompileBroker::compile_method (54 samples, 0.01%)</title><rect x="83.3056%" y="709" width="0.0102%" height="15" fill="rgb(210,120,37)" fg:x="442103" fg:w="54"/><text x="83.5556%" y="719.50"></text></g><g><title>TieredThresholdPolicy::compile (60 samples, 0.01%)</title><rect x="83.3053%" y="741" width="0.0113%" height="15" fill="rgb(210,21,8)" fg:x="442101" fg:w="60"/><text x="83.5553%" y="751.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (59 samples, 0.01%)</title><rect x="83.3054%" y="725" width="0.0111%" height="15" fill="rgb(243,145,7)" fg:x="442102" fg:w="59"/><text x="83.5554%" y="735.50"></text></g><g><title>TieredThresholdPolicy::event (140 samples, 0.03%)</title><rect x="83.2904%" y="773" width="0.0264%" height="15" fill="rgb(238,178,32)" fg:x="442022" fg:w="140"/><text x="83.5404%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (125 samples, 0.02%)</title><rect x="83.2932%" y="757" width="0.0236%" height="15" fill="rgb(222,4,10)" fg:x="442037" fg:w="125"/><text x="83.5432%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (165 samples, 0.03%)</title><rect x="83.2862%" y="805" width="0.0311%" height="15" fill="rgb(239,7,37)" fg:x="442000" fg:w="165"/><text x="83.5362%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (164 samples, 0.03%)</title><rect x="83.2864%" y="789" width="0.0309%" height="15" fill="rgb(215,31,37)" fg:x="442001" fg:w="164"/><text x="83.5364%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (78 samples, 0.01%)</title><rect x="83.3173%" y="805" width="0.0147%" height="15" fill="rgb(224,83,33)" fg:x="442165" fg:w="78"/><text x="83.5673%" y="815.50"></text></g><g><title>LinkResolver::resolve_static_call (62 samples, 0.01%)</title><rect x="83.3831%" y="757" width="0.0117%" height="15" fill="rgb(239,55,3)" fg:x="442514" fg:w="62"/><text x="83.6331%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (186 samples, 0.04%)</title><rect x="83.3614%" y="773" width="0.0350%" height="15" fill="rgb(247,92,11)" fg:x="442399" fg:w="186"/><text x="83.6114%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (248 samples, 0.05%)</title><rect x="83.3527%" y="789" width="0.0467%" height="15" fill="rgb(239,200,7)" fg:x="442353" fg:w="248"/><text x="83.6027%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (58 samples, 0.01%)</title><rect x="83.3995%" y="773" width="0.0109%" height="15" fill="rgb(227,115,8)" fg:x="442601" fg:w="58"/><text x="83.6495%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (58 samples, 0.01%)</title><rect x="83.3995%" y="757" width="0.0109%" height="15" fill="rgb(215,189,27)" fg:x="442601" fg:w="58"/><text x="83.6495%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (59 samples, 0.01%)</title><rect x="83.3995%" y="789" width="0.0111%" height="15" fill="rgb(251,216,39)" fg:x="442601" fg:w="59"/><text x="83.6495%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (371 samples, 0.07%)</title><rect x="83.3424%" y="805" width="0.0699%" height="15" fill="rgb(207,29,47)" fg:x="442298" fg:w="371"/><text x="83.5924%" y="815.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (66 samples, 0.01%)</title><rect x="83.4494%" y="789" width="0.0124%" height="15" fill="rgb(210,71,34)" fg:x="442866" fg:w="66"/><text x="83.6994%" y="799.50"></text></g><g><title>JVM_IHashCode (76 samples, 0.01%)</title><rect x="83.4488%" y="805" width="0.0143%" height="15" fill="rgb(253,217,51)" fg:x="442863" fg:w="76"/><text x="83.6988%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (338 samples, 0.06%)</title><rect x="83.4965%" y="677" width="0.0637%" height="15" fill="rgb(222,117,46)" fg:x="443116" fg:w="338"/><text x="83.7465%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (305 samples, 0.06%)</title><rect x="83.5027%" y="661" width="0.0575%" height="15" fill="rgb(226,132,6)" fg:x="443149" fg:w="305"/><text x="83.7527%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (346 samples, 0.07%)</title><rect x="83.4952%" y="693" width="0.0652%" height="15" fill="rgb(254,145,51)" fg:x="443109" fg:w="346"/><text x="83.7452%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (62 samples, 0.01%)</title><rect x="83.5619%" y="677" width="0.0117%" height="15" fill="rgb(231,199,27)" fg:x="443463" fg:w="62"/><text x="83.8119%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (63 samples, 0.01%)</title><rect x="83.5619%" y="693" width="0.0119%" height="15" fill="rgb(245,158,14)" fg:x="443463" fg:w="63"/><text x="83.8119%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (433 samples, 0.08%)</title><rect x="83.4944%" y="725" width="0.0816%" height="15" fill="rgb(240,113,14)" fg:x="443105" fg:w="433"/><text x="83.7444%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (433 samples, 0.08%)</title><rect x="83.4944%" y="709" width="0.0816%" height="15" fill="rgb(210,20,13)" fg:x="443105" fg:w="433"/><text x="83.7444%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (61 samples, 0.01%)</title><rect x="83.5760%" y="709" width="0.0115%" height="15" fill="rgb(241,144,13)" fg:x="443538" fg:w="61"/><text x="83.8260%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (65 samples, 0.01%)</title><rect x="83.5760%" y="725" width="0.0122%" height="15" fill="rgb(235,43,34)" fg:x="443538" fg:w="65"/><text x="83.8260%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (515 samples, 0.10%)</title><rect x="83.4944%" y="741" width="0.0970%" height="15" fill="rgb(208,36,20)" fg:x="443105" fg:w="515"/><text x="83.7444%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (538 samples, 0.10%)</title><rect x="83.4931%" y="789" width="0.1014%" height="15" fill="rgb(239,204,10)" fg:x="443098" fg:w="538"/><text x="83.7431%" y="799.50"></text></g><g><title>jvm_define_class_common (536 samples, 0.10%)</title><rect x="83.4935%" y="773" width="0.1010%" height="15" fill="rgb(217,84,43)" fg:x="443100" fg:w="536"/><text x="83.7435%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (532 samples, 0.10%)</title><rect x="83.4943%" y="757" width="0.1002%" height="15" fill="rgb(241,170,50)" fg:x="443104" fg:w="532"/><text x="83.7443%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (558 samples, 0.11%)</title><rect x="83.4931%" y="805" width="0.1051%" height="15" fill="rgb(226,205,29)" fg:x="443098" fg:w="558"/><text x="83.7431%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (779 samples, 0.15%)</title><rect x="83.6284%" y="709" width="0.1468%" height="15" fill="rgb(233,113,1)" fg:x="443816" fg:w="779"/><text x="83.8784%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (777 samples, 0.15%)</title><rect x="83.6288%" y="693" width="0.1464%" height="15" fill="rgb(253,98,13)" fg:x="443818" fg:w="777"/><text x="83.8788%" y="703.50"></text></g><g><title>native_write_msr (777 samples, 0.15%)</title><rect x="83.6288%" y="677" width="0.1464%" height="15" fill="rgb(211,115,12)" fg:x="443818" fg:w="777"/><text x="83.8788%" y="687.50"></text></g><g><title>schedule_tail (794 samples, 0.15%)</title><rect x="83.6275%" y="741" width="0.1496%" height="15" fill="rgb(208,12,16)" fg:x="443811" fg:w="794"/><text x="83.8775%" y="751.50"></text></g><g><title>finish_task_switch (793 samples, 0.15%)</title><rect x="83.6277%" y="725" width="0.1494%" height="15" fill="rgb(237,193,54)" fg:x="443812" fg:w="793"/><text x="83.8777%" y="735.50"></text></g><g><title>__libc_vfork (869 samples, 0.16%)</title><rect x="83.6135%" y="773" width="0.1637%" height="15" fill="rgb(243,22,42)" fg:x="443737" fg:w="869"/><text x="83.8635%" y="783.50"></text></g><g><title>ret_from_fork (826 samples, 0.16%)</title><rect x="83.6216%" y="757" width="0.1556%" height="15" fill="rgb(233,151,36)" fg:x="443780" fg:w="826"/><text x="83.8716%" y="767.50"></text></g><g><title>bprm_execve (117 samples, 0.02%)</title><rect x="83.7797%" y="661" width="0.0220%" height="15" fill="rgb(237,57,45)" fg:x="444619" fg:w="117"/><text x="84.0297%" y="671.50"></text></g><g><title>do_execveat_common (141 samples, 0.03%)</title><rect x="83.7773%" y="677" width="0.0266%" height="15" fill="rgb(221,88,17)" fg:x="444606" fg:w="141"/><text x="84.0273%" y="687.50"></text></g><g><title>JDK_execvpe (143 samples, 0.03%)</title><rect x="83.7773%" y="757" width="0.0269%" height="15" fill="rgb(230,79,15)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="767.50"></text></g><g><title>__GI_execve (143 samples, 0.03%)</title><rect x="83.7773%" y="741" width="0.0269%" height="15" fill="rgb(213,57,13)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="83.7773%" y="725" width="0.0269%" height="15" fill="rgb(222,116,39)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="735.50"></text></g><g><title>do_syscall_64 (143 samples, 0.03%)</title><rect x="83.7773%" y="709" width="0.0269%" height="15" fill="rgb(245,107,2)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="719.50"></text></g><g><title>__x64_sys_execve (143 samples, 0.03%)</title><rect x="83.7773%" y="693" width="0.0269%" height="15" fill="rgb(238,1,10)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="703.50"></text></g><g><title>do_filp_open (70 samples, 0.01%)</title><rect x="83.8148%" y="645" width="0.0132%" height="15" fill="rgb(249,4,48)" fg:x="444805" fg:w="70"/><text x="84.0648%" y="655.50"></text></g><g><title>path_openat (67 samples, 0.01%)</title><rect x="83.8153%" y="629" width="0.0126%" height="15" fill="rgb(223,151,18)" fg:x="444808" fg:w="67"/><text x="84.0653%" y="639.50"></text></g><g><title>__GI___open64_nocancel (109 samples, 0.02%)</title><rect x="83.8127%" y="725" width="0.0205%" height="15" fill="rgb(227,65,43)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.02%)</title><rect x="83.8127%" y="709" width="0.0205%" height="15" fill="rgb(218,40,45)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="719.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="83.8127%" y="693" width="0.0205%" height="15" fill="rgb(252,121,31)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="703.50"></text></g><g><title>__x64_sys_openat (109 samples, 0.02%)</title><rect x="83.8127%" y="677" width="0.0205%" height="15" fill="rgb(219,158,43)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="687.50"></text></g><g><title>do_sys_openat2 (107 samples, 0.02%)</title><rect x="83.8131%" y="661" width="0.0202%" height="15" fill="rgb(231,162,42)" fg:x="444796" fg:w="107"/><text x="84.0631%" y="671.50"></text></g><g><title>__opendir (110 samples, 0.02%)</title><rect x="83.8127%" y="741" width="0.0207%" height="15" fill="rgb(217,179,25)" fg:x="444794" fg:w="110"/><text x="84.0627%" y="751.50"></text></g><g><title>closeDescriptors (141 samples, 0.03%)</title><rect x="83.8070%" y="757" width="0.0266%" height="15" fill="rgb(206,212,31)" fg:x="444764" fg:w="141"/><text x="84.0570%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,208 samples, 0.23%)</title><rect x="83.6098%" y="805" width="0.2276%" height="15" fill="rgb(235,144,12)" fg:x="443717" fg:w="1208"/><text x="83.8598%" y="815.50"></text></g><g><title>vforkChild (1,188 samples, 0.22%)</title><rect x="83.6135%" y="789" width="0.2239%" height="15" fill="rgb(213,51,10)" fg:x="443737" fg:w="1188"/><text x="83.8635%" y="799.50"></text></g><g><title>childProcess (319 samples, 0.06%)</title><rect x="83.7773%" y="773" width="0.0601%" height="15" fill="rgb(231,145,14)" fg:x="444606" fg:w="319"/><text x="84.0273%" y="783.50"></text></g><g><title>OptoRuntime::new_array_C (119 samples, 0.02%)</title><rect x="83.8453%" y="805" width="0.0224%" height="15" fill="rgb(235,15,28)" fg:x="444967" fg:w="119"/><text x="84.0953%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (67 samples, 0.01%)</title><rect x="83.8551%" y="789" width="0.0126%" height="15" fill="rgb(237,206,10)" fg:x="445019" fg:w="67"/><text x="84.1051%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (67 samples, 0.01%)</title><rect x="83.8551%" y="773" width="0.0126%" height="15" fill="rgb(236,227,27)" fg:x="445019" fg:w="67"/><text x="84.1051%" y="783.50"></text></g><g><title>MemAllocator::allocate (67 samples, 0.01%)</title><rect x="83.8551%" y="757" width="0.0126%" height="15" fill="rgb(246,83,35)" fg:x="445019" fg:w="67"/><text x="84.1051%" y="767.50"></text></g><g><title>OptoRuntime::new_instance_C (105 samples, 0.02%)</title><rect x="83.8715%" y="805" width="0.0198%" height="15" fill="rgb(220,136,24)" fg:x="445106" fg:w="105"/><text x="84.1215%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (101 samples, 0.02%)</title><rect x="83.8722%" y="789" width="0.0190%" height="15" fill="rgb(217,3,25)" fg:x="445110" fg:w="101"/><text x="84.1222%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (101 samples, 0.02%)</title><rect x="83.8722%" y="773" width="0.0190%" height="15" fill="rgb(239,24,14)" fg:x="445110" fg:w="101"/><text x="84.1222%" y="783.50"></text></g><g><title>MemAllocator::allocate (101 samples, 0.02%)</title><rect x="83.8722%" y="757" width="0.0190%" height="15" fill="rgb(244,16,53)" fg:x="445110" fg:w="101"/><text x="84.1222%" y="767.50"></text></g><g><title>ObjAllocator::initialize (84 samples, 0.02%)</title><rect x="83.8754%" y="741" width="0.0158%" height="15" fill="rgb(208,175,44)" fg:x="445127" fg:w="84"/><text x="84.1254%" y="751.50"></text></g><g><title>asm_exc_page_fault (83 samples, 0.02%)</title><rect x="83.8756%" y="725" width="0.0156%" height="15" fill="rgb(252,18,48)" fg:x="445128" fg:w="83"/><text x="84.1256%" y="735.50"></text></g><g><title>exc_page_fault (83 samples, 0.02%)</title><rect x="83.8756%" y="709" width="0.0156%" height="15" fill="rgb(234,199,32)" fg:x="445128" fg:w="83"/><text x="84.1256%" y="719.50"></text></g><g><title>do_user_addr_fault (83 samples, 0.02%)</title><rect x="83.8756%" y="693" width="0.0156%" height="15" fill="rgb(225,77,54)" fg:x="445128" fg:w="83"/><text x="84.1256%" y="703.50"></text></g><g><title>handle_mm_fault (82 samples, 0.02%)</title><rect x="83.8758%" y="677" width="0.0155%" height="15" fill="rgb(225,42,25)" fg:x="445129" fg:w="82"/><text x="84.1258%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (81 samples, 0.02%)</title><rect x="83.8760%" y="661" width="0.0153%" height="15" fill="rgb(242,227,46)" fg:x="445130" fg:w="81"/><text x="84.1260%" y="671.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (57 samples, 0.01%)</title><rect x="83.9007%" y="773" width="0.0107%" height="15" fill="rgb(246,197,35)" fg:x="445261" fg:w="57"/><text x="84.1507%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (84 samples, 0.02%)</title><rect x="83.8958%" y="789" width="0.0158%" height="15" fill="rgb(215,159,26)" fg:x="445235" fg:w="84"/><text x="84.1458%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (142 samples, 0.03%)</title><rect x="83.8915%" y="805" width="0.0268%" height="15" fill="rgb(212,194,50)" fg:x="445212" fg:w="142"/><text x="84.1415%" y="815.50"></text></g><g><title>ObjectMonitor::enter (68 samples, 0.01%)</title><rect x="83.9233%" y="789" width="0.0128%" height="15" fill="rgb(246,132,1)" fg:x="445381" fg:w="68"/><text x="84.1733%" y="799.50"></text></g><g><title>Runtime1::monitorenter (117 samples, 0.02%)</title><rect x="83.9188%" y="805" width="0.0220%" height="15" fill="rgb(217,71,7)" fg:x="445357" fg:w="117"/><text x="84.1688%" y="815.50"></text></g><g><title>kernel_init_free_pages (78 samples, 0.01%)</title><rect x="83.9527%" y="581" width="0.0147%" height="15" fill="rgb(252,59,32)" fg:x="445537" fg:w="78"/><text x="84.2027%" y="591.50"></text></g><g><title>clear_page_erms (76 samples, 0.01%)</title><rect x="83.9531%" y="565" width="0.0143%" height="15" fill="rgb(253,204,25)" fg:x="445539" fg:w="76"/><text x="84.2031%" y="575.50"></text></g><g><title>alloc_pages_vma (83 samples, 0.02%)</title><rect x="83.9523%" y="645" width="0.0156%" height="15" fill="rgb(232,21,16)" fg:x="445535" fg:w="83"/><text x="84.2023%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (83 samples, 0.02%)</title><rect x="83.9523%" y="629" width="0.0156%" height="15" fill="rgb(248,90,29)" fg:x="445535" fg:w="83"/><text x="84.2023%" y="639.50"></text></g><g><title>get_page_from_freelist (83 samples, 0.02%)</title><rect x="83.9523%" y="613" width="0.0156%" height="15" fill="rgb(249,223,7)" fg:x="445535" fg:w="83"/><text x="84.2023%" y="623.50"></text></g><g><title>prep_new_page (81 samples, 0.02%)</title><rect x="83.9527%" y="597" width="0.0153%" height="15" fill="rgb(231,119,42)" fg:x="445537" fg:w="81"/><text x="84.2027%" y="607.50"></text></g><g><title>asm_exc_page_fault (123 samples, 0.02%)</title><rect x="83.9521%" y="725" width="0.0232%" height="15" fill="rgb(215,41,35)" fg:x="445534" fg:w="123"/><text x="84.2021%" y="735.50"></text></g><g><title>exc_page_fault (123 samples, 0.02%)</title><rect x="83.9521%" y="709" width="0.0232%" height="15" fill="rgb(220,44,45)" fg:x="445534" fg:w="123"/><text x="84.2021%" y="719.50"></text></g><g><title>do_user_addr_fault (123 samples, 0.02%)</title><rect x="83.9521%" y="693" width="0.0232%" height="15" fill="rgb(253,197,36)" fg:x="445534" fg:w="123"/><text x="84.2021%" y="703.50"></text></g><g><title>handle_mm_fault (122 samples, 0.02%)</title><rect x="83.9523%" y="677" width="0.0230%" height="15" fill="rgb(245,225,54)" fg:x="445535" fg:w="122"/><text x="84.2023%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (122 samples, 0.02%)</title><rect x="83.9523%" y="661" width="0.0230%" height="15" fill="rgb(239,94,37)" fg:x="445535" fg:w="122"/><text x="84.2023%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (142 samples, 0.03%)</title><rect x="83.9487%" y="789" width="0.0268%" height="15" fill="rgb(242,217,10)" fg:x="445516" fg:w="142"/><text x="84.1987%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (141 samples, 0.03%)</title><rect x="83.9489%" y="773" width="0.0266%" height="15" fill="rgb(250,193,7)" fg:x="445517" fg:w="141"/><text x="84.1989%" y="783.50"></text></g><g><title>MemAllocator::allocate (141 samples, 0.03%)</title><rect x="83.9489%" y="757" width="0.0266%" height="15" fill="rgb(230,104,19)" fg:x="445517" fg:w="141"/><text x="84.1989%" y="767.50"></text></g><g><title>ObjAllocator::initialize (124 samples, 0.02%)</title><rect x="83.9521%" y="741" width="0.0234%" height="15" fill="rgb(230,181,4)" fg:x="445534" fg:w="124"/><text x="84.2021%" y="751.50"></text></g><g><title>Runtime1::new_instance (145 samples, 0.03%)</title><rect x="83.9484%" y="805" width="0.0273%" height="15" fill="rgb(216,219,49)" fg:x="445514" fg:w="145"/><text x="84.1984%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (72 samples, 0.01%)</title><rect x="84.0013%" y="805" width="0.0136%" height="15" fill="rgb(254,144,0)" fg:x="445795" fg:w="72"/><text x="84.2513%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (69 samples, 0.01%)</title><rect x="84.0019%" y="789" width="0.0130%" height="15" fill="rgb(205,209,38)" fg:x="445798" fg:w="69"/><text x="84.2519%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (238 samples, 0.04%)</title><rect x="84.0356%" y="581" width="0.0448%" height="15" fill="rgb(240,21,42)" fg:x="445977" fg:w="238"/><text x="84.2856%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (235 samples, 0.04%)</title><rect x="84.0362%" y="565" width="0.0443%" height="15" fill="rgb(241,132,3)" fg:x="445980" fg:w="235"/><text x="84.2862%" y="575.50"></text></g><g><title>native_write_msr (234 samples, 0.04%)</title><rect x="84.0364%" y="549" width="0.0441%" height="15" fill="rgb(225,14,2)" fg:x="445981" fg:w="234"/><text x="84.2864%" y="559.50"></text></g><g><title>finish_task_switch (253 samples, 0.05%)</title><rect x="84.0345%" y="597" width="0.0477%" height="15" fill="rgb(210,141,35)" fg:x="445971" fg:w="253"/><text x="84.2845%" y="607.50"></text></g><g><title>futex_wait_queue_me (288 samples, 0.05%)</title><rect x="84.0309%" y="645" width="0.0543%" height="15" fill="rgb(251,14,44)" fg:x="445952" fg:w="288"/><text x="84.2809%" y="655.50"></text></g><g><title>schedule (283 samples, 0.05%)</title><rect x="84.0318%" y="629" width="0.0533%" height="15" fill="rgb(247,48,18)" fg:x="445957" fg:w="283"/><text x="84.2818%" y="639.50"></text></g><g><title>__schedule (282 samples, 0.05%)</title><rect x="84.0320%" y="613" width="0.0531%" height="15" fill="rgb(225,0,40)" fg:x="445958" fg:w="282"/><text x="84.2820%" y="623.50"></text></g><g><title>do_syscall_64 (295 samples, 0.06%)</title><rect x="84.0300%" y="709" width="0.0556%" height="15" fill="rgb(221,31,33)" fg:x="445947" fg:w="295"/><text x="84.2800%" y="719.50"></text></g><g><title>__x64_sys_futex (295 samples, 0.06%)</title><rect x="84.0300%" y="693" width="0.0556%" height="15" fill="rgb(237,42,40)" fg:x="445947" fg:w="295"/><text x="84.2800%" y="703.50"></text></g><g><title>do_futex (293 samples, 0.06%)</title><rect x="84.0303%" y="677" width="0.0552%" height="15" fill="rgb(233,51,29)" fg:x="445949" fg:w="293"/><text x="84.2803%" y="687.50"></text></g><g><title>futex_wait (291 samples, 0.05%)</title><rect x="84.0307%" y="661" width="0.0548%" height="15" fill="rgb(226,58,20)" fg:x="445951" fg:w="291"/><text x="84.2807%" y="671.50"></text></g><g><title>__pthread_cond_wait (303 samples, 0.06%)</title><rect x="84.0292%" y="773" width="0.0571%" height="15" fill="rgb(208,98,7)" fg:x="445943" fg:w="303"/><text x="84.2792%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (303 samples, 0.06%)</title><rect x="84.0292%" y="757" width="0.0571%" height="15" fill="rgb(228,143,44)" fg:x="445943" fg:w="303"/><text x="84.2792%" y="767.50"></text></g><g><title>futex_wait_cancelable (299 samples, 0.06%)</title><rect x="84.0300%" y="741" width="0.0563%" height="15" fill="rgb(246,55,38)" fg:x="445947" fg:w="299"/><text x="84.2800%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (299 samples, 0.06%)</title><rect x="84.0300%" y="725" width="0.0563%" height="15" fill="rgb(247,87,16)" fg:x="445947" fg:w="299"/><text x="84.2800%" y="735.50"></text></g><g><title>Parker::park (353 samples, 0.07%)</title><rect x="84.0215%" y="789" width="0.0665%" height="15" fill="rgb(234,129,42)" fg:x="445902" fg:w="353"/><text x="84.2715%" y="799.50"></text></g><g><title>Unsafe_Park (360 samples, 0.07%)</title><rect x="84.0205%" y="805" width="0.0678%" height="15" fill="rgb(220,82,16)" fg:x="445897" fg:w="360"/><text x="84.2705%" y="815.50"></text></g><g><title>ttwu_do_activate (68 samples, 0.01%)</title><rect x="84.1100%" y="645" width="0.0128%" height="15" fill="rgb(211,88,4)" fg:x="446372" fg:w="68"/><text x="84.3600%" y="655.50"></text></g><g><title>do_syscall_64 (147 samples, 0.03%)</title><rect x="84.0976%" y="741" width="0.0277%" height="15" fill="rgb(248,151,21)" fg:x="446306" fg:w="147"/><text x="84.3476%" y="751.50"></text></g><g><title>__x64_sys_futex (147 samples, 0.03%)</title><rect x="84.0976%" y="725" width="0.0277%" height="15" fill="rgb(238,163,6)" fg:x="446306" fg:w="147"/><text x="84.3476%" y="735.50"></text></g><g><title>do_futex (146 samples, 0.03%)</title><rect x="84.0978%" y="709" width="0.0275%" height="15" fill="rgb(209,183,11)" fg:x="446307" fg:w="146"/><text x="84.3478%" y="719.50"></text></g><g><title>futex_wake (144 samples, 0.03%)</title><rect x="84.0982%" y="693" width="0.0271%" height="15" fill="rgb(219,37,20)" fg:x="446309" fg:w="144"/><text x="84.3482%" y="703.50"></text></g><g><title>wake_up_q (113 samples, 0.02%)</title><rect x="84.1040%" y="677" width="0.0213%" height="15" fill="rgb(210,158,4)" fg:x="446340" fg:w="113"/><text x="84.3540%" y="687.50"></text></g><g><title>try_to_wake_up (110 samples, 0.02%)</title><rect x="84.1046%" y="661" width="0.0207%" height="15" fill="rgb(221,167,53)" fg:x="446343" fg:w="110"/><text x="84.3546%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (154 samples, 0.03%)</title><rect x="84.0976%" y="757" width="0.0290%" height="15" fill="rgb(237,151,45)" fg:x="446306" fg:w="154"/><text x="84.3476%" y="767.50"></text></g><g><title>__pthread_cond_signal (163 samples, 0.03%)</title><rect x="84.0961%" y="789" width="0.0307%" height="15" fill="rgb(231,39,3)" fg:x="446298" fg:w="163"/><text x="84.3461%" y="799.50"></text></g><g><title>futex_wake (159 samples, 0.03%)</title><rect x="84.0969%" y="773" width="0.0300%" height="15" fill="rgb(212,167,28)" fg:x="446302" fg:w="159"/><text x="84.3469%" y="783.50"></text></g><g><title>Unsafe_Unpark (202 samples, 0.04%)</title><rect x="84.0893%" y="805" width="0.0381%" height="15" fill="rgb(232,178,8)" fg:x="446262" fg:w="202"/><text x="84.3393%" y="815.50"></text></g><g><title>__sysvec_apic_timer_interrupt (63 samples, 0.01%)</title><rect x="84.1449%" y="773" width="0.0119%" height="15" fill="rgb(225,151,20)" fg:x="446557" fg:w="63"/><text x="84.3949%" y="783.50"></text></g><g><title>hrtimer_interrupt (61 samples, 0.01%)</title><rect x="84.1453%" y="757" width="0.0115%" height="15" fill="rgb(238,3,37)" fg:x="446559" fg:w="61"/><text x="84.3953%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (133 samples, 0.03%)</title><rect x="84.1430%" y="805" width="0.0251%" height="15" fill="rgb(251,147,42)" fg:x="446547" fg:w="133"/><text x="84.3930%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (123 samples, 0.02%)</title><rect x="84.1449%" y="789" width="0.0232%" height="15" fill="rgb(208,173,10)" fg:x="446557" fg:w="123"/><text x="84.3949%" y="799.50"></text></g><g><title>irq_exit_rcu (60 samples, 0.01%)</title><rect x="84.1568%" y="773" width="0.0113%" height="15" fill="rgb(246,225,4)" fg:x="446620" fg:w="60"/><text x="84.4068%" y="783.50"></text></g><g><title>do_softirq_own_stack (58 samples, 0.01%)</title><rect x="84.1572%" y="757" width="0.0109%" height="15" fill="rgb(248,102,6)" fg:x="446622" fg:w="58"/><text x="84.4072%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (58 samples, 0.01%)</title><rect x="84.1572%" y="741" width="0.0109%" height="15" fill="rgb(232,6,21)" fg:x="446622" fg:w="58"/><text x="84.4072%" y="751.50"></text></g><g><title>__softirqentry_text_start (58 samples, 0.01%)</title><rect x="84.1572%" y="725" width="0.0109%" height="15" fill="rgb(221,179,22)" fg:x="446622" fg:w="58"/><text x="84.4072%" y="735.50"></text></g><g><title>fileDescriptorClose (57 samples, 0.01%)</title><rect x="84.1756%" y="805" width="0.0107%" height="15" fill="rgb(252,50,20)" fg:x="446720" fg:w="57"/><text x="84.4256%" y="815.50"></text></g><g><title>do_filp_open (141 samples, 0.03%)</title><rect x="84.2050%" y="709" width="0.0266%" height="15" fill="rgb(222,56,38)" fg:x="446876" fg:w="141"/><text x="84.4550%" y="719.50"></text></g><g><title>path_openat (140 samples, 0.03%)</title><rect x="84.2052%" y="693" width="0.0264%" height="15" fill="rgb(206,193,29)" fg:x="446877" fg:w="140"/><text x="84.4552%" y="703.50"></text></g><g><title>__x64_sys_openat (184 samples, 0.03%)</title><rect x="84.2028%" y="741" width="0.0347%" height="15" fill="rgb(239,192,45)" fg:x="446864" fg:w="184"/><text x="84.4528%" y="751.50"></text></g><g><title>do_sys_openat2 (184 samples, 0.03%)</title><rect x="84.2028%" y="725" width="0.0347%" height="15" fill="rgb(254,18,36)" fg:x="446864" fg:w="184"/><text x="84.4528%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.04%)</title><rect x="84.2026%" y="773" width="0.0350%" height="15" fill="rgb(221,127,11)" fg:x="446863" fg:w="186"/><text x="84.4526%" y="783.50"></text></g><g><title>do_syscall_64 (185 samples, 0.03%)</title><rect x="84.2028%" y="757" width="0.0349%" height="15" fill="rgb(234,146,35)" fg:x="446864" fg:w="185"/><text x="84.4528%" y="767.50"></text></g><g><title>__libc_open64 (191 samples, 0.04%)</title><rect x="84.2020%" y="789" width="0.0360%" height="15" fill="rgb(254,201,37)" fg:x="446860" fg:w="191"/><text x="84.4520%" y="799.50"></text></g><g><title>fileOpen (295 samples, 0.06%)</title><rect x="84.1864%" y="805" width="0.0556%" height="15" fill="rgb(211,202,23)" fg:x="446777" fg:w="295"/><text x="84.4364%" y="815.50"></text></g><g><title>jni_IsAssignableFrom (102 samples, 0.02%)</title><rect x="84.2467%" y="805" width="0.0192%" height="15" fill="rgb(237,91,2)" fg:x="447097" fg:w="102"/><text x="84.4967%" y="815.50"></text></g><g><title>[perf-925888.map] (72,368 samples, 13.64%)</title><rect x="70.8892%" y="821" width="13.6363%" height="15" fill="rgb(226,228,36)" fg:x="376209" fg:w="72368"/><text x="71.1392%" y="831.50">[perf-925888.map]</text></g><g><title>os::javaTimeNanos (1,364 samples, 0.26%)</title><rect x="84.2685%" y="805" width="0.2570%" height="15" fill="rgb(213,63,50)" fg:x="447213" fg:w="1364"/><text x="84.5185%" y="815.50"></text></g><g><title>__GI___clock_gettime (1,283 samples, 0.24%)</title><rect x="84.2838%" y="789" width="0.2418%" height="15" fill="rgb(235,194,19)" fg:x="447294" fg:w="1283"/><text x="84.5338%" y="799.50"></text></g><g><title>__vdso_clock_gettime (1,148 samples, 0.22%)</title><rect x="84.3092%" y="773" width="0.2163%" height="15" fill="rgb(207,204,18)" fg:x="447429" fg:w="1148"/><text x="84.5592%" y="783.50"></text></g><g><title>[[vdso]] (745 samples, 0.14%)</title><rect x="84.3852%" y="757" width="0.1404%" height="15" fill="rgb(248,8,7)" fg:x="447832" fg:w="745"/><text x="84.6352%" y="767.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (147 samples, 0.03%)</title><rect x="84.5655%" y="789" width="0.0277%" height="15" fill="rgb(223,145,47)" fg:x="448789" fg:w="147"/><text x="84.8155%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (229 samples, 0.04%)</title><rect x="84.5530%" y="805" width="0.0432%" height="15" fill="rgb(228,84,11)" fg:x="448723" fg:w="229"/><text x="84.8030%" y="815.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.01%)</title><rect x="84.5977%" y="597" width="0.0104%" height="15" fill="rgb(218,76,45)" fg:x="448960" fg:w="55"/><text x="84.8477%" y="607.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="84.5979%" y="581" width="0.0102%" height="15" fill="rgb(223,80,15)" fg:x="448961" fg:w="54"/><text x="84.8479%" y="591.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="84.5979%" y="565" width="0.0102%" height="15" fill="rgb(219,218,33)" fg:x="448961" fg:w="54"/><text x="84.8479%" y="575.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="84.5977%" y="661" width="0.0106%" height="15" fill="rgb(208,51,11)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="671.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="84.5977%" y="645" width="0.0106%" height="15" fill="rgb(229,165,39)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="655.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="84.5977%" y="629" width="0.0106%" height="15" fill="rgb(241,100,24)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="639.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="84.5977%" y="613" width="0.0106%" height="15" fill="rgb(228,14,23)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="623.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.01%)</title><rect x="84.5973%" y="725" width="0.0111%" height="15" fill="rgb(247,116,52)" fg:x="448958" fg:w="59"/><text x="84.8473%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.01%)</title><rect x="84.5973%" y="709" width="0.0111%" height="15" fill="rgb(216,149,33)" fg:x="448958" fg:w="59"/><text x="84.8473%" y="719.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="84.5975%" y="693" width="0.0109%" height="15" fill="rgb(238,142,29)" fg:x="448959" fg:w="58"/><text x="84.8475%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="84.5977%" y="677" width="0.0107%" height="15" fill="rgb(224,83,40)" fg:x="448960" fg:w="57"/><text x="84.8477%" y="687.50"></text></g><g><title>Monitor::lock_without_safepoint_check (65 samples, 0.01%)</title><rect x="84.5966%" y="773" width="0.0122%" height="15" fill="rgb(234,165,11)" fg:x="448954" fg:w="65"/><text x="84.8466%" y="783.50"></text></g><g><title>Monitor::ILock (65 samples, 0.01%)</title><rect x="84.5966%" y="757" width="0.0122%" height="15" fill="rgb(215,96,23)" fg:x="448954" fg:w="65"/><text x="84.8466%" y="767.50"></text></g><g><title>os::PlatformEvent::park (61 samples, 0.01%)</title><rect x="84.5973%" y="741" width="0.0115%" height="15" fill="rgb(233,179,26)" fg:x="448958" fg:w="61"/><text x="84.8473%" y="751.50"></text></g><g><title>SafepointSynchronize::block (75 samples, 0.01%)</title><rect x="84.5964%" y="789" width="0.0141%" height="15" fill="rgb(225,129,33)" fg:x="448953" fg:w="75"/><text x="84.8464%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (78 samples, 0.01%)</title><rect x="84.5962%" y="805" width="0.0147%" height="15" fill="rgb(237,49,13)" fg:x="448952" fg:w="78"/><text x="84.8462%" y="815.50"></text></g><g><title>__GI___clock_gettime (70 samples, 0.01%)</title><rect x="84.6128%" y="805" width="0.0132%" height="15" fill="rgb(211,3,31)" fg:x="449040" fg:w="70"/><text x="84.8628%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (124 samples, 0.02%)</title><rect x="84.6635%" y="629" width="0.0234%" height="15" fill="rgb(216,152,19)" fg:x="449309" fg:w="124"/><text x="84.9135%" y="639.50"></text></g><g><title>copy_page_to_iter (136 samples, 0.03%)</title><rect x="84.6616%" y="645" width="0.0256%" height="15" fill="rgb(251,121,35)" fg:x="449299" fg:w="136"/><text x="84.9116%" y="655.50"></text></g><g><title>btrfs_dirty_inode (99 samples, 0.02%)</title><rect x="84.7049%" y="629" width="0.0187%" height="15" fill="rgb(210,217,47)" fg:x="449529" fg:w="99"/><text x="84.9549%" y="639.50"></text></g><g><title>touch_atime (111 samples, 0.02%)</title><rect x="84.7032%" y="645" width="0.0209%" height="15" fill="rgb(244,116,22)" fg:x="449520" fg:w="111"/><text x="84.9532%" y="655.50"></text></g><g><title>new_sync_read (368 samples, 0.07%)</title><rect x="84.6582%" y="677" width="0.0693%" height="15" fill="rgb(228,17,21)" fg:x="449281" fg:w="368"/><text x="84.9082%" y="687.50"></text></g><g><title>generic_file_buffered_read (364 samples, 0.07%)</title><rect x="84.6589%" y="661" width="0.0686%" height="15" fill="rgb(240,149,34)" fg:x="449285" fg:w="364"/><text x="84.9089%" y="671.50"></text></g><g><title>do_syscall_64 (408 samples, 0.08%)</title><rect x="84.6533%" y="725" width="0.0769%" height="15" fill="rgb(208,125,47)" fg:x="449255" fg:w="408"/><text x="84.9033%" y="735.50"></text></g><g><title>ksys_read (407 samples, 0.08%)</title><rect x="84.6535%" y="709" width="0.0767%" height="15" fill="rgb(249,186,39)" fg:x="449256" fg:w="407"/><text x="84.9035%" y="719.50"></text></g><g><title>vfs_read (395 samples, 0.07%)</title><rect x="84.6557%" y="693" width="0.0744%" height="15" fill="rgb(240,220,33)" fg:x="449268" fg:w="395"/><text x="84.9057%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (415 samples, 0.08%)</title><rect x="84.6527%" y="741" width="0.0782%" height="15" fill="rgb(243,110,23)" fg:x="449252" fg:w="415"/><text x="84.9027%" y="751.50"></text></g><g><title>__libc_read (428 samples, 0.08%)</title><rect x="84.6507%" y="773" width="0.0806%" height="15" fill="rgb(219,163,46)" fg:x="449241" fg:w="428"/><text x="84.9007%" y="783.50"></text></g><g><title>__libc_read (428 samples, 0.08%)</title><rect x="84.6507%" y="757" width="0.0806%" height="15" fill="rgb(216,126,30)" fg:x="449241" fg:w="428"/><text x="84.9007%" y="767.50"></text></g><g><title>handleRead (429 samples, 0.08%)</title><rect x="84.6507%" y="789" width="0.0808%" height="15" fill="rgb(208,139,11)" fg:x="449241" fg:w="429"/><text x="84.9007%" y="799.50"></text></g><g><title>readBytes (502 samples, 0.09%)</title><rect x="84.6495%" y="805" width="0.0946%" height="15" fill="rgb(213,118,36)" fg:x="449235" fg:w="502"/><text x="84.8995%" y="815.50"></text></g><g><title>[unknown] (1,180 samples, 0.22%)</title><rect x="84.5255%" y="821" width="0.2223%" height="15" fill="rgb(226,43,17)" fg:x="448577" fg:w="1180"/><text x="84.7755%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (126 samples, 0.02%)</title><rect x="84.7496%" y="757" width="0.0237%" height="15" fill="rgb(254,217,4)" fg:x="449766" fg:w="126"/><text x="84.9996%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (124 samples, 0.02%)</title><rect x="84.7500%" y="741" width="0.0234%" height="15" fill="rgb(210,134,47)" fg:x="449768" fg:w="124"/><text x="85.0000%" y="751.50"></text></g><g><title>native_write_msr (123 samples, 0.02%)</title><rect x="84.7501%" y="725" width="0.0232%" height="15" fill="rgb(237,24,49)" fg:x="449769" fg:w="123"/><text x="85.0001%" y="735.50"></text></g><g><title>schedule_tail (130 samples, 0.02%)</title><rect x="84.7496%" y="789" width="0.0245%" height="15" fill="rgb(251,39,46)" fg:x="449766" fg:w="130"/><text x="84.9996%" y="799.50"></text></g><g><title>finish_task_switch (130 samples, 0.02%)</title><rect x="84.7496%" y="773" width="0.0245%" height="15" fill="rgb(251,220,3)" fg:x="449766" fg:w="130"/><text x="84.9996%" y="783.50"></text></g><g><title>ret_from_fork (133 samples, 0.03%)</title><rect x="84.7496%" y="805" width="0.0251%" height="15" fill="rgb(228,105,12)" fg:x="449766" fg:w="133"/><text x="84.9996%" y="815.50"></text></g><g><title>__GI___clone (237 samples, 0.04%)</title><rect x="84.7479%" y="821" width="0.0447%" height="15" fill="rgb(215,196,1)" fg:x="449757" fg:w="237"/><text x="84.9979%" y="831.50"></text></g><g><title>start_thread (95 samples, 0.02%)</title><rect x="84.7746%" y="805" width="0.0179%" height="15" fill="rgb(214,33,39)" fg:x="449899" fg:w="95"/><text x="85.0246%" y="815.50"></text></g><g><title>thread_native_entry (68 samples, 0.01%)</title><rect x="84.7797%" y="789" width="0.0128%" height="15" fill="rgb(220,19,52)" fg:x="449926" fg:w="68"/><text x="85.0297%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (138 samples, 0.03%)</title><rect x="84.8020%" y="821" width="0.0260%" height="15" fill="rgb(221,78,38)" fg:x="450044" fg:w="138"/><text x="85.0520%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (216 samples, 0.04%)</title><rect x="84.8280%" y="821" width="0.0407%" height="15" fill="rgb(253,30,16)" fg:x="450182" fg:w="216"/><text x="85.0780%" y="831.50"></text></g><g><title>skyframe-evalua (301,452 samples, 56.80%)</title><rect x="28.0955%" y="837" width="56.8027%" height="15" fill="rgb(242,65,0)" fg:x="149103" fg:w="301452"/><text x="28.3455%" y="847.50">skyframe-evalua</text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="84.9092%" y="709" width="0.0109%" height="15" fill="rgb(235,201,12)" fg:x="450613" fg:w="58"/><text x="85.1592%" y="719.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="84.9092%" y="693" width="0.0109%" height="15" fill="rgb(233,161,9)" fg:x="450613" fg:w="58"/><text x="85.1592%" y="703.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="84.9092%" y="677" width="0.0109%" height="15" fill="rgb(241,207,41)" fg:x="450613" fg:w="58"/><text x="85.1592%" y="687.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="84.9094%" y="661" width="0.0107%" height="15" fill="rgb(212,69,46)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="671.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="84.9094%" y="645" width="0.0107%" height="15" fill="rgb(239,69,45)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="655.50"></text></g><g><title>schedule (57 samples, 0.01%)</title><rect x="84.9094%" y="629" width="0.0107%" height="15" fill="rgb(242,117,48)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="639.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="84.9094%" y="613" width="0.0107%" height="15" fill="rgb(228,41,36)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="623.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.01%)</title><rect x="84.9092%" y="773" width="0.0113%" height="15" fill="rgb(212,3,32)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.01%)</title><rect x="84.9092%" y="757" width="0.0113%" height="15" fill="rgb(233,41,49)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="767.50"></text></g><g><title>futex_wait_cancelable (60 samples, 0.01%)</title><rect x="84.9092%" y="741" width="0.0113%" height="15" fill="rgb(252,170,49)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="84.9092%" y="725" width="0.0113%" height="15" fill="rgb(229,53,26)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="735.50"></text></g><g><title>Unsafe_Park (64 samples, 0.01%)</title><rect x="84.9088%" y="805" width="0.0121%" height="15" fill="rgb(217,157,12)" fg:x="450611" fg:w="64"/><text x="85.1588%" y="815.50"></text></g><g><title>Parker::park (64 samples, 0.01%)</title><rect x="84.9088%" y="789" width="0.0121%" height="15" fill="rgb(227,17,9)" fg:x="450611" fg:w="64"/><text x="85.1588%" y="799.50"></text></g><g><title>[perf-925888.map] (123 samples, 0.02%)</title><rect x="84.8988%" y="821" width="0.0232%" height="15" fill="rgb(218,84,12)" fg:x="450558" fg:w="123"/><text x="85.1488%" y="831.50"></text></g><g><title>skyframe-invali (153 samples, 0.03%)</title><rect x="84.8982%" y="837" width="0.0288%" height="15" fill="rgb(212,79,24)" fg:x="450555" fg:w="153"/><text x="85.1482%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.02%)</title><rect x="89.9574%" y="629" width="0.0198%" height="15" fill="rgb(217,222,37)" fg:x="477404" fg:w="105"/><text x="90.2074%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (105 samples, 0.02%)</title><rect x="89.9574%" y="613" width="0.0198%" height="15" fill="rgb(246,208,8)" fg:x="477404" fg:w="105"/><text x="90.2074%" y="623.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="89.9574%" y="597" width="0.0198%" height="15" fill="rgb(244,133,10)" fg:x="477404" fg:w="105"/><text x="90.2074%" y="607.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="89.9568%" y="645" width="0.0211%" height="15" fill="rgb(209,219,41)" fg:x="477401" fg:w="112"/><text x="90.2068%" y="655.50"></text></g><g><title>wait_on_page_bit_common (142 samples, 0.03%)</title><rect x="89.9535%" y="709" width="0.0268%" height="15" fill="rgb(253,175,45)" fg:x="477383" fg:w="142"/><text x="90.2035%" y="719.50"></text></g><g><title>io_schedule (138 samples, 0.03%)</title><rect x="89.9542%" y="693" width="0.0260%" height="15" fill="rgb(235,100,37)" fg:x="477387" fg:w="138"/><text x="90.2042%" y="703.50"></text></g><g><title>schedule (138 samples, 0.03%)</title><rect x="89.9542%" y="677" width="0.0260%" height="15" fill="rgb(225,87,19)" fg:x="477387" fg:w="138"/><text x="90.2042%" y="687.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="89.9544%" y="661" width="0.0258%" height="15" fill="rgb(217,152,17)" fg:x="477388" fg:w="137"/><text x="90.2044%" y="671.50"></text></g><g><title>__do_fault (188 samples, 0.04%)</title><rect x="89.9487%" y="741" width="0.0354%" height="15" fill="rgb(235,72,13)" fg:x="477358" fg:w="188"/><text x="90.1987%" y="751.50"></text></g><g><title>filemap_fault (188 samples, 0.04%)</title><rect x="89.9487%" y="725" width="0.0354%" height="15" fill="rgb(233,140,18)" fg:x="477358" fg:w="188"/><text x="90.1987%" y="735.50"></text></g><g><title>__list_del_entry_valid (74 samples, 0.01%)</title><rect x="90.0230%" y="693" width="0.0139%" height="15" fill="rgb(207,212,28)" fg:x="477752" fg:w="74"/><text x="90.2730%" y="703.50"></text></g><g><title>get_page_from_freelist (382 samples, 0.07%)</title><rect x="90.0102%" y="709" width="0.0720%" height="15" fill="rgb(220,130,25)" fg:x="477684" fg:w="382"/><text x="90.2602%" y="719.50"></text></g><g><title>prep_new_page (239 samples, 0.05%)</title><rect x="90.0371%" y="693" width="0.0450%" height="15" fill="rgb(205,55,34)" fg:x="477827" fg:w="239"/><text x="90.2871%" y="703.50"></text></g><g><title>kernel_init_free_pages (230 samples, 0.04%)</title><rect x="90.0388%" y="677" width="0.0433%" height="15" fill="rgb(237,54,35)" fg:x="477836" fg:w="230"/><text x="90.2888%" y="687.50"></text></g><g><title>clear_page_erms (221 samples, 0.04%)</title><rect x="90.0405%" y="661" width="0.0416%" height="15" fill="rgb(208,67,23)" fg:x="477845" fg:w="221"/><text x="90.2905%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (432 samples, 0.08%)</title><rect x="90.0011%" y="725" width="0.0814%" height="15" fill="rgb(206,207,50)" fg:x="477636" fg:w="432"/><text x="90.2511%" y="735.50"></text></g><g><title>alloc_pages_vma (467 samples, 0.09%)</title><rect x="89.9964%" y="741" width="0.0880%" height="15" fill="rgb(213,211,42)" fg:x="477611" fg:w="467"/><text x="90.2464%" y="751.50"></text></g><g><title>do_huge_pmd_anonymous_page (58 samples, 0.01%)</title><rect x="90.0908%" y="741" width="0.0109%" height="15" fill="rgb(252,197,50)" fg:x="478112" fg:w="58"/><text x="90.3408%" y="751.50"></text></g><g><title>do_page_mkwrite (225 samples, 0.04%)</title><rect x="90.1018%" y="741" width="0.0424%" height="15" fill="rgb(251,211,41)" fg:x="478170" fg:w="225"/><text x="90.3518%" y="751.50"></text></g><g><title>btrfs_page_mkwrite (224 samples, 0.04%)</title><rect x="90.1019%" y="725" width="0.0422%" height="15" fill="rgb(229,211,5)" fg:x="478171" fg:w="224"/><text x="90.3519%" y="735.50"></text></g><g><title>page_add_file_rmap (172 samples, 0.03%)</title><rect x="90.2568%" y="709" width="0.0324%" height="15" fill="rgb(239,36,31)" fg:x="478993" fg:w="172"/><text x="90.5068%" y="719.50"></text></g><g><title>alloc_set_pte (243 samples, 0.05%)</title><rect x="90.2450%" y="725" width="0.0458%" height="15" fill="rgb(248,67,31)" fg:x="478930" fg:w="243"/><text x="90.4950%" y="735.50"></text></g><g><title>unlock_page (59 samples, 0.01%)</title><rect x="90.2907%" y="725" width="0.0111%" height="15" fill="rgb(249,55,44)" fg:x="479173" fg:w="59"/><text x="90.5407%" y="735.50"></text></g><g><title>filemap_map_pages (864 samples, 0.16%)</title><rect x="90.1519%" y="741" width="0.1628%" height="15" fill="rgb(216,82,12)" fg:x="478436" fg:w="864"/><text x="90.4019%" y="751.50"></text></g><g><title>xas_find (68 samples, 0.01%)</title><rect x="90.3019%" y="725" width="0.0128%" height="15" fill="rgb(242,174,1)" fg:x="479232" fg:w="68"/><text x="90.5519%" y="735.50"></text></g><g><title>__pagevec_lru_add_fn (67 samples, 0.01%)</title><rect x="90.3186%" y="709" width="0.0126%" height="15" fill="rgb(208,120,29)" fg:x="479321" fg:w="67"/><text x="90.5686%" y="719.50"></text></g><g><title>lru_cache_add (104 samples, 0.02%)</title><rect x="90.3149%" y="741" width="0.0196%" height="15" fill="rgb(221,105,43)" fg:x="479301" fg:w="104"/><text x="90.5649%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (93 samples, 0.02%)</title><rect x="90.3169%" y="725" width="0.0175%" height="15" fill="rgb(234,124,22)" fg:x="479312" fg:w="93"/><text x="90.5669%" y="735.50"></text></g><g><title>mem_cgroup_charge (124 samples, 0.02%)</title><rect x="90.3348%" y="741" width="0.0234%" height="15" fill="rgb(212,23,30)" fg:x="479407" fg:w="124"/><text x="90.5848%" y="751.50"></text></g><g><title>handle_mm_fault (2,538 samples, 0.48%)</title><rect x="89.9035%" y="757" width="0.4782%" height="15" fill="rgb(219,122,53)" fg:x="477118" fg:w="2538"/><text x="90.1535%" y="767.50"></text></g><g><title>do_user_addr_fault (2,701 samples, 0.51%)</title><rect x="89.8811%" y="773" width="0.5090%" height="15" fill="rgb(248,84,24)" fg:x="476999" fg:w="2701"/><text x="90.1311%" y="783.50"></text></g><g><title>exc_page_fault (2,728 samples, 0.51%)</title><rect x="89.8766%" y="789" width="0.5140%" height="15" fill="rgb(245,115,18)" fg:x="476975" fg:w="2728"/><text x="90.1266%" y="799.50"></text></g><g><title>asm_exc_page_fault (2,772 samples, 0.52%)</title><rect x="89.8709%" y="805" width="0.5223%" height="15" fill="rgb(227,176,51)" fg:x="476945" fg:w="2772"/><text x="90.1209%" y="815.50"></text></g><g><title>kmem_cache_free (60 samples, 0.01%)</title><rect x="90.4044%" y="693" width="0.0113%" height="15" fill="rgb(229,63,42)" fg:x="479776" fg:w="60"/><text x="90.6544%" y="703.50"></text></g><g><title>rcu_core (117 samples, 0.02%)</title><rect x="90.4006%" y="709" width="0.0220%" height="15" fill="rgb(247,202,24)" fg:x="479756" fg:w="117"/><text x="90.6506%" y="719.50"></text></g><g><title>do_softirq_own_stack (122 samples, 0.02%)</title><rect x="90.4006%" y="757" width="0.0230%" height="15" fill="rgb(244,173,20)" fg:x="479756" fg:w="122"/><text x="90.6506%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (122 samples, 0.02%)</title><rect x="90.4006%" y="741" width="0.0230%" height="15" fill="rgb(242,81,47)" fg:x="479756" fg:w="122"/><text x="90.6506%" y="751.50"></text></g><g><title>__softirqentry_text_start (122 samples, 0.02%)</title><rect x="90.4006%" y="725" width="0.0230%" height="15" fill="rgb(231,185,54)" fg:x="479756" fg:w="122"/><text x="90.6506%" y="735.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (162 samples, 0.03%)</title><rect x="90.3933%" y="805" width="0.0305%" height="15" fill="rgb(243,55,32)" fg:x="479717" fg:w="162"/><text x="90.6433%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (141 samples, 0.03%)</title><rect x="90.3972%" y="789" width="0.0266%" height="15" fill="rgb(208,167,19)" fg:x="479738" fg:w="141"/><text x="90.6472%" y="799.50"></text></g><g><title>irq_exit_rcu (123 samples, 0.02%)</title><rect x="90.4006%" y="773" width="0.0232%" height="15" fill="rgb(231,72,35)" fg:x="479756" fg:w="123"/><text x="90.6506%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (1,192 samples, 0.22%)</title><rect x="90.4272%" y="805" width="0.2246%" height="15" fill="rgb(250,173,51)" fg:x="479897" fg:w="1192"/><text x="90.6772%" y="815.50"></text></g><g><title>copy_process (104 samples, 0.02%)</title><rect x="90.7500%" y="741" width="0.0196%" height="15" fill="rgb(209,5,22)" fg:x="481610" fg:w="104"/><text x="91.0000%" y="751.50"></text></g><g><title>__do_sys_clone (118 samples, 0.02%)</title><rect x="90.7500%" y="773" width="0.0222%" height="15" fill="rgb(250,174,19)" fg:x="481610" fg:w="118"/><text x="91.0000%" y="783.50"></text></g><g><title>kernel_clone (118 samples, 0.02%)</title><rect x="90.7500%" y="757" width="0.0222%" height="15" fill="rgb(217,3,49)" fg:x="481610" fg:w="118"/><text x="91.0000%" y="767.50"></text></g><g><title>_copy_to_user (193 samples, 0.04%)</title><rect x="90.7850%" y="741" width="0.0364%" height="15" fill="rgb(218,225,5)" fg:x="481796" fg:w="193"/><text x="91.0350%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (169 samples, 0.03%)</title><rect x="90.7895%" y="725" width="0.0318%" height="15" fill="rgb(236,89,11)" fg:x="481820" fg:w="169"/><text x="91.0395%" y="735.50"></text></g><g><title>cp_new_stat (292 samples, 0.06%)</title><rect x="90.7748%" y="757" width="0.0550%" height="15" fill="rgb(206,33,28)" fg:x="481742" fg:w="292"/><text x="91.0248%" y="767.50"></text></g><g><title>__fget_light (102 samples, 0.02%)</title><rect x="90.8344%" y="741" width="0.0192%" height="15" fill="rgb(241,56,42)" fg:x="482058" fg:w="102"/><text x="91.0844%" y="751.50"></text></g><g><title>__fget_files (95 samples, 0.02%)</title><rect x="90.8357%" y="725" width="0.0179%" height="15" fill="rgb(222,44,11)" fg:x="482065" fg:w="95"/><text x="91.0857%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="90.9292%" y="725" width="0.0107%" height="15" fill="rgb(234,111,20)" fg:x="482561" fg:w="57"/><text x="91.1792%" y="735.50"></text></g><g><title>btrfs_getattr (574 samples, 0.11%)</title><rect x="90.8536%" y="741" width="0.1082%" height="15" fill="rgb(237,77,6)" fg:x="482160" fg:w="574"/><text x="91.1036%" y="751.50"></text></g><g><title>inode_get_bytes (73 samples, 0.01%)</title><rect x="90.9480%" y="725" width="0.0138%" height="15" fill="rgb(235,111,23)" fg:x="482661" fg:w="73"/><text x="91.1980%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="90.9510%" y="709" width="0.0107%" height="15" fill="rgb(251,135,29)" fg:x="482677" fg:w="57"/><text x="91.2010%" y="719.50"></text></g><g><title>security_inode_getattr (202 samples, 0.04%)</title><rect x="90.9700%" y="741" width="0.0381%" height="15" fill="rgb(217,57,1)" fg:x="482778" fg:w="202"/><text x="91.2200%" y="751.50"></text></g><g><title>tomoyo_path_perm (149 samples, 0.03%)</title><rect x="90.9800%" y="725" width="0.0281%" height="15" fill="rgb(249,119,31)" fg:x="482831" fg:w="149"/><text x="91.2300%" y="735.50"></text></g><g><title>tomoyo_init_request_info (72 samples, 0.01%)</title><rect x="90.9945%" y="709" width="0.0136%" height="15" fill="rgb(233,164,33)" fg:x="482908" fg:w="72"/><text x="91.2445%" y="719.50"></text></g><g><title>__do_sys_newfstat (1,338 samples, 0.25%)</title><rect x="90.7722%" y="773" width="0.2521%" height="15" fill="rgb(250,217,43)" fg:x="481728" fg:w="1338"/><text x="91.0222%" y="783.50"></text></g><g><title>vfs_fstat (1,032 samples, 0.19%)</title><rect x="90.8298%" y="757" width="0.1945%" height="15" fill="rgb(232,154,50)" fg:x="482034" fg:w="1032"/><text x="91.0798%" y="767.50"></text></g><g><title>vfs_getattr_nosec (86 samples, 0.02%)</title><rect x="91.0081%" y="741" width="0.0162%" height="15" fill="rgb(227,190,8)" fg:x="482980" fg:w="86"/><text x="91.2581%" y="751.50"></text></g><g><title>__close_fd (93 samples, 0.02%)</title><rect x="91.0311%" y="757" width="0.0175%" height="15" fill="rgb(209,217,32)" fg:x="483102" fg:w="93"/><text x="91.2811%" y="767.50"></text></g><g><title>pick_file (89 samples, 0.02%)</title><rect x="91.0318%" y="741" width="0.0168%" height="15" fill="rgb(243,203,50)" fg:x="483106" fg:w="89"/><text x="91.2818%" y="751.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="91.0379%" y="725" width="0.0107%" height="15" fill="rgb(232,152,27)" fg:x="483138" fg:w="57"/><text x="91.2879%" y="735.50"></text></g><g><title>fput_many (201 samples, 0.04%)</title><rect x="91.0535%" y="741" width="0.0379%" height="15" fill="rgb(240,34,29)" fg:x="483221" fg:w="201"/><text x="91.3035%" y="751.50"></text></g><g><title>task_work_add (131 samples, 0.02%)</title><rect x="91.0667%" y="725" width="0.0247%" height="15" fill="rgb(215,185,52)" fg:x="483291" fg:w="131"/><text x="91.3167%" y="735.50"></text></g><g><title>__x64_sys_close (354 samples, 0.07%)</title><rect x="91.0292%" y="773" width="0.0667%" height="15" fill="rgb(240,89,49)" fg:x="483092" fg:w="354"/><text x="91.2792%" y="783.50"></text></g><g><title>filp_close (251 samples, 0.05%)</title><rect x="91.0486%" y="757" width="0.0473%" height="15" fill="rgb(225,12,52)" fg:x="483195" fg:w="251"/><text x="91.2986%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (140 samples, 0.03%)</title><rect x="91.0997%" y="645" width="0.0264%" height="15" fill="rgb(239,128,45)" fg:x="483466" fg:w="140"/><text x="91.3497%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (135 samples, 0.03%)</title><rect x="91.1006%" y="629" width="0.0254%" height="15" fill="rgb(211,78,47)" fg:x="483471" fg:w="135"/><text x="91.3506%" y="639.50"></text></g><g><title>native_write_msr (133 samples, 0.03%)</title><rect x="91.1010%" y="613" width="0.0251%" height="15" fill="rgb(232,31,21)" fg:x="483473" fg:w="133"/><text x="91.3510%" y="623.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="91.0995%" y="661" width="0.0271%" height="15" fill="rgb(222,168,14)" fg:x="483465" fg:w="144"/><text x="91.3495%" y="671.50"></text></g><g><title>schedule (147 samples, 0.03%)</title><rect x="91.0993%" y="693" width="0.0277%" height="15" fill="rgb(209,128,24)" fg:x="483464" fg:w="147"/><text x="91.3493%" y="703.50"></text></g><g><title>__schedule (146 samples, 0.03%)</title><rect x="91.0995%" y="677" width="0.0275%" height="15" fill="rgb(249,35,13)" fg:x="483465" fg:w="146"/><text x="91.3495%" y="687.50"></text></g><g><title>begin_new_exec (169 samples, 0.03%)</title><rect x="91.0976%" y="709" width="0.0318%" height="15" fill="rgb(218,7,2)" fg:x="483455" fg:w="169"/><text x="91.3476%" y="719.50"></text></g><g><title>load_elf_binary (170 samples, 0.03%)</title><rect x="91.0976%" y="725" width="0.0320%" height="15" fill="rgb(238,107,27)" fg:x="483455" fg:w="170"/><text x="91.3476%" y="735.50"></text></g><g><title>bprm_execve (222 samples, 0.04%)</title><rect x="91.0969%" y="741" width="0.0418%" height="15" fill="rgb(217,88,38)" fg:x="483451" fg:w="222"/><text x="91.3469%" y="751.50"></text></g><g><title>do_execveat_common (262 samples, 0.05%)</title><rect x="91.0959%" y="757" width="0.0494%" height="15" fill="rgb(230,207,0)" fg:x="483446" fg:w="262"/><text x="91.3459%" y="767.50"></text></g><g><title>__x64_sys_execve (267 samples, 0.05%)</title><rect x="91.0959%" y="773" width="0.0503%" height="15" fill="rgb(249,64,54)" fg:x="483446" fg:w="267"/><text x="91.3459%" y="783.50"></text></g><g><title>__perf_event_task_sched_out (62 samples, 0.01%)</title><rect x="91.2500%" y="677" width="0.0117%" height="15" fill="rgb(231,7,11)" fg:x="484264" fg:w="62"/><text x="91.5000%" y="687.50"></text></g><g><title>update_curr (151 samples, 0.03%)</title><rect x="91.3053%" y="645" width="0.0285%" height="15" fill="rgb(205,149,21)" fg:x="484557" fg:w="151"/><text x="91.5553%" y="655.50"></text></g><g><title>__update_load_avg_se (56 samples, 0.01%)</title><rect x="91.3575%" y="629" width="0.0106%" height="15" fill="rgb(215,126,34)" fg:x="484834" fg:w="56"/><text x="91.6075%" y="639.50"></text></g><g><title>dequeue_entity (474 samples, 0.09%)</title><rect x="91.2802%" y="661" width="0.0893%" height="15" fill="rgb(241,132,45)" fg:x="484424" fg:w="474"/><text x="91.5302%" y="671.50"></text></g><g><title>update_load_avg (190 samples, 0.04%)</title><rect x="91.3337%" y="645" width="0.0358%" height="15" fill="rgb(252,69,32)" fg:x="484708" fg:w="190"/><text x="91.5837%" y="655.50"></text></g><g><title>dequeue_task_fair (544 samples, 0.10%)</title><rect x="91.2696%" y="677" width="0.1025%" height="15" fill="rgb(232,204,19)" fg:x="484368" fg:w="544"/><text x="91.5196%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (12,847 samples, 2.42%)</title><rect x="91.4326%" y="661" width="2.4208%" height="15" fill="rgb(249,15,47)" fg:x="485233" fg:w="12847"/><text x="91.6826%" y="671.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (12,669 samples, 2.39%)</title><rect x="91.4662%" y="645" width="2.3872%" height="15" fill="rgb(209,227,23)" fg:x="485411" fg:w="12669"/><text x="91.7162%" y="655.50">__..</text></g><g><title>native_write_msr (12,614 samples, 2.38%)</title><rect x="91.4765%" y="629" width="2.3769%" height="15" fill="rgb(248,92,24)" fg:x="485466" fg:w="12614"/><text x="91.7265%" y="639.50">na..</text></g><g><title>irq_work_run (80 samples, 0.02%)</title><rect x="93.8790%" y="597" width="0.0151%" height="15" fill="rgb(247,59,2)" fg:x="498216" fg:w="80"/><text x="94.1290%" y="607.50"></text></g><g><title>irq_work_run_list (79 samples, 0.01%)</title><rect x="93.8792%" y="581" width="0.0149%" height="15" fill="rgb(221,30,5)" fg:x="498217" fg:w="79"/><text x="94.1292%" y="591.50"></text></g><g><title>irq_work_single (77 samples, 0.01%)</title><rect x="93.8796%" y="565" width="0.0145%" height="15" fill="rgb(208,108,53)" fg:x="498219" fg:w="77"/><text x="94.1296%" y="575.50"></text></g><g><title>perf_pending_event (73 samples, 0.01%)</title><rect x="93.8803%" y="549" width="0.0138%" height="15" fill="rgb(211,183,26)" fg:x="498223" fg:w="73"/><text x="94.1303%" y="559.50"></text></g><g><title>perf_event_wakeup (63 samples, 0.01%)</title><rect x="93.8822%" y="533" width="0.0119%" height="15" fill="rgb(232,132,4)" fg:x="498233" fg:w="63"/><text x="94.1322%" y="543.50"></text></g><g><title>__wake_up_common_lock (61 samples, 0.01%)</title><rect x="93.8826%" y="517" width="0.0115%" height="15" fill="rgb(253,128,37)" fg:x="498235" fg:w="61"/><text x="94.1326%" y="527.50"></text></g><g><title>asm_call_sysvec_on_stack (90 samples, 0.02%)</title><rect x="93.8777%" y="629" width="0.0170%" height="15" fill="rgb(221,58,24)" fg:x="498209" fg:w="90"/><text x="94.1277%" y="639.50"></text></g><g><title>__sysvec_irq_work (85 samples, 0.02%)</title><rect x="93.8787%" y="613" width="0.0160%" height="15" fill="rgb(230,54,45)" fg:x="498214" fg:w="85"/><text x="94.1287%" y="623.50"></text></g><g><title>asm_sysvec_irq_work (169 samples, 0.03%)</title><rect x="93.8641%" y="661" width="0.0318%" height="15" fill="rgb(254,21,18)" fg:x="498137" fg:w="169"/><text x="94.1141%" y="671.50"></text></g><g><title>sysvec_irq_work (98 samples, 0.02%)</title><rect x="93.8775%" y="645" width="0.0185%" height="15" fill="rgb(221,108,0)" fg:x="498208" fg:w="98"/><text x="94.1275%" y="655.50"></text></g><g><title>finish_task_switch (13,459 samples, 2.54%)</title><rect x="91.3721%" y="677" width="2.5361%" height="15" fill="rgb(206,95,1)" fg:x="484912" fg:w="13459"/><text x="91.6221%" y="687.50">fi..</text></g><g><title>find_busiest_group (54 samples, 0.01%)</title><rect x="93.9275%" y="629" width="0.0102%" height="15" fill="rgb(237,52,5)" fg:x="498473" fg:w="54"/><text x="94.1775%" y="639.50"></text></g><g><title>load_balance (90 samples, 0.02%)</title><rect x="93.9210%" y="645" width="0.0170%" height="15" fill="rgb(218,150,34)" fg:x="498439" fg:w="90"/><text x="94.1710%" y="655.50"></text></g><g><title>newidle_balance (150 samples, 0.03%)</title><rect x="93.9120%" y="661" width="0.0283%" height="15" fill="rgb(235,194,28)" fg:x="498391" fg:w="150"/><text x="94.1620%" y="671.50"></text></g><g><title>pick_next_task_fair (177 samples, 0.03%)</title><rect x="93.9082%" y="677" width="0.0334%" height="15" fill="rgb(245,92,18)" fg:x="498371" fg:w="177"/><text x="94.1582%" y="687.50"></text></g><g><title>pick_next_task_idle (70 samples, 0.01%)</title><rect x="93.9416%" y="677" width="0.0132%" height="15" fill="rgb(253,203,53)" fg:x="498548" fg:w="70"/><text x="94.1916%" y="687.50"></text></g><g><title>__update_idle_core (59 samples, 0.01%)</title><rect x="93.9437%" y="661" width="0.0111%" height="15" fill="rgb(249,185,47)" fg:x="498559" fg:w="59"/><text x="94.1937%" y="671.50"></text></g><g><title>psi_task_change (349 samples, 0.07%)</title><rect x="93.9548%" y="677" width="0.0658%" height="15" fill="rgb(252,194,52)" fg:x="498618" fg:w="349"/><text x="94.2048%" y="687.50"></text></g><g><title>psi_group_change (286 samples, 0.05%)</title><rect x="93.9666%" y="661" width="0.0539%" height="15" fill="rgb(210,53,36)" fg:x="498681" fg:w="286"/><text x="94.2166%" y="671.50"></text></g><g><title>record_times (67 samples, 0.01%)</title><rect x="94.0079%" y="645" width="0.0126%" height="15" fill="rgb(237,37,25)" fg:x="498900" fg:w="67"/><text x="94.2579%" y="655.50"></text></g><g><title>futex_wait_queue_me (15,113 samples, 2.85%)</title><rect x="91.1907%" y="725" width="2.8477%" height="15" fill="rgb(242,116,27)" fg:x="483949" fg:w="15113"/><text x="91.4407%" y="735.50">fu..</text></g><g><title>schedule (14,983 samples, 2.82%)</title><rect x="91.2152%" y="709" width="2.8233%" height="15" fill="rgb(213,185,26)" fg:x="484079" fg:w="14983"/><text x="91.4652%" y="719.50">sc..</text></g><g><title>__schedule (14,925 samples, 2.81%)</title><rect x="91.2261%" y="693" width="2.8123%" height="15" fill="rgb(225,204,8)" fg:x="484137" fg:w="14925"/><text x="91.4761%" y="703.50">__..</text></g><g><title>futex_wait (15,398 samples, 2.90%)</title><rect x="91.1702%" y="741" width="2.9015%" height="15" fill="rgb(254,111,37)" fg:x="483840" fg:w="15398"/><text x="91.4202%" y="751.50">fu..</text></g><g><title>futex_wait_setup (176 samples, 0.03%)</title><rect x="94.0384%" y="725" width="0.0332%" height="15" fill="rgb(242,35,9)" fg:x="499062" fg:w="176"/><text x="94.2884%" y="735.50"></text></g><g><title>select_task_rq_fair (76 samples, 0.01%)</title><rect x="94.1029%" y="693" width="0.0143%" height="15" fill="rgb(232,138,49)" fg:x="499404" fg:w="76"/><text x="94.3529%" y="703.50"></text></g><g><title>enqueue_task_fair (65 samples, 0.01%)</title><rect x="94.1202%" y="677" width="0.0122%" height="15" fill="rgb(247,56,4)" fg:x="499496" fg:w="65"/><text x="94.3702%" y="687.50"></text></g><g><title>ttwu_do_activate (167 samples, 0.03%)</title><rect x="94.1181%" y="693" width="0.0315%" height="15" fill="rgb(226,179,17)" fg:x="499485" fg:w="167"/><text x="94.3681%" y="703.50"></text></g><g><title>psi_task_change (91 samples, 0.02%)</title><rect x="94.1325%" y="677" width="0.0171%" height="15" fill="rgb(216,163,45)" fg:x="499561" fg:w="91"/><text x="94.3825%" y="687.50"></text></g><g><title>psi_group_change (84 samples, 0.02%)</title><rect x="94.1338%" y="661" width="0.0158%" height="15" fill="rgb(211,157,3)" fg:x="499568" fg:w="84"/><text x="94.3838%" y="671.50"></text></g><g><title>__x64_sys_futex (15,935 samples, 3.00%)</title><rect x="91.1543%" y="773" width="3.0026%" height="15" fill="rgb(234,44,20)" fg:x="483756" fg:w="15935"/><text x="91.4043%" y="783.50">__x..</text></g><g><title>do_futex (15,894 samples, 2.99%)</title><rect x="91.1621%" y="757" width="2.9949%" height="15" fill="rgb(254,138,23)" fg:x="483797" fg:w="15894"/><text x="91.4121%" y="767.50">do_..</text></g><g><title>futex_wake (453 samples, 0.09%)</title><rect x="94.0716%" y="741" width="0.0854%" height="15" fill="rgb(206,119,39)" fg:x="499238" fg:w="453"/><text x="94.3216%" y="751.50"></text></g><g><title>wake_up_q (364 samples, 0.07%)</title><rect x="94.0884%" y="725" width="0.0686%" height="15" fill="rgb(231,105,52)" fg:x="499327" fg:w="364"/><text x="94.3384%" y="735.50"></text></g><g><title>try_to_wake_up (357 samples, 0.07%)</title><rect x="94.0897%" y="709" width="0.0673%" height="15" fill="rgb(250,20,5)" fg:x="499334" fg:w="357"/><text x="94.3397%" y="719.50"></text></g><g><title>__split_vma (81 samples, 0.02%)</title><rect x="94.1636%" y="725" width="0.0153%" height="15" fill="rgb(215,198,30)" fg:x="499726" fg:w="81"/><text x="94.4136%" y="735.50"></text></g><g><title>free_unref_page_list (89 samples, 0.02%)</title><rect x="94.2163%" y="677" width="0.0168%" height="15" fill="rgb(246,142,8)" fg:x="500006" fg:w="89"/><text x="94.4663%" y="687.50"></text></g><g><title>tlb_finish_mmu (225 samples, 0.04%)</title><rect x="94.1941%" y="709" width="0.0424%" height="15" fill="rgb(243,26,38)" fg:x="499888" fg:w="225"/><text x="94.4441%" y="719.50"></text></g><g><title>release_pages (163 samples, 0.03%)</title><rect x="94.2058%" y="693" width="0.0307%" height="15" fill="rgb(205,133,28)" fg:x="499950" fg:w="163"/><text x="94.4558%" y="703.50"></text></g><g><title>unmap_region (413 samples, 0.08%)</title><rect x="94.1833%" y="725" width="0.0778%" height="15" fill="rgb(212,34,0)" fg:x="499831" fg:w="413"/><text x="94.4333%" y="735.50"></text></g><g><title>unmap_vmas (129 samples, 0.02%)</title><rect x="94.2369%" y="709" width="0.0243%" height="15" fill="rgb(251,226,22)" fg:x="500115" fg:w="129"/><text x="94.4869%" y="719.50"></text></g><g><title>unmap_page_range (127 samples, 0.02%)</title><rect x="94.2372%" y="693" width="0.0239%" height="15" fill="rgb(252,119,9)" fg:x="500117" fg:w="127"/><text x="94.4872%" y="703.50"></text></g><g><title>__do_munmap (528 samples, 0.10%)</title><rect x="94.1619%" y="741" width="0.0995%" height="15" fill="rgb(213,150,50)" fg:x="499717" fg:w="528"/><text x="94.4119%" y="751.50"></text></g><g><title>__vm_munmap (535 samples, 0.10%)</title><rect x="94.1617%" y="757" width="0.1008%" height="15" fill="rgb(212,24,39)" fg:x="499716" fg:w="535"/><text x="94.4117%" y="767.50"></text></g><g><title>__x64_sys_munmap (538 samples, 0.10%)</title><rect x="94.1617%" y="773" width="0.1014%" height="15" fill="rgb(213,46,39)" fg:x="499716" fg:w="538"/><text x="94.4117%" y="783.50"></text></g><g><title>do_filp_open (73 samples, 0.01%)</title><rect x="94.2640%" y="741" width="0.0138%" height="15" fill="rgb(239,106,12)" fg:x="500259" fg:w="73"/><text x="94.5140%" y="751.50"></text></g><g><title>path_openat (69 samples, 0.01%)</title><rect x="94.2647%" y="725" width="0.0130%" height="15" fill="rgb(249,229,21)" fg:x="500263" fg:w="69"/><text x="94.5147%" y="735.50"></text></g><g><title>__x64_sys_open (78 samples, 0.01%)</title><rect x="94.2634%" y="773" width="0.0147%" height="15" fill="rgb(212,158,3)" fg:x="500256" fg:w="78"/><text x="94.5134%" y="783.50"></text></g><g><title>do_sys_openat2 (77 samples, 0.01%)</title><rect x="94.2636%" y="757" width="0.0145%" height="15" fill="rgb(253,26,48)" fg:x="500257" fg:w="77"/><text x="94.5136%" y="767.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="94.3032%" y="725" width="0.0109%" height="15" fill="rgb(238,178,20)" fg:x="500467" fg:w="58"/><text x="94.5532%" y="735.50"></text></g><g><title>__alloc_fd (169 samples, 0.03%)</title><rect x="94.2896%" y="741" width="0.0318%" height="15" fill="rgb(208,86,15)" fg:x="500395" fg:w="169"/><text x="94.5396%" y="751.50"></text></g><g><title>build_open_flags (60 samples, 0.01%)</title><rect x="94.3290%" y="741" width="0.0113%" height="15" fill="rgb(239,42,53)" fg:x="500604" fg:w="60"/><text x="94.5790%" y="751.50"></text></g><g><title>___slab_alloc (164 samples, 0.03%)</title><rect x="94.4243%" y="645" width="0.0309%" height="15" fill="rgb(245,226,8)" fg:x="501110" fg:w="164"/><text x="94.6743%" y="655.50"></text></g><g><title>__slab_alloc (173 samples, 0.03%)</title><rect x="94.4228%" y="661" width="0.0326%" height="15" fill="rgb(216,176,32)" fg:x="501102" fg:w="173"/><text x="94.6728%" y="671.50"></text></g><g><title>__mod_memcg_lruvec_state (69 samples, 0.01%)</title><rect x="94.5114%" y="645" width="0.0130%" height="15" fill="rgb(231,186,21)" fg:x="501572" fg:w="69"/><text x="94.7614%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (384 samples, 0.07%)</title><rect x="94.4556%" y="661" width="0.0724%" height="15" fill="rgb(205,95,49)" fg:x="501276" fg:w="384"/><text x="94.7056%" y="671.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="94.5282%" y="661" width="0.0115%" height="15" fill="rgb(217,145,8)" fg:x="501661" fg:w="61"/><text x="94.7782%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (178 samples, 0.03%)</title><rect x="94.5500%" y="645" width="0.0335%" height="15" fill="rgb(239,144,48)" fg:x="501777" fg:w="178"/><text x="94.8000%" y="655.50"></text></g><g><title>obj_cgroup_charge (128 samples, 0.02%)</title><rect x="94.5836%" y="645" width="0.0241%" height="15" fill="rgb(214,189,23)" fg:x="501955" fg:w="128"/><text x="94.8336%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,139 samples, 0.21%)</title><rect x="94.3933%" y="677" width="0.2146%" height="15" fill="rgb(229,157,17)" fg:x="500945" fg:w="1139"/><text x="94.6433%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (361 samples, 0.07%)</title><rect x="94.5399%" y="661" width="0.0680%" height="15" fill="rgb(230,5,48)" fg:x="501723" fg:w="361"/><text x="94.7899%" y="671.50"></text></g><g><title>apparmor_file_alloc_security (143 samples, 0.03%)</title><rect x="94.6122%" y="661" width="0.0269%" height="15" fill="rgb(224,156,48)" fg:x="502107" fg:w="143"/><text x="94.8622%" y="671.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="94.6569%" y="645" width="0.0109%" height="15" fill="rgb(223,14,29)" fg:x="502344" fg:w="58"/><text x="94.9069%" y="655.50"></text></g><g><title>__alloc_file (1,591 samples, 0.30%)</title><rect x="94.3735%" y="693" width="0.2998%" height="15" fill="rgb(229,96,36)" fg:x="500840" fg:w="1591"/><text x="94.6235%" y="703.50"></text></g><g><title>security_file_alloc (347 samples, 0.07%)</title><rect x="94.6079%" y="677" width="0.0654%" height="15" fill="rgb(231,102,53)" fg:x="502084" fg:w="347"/><text x="94.8579%" y="687.50"></text></g><g><title>kmem_cache_alloc (181 samples, 0.03%)</title><rect x="94.6392%" y="661" width="0.0341%" height="15" fill="rgb(210,77,38)" fg:x="502250" fg:w="181"/><text x="94.8892%" y="671.50"></text></g><g><title>alloc_empty_file (1,641 samples, 0.31%)</title><rect x="94.3671%" y="709" width="0.3092%" height="15" fill="rgb(235,131,6)" fg:x="500806" fg:w="1641"/><text x="94.6171%" y="719.50"></text></g><g><title>__legitimize_mnt (73 samples, 0.01%)</title><rect x="94.6836%" y="661" width="0.0138%" height="15" fill="rgb(252,55,38)" fg:x="502486" fg:w="73"/><text x="94.9336%" y="671.50"></text></g><g><title>__legitimize_path (169 samples, 0.03%)</title><rect x="94.6802%" y="677" width="0.0318%" height="15" fill="rgb(246,38,14)" fg:x="502468" fg:w="169"/><text x="94.9302%" y="687.50"></text></g><g><title>lockref_get_not_dead (78 samples, 0.01%)</title><rect x="94.6974%" y="661" width="0.0147%" height="15" fill="rgb(242,27,5)" fg:x="502559" fg:w="78"/><text x="94.9474%" y="671.50"></text></g><g><title>complete_walk (204 samples, 0.04%)</title><rect x="94.6763%" y="709" width="0.0384%" height="15" fill="rgb(228,65,35)" fg:x="502447" fg:w="204"/><text x="94.9263%" y="719.50"></text></g><g><title>try_to_unlazy (194 samples, 0.04%)</title><rect x="94.6782%" y="693" width="0.0366%" height="15" fill="rgb(245,93,11)" fg:x="502457" fg:w="194"/><text x="94.9282%" y="703.50"></text></g><g><title>errseq_sample (84 samples, 0.02%)</title><rect x="94.7620%" y="693" width="0.0158%" height="15" fill="rgb(213,1,31)" fg:x="502902" fg:w="84"/><text x="95.0120%" y="703.50"></text></g><g><title>lockref_get (75 samples, 0.01%)</title><rect x="94.7818%" y="693" width="0.0141%" height="15" fill="rgb(237,205,14)" fg:x="503007" fg:w="75"/><text x="95.0318%" y="703.50"></text></g><g><title>apparmor_file_open (131 samples, 0.02%)</title><rect x="94.8040%" y="677" width="0.0247%" height="15" fill="rgb(232,118,45)" fg:x="503125" fg:w="131"/><text x="95.0540%" y="687.50"></text></g><g><title>__srcu_read_lock (72 samples, 0.01%)</title><rect x="94.8453%" y="661" width="0.0136%" height="15" fill="rgb(218,5,6)" fg:x="503344" fg:w="72"/><text x="95.0953%" y="671.50"></text></g><g><title>__srcu_read_unlock (63 samples, 0.01%)</title><rect x="94.8589%" y="661" width="0.0119%" height="15" fill="rgb(251,87,51)" fg:x="503416" fg:w="63"/><text x="95.1089%" y="671.50"></text></g><g><title>tomoyo_check_open_permission (297 samples, 0.06%)</title><rect x="94.8289%" y="677" width="0.0560%" height="15" fill="rgb(207,225,20)" fg:x="503257" fg:w="297"/><text x="95.0789%" y="687.50"></text></g><g><title>security_file_open (467 samples, 0.09%)</title><rect x="94.7988%" y="693" width="0.0880%" height="15" fill="rgb(222,78,54)" fg:x="503097" fg:w="467"/><text x="95.0488%" y="703.50"></text></g><g><title>do_dentry_open (914 samples, 0.17%)</title><rect x="94.7151%" y="709" width="0.1722%" height="15" fill="rgb(232,85,16)" fg:x="502653" fg:w="914"/><text x="94.9651%" y="719.50"></text></g><g><title>inode_permission.part.0 (233 samples, 0.04%)</title><rect x="94.9463%" y="693" width="0.0439%" height="15" fill="rgb(244,25,33)" fg:x="503880" fg:w="233"/><text x="95.1963%" y="703.50"></text></g><g><title>generic_permission (84 samples, 0.02%)</title><rect x="94.9744%" y="677" width="0.0158%" height="15" fill="rgb(233,24,36)" fg:x="504029" fg:w="84"/><text x="95.2244%" y="687.50"></text></g><g><title>lookup_fast (378 samples, 0.07%)</title><rect x="95.0100%" y="677" width="0.0712%" height="15" fill="rgb(253,49,54)" fg:x="504218" fg:w="378"/><text x="95.2600%" y="687.50"></text></g><g><title>__d_lookup_rcu (300 samples, 0.06%)</title><rect x="95.0247%" y="661" width="0.0565%" height="15" fill="rgb(245,12,22)" fg:x="504296" fg:w="300"/><text x="95.2747%" y="671.50"></text></g><g><title>link_path_walk.part.0 (1,094 samples, 0.21%)</title><rect x="94.8920%" y="709" width="0.2061%" height="15" fill="rgb(253,141,28)" fg:x="503592" fg:w="1094"/><text x="95.1420%" y="719.50"></text></g><g><title>walk_component (536 samples, 0.10%)</title><rect x="94.9972%" y="693" width="0.1010%" height="15" fill="rgb(225,207,27)" fg:x="504150" fg:w="536"/><text x="95.2472%" y="703.50"></text></g><g><title>step_into (90 samples, 0.02%)</title><rect x="95.0812%" y="677" width="0.0170%" height="15" fill="rgb(220,84,2)" fg:x="504596" fg:w="90"/><text x="95.3312%" y="687.50"></text></g><g><title>lookup_fast (586 samples, 0.11%)</title><rect x="95.0982%" y="709" width="0.1104%" height="15" fill="rgb(224,37,37)" fg:x="504686" fg:w="586"/><text x="95.3482%" y="719.50"></text></g><g><title>__d_lookup_rcu (557 samples, 0.10%)</title><rect x="95.1036%" y="693" width="0.1050%" height="15" fill="rgb(220,143,18)" fg:x="504715" fg:w="557"/><text x="95.3536%" y="703.50"></text></g><g><title>inode_permission.part.0 (157 samples, 0.03%)</title><rect x="95.2344%" y="693" width="0.0296%" height="15" fill="rgb(210,88,33)" fg:x="505409" fg:w="157"/><text x="95.4844%" y="703.50"></text></g><g><title>may_open (305 samples, 0.06%)</title><rect x="95.2086%" y="709" width="0.0575%" height="15" fill="rgb(219,87,51)" fg:x="505272" fg:w="305"/><text x="95.4586%" y="719.50"></text></g><g><title>__fget_light (140 samples, 0.03%)</title><rect x="95.2762%" y="693" width="0.0264%" height="15" fill="rgb(211,7,35)" fg:x="505631" fg:w="140"/><text x="95.5262%" y="703.50"></text></g><g><title>__fget_files (130 samples, 0.02%)</title><rect x="95.2781%" y="677" width="0.0245%" height="15" fill="rgb(232,77,2)" fg:x="505641" fg:w="130"/><text x="95.5281%" y="687.50"></text></g><g><title>path_init (256 samples, 0.05%)</title><rect x="95.2661%" y="709" width="0.0482%" height="15" fill="rgb(249,94,25)" fg:x="505577" fg:w="256"/><text x="95.5161%" y="719.50"></text></g><g><title>fput_many (61 samples, 0.01%)</title><rect x="95.3028%" y="693" width="0.0115%" height="15" fill="rgb(215,112,2)" fg:x="505772" fg:w="61"/><text x="95.5528%" y="703.50"></text></g><g><title>dput (94 samples, 0.02%)</title><rect x="95.3232%" y="693" width="0.0177%" height="15" fill="rgb(226,115,48)" fg:x="505880" fg:w="94"/><text x="95.5732%" y="703.50"></text></g><g><title>lockref_put_or_lock (61 samples, 0.01%)</title><rect x="95.3294%" y="677" width="0.0115%" height="15" fill="rgb(249,196,10)" fg:x="505913" fg:w="61"/><text x="95.5794%" y="687.50"></text></g><g><title>terminate_walk (132 samples, 0.02%)</title><rect x="95.3200%" y="709" width="0.0249%" height="15" fill="rgb(237,109,14)" fg:x="505863" fg:w="132"/><text x="95.5700%" y="719.50"></text></g><g><title>do_filp_open (5,340 samples, 1.01%)</title><rect x="94.3403%" y="741" width="1.0062%" height="15" fill="rgb(217,103,53)" fg:x="500664" fg:w="5340"/><text x="94.5903%" y="751.50"></text></g><g><title>path_openat (5,283 samples, 1.00%)</title><rect x="94.3510%" y="725" width="0.9955%" height="15" fill="rgb(244,137,9)" fg:x="500721" fg:w="5283"/><text x="94.6010%" y="735.50"></text></g><g><title>memset_erms (508 samples, 0.10%)</title><rect x="95.3921%" y="709" width="0.0957%" height="15" fill="rgb(227,201,3)" fg:x="506246" fg:w="508"/><text x="95.6421%" y="719.50"></text></g><g><title>kmem_cache_alloc (709 samples, 0.13%)</title><rect x="95.3652%" y="725" width="0.1336%" height="15" fill="rgb(243,94,6)" fg:x="506103" fg:w="709"/><text x="95.6152%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (58 samples, 0.01%)</title><rect x="95.4878%" y="709" width="0.0109%" height="15" fill="rgb(235,118,5)" fg:x="506754" fg:w="58"/><text x="95.7378%" y="719.50"></text></g><g><title>__check_heap_object (87 samples, 0.02%)</title><rect x="95.5561%" y="693" width="0.0164%" height="15" fill="rgb(247,10,30)" fg:x="507116" fg:w="87"/><text x="95.8061%" y="703.50"></text></g><g><title>__virt_addr_valid (122 samples, 0.02%)</title><rect x="95.5725%" y="693" width="0.0230%" height="15" fill="rgb(205,26,28)" fg:x="507203" fg:w="122"/><text x="95.8225%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,272 samples, 0.24%)</title><rect x="95.3569%" y="741" width="0.2397%" height="15" fill="rgb(206,99,35)" fg:x="506059" fg:w="1272"/><text x="95.6069%" y="751.50"></text></g><g><title>strncpy_from_user (519 samples, 0.10%)</title><rect x="95.4988%" y="725" width="0.0978%" height="15" fill="rgb(238,130,40)" fg:x="506812" fg:w="519"/><text x="95.7488%" y="735.50"></text></g><g><title>__check_object_size (256 samples, 0.05%)</title><rect x="95.5483%" y="709" width="0.0482%" height="15" fill="rgb(224,126,31)" fg:x="507075" fg:w="256"/><text x="95.7983%" y="719.50"></text></g><g><title>kmem_cache_free (132 samples, 0.02%)</title><rect x="95.5966%" y="741" width="0.0249%" height="15" fill="rgb(254,105,17)" fg:x="507331" fg:w="132"/><text x="95.8466%" y="751.50"></text></g><g><title>__x64_sys_openat (7,137 samples, 1.34%)</title><rect x="94.2781%" y="773" width="1.3448%" height="15" fill="rgb(216,87,36)" fg:x="500334" fg:w="7137"/><text x="94.5281%" y="783.50"></text></g><g><title>do_sys_openat2 (7,108 samples, 1.34%)</title><rect x="94.2836%" y="757" width="1.3394%" height="15" fill="rgb(240,21,12)" fg:x="500363" fg:w="7108"/><text x="94.5336%" y="767.50"></text></g><g><title>__fget_light (669 samples, 0.13%)</title><rect x="95.7424%" y="741" width="0.1261%" height="15" fill="rgb(245,192,34)" fg:x="508105" fg:w="669"/><text x="95.9924%" y="751.50"></text></g><g><title>__fget_files (616 samples, 0.12%)</title><rect x="95.7524%" y="725" width="0.1161%" height="15" fill="rgb(226,100,49)" fg:x="508158" fg:w="616"/><text x="96.0024%" y="735.50"></text></g><g><title>_cond_resched (87 samples, 0.02%)</title><rect x="95.9229%" y="725" width="0.0164%" height="15" fill="rgb(245,188,27)" fg:x="509063" fg:w="87"/><text x="96.1729%" y="735.50"></text></g><g><title>__fdget_pos (1,271 samples, 0.24%)</title><rect x="95.7011%" y="757" width="0.2395%" height="15" fill="rgb(212,170,8)" fg:x="507886" fg:w="1271"/><text x="95.9511%" y="767.50"></text></g><g><title>mutex_lock (383 samples, 0.07%)</title><rect x="95.8685%" y="741" width="0.0722%" height="15" fill="rgb(217,113,29)" fg:x="508774" fg:w="383"/><text x="96.1185%" y="751.50"></text></g><g><title>fput_many (284 samples, 0.05%)</title><rect x="95.9425%" y="757" width="0.0535%" height="15" fill="rgb(237,30,3)" fg:x="509167" fg:w="284"/><text x="96.1925%" y="767.50"></text></g><g><title>mutex_unlock (359 samples, 0.07%)</title><rect x="95.9960%" y="757" width="0.0676%" height="15" fill="rgb(227,19,28)" fg:x="509451" fg:w="359"/><text x="96.2460%" y="767.50"></text></g><g><title>__fsnotify_parent (451 samples, 0.08%)</title><rect x="96.1658%" y="741" width="0.0850%" height="15" fill="rgb(239,172,45)" fg:x="510352" fg:w="451"/><text x="96.4158%" y="751.50"></text></g><g><title>btrfs_file_read_iter (97 samples, 0.02%)</title><rect x="96.3168%" y="725" width="0.0183%" height="15" fill="rgb(254,55,39)" fg:x="511153" fg:w="97"/><text x="96.5668%" y="735.50"></text></g><g><title>_cond_resched (90 samples, 0.02%)</title><rect x="96.5448%" y="709" width="0.0170%" height="15" fill="rgb(249,208,12)" fg:x="512363" fg:w="90"/><text x="96.7948%" y="719.50"></text></g><g><title>handle_mm_fault (60 samples, 0.01%)</title><rect x="97.3561%" y="629" width="0.0113%" height="15" fill="rgb(240,52,13)" fg:x="516669" fg:w="60"/><text x="97.6061%" y="639.50"></text></g><g><title>asm_exc_page_fault (186 samples, 0.04%)</title><rect x="97.3326%" y="677" width="0.0350%" height="15" fill="rgb(252,149,13)" fg:x="516544" fg:w="186"/><text x="97.5826%" y="687.50"></text></g><g><title>exc_page_fault (65 samples, 0.01%)</title><rect x="97.3554%" y="661" width="0.0122%" height="15" fill="rgb(232,81,48)" fg:x="516665" fg:w="65"/><text x="97.6054%" y="671.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.01%)</title><rect x="97.3556%" y="645" width="0.0121%" height="15" fill="rgb(222,144,2)" fg:x="516666" fg:w="64"/><text x="97.6056%" y="655.50"></text></g><g><title>copy_user_enhanced_fast_string (3,755 samples, 0.71%)</title><rect x="96.6631%" y="693" width="0.7076%" height="15" fill="rgb(216,81,32)" fg:x="512991" fg:w="3755"/><text x="96.9131%" y="703.50"></text></g><g><title>copy_page_to_iter (4,323 samples, 0.81%)</title><rect x="96.5627%" y="709" width="0.8146%" height="15" fill="rgb(244,78,51)" fg:x="512458" fg:w="4323"/><text x="96.8127%" y="719.50"></text></g><g><title>pagecache_get_page (1,758 samples, 0.33%)</title><rect x="97.3852%" y="709" width="0.3313%" height="15" fill="rgb(217,66,21)" fg:x="516823" fg:w="1758"/><text x="97.6352%" y="719.50"></text></g><g><title>find_get_entry (1,508 samples, 0.28%)</title><rect x="97.4323%" y="693" width="0.2842%" height="15" fill="rgb(247,101,42)" fg:x="517073" fg:w="1508"/><text x="97.6823%" y="703.50"></text></g><g><title>xas_load (383 samples, 0.07%)</title><rect x="97.6442%" y="677" width="0.0722%" height="15" fill="rgb(227,81,39)" fg:x="518198" fg:w="383"/><text x="97.8942%" y="687.50"></text></g><g><title>xas_start (230 samples, 0.04%)</title><rect x="97.6731%" y="661" width="0.0433%" height="15" fill="rgb(220,223,44)" fg:x="518351" fg:w="230"/><text x="97.9231%" y="671.50"></text></g><g><title>atime_needs_update (466 samples, 0.09%)</title><rect x="97.7360%" y="693" width="0.0878%" height="15" fill="rgb(205,218,2)" fg:x="518685" fg:w="466"/><text x="97.9860%" y="703.50"></text></g><g><title>current_time (267 samples, 0.05%)</title><rect x="97.7735%" y="677" width="0.0503%" height="15" fill="rgb(212,207,28)" fg:x="518884" fg:w="267"/><text x="98.0235%" y="687.50"></text></g><g><title>ktime_get_coarse_real_ts64 (77 samples, 0.01%)</title><rect x="97.8093%" y="661" width="0.0145%" height="15" fill="rgb(224,12,41)" fg:x="519074" fg:w="77"/><text x="98.0593%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (93 samples, 0.02%)</title><rect x="97.8297%" y="661" width="0.0175%" height="15" fill="rgb(216,118,12)" fg:x="519182" fg:w="93"/><text x="98.0797%" y="671.50"></text></g><g><title>btrfs_update_inode (110 samples, 0.02%)</title><rect x="97.8293%" y="677" width="0.0207%" height="15" fill="rgb(252,97,46)" fg:x="519180" fg:w="110"/><text x="98.0793%" y="687.50"></text></g><g><title>btrfs_dirty_inode (167 samples, 0.03%)</title><rect x="97.8238%" y="693" width="0.0315%" height="15" fill="rgb(244,206,19)" fg:x="519151" fg:w="167"/><text x="98.0738%" y="703.50"></text></g><g><title>generic_file_buffered_read (8,069 samples, 1.52%)</title><rect x="96.3350%" y="725" width="1.5204%" height="15" fill="rgb(231,84,31)" fg:x="511250" fg:w="8069"/><text x="96.5850%" y="735.50"></text></g><g><title>touch_atime (738 samples, 0.14%)</title><rect x="97.7164%" y="709" width="0.1391%" height="15" fill="rgb(244,133,0)" fg:x="518581" fg:w="738"/><text x="97.9664%" y="719.50"></text></g><g><title>new_sync_read (8,562 samples, 1.61%)</title><rect x="96.2525%" y="741" width="1.6133%" height="15" fill="rgb(223,15,50)" fg:x="510812" fg:w="8562"/><text x="96.5025%" y="751.50"></text></g><g><title>iov_iter_init (55 samples, 0.01%)</title><rect x="97.8555%" y="725" width="0.0104%" height="15" fill="rgb(250,118,49)" fg:x="519319" fg:w="55"/><text x="98.1055%" y="735.50"></text></g><g><title>rw_verify_area (100 samples, 0.02%)</title><rect x="97.8658%" y="741" width="0.0188%" height="15" fill="rgb(248,25,38)" fg:x="519374" fg:w="100"/><text x="98.1158%" y="751.50"></text></g><g><title>aa_file_perm (153 samples, 0.03%)</title><rect x="97.9478%" y="709" width="0.0288%" height="15" fill="rgb(215,70,14)" fg:x="519809" fg:w="153"/><text x="98.1978%" y="719.50"></text></g><g><title>security_file_permission (490 samples, 0.09%)</title><rect x="97.8847%" y="741" width="0.0923%" height="15" fill="rgb(215,28,15)" fg:x="519474" fg:w="490"/><text x="98.1347%" y="751.50"></text></g><g><title>apparmor_file_permission (318 samples, 0.06%)</title><rect x="97.9171%" y="725" width="0.0599%" height="15" fill="rgb(243,6,28)" fg:x="519646" fg:w="318"/><text x="98.1671%" y="735.50"></text></g><g><title>ksys_read (12,287 samples, 2.32%)</title><rect x="95.6621%" y="773" width="2.3152%" height="15" fill="rgb(222,130,1)" fg:x="507679" fg:w="12287"/><text x="95.9121%" y="783.50">k..</text></g><g><title>vfs_read (10,156 samples, 1.91%)</title><rect x="96.0637%" y="757" width="1.9137%" height="15" fill="rgb(236,166,44)" fg:x="509810" fg:w="10156"/><text x="96.3137%" y="767.50">v..</text></g><g><title>syscall_enter_from_user_mode (126 samples, 0.02%)</title><rect x="97.9783%" y="773" width="0.0237%" height="15" fill="rgb(221,108,14)" fg:x="519971" fg:w="126"/><text x="98.2283%" y="783.50"></text></g><g><title>perf_iterate_sb (60 samples, 0.01%)</title><rect x="98.0132%" y="709" width="0.0113%" height="15" fill="rgb(252,3,45)" fg:x="520156" fg:w="60"/><text x="98.2632%" y="719.50"></text></g><g><title>perf_event_mmap (72 samples, 0.01%)</title><rect x="98.0111%" y="725" width="0.0136%" height="15" fill="rgb(237,68,30)" fg:x="520145" fg:w="72"/><text x="98.2611%" y="735.50"></text></g><g><title>vma_merge (57 samples, 0.01%)</title><rect x="98.0275%" y="725" width="0.0107%" height="15" fill="rgb(211,79,22)" fg:x="520232" fg:w="57"/><text x="98.2775%" y="735.50"></text></g><g><title>do_mmap (191 samples, 0.04%)</title><rect x="98.0026%" y="757" width="0.0360%" height="15" fill="rgb(252,185,21)" fg:x="520100" fg:w="191"/><text x="98.2526%" y="767.50"></text></g><g><title>mmap_region (165 samples, 0.03%)</title><rect x="98.0075%" y="741" width="0.0311%" height="15" fill="rgb(225,189,26)" fg:x="520126" fg:w="165"/><text x="98.2575%" y="751.50"></text></g><g><title>do_syscall_64 (38,933 samples, 7.34%)</title><rect x="90.7155%" y="789" width="7.3362%" height="15" fill="rgb(241,30,40)" fg:x="481427" fg:w="38933"/><text x="90.9655%" y="799.50">do_syscall..</text></g><g><title>vm_mmap_pgoff (263 samples, 0.05%)</title><rect x="98.0021%" y="773" width="0.0496%" height="15" fill="rgb(235,215,44)" fg:x="520097" fg:w="263"/><text x="98.2521%" y="783.50"></text></g><g><title>do_group_exit (107 samples, 0.02%)</title><rect x="98.1274%" y="725" width="0.0202%" height="15" fill="rgb(205,8,29)" fg:x="520762" fg:w="107"/><text x="98.3774%" y="735.50"></text></g><g><title>do_exit (107 samples, 0.02%)</title><rect x="98.1274%" y="709" width="0.0202%" height="15" fill="rgb(241,137,42)" fg:x="520762" fg:w="107"/><text x="98.3774%" y="719.50"></text></g><g><title>arch_do_signal (151 samples, 0.03%)</title><rect x="98.1200%" y="757" width="0.0285%" height="15" fill="rgb(237,155,2)" fg:x="520723" fg:w="151"/><text x="98.3700%" y="767.50"></text></g><g><title>get_signal (151 samples, 0.03%)</title><rect x="98.1200%" y="741" width="0.0285%" height="15" fill="rgb(245,29,42)" fg:x="520723" fg:w="151"/><text x="98.3700%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (119 samples, 0.02%)</title><rect x="98.1523%" y="757" width="0.0224%" height="15" fill="rgb(234,101,35)" fg:x="520894" fg:w="119"/><text x="98.4023%" y="767.50"></text></g><g><title>switch_fpu_return (162 samples, 0.03%)</title><rect x="98.1862%" y="757" width="0.0305%" height="15" fill="rgb(228,64,37)" fg:x="521074" fg:w="162"/><text x="98.4362%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (112 samples, 0.02%)</title><rect x="98.1956%" y="741" width="0.0211%" height="15" fill="rgb(217,214,36)" fg:x="521124" fg:w="112"/><text x="98.4456%" y="751.50"></text></g><g><title>btrfs_release_file (146 samples, 0.03%)</title><rect x="98.2583%" y="725" width="0.0275%" height="15" fill="rgb(243,70,3)" fg:x="521457" fg:w="146"/><text x="98.5083%" y="735.50"></text></g><g><title>lockref_put_or_lock (74 samples, 0.01%)</title><rect x="98.2973%" y="709" width="0.0139%" height="15" fill="rgb(253,158,52)" fg:x="521664" fg:w="74"/><text x="98.5473%" y="719.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="98.3011%" y="693" width="0.0102%" height="15" fill="rgb(234,111,54)" fg:x="521684" fg:w="54"/><text x="98.5511%" y="703.50"></text></g><g><title>dput (140 samples, 0.03%)</title><rect x="98.2858%" y="725" width="0.0264%" height="15" fill="rgb(217,70,32)" fg:x="521603" fg:w="140"/><text x="98.5358%" y="735.50"></text></g><g><title>kmem_cache_free (144 samples, 0.03%)</title><rect x="98.3128%" y="725" width="0.0271%" height="15" fill="rgb(234,18,33)" fg:x="521746" fg:w="144"/><text x="98.5628%" y="735.50"></text></g><g><title>__fput (715 samples, 0.13%)</title><rect x="98.2310%" y="741" width="0.1347%" height="15" fill="rgb(234,12,49)" fg:x="521312" fg:w="715"/><text x="98.4810%" y="751.50"></text></g><g><title>security_file_free (65 samples, 0.01%)</title><rect x="98.3535%" y="725" width="0.0122%" height="15" fill="rgb(236,10,21)" fg:x="521962" fg:w="65"/><text x="98.6035%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41,222 samples, 7.77%)</title><rect x="90.6518%" y="805" width="7.7675%" height="15" fill="rgb(248,182,45)" fg:x="481089" fg:w="41222"/><text x="90.9018%" y="815.50">entry_SYSCA..</text></g><g><title>syscall_exit_to_user_mode (1,951 samples, 0.37%)</title><rect x="98.0516%" y="789" width="0.3676%" height="15" fill="rgb(217,95,36)" fg:x="520360" fg:w="1951"/><text x="98.3016%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (1,817 samples, 0.34%)</title><rect x="98.0769%" y="773" width="0.3424%" height="15" fill="rgb(212,110,31)" fg:x="520494" fg:w="1817"/><text x="98.3269%" y="783.50"></text></g><g><title>task_work_run (1,075 samples, 0.20%)</title><rect x="98.2167%" y="757" width="0.2026%" height="15" fill="rgb(206,32,53)" fg:x="521236" fg:w="1075"/><text x="98.4667%" y="767.50"></text></g><g><title>call_rcu (230 samples, 0.04%)</title><rect x="98.3759%" y="741" width="0.0433%" height="15" fill="rgb(246,141,37)" fg:x="522081" fg:w="230"/><text x="98.6259%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (133 samples, 0.03%)</title><rect x="98.3942%" y="725" width="0.0251%" height="15" fill="rgb(219,16,7)" fg:x="522178" fg:w="133"/><text x="98.6442%" y="735.50"></text></g><g><title>error_entry (209 samples, 0.04%)</title><rect x="98.4193%" y="805" width="0.0394%" height="15" fill="rgb(230,205,45)" fg:x="522311" fg:w="209"/><text x="98.6693%" y="815.50"></text></g><g><title>sync_regs (184 samples, 0.03%)</title><rect x="98.4240%" y="789" width="0.0347%" height="15" fill="rgb(231,43,49)" fg:x="522336" fg:w="184"/><text x="98.6740%" y="799.50"></text></g><g><title>calculate_sigpending (56 samples, 0.01%)</title><rect x="98.4650%" y="789" width="0.0106%" height="15" fill="rgb(212,106,34)" fg:x="522554" fg:w="56"/><text x="98.7150%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (5,004 samples, 0.94%)</title><rect x="98.5506%" y="757" width="0.9429%" height="15" fill="rgb(206,83,17)" fg:x="523008" fg:w="5004"/><text x="98.8006%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,932 samples, 0.93%)</title><rect x="98.5642%" y="741" width="0.9293%" height="15" fill="rgb(244,154,49)" fg:x="523080" fg:w="4932"/><text x="98.8142%" y="751.50"></text></g><g><title>native_write_msr (4,920 samples, 0.93%)</title><rect x="98.5664%" y="725" width="0.9271%" height="15" fill="rgb(244,149,49)" fg:x="523092" fg:w="4920"/><text x="98.8164%" y="735.50"></text></g><g><title>irq_work_run (54 samples, 0.01%)</title><rect x="99.5039%" y="693" width="0.0102%" height="15" fill="rgb(227,134,18)" fg:x="528067" fg:w="54"/><text x="99.7539%" y="703.50"></text></g><g><title>asm_call_sysvec_on_stack (59 samples, 0.01%)</title><rect x="99.5033%" y="725" width="0.0111%" height="15" fill="rgb(237,116,36)" fg:x="528064" fg:w="59"/><text x="99.7533%" y="735.50"></text></g><g><title>__sysvec_irq_work (56 samples, 0.01%)</title><rect x="99.5039%" y="709" width="0.0106%" height="15" fill="rgb(205,129,40)" fg:x="528067" fg:w="56"/><text x="99.7539%" y="719.50"></text></g><g><title>asm_sysvec_irq_work (108 samples, 0.02%)</title><rect x="99.4948%" y="757" width="0.0204%" height="15" fill="rgb(236,178,4)" fg:x="528019" fg:w="108"/><text x="99.7448%" y="767.50"></text></g><g><title>sysvec_irq_work (67 samples, 0.01%)</title><rect x="99.5025%" y="741" width="0.0126%" height="15" fill="rgb(251,76,53)" fg:x="528060" fg:w="67"/><text x="99.7525%" y="751.50"></text></g><g><title>schedule_tail (5,532 samples, 1.04%)</title><rect x="98.4756%" y="789" width="1.0424%" height="15" fill="rgb(242,92,40)" fg:x="522610" fg:w="5532"/><text x="98.7256%" y="799.50"></text></g><g><title>finish_task_switch (5,482 samples, 1.03%)</title><rect x="98.4850%" y="773" width="1.0330%" height="15" fill="rgb(209,45,30)" fg:x="522660" fg:w="5482"/><text x="98.7350%" y="783.50"></text></g><g><title>ret_from_fork (5,646 samples, 1.06%)</title><rect x="98.4649%" y="805" width="1.0639%" height="15" fill="rgb(218,157,36)" fg:x="522553" fg:w="5646"/><text x="98.7149%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (57 samples, 0.01%)</title><rect x="99.5180%" y="789" width="0.0107%" height="15" fill="rgb(222,186,16)" fg:x="528142" fg:w="57"/><text x="99.7680%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (55 samples, 0.01%)</title><rect x="99.5184%" y="773" width="0.0104%" height="15" fill="rgb(254,72,35)" fg:x="528144" fg:w="55"/><text x="99.7684%" y="783.50"></text></g><g><title>switch_fpu_return (54 samples, 0.01%)</title><rect x="99.5186%" y="757" width="0.0102%" height="15" fill="rgb(224,25,35)" fg:x="528145" fg:w="54"/><text x="99.7686%" y="767.50"></text></g><g><title>syscall_return_via_sysret (331 samples, 0.06%)</title><rect x="99.5287%" y="805" width="0.0624%" height="15" fill="rgb(206,135,52)" fg:x="528199" fg:w="331"/><text x="99.7787%" y="815.50"></text></g><g><title>[zig] (77,821 samples, 14.66%)</title><rect x="84.9275%" y="821" width="14.6638%" height="15" fill="rgb(229,174,47)" fg:x="450710" fg:w="77821"/><text x="85.1775%" y="831.50">[zig]</text></g><g><title>asm_exc_page_fault (530 samples, 0.10%)</title><rect x="99.5917%" y="821" width="0.0999%" height="15" fill="rgb(242,184,21)" fg:x="528533" fg:w="530"/><text x="99.8417%" y="831.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.01%)</title><rect x="99.7290%" y="677" width="0.0102%" height="15" fill="rgb(213,22,45)" fg:x="529262" fg:w="54"/><text x="99.9790%" y="687.50"></text></g><g><title>page_remove_rmap (55 samples, 0.01%)</title><rect x="99.7656%" y="645" width="0.0104%" height="15" fill="rgb(237,81,54)" fg:x="529456" fg:w="55"/><text x="100.0156%" y="655.50"></text></g><g><title>exit_mmap (272 samples, 0.05%)</title><rect x="99.7268%" y="693" width="0.0513%" height="15" fill="rgb(248,177,18)" fg:x="529250" fg:w="272"/><text x="99.9768%" y="703.50"></text></g><g><title>unmap_vmas (206 samples, 0.04%)</title><rect x="99.7392%" y="677" width="0.0388%" height="15" fill="rgb(254,31,16)" fg:x="529316" fg:w="206"/><text x="99.9892%" y="687.50"></text></g><g><title>unmap_page_range (206 samples, 0.04%)</title><rect x="99.7392%" y="661" width="0.0388%" height="15" fill="rgb(235,20,31)" fg:x="529316" fg:w="206"/><text x="99.9892%" y="671.50"></text></g><g><title>mmput (276 samples, 0.05%)</title><rect x="99.7262%" y="709" width="0.0520%" height="15" fill="rgb(240,56,43)" fg:x="529247" fg:w="276"/><text x="99.9762%" y="719.50"></text></g><g><title>begin_new_exec (283 samples, 0.05%)</title><rect x="99.7251%" y="725" width="0.0533%" height="15" fill="rgb(237,197,51)" fg:x="529241" fg:w="283"/><text x="99.9751%" y="735.50"></text></g><g><title>load_elf_binary (327 samples, 0.06%)</title><rect x="99.7232%" y="741" width="0.0616%" height="15" fill="rgb(241,162,44)" fg:x="529231" fg:w="327"/><text x="99.9732%" y="751.50"></text></g><g><title>bprm_execve (328 samples, 0.06%)</title><rect x="99.7232%" y="757" width="0.0618%" height="15" fill="rgb(224,23,20)" fg:x="529231" fg:w="328"/><text x="99.9732%" y="767.50"></text></g><g><title>__x64_sys_execve (331 samples, 0.06%)</title><rect x="99.7228%" y="789" width="0.0624%" height="15" fill="rgb(250,109,34)" fg:x="529229" fg:w="331"/><text x="99.9728%" y="799.50"></text></g><g><title>do_execveat_common (331 samples, 0.06%)</title><rect x="99.7228%" y="773" width="0.0624%" height="15" fill="rgb(214,175,50)" fg:x="529229" fg:w="331"/><text x="99.9728%" y="783.50"></text></g><g><title>tlb_finish_mmu (83 samples, 0.02%)</title><rect x="99.7899%" y="709" width="0.0156%" height="15" fill="rgb(213,182,5)" fg:x="529585" fg:w="83"/><text x="100.0399%" y="719.50"></text></g><g><title>release_pages (60 samples, 0.01%)</title><rect x="99.7942%" y="693" width="0.0113%" height="15" fill="rgb(209,199,19)" fg:x="529608" fg:w="60"/><text x="100.0442%" y="703.50"></text></g><g><title>page_remove_rmap (101 samples, 0.02%)</title><rect x="99.8451%" y="677" width="0.0190%" height="15" fill="rgb(236,224,42)" fg:x="529878" fg:w="101"/><text x="100.0951%" y="687.50"></text></g><g><title>unmap_page_range (342 samples, 0.06%)</title><rect x="99.8057%" y="693" width="0.0644%" height="15" fill="rgb(246,226,29)" fg:x="529669" fg:w="342"/><text x="100.0557%" y="703.50"></text></g><g><title>mmput (433 samples, 0.08%)</title><rect x="99.7888%" y="741" width="0.0816%" height="15" fill="rgb(227,223,11)" fg:x="529579" fg:w="433"/><text x="100.0388%" y="751.50"></text></g><g><title>exit_mmap (432 samples, 0.08%)</title><rect x="99.7890%" y="725" width="0.0814%" height="15" fill="rgb(219,7,51)" fg:x="529580" fg:w="432"/><text x="100.0390%" y="735.50"></text></g><g><title>unmap_vmas (344 samples, 0.06%)</title><rect x="99.8055%" y="709" width="0.0648%" height="15" fill="rgb(245,167,10)" fg:x="529668" fg:w="344"/><text x="100.0555%" y="719.50"></text></g><g><title>__x64_sys_exit_group (452 samples, 0.09%)</title><rect x="99.7856%" y="789" width="0.0852%" height="15" fill="rgb(237,224,16)" fg:x="529562" fg:w="452"/><text x="100.0356%" y="799.50"></text></g><g><title>do_group_exit (452 samples, 0.09%)</title><rect x="99.7856%" y="773" width="0.0852%" height="15" fill="rgb(226,132,13)" fg:x="529562" fg:w="452"/><text x="100.0356%" y="783.50"></text></g><g><title>do_exit (452 samples, 0.09%)</title><rect x="99.7856%" y="757" width="0.0852%" height="15" fill="rgb(214,140,3)" fg:x="529562" fg:w="452"/><text x="100.0356%" y="767.50"></text></g><g><title>do_syscall_64 (803 samples, 0.15%)</title><rect x="99.7226%" y="805" width="0.1513%" height="15" fill="rgb(221,177,4)" fg:x="529228" fg:w="803"/><text x="99.9726%" y="815.50"></text></g><g><title>page_remove_rmap (94 samples, 0.02%)</title><rect x="99.9226%" y="645" width="0.0177%" height="15" fill="rgb(238,139,3)" fg:x="530289" fg:w="94"/><text x="100.1726%" y="655.50"></text></g><g><title>mmput (290 samples, 0.05%)</title><rect x="99.8879%" y="709" width="0.0546%" height="15" fill="rgb(216,17,39)" fg:x="530105" fg:w="290"/><text x="100.1379%" y="719.50"></text></g><g><title>exit_mmap (290 samples, 0.05%)</title><rect x="99.8879%" y="693" width="0.0546%" height="15" fill="rgb(238,120,9)" fg:x="530105" fg:w="290"/><text x="100.1379%" y="703.50"></text></g><g><title>unmap_vmas (243 samples, 0.05%)</title><rect x="99.8967%" y="677" width="0.0458%" height="15" fill="rgb(244,92,53)" fg:x="530152" fg:w="243"/><text x="100.1467%" y="687.50"></text></g><g><title>unmap_page_range (243 samples, 0.05%)</title><rect x="99.8967%" y="661" width="0.0458%" height="15" fill="rgb(224,148,33)" fg:x="530152" fg:w="243"/><text x="100.1467%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,352 samples, 0.25%)</title><rect x="99.6919%" y="821" width="0.2548%" height="15" fill="rgb(243,6,36)" fg:x="529065" fg:w="1352"/><text x="99.9419%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (386 samples, 0.07%)</title><rect x="99.8739%" y="805" width="0.0727%" height="15" fill="rgb(230,102,11)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (386 samples, 0.07%)</title><rect x="99.8739%" y="789" width="0.0727%" height="15" fill="rgb(234,148,36)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="799.50"></text></g><g><title>arch_do_signal (386 samples, 0.07%)</title><rect x="99.8739%" y="773" width="0.0727%" height="15" fill="rgb(251,153,25)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="783.50"></text></g><g><title>get_signal (386 samples, 0.07%)</title><rect x="99.8739%" y="757" width="0.0727%" height="15" fill="rgb(215,129,8)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="767.50"></text></g><g><title>do_group_exit (386 samples, 0.07%)</title><rect x="99.8739%" y="741" width="0.0727%" height="15" fill="rgb(224,128,35)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="751.50"></text></g><g><title>do_exit (386 samples, 0.07%)</title><rect x="99.8739%" y="725" width="0.0727%" height="15" fill="rgb(237,56,52)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="735.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (219 samples, 0.04%)</title><rect x="99.9467%" y="821" width="0.0413%" height="15" fill="rgb(234,213,19)" fg:x="530417" fg:w="219"/><text x="100.1967%" y="831.50"></text></g><g><title>all (530,700 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(252,82,23)" fg:x="0" fg:w="530700"/><text x="0.2500%" y="863.50"></text></g><g><title>zig (79,990 samples, 15.07%)</title><rect x="84.9275%" y="837" width="15.0725%" height="15" fill="rgb(254,201,21)" fg:x="450710" fg:w="79990"/><text x="85.1775%" y="847.50">zig</text></g></svg></svg> |