491 lines
1.0 MiB
491 lines
1.0 MiB
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="918" onload="init(evt)" viewBox="0 0 1200 918" 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="918" 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="901.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="901.00"> </text><svg id="frames" x="10" width="1180" total_samples="362261"><g><title>_dl_update_slotinfo (133 samples, 0.04%)</title><rect x="0.3034%" y="821" width="0.0367%" height="15" fill="rgb(227,0,7)" fg:x="1099" fg:w="133"/><text x="0.5534%" y="831.50"></text></g><g><title>update_get_addr (38 samples, 0.01%)</title><rect x="0.3903%" y="821" width="0.0105%" height="15" fill="rgb(217,0,24)" fg:x="1414" fg:w="38"/><text x="0.6403%" y="831.50"></text></g><g><title>[anon] (1,341 samples, 0.37%)</title><rect x="0.0312%" y="837" width="0.3702%" height="15" fill="rgb(221,193,54)" fg:x="113" fg:w="1341"/><text x="0.2812%" y="847.50"></text></g><g><title>[perf-985085.map] (136 samples, 0.04%)</title><rect x="0.4014%" y="837" width="0.0375%" height="15" fill="rgb(248,212,6)" fg:x="1454" fg:w="136"/><text x="0.6514%" y="847.50"></text></g><g><title>[unknown] (89 samples, 0.02%)</title><rect x="0.4389%" y="837" width="0.0246%" height="15" fill="rgb(208,68,35)" fg:x="1590" fg:w="89"/><text x="0.6889%" y="847.50"></text></g><g><title>jio_vsnprintf (58 samples, 0.02%)</title><rect x="0.4836%" y="693" width="0.0160%" height="15" fill="rgb(232,128,0)" fg:x="1752" fg:w="58"/><text x="0.7336%" y="703.50"></text></g><g><title>os::vsnprintf (57 samples, 0.02%)</title><rect x="0.4839%" y="677" width="0.0157%" height="15" fill="rgb(207,160,47)" fg:x="1753" fg:w="57"/><text x="0.7339%" y="687.50"></text></g><g><title>__vsnprintf_internal (57 samples, 0.02%)</title><rect x="0.4839%" y="661" width="0.0157%" height="15" fill="rgb(228,23,34)" fg:x="1753" fg:w="57"/><text x="0.7339%" y="671.50"></text></g><g><title>__vfprintf_internal (55 samples, 0.02%)</title><rect x="0.4845%" y="645" width="0.0152%" height="15" fill="rgb(218,30,26)" fg:x="1755" fg:w="55"/><text x="0.7345%" y="655.50"></text></g><g><title>CompileBroker::post_compile (63 samples, 0.02%)</title><rect x="0.4828%" y="725" width="0.0174%" height="15" fill="rgb(220,122,19)" fg:x="1749" fg:w="63"/><text x="0.7328%" y="735.50"></text></g><g><title>StringEventLog::log (61 samples, 0.02%)</title><rect x="0.4834%" y="709" width="0.0168%" height="15" fill="rgb(250,228,42)" fg:x="1751" fg:w="61"/><text x="0.7334%" y="719.50"></text></g><g><title>Method::print_short_name (53 samples, 0.01%)</title><rect x="0.5054%" y="709" width="0.0146%" height="15" fill="rgb(240,193,28)" fg:x="1831" fg:w="53"/><text x="0.7554%" y="719.50"></text></g><g><title>CompileTask::print (118 samples, 0.03%)</title><rect x="0.5052%" y="725" width="0.0326%" height="15" fill="rgb(216,20,37)" fg:x="1830" fg:w="118"/><text x="0.7552%" y="735.50"></text></g><g><title>outputStream::print (64 samples, 0.02%)</title><rect x="0.5201%" y="709" width="0.0177%" height="15" fill="rgb(206,188,39)" fg:x="1884" fg:w="64"/><text x="0.7701%" y="719.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (60 samples, 0.02%)</title><rect x="0.5212%" y="693" width="0.0166%" height="15" fill="rgb(217,207,13)" fg:x="1888" fg:w="60"/><text x="0.7712%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (69 samples, 0.02%)</title><rect x="0.5753%" y="581" width="0.0190%" height="15" fill="rgb(231,73,38)" fg:x="2084" fg:w="69"/><text x="0.8253%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (113 samples, 0.03%)</title><rect x="0.5739%" y="597" width="0.0312%" height="15" fill="rgb(225,20,46)" fg:x="2079" fg:w="113"/><text x="0.8239%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (39 samples, 0.01%)</title><rect x="0.5943%" y="581" width="0.0108%" height="15" fill="rgb(210,31,41)" fg:x="2153" fg:w="39"/><text x="0.8443%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (66 samples, 0.02%)</title><rect x="0.6051%" y="597" width="0.0182%" height="15" fill="rgb(221,200,47)" fg:x="2192" fg:w="66"/><text x="0.8551%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (186 samples, 0.05%)</title><rect x="0.5722%" y="613" width="0.0513%" height="15" fill="rgb(226,26,5)" fg:x="2073" fg:w="186"/><text x="0.8222%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (189 samples, 0.05%)</title><rect x="0.5720%" y="629" width="0.0522%" height="15" fill="rgb(249,33,26)" fg:x="2072" fg:w="189"/><text x="0.8220%" y="639.50"></text></g><g><title>ValueMap::find_insert (50 samples, 0.01%)</title><rect x="0.6341%" y="629" width="0.0138%" height="15" fill="rgb(235,183,28)" fg:x="2297" fg:w="50"/><text x="0.8841%" y="639.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (381 samples, 0.11%)</title><rect x="0.5537%" y="645" width="0.1052%" height="15" fill="rgb(221,5,38)" fg:x="2006" fg:w="381"/><text x="0.8037%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (46 samples, 0.01%)</title><rect x="0.6678%" y="565" width="0.0127%" height="15" fill="rgb(247,18,42)" fg:x="2419" fg:w="46"/><text x="0.9178%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (57 samples, 0.02%)</title><rect x="0.6658%" y="581" width="0.0157%" height="15" fill="rgb(241,131,45)" fg:x="2412" fg:w="57"/><text x="0.9158%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.6617%" y="597" width="0.0232%" height="15" fill="rgb(249,31,29)" fg:x="2397" fg:w="84"/><text x="0.9117%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (87 samples, 0.02%)</title><rect x="0.6614%" y="613" width="0.0240%" height="15" fill="rgb(225,111,53)" fg:x="2396" fg:w="87"/><text x="0.9114%" y="623.50"></text></g><g><title>MethodLiveness::init_basic_blocks (61 samples, 0.02%)</title><rect x="0.7172%" y="549" width="0.0168%" height="15" fill="rgb(238,160,17)" fg:x="2598" fg:w="61"/><text x="0.9672%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (98 samples, 0.03%)</title><rect x="0.7072%" y="565" width="0.0271%" height="15" fill="rgb(214,148,48)" fg:x="2562" fg:w="98"/><text x="0.9572%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (144 samples, 0.04%)</title><rect x="0.6948%" y="597" width="0.0398%" height="15" fill="rgb(232,36,49)" fg:x="2517" fg:w="144"/><text x="0.9448%" y="607.50"></text></g><g><title>ciMethod::bci_block_start (99 samples, 0.03%)</title><rect x="0.7072%" y="581" width="0.0273%" height="15" fill="rgb(209,103,24)" fg:x="2562" fg:w="99"/><text x="0.9572%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (159 samples, 0.04%)</title><rect x="0.6909%" y="613" width="0.0439%" height="15" fill="rgb(229,88,8)" fg:x="2503" fg:w="159"/><text x="0.9409%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (68 samples, 0.02%)</title><rect x="0.7986%" y="501" width="0.0188%" height="15" fill="rgb(213,181,19)" fg:x="2893" fg:w="68"/><text x="1.0486%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (80 samples, 0.02%)</title><rect x="0.7958%" y="517" width="0.0221%" height="15" fill="rgb(254,191,54)" fg:x="2883" fg:w="80"/><text x="1.0458%" y="527.50"></text></g><g><title>ciField::ciField (115 samples, 0.03%)</title><rect x="0.7911%" y="533" width="0.0317%" height="15" fill="rgb(241,83,37)" fg:x="2866" fg:w="115"/><text x="1.0411%" y="543.50"></text></g><g><title>ciEnv::get_field_by_index (132 samples, 0.04%)</title><rect x="0.7881%" y="549" width="0.0364%" height="15" fill="rgb(233,36,39)" fg:x="2855" fg:w="132"/><text x="1.0381%" y="559.50"></text></g><g><title>ciBytecodeStream::get_field (148 samples, 0.04%)</title><rect x="0.7878%" y="565" width="0.0409%" height="15" fill="rgb(226,3,54)" fg:x="2854" fg:w="148"/><text x="1.0378%" y="575.50"></text></g><g><title>GraphBuilder::access_field (228 samples, 0.06%)</title><rect x="0.7718%" y="581" width="0.0629%" height="15" fill="rgb(245,192,40)" fg:x="2796" fg:w="228"/><text x="1.0218%" y="591.50"></text></g><g><title>GraphBuilder::append_with_bci (39 samples, 0.01%)</title><rect x="0.8717%" y="565" width="0.0108%" height="15" fill="rgb(238,167,29)" fg:x="3158" fg:w="39"/><text x="1.1217%" y="575.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.9173%" y="501" width="0.0141%" height="15" fill="rgb(232,182,51)" fg:x="3323" fg:w="51"/><text x="1.1673%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (37 samples, 0.01%)</title><rect x="0.9570%" y="421" width="0.0102%" height="15" fill="rgb(231,60,39)" fg:x="3467" fg:w="37"/><text x="1.2070%" y="431.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (47 samples, 0.01%)</title><rect x="0.9551%" y="437" width="0.0130%" height="15" fill="rgb(208,69,12)" fg:x="3460" fg:w="47"/><text x="1.2051%" y="447.50"></text></g><g><title>ciField::ciField (86 samples, 0.02%)</title><rect x="0.9482%" y="453" width="0.0237%" height="15" fill="rgb(235,93,37)" fg:x="3435" fg:w="86"/><text x="1.1982%" y="463.50"></text></g><g><title>ciEnv::get_field_by_index (93 samples, 0.03%)</title><rect x="0.9466%" y="469" width="0.0257%" height="15" fill="rgb(213,116,39)" fg:x="3429" fg:w="93"/><text x="1.1966%" y="479.50"></text></g><g><title>ciBytecodeStream::get_field (105 samples, 0.03%)</title><rect x="0.9457%" y="485" width="0.0290%" height="15" fill="rgb(222,207,29)" fg:x="3426" fg:w="105"/><text x="1.1957%" y="495.50"></text></g><g><title>GraphBuilder::access_field (164 samples, 0.05%)</title><rect x="0.9347%" y="501" width="0.0453%" height="15" fill="rgb(206,96,30)" fg:x="3386" fg:w="164"/><text x="1.1847%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (43 samples, 0.01%)</title><rect x="1.0341%" y="405" width="0.0119%" height="15" fill="rgb(218,138,4)" fg:x="3746" fg:w="43"/><text x="1.2841%" y="415.50"></text></g><g><title>GraphBuilder::access_field (75 samples, 0.02%)</title><rect x="1.0280%" y="421" width="0.0207%" height="15" fill="rgb(250,191,14)" fg:x="3724" fg:w="75"/><text x="1.2780%" y="431.50"></text></g><g><title>GraphBuilder::access_field (41 samples, 0.01%)</title><rect x="1.0697%" y="341" width="0.0113%" height="15" fill="rgb(239,60,40)" fg:x="3875" fg:w="41"/><text x="1.3197%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (46 samples, 0.01%)</title><rect x="1.0964%" y="245" width="0.0127%" height="15" fill="rgb(206,27,48)" fg:x="3972" fg:w="46"/><text x="1.3464%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (46 samples, 0.01%)</title><rect x="1.0964%" y="229" width="0.0127%" height="15" fill="rgb(225,35,8)" fg:x="3972" fg:w="46"/><text x="1.3464%" y="239.50"></text></g><g><title>GraphBuilder::invoke (64 samples, 0.02%)</title><rect x="1.0951%" y="261" width="0.0177%" height="15" fill="rgb(250,213,24)" fg:x="3967" fg:w="64"/><text x="1.3451%" y="271.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (102 samples, 0.03%)</title><rect x="1.0873%" y="293" width="0.0282%" height="15" fill="rgb(247,123,22)" fg:x="3939" fg:w="102"/><text x="1.3373%" y="303.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (101 samples, 0.03%)</title><rect x="1.0876%" y="277" width="0.0279%" height="15" fill="rgb(231,138,38)" fg:x="3940" fg:w="101"/><text x="1.3376%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (148 samples, 0.04%)</title><rect x="1.0857%" y="309" width="0.0409%" height="15" fill="rgb(231,145,46)" fg:x="3933" fg:w="148"/><text x="1.3357%" y="319.50"></text></g><g><title>GraphBuilder::try_inline (163 samples, 0.04%)</title><rect x="1.0851%" y="325" width="0.0450%" height="15" fill="rgb(251,118,11)" fg:x="3931" fg:w="163"/><text x="1.3351%" y="335.50"></text></g><g><title>GraphBuilder::invoke (221 samples, 0.06%)</title><rect x="1.0829%" y="341" width="0.0610%" height="15" fill="rgb(217,147,25)" fg:x="3923" fg:w="221"/><text x="1.3329%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (319 samples, 0.09%)</title><rect x="1.0633%" y="373" width="0.0881%" height="15" fill="rgb(247,81,37)" fg:x="3852" fg:w="319"/><text x="1.3133%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (315 samples, 0.09%)</title><rect x="1.0644%" y="357" width="0.0870%" height="15" fill="rgb(209,12,38)" fg:x="3856" fg:w="315"/><text x="1.3144%" y="367.50"></text></g><g><title>GraphBuilder::push_scope (40 samples, 0.01%)</title><rect x="1.1528%" y="373" width="0.0110%" height="15" fill="rgb(227,1,9)" fg:x="4176" fg:w="40"/><text x="1.4028%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (408 samples, 0.11%)</title><rect x="1.0586%" y="389" width="0.1126%" height="15" fill="rgb(248,47,43)" fg:x="3835" fg:w="408"/><text x="1.3086%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (40 samples, 0.01%)</title><rect x="1.1718%" y="341" width="0.0110%" height="15" fill="rgb(221,10,30)" fg:x="4245" fg:w="40"/><text x="1.4218%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (39 samples, 0.01%)</title><rect x="1.1721%" y="325" width="0.0108%" height="15" fill="rgb(210,229,1)" fg:x="4246" fg:w="39"/><text x="1.4221%" y="335.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (42 samples, 0.01%)</title><rect x="1.1715%" y="389" width="0.0116%" height="15" fill="rgb(222,148,37)" fg:x="4244" fg:w="42"/><text x="1.4215%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (42 samples, 0.01%)</title><rect x="1.1715%" y="373" width="0.0116%" height="15" fill="rgb(234,67,33)" fg:x="4244" fg:w="42"/><text x="1.4215%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (42 samples, 0.01%)</title><rect x="1.1715%" y="357" width="0.0116%" height="15" fill="rgb(247,98,35)" fg:x="4244" fg:w="42"/><text x="1.4215%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (455 samples, 0.13%)</title><rect x="1.0578%" y="405" width="0.1256%" height="15" fill="rgb(247,138,52)" fg:x="3832" fg:w="455"/><text x="1.3078%" y="415.50"></text></g><g><title>ciEnv::get_method_by_index_impl (69 samples, 0.02%)</title><rect x="1.1895%" y="389" width="0.0190%" height="15" fill="rgb(213,79,30)" fg:x="4309" fg:w="69"/><text x="1.4395%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (77 samples, 0.02%)</title><rect x="1.1875%" y="405" width="0.0213%" height="15" fill="rgb(246,177,23)" fg:x="4302" fg:w="77"/><text x="1.4375%" y="415.50"></text></g><g><title>GraphBuilder::invoke (584 samples, 0.16%)</title><rect x="1.0531%" y="421" width="0.1612%" height="15" fill="rgb(230,62,27)" fg:x="3815" fg:w="584"/><text x="1.3031%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (763 samples, 0.21%)</title><rect x="1.0128%" y="453" width="0.2106%" height="15" fill="rgb(216,154,8)" fg:x="3669" fg:w="763"/><text x="1.2628%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (753 samples, 0.21%)</title><rect x="1.0156%" y="437" width="0.2079%" height="15" fill="rgb(244,35,45)" fg:x="3679" fg:w="753"/><text x="1.2656%" y="447.50"></text></g><g><title>BlockListBuilder::set_leaders (49 samples, 0.01%)</title><rect x="1.2281%" y="421" width="0.0135%" height="15" fill="rgb(251,115,12)" fg:x="4449" fg:w="49"/><text x="1.4781%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (59 samples, 0.02%)</title><rect x="1.2259%" y="437" width="0.0163%" height="15" fill="rgb(240,54,50)" fg:x="4441" fg:w="59"/><text x="1.4759%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (99 samples, 0.03%)</title><rect x="1.2251%" y="453" width="0.0273%" height="15" fill="rgb(233,84,52)" fg:x="4438" fg:w="99"/><text x="1.4751%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (54 samples, 0.01%)</title><rect x="1.2543%" y="453" width="0.0149%" height="15" fill="rgb(207,117,47)" fg:x="4544" fg:w="54"/><text x="1.5043%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (50 samples, 0.01%)</title><rect x="1.2554%" y="437" width="0.0138%" height="15" fill="rgb(249,43,39)" fg:x="4548" fg:w="50"/><text x="1.5054%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (960 samples, 0.27%)</title><rect x="1.0065%" y="469" width="0.2650%" height="15" fill="rgb(209,38,44)" fg:x="3646" fg:w="960"/><text x="1.2565%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (46 samples, 0.01%)</title><rect x="1.2728%" y="421" width="0.0127%" height="15" fill="rgb(236,212,23)" fg:x="4611" fg:w="46"/><text x="1.5228%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (46 samples, 0.01%)</title><rect x="1.2728%" y="405" width="0.0127%" height="15" fill="rgb(242,79,21)" fg:x="4611" fg:w="46"/><text x="1.5228%" y="415.50"></text></g><g><title>GraphBuilder::invoke (40 samples, 0.01%)</title><rect x="1.2745%" y="389" width="0.0110%" height="15" fill="rgb(211,96,35)" fg:x="4617" fg:w="40"/><text x="1.5245%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (47 samples, 0.01%)</title><rect x="1.2728%" y="453" width="0.0130%" height="15" fill="rgb(253,215,40)" fg:x="4611" fg:w="47"/><text x="1.5228%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (47 samples, 0.01%)</title><rect x="1.2728%" y="437" width="0.0130%" height="15" fill="rgb(211,81,21)" fg:x="4611" fg:w="47"/><text x="1.5228%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (52 samples, 0.01%)</title><rect x="1.2726%" y="469" width="0.0144%" height="15" fill="rgb(208,190,38)" fg:x="4610" fg:w="52"/><text x="1.5226%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (1,029 samples, 0.28%)</title><rect x="1.0042%" y="485" width="0.2840%" height="15" fill="rgb(235,213,38)" fg:x="3638" fg:w="1029"/><text x="1.2542%" y="495.50"></text></g><g><title>ciEnv::lookup_method (55 samples, 0.02%)</title><rect x="1.3068%" y="453" width="0.0152%" height="15" fill="rgb(237,122,38)" fg:x="4734" fg:w="55"/><text x="1.5568%" y="463.50"></text></g><g><title>ciMethod::ciMethod (74 samples, 0.02%)</title><rect x="1.3275%" y="421" width="0.0204%" height="15" fill="rgb(244,218,35)" fg:x="4809" fg:w="74"/><text x="1.5775%" y="431.50"></text></g><g><title>ciSignature::ciSignature (57 samples, 0.02%)</title><rect x="1.3322%" y="405" width="0.0157%" height="15" fill="rgb(240,68,47)" fg:x="4826" fg:w="57"/><text x="1.5822%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (96 samples, 0.03%)</title><rect x="1.3220%" y="453" width="0.0265%" height="15" fill="rgb(210,16,53)" fg:x="4789" fg:w="96"/><text x="1.5720%" y="463.50"></text></g><g><title>ciObjectFactory::create_new_metadata (82 samples, 0.02%)</title><rect x="1.3258%" y="437" width="0.0226%" height="15" fill="rgb(235,124,12)" fg:x="4803" fg:w="82"/><text x="1.5758%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (188 samples, 0.05%)</title><rect x="1.2971%" y="485" width="0.0519%" height="15" fill="rgb(224,169,11)" fg:x="4699" fg:w="188"/><text x="1.5471%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (178 samples, 0.05%)</title><rect x="1.2999%" y="469" width="0.0491%" height="15" fill="rgb(250,166,2)" fg:x="4709" fg:w="178"/><text x="1.5499%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,322 samples, 0.36%)</title><rect x="0.9918%" y="501" width="0.3649%" height="15" fill="rgb(242,216,29)" fg:x="3593" fg:w="1322"/><text x="1.2418%" y="511.50"></text></g><g><title>GraphBuilder::method_return (52 samples, 0.01%)</title><rect x="1.3584%" y="501" width="0.0144%" height="15" fill="rgb(230,116,27)" fg:x="4921" fg:w="52"/><text x="1.6084%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,708 samples, 0.47%)</title><rect x="0.9065%" y="533" width="0.4715%" height="15" fill="rgb(228,99,48)" fg:x="3284" fg:w="1708"/><text x="1.1565%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,700 samples, 0.47%)</title><rect x="0.9087%" y="517" width="0.4693%" height="15" fill="rgb(253,11,6)" fg:x="3292" fg:w="1700"/><text x="1.1587%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (43 samples, 0.01%)</title><rect x="1.3995%" y="453" width="0.0119%" height="15" fill="rgb(247,143,39)" fg:x="5070" fg:w="43"/><text x="1.6495%" y="463.50"></text></g><g><title>BlockListBuilder::set_leaders (84 samples, 0.02%)</title><rect x="1.3888%" y="501" width="0.0232%" height="15" fill="rgb(236,97,10)" fg:x="5031" fg:w="84"/><text x="1.6388%" y="511.50"></text></g><g><title>ciMethod::bci_block_start (67 samples, 0.02%)</title><rect x="1.3935%" y="485" width="0.0185%" height="15" fill="rgb(233,208,19)" fg:x="5048" fg:w="67"/><text x="1.6435%" y="495.50"></text></g><g><title>MethodLiveness::compute_liveness (66 samples, 0.02%)</title><rect x="1.3937%" y="469" width="0.0182%" height="15" fill="rgb(216,164,2)" fg:x="5049" fg:w="66"/><text x="1.6437%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (108 samples, 0.03%)</title><rect x="1.3833%" y="517" width="0.0298%" height="15" fill="rgb(220,129,5)" fg:x="5011" fg:w="108"/><text x="1.6333%" y="527.50"></text></g><g><title>GraphBuilder::push_scope (178 samples, 0.05%)</title><rect x="1.3805%" y="533" width="0.0491%" height="15" fill="rgb(242,17,10)" fg:x="5001" fg:w="178"/><text x="1.6305%" y="543.50"></text></g><g><title>Method::build_interpreter_method_data (55 samples, 0.02%)</title><rect x="1.4363%" y="501" width="0.0152%" height="15" fill="rgb(242,107,0)" fg:x="5203" fg:w="55"/><text x="1.6863%" y="511.50"></text></g><g><title>MethodData::allocate (54 samples, 0.01%)</title><rect x="1.4365%" y="485" width="0.0149%" height="15" fill="rgb(251,28,31)" fg:x="5204" fg:w="54"/><text x="1.6865%" y="495.50"></text></g><g><title>ciMethodData::load_data (59 samples, 0.02%)</title><rect x="1.4514%" y="501" width="0.0163%" height="15" fill="rgb(233,223,10)" fg:x="5258" fg:w="59"/><text x="1.7014%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (144 samples, 0.04%)</title><rect x="1.4338%" y="533" width="0.0398%" height="15" fill="rgb(215,21,27)" fg:x="5194" fg:w="144"/><text x="1.6838%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.04%)</title><rect x="1.4360%" y="517" width="0.0375%" height="15" fill="rgb(232,23,21)" fg:x="5202" fg:w="136"/><text x="1.6860%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (2,126 samples, 0.59%)</title><rect x="0.8905%" y="549" width="0.5869%" height="15" fill="rgb(244,5,23)" fg:x="3226" fg:w="2126"/><text x="1.1405%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (2,144 samples, 0.59%)</title><rect x="0.8878%" y="565" width="0.5918%" height="15" fill="rgb(226,81,46)" fg:x="3216" fg:w="2144"/><text x="1.1378%" y="575.50"></text></g><g><title>ciEnv::lookup_method (96 samples, 0.03%)</title><rect x="1.5102%" y="533" width="0.0265%" height="15" fill="rgb(247,70,30)" fg:x="5471" fg:w="96"/><text x="1.7602%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (46 samples, 0.01%)</title><rect x="1.5643%" y="469" width="0.0127%" height="15" fill="rgb(212,68,19)" fg:x="5667" fg:w="46"/><text x="1.8143%" y="479.50"></text></g><g><title>ciMethod::ciMethod (139 samples, 0.04%)</title><rect x="1.5436%" y="501" width="0.0384%" height="15" fill="rgb(240,187,13)" fg:x="5592" fg:w="139"/><text x="1.7936%" y="511.50"></text></g><g><title>ciSignature::ciSignature (120 samples, 0.03%)</title><rect x="1.5489%" y="485" width="0.0331%" height="15" fill="rgb(223,113,26)" fg:x="5611" fg:w="120"/><text x="1.7989%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (168 samples, 0.05%)</title><rect x="1.5367%" y="533" width="0.0464%" height="15" fill="rgb(206,192,2)" fg:x="5567" fg:w="168"/><text x="1.7867%" y="543.50"></text></g><g><title>ciObjectFactory::create_new_metadata (152 samples, 0.04%)</title><rect x="1.5412%" y="517" width="0.0420%" height="15" fill="rgb(241,108,4)" fg:x="5583" fg:w="152"/><text x="1.7912%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (309 samples, 0.09%)</title><rect x="1.5000%" y="549" width="0.0853%" height="15" fill="rgb(247,173,49)" fg:x="5434" fg:w="309"/><text x="1.7500%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (333 samples, 0.09%)</title><rect x="1.4940%" y="565" width="0.0919%" height="15" fill="rgb(224,114,35)" fg:x="5412" fg:w="333"/><text x="1.7440%" y="575.50"></text></g><g><title>ciMethod::find_monomorphic_target (46 samples, 0.01%)</title><rect x="1.5917%" y="565" width="0.0127%" height="15" fill="rgb(245,159,27)" fg:x="5766" fg:w="46"/><text x="1.8417%" y="575.50"></text></g><g><title>GraphBuilder::invoke (2,704 samples, 0.75%)</title><rect x="0.8599%" y="581" width="0.7464%" height="15" fill="rgb(245,172,44)" fg:x="3115" fg:w="2704"/><text x="1.1099%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,208 samples, 0.89%)</title><rect x="0.7456%" y="597" width="0.8855%" height="15" fill="rgb(236,23,11)" fg:x="2701" fg:w="3208"/><text x="0.9956%" y="607.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,246 samples, 0.90%)</title><rect x="0.7362%" y="613" width="0.8960%" height="15" fill="rgb(205,117,38)" fg:x="2667" fg:w="3246"/><text x="0.9862%" y="623.50"></text></g><g><title>GraphBuilder::setup_start_block (45 samples, 0.01%)</title><rect x="1.6328%" y="613" width="0.0124%" height="15" fill="rgb(237,72,25)" fg:x="5915" fg:w="45"/><text x="1.8828%" y="623.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,594 samples, 0.99%)</title><rect x="0.6600%" y="629" width="0.9921%" height="15" fill="rgb(244,70,9)" fg:x="2391" fg:w="3594"/><text x="0.9100%" y="639.50"></text></g><g><title>IR::IR (3,619 samples, 1.00%)</title><rect x="0.6589%" y="645" width="0.9990%" height="15" fill="rgb(217,125,39)" fg:x="2387" fg:w="3619"/><text x="0.9089%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (59 samples, 0.02%)</title><rect x="1.6582%" y="629" width="0.0163%" height="15" fill="rgb(235,36,10)" fg:x="6007" fg:w="59"/><text x="1.9082%" y="639.50"></text></g><g><title>IR::compute_code (64 samples, 0.02%)</title><rect x="1.6579%" y="645" width="0.0177%" height="15" fill="rgb(251,123,47)" fg:x="6006" fg:w="64"/><text x="1.9079%" y="655.50"></text></g><g><title>UseCountComputer::block_do (82 samples, 0.02%)</title><rect x="1.6783%" y="613" width="0.0226%" height="15" fill="rgb(221,13,13)" fg:x="6080" fg:w="82"/><text x="1.9283%" y="623.50"></text></g><g><title>BlockList::iterate_backward (88 samples, 0.02%)</title><rect x="1.6778%" y="629" width="0.0243%" height="15" fill="rgb(238,131,9)" fg:x="6078" fg:w="88"/><text x="1.9278%" y="639.50"></text></g><g><title>IR::compute_use_counts (132 samples, 0.04%)</title><rect x="1.6756%" y="645" width="0.0364%" height="15" fill="rgb(211,50,8)" fg:x="6070" fg:w="132"/><text x="1.9256%" y="655.50"></text></g><g><title>NullCheckEliminator::iterate_one (149 samples, 0.04%)</title><rect x="1.7189%" y="613" width="0.0411%" height="15" fill="rgb(245,182,24)" fg:x="6227" fg:w="149"/><text x="1.9689%" y="623.50"></text></g><g><title>IR::eliminate_null_checks (184 samples, 0.05%)</title><rect x="1.7120%" y="645" width="0.0508%" height="15" fill="rgb(242,14,37)" fg:x="6202" fg:w="184"/><text x="1.9620%" y="655.50"></text></g><g><title>Optimizer::eliminate_null_checks (184 samples, 0.05%)</title><rect x="1.7120%" y="629" width="0.0508%" height="15" fill="rgb(246,228,12)" fg:x="6202" fg:w="184"/><text x="1.9620%" y="639.50"></text></g><g><title>IR::optimize_blocks (37 samples, 0.01%)</title><rect x="1.7628%" y="645" width="0.0102%" height="15" fill="rgb(213,55,15)" fg:x="6386" fg:w="37"/><text x="2.0128%" y="655.50"></text></g><g><title>IR::split_critical_edges (44 samples, 0.01%)</title><rect x="1.7730%" y="645" width="0.0121%" height="15" fill="rgb(209,9,3)" fg:x="6423" fg:w="44"/><text x="2.0230%" y="655.50"></text></g><g><title>Compilation::build_hir (4,504 samples, 1.24%)</title><rect x="0.5524%" y="661" width="1.2433%" height="15" fill="rgb(230,59,30)" fg:x="2001" fg:w="4504"/><text x="0.8024%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (80 samples, 0.02%)</title><rect x="1.8407%" y="597" width="0.0221%" height="15" fill="rgb(209,121,21)" fg:x="6668" fg:w="80"/><text x="2.0907%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (80 samples, 0.02%)</title><rect x="1.8407%" y="581" width="0.0221%" height="15" fill="rgb(220,109,13)" fg:x="6668" fg:w="80"/><text x="2.0907%" y="591.50"></text></g><g><title>LIR_Assembler::call (88 samples, 0.02%)</title><rect x="1.8396%" y="613" width="0.0243%" height="15" fill="rgb(232,18,1)" fg:x="6664" fg:w="88"/><text x="2.0896%" y="623.50"></text></g><g><title>LIR_Assembler::emit_call (161 samples, 0.04%)</title><rect x="1.8271%" y="629" width="0.0444%" height="15" fill="rgb(215,41,42)" fg:x="6619" fg:w="161"/><text x="2.0771%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op1 (150 samples, 0.04%)</title><rect x="1.8796%" y="629" width="0.0414%" height="15" fill="rgb(224,123,36)" fg:x="6809" fg:w="150"/><text x="2.1296%" y="639.50"></text></g><g><title>LIR_Assembler::emit_profile_call (53 samples, 0.01%)</title><rect x="1.9271%" y="629" width="0.0146%" height="15" fill="rgb(240,125,3)" fg:x="6981" fg:w="53"/><text x="2.1771%" y="639.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (46 samples, 0.01%)</title><rect x="1.9618%" y="629" width="0.0127%" height="15" fill="rgb(205,98,50)" fg:x="7107" fg:w="46"/><text x="2.2118%" y="639.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (46 samples, 0.01%)</title><rect x="1.9618%" y="613" width="0.0127%" height="15" fill="rgb(205,185,37)" fg:x="7107" fg:w="46"/><text x="2.2118%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (629 samples, 0.17%)</title><rect x="1.8026%" y="645" width="0.1736%" height="15" fill="rgb(238,207,15)" fg:x="6530" fg:w="629"/><text x="2.0526%" y="655.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (40 samples, 0.01%)</title><rect x="1.9801%" y="645" width="0.0110%" height="15" fill="rgb(213,199,42)" fg:x="7173" fg:w="40"/><text x="2.2301%" y="655.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (54 samples, 0.01%)</title><rect x="1.9975%" y="581" width="0.0149%" height="15" fill="rgb(235,201,11)" fg:x="7236" fg:w="54"/><text x="2.2475%" y="591.50"></text></g><g><title>DebugInformationRecorder::describe_scope (50 samples, 0.01%)</title><rect x="2.0124%" y="581" width="0.0138%" height="15" fill="rgb(207,46,11)" fg:x="7290" fg:w="50"/><text x="2.2624%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (131 samples, 0.04%)</title><rect x="1.9944%" y="597" width="0.0362%" height="15" fill="rgb(241,35,35)" fg:x="7225" fg:w="131"/><text x="2.2444%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (133 samples, 0.04%)</title><rect x="1.9944%" y="613" width="0.0367%" height="15" fill="rgb(243,32,47)" fg:x="7225" fg:w="133"/><text x="2.2444%" y="623.50"></text></g><g><title>CounterOverflowStub::emit_code (166 samples, 0.05%)</title><rect x="1.9925%" y="629" width="0.0458%" height="15" fill="rgb(247,202,23)" fg:x="7218" fg:w="166"/><text x="2.2425%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (44 samples, 0.01%)</title><rect x="2.0449%" y="613" width="0.0121%" height="15" fill="rgb(219,102,11)" fg:x="7408" fg:w="44"/><text x="2.2949%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (43 samples, 0.01%)</title><rect x="2.0452%" y="597" width="0.0119%" height="15" fill="rgb(243,110,44)" fg:x="7409" fg:w="43"/><text x="2.2952%" y="607.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (57 samples, 0.02%)</title><rect x="2.0433%" y="629" width="0.0157%" height="15" fill="rgb(222,74,54)" fg:x="7402" fg:w="57"/><text x="2.2933%" y="639.50"></text></g><g><title>NewInstanceStub::emit_code (37 samples, 0.01%)</title><rect x="2.0596%" y="629" width="0.0102%" height="15" fill="rgb(216,99,12)" fg:x="7461" fg:w="37"/><text x="2.3096%" y="639.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (343 samples, 0.09%)</title><rect x="1.9911%" y="645" width="0.0947%" height="15" fill="rgb(226,22,26)" fg:x="7213" fg:w="343"/><text x="2.2411%" y="655.50"></text></g><g><title>Compilation::emit_code_body (1,063 samples, 0.29%)</title><rect x="1.7957%" y="661" width="0.2934%" height="15" fill="rgb(217,163,10)" fg:x="6505" fg:w="1063"/><text x="2.0457%" y="671.50"></text></g><g><title>LIRGenerator::do_Base (95 samples, 0.03%)</title><rect x="2.1073%" y="613" width="0.0262%" height="15" fill="rgb(213,25,53)" fg:x="7634" fg:w="95"/><text x="2.3573%" y="623.50"></text></g><g><title>LIRGenerator::move_to_phi (50 samples, 0.01%)</title><rect x="2.1427%" y="581" width="0.0138%" height="15" fill="rgb(252,105,26)" fg:x="7762" fg:w="50"/><text x="2.3927%" y="591.50"></text></g><g><title>PhiResolver::create_node (39 samples, 0.01%)</title><rect x="2.1457%" y="565" width="0.0108%" height="15" fill="rgb(220,39,43)" fg:x="7773" fg:w="39"/><text x="2.3957%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (222 samples, 0.06%)</title><rect x="2.1399%" y="597" width="0.0613%" height="15" fill="rgb(229,68,48)" fg:x="7752" fg:w="222"/><text x="2.3899%" y="607.50"></text></g><g><title>PhiResolverState::reset (156 samples, 0.04%)</title><rect x="2.1581%" y="581" width="0.0431%" height="15" fill="rgb(252,8,32)" fg:x="7818" fg:w="156"/><text x="2.4081%" y="591.50"></text></g><g><title>GrowableArray<ResolveNode*>::grow (43 samples, 0.01%)</title><rect x="2.1893%" y="565" width="0.0119%" height="15" fill="rgb(223,20,43)" fg:x="7931" fg:w="43"/><text x="2.4393%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (248 samples, 0.07%)</title><rect x="2.1360%" y="613" width="0.0685%" height="15" fill="rgb(229,81,49)" fg:x="7738" fg:w="248"/><text x="2.3860%" y="623.50"></text></g><g><title>LIRGenerator::do_If (56 samples, 0.02%)</title><rect x="2.2045%" y="613" width="0.0155%" height="15" fill="rgb(236,28,36)" fg:x="7986" fg:w="56"/><text x="2.4545%" y="623.50"></text></g><g><title>LIRGenerator::state_for (58 samples, 0.02%)</title><rect x="2.2404%" y="597" width="0.0160%" height="15" fill="rgb(249,185,26)" fg:x="8116" fg:w="58"/><text x="2.4904%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (39 samples, 0.01%)</title><rect x="2.2456%" y="581" width="0.0108%" height="15" fill="rgb(249,174,33)" fg:x="8135" fg:w="39"/><text x="2.4956%" y="591.50"></text></g><g><title>MethodLiveness::get_liveness_at (38 samples, 0.01%)</title><rect x="2.2459%" y="565" width="0.0105%" height="15" fill="rgb(233,201,37)" fg:x="8136" fg:w="38"/><text x="2.4959%" y="575.50"></text></g><g><title>LIRGenerator::do_Invoke (131 samples, 0.04%)</title><rect x="2.2211%" y="613" width="0.0362%" height="15" fill="rgb(221,78,26)" fg:x="8046" fg:w="131"/><text x="2.4711%" y="623.50"></text></g><g><title>LIRGenerator::do_LoadField (43 samples, 0.01%)</title><rect x="2.2572%" y="613" width="0.0119%" height="15" fill="rgb(250,127,30)" fg:x="8177" fg:w="43"/><text x="2.5072%" y="623.50"></text></g><g><title>LIRGenerator::do_ProfileCall (38 samples, 0.01%)</title><rect x="2.2881%" y="613" width="0.0105%" height="15" fill="rgb(230,49,44)" fg:x="8289" fg:w="38"/><text x="2.5381%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (46 samples, 0.01%)</title><rect x="2.2994%" y="597" width="0.0127%" height="15" fill="rgb(229,67,23)" fg:x="8330" fg:w="46"/><text x="2.5494%" y="607.50"></text></g><g><title>MethodLiveness::get_liveness_at (41 samples, 0.01%)</title><rect x="2.3157%" y="565" width="0.0113%" height="15" fill="rgb(249,83,47)" fg:x="8389" fg:w="41"/><text x="2.5657%" y="575.50"></text></g><g><title>LIRGenerator::state_for (55 samples, 0.02%)</title><rect x="2.3121%" y="597" width="0.0152%" height="15" fill="rgb(215,43,3)" fg:x="8376" fg:w="55"/><text x="2.5621%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (43 samples, 0.01%)</title><rect x="2.3155%" y="581" width="0.0119%" height="15" fill="rgb(238,154,13)" fg:x="8388" fg:w="43"/><text x="2.5655%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (116 samples, 0.03%)</title><rect x="2.2986%" y="613" width="0.0320%" height="15" fill="rgb(219,56,2)" fg:x="8327" fg:w="116"/><text x="2.5486%" y="623.50"></text></g><g><title>BlockList::iterate_forward (935 samples, 0.26%)</title><rect x="2.0910%" y="645" width="0.2581%" height="15" fill="rgb(233,0,4)" fg:x="7575" fg:w="935"/><text x="2.3410%" y="655.50"></text></g><g><title>LIRGenerator::block_do (933 samples, 0.26%)</title><rect x="2.0916%" y="629" width="0.2575%" height="15" fill="rgb(235,30,7)" fg:x="7577" fg:w="933"/><text x="2.3416%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (123 samples, 0.03%)</title><rect x="2.3817%" y="597" width="0.0340%" height="15" fill="rgb(250,79,13)" fg:x="8628" fg:w="123"/><text x="2.6317%" y="607.50"></text></g><g><title>LinearScanWalker::find_free_reg (103 samples, 0.03%)</title><rect x="2.4482%" y="565" width="0.0284%" height="15" fill="rgb(211,146,34)" fg:x="8869" fg:w="103"/><text x="2.6982%" y="575.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (157 samples, 0.04%)</title><rect x="2.4825%" y="565" width="0.0433%" height="15" fill="rgb(228,22,38)" fg:x="8993" fg:w="157"/><text x="2.7325%" y="575.50"></text></g><g><title>Interval::split (49 samples, 0.01%)</title><rect x="2.5291%" y="549" width="0.0135%" height="15" fill="rgb(235,168,5)" fg:x="9162" fg:w="49"/><text x="2.7791%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (78 samples, 0.02%)</title><rect x="2.5258%" y="565" width="0.0215%" height="15" fill="rgb(221,155,16)" fg:x="9150" fg:w="78"/><text x="2.7758%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (452 samples, 0.12%)</title><rect x="2.4239%" y="581" width="0.1248%" height="15" fill="rgb(215,215,53)" fg:x="8781" fg:w="452"/><text x="2.6739%" y="591.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (62 samples, 0.02%)</title><rect x="2.5553%" y="565" width="0.0171%" height="15" fill="rgb(223,4,10)" fg:x="9257" fg:w="62"/><text x="2.8053%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (123 samples, 0.03%)</title><rect x="2.5487%" y="581" width="0.0340%" height="15" fill="rgb(234,103,6)" fg:x="9233" fg:w="123"/><text x="2.7987%" y="591.50"></text></g><g><title>LinearScanWalker::activate_current (680 samples, 0.19%)</title><rect x="2.4157%" y="597" width="0.1877%" height="15" fill="rgb(227,97,0)" fg:x="8751" fg:w="680"/><text x="2.6657%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (843 samples, 0.23%)</title><rect x="2.3709%" y="613" width="0.2327%" height="15" fill="rgb(234,150,53)" fg:x="8589" fg:w="843"/><text x="2.6209%" y="623.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (62 samples, 0.02%)</title><rect x="2.6039%" y="613" width="0.0171%" height="15" fill="rgb(228,201,54)" fg:x="9433" fg:w="62"/><text x="2.8539%" y="623.50"></text></g><g><title>resource_allocate_bytes (38 samples, 0.01%)</title><rect x="2.6105%" y="597" width="0.0105%" height="15" fill="rgb(222,22,37)" fg:x="9457" fg:w="38"/><text x="2.8605%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (926 samples, 0.26%)</title><rect x="2.3671%" y="629" width="0.2556%" height="15" fill="rgb(237,53,32)" fg:x="8575" fg:w="926"/><text x="2.6171%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (73 samples, 0.02%)</title><rect x="2.6757%" y="597" width="0.0202%" height="15" fill="rgb(233,25,53)" fg:x="9693" fg:w="73"/><text x="2.9257%" y="607.50"></text></g><g><title>LinearScan::color_lir_opr (66 samples, 0.02%)</title><rect x="2.6958%" y="597" width="0.0182%" height="15" fill="rgb(210,40,34)" fg:x="9766" fg:w="66"/><text x="2.9458%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (95 samples, 0.03%)</title><rect x="2.7328%" y="581" width="0.0262%" height="15" fill="rgb(241,220,44)" fg:x="9900" fg:w="95"/><text x="2.9828%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (171 samples, 0.05%)</title><rect x="2.7141%" y="597" width="0.0472%" height="15" fill="rgb(235,28,35)" fg:x="9832" fg:w="171"/><text x="2.9641%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (91 samples, 0.03%)</title><rect x="2.7720%" y="565" width="0.0251%" height="15" fill="rgb(210,56,17)" fg:x="10042" fg:w="91"/><text x="3.0220%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (174 samples, 0.05%)</title><rect x="2.7613%" y="597" width="0.0480%" height="15" fill="rgb(224,130,29)" fg:x="10003" fg:w="174"/><text x="3.0113%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (161 samples, 0.04%)</title><rect x="2.7649%" y="581" width="0.0444%" height="15" fill="rgb(235,212,8)" fg:x="10016" fg:w="161"/><text x="3.0149%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (672 samples, 0.19%)</title><rect x="2.6241%" y="613" width="0.1855%" height="15" fill="rgb(223,33,50)" fg:x="9506" fg:w="672"/><text x="2.8741%" y="623.50"></text></g><g><title>LinearScan::assign_reg_num (696 samples, 0.19%)</title><rect x="2.6227%" y="629" width="0.1921%" height="15" fill="rgb(219,149,13)" fg:x="9501" fg:w="696"/><text x="2.8727%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (80 samples, 0.02%)</title><rect x="2.8946%" y="613" width="0.0221%" height="15" fill="rgb(250,156,29)" fg:x="10486" fg:w="80"/><text x="3.1446%" y="623.50"></text></g><g><title>LinearScan::add_def (67 samples, 0.02%)</title><rect x="2.9167%" y="613" width="0.0185%" height="15" fill="rgb(216,193,19)" fg:x="10566" fg:w="67"/><text x="3.1667%" y="623.50"></text></g><g><title>Interval::add_range (38 samples, 0.01%)</title><rect x="2.9451%" y="597" width="0.0105%" height="15" fill="rgb(216,135,14)" fg:x="10669" fg:w="38"/><text x="3.1951%" y="607.50"></text></g><g><title>LinearScan::add_temp (96 samples, 0.03%)</title><rect x="2.9424%" y="613" width="0.0265%" height="15" fill="rgb(241,47,5)" fg:x="10659" fg:w="96"/><text x="3.1924%" y="623.50"></text></g><g><title>LinearScan::create_interval (48 samples, 0.01%)</title><rect x="2.9556%" y="597" width="0.0133%" height="15" fill="rgb(233,42,35)" fg:x="10707" fg:w="48"/><text x="3.2056%" y="607.50"></text></g><g><title>Interval::add_range (43 samples, 0.01%)</title><rect x="2.9854%" y="597" width="0.0119%" height="15" fill="rgb(231,13,6)" fg:x="10815" fg:w="43"/><text x="3.2354%" y="607.50"></text></g><g><title>Interval::Interval (55 samples, 0.02%)</title><rect x="3.0023%" y="581" width="0.0152%" height="15" fill="rgb(207,181,40)" fg:x="10876" fg:w="55"/><text x="3.2523%" y="591.50"></text></g><g><title>LinearScan::create_interval (84 samples, 0.02%)</title><rect x="2.9976%" y="597" width="0.0232%" height="15" fill="rgb(254,173,49)" fg:x="10859" fg:w="84"/><text x="3.2476%" y="607.50"></text></g><g><title>LinearScan::add_use (191 samples, 0.05%)</title><rect x="2.9689%" y="613" width="0.0527%" height="15" fill="rgb(221,1,38)" fg:x="10755" fg:w="191"/><text x="3.2189%" y="623.50"></text></g><g><title>LinearScan::build_intervals (825 samples, 0.23%)</title><rect x="2.8148%" y="629" width="0.2277%" height="15" fill="rgb(206,124,46)" fg:x="10197" fg:w="825"/><text x="3.0648%" y="639.50"></text></g><g><title>LinearScan::compute_global_live_sets (74 samples, 0.02%)</title><rect x="3.0426%" y="629" width="0.0204%" height="15" fill="rgb(249,21,11)" fg:x="11022" fg:w="74"/><text x="3.2926%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (105 samples, 0.03%)</title><rect x="3.1041%" y="613" width="0.0290%" height="15" fill="rgb(222,201,40)" fg:x="11245" fg:w="105"/><text x="3.3541%" y="623.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (41 samples, 0.01%)</title><rect x="3.1372%" y="613" width="0.0113%" height="15" fill="rgb(235,61,29)" fg:x="11365" fg:w="41"/><text x="3.3872%" y="623.50"></text></g><g><title>LinearScan::compute_local_live_sets (311 samples, 0.09%)</title><rect x="3.0630%" y="629" width="0.0858%" height="15" fill="rgb(219,207,3)" fg:x="11096" fg:w="311"/><text x="3.3130%" y="639.50"></text></g><g><title>LinearScan::eliminate_spill_moves (72 samples, 0.02%)</title><rect x="3.1488%" y="629" width="0.0199%" height="15" fill="rgb(222,56,46)" fg:x="11407" fg:w="72"/><text x="3.3988%" y="639.50"></text></g><g><title>LinearScan::resolve_collect_mappings (78 samples, 0.02%)</title><rect x="3.1858%" y="613" width="0.0215%" height="15" fill="rgb(239,76,54)" fg:x="11541" fg:w="78"/><text x="3.4358%" y="623.50"></text></g><g><title>Interval::split_child_at_op_id (52 samples, 0.01%)</title><rect x="3.1930%" y="597" width="0.0144%" height="15" fill="rgb(231,124,27)" fg:x="11567" fg:w="52"/><text x="3.4430%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (117 samples, 0.03%)</title><rect x="3.1781%" y="629" width="0.0323%" height="15" fill="rgb(249,195,6)" fg:x="11513" fg:w="117"/><text x="3.4281%" y="639.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (37 samples, 0.01%)</title><rect x="3.2181%" y="629" width="0.0102%" height="15" fill="rgb(237,174,47)" fg:x="11658" fg:w="37"/><text x="3.4681%" y="639.50"></text></g><g><title>LinearScan::do_linear_scan (3,192 samples, 0.88%)</title><rect x="2.3593%" y="645" width="0.8811%" height="15" fill="rgb(206,201,31)" fg:x="8547" fg:w="3192"/><text x="2.6093%" y="655.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (44 samples, 0.01%)</title><rect x="3.2283%" y="629" width="0.0121%" height="15" fill="rgb(231,57,52)" fg:x="11695" fg:w="44"/><text x="3.4783%" y="639.50"></text></g><g><title>Compilation::emit_lir (4,176 samples, 1.15%)</title><rect x="2.0891%" y="661" width="1.1528%" height="15" fill="rgb(248,177,22)" fg:x="7568" fg:w="4176"/><text x="2.3391%" y="671.50"></text></g><g><title>Method::build_interpreter_method_data (59 samples, 0.02%)</title><rect x="3.2510%" y="629" width="0.0163%" height="15" fill="rgb(215,211,37)" fg:x="11777" fg:w="59"/><text x="3.5010%" y="639.50"></text></g><g><title>MethodData::allocate (59 samples, 0.02%)</title><rect x="3.2510%" y="613" width="0.0163%" height="15" fill="rgb(241,128,51)" fg:x="11777" fg:w="59"/><text x="3.5010%" y="623.50"></text></g><g><title>ciMethodData::load_data (52 samples, 0.01%)</title><rect x="3.2675%" y="629" width="0.0144%" height="15" fill="rgb(227,165,31)" fg:x="11837" fg:w="52"/><text x="3.5175%" y="639.50"></text></g><g><title>Compilation::compile_java_method (9,901 samples, 2.73%)</title><rect x="0.5504%" y="677" width="2.7331%" height="15" fill="rgb(228,167,24)" fg:x="1994" fg:w="9901"/><text x="0.8004%" y="687.50">Co..</text></g><g><title>ciMethod::ensure_method_data (127 samples, 0.04%)</title><rect x="3.2485%" y="661" width="0.0351%" height="15" fill="rgb(228,143,12)" fg:x="11768" fg:w="127"/><text x="3.4985%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (118 samples, 0.03%)</title><rect x="3.2510%" y="645" width="0.0326%" height="15" fill="rgb(249,149,8)" fg:x="11777" fg:w="118"/><text x="3.5010%" y="655.50"></text></g><g><title>Compilation::initialize (53 samples, 0.01%)</title><rect x="3.2835%" y="677" width="0.0146%" height="15" fill="rgb(243,35,44)" fg:x="11895" fg:w="53"/><text x="3.5335%" y="687.50"></text></g><g><title>CodeBuffer::finalize_oop_references (68 samples, 0.02%)</title><rect x="3.3147%" y="645" width="0.0188%" height="15" fill="rgb(246,89,9)" fg:x="12008" fg:w="68"/><text x="3.5647%" y="655.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (44 samples, 0.01%)</title><rect x="3.3664%" y="597" width="0.0121%" height="15" fill="rgb(233,213,13)" fg:x="12195" fg:w="44"/><text x="3.6164%" y="607.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (41 samples, 0.01%)</title><rect x="3.3862%" y="597" width="0.0113%" height="15" fill="rgb(233,141,41)" fg:x="12267" fg:w="41"/><text x="3.6362%" y="607.50"></text></g><g><title>CodeBuffer::relocate_code_to (135 samples, 0.04%)</title><rect x="3.3619%" y="613" width="0.0373%" height="15" fill="rgb(239,167,4)" fg:x="12179" fg:w="135"/><text x="3.6119%" y="623.50"></text></g><g><title>CodeBuffer::copy_code_to (152 samples, 0.04%)</title><rect x="3.3606%" y="629" width="0.0420%" height="15" fill="rgb(209,217,16)" fg:x="12174" fg:w="152"/><text x="3.6106%" y="639.50"></text></g><g><title>CompiledMethod::CompiledMethod (39 samples, 0.01%)</title><rect x="3.4047%" y="629" width="0.0108%" height="15" fill="rgb(219,88,35)" fg:x="12334" fg:w="39"/><text x="3.6547%" y="639.50"></text></g><g><title>G1CollectedHeap::register_nmethod (55 samples, 0.02%)</title><rect x="3.4169%" y="629" width="0.0152%" height="15" fill="rgb(220,193,23)" fg:x="12378" fg:w="55"/><text x="3.6669%" y="639.50"></text></g><g><title>nmethod::oops_do (55 samples, 0.02%)</title><rect x="3.4169%" y="613" width="0.0152%" height="15" fill="rgb(230,90,52)" fg:x="12378" fg:w="55"/><text x="3.6669%" y="623.50"></text></g><g><title>nmethod::nmethod (318 samples, 0.09%)</title><rect x="3.3586%" y="645" width="0.0878%" height="15" fill="rgb(252,106,19)" fg:x="12167" fg:w="318"/><text x="3.6086%" y="655.50"></text></g><g><title>nmethod::new_nmethod (485 samples, 0.13%)</title><rect x="3.3131%" y="661" width="0.1339%" height="15" fill="rgb(206,74,20)" fg:x="12002" fg:w="485"/><text x="3.5631%" y="671.50"></text></g><g><title>ciEnv::register_method (539 samples, 0.15%)</title><rect x="3.2985%" y="677" width="0.1488%" height="15" fill="rgb(230,138,44)" fg:x="11949" fg:w="539"/><text x="3.5485%" y="687.50"></text></g><g><title>Compilation::compile_method (10,501 samples, 2.90%)</title><rect x="0.5491%" y="693" width="2.8987%" height="15" fill="rgb(235,182,43)" fg:x="1989" fg:w="10501"/><text x="0.7991%" y="703.50">Co..</text></g><g><title>Compiler::compile_method (10,551 samples, 2.91%)</title><rect x="0.5380%" y="725" width="2.9125%" height="15" fill="rgb(242,16,51)" fg:x="1949" fg:w="10551"/><text x="0.7880%" y="735.50">Co..</text></g><g><title>Compilation::Compilation (10,523 samples, 2.90%)</title><rect x="0.5457%" y="709" width="2.9048%" height="15" fill="rgb(248,9,4)" fg:x="1977" fg:w="10523"/><text x="0.7957%" y="719.50">Co..</text></g><g><title>ciObjectFactory::get (73 samples, 0.02%)</title><rect x="3.4724%" y="709" width="0.0202%" height="15" fill="rgb(210,31,22)" fg:x="12579" fg:w="73"/><text x="3.7224%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (47 samples, 0.01%)</title><rect x="3.4795%" y="693" width="0.0130%" height="15" fill="rgb(239,54,39)" fg:x="12605" fg:w="47"/><text x="3.7295%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (42 samples, 0.01%)</title><rect x="3.4809%" y="677" width="0.0116%" height="15" fill="rgb(230,99,41)" fg:x="12610" fg:w="42"/><text x="3.7309%" y="687.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (39 samples, 0.01%)</title><rect x="3.4817%" y="661" width="0.0108%" height="15" fill="rgb(253,106,12)" fg:x="12613" fg:w="39"/><text x="3.7317%" y="671.50"></text></g><g><title>ciEnv::ciEnv (114 samples, 0.03%)</title><rect x="3.4613%" y="725" width="0.0315%" height="15" fill="rgb(213,46,41)" fg:x="12539" fg:w="114"/><text x="3.7113%" y="735.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (44 samples, 0.01%)</title><rect x="3.5113%" y="645" width="0.0121%" height="15" fill="rgb(215,133,35)" fg:x="12720" fg:w="44"/><text x="3.7613%" y="655.50"></text></g><g><title>ciSignature::ciSignature (96 samples, 0.03%)</title><rect x="3.5000%" y="661" width="0.0265%" height="15" fill="rgb(213,28,5)" fg:x="12679" fg:w="96"/><text x="3.7500%" y="671.50"></text></g><g><title>ciMethod::ciMethod (112 samples, 0.03%)</title><rect x="3.4961%" y="677" width="0.0309%" height="15" fill="rgb(215,77,49)" fg:x="12665" fg:w="112"/><text x="3.7461%" y="687.50"></text></g><g><title>ciEnv::get_method_from_handle (137 samples, 0.04%)</title><rect x="3.4928%" y="725" width="0.0378%" height="15" fill="rgb(248,100,22)" fg:x="12653" fg:w="137"/><text x="3.7428%" y="735.50"></text></g><g><title>ciObjectFactory::get_metadata (131 samples, 0.04%)</title><rect x="3.4944%" y="709" width="0.0362%" height="15" fill="rgb(208,67,9)" fg:x="12659" fg:w="131"/><text x="3.7444%" y="719.50"></text></g><g><title>ciObjectFactory::create_new_metadata (127 samples, 0.04%)</title><rect x="3.4955%" y="693" width="0.0351%" height="15" fill="rgb(219,133,21)" fg:x="12663" fg:w="127"/><text x="3.7455%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,110 samples, 3.07%)</title><rect x="0.4715%" y="741" width="3.0668%" height="15" fill="rgb(246,46,29)" fg:x="1708" fg:w="11110"/><text x="0.7215%" y="751.50">Com..</text></g><g><title>CompileBroker::possibly_add_compiler_threads (40 samples, 0.01%)</title><rect x="3.5383%" y="741" width="0.0110%" height="15" fill="rgb(246,185,52)" fg:x="12818" fg:w="40"/><text x="3.7883%" y="751.50"></text></g><g><title>finish_task_switch (40 samples, 0.01%)</title><rect x="3.5665%" y="501" width="0.0110%" height="15" fill="rgb(252,136,11)" fg:x="12920" fg:w="40"/><text x="3.8165%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.01%)</title><rect x="3.5673%" y="485" width="0.0102%" height="15" fill="rgb(219,138,53)" fg:x="12923" fg:w="37"/><text x="3.8173%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.01%)</title><rect x="3.5673%" y="469" width="0.0102%" height="15" fill="rgb(211,51,23)" fg:x="12923" fg:w="37"/><text x="3.8173%" y="479.50"></text></g><g><title>futex_wait_queue_me (66 samples, 0.02%)</title><rect x="3.5612%" y="549" width="0.0182%" height="15" fill="rgb(247,221,28)" fg:x="12901" fg:w="66"/><text x="3.8112%" y="559.50"></text></g><g><title>schedule (61 samples, 0.02%)</title><rect x="3.5626%" y="533" width="0.0168%" height="15" fill="rgb(251,222,45)" fg:x="12906" fg:w="61"/><text x="3.8126%" y="543.50"></text></g><g><title>__schedule (61 samples, 0.02%)</title><rect x="3.5626%" y="517" width="0.0168%" height="15" fill="rgb(217,162,53)" fg:x="12906" fg:w="61"/><text x="3.8126%" y="527.50"></text></g><g><title>do_syscall_64 (72 samples, 0.02%)</title><rect x="3.5601%" y="613" width="0.0199%" height="15" fill="rgb(229,93,14)" fg:x="12897" fg:w="72"/><text x="3.8101%" y="623.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.02%)</title><rect x="3.5601%" y="597" width="0.0199%" height="15" fill="rgb(209,67,49)" fg:x="12897" fg:w="72"/><text x="3.8101%" y="607.50"></text></g><g><title>do_futex (69 samples, 0.02%)</title><rect x="3.5610%" y="581" width="0.0190%" height="15" fill="rgb(213,87,29)" fg:x="12900" fg:w="69"/><text x="3.8110%" y="591.50"></text></g><g><title>futex_wait (69 samples, 0.02%)</title><rect x="3.5610%" y="565" width="0.0190%" height="15" fill="rgb(205,151,52)" fg:x="12900" fg:w="69"/><text x="3.8110%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="3.5601%" y="629" width="0.0213%" height="15" fill="rgb(253,215,39)" fg:x="12897" fg:w="77"/><text x="3.8101%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (85 samples, 0.02%)</title><rect x="3.5582%" y="677" width="0.0235%" height="15" fill="rgb(221,220,41)" fg:x="12890" fg:w="85"/><text x="3.8082%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (85 samples, 0.02%)</title><rect x="3.5582%" y="661" width="0.0235%" height="15" fill="rgb(218,133,21)" fg:x="12890" fg:w="85"/><text x="3.8082%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (83 samples, 0.02%)</title><rect x="3.5588%" y="645" width="0.0229%" height="15" fill="rgb(221,193,43)" fg:x="12892" fg:w="83"/><text x="3.8088%" y="655.50"></text></g><g><title>Monitor::IWait (95 samples, 0.03%)</title><rect x="3.5577%" y="709" width="0.0262%" height="15" fill="rgb(240,128,52)" fg:x="12888" fg:w="95"/><text x="3.8077%" y="719.50"></text></g><g><title>os::PlatformEvent::park (93 samples, 0.03%)</title><rect x="3.5582%" y="693" width="0.0257%" height="15" fill="rgb(253,114,12)" fg:x="12890" fg:w="93"/><text x="3.8082%" y="703.50"></text></g><g><title>Monitor::wait (105 samples, 0.03%)</title><rect x="3.5552%" y="725" width="0.0290%" height="15" fill="rgb(215,223,47)" fg:x="12879" fg:w="105"/><text x="3.8052%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (86 samples, 0.02%)</title><rect x="3.5842%" y="725" width="0.0237%" height="15" fill="rgb(248,225,23)" fg:x="12984" fg:w="86"/><text x="3.8342%" y="735.50"></text></g><g><title>CompileQueue::get (221 samples, 0.06%)</title><rect x="3.5494%" y="741" width="0.0610%" height="15" fill="rgb(250,108,0)" fg:x="12858" fg:w="221"/><text x="3.7994%" y="751.50"></text></g><g><title>Thread::call_run (11,388 samples, 3.14%)</title><rect x="0.4693%" y="789" width="3.1436%" height="15" fill="rgb(228,208,7)" fg:x="1700" fg:w="11388"/><text x="0.7193%" y="799.50">Thr..</text></g><g><title>JavaThread::thread_main_inner (11,387 samples, 3.14%)</title><rect x="0.4696%" y="773" width="3.1433%" height="15" fill="rgb(244,45,10)" fg:x="1701" fg:w="11387"/><text x="0.7196%" y="783.50">Jav..</text></g><g><title>CompileBroker::compiler_thread_loop (11,387 samples, 3.14%)</title><rect x="0.4696%" y="757" width="3.1433%" height="15" fill="rgb(207,125,25)" fg:x="1701" fg:w="11387"/><text x="0.7196%" y="767.50">Com..</text></g><g><title>__GI___clone (11,407 samples, 3.15%)</title><rect x="0.4643%" y="837" width="3.1488%" height="15" fill="rgb(210,195,18)" fg:x="1682" fg:w="11407"/><text x="0.7143%" y="847.50">__G..</text></g><g><title>start_thread (11,390 samples, 3.14%)</title><rect x="0.4690%" y="821" width="3.1441%" height="15" fill="rgb(249,80,12)" fg:x="1699" fg:w="11390"/><text x="0.7190%" y="831.50">sta..</text></g><g><title>thread_native_entry (11,390 samples, 3.14%)</title><rect x="0.4690%" y="805" width="3.1441%" height="15" fill="rgb(221,65,9)" fg:x="1699" fg:w="11390"/><text x="0.7190%" y="815.50">thr..</text></g><g><title>C1_CompilerThre (13,100 samples, 3.62%)</title><rect x="0.0105%" y="853" width="3.6162%" height="15" fill="rgb(235,49,36)" fg:x="38" fg:w="13100"/><text x="0.2605%" y="863.50">C1_C..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (37 samples, 0.01%)</title><rect x="3.6476%" y="837" width="0.0102%" height="15" fill="rgb(225,32,20)" fg:x="13214" fg:w="37"/><text x="3.8976%" y="847.50"></text></g><g><title>RegMask::is_UP (37 samples, 0.01%)</title><rect x="3.6476%" y="821" width="0.0102%" height="15" fill="rgb(215,141,46)" fg:x="13214" fg:w="37"/><text x="3.8976%" y="831.50"></text></g><g><title>ProjNode::pinned (73 samples, 0.02%)</title><rect x="3.6860%" y="821" width="0.0202%" height="15" fill="rgb(250,160,47)" fg:x="13353" fg:w="73"/><text x="3.9360%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (77 samples, 0.02%)</title><rect x="3.6852%" y="837" width="0.0213%" height="15" fill="rgb(216,222,40)" fg:x="13350" fg:w="77"/><text x="3.9352%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (61 samples, 0.02%)</title><rect x="3.9146%" y="821" width="0.0168%" height="15" fill="rgb(234,217,39)" fg:x="14181" fg:w="61"/><text x="4.1646%" y="831.50"></text></g><g><title>MultiNode::is_CFG (62 samples, 0.02%)</title><rect x="4.0521%" y="821" width="0.0171%" height="15" fill="rgb(207,178,40)" fg:x="14679" fg:w="62"/><text x="4.3021%" y="831.50"></text></g><g><title>Node::is_CFG (60 samples, 0.02%)</title><rect x="4.0896%" y="821" width="0.0166%" height="15" fill="rgb(221,136,13)" fg:x="14815" fg:w="60"/><text x="4.3396%" y="831.50"></text></g><g><title>PhiNode::Opcode (39 samples, 0.01%)</title><rect x="4.2069%" y="821" width="0.0108%" height="15" fill="rgb(249,199,10)" fg:x="15240" fg:w="39"/><text x="4.4569%" y="831.50"></text></g><g><title>RegionNode::is_CFG (48 samples, 0.01%)</title><rect x="4.2784%" y="821" width="0.0133%" height="15" fill="rgb(249,222,13)" fg:x="15499" fg:w="48"/><text x="4.5284%" y="831.50"></text></g><g><title>_dl_update_slotinfo (212 samples, 0.06%)</title><rect x="4.4015%" y="821" width="0.0585%" height="15" fill="rgb(244,185,38)" fg:x="15945" fg:w="212"/><text x="4.6515%" y="831.50"></text></g><g><title>find_lowest_bit (38 samples, 0.01%)</title><rect x="4.5144%" y="821" width="0.0105%" height="15" fill="rgb(236,202,9)" fg:x="16354" fg:w="38"/><text x="4.7644%" y="831.50"></text></g><g><title>update_get_addr (64 samples, 0.02%)</title><rect x="4.6008%" y="821" width="0.0177%" height="15" fill="rgb(250,229,37)" fg:x="16667" fg:w="64"/><text x="4.8508%" y="831.50"></text></g><g><title>[anon] (3,273 samples, 0.90%)</title><rect x="3.7161%" y="837" width="0.9035%" height="15" fill="rgb(206,174,23)" fg:x="13462" fg:w="3273"/><text x="3.9661%" y="847.50"></text></g><g><title>Compile::call_generator (39 samples, 0.01%)</title><rect x="4.6295%" y="677" width="0.0108%" height="15" fill="rgb(211,33,43)" fg:x="16771" fg:w="39"/><text x="4.8795%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (39 samples, 0.01%)</title><rect x="4.6295%" y="661" width="0.0108%" height="15" fill="rgb(245,58,50)" fg:x="16771" fg:w="39"/><text x="4.8795%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (62 samples, 0.02%)</title><rect x="4.6538%" y="565" width="0.0171%" height="15" fill="rgb(244,68,36)" fg:x="16859" fg:w="62"/><text x="4.9038%" y="575.50"></text></g><g><title>ciBytecodeStream::get_method (61 samples, 0.02%)</title><rect x="4.6541%" y="549" width="0.0168%" height="15" fill="rgb(232,229,15)" fg:x="16860" fg:w="61"/><text x="4.9041%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (57 samples, 0.02%)</title><rect x="4.6552%" y="533" width="0.0157%" height="15" fill="rgb(254,30,23)" fg:x="16864" fg:w="57"/><text x="4.9052%" y="543.50"></text></g><g><title>ciObjectFactory::get_metadata (41 samples, 0.01%)</title><rect x="4.6596%" y="517" width="0.0113%" height="15" fill="rgb(235,160,14)" fg:x="16880" fg:w="41"/><text x="4.9096%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (41 samples, 0.01%)</title><rect x="4.6596%" y="501" width="0.0113%" height="15" fill="rgb(212,155,44)" fg:x="16880" fg:w="41"/><text x="4.9096%" y="511.50"></text></g><g><title>ciMethod::ciMethod (40 samples, 0.01%)</title><rect x="4.6599%" y="485" width="0.0110%" height="15" fill="rgb(226,2,50)" fg:x="16881" fg:w="40"/><text x="4.9099%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (104 samples, 0.03%)</title><rect x="4.6458%" y="581" width="0.0287%" height="15" fill="rgb(234,177,6)" fg:x="16830" fg:w="104"/><text x="4.8958%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (119 samples, 0.03%)</title><rect x="4.6420%" y="613" width="0.0328%" height="15" fill="rgb(217,24,9)" fg:x="16816" fg:w="119"/><text x="4.8920%" y="623.50"></text></g><g><title>ciTypeFlow::flow_block (119 samples, 0.03%)</title><rect x="4.6420%" y="597" width="0.0328%" height="15" fill="rgb(220,13,46)" fg:x="16816" fg:w="119"/><text x="4.8920%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (127 samples, 0.04%)</title><rect x="4.6403%" y="677" width="0.0351%" height="15" fill="rgb(239,221,27)" fg:x="16810" fg:w="127"/><text x="4.8903%" y="687.50"></text></g><g><title>ciMethod::get_flow_analysis (125 samples, 0.03%)</title><rect x="4.6409%" y="661" width="0.0345%" height="15" fill="rgb(222,198,25)" fg:x="16812" fg:w="125"/><text x="4.8909%" y="671.50"></text></g><g><title>ciTypeFlow::do_flow (125 samples, 0.03%)</title><rect x="4.6409%" y="645" width="0.0345%" height="15" fill="rgb(211,99,13)" fg:x="16812" fg:w="125"/><text x="4.8909%" y="655.50"></text></g><g><title>ciTypeFlow::flow_types (125 samples, 0.03%)</title><rect x="4.6409%" y="629" width="0.0345%" height="15" fill="rgb(232,111,31)" fg:x="16812" fg:w="125"/><text x="4.8909%" y="639.50"></text></g><g><title>Compile::call_generator (170 samples, 0.05%)</title><rect x="4.6295%" y="693" width="0.0469%" height="15" fill="rgb(245,82,37)" fg:x="16771" fg:w="170"/><text x="4.8795%" y="703.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (52 samples, 0.01%)</title><rect x="4.7129%" y="485" width="0.0144%" height="15" fill="rgb(227,149,46)" fg:x="17073" fg:w="52"/><text x="4.9629%" y="495.50"></text></g><g><title>ciTypeFlow::df_flow_types (74 samples, 0.02%)</title><rect x="4.7071%" y="517" width="0.0204%" height="15" fill="rgb(218,36,50)" fg:x="17052" fg:w="74"/><text x="4.9571%" y="527.50"></text></g><g><title>ciTypeFlow::flow_block (65 samples, 0.02%)</title><rect x="4.7096%" y="501" width="0.0179%" height="15" fill="rgb(226,80,48)" fg:x="17061" fg:w="65"/><text x="4.9596%" y="511.50"></text></g><g><title>ciTypeFlow::do_flow (81 samples, 0.02%)</title><rect x="4.7063%" y="549" width="0.0224%" height="15" fill="rgb(238,224,15)" fg:x="17049" fg:w="81"/><text x="4.9563%" y="559.50"></text></g><g><title>ciTypeFlow::flow_types (81 samples, 0.02%)</title><rect x="4.7063%" y="533" width="0.0224%" height="15" fill="rgb(241,136,10)" fg:x="17049" fg:w="81"/><text x="4.9563%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (109 samples, 0.03%)</title><rect x="4.6988%" y="581" width="0.0301%" height="15" fill="rgb(208,32,45)" fg:x="17022" fg:w="109"/><text x="4.9488%" y="591.50"></text></g><g><title>ciMethod::get_flow_analysis (87 samples, 0.02%)</title><rect x="4.7049%" y="565" width="0.0240%" height="15" fill="rgb(207,135,9)" fg:x="17044" fg:w="87"/><text x="4.9549%" y="575.50"></text></g><g><title>Compile::call_generator (148 samples, 0.04%)</title><rect x="4.6905%" y="597" width="0.0409%" height="15" fill="rgb(206,86,44)" fg:x="16992" fg:w="148"/><text x="4.9405%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (50 samples, 0.01%)</title><rect x="4.7767%" y="485" width="0.0138%" height="15" fill="rgb(245,177,15)" fg:x="17304" fg:w="50"/><text x="5.0267%" y="495.50"></text></g><g><title>Compile::call_generator (69 samples, 0.02%)</title><rect x="4.7728%" y="501" width="0.0190%" height="15" fill="rgb(206,64,50)" fg:x="17290" fg:w="69"/><text x="5.0228%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.01%)</title><rect x="4.8388%" y="341" width="0.0127%" height="15" fill="rgb(234,36,40)" fg:x="17529" fg:w="46"/><text x="5.0888%" y="351.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.01%)</title><rect x="4.8385%" y="357" width="0.0133%" height="15" fill="rgb(213,64,8)" fg:x="17528" fg:w="48"/><text x="5.0885%" y="367.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="4.8379%" y="373" width="0.0146%" height="15" fill="rgb(210,75,36)" fg:x="17526" fg:w="53"/><text x="5.0879%" y="383.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.03%)</title><rect x="4.8299%" y="405" width="0.0265%" height="15" fill="rgb(229,88,21)" fg:x="17497" fg:w="96"/><text x="5.0799%" y="415.50"></text></g><g><title>Parse::Parse (96 samples, 0.03%)</title><rect x="4.8299%" y="389" width="0.0265%" height="15" fill="rgb(252,204,47)" fg:x="17497" fg:w="96"/><text x="5.0799%" y="399.50"></text></g><g><title>Parse::do_call (166 samples, 0.05%)</title><rect x="4.8178%" y="421" width="0.0458%" height="15" fill="rgb(208,77,27)" fg:x="17453" fg:w="166"/><text x="5.0678%" y="431.50"></text></g><g><title>Parse::do_field_access (61 samples, 0.02%)</title><rect x="4.8644%" y="421" width="0.0168%" height="15" fill="rgb(221,76,26)" fg:x="17622" fg:w="61"/><text x="5.1144%" y="431.50"></text></g><g><title>Parse::do_one_block (313 samples, 0.09%)</title><rect x="4.8090%" y="453" width="0.0864%" height="15" fill="rgb(225,139,18)" fg:x="17421" fg:w="313"/><text x="5.0590%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (304 samples, 0.08%)</title><rect x="4.8114%" y="437" width="0.0839%" height="15" fill="rgb(230,137,11)" fg:x="17430" fg:w="304"/><text x="5.0614%" y="447.50"></text></g><g><title>Parse::do_all_blocks (322 samples, 0.09%)</title><rect x="4.8084%" y="469" width="0.0889%" height="15" fill="rgb(212,28,1)" fg:x="17419" fg:w="322"/><text x="5.0584%" y="479.50"></text></g><g><title>ParseGenerator::generate (377 samples, 0.10%)</title><rect x="4.7996%" y="501" width="0.1041%" height="15" fill="rgb(248,164,17)" fg:x="17387" fg:w="377"/><text x="5.0496%" y="511.50"></text></g><g><title>Parse::Parse (376 samples, 0.10%)</title><rect x="4.7999%" y="485" width="0.1038%" height="15" fill="rgb(222,171,42)" fg:x="17388" fg:w="376"/><text x="5.0499%" y="495.50"></text></g><g><title>PredictedCallGenerator::generate (41 samples, 0.01%)</title><rect x="4.9036%" y="501" width="0.0113%" height="15" fill="rgb(243,84,45)" fg:x="17764" fg:w="41"/><text x="5.1536%" y="511.50"></text></g><g><title>Parse::do_call (542 samples, 0.15%)</title><rect x="4.7728%" y="517" width="0.1496%" height="15" fill="rgb(252,49,23)" fg:x="17290" fg:w="542"/><text x="5.0228%" y="527.50"></text></g><g><title>Parse::do_get_xxx (45 samples, 0.01%)</title><rect x="4.9268%" y="501" width="0.0124%" height="15" fill="rgb(215,19,7)" fg:x="17848" fg:w="45"/><text x="5.1768%" y="511.50"></text></g><g><title>GraphKit::access_store_at (42 samples, 0.01%)</title><rect x="4.9395%" y="485" width="0.0116%" height="15" fill="rgb(238,81,41)" fg:x="17894" fg:w="42"/><text x="5.1895%" y="495.50"></text></g><g><title>BarrierSetC2::store_at (42 samples, 0.01%)</title><rect x="4.9395%" y="469" width="0.0116%" height="15" fill="rgb(210,199,37)" fg:x="17894" fg:w="42"/><text x="5.1895%" y="479.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (38 samples, 0.01%)</title><rect x="4.9406%" y="453" width="0.0105%" height="15" fill="rgb(244,192,49)" fg:x="17898" fg:w="38"/><text x="5.1906%" y="463.50"></text></g><g><title>Parse::do_put_xxx (45 samples, 0.01%)</title><rect x="4.9393%" y="501" width="0.0124%" height="15" fill="rgb(226,211,11)" fg:x="17893" fg:w="45"/><text x="5.1893%" y="511.50"></text></g><g><title>Parse::do_field_access (110 samples, 0.03%)</title><rect x="4.9249%" y="517" width="0.0304%" height="15" fill="rgb(236,162,54)" fg:x="17841" fg:w="110"/><text x="5.1749%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (780 samples, 0.22%)</title><rect x="4.7631%" y="533" width="0.2153%" height="15" fill="rgb(220,229,9)" fg:x="17255" fg:w="780"/><text x="5.0131%" y="543.50"></text></g><g><title>Parse::do_one_block (796 samples, 0.22%)</title><rect x="4.7590%" y="549" width="0.2197%" height="15" fill="rgb(250,87,22)" fg:x="17240" fg:w="796"/><text x="5.0090%" y="559.50"></text></g><g><title>Parse::do_all_blocks (808 samples, 0.22%)</title><rect x="4.7587%" y="565" width="0.2230%" height="15" fill="rgb(239,43,17)" fg:x="17239" fg:w="808"/><text x="5.0087%" y="575.50"></text></g><g><title>ParseGenerator::generate (863 samples, 0.24%)</title><rect x="4.7493%" y="597" width="0.2382%" height="15" fill="rgb(231,177,25)" fg:x="17205" fg:w="863"/><text x="4.9993%" y="607.50"></text></g><g><title>Parse::Parse (861 samples, 0.24%)</title><rect x="4.7499%" y="581" width="0.2377%" height="15" fill="rgb(219,179,1)" fg:x="17207" fg:w="861"/><text x="4.9999%" y="591.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.01%)</title><rect x="4.9992%" y="437" width="0.0124%" height="15" fill="rgb(238,219,53)" fg:x="18110" fg:w="45"/><text x="5.2492%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="4.9994%" y="421" width="0.0121%" height="15" fill="rgb(232,167,36)" fg:x="18111" fg:w="44"/><text x="5.2494%" y="431.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.01%)</title><rect x="4.9992%" y="453" width="0.0127%" height="15" fill="rgb(244,19,51)" fg:x="18110" fg:w="46"/><text x="5.2492%" y="463.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.01%)</title><rect x="4.9981%" y="485" width="0.0149%" height="15" fill="rgb(224,6,22)" fg:x="18106" fg:w="54"/><text x="5.2481%" y="495.50"></text></g><g><title>Parse::Parse (54 samples, 0.01%)</title><rect x="4.9981%" y="469" width="0.0149%" height="15" fill="rgb(224,145,5)" fg:x="18106" fg:w="54"/><text x="5.2481%" y="479.50"></text></g><g><title>Parse::do_call (81 samples, 0.02%)</title><rect x="4.9934%" y="501" width="0.0224%" height="15" fill="rgb(234,130,49)" fg:x="18089" fg:w="81"/><text x="5.2434%" y="511.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.03%)</title><rect x="4.9925%" y="549" width="0.0304%" height="15" fill="rgb(254,6,2)" fg:x="18086" fg:w="110"/><text x="5.2425%" y="559.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.03%)</title><rect x="4.9928%" y="533" width="0.0301%" height="15" fill="rgb(208,96,46)" fg:x="18087" fg:w="109"/><text x="5.2428%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.03%)</title><rect x="4.9928%" y="517" width="0.0301%" height="15" fill="rgb(239,3,39)" fg:x="18087" fg:w="109"/><text x="5.2428%" y="527.50"></text></g><g><title>ParseGenerator::generate (123 samples, 0.03%)</title><rect x="4.9898%" y="581" width="0.0340%" height="15" fill="rgb(233,210,1)" fg:x="18076" fg:w="123"/><text x="5.2398%" y="591.50"></text></g><g><title>Parse::Parse (123 samples, 0.03%)</title><rect x="4.9898%" y="565" width="0.0340%" height="15" fill="rgb(244,137,37)" fg:x="18076" fg:w="123"/><text x="5.2398%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (160 samples, 0.04%)</title><rect x="4.9876%" y="597" width="0.0442%" height="15" fill="rgb(240,136,2)" fg:x="18068" fg:w="160"/><text x="5.2376%" y="607.50"></text></g><g><title>Parse::do_call (1,258 samples, 0.35%)</title><rect x="4.6905%" y="613" width="0.3473%" height="15" fill="rgb(239,18,37)" fg:x="16992" fg:w="1258"/><text x="4.9405%" y="623.50"></text></g><g><title>Parse::do_get_xxx (40 samples, 0.01%)</title><rect x="5.0417%" y="597" width="0.0110%" height="15" fill="rgb(218,185,22)" fg:x="18264" fg:w="40"/><text x="5.2917%" y="607.50"></text></g><g><title>GraphKit::access_store_at (63 samples, 0.02%)</title><rect x="5.0533%" y="581" width="0.0174%" height="15" fill="rgb(225,218,4)" fg:x="18306" fg:w="63"/><text x="5.3033%" y="591.50"></text></g><g><title>BarrierSetC2::store_at (63 samples, 0.02%)</title><rect x="5.0533%" y="565" width="0.0174%" height="15" fill="rgb(230,182,32)" fg:x="18306" fg:w="63"/><text x="5.3033%" y="575.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (61 samples, 0.02%)</title><rect x="5.0538%" y="549" width="0.0168%" height="15" fill="rgb(242,56,43)" fg:x="18308" fg:w="61"/><text x="5.3038%" y="559.50"></text></g><g><title>Parse::do_put_xxx (68 samples, 0.02%)</title><rect x="5.0527%" y="597" width="0.0188%" height="15" fill="rgb(233,99,24)" fg:x="18304" fg:w="68"/><text x="5.3027%" y="607.50"></text></g><g><title>Parse::do_field_access (114 samples, 0.03%)</title><rect x="5.0403%" y="613" width="0.0315%" height="15" fill="rgb(234,209,42)" fg:x="18259" fg:w="114"/><text x="5.2903%" y="623.50"></text></g><g><title>Parse::do_one_block (1,463 samples, 0.40%)</title><rect x="4.6801%" y="645" width="0.4039%" height="15" fill="rgb(227,7,12)" fg:x="16954" fg:w="1463"/><text x="4.9301%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (1,459 samples, 0.40%)</title><rect x="4.6812%" y="629" width="0.4027%" height="15" fill="rgb(245,203,43)" fg:x="16958" fg:w="1459"/><text x="4.9312%" y="639.50"></text></g><g><title>ParseGenerator::generate (1,473 samples, 0.41%)</title><rect x="4.6776%" y="693" width="0.4066%" height="15" fill="rgb(238,205,33)" fg:x="16945" fg:w="1473"/><text x="4.9276%" y="703.50"></text></g><g><title>Parse::Parse (1,473 samples, 0.41%)</title><rect x="4.6776%" y="677" width="0.4066%" height="15" fill="rgb(231,56,7)" fg:x="16945" fg:w="1473"/><text x="4.9276%" y="687.50"></text></g><g><title>Parse::do_all_blocks (1,464 samples, 0.40%)</title><rect x="4.6801%" y="661" width="0.4041%" height="15" fill="rgb(244,186,29)" fg:x="16954" fg:w="1464"/><text x="4.9301%" y="671.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.02%)</title><rect x="5.1181%" y="437" width="0.0171%" height="15" fill="rgb(234,111,31)" fg:x="18541" fg:w="62"/><text x="5.3681%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="5.1195%" y="421" width="0.0157%" height="15" fill="rgb(241,149,10)" fg:x="18546" fg:w="57"/><text x="5.3695%" y="431.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="5.1181%" y="453" width="0.0177%" height="15" fill="rgb(249,206,44)" fg:x="18541" fg:w="64"/><text x="5.3681%" y="463.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="5.1159%" y="485" width="0.0204%" height="15" fill="rgb(251,153,30)" fg:x="18533" fg:w="74"/><text x="5.3659%" y="495.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="5.1159%" y="469" width="0.0204%" height="15" fill="rgb(239,152,38)" fg:x="18533" fg:w="74"/><text x="5.3659%" y="479.50"></text></g><g><title>Parse::do_call (116 samples, 0.03%)</title><rect x="5.1068%" y="501" width="0.0320%" height="15" fill="rgb(249,139,47)" fg:x="18500" fg:w="116"/><text x="5.3568%" y="511.50"></text></g><g><title>Parse::do_one_block (174 samples, 0.05%)</title><rect x="5.1041%" y="533" width="0.0480%" height="15" fill="rgb(244,64,35)" fg:x="18490" fg:w="174"/><text x="5.3541%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.05%)</title><rect x="5.1043%" y="517" width="0.0478%" height="15" fill="rgb(216,46,15)" fg:x="18491" fg:w="173"/><text x="5.3543%" y="527.50"></text></g><g><title>Parse::do_all_blocks (178 samples, 0.05%)</title><rect x="5.1041%" y="549" width="0.0491%" height="15" fill="rgb(250,74,19)" fg:x="18490" fg:w="178"/><text x="5.3541%" y="559.50"></text></g><g><title>ParseGenerator::generate (200 samples, 0.06%)</title><rect x="5.1010%" y="581" width="0.0552%" height="15" fill="rgb(249,42,33)" fg:x="18479" fg:w="200"/><text x="5.3510%" y="591.50"></text></g><g><title>Parse::Parse (200 samples, 0.06%)</title><rect x="5.1010%" y="565" width="0.0552%" height="15" fill="rgb(242,149,17)" fg:x="18479" fg:w="200"/><text x="5.3510%" y="575.50"></text></g><g><title>Parse::do_call (279 samples, 0.08%)</title><rect x="5.0883%" y="597" width="0.0770%" height="15" fill="rgb(244,29,21)" fg:x="18433" fg:w="279"/><text x="5.3383%" y="607.50"></text></g><g><title>Parse::do_all_blocks (329 samples, 0.09%)</title><rect x="5.0856%" y="645" width="0.0908%" height="15" fill="rgb(220,130,37)" fg:x="18423" fg:w="329"/><text x="5.3356%" y="655.50"></text></g><g><title>Parse::do_one_block (329 samples, 0.09%)</title><rect x="5.0856%" y="629" width="0.0908%" height="15" fill="rgb(211,67,2)" fg:x="18423" fg:w="329"/><text x="5.3356%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (329 samples, 0.09%)</title><rect x="5.0856%" y="613" width="0.0908%" height="15" fill="rgb(235,68,52)" fg:x="18423" fg:w="329"/><text x="5.3356%" y="623.50"></text></g><g><title>ParseGenerator::generate (336 samples, 0.09%)</title><rect x="5.0845%" y="677" width="0.0928%" height="15" fill="rgb(246,142,3)" fg:x="18419" fg:w="336"/><text x="5.3345%" y="687.50"></text></g><g><title>Parse::Parse (336 samples, 0.09%)</title><rect x="5.0845%" y="661" width="0.0928%" height="15" fill="rgb(241,25,7)" fg:x="18419" fg:w="336"/><text x="5.3345%" y="671.50"></text></g><g><title>Parse::do_call (40 samples, 0.01%)</title><rect x="5.1783%" y="581" width="0.0110%" height="15" fill="rgb(242,119,39)" fg:x="18759" fg:w="40"/><text x="5.4283%" y="591.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="5.1778%" y="613" width="0.0146%" height="15" fill="rgb(241,98,45)" fg:x="18757" fg:w="53"/><text x="5.4278%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="5.1778%" y="597" width="0.0146%" height="15" fill="rgb(254,28,30)" fg:x="18757" fg:w="53"/><text x="5.4278%" y="607.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.01%)</title><rect x="5.1778%" y="629" width="0.0149%" height="15" fill="rgb(241,142,54)" fg:x="18757" fg:w="54"/><text x="5.4278%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (57 samples, 0.02%)</title><rect x="5.1772%" y="677" width="0.0157%" height="15" fill="rgb(222,85,15)" fg:x="18755" fg:w="57"/><text x="5.4272%" y="687.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.02%)</title><rect x="5.1772%" y="661" width="0.0157%" height="15" fill="rgb(210,85,47)" fg:x="18755" fg:w="57"/><text x="5.4272%" y="671.50"></text></g><g><title>Parse::Parse (57 samples, 0.02%)</title><rect x="5.1772%" y="645" width="0.0157%" height="15" fill="rgb(224,206,25)" fg:x="18755" fg:w="57"/><text x="5.4272%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (395 samples, 0.11%)</title><rect x="5.0842%" y="693" width="0.1090%" height="15" fill="rgb(243,201,19)" fg:x="18418" fg:w="395"/><text x="5.3342%" y="703.50"></text></g><g><title>Parse::do_call (2,053 samples, 0.57%)</title><rect x="4.6295%" y="709" width="0.5667%" height="15" fill="rgb(236,59,4)" fg:x="16771" fg:w="2053"/><text x="4.8795%" y="719.50"></text></g><g><title>C2Compiler::compile_method (2,082 samples, 0.57%)</title><rect x="4.6248%" y="821" width="0.5747%" height="15" fill="rgb(254,179,45)" fg:x="16754" fg:w="2082"/><text x="4.8748%" y="831.50"></text></g><g><title>Compile::Compile (2,082 samples, 0.57%)</title><rect x="4.6248%" y="805" width="0.5747%" height="15" fill="rgb(226,14,10)" fg:x="16754" fg:w="2082"/><text x="4.8748%" y="815.50"></text></g><g><title>ParseGenerator::generate (2,066 samples, 0.57%)</title><rect x="4.6293%" y="789" width="0.5703%" height="15" fill="rgb(244,27,41)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="799.50"></text></g><g><title>Parse::Parse (2,066 samples, 0.57%)</title><rect x="4.6293%" y="773" width="0.5703%" height="15" fill="rgb(235,35,32)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="783.50"></text></g><g><title>Parse::do_all_blocks (2,066 samples, 0.57%)</title><rect x="4.6293%" y="757" width="0.5703%" height="15" fill="rgb(218,68,31)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="767.50"></text></g><g><title>Parse::do_one_block (2,066 samples, 0.57%)</title><rect x="4.6293%" y="741" width="0.5703%" height="15" fill="rgb(207,120,37)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (2,066 samples, 0.57%)</title><rect x="4.6293%" y="725" width="0.5703%" height="15" fill="rgb(227,98,0)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="735.50"></text></g><g><title>MachSpillCopyNode::implementation (42 samples, 0.01%)</title><rect x="5.2009%" y="741" width="0.0116%" height="15" fill="rgb(207,7,3)" fg:x="18841" fg:w="42"/><text x="5.4509%" y="751.50"></text></g><g><title>Compile::Output (54 samples, 0.01%)</title><rect x="5.2004%" y="805" width="0.0149%" height="15" fill="rgb(206,98,19)" fg:x="18839" fg:w="54"/><text x="5.4504%" y="815.50"></text></g><g><title>Compile::init_buffer (54 samples, 0.01%)</title><rect x="5.2004%" y="789" width="0.0149%" height="15" fill="rgb(217,5,26)" fg:x="18839" fg:w="54"/><text x="5.4504%" y="799.50"></text></g><g><title>Compile::shorten_branches (52 samples, 0.01%)</title><rect x="5.2009%" y="773" width="0.0144%" height="15" fill="rgb(235,190,38)" fg:x="18841" fg:w="52"/><text x="5.4509%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (52 samples, 0.01%)</title><rect x="5.2009%" y="757" width="0.0144%" height="15" fill="rgb(247,86,24)" fg:x="18841" fg:w="52"/><text x="5.4509%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (39 samples, 0.01%)</title><rect x="5.2239%" y="773" width="0.0108%" height="15" fill="rgb(205,101,16)" fg:x="18924" fg:w="39"/><text x="5.4739%" y="783.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (39 samples, 0.01%)</title><rect x="5.2239%" y="757" width="0.0108%" height="15" fill="rgb(246,168,33)" fg:x="18924" fg:w="39"/><text x="5.4739%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (169 samples, 0.05%)</title><rect x="5.2346%" y="757" width="0.0467%" height="15" fill="rgb(231,114,1)" fg:x="18963" fg:w="169"/><text x="5.4846%" y="767.50"></text></g><g><title>PhaseCFG::schedule_local (170 samples, 0.05%)</title><rect x="5.2346%" y="773" width="0.0469%" height="15" fill="rgb(207,184,53)" fg:x="18963" fg:w="170"/><text x="5.4846%" y="783.50"></text></g><g><title>PhaseCFG::do_global_code_motion (214 samples, 0.06%)</title><rect x="5.2233%" y="805" width="0.0591%" height="15" fill="rgb(224,95,51)" fg:x="18922" fg:w="214"/><text x="5.4733%" y="815.50"></text></g><g><title>PhaseCFG::global_code_motion (214 samples, 0.06%)</title><rect x="5.2233%" y="789" width="0.0591%" height="15" fill="rgb(212,188,45)" fg:x="18922" fg:w="214"/><text x="5.4733%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (41 samples, 0.01%)</title><rect x="5.2860%" y="757" width="0.0113%" height="15" fill="rgb(223,154,38)" fg:x="19149" fg:w="41"/><text x="5.5360%" y="767.50"></text></g><g><title>PhaseChaitin::Split (55 samples, 0.02%)</title><rect x="5.2824%" y="789" width="0.0152%" height="15" fill="rgb(251,22,52)" fg:x="19136" fg:w="55"/><text x="5.5324%" y="799.50"></text></g><g><title>PhaseChaitin::split_USE (42 samples, 0.01%)</title><rect x="5.2860%" y="773" width="0.0116%" height="15" fill="rgb(229,209,22)" fg:x="19149" fg:w="42"/><text x="5.5360%" y="783.50"></text></g><g><title>Compile::Code_Gen (358 samples, 0.10%)</title><rect x="5.2004%" y="821" width="0.0988%" height="15" fill="rgb(234,138,34)" fg:x="18839" fg:w="358"/><text x="5.4504%" y="831.50"></text></g><g><title>PhaseChaitin::Register_Allocate (61 samples, 0.02%)</title><rect x="5.2824%" y="805" width="0.0168%" height="15" fill="rgb(212,95,11)" fg:x="19136" fg:w="61"/><text x="5.5324%" y="815.50"></text></g><g><title>OopFlow::build_oop_map (109 samples, 0.03%)</title><rect x="5.4466%" y="741" width="0.0301%" height="15" fill="rgb(240,179,47)" fg:x="19731" fg:w="109"/><text x="5.6966%" y="751.50"></text></g><g><title>OopFlow::compute_reach (194 samples, 0.05%)</title><rect x="5.4237%" y="757" width="0.0536%" height="15" fill="rgb(240,163,11)" fg:x="19648" fg:w="194"/><text x="5.6737%" y="767.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (64 samples, 0.02%)</title><rect x="5.4784%" y="757" width="0.0177%" height="15" fill="rgb(236,37,12)" fg:x="19846" fg:w="64"/><text x="5.7284%" y="767.50"></text></g><g><title>Compile::BuildOopMaps (705 samples, 0.19%)</title><rect x="5.3025%" y="773" width="0.1946%" height="15" fill="rgb(232,164,16)" fg:x="19209" fg:w="705"/><text x="5.5525%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (159 samples, 0.04%)</title><rect x="5.5515%" y="741" width="0.0439%" height="15" fill="rgb(244,205,15)" fg:x="20111" fg:w="159"/><text x="5.8015%" y="751.50"></text></g><g><title>Compile::init_buffer (382 samples, 0.11%)</title><rect x="5.4971%" y="773" width="0.1054%" height="15" fill="rgb(223,117,47)" fg:x="19914" fg:w="382"/><text x="5.7471%" y="783.50"></text></g><g><title>Compile::shorten_branches (328 samples, 0.09%)</title><rect x="5.5120%" y="757" width="0.0905%" height="15" fill="rgb(244,107,35)" fg:x="19968" fg:w="328"/><text x="5.7620%" y="767.50"></text></g><g><title>Compile::Output (1,096 samples, 0.30%)</title><rect x="5.3009%" y="789" width="0.3025%" height="15" fill="rgb(205,140,8)" fg:x="19203" fg:w="1096"/><text x="5.5509%" y="799.50"></text></g><g><title>Compile::FillLocArray (43 samples, 0.01%)</title><rect x="5.6484%" y="757" width="0.0119%" height="15" fill="rgb(228,84,46)" fg:x="20462" fg:w="43"/><text x="5.8984%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (42 samples, 0.01%)</title><rect x="5.6617%" y="757" width="0.0116%" height="15" fill="rgb(254,188,9)" fg:x="20510" fg:w="42"/><text x="5.9117%" y="767.50"></text></g><g><title>DebugInformationRecorder::describe_scope (44 samples, 0.01%)</title><rect x="5.6733%" y="757" width="0.0121%" height="15" fill="rgb(206,112,54)" fg:x="20552" fg:w="44"/><text x="5.9233%" y="767.50"></text></g><g><title>Compile::Process_OopMap_Node (202 samples, 0.06%)</title><rect x="5.6407%" y="773" width="0.0558%" height="15" fill="rgb(216,84,49)" fg:x="20434" fg:w="202"/><text x="5.8907%" y="783.50"></text></g><g><title>Compile::valid_bundle_info (51 samples, 0.01%)</title><rect x="5.6981%" y="773" width="0.0141%" height="15" fill="rgb(214,194,35)" fg:x="20642" fg:w="51"/><text x="5.9481%" y="783.50"></text></g><g><title>Compile::fill_buffer (495 samples, 0.14%)</title><rect x="5.6034%" y="789" width="0.1366%" height="15" fill="rgb(249,28,3)" fg:x="20299" fg:w="495"/><text x="5.8534%" y="799.50"></text></g><g><title>Matcher::init_first_stack_mask (38 samples, 0.01%)</title><rect x="5.7558%" y="757" width="0.0105%" height="15" fill="rgb(222,56,52)" fg:x="20851" fg:w="38"/><text x="6.0058%" y="767.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (52 samples, 0.01%)</title><rect x="5.7528%" y="773" width="0.0144%" height="15" fill="rgb(245,217,50)" fg:x="20840" fg:w="52"/><text x="6.0028%" y="783.50"></text></g><g><title>Matcher::find_shared (337 samples, 0.09%)</title><rect x="5.7671%" y="773" width="0.0930%" height="15" fill="rgb(213,201,24)" fg:x="20892" fg:w="337"/><text x="6.0171%" y="783.50"></text></g><g><title>Arena::contains (498 samples, 0.14%)</title><rect x="5.9570%" y="757" width="0.1375%" height="15" fill="rgb(248,116,28)" fg:x="21580" fg:w="498"/><text x="6.2070%" y="767.50"></text></g><g><title>Matcher::match_tree (114 samples, 0.03%)</title><rect x="6.1147%" y="741" width="0.0315%" height="15" fill="rgb(219,72,43)" fg:x="22151" fg:w="114"/><text x="6.3647%" y="751.50"></text></g><g><title>Matcher::match_sfpt (154 samples, 0.04%)</title><rect x="6.1072%" y="757" width="0.0425%" height="15" fill="rgb(209,138,14)" fg:x="22124" fg:w="154"/><text x="6.3572%" y="767.50"></text></g><g><title>Matcher::Label_Root (41 samples, 0.01%)</title><rect x="6.2554%" y="693" width="0.0113%" height="15" fill="rgb(222,18,33)" fg:x="22661" fg:w="41"/><text x="6.5054%" y="703.50"></text></g><g><title>State::DFA (50 samples, 0.01%)</title><rect x="6.2668%" y="693" width="0.0138%" height="15" fill="rgb(213,199,7)" fg:x="22702" fg:w="50"/><text x="6.5168%" y="703.50"></text></g><g><title>Matcher::Label_Root (118 samples, 0.03%)</title><rect x="6.2513%" y="709" width="0.0326%" height="15" fill="rgb(250,110,10)" fg:x="22646" fg:w="118"/><text x="6.5013%" y="719.50"></text></g><g><title>State::DFA (53 samples, 0.01%)</title><rect x="6.2847%" y="709" width="0.0146%" height="15" fill="rgb(248,123,6)" fg:x="22767" fg:w="53"/><text x="6.5347%" y="719.50"></text></g><g><title>Matcher::Label_Root (263 samples, 0.07%)</title><rect x="6.2287%" y="725" width="0.0726%" height="15" fill="rgb(206,91,31)" fg:x="22564" fg:w="263"/><text x="6.4787%" y="735.50"></text></g><g><title>State::DFA (39 samples, 0.01%)</title><rect x="6.3026%" y="725" width="0.0108%" height="15" fill="rgb(211,154,13)" fg:x="22832" fg:w="39"/><text x="6.5526%" y="735.50"></text></g><g><title>Matcher::Label_Root (408 samples, 0.11%)</title><rect x="6.2107%" y="741" width="0.1126%" height="15" fill="rgb(225,148,7)" fg:x="22499" fg:w="408"/><text x="6.4607%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (53 samples, 0.01%)</title><rect x="6.3424%" y="693" width="0.0146%" height="15" fill="rgb(220,160,43)" fg:x="22976" fg:w="53"/><text x="6.5924%" y="703.50"></text></g><g><title>Matcher::ReduceInst (103 samples, 0.03%)</title><rect x="6.3388%" y="709" width="0.0284%" height="15" fill="rgb(213,52,39)" fg:x="22963" fg:w="103"/><text x="6.5888%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (189 samples, 0.05%)</title><rect x="6.3336%" y="725" width="0.0522%" height="15" fill="rgb(243,137,7)" fg:x="22944" fg:w="189"/><text x="6.5836%" y="735.50"></text></g><g><title>State::MachNodeGenerator (55 samples, 0.02%)</title><rect x="6.3946%" y="725" width="0.0152%" height="15" fill="rgb(230,79,13)" fg:x="23165" fg:w="55"/><text x="6.6446%" y="735.50"></text></g><g><title>Matcher::ReduceInst (339 samples, 0.09%)</title><rect x="6.3233%" y="741" width="0.0936%" height="15" fill="rgb(247,105,23)" fg:x="22907" fg:w="339"/><text x="6.5733%" y="751.50"></text></g><g><title>Matcher::match_tree (980 samples, 0.27%)</title><rect x="6.1497%" y="757" width="0.2705%" height="15" fill="rgb(223,179,41)" fg:x="22278" fg:w="980"/><text x="6.3997%" y="767.50"></text></g><g><title>Node::clone (77 samples, 0.02%)</title><rect x="6.4222%" y="757" width="0.0213%" height="15" fill="rgb(218,9,34)" fg:x="23265" fg:w="77"/><text x="6.6722%" y="767.50"></text></g><g><title>Node::out_grow (44 samples, 0.01%)</title><rect x="6.4440%" y="757" width="0.0121%" height="15" fill="rgb(222,106,8)" fg:x="23344" fg:w="44"/><text x="6.6940%" y="767.50"></text></g><g><title>Matcher::xform (2,153 samples, 0.59%)</title><rect x="5.8637%" y="773" width="0.5943%" height="15" fill="rgb(211,220,0)" fg:x="21242" fg:w="2153"/><text x="6.1137%" y="783.50"></text></g><g><title>Matcher::match (2,598 samples, 0.72%)</title><rect x="5.7434%" y="789" width="0.7172%" height="15" fill="rgb(229,52,16)" fg:x="20806" fg:w="2598"/><text x="5.9934%" y="799.50"></text></g><g><title>PhaseBlockLayout::find_edges (79 samples, 0.02%)</title><rect x="6.4627%" y="773" width="0.0218%" height="15" fill="rgb(212,155,18)" fg:x="23412" fg:w="79"/><text x="6.7127%" y="783.50"></text></g><g><title>PhaseBlockLayout::grow_traces (53 samples, 0.01%)</title><rect x="6.4846%" y="773" width="0.0146%" height="15" fill="rgb(242,21,14)" fg:x="23491" fg:w="53"/><text x="6.7346%" y="783.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (174 samples, 0.05%)</title><rect x="6.4608%" y="789" width="0.0480%" height="15" fill="rgb(222,19,48)" fg:x="23405" fg:w="174"/><text x="6.7108%" y="799.50"></text></g><g><title>PhaseCFG::PhaseCFG (143 samples, 0.04%)</title><rect x="6.5088%" y="789" width="0.0395%" height="15" fill="rgb(232,45,27)" fg:x="23579" fg:w="143"/><text x="6.7588%" y="799.50"></text></g><g><title>PhaseCFG::build_cfg (134 samples, 0.04%)</title><rect x="6.5113%" y="773" width="0.0370%" height="15" fill="rgb(249,103,42)" fg:x="23588" fg:w="134"/><text x="6.7613%" y="783.50"></text></g><g><title>PhaseCFG::build_dominator_tree (84 samples, 0.02%)</title><rect x="6.5489%" y="773" width="0.0232%" height="15" fill="rgb(246,81,33)" fg:x="23724" fg:w="84"/><text x="6.7989%" y="783.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (53 samples, 0.01%)</title><rect x="6.5721%" y="773" width="0.0146%" height="15" fill="rgb(252,33,42)" fg:x="23808" fg:w="53"/><text x="6.8221%" y="783.50"></text></g><g><title>PhaseCFG::implicit_null_check (59 samples, 0.02%)</title><rect x="6.6819%" y="757" width="0.0163%" height="15" fill="rgb(209,212,41)" fg:x="24206" fg:w="59"/><text x="6.9319%" y="767.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (41 samples, 0.01%)</title><rect x="6.6999%" y="757" width="0.0113%" height="15" fill="rgb(207,154,6)" fg:x="24271" fg:w="41"/><text x="6.9499%" y="767.50"></text></g><g><title>Node_Backward_Iterator::next (212 samples, 0.06%)</title><rect x="6.7427%" y="741" width="0.0585%" height="15" fill="rgb(223,64,47)" fg:x="24426" fg:w="212"/><text x="6.9927%" y="751.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (104 samples, 0.03%)</title><rect x="6.8012%" y="741" width="0.0287%" height="15" fill="rgb(211,161,38)" fg:x="24638" fg:w="104"/><text x="7.0512%" y="751.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (139 samples, 0.04%)</title><rect x="6.8299%" y="741" width="0.0384%" height="15" fill="rgb(219,138,40)" fg:x="24742" fg:w="139"/><text x="7.0799%" y="751.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (61 samples, 0.02%)</title><rect x="6.8683%" y="741" width="0.0168%" height="15" fill="rgb(241,228,46)" fg:x="24881" fg:w="61"/><text x="7.1183%" y="751.50"></text></g><g><title>PhaseCFG::schedule_late (633 samples, 0.17%)</title><rect x="6.7112%" y="757" width="0.1747%" height="15" fill="rgb(223,209,38)" fg:x="24312" fg:w="633"/><text x="6.9612%" y="767.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (64 samples, 0.02%)</title><rect x="6.9544%" y="741" width="0.0177%" height="15" fill="rgb(236,164,45)" fg:x="25193" fg:w="64"/><text x="7.2044%" y="751.50"></text></g><g><title>PhaseCFG::select (98 samples, 0.03%)</title><rect x="6.9767%" y="741" width="0.0271%" height="15" fill="rgb(231,15,5)" fg:x="25274" fg:w="98"/><text x="7.2267%" y="751.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (55 samples, 0.02%)</title><rect x="7.0038%" y="741" width="0.0152%" height="15" fill="rgb(252,35,15)" fg:x="25372" fg:w="55"/><text x="7.2538%" y="751.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (55 samples, 0.02%)</title><rect x="7.0190%" y="741" width="0.0152%" height="15" fill="rgb(248,181,18)" fg:x="25427" fg:w="55"/><text x="7.2690%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (547 samples, 0.15%)</title><rect x="6.8859%" y="757" width="0.1510%" height="15" fill="rgb(233,39,42)" fg:x="24945" fg:w="547"/><text x="7.1359%" y="767.50"></text></g><g><title>RegMask::Size (96 samples, 0.03%)</title><rect x="7.1186%" y="741" width="0.0265%" height="15" fill="rgb(238,110,33)" fg:x="25788" fg:w="96"/><text x="7.3686%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (420 samples, 0.12%)</title><rect x="7.0493%" y="757" width="0.1159%" height="15" fill="rgb(233,195,10)" fg:x="25537" fg:w="420"/><text x="7.2993%" y="767.50"></text></g><g><title>PhaseChaitin::mark_ssa (84 samples, 0.02%)</title><rect x="7.1653%" y="757" width="0.0232%" height="15" fill="rgb(254,105,3)" fg:x="25957" fg:w="84"/><text x="7.4153%" y="767.50"></text></g><g><title>IndexSet::initialize (101 samples, 0.03%)</title><rect x="7.2012%" y="741" width="0.0279%" height="15" fill="rgb(221,225,9)" fg:x="26087" fg:w="101"/><text x="7.4512%" y="751.50"></text></g><g><title>PhaseIFG::init (184 samples, 0.05%)</title><rect x="7.1885%" y="757" width="0.0508%" height="15" fill="rgb(224,227,45)" fg:x="26041" fg:w="184"/><text x="7.4385%" y="767.50"></text></g><g><title>[libc-2.31.so] (37 samples, 0.01%)</title><rect x="7.2290%" y="741" width="0.0102%" height="15" fill="rgb(229,198,43)" fg:x="26188" fg:w="37"/><text x="7.4790%" y="751.50"></text></g><g><title>IndexSet::initialize (54 samples, 0.01%)</title><rect x="7.2978%" y="741" width="0.0149%" height="15" fill="rgb(206,209,35)" fg:x="26437" fg:w="54"/><text x="7.5478%" y="751.50"></text></g><g><title>PhaseLive::add_livein (181 samples, 0.05%)</title><rect x="7.3132%" y="741" width="0.0500%" height="15" fill="rgb(245,195,53)" fg:x="26493" fg:w="181"/><text x="7.5632%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (65 samples, 0.02%)</title><rect x="7.3453%" y="725" width="0.0179%" height="15" fill="rgb(240,92,26)" fg:x="26609" fg:w="65"/><text x="7.5953%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (64 samples, 0.02%)</title><rect x="7.4107%" y="725" width="0.0177%" height="15" fill="rgb(207,40,23)" fg:x="26846" fg:w="64"/><text x="7.6607%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (106 samples, 0.03%)</title><rect x="7.4336%" y="725" width="0.0293%" height="15" fill="rgb(223,111,35)" fg:x="26929" fg:w="106"/><text x="7.6836%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (366 samples, 0.10%)</title><rect x="7.3632%" y="741" width="0.1010%" height="15" fill="rgb(229,147,28)" fg:x="26674" fg:w="366"/><text x="7.6132%" y="751.50"></text></g><g><title>PhaseLive::compute (818 samples, 0.23%)</title><rect x="7.2393%" y="757" width="0.2258%" height="15" fill="rgb(211,29,28)" fg:x="26225" fg:w="818"/><text x="7.4893%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,344 samples, 0.92%)</title><rect x="6.5483%" y="789" width="0.9231%" height="15" fill="rgb(228,72,33)" fg:x="23722" fg:w="3344"/><text x="6.7983%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (3,205 samples, 0.88%)</title><rect x="6.5867%" y="773" width="0.8847%" height="15" fill="rgb(205,214,31)" fg:x="23861" fg:w="3205"/><text x="6.8367%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (63 samples, 0.02%)</title><rect x="7.4778%" y="789" width="0.0174%" height="15" fill="rgb(224,111,15)" fg:x="27089" fg:w="63"/><text x="7.7278%" y="799.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (993 samples, 0.27%)</title><rect x="7.5313%" y="773" width="0.2741%" height="15" fill="rgb(253,21,26)" fg:x="27283" fg:w="993"/><text x="7.7813%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (298 samples, 0.08%)</title><rect x="7.9542%" y="757" width="0.0823%" height="15" fill="rgb(245,139,43)" fg:x="28815" fg:w="298"/><text x="8.2042%" y="767.50"></text></g><g><title>RegMask::find_first_set (39 samples, 0.01%)</title><rect x="8.0682%" y="741" width="0.0108%" height="15" fill="rgb(252,170,7)" fg:x="29228" fg:w="39"/><text x="8.3182%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (173 samples, 0.05%)</title><rect x="8.0365%" y="757" width="0.0478%" height="15" fill="rgb(231,118,14)" fg:x="29113" fg:w="173"/><text x="8.2865%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (52 samples, 0.01%)</title><rect x="8.1698%" y="741" width="0.0144%" height="15" fill="rgb(238,83,0)" fg:x="29596" fg:w="52"/><text x="8.4198%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (63 samples, 0.02%)</title><rect x="8.1842%" y="741" width="0.0174%" height="15" fill="rgb(221,39,39)" fg:x="29648" fg:w="63"/><text x="8.4342%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (334 samples, 0.09%)</title><rect x="8.2015%" y="741" width="0.0922%" height="15" fill="rgb(222,119,46)" fg:x="29711" fg:w="334"/><text x="8.4515%" y="751.50"></text></g><g><title>PhaseIFG::re_insert (763 samples, 0.21%)</title><rect x="8.0867%" y="757" width="0.2106%" height="15" fill="rgb(222,165,49)" fg:x="29295" fg:w="763"/><text x="8.3367%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (162 samples, 0.04%)</title><rect x="8.2973%" y="757" width="0.0447%" height="15" fill="rgb(219,113,52)" fg:x="30058" fg:w="162"/><text x="8.5473%" y="767.50"></text></g><g><title>PhaseChaitin::Select (1,958 samples, 0.54%)</title><rect x="7.8054%" y="773" width="0.5405%" height="15" fill="rgb(214,7,15)" fg:x="28276" fg:w="1958"/><text x="8.0554%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (328 samples, 0.09%)</title><rect x="8.4202%" y="757" width="0.0905%" height="15" fill="rgb(235,32,4)" fg:x="30503" fg:w="328"/><text x="8.6702%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (63 samples, 0.02%)</title><rect x="8.6173%" y="741" width="0.0174%" height="15" fill="rgb(238,90,54)" fg:x="31217" fg:w="63"/><text x="8.8673%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (393 samples, 0.11%)</title><rect x="8.6347%" y="741" width="0.1085%" height="15" fill="rgb(213,208,19)" fg:x="31280" fg:w="393"/><text x="8.8847%" y="751.50"></text></g><g><title>PhaseChaitin::Simplify (1,441 samples, 0.40%)</title><rect x="8.3459%" y="773" width="0.3978%" height="15" fill="rgb(233,156,4)" fg:x="30234" fg:w="1441"/><text x="8.5959%" y="783.50"></text></g><g><title>PhaseIFG::remove_node (844 samples, 0.23%)</title><rect x="8.5107%" y="757" width="0.2330%" height="15" fill="rgb(207,194,5)" fg:x="30831" fg:w="844"/><text x="8.7607%" y="767.50"></text></g><g><title>CProjNode::is_block_proj (42 samples, 0.01%)</title><rect x="9.3946%" y="757" width="0.0116%" height="15" fill="rgb(206,111,30)" fg:x="34033" fg:w="42"/><text x="9.6446%" y="767.50"></text></g><g><title>MachNode::rematerialize (161 samples, 0.04%)</title><rect x="9.4170%" y="757" width="0.0444%" height="15" fill="rgb(243,70,54)" fg:x="34114" fg:w="161"/><text x="9.6670%" y="767.50"></text></g><g><title>Node::rematerialize (116 samples, 0.03%)</title><rect x="9.4700%" y="757" width="0.0320%" height="15" fill="rgb(242,28,8)" fg:x="34306" fg:w="116"/><text x="9.7200%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (62 samples, 0.02%)</title><rect x="9.5475%" y="741" width="0.0171%" height="15" fill="rgb(219,106,18)" fg:x="34587" fg:w="62"/><text x="9.7975%" y="751.50"></text></g><g><title>PhaseChaitin::split_USE (141 samples, 0.04%)</title><rect x="9.5324%" y="757" width="0.0389%" height="15" fill="rgb(244,222,10)" fg:x="34532" fg:w="141"/><text x="9.7824%" y="767.50"></text></g><g><title>PhaseChaitin::Split (3,061 samples, 0.84%)</title><rect x="8.7437%" y="773" width="0.8450%" height="15" fill="rgb(236,179,52)" fg:x="31675" fg:w="3061"/><text x="8.9937%" y="783.50"></text></g><g><title>IndexSet::IndexSet (237 samples, 0.07%)</title><rect x="9.8164%" y="757" width="0.0654%" height="15" fill="rgb(213,23,39)" fg:x="35561" fg:w="237"/><text x="10.0664%" y="767.50"></text></g><g><title>MachNode::rematerialize (63 samples, 0.02%)</title><rect x="9.8849%" y="757" width="0.0174%" height="15" fill="rgb(238,48,10)" fg:x="35809" fg:w="63"/><text x="10.1349%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.01%)</title><rect x="10.0265%" y="741" width="0.0108%" height="15" fill="rgb(251,196,23)" fg:x="36322" fg:w="39"/><text x="10.2765%" y="751.50"></text></g><g><title>MachNode::rematerialize (92 samples, 0.03%)</title><rect x="10.0461%" y="741" width="0.0254%" height="15" fill="rgb(250,152,24)" fg:x="36393" fg:w="92"/><text x="10.2961%" y="751.50"></text></g><g><title>PhaseChaitin::raise_pressure (152 samples, 0.04%)</title><rect x="10.0745%" y="741" width="0.0420%" height="15" fill="rgb(209,150,17)" fg:x="36496" fg:w="152"/><text x="10.3245%" y="751.50"></text></g><g><title>RegMask::is_UP (74 samples, 0.02%)</title><rect x="10.0960%" y="725" width="0.0204%" height="15" fill="rgb(234,202,34)" fg:x="36574" fg:w="74"/><text x="10.3460%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (758 samples, 0.21%)</title><rect x="9.9086%" y="757" width="0.2092%" height="15" fill="rgb(253,148,53)" fg:x="35895" fg:w="758"/><text x="10.1586%" y="767.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (45 samples, 0.01%)</title><rect x="10.1264%" y="757" width="0.0124%" height="15" fill="rgb(218,129,16)" fg:x="36684" fg:w="45"/><text x="10.3764%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (155 samples, 0.04%)</title><rect x="10.2092%" y="741" width="0.0428%" height="15" fill="rgb(216,85,19)" fg:x="36984" fg:w="155"/><text x="10.4592%" y="751.50"></text></g><g><title>RegMask::is_UP (88 samples, 0.02%)</title><rect x="10.2520%" y="741" width="0.0243%" height="15" fill="rgb(235,228,7)" fg:x="37139" fg:w="88"/><text x="10.5020%" y="751.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (501 samples, 0.14%)</title><rect x="10.1388%" y="757" width="0.1383%" height="15" fill="rgb(245,175,0)" fg:x="36729" fg:w="501"/><text x="10.3888%" y="767.50"></text></g><g><title>__tls_get_addr (37 samples, 0.01%)</title><rect x="10.7925%" y="725" width="0.0102%" height="15" fill="rgb(208,168,36)" fg:x="39097" fg:w="37"/><text x="11.0425%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (123 samples, 0.03%)</title><rect x="10.7696%" y="741" width="0.0340%" height="15" fill="rgb(246,171,24)" fg:x="39014" fg:w="123"/><text x="11.0196%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (866 samples, 0.24%)</title><rect x="10.8041%" y="741" width="0.2391%" height="15" fill="rgb(215,142,24)" fg:x="39139" fg:w="866"/><text x="11.0541%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,780 samples, 0.77%)</title><rect x="10.2771%" y="757" width="0.7674%" height="15" fill="rgb(250,187,7)" fg:x="37230" fg:w="2780"/><text x="10.5271%" y="767.50"></text></g><g><title>PhaseChaitin::lower_pressure (103 samples, 0.03%)</title><rect x="11.0445%" y="757" width="0.0284%" height="15" fill="rgb(228,66,33)" fg:x="40010" fg:w="103"/><text x="11.2945%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (222 samples, 0.06%)</title><rect x="11.2176%" y="741" width="0.0613%" height="15" fill="rgb(234,215,21)" fg:x="40637" fg:w="222"/><text x="11.4676%" y="751.50"></text></g><g><title>RegMask::Size (300 samples, 0.08%)</title><rect x="11.2789%" y="741" width="0.0828%" height="15" fill="rgb(222,191,20)" fg:x="40859" fg:w="300"/><text x="11.5289%" y="751.50"></text></g><g><title>RegMask::smear_to_sets (674 samples, 0.19%)</title><rect x="11.3617%" y="741" width="0.1861%" height="15" fill="rgb(245,79,54)" fg:x="41159" fg:w="674"/><text x="11.6117%" y="751.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,728 samples, 0.48%)</title><rect x="11.0730%" y="757" width="0.4770%" height="15" fill="rgb(240,10,37)" fg:x="40113" fg:w="1728"/><text x="11.3230%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,187 samples, 1.98%)</title><rect x="9.5892%" y="773" width="1.9839%" height="15" fill="rgb(214,192,32)" fg:x="34738" fg:w="7187"/><text x="9.8392%" y="783.50">P..</text></g><g><title>IndexSetIterator::advance_and_next (62 samples, 0.02%)</title><rect x="11.6825%" y="741" width="0.0171%" height="15" fill="rgb(209,36,54)" fg:x="42321" fg:w="62"/><text x="11.9325%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (322 samples, 0.09%)</title><rect x="11.6110%" y="757" width="0.0889%" height="15" fill="rgb(220,10,11)" fg:x="42062" fg:w="322"/><text x="11.8610%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (462 samples, 0.13%)</title><rect x="11.5731%" y="773" width="0.1275%" height="15" fill="rgb(221,106,17)" fg:x="41925" fg:w="462"/><text x="11.8231%" y="783.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (121 samples, 0.03%)</title><rect x="11.7007%" y="773" width="0.0334%" height="15" fill="rgb(251,142,44)" fg:x="42387" fg:w="121"/><text x="11.9507%" y="783.50"></text></g><g><title>PhaseChaitin::de_ssa (80 samples, 0.02%)</title><rect x="11.7435%" y="773" width="0.0221%" height="15" fill="rgb(238,13,15)" fg:x="42542" fg:w="80"/><text x="11.9935%" y="783.50"></text></g><g><title>PhaseChaitin::fixup_spills (62 samples, 0.02%)</title><rect x="11.7658%" y="773" width="0.0171%" height="15" fill="rgb(208,107,27)" fg:x="42623" fg:w="62"/><text x="12.0158%" y="783.50"></text></g><g><title>MachCallJavaNode::in_RegMask (67 samples, 0.02%)</title><rect x="12.2398%" y="757" width="0.0185%" height="15" fill="rgb(205,136,37)" fg:x="44340" fg:w="67"/><text x="12.4898%" y="767.50"></text></g><g><title>MachNode::ideal_reg (69 samples, 0.02%)</title><rect x="12.2594%" y="757" width="0.0190%" height="15" fill="rgb(250,205,27)" fg:x="44411" fg:w="69"/><text x="12.5094%" y="767.50"></text></g><g><title>MachNode::in_RegMask (77 samples, 0.02%)</title><rect x="12.2784%" y="757" width="0.0213%" height="15" fill="rgb(210,80,43)" fg:x="44480" fg:w="77"/><text x="12.5284%" y="767.50"></text></g><g><title>PhiNode::in_RegMask (39 samples, 0.01%)</title><rect x="12.3152%" y="757" width="0.0108%" height="15" fill="rgb(247,160,36)" fg:x="44613" fg:w="39"/><text x="12.5652%" y="767.50"></text></g><g><title>RegMask::Size (1,160 samples, 0.32%)</title><rect x="12.3309%" y="757" width="0.3202%" height="15" fill="rgb(234,13,49)" fg:x="44670" fg:w="1160"/><text x="12.5809%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (187 samples, 0.05%)</title><rect x="12.6511%" y="757" width="0.0516%" height="15" fill="rgb(234,122,0)" fg:x="45830" fg:w="187"/><text x="12.9011%" y="767.50"></text></g><g><title>RegMask::is_aligned_pairs (92 samples, 0.03%)</title><rect x="12.7027%" y="757" width="0.0254%" height="15" fill="rgb(207,146,38)" fg:x="46017" fg:w="92"/><text x="12.9527%" y="767.50"></text></g><g><title>RegMask::is_bound1 (130 samples, 0.04%)</title><rect x="12.7281%" y="757" width="0.0359%" height="15" fill="rgb(207,177,25)" fg:x="46109" fg:w="130"/><text x="12.9781%" y="767.50"></text></g><g><title>RegMask::is_bound_pair (91 samples, 0.03%)</title><rect x="12.7640%" y="757" width="0.0251%" height="15" fill="rgb(211,178,42)" fg:x="46239" fg:w="91"/><text x="13.0140%" y="767.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,792 samples, 1.05%)</title><rect x="11.7829%" y="773" width="1.0468%" height="15" fill="rgb(230,69,54)" fg:x="42685" fg:w="3792"/><text x="12.0329%" y="783.50"></text></g><g><title>PhaseChaitin::merge_multidefs (464 samples, 0.13%)</title><rect x="12.8297%" y="773" width="0.1281%" height="15" fill="rgb(214,135,41)" fg:x="46477" fg:w="464"/><text x="13.0797%" y="783.50"></text></g><g><title>PhaseChaitin::use_prior_register (90 samples, 0.02%)</title><rect x="13.9088%" y="741" width="0.0248%" height="15" fill="rgb(237,67,25)" fg:x="50386" fg:w="90"/><text x="14.1588%" y="751.50"></text></g><g><title>PhaseChaitin::elide_copy (1,900 samples, 0.52%)</title><rect x="13.4221%" y="757" width="0.5245%" height="15" fill="rgb(222,189,50)" fg:x="48623" fg:w="1900"/><text x="13.6721%" y="767.50"></text></g><g><title>[libc-2.31.so] (67 samples, 0.02%)</title><rect x="13.9576%" y="757" width="0.0185%" height="15" fill="rgb(245,148,34)" fg:x="50563" fg:w="67"/><text x="14.2076%" y="767.50"></text></g><g><title>find_lowest_bit (303 samples, 0.08%)</title><rect x="13.9794%" y="757" width="0.0836%" height="15" fill="rgb(222,29,6)" fg:x="50642" fg:w="303"/><text x="14.2294%" y="767.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,007 samples, 1.11%)</title><rect x="12.9578%" y="773" width="1.1061%" height="15" fill="rgb(221,189,43)" fg:x="46941" fg:w="4007"/><text x="13.2078%" y="783.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (191 samples, 0.05%)</title><rect x="14.0639%" y="773" width="0.0527%" height="15" fill="rgb(207,36,27)" fg:x="50948" fg:w="191"/><text x="14.3139%" y="783.50"></text></g><g><title>PhaseCoalesce::combine_these_two (72 samples, 0.02%)</title><rect x="14.1393%" y="741" width="0.0199%" height="15" fill="rgb(217,90,24)" fg:x="51221" fg:w="72"/><text x="14.3893%" y="751.50"></text></g><g><title>PhaseIFG::Union (53 samples, 0.01%)</title><rect x="14.1445%" y="725" width="0.0146%" height="15" fill="rgb(224,66,35)" fg:x="51240" fg:w="53"/><text x="14.3945%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (149 samples, 0.04%)</title><rect x="14.1183%" y="757" width="0.0411%" height="15" fill="rgb(221,13,50)" fg:x="51145" fg:w="149"/><text x="14.3683%" y="767.50"></text></g><g><title>PhaseCFG::is_uncommon (117 samples, 0.03%)</title><rect x="14.1707%" y="741" width="0.0323%" height="15" fill="rgb(236,68,49)" fg:x="51335" fg:w="117"/><text x="14.4207%" y="751.50"></text></g><g><title>IndexSet::lrg_union (260 samples, 0.07%)</title><rect x="14.2152%" y="725" width="0.0718%" height="15" fill="rgb(229,146,28)" fg:x="51496" fg:w="260"/><text x="14.4652%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (265 samples, 0.07%)</title><rect x="14.2905%" y="725" width="0.0732%" height="15" fill="rgb(225,31,38)" fg:x="51769" fg:w="265"/><text x="14.5405%" y="735.50"></text></g><g><title>PhaseIFG::effective_degree (71 samples, 0.02%)</title><rect x="14.3637%" y="725" width="0.0196%" height="15" fill="rgb(250,208,3)" fg:x="52034" fg:w="71"/><text x="14.6137%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (680 samples, 0.19%)</title><rect x="14.2030%" y="741" width="0.1877%" height="15" fill="rgb(246,54,23)" fg:x="51452" fg:w="680"/><text x="14.4530%" y="751.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (994 samples, 0.27%)</title><rect x="14.1166%" y="773" width="0.2744%" height="15" fill="rgb(243,76,11)" fg:x="51139" fg:w="994"/><text x="14.3666%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (839 samples, 0.23%)</title><rect x="14.1594%" y="757" width="0.2316%" height="15" fill="rgb(245,21,50)" fg:x="51294" fg:w="839"/><text x="14.4094%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (42 samples, 0.01%)</title><rect x="14.4942%" y="757" width="0.0116%" height="15" fill="rgb(228,9,43)" fg:x="52507" fg:w="42"/><text x="14.7442%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (445 samples, 0.12%)</title><rect x="14.5058%" y="757" width="0.1228%" height="15" fill="rgb(208,100,47)" fg:x="52549" fg:w="445"/><text x="14.7558%" y="767.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (862 samples, 0.24%)</title><rect x="14.3910%" y="773" width="0.2379%" height="15" fill="rgb(232,26,8)" fg:x="52133" fg:w="862"/><text x="14.6410%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (65 samples, 0.02%)</title><rect x="14.7170%" y="757" width="0.0179%" height="15" fill="rgb(216,166,38)" fg:x="53314" fg:w="65"/><text x="14.9670%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (76 samples, 0.02%)</title><rect x="14.7350%" y="757" width="0.0210%" height="15" fill="rgb(251,202,51)" fg:x="53379" fg:w="76"/><text x="14.9850%" y="767.50"></text></g><g><title>PhaseIFG::SquareUp (842 samples, 0.23%)</title><rect x="14.6290%" y="773" width="0.2324%" height="15" fill="rgb(254,216,34)" fg:x="52995" fg:w="842"/><text x="14.8790%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (382 samples, 0.11%)</title><rect x="14.7559%" y="757" width="0.1054%" height="15" fill="rgb(251,32,27)" fg:x="53455" fg:w="382"/><text x="15.0059%" y="767.50"></text></g><g><title>IndexSet::initialize (191 samples, 0.05%)</title><rect x="14.8929%" y="757" width="0.0527%" height="15" fill="rgb(208,127,28)" fg:x="53951" fg:w="191"/><text x="15.1429%" y="767.50"></text></g><g><title>[libc-2.31.so] (54 samples, 0.01%)</title><rect x="14.9456%" y="757" width="0.0149%" height="15" fill="rgb(224,137,22)" fg:x="54142" fg:w="54"/><text x="15.1956%" y="767.50"></text></g><g><title>PhaseIFG::init (360 samples, 0.10%)</title><rect x="14.8614%" y="773" width="0.0994%" height="15" fill="rgb(254,70,32)" fg:x="53837" fg:w="360"/><text x="15.1114%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (63 samples, 0.02%)</title><rect x="15.2630%" y="757" width="0.0174%" height="15" fill="rgb(229,75,37)" fg:x="55292" fg:w="63"/><text x="15.5130%" y="767.50"></text></g><g><title>IndexSet::free_block (42 samples, 0.01%)</title><rect x="15.2804%" y="757" width="0.0116%" height="15" fill="rgb(252,64,23)" fg:x="55355" fg:w="42"/><text x="15.5304%" y="767.50"></text></g><g><title>IndexSet::initialize (104 samples, 0.03%)</title><rect x="15.2920%" y="757" width="0.0287%" height="15" fill="rgb(232,162,48)" fg:x="55397" fg:w="104"/><text x="15.5420%" y="767.50"></text></g><g><title>__tls_get_addr (76 samples, 0.02%)</title><rect x="15.5462%" y="725" width="0.0210%" height="15" fill="rgb(246,160,12)" fg:x="56318" fg:w="76"/><text x="15.7962%" y="735.50"></text></g><g><title>update_get_addr (43 samples, 0.01%)</title><rect x="15.5554%" y="709" width="0.0119%" height="15" fill="rgb(247,166,0)" fg:x="56351" fg:w="43"/><text x="15.8054%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (226 samples, 0.06%)</title><rect x="15.5057%" y="741" width="0.0624%" height="15" fill="rgb(249,219,21)" fg:x="56171" fg:w="226"/><text x="15.7557%" y="751.50"></text></g><g><title>IndexSet::initialize (44 samples, 0.01%)</title><rect x="15.5681%" y="741" width="0.0121%" height="15" fill="rgb(205,209,3)" fg:x="56397" fg:w="44"/><text x="15.8181%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (313 samples, 0.09%)</title><rect x="15.5821%" y="741" width="0.0864%" height="15" fill="rgb(243,44,1)" fg:x="56448" fg:w="313"/><text x="15.8321%" y="751.50"></text></g><g><title>PhaseLive::add_liveout (1,271 samples, 0.35%)</title><rect x="15.3207%" y="757" width="0.3509%" height="15" fill="rgb(206,159,16)" fg:x="55501" fg:w="1271"/><text x="15.5707%" y="767.50"></text></g><g><title>PhaseLive::compute (2,584 samples, 0.71%)</title><rect x="14.9616%" y="773" width="0.7133%" height="15" fill="rgb(244,77,30)" fg:x="54200" fg:w="2584"/><text x="15.2116%" y="783.50"></text></g><g><title>RegMask::Size (57 samples, 0.02%)</title><rect x="15.6760%" y="773" width="0.0157%" height="15" fill="rgb(218,69,12)" fg:x="56788" fg:w="57"/><text x="15.9260%" y="783.50"></text></g><g><title>find_lowest_bit (46 samples, 0.01%)</title><rect x="15.7000%" y="773" width="0.0127%" height="15" fill="rgb(212,87,7)" fg:x="56875" fg:w="46"/><text x="15.9500%" y="783.50"></text></g><g><title>PhaseChaitin::Register_Allocate (29,766 samples, 8.22%)</title><rect x="7.4990%" y="789" width="8.2167%" height="15" fill="rgb(245,114,25)" fg:x="27166" fg:w="29766"/><text x="7.7490%" y="799.50">PhaseChaiti..</text></g><g><title>PhasePeephole::do_transform (39 samples, 0.01%)</title><rect x="15.7168%" y="789" width="0.0108%" height="15" fill="rgb(210,61,42)" fg:x="56936" fg:w="39"/><text x="15.9668%" y="799.50"></text></g><g><title>Compile::Code_Gen (37,780 samples, 10.43%)</title><rect x="5.2992%" y="805" width="10.4289%" height="15" fill="rgb(211,52,33)" fg:x="19197" fg:w="37780"/><text x="5.5492%" y="815.50">Compile::Code_G..</text></g><g><title>Compile::call_generator (37 samples, 0.01%)</title><rect x="15.7348%" y="421" width="0.0102%" height="15" fill="rgb(234,58,33)" fg:x="57001" fg:w="37"/><text x="15.9848%" y="431.50"></text></g><g><title>Parse::do_call (61 samples, 0.02%)</title><rect x="15.7839%" y="149" width="0.0168%" height="15" fill="rgb(220,115,36)" fg:x="57179" fg:w="61"/><text x="16.0339%" y="159.50"></text></g><g><title>Parse::do_one_block (95 samples, 0.03%)</title><rect x="15.7825%" y="181" width="0.0262%" height="15" fill="rgb(243,153,54)" fg:x="57174" fg:w="95"/><text x="16.0325%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.03%)</title><rect x="15.7831%" y="165" width="0.0257%" height="15" fill="rgb(251,47,18)" fg:x="57176" fg:w="93"/><text x="16.0331%" y="175.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.03%)</title><rect x="15.7823%" y="197" width="0.0273%" height="15" fill="rgb(242,102,42)" fg:x="57173" fg:w="99"/><text x="16.0323%" y="207.50"></text></g><g><title>ParseGenerator::generate (116 samples, 0.03%)</title><rect x="15.7792%" y="229" width="0.0320%" height="15" fill="rgb(234,31,38)" fg:x="57162" fg:w="116"/><text x="16.0292%" y="239.50"></text></g><g><title>Parse::Parse (116 samples, 0.03%)</title><rect x="15.7792%" y="213" width="0.0320%" height="15" fill="rgb(221,117,51)" fg:x="57162" fg:w="116"/><text x="16.0292%" y="223.50"></text></g><g><title>Parse::do_call (157 samples, 0.04%)</title><rect x="15.7698%" y="245" width="0.0433%" height="15" fill="rgb(212,20,18)" fg:x="57128" fg:w="157"/><text x="16.0198%" y="255.50"></text></g><g><title>Parse::do_one_block (226 samples, 0.06%)</title><rect x="15.7643%" y="277" width="0.0624%" height="15" fill="rgb(245,133,36)" fg:x="57108" fg:w="226"/><text x="16.0143%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (220 samples, 0.06%)</title><rect x="15.7660%" y="261" width="0.0607%" height="15" fill="rgb(212,6,19)" fg:x="57114" fg:w="220"/><text x="16.0160%" y="271.50"></text></g><g><title>Parse::do_all_blocks (229 samples, 0.06%)</title><rect x="15.7643%" y="293" width="0.0632%" height="15" fill="rgb(218,1,36)" fg:x="57108" fg:w="229"/><text x="16.0143%" y="303.50"></text></g><g><title>ParseGenerator::generate (247 samples, 0.07%)</title><rect x="15.7616%" y="325" width="0.0682%" height="15" fill="rgb(246,84,54)" fg:x="57098" fg:w="247"/><text x="16.0116%" y="335.50"></text></g><g><title>Parse::Parse (245 samples, 0.07%)</title><rect x="15.7621%" y="309" width="0.0676%" height="15" fill="rgb(242,110,6)" fg:x="57100" fg:w="245"/><text x="16.0121%" y="319.50"></text></g><g><title>Parse::do_call (322 samples, 0.09%)</title><rect x="15.7480%" y="341" width="0.0889%" height="15" fill="rgb(214,47,5)" fg:x="57049" fg:w="322"/><text x="15.9980%" y="351.50"></text></g><g><title>ParseGenerator::generate (384 samples, 0.11%)</title><rect x="15.7456%" y="421" width="0.1060%" height="15" fill="rgb(218,159,25)" fg:x="57040" fg:w="384"/><text x="15.9956%" y="431.50"></text></g><g><title>Parse::Parse (384 samples, 0.11%)</title><rect x="15.7456%" y="405" width="0.1060%" height="15" fill="rgb(215,211,28)" fg:x="57040" fg:w="384"/><text x="15.9956%" y="415.50"></text></g><g><title>Parse::do_all_blocks (382 samples, 0.11%)</title><rect x="15.7461%" y="389" width="0.1054%" height="15" fill="rgb(238,59,32)" fg:x="57042" fg:w="382"/><text x="15.9961%" y="399.50"></text></g><g><title>Parse::do_one_block (382 samples, 0.11%)</title><rect x="15.7461%" y="373" width="0.1054%" height="15" fill="rgb(226,82,3)" fg:x="57042" fg:w="382"/><text x="15.9961%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (382 samples, 0.11%)</title><rect x="15.7461%" y="357" width="0.1054%" height="15" fill="rgb(240,164,32)" fg:x="57042" fg:w="382"/><text x="15.9961%" y="367.50"></text></g><g><title>PredictedCallGenerator::generate (37 samples, 0.01%)</title><rect x="15.8516%" y="421" width="0.0102%" height="15" fill="rgb(232,46,7)" fg:x="57424" fg:w="37"/><text x="16.1016%" y="431.50"></text></g><g><title>Parse::do_call (463 samples, 0.13%)</title><rect x="15.7348%" y="437" width="0.1278%" height="15" fill="rgb(229,129,53)" fg:x="57001" fg:w="463"/><text x="15.9848%" y="447.50"></text></g><g><title>Parse::do_all_blocks (471 samples, 0.13%)</title><rect x="15.7348%" y="485" width="0.1300%" height="15" fill="rgb(234,188,29)" fg:x="57001" fg:w="471"/><text x="15.9848%" y="495.50"></text></g><g><title>Parse::do_one_block (471 samples, 0.13%)</title><rect x="15.7348%" y="469" width="0.1300%" height="15" fill="rgb(246,141,4)" fg:x="57001" fg:w="471"/><text x="15.9848%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (471 samples, 0.13%)</title><rect x="15.7348%" y="453" width="0.1300%" height="15" fill="rgb(229,23,39)" fg:x="57001" fg:w="471"/><text x="15.9848%" y="463.50"></text></g><g><title>ParseGenerator::generate (472 samples, 0.13%)</title><rect x="15.7348%" y="517" width="0.1303%" height="15" fill="rgb(206,12,3)" fg:x="57001" fg:w="472"/><text x="15.9848%" y="527.50"></text></g><g><title>Parse::Parse (472 samples, 0.13%)</title><rect x="15.7348%" y="501" width="0.1303%" height="15" fill="rgb(252,226,20)" fg:x="57001" fg:w="472"/><text x="15.9848%" y="511.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="15.8698%" y="261" width="0.0116%" height="15" fill="rgb(216,123,35)" fg:x="57490" fg:w="42"/><text x="16.1198%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="15.8698%" y="245" width="0.0116%" height="15" fill="rgb(212,68,40)" fg:x="57490" fg:w="42"/><text x="16.1198%" y="255.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.01%)</title><rect x="15.8698%" y="277" width="0.0119%" height="15" fill="rgb(254,125,32)" fg:x="57490" fg:w="43"/><text x="16.1198%" y="287.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.01%)</title><rect x="15.8692%" y="309" width="0.0130%" height="15" fill="rgb(253,97,22)" fg:x="57488" fg:w="47"/><text x="16.1192%" y="319.50"></text></g><g><title>Parse::Parse (47 samples, 0.01%)</title><rect x="15.8692%" y="293" width="0.0130%" height="15" fill="rgb(241,101,14)" fg:x="57488" fg:w="47"/><text x="16.1192%" y="303.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="15.8681%" y="325" width="0.0157%" height="15" fill="rgb(238,103,29)" fg:x="57484" fg:w="57"/><text x="16.1181%" y="335.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.02%)</title><rect x="15.8673%" y="357" width="0.0196%" height="15" fill="rgb(233,195,47)" fg:x="57481" fg:w="71"/><text x="16.1173%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.02%)</title><rect x="15.8673%" y="341" width="0.0196%" height="15" fill="rgb(246,218,30)" fg:x="57481" fg:w="71"/><text x="16.1173%" y="351.50"></text></g><g><title>Parse::do_all_blocks (72 samples, 0.02%)</title><rect x="15.8673%" y="373" width="0.0199%" height="15" fill="rgb(219,145,47)" fg:x="57481" fg:w="72"/><text x="16.1173%" y="383.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="15.8670%" y="405" width="0.0204%" height="15" fill="rgb(243,12,26)" fg:x="57480" fg:w="74"/><text x="16.1170%" y="415.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="15.8670%" y="389" width="0.0204%" height="15" fill="rgb(214,87,16)" fg:x="57480" fg:w="74"/><text x="16.1170%" y="399.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="15.8654%" y="421" width="0.0235%" height="15" fill="rgb(208,99,42)" fg:x="57474" fg:w="85"/><text x="16.1154%" y="431.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="15.8651%" y="501" width="0.0240%" height="15" fill="rgb(253,99,2)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="511.50"></text></g><g><title>Parse::Parse (87 samples, 0.02%)</title><rect x="15.8651%" y="485" width="0.0240%" height="15" fill="rgb(220,168,23)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="495.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="15.8651%" y="469" width="0.0240%" height="15" fill="rgb(242,38,24)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="479.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.02%)</title><rect x="15.8651%" y="453" width="0.0240%" height="15" fill="rgb(225,182,9)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="15.8651%" y="437" width="0.0240%" height="15" fill="rgb(243,178,37)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="447.50"></text></g><g><title>Parse::do_call (595 samples, 0.16%)</title><rect x="15.7298%" y="533" width="0.1642%" height="15" fill="rgb(232,139,19)" fg:x="56983" fg:w="595"/><text x="15.9798%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (105 samples, 0.03%)</title><rect x="15.8651%" y="517" width="0.0290%" height="15" fill="rgb(225,201,24)" fg:x="57473" fg:w="105"/><text x="16.1151%" y="527.50"></text></g><g><title>ParseGenerator::generate (597 samples, 0.16%)</title><rect x="15.7298%" y="613" width="0.1648%" height="15" fill="rgb(221,47,46)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="623.50"></text></g><g><title>Parse::Parse (597 samples, 0.16%)</title><rect x="15.7298%" y="597" width="0.1648%" height="15" fill="rgb(249,23,13)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="607.50"></text></g><g><title>Parse::do_all_blocks (597 samples, 0.16%)</title><rect x="15.7298%" y="581" width="0.1648%" height="15" fill="rgb(219,9,5)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="591.50"></text></g><g><title>Parse::do_one_block (597 samples, 0.16%)</title><rect x="15.7298%" y="565" width="0.1648%" height="15" fill="rgb(254,171,16)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (597 samples, 0.16%)</title><rect x="15.7298%" y="549" width="0.1648%" height="15" fill="rgb(230,171,20)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="559.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="15.9021%" y="309" width="0.0105%" height="15" fill="rgb(210,71,41)" fg:x="57607" fg:w="38"/><text x="16.1521%" y="319.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="15.9021%" y="293" width="0.0105%" height="15" fill="rgb(206,173,20)" fg:x="57607" fg:w="38"/><text x="16.1521%" y="303.50"></text></g><g><title>Parse::do_call (59 samples, 0.02%)</title><rect x="15.8996%" y="325" width="0.0163%" height="15" fill="rgb(233,88,34)" fg:x="57598" fg:w="59"/><text x="16.1496%" y="335.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.02%)</title><rect x="15.8990%" y="357" width="0.0193%" height="15" fill="rgb(223,209,46)" fg:x="57596" fg:w="70"/><text x="16.1490%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.02%)</title><rect x="15.8990%" y="341" width="0.0193%" height="15" fill="rgb(250,43,18)" fg:x="57596" fg:w="70"/><text x="16.1490%" y="351.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.02%)</title><rect x="15.8988%" y="405" width="0.0199%" height="15" fill="rgb(208,13,10)" fg:x="57595" fg:w="72"/><text x="16.1488%" y="415.50"></text></g><g><title>Parse::Parse (72 samples, 0.02%)</title><rect x="15.8988%" y="389" width="0.0199%" height="15" fill="rgb(212,200,36)" fg:x="57595" fg:w="72"/><text x="16.1488%" y="399.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.02%)</title><rect x="15.8990%" y="373" width="0.0196%" height="15" fill="rgb(225,90,30)" fg:x="57596" fg:w="71"/><text x="16.1490%" y="383.50"></text></g><g><title>Parse::do_call (92 samples, 0.03%)</title><rect x="15.8957%" y="421" width="0.0254%" height="15" fill="rgb(236,182,39)" fg:x="57584" fg:w="92"/><text x="16.1457%" y="431.50"></text></g><g><title>ParseGenerator::generate (98 samples, 0.03%)</title><rect x="15.8957%" y="501" width="0.0271%" height="15" fill="rgb(212,144,35)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="511.50"></text></g><g><title>Parse::Parse (98 samples, 0.03%)</title><rect x="15.8957%" y="485" width="0.0271%" height="15" fill="rgb(228,63,44)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="495.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.03%)</title><rect x="15.8957%" y="469" width="0.0271%" height="15" fill="rgb(228,109,6)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="479.50"></text></g><g><title>Parse::do_one_block (98 samples, 0.03%)</title><rect x="15.8957%" y="453" width="0.0271%" height="15" fill="rgb(238,117,24)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.03%)</title><rect x="15.8957%" y="437" width="0.0271%" height="15" fill="rgb(242,26,26)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="447.50"></text></g><g><title>ParseGenerator::generate (118 samples, 0.03%)</title><rect x="15.8946%" y="597" width="0.0326%" height="15" fill="rgb(221,92,48)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="607.50"></text></g><g><title>Parse::Parse (118 samples, 0.03%)</title><rect x="15.8946%" y="581" width="0.0326%" height="15" fill="rgb(209,209,32)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="591.50"></text></g><g><title>Parse::do_all_blocks (118 samples, 0.03%)</title><rect x="15.8946%" y="565" width="0.0326%" height="15" fill="rgb(221,70,22)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="575.50"></text></g><g><title>Parse::do_one_block (118 samples, 0.03%)</title><rect x="15.8946%" y="549" width="0.0326%" height="15" fill="rgb(248,145,5)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (118 samples, 0.03%)</title><rect x="15.8946%" y="533" width="0.0326%" height="15" fill="rgb(226,116,26)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="543.50"></text></g><g><title>Parse::do_call (118 samples, 0.03%)</title><rect x="15.8946%" y="517" width="0.0326%" height="15" fill="rgb(244,5,17)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="527.50"></text></g><g><title>ParseGenerator::generate (732 samples, 0.20%)</title><rect x="15.7293%" y="709" width="0.2021%" height="15" fill="rgb(252,159,33)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="719.50"></text></g><g><title>Parse::Parse (732 samples, 0.20%)</title><rect x="15.7293%" y="693" width="0.2021%" height="15" fill="rgb(206,71,0)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="703.50"></text></g><g><title>Parse::do_all_blocks (732 samples, 0.20%)</title><rect x="15.7293%" y="677" width="0.2021%" height="15" fill="rgb(233,118,54)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="687.50"></text></g><g><title>Parse::do_one_block (732 samples, 0.20%)</title><rect x="15.7293%" y="661" width="0.2021%" height="15" fill="rgb(234,83,48)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (732 samples, 0.20%)</title><rect x="15.7293%" y="645" width="0.2021%" height="15" fill="rgb(228,3,54)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="655.50"></text></g><g><title>Parse::do_call (732 samples, 0.20%)</title><rect x="15.7293%" y="629" width="0.2021%" height="15" fill="rgb(226,155,13)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (133 samples, 0.04%)</title><rect x="15.8946%" y="613" width="0.0367%" height="15" fill="rgb(241,28,37)" fg:x="57580" fg:w="133"/><text x="16.1446%" y="623.50"></text></g><g><title>Parse::do_call (61 samples, 0.02%)</title><rect x="15.9440%" y="229" width="0.0168%" height="15" fill="rgb(233,93,10)" fg:x="57759" fg:w="61"/><text x="16.1940%" y="239.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.02%)</title><rect x="15.9435%" y="277" width="0.0224%" height="15" fill="rgb(225,113,19)" fg:x="57757" fg:w="81"/><text x="16.1935%" y="287.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.02%)</title><rect x="15.9435%" y="261" width="0.0224%" height="15" fill="rgb(241,2,18)" fg:x="57757" fg:w="81"/><text x="16.1935%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="15.9438%" y="245" width="0.0221%" height="15" fill="rgb(228,207,21)" fg:x="57758" fg:w="80"/><text x="16.1938%" y="255.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="15.9421%" y="309" width="0.0240%" height="15" fill="rgb(213,211,35)" fg:x="57752" fg:w="87"/><text x="16.1921%" y="319.50"></text></g><g><title>Parse::Parse (85 samples, 0.02%)</title><rect x="15.9426%" y="293" width="0.0235%" height="15" fill="rgb(209,83,10)" fg:x="57754" fg:w="85"/><text x="16.1926%" y="303.50"></text></g><g><title>Parse::do_call (106 samples, 0.03%)</title><rect x="15.9380%" y="325" width="0.0293%" height="15" fill="rgb(209,164,1)" fg:x="57737" fg:w="106"/><text x="16.1880%" y="335.50"></text></g><g><title>Parse::do_one_block (128 samples, 0.04%)</title><rect x="15.9369%" y="357" width="0.0353%" height="15" fill="rgb(213,184,43)" fg:x="57733" fg:w="128"/><text x="16.1869%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (127 samples, 0.04%)</title><rect x="15.9371%" y="341" width="0.0351%" height="15" fill="rgb(231,61,34)" fg:x="57734" fg:w="127"/><text x="16.1871%" y="351.50"></text></g><g><title>Parse::do_all_blocks (131 samples, 0.04%)</title><rect x="15.9363%" y="373" width="0.0362%" height="15" fill="rgb(235,75,3)" fg:x="57731" fg:w="131"/><text x="16.1863%" y="383.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.04%)</title><rect x="15.9363%" y="405" width="0.0367%" height="15" fill="rgb(220,106,47)" fg:x="57731" fg:w="133"/><text x="16.1863%" y="415.50"></text></g><g><title>Parse::Parse (133 samples, 0.04%)</title><rect x="15.9363%" y="389" width="0.0367%" height="15" fill="rgb(210,196,33)" fg:x="57731" fg:w="133"/><text x="16.1863%" y="399.50"></text></g><g><title>Parse::do_call (164 samples, 0.05%)</title><rect x="15.9322%" y="421" width="0.0453%" height="15" fill="rgb(229,154,42)" fg:x="57716" fg:w="164"/><text x="16.1822%" y="431.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.05%)</title><rect x="15.9319%" y="501" width="0.0478%" height="15" fill="rgb(228,114,26)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="511.50"></text></g><g><title>Parse::Parse (173 samples, 0.05%)</title><rect x="15.9319%" y="485" width="0.0478%" height="15" fill="rgb(208,144,1)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="495.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.05%)</title><rect x="15.9319%" y="469" width="0.0478%" height="15" fill="rgb(239,112,37)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="479.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.05%)</title><rect x="15.9319%" y="453" width="0.0478%" height="15" fill="rgb(210,96,50)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.05%)</title><rect x="15.9319%" y="437" width="0.0478%" height="15" fill="rgb(222,178,2)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="447.50"></text></g><g><title>Parse::do_call (205 samples, 0.06%)</title><rect x="15.9313%" y="517" width="0.0566%" height="15" fill="rgb(226,74,18)" fg:x="57713" fg:w="205"/><text x="16.1813%" y="527.50"></text></g><g><title>ParseGenerator::generate (206 samples, 0.06%)</title><rect x="15.9313%" y="597" width="0.0569%" height="15" fill="rgb(225,67,54)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="607.50"></text></g><g><title>Parse::Parse (206 samples, 0.06%)</title><rect x="15.9313%" y="581" width="0.0569%" height="15" fill="rgb(251,92,32)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="591.50"></text></g><g><title>Parse::do_all_blocks (206 samples, 0.06%)</title><rect x="15.9313%" y="565" width="0.0569%" height="15" fill="rgb(228,149,22)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="575.50"></text></g><g><title>Parse::do_one_block (206 samples, 0.06%)</title><rect x="15.9313%" y="549" width="0.0569%" height="15" fill="rgb(243,54,13)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (206 samples, 0.06%)</title><rect x="15.9313%" y="533" width="0.0569%" height="15" fill="rgb(243,180,28)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="543.50"></text></g><g><title>ParseGenerator::generate (227 samples, 0.06%)</title><rect x="15.9313%" y="693" width="0.0627%" height="15" fill="rgb(208,167,24)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="703.50"></text></g><g><title>Parse::Parse (227 samples, 0.06%)</title><rect x="15.9313%" y="677" width="0.0627%" height="15" fill="rgb(245,73,45)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="687.50"></text></g><g><title>Parse::do_all_blocks (227 samples, 0.06%)</title><rect x="15.9313%" y="661" width="0.0627%" height="15" fill="rgb(237,203,48)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="671.50"></text></g><g><title>Parse::do_one_block (227 samples, 0.06%)</title><rect x="15.9313%" y="645" width="0.0627%" height="15" fill="rgb(211,197,16)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (227 samples, 0.06%)</title><rect x="15.9313%" y="629" width="0.0627%" height="15" fill="rgb(243,99,51)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="639.50"></text></g><g><title>Parse::do_call (227 samples, 0.06%)</title><rect x="15.9313%" y="613" width="0.0627%" height="15" fill="rgb(215,123,29)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,018 samples, 0.28%)</title><rect x="15.7293%" y="805" width="0.2810%" height="15" fill="rgb(239,186,37)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="815.50"></text></g><g><title>Parse::Parse (1,018 samples, 0.28%)</title><rect x="15.7293%" y="789" width="0.2810%" height="15" fill="rgb(252,136,39)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="799.50"></text></g><g><title>Parse::do_all_blocks (1,018 samples, 0.28%)</title><rect x="15.7293%" y="773" width="0.2810%" height="15" fill="rgb(223,213,32)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="783.50"></text></g><g><title>Parse::do_one_block (1,018 samples, 0.28%)</title><rect x="15.7293%" y="757" width="0.2810%" height="15" fill="rgb(233,115,5)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (1,018 samples, 0.28%)</title><rect x="15.7293%" y="741" width="0.2810%" height="15" fill="rgb(207,226,44)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="751.50"></text></g><g><title>Parse::do_call (1,018 samples, 0.28%)</title><rect x="15.7293%" y="725" width="0.2810%" height="15" fill="rgb(208,126,0)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (286 samples, 0.08%)</title><rect x="15.9313%" y="709" width="0.0789%" height="15" fill="rgb(244,66,21)" fg:x="57713" fg:w="286"/><text x="16.1813%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.02%)</title><rect x="15.9940%" y="693" width="0.0163%" height="15" fill="rgb(222,97,12)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="703.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.02%)</title><rect x="15.9940%" y="677" width="0.0163%" height="15" fill="rgb(219,213,19)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="687.50"></text></g><g><title>Parse::Parse (59 samples, 0.02%)</title><rect x="15.9940%" y="661" width="0.0163%" height="15" fill="rgb(252,169,30)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="671.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.02%)</title><rect x="15.9940%" y="645" width="0.0163%" height="15" fill="rgb(206,32,51)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="655.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.02%)</title><rect x="15.9940%" y="629" width="0.0163%" height="15" fill="rgb(250,172,42)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.02%)</title><rect x="15.9940%" y="613" width="0.0163%" height="15" fill="rgb(209,34,43)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="623.50"></text></g><g><title>Parse::do_call (59 samples, 0.02%)</title><rect x="15.9940%" y="597" width="0.0163%" height="15" fill="rgb(223,11,35)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="607.50"></text></g><g><title>Compile::Compile (38,803 samples, 10.71%)</title><rect x="5.2992%" y="821" width="10.7113%" height="15" fill="rgb(251,219,26)" fg:x="19197" fg:w="38803"/><text x="5.5492%" y="831.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (97 samples, 0.03%)</title><rect x="16.0511%" y="773" width="0.0268%" height="15" fill="rgb(231,119,3)" fg:x="58147" fg:w="97"/><text x="16.3011%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping (259 samples, 0.07%)</title><rect x="16.0114%" y="805" width="0.0715%" height="15" fill="rgb(216,97,11)" fg:x="58003" fg:w="259"/><text x="16.2614%" y="815.50"></text></g><g><title>Compile::final_graph_reshaping_walk (256 samples, 0.07%)</title><rect x="16.0122%" y="789" width="0.0707%" height="15" fill="rgb(223,59,9)" fg:x="58006" fg:w="256"/><text x="16.2622%" y="799.50"></text></g><g><title>Compile::inline_incrementally (39 samples, 0.01%)</title><rect x="16.0829%" y="805" width="0.0108%" height="15" fill="rgb(233,93,31)" fg:x="58262" fg:w="39"/><text x="16.3329%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (62 samples, 0.02%)</title><rect x="16.1326%" y="773" width="0.0171%" height="15" fill="rgb(239,81,33)" fg:x="58442" fg:w="62"/><text x="16.3826%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (64 samples, 0.02%)</title><rect x="16.1323%" y="789" width="0.0177%" height="15" fill="rgb(213,120,34)" fg:x="58441" fg:w="64"/><text x="16.3823%" y="799.50"></text></g><g><title>Compile::remove_speculative_types (238 samples, 0.07%)</title><rect x="16.0964%" y="805" width="0.0657%" height="15" fill="rgb(243,49,53)" fg:x="58311" fg:w="238"/><text x="16.3464%" y="815.50"></text></g><g><title>ConnectionGraph::add_final_edges (42 samples, 0.01%)</title><rect x="16.1900%" y="773" width="0.0116%" height="15" fill="rgb(247,216,33)" fg:x="58650" fg:w="42"/><text x="16.4400%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (66 samples, 0.02%)</title><rect x="16.2032%" y="773" width="0.0182%" height="15" fill="rgb(226,26,14)" fg:x="58698" fg:w="66"/><text x="16.4532%" y="783.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (70 samples, 0.02%)</title><rect x="16.2319%" y="757" width="0.0193%" height="15" fill="rgb(215,49,53)" fg:x="58802" fg:w="70"/><text x="16.4819%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (152 samples, 0.04%)</title><rect x="16.2223%" y="773" width="0.0420%" height="15" fill="rgb(245,162,40)" fg:x="58767" fg:w="152"/><text x="16.4723%" y="783.50"></text></g><g><title>ConnectionGraph::split_unique_types (65 samples, 0.02%)</title><rect x="16.2664%" y="773" width="0.0179%" height="15" fill="rgb(229,68,17)" fg:x="58927" fg:w="65"/><text x="16.5164%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (450 samples, 0.12%)</title><rect x="16.1621%" y="805" width="0.1242%" height="15" fill="rgb(213,182,10)" fg:x="58549" fg:w="450"/><text x="16.4121%" y="815.50"></text></g><g><title>ConnectionGraph::compute_escape (447 samples, 0.12%)</title><rect x="16.1629%" y="789" width="0.1234%" height="15" fill="rgb(245,125,30)" fg:x="58552" fg:w="447"/><text x="16.4129%" y="799.50"></text></g><g><title>TypeInstPtr::add_offset (49 samples, 0.01%)</title><rect x="16.4544%" y="789" width="0.0135%" height="15" fill="rgb(232,202,2)" fg:x="59608" fg:w="49"/><text x="16.7044%" y="799.50"></text></g><g><title>PhaseCCP::analyze (685 samples, 0.19%)</title><rect x="16.2874%" y="805" width="0.1891%" height="15" fill="rgb(237,140,51)" fg:x="59003" fg:w="685"/><text x="16.5374%" y="815.50"></text></g><g><title>PhaseCCP::transform_once (87 samples, 0.02%)</title><rect x="16.5047%" y="773" width="0.0240%" height="15" fill="rgb(236,157,25)" fg:x="59790" fg:w="87"/><text x="16.7547%" y="783.50"></text></g><g><title>PhaseCCP::do_transform (193 samples, 0.05%)</title><rect x="16.4765%" y="805" width="0.0533%" height="15" fill="rgb(219,209,0)" fg:x="59688" fg:w="193"/><text x="16.7265%" y="815.50"></text></g><g><title>PhaseCCP::transform (193 samples, 0.05%)</title><rect x="16.4765%" y="789" width="0.0533%" height="15" fill="rgb(240,116,54)" fg:x="59688" fg:w="193"/><text x="16.7265%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (45 samples, 0.01%)</title><rect x="16.5610%" y="693" width="0.0124%" height="15" fill="rgb(216,10,36)" fg:x="59994" fg:w="45"/><text x="16.8110%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (56 samples, 0.02%)</title><rect x="16.5610%" y="709" width="0.0155%" height="15" fill="rgb(222,72,44)" fg:x="59994" fg:w="56"/><text x="16.8110%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (70 samples, 0.02%)</title><rect x="16.5604%" y="725" width="0.0193%" height="15" fill="rgb(232,159,9)" fg:x="59992" fg:w="70"/><text x="16.8104%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (86 samples, 0.02%)</title><rect x="16.5599%" y="741" width="0.0237%" height="15" fill="rgb(210,39,32)" fg:x="59990" fg:w="86"/><text x="16.8099%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (43 samples, 0.01%)</title><rect x="16.5836%" y="741" width="0.0119%" height="15" fill="rgb(216,194,45)" fg:x="60076" fg:w="43"/><text x="16.8336%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (133 samples, 0.04%)</title><rect x="16.5591%" y="757" width="0.0367%" height="15" fill="rgb(218,18,35)" fg:x="59987" fg:w="133"/><text x="16.8091%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (37 samples, 0.01%)</title><rect x="16.5958%" y="757" width="0.0102%" height="15" fill="rgb(207,83,51)" fg:x="60120" fg:w="37"/><text x="16.8458%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (178 samples, 0.05%)</title><rect x="16.5585%" y="773" width="0.0491%" height="15" fill="rgb(225,63,43)" fg:x="59985" fg:w="178"/><text x="16.8085%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (194 samples, 0.05%)</title><rect x="16.5574%" y="789" width="0.0536%" height="15" fill="rgb(207,57,36)" fg:x="59981" fg:w="194"/><text x="16.8074%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (64 samples, 0.02%)</title><rect x="16.6110%" y="773" width="0.0177%" height="15" fill="rgb(216,99,33)" fg:x="60175" fg:w="64"/><text x="16.8610%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (48 samples, 0.01%)</title><rect x="16.6154%" y="757" width="0.0133%" height="15" fill="rgb(225,42,16)" fg:x="60191" fg:w="48"/><text x="16.8654%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (69 samples, 0.02%)</title><rect x="16.6410%" y="757" width="0.0190%" height="15" fill="rgb(220,201,45)" fg:x="60284" fg:w="69"/><text x="16.8910%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (39 samples, 0.01%)</title><rect x="16.6601%" y="757" width="0.0108%" height="15" fill="rgb(225,33,4)" fg:x="60353" fg:w="39"/><text x="16.9101%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (234 samples, 0.06%)</title><rect x="16.6110%" y="789" width="0.0646%" height="15" fill="rgb(224,33,50)" fg:x="60175" fg:w="234"/><text x="16.8610%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (170 samples, 0.05%)</title><rect x="16.6286%" y="773" width="0.0469%" height="15" fill="rgb(246,198,51)" fg:x="60239" fg:w="170"/><text x="16.8786%" y="783.50"></text></g><g><title>NTarjan::DFS (284 samples, 0.08%)</title><rect x="16.8610%" y="773" width="0.0784%" height="15" fill="rgb(205,22,4)" fg:x="61081" fg:w="284"/><text x="17.1110%" y="783.50"></text></g><g><title>PhaseIdealLoop::Dominators (960 samples, 0.27%)</title><rect x="16.6882%" y="789" width="0.2650%" height="15" fill="rgb(206,3,8)" fg:x="60455" fg:w="960"/><text x="16.9382%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (64 samples, 0.02%)</title><rect x="17.2815%" y="741" width="0.0177%" height="15" fill="rgb(251,23,15)" fg:x="62604" fg:w="64"/><text x="17.5315%" y="751.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (371 samples, 0.10%)</title><rect x="17.2378%" y="773" width="0.1024%" height="15" fill="rgb(252,88,28)" fg:x="62446" fg:w="371"/><text x="17.4878%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (337 samples, 0.09%)</title><rect x="17.2472%" y="757" width="0.0930%" height="15" fill="rgb(212,127,14)" fg:x="62480" fg:w="337"/><text x="17.4972%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (149 samples, 0.04%)</title><rect x="17.2991%" y="741" width="0.0411%" height="15" fill="rgb(247,145,37)" fg:x="62668" fg:w="149"/><text x="17.5491%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,474 samples, 0.41%)</title><rect x="16.9532%" y="789" width="0.4069%" height="15" fill="rgb(209,117,53)" fg:x="61415" fg:w="1474"/><text x="17.2032%" y="799.50"></text></g><g><title>Node::unique_ctrl_out (58 samples, 0.02%)</title><rect x="17.8175%" y="757" width="0.0160%" height="15" fill="rgb(212,90,42)" fg:x="64546" fg:w="58"/><text x="18.0675%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (71 samples, 0.02%)</title><rect x="17.8336%" y="757" width="0.0196%" height="15" fill="rgb(218,164,37)" fg:x="64604" fg:w="71"/><text x="18.0836%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (50 samples, 0.01%)</title><rect x="18.0442%" y="709" width="0.0138%" height="15" fill="rgb(246,65,34)" fg:x="65367" fg:w="50"/><text x="18.2942%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (259 samples, 0.07%)</title><rect x="18.0207%" y="725" width="0.0715%" height="15" fill="rgb(231,100,33)" fg:x="65282" fg:w="259"/><text x="18.2707%" y="735.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (124 samples, 0.03%)</title><rect x="18.0580%" y="709" width="0.0342%" height="15" fill="rgb(228,126,14)" fg:x="65417" fg:w="124"/><text x="18.3080%" y="719.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (387 samples, 0.11%)</title><rect x="17.9950%" y="741" width="0.1068%" height="15" fill="rgb(215,173,21)" fg:x="65189" fg:w="387"/><text x="18.2450%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (146 samples, 0.04%)</title><rect x="18.1021%" y="741" width="0.0403%" height="15" fill="rgb(210,6,40)" fg:x="65577" fg:w="146"/><text x="18.3521%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (487 samples, 0.13%)</title><rect x="18.5551%" y="725" width="0.1344%" height="15" fill="rgb(212,48,18)" fg:x="67218" fg:w="487"/><text x="18.8051%" y="735.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,958 samples, 0.54%)</title><rect x="18.1493%" y="741" width="0.5405%" height="15" fill="rgb(230,214,11)" fg:x="65748" fg:w="1958"/><text x="18.3993%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (3,052 samples, 0.84%)</title><rect x="17.8532%" y="757" width="0.8425%" height="15" fill="rgb(254,105,39)" fg:x="64675" fg:w="3052"/><text x="18.1032%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_loop (37 samples, 0.01%)</title><rect x="18.6956%" y="757" width="0.0102%" height="15" fill="rgb(245,158,5)" fg:x="67727" fg:w="37"/><text x="18.9456%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,796 samples, 1.05%)</title><rect x="17.6671%" y="773" width="1.0479%" height="15" fill="rgb(249,208,11)" fg:x="64001" fg:w="3796"/><text x="17.9171%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (4,917 samples, 1.36%)</title><rect x="17.3601%" y="789" width="1.3573%" height="15" fill="rgb(210,39,28)" fg:x="62889" fg:w="4917"/><text x="17.6101%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (208 samples, 0.06%)</title><rect x="18.8731%" y="773" width="0.0574%" height="15" fill="rgb(211,56,53)" fg:x="68370" fg:w="208"/><text x="19.1231%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (776 samples, 0.21%)</title><rect x="18.7185%" y="789" width="0.2142%" height="15" fill="rgb(226,201,30)" fg:x="67810" fg:w="776"/><text x="18.9685%" y="799.50"></text></g><g><title>PhaseIdealLoop::do_split_if (94 samples, 0.03%)</title><rect x="19.0481%" y="773" width="0.0259%" height="15" fill="rgb(239,101,34)" fg:x="69004" fg:w="94"/><text x="19.2981%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (249 samples, 0.07%)</title><rect x="19.0755%" y="773" width="0.0687%" height="15" fill="rgb(226,209,5)" fg:x="69103" fg:w="249"/><text x="19.3255%" y="783.50"></text></g><g><title>ConstraintCastNode::dominating_cast (48 samples, 0.01%)</title><rect x="19.1776%" y="757" width="0.0133%" height="15" fill="rgb(250,105,47)" fg:x="69473" fg:w="48"/><text x="19.4276%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (72 samples, 0.02%)</title><rect x="19.2066%" y="757" width="0.0199%" height="15" fill="rgb(230,72,3)" fg:x="69578" fg:w="72"/><text x="19.4566%" y="767.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (159 samples, 0.04%)</title><rect x="19.2273%" y="757" width="0.0439%" height="15" fill="rgb(232,218,39)" fg:x="69653" fg:w="159"/><text x="19.4773%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (48 samples, 0.01%)</title><rect x="19.2579%" y="741" width="0.0133%" height="15" fill="rgb(248,166,6)" fg:x="69764" fg:w="48"/><text x="19.5079%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (54 samples, 0.01%)</title><rect x="19.2993%" y="741" width="0.0149%" height="15" fill="rgb(247,89,20)" fg:x="69914" fg:w="54"/><text x="19.5493%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (185 samples, 0.05%)</title><rect x="19.2712%" y="757" width="0.0511%" height="15" fill="rgb(248,130,54)" fg:x="69812" fg:w="185"/><text x="19.5212%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (695 samples, 0.19%)</title><rect x="19.1442%" y="773" width="0.1919%" height="15" fill="rgb(234,196,4)" fg:x="69352" fg:w="695"/><text x="19.3942%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,418 samples, 0.39%)</title><rect x="18.9457%" y="789" width="0.3914%" height="15" fill="rgb(250,143,31)" fg:x="68633" fg:w="1418"/><text x="19.1957%" y="799.50"></text></g><g><title>CallNode::Ideal (46 samples, 0.01%)</title><rect x="19.3915%" y="757" width="0.0127%" height="15" fill="rgb(211,110,34)" fg:x="70248" fg:w="46"/><text x="19.6415%" y="767.50"></text></g><g><title>Node::remove_dead_region (44 samples, 0.01%)</title><rect x="19.3921%" y="741" width="0.0121%" height="15" fill="rgb(215,124,48)" fg:x="70250" fg:w="44"/><text x="19.6421%" y="751.50"></text></g><g><title>LoadNode::Ideal (75 samples, 0.02%)</title><rect x="19.4393%" y="757" width="0.0207%" height="15" fill="rgb(216,46,13)" fg:x="70421" fg:w="75"/><text x="19.6893%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (117 samples, 0.03%)</title><rect x="19.4697%" y="757" width="0.0323%" height="15" fill="rgb(205,184,25)" fg:x="70531" fg:w="117"/><text x="19.7197%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (58 samples, 0.02%)</title><rect x="19.5025%" y="757" width="0.0160%" height="15" fill="rgb(228,1,10)" fg:x="70650" fg:w="58"/><text x="19.7525%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (77 samples, 0.02%)</title><rect x="19.5185%" y="757" width="0.0213%" height="15" fill="rgb(213,116,27)" fg:x="70708" fg:w="77"/><text x="19.7685%" y="767.50"></text></g><g><title>PhiNode::Ideal (39 samples, 0.01%)</title><rect x="19.5401%" y="757" width="0.0108%" height="15" fill="rgb(241,95,50)" fg:x="70786" fg:w="39"/><text x="19.7901%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (93 samples, 0.03%)</title><rect x="19.5859%" y="741" width="0.0257%" height="15" fill="rgb(238,48,32)" fg:x="70952" fg:w="93"/><text x="19.8359%" y="751.50"></text></g><g><title>RegionNode::Ideal (165 samples, 0.05%)</title><rect x="19.5674%" y="757" width="0.0455%" height="15" fill="rgb(235,113,49)" fg:x="70885" fg:w="165"/><text x="19.8174%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (40 samples, 0.01%)</title><rect x="19.6151%" y="501" width="0.0110%" height="15" fill="rgb(205,127,43)" fg:x="71058" fg:w="40"/><text x="19.8651%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (44 samples, 0.01%)</title><rect x="19.6151%" y="517" width="0.0121%" height="15" fill="rgb(250,162,2)" fg:x="71058" fg:w="44"/><text x="19.8651%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.01%)</title><rect x="19.6151%" y="533" width="0.0144%" height="15" fill="rgb(220,13,41)" fg:x="71058" fg:w="52"/><text x="19.8651%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.02%)</title><rect x="19.6151%" y="549" width="0.0155%" height="15" fill="rgb(249,221,25)" fg:x="71058" fg:w="56"/><text x="19.8651%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.02%)</title><rect x="19.6151%" y="565" width="0.0179%" height="15" fill="rgb(215,208,19)" fg:x="71058" fg:w="65"/><text x="19.8651%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (72 samples, 0.02%)</title><rect x="19.6151%" y="581" width="0.0199%" height="15" fill="rgb(236,175,2)" fg:x="71058" fg:w="72"/><text x="19.8651%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.02%)</title><rect x="19.6149%" y="597" width="0.0221%" height="15" fill="rgb(241,52,2)" fg:x="71057" fg:w="80"/><text x="19.8649%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (85 samples, 0.02%)</title><rect x="19.6149%" y="613" width="0.0235%" height="15" fill="rgb(248,140,14)" fg:x="71057" fg:w="85"/><text x="19.8649%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (97 samples, 0.03%)</title><rect x="19.6149%" y="629" width="0.0268%" height="15" fill="rgb(253,22,42)" fg:x="71057" fg:w="97"/><text x="19.8649%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (101 samples, 0.03%)</title><rect x="19.6149%" y="645" width="0.0279%" height="15" fill="rgb(234,61,47)" fg:x="71057" fg:w="101"/><text x="19.8649%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (111 samples, 0.03%)</title><rect x="19.6149%" y="661" width="0.0306%" height="15" fill="rgb(208,226,15)" fg:x="71057" fg:w="111"/><text x="19.8649%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (116 samples, 0.03%)</title><rect x="19.6149%" y="677" width="0.0320%" height="15" fill="rgb(217,221,4)" fg:x="71057" fg:w="116"/><text x="19.8649%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.03%)</title><rect x="19.6149%" y="693" width="0.0348%" height="15" fill="rgb(212,174,34)" fg:x="71057" fg:w="126"/><text x="19.8649%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (143 samples, 0.04%)</title><rect x="19.6149%" y="741" width="0.0395%" height="15" fill="rgb(253,83,4)" fg:x="71057" fg:w="143"/><text x="19.8649%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.04%)</title><rect x="19.6149%" y="725" width="0.0395%" height="15" fill="rgb(250,195,49)" fg:x="71057" fg:w="143"/><text x="19.8649%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.04%)</title><rect x="19.6149%" y="709" width="0.0395%" height="15" fill="rgb(241,192,25)" fg:x="71057" fg:w="143"/><text x="19.8649%" y="719.50"></text></g><g><title>StoreNode::Ideal (163 samples, 0.04%)</title><rect x="19.6149%" y="757" width="0.0450%" height="15" fill="rgb(208,124,10)" fg:x="71057" fg:w="163"/><text x="19.8649%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (1,176 samples, 0.32%)</title><rect x="19.3471%" y="773" width="0.3246%" height="15" fill="rgb(222,33,0)" fg:x="70087" fg:w="1176"/><text x="19.5971%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (1,221 samples, 0.34%)</title><rect x="19.3377%" y="789" width="0.3370%" height="15" fill="rgb(234,209,28)" fg:x="70053" fg:w="1221"/><text x="19.5877%" y="799.50"></text></g><g><title>SuperWord::transform_loop (39 samples, 0.01%)</title><rect x="19.6844%" y="789" width="0.0108%" height="15" fill="rgb(224,11,23)" fg:x="71309" fg:w="39"/><text x="19.9344%" y="799.50"></text></g><g><title>SuperWord::SLP_extract (38 samples, 0.01%)</title><rect x="19.6847%" y="773" width="0.0105%" height="15" fill="rgb(232,99,1)" fg:x="71310" fg:w="38"/><text x="19.9347%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (11,472 samples, 3.17%)</title><rect x="16.5348%" y="805" width="3.1668%" height="15" fill="rgb(237,95,45)" fg:x="59899" fg:w="11472"/><text x="16.7848%" y="815.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (55 samples, 0.02%)</title><rect x="19.7170%" y="789" width="0.0152%" height="15" fill="rgb(208,109,11)" fg:x="71427" fg:w="55"/><text x="19.9670%" y="799.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (112 samples, 0.03%)</title><rect x="19.7015%" y="805" width="0.0309%" height="15" fill="rgb(216,190,48)" fg:x="71371" fg:w="112"/><text x="19.9515%" y="815.50"></text></g><g><title>IfNode::search_identical (46 samples, 0.01%)</title><rect x="19.8437%" y="757" width="0.0127%" height="15" fill="rgb(251,171,36)" fg:x="71886" fg:w="46"/><text x="20.0937%" y="767.50"></text></g><g><title>Unique_Node_List::remove (66 samples, 0.02%)</title><rect x="19.8721%" y="725" width="0.0182%" height="15" fill="rgb(230,62,22)" fg:x="71989" fg:w="66"/><text x="20.1221%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (87 samples, 0.02%)</title><rect x="19.8666%" y="757" width="0.0240%" height="15" fill="rgb(225,114,35)" fg:x="71969" fg:w="87"/><text x="20.1166%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (81 samples, 0.02%)</title><rect x="19.8683%" y="741" width="0.0224%" height="15" fill="rgb(215,118,42)" fg:x="71975" fg:w="81"/><text x="20.1183%" y="751.50"></text></g><g><title>IfNode::Ideal (273 samples, 0.08%)</title><rect x="19.8357%" y="773" width="0.0754%" height="15" fill="rgb(243,119,21)" fg:x="71857" fg:w="273"/><text x="20.0857%" y="783.50"></text></g><g><title>split_if (68 samples, 0.02%)</title><rect x="19.8923%" y="757" width="0.0188%" height="15" fill="rgb(252,177,53)" fg:x="72062" fg:w="68"/><text x="20.1423%" y="767.50"></text></g><g><title>MemNode::Ideal_common (53 samples, 0.01%)</title><rect x="19.9260%" y="757" width="0.0146%" height="15" fill="rgb(237,209,29)" fg:x="72184" fg:w="53"/><text x="20.1760%" y="767.50"></text></g><g><title>MemNode::find_previous_store (67 samples, 0.02%)</title><rect x="19.9420%" y="757" width="0.0185%" height="15" fill="rgb(212,65,23)" fg:x="72242" fg:w="67"/><text x="20.1920%" y="767.50"></text></g><g><title>LoadNode::Ideal (150 samples, 0.04%)</title><rect x="19.9204%" y="773" width="0.0414%" height="15" fill="rgb(230,222,46)" fg:x="72164" fg:w="150"/><text x="20.1704%" y="783.50"></text></g><g><title>MergeMemNode::Ideal (37 samples, 0.01%)</title><rect x="19.9823%" y="773" width="0.0102%" height="15" fill="rgb(215,135,32)" fg:x="72388" fg:w="37"/><text x="20.2323%" y="783.50"></text></g><g><title>NodeHash::grow (50 samples, 0.01%)</title><rect x="20.0240%" y="757" width="0.0138%" height="15" fill="rgb(246,101,22)" fg:x="72539" fg:w="50"/><text x="20.2740%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (149 samples, 0.04%)</title><rect x="20.0005%" y="773" width="0.0411%" height="15" fill="rgb(206,107,13)" fg:x="72454" fg:w="149"/><text x="20.2505%" y="783.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (49 samples, 0.01%)</title><rect x="20.0416%" y="773" width="0.0135%" height="15" fill="rgb(250,100,44)" fg:x="72603" fg:w="49"/><text x="20.2916%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (63 samples, 0.02%)</title><rect x="20.0706%" y="757" width="0.0174%" height="15" fill="rgb(231,147,38)" fg:x="72708" fg:w="63"/><text x="20.3206%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (137 samples, 0.04%)</title><rect x="20.0552%" y="773" width="0.0378%" height="15" fill="rgb(229,8,40)" fg:x="72652" fg:w="137"/><text x="20.3052%" y="783.50"></text></g><g><title>PhiNode::Ideal (103 samples, 0.03%)</title><rect x="20.0944%" y="773" width="0.0284%" height="15" fill="rgb(221,135,30)" fg:x="72794" fg:w="103"/><text x="20.3444%" y="783.50"></text></g><g><title>Unique_Node_List::remove (78 samples, 0.02%)</title><rect x="20.1805%" y="725" width="0.0215%" height="15" fill="rgb(249,193,18)" fg:x="73106" fg:w="78"/><text x="20.4305%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (89 samples, 0.02%)</title><rect x="20.1777%" y="741" width="0.0246%" height="15" fill="rgb(209,133,39)" fg:x="73096" fg:w="89"/><text x="20.4277%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (108 samples, 0.03%)</title><rect x="20.1744%" y="757" width="0.0298%" height="15" fill="rgb(232,100,14)" fg:x="73084" fg:w="108"/><text x="20.4244%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (71 samples, 0.02%)</title><rect x="20.2122%" y="757" width="0.0196%" height="15" fill="rgb(224,185,1)" fg:x="73221" fg:w="71"/><text x="20.4622%" y="767.50"></text></g><g><title>RegionNode::Ideal (299 samples, 0.08%)</title><rect x="20.1512%" y="773" width="0.0825%" height="15" fill="rgb(223,139,8)" fg:x="73000" fg:w="299"/><text x="20.4012%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (40 samples, 0.01%)</title><rect x="20.2393%" y="469" width="0.0110%" height="15" fill="rgb(232,213,38)" fg:x="73319" fg:w="40"/><text x="20.4893%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.02%)</title><rect x="20.2393%" y="485" width="0.0155%" height="15" fill="rgb(207,94,22)" fg:x="73319" fg:w="56"/><text x="20.4893%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (70 samples, 0.02%)</title><rect x="20.2393%" y="501" width="0.0193%" height="15" fill="rgb(219,183,54)" fg:x="73319" fg:w="70"/><text x="20.4893%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (77 samples, 0.02%)</title><rect x="20.2393%" y="517" width="0.0213%" height="15" fill="rgb(216,185,54)" fg:x="73319" fg:w="77"/><text x="20.4893%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (91 samples, 0.03%)</title><rect x="20.2393%" y="533" width="0.0251%" height="15" fill="rgb(254,217,39)" fg:x="73319" fg:w="91"/><text x="20.4893%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (105 samples, 0.03%)</title><rect x="20.2393%" y="549" width="0.0290%" height="15" fill="rgb(240,178,23)" fg:x="73319" fg:w="105"/><text x="20.4893%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.03%)</title><rect x="20.2393%" y="565" width="0.0348%" height="15" fill="rgb(218,11,47)" fg:x="73319" fg:w="126"/><text x="20.4893%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (139 samples, 0.04%)</title><rect x="20.2393%" y="581" width="0.0384%" height="15" fill="rgb(218,51,51)" fg:x="73319" fg:w="139"/><text x="20.4893%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.04%)</title><rect x="20.2393%" y="597" width="0.0414%" height="15" fill="rgb(238,126,27)" fg:x="73319" fg:w="150"/><text x="20.4893%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (162 samples, 0.04%)</title><rect x="20.2393%" y="613" width="0.0447%" height="15" fill="rgb(249,202,22)" fg:x="73319" fg:w="162"/><text x="20.4893%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (175 samples, 0.05%)</title><rect x="20.2390%" y="629" width="0.0483%" height="15" fill="rgb(254,195,49)" fg:x="73318" fg:w="175"/><text x="20.4890%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (191 samples, 0.05%)</title><rect x="20.2390%" y="645" width="0.0527%" height="15" fill="rgb(208,123,14)" fg:x="73318" fg:w="191"/><text x="20.4890%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (210 samples, 0.06%)</title><rect x="20.2390%" y="661" width="0.0580%" height="15" fill="rgb(224,200,8)" fg:x="73318" fg:w="210"/><text x="20.4890%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (224 samples, 0.06%)</title><rect x="20.2390%" y="677" width="0.0618%" height="15" fill="rgb(217,61,36)" fg:x="73318" fg:w="224"/><text x="20.4890%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (249 samples, 0.07%)</title><rect x="20.2390%" y="693" width="0.0687%" height="15" fill="rgb(206,35,45)" fg:x="73318" fg:w="249"/><text x="20.4890%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (279 samples, 0.08%)</title><rect x="20.2390%" y="709" width="0.0770%" height="15" fill="rgb(217,65,33)" fg:x="73318" fg:w="279"/><text x="20.4890%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (308 samples, 0.09%)</title><rect x="20.2384%" y="757" width="0.0850%" height="15" fill="rgb(222,158,48)" fg:x="73316" fg:w="308"/><text x="20.4884%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (308 samples, 0.09%)</title><rect x="20.2384%" y="741" width="0.0850%" height="15" fill="rgb(254,2,54)" fg:x="73316" fg:w="308"/><text x="20.4884%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (306 samples, 0.08%)</title><rect x="20.2390%" y="725" width="0.0845%" height="15" fill="rgb(250,143,38)" fg:x="73318" fg:w="306"/><text x="20.4890%" y="735.50"></text></g><g><title>StoreNode::Ideal (329 samples, 0.09%)</title><rect x="20.2379%" y="773" width="0.0908%" height="15" fill="rgb(248,25,0)" fg:x="73314" fg:w="329"/><text x="20.4879%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (2,133 samples, 0.59%)</title><rect x="19.7543%" y="789" width="0.5888%" height="15" fill="rgb(206,152,27)" fg:x="71562" fg:w="2133"/><text x="20.0043%" y="799.50"></text></g><g><title>PhaseIterGVN::optimize (2,233 samples, 0.62%)</title><rect x="19.7325%" y="805" width="0.6164%" height="15" fill="rgb(240,77,30)" fg:x="71483" fg:w="2233"/><text x="19.9825%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (244 samples, 0.07%)</title><rect x="20.3591%" y="773" width="0.0674%" height="15" fill="rgb(231,5,3)" fg:x="73753" fg:w="244"/><text x="20.6091%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (254 samples, 0.07%)</title><rect x="20.3574%" y="789" width="0.0701%" height="15" fill="rgb(207,226,32)" fg:x="73747" fg:w="254"/><text x="20.6074%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (79 samples, 0.02%)</title><rect x="20.4303%" y="789" width="0.0218%" height="15" fill="rgb(222,207,47)" fg:x="74011" fg:w="79"/><text x="20.6803%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (379 samples, 0.10%)</title><rect x="20.3547%" y="805" width="0.1046%" height="15" fill="rgb(229,115,45)" fg:x="73737" fg:w="379"/><text x="20.6047%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (65 samples, 0.02%)</title><rect x="20.4681%" y="773" width="0.0179%" height="15" fill="rgb(224,191,6)" fg:x="74148" fg:w="65"/><text x="20.7181%" y="783.50"></text></g><g><title>Compile::remove_useless_nodes (40 samples, 0.01%)</title><rect x="20.4861%" y="773" width="0.0110%" height="15" fill="rgb(230,227,24)" fg:x="74213" fg:w="40"/><text x="20.7361%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (138 samples, 0.04%)</title><rect x="20.4626%" y="789" width="0.0381%" height="15" fill="rgb(228,80,19)" fg:x="74128" fg:w="138"/><text x="20.7126%" y="799.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (151 samples, 0.04%)</title><rect x="20.4593%" y="805" width="0.0417%" height="15" fill="rgb(247,229,0)" fg:x="74116" fg:w="151"/><text x="20.7093%" y="815.50"></text></g><g><title>Compile::Optimize (16,272 samples, 4.49%)</title><rect x="16.0108%" y="821" width="4.4918%" height="15" fill="rgb(237,194,15)" fg:x="58001" fg:w="16272"/><text x="16.2608%" y="831.50">Compi..</text></g><g><title>Parse::do_field_access (41 samples, 0.01%)</title><rect x="20.5294%" y="677" width="0.0113%" height="15" fill="rgb(219,203,20)" fg:x="74370" fg:w="41"/><text x="20.7794%" y="687.50"></text></g><g><title>Parse::do_one_block (158 samples, 0.04%)</title><rect x="20.5087%" y="709" width="0.0436%" height="15" fill="rgb(234,128,8)" fg:x="74295" fg:w="158"/><text x="20.7587%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (148 samples, 0.04%)</title><rect x="20.5115%" y="693" width="0.0409%" height="15" fill="rgb(248,202,8)" fg:x="74305" fg:w="148"/><text x="20.7615%" y="703.50"></text></g><g><title>Parse::do_all_blocks (161 samples, 0.04%)</title><rect x="20.5081%" y="725" width="0.0444%" height="15" fill="rgb(206,104,37)" fg:x="74293" fg:w="161"/><text x="20.7581%" y="735.50"></text></g><g><title>ParseGenerator::generate (170 samples, 0.05%)</title><rect x="20.5081%" y="757" width="0.0469%" height="15" fill="rgb(223,8,27)" fg:x="74293" fg:w="170"/><text x="20.7581%" y="767.50"></text></g><g><title>Parse::Parse (170 samples, 0.05%)</title><rect x="20.5081%" y="741" width="0.0469%" height="15" fill="rgb(216,217,28)" fg:x="74293" fg:w="170"/><text x="20.7581%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (196 samples, 0.05%)</title><rect x="20.5043%" y="821" width="0.0541%" height="15" fill="rgb(249,199,1)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (196 samples, 0.05%)</title><rect x="20.5043%" y="805" width="0.0541%" height="15" fill="rgb(240,85,17)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="815.50"></text></g><g><title>C2Compiler::compile_method (196 samples, 0.05%)</title><rect x="20.5043%" y="789" width="0.0541%" height="15" fill="rgb(206,108,45)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="799.50"></text></g><g><title>Compile::Compile (196 samples, 0.05%)</title><rect x="20.5043%" y="773" width="0.0541%" height="15" fill="rgb(245,210,41)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (50 samples, 0.01%)</title><rect x="20.5661%" y="645" width="0.0138%" height="15" fill="rgb(206,13,37)" fg:x="74503" fg:w="50"/><text x="20.8161%" y="655.50"></text></g><g><title>ciBytecodeStream::get_method (50 samples, 0.01%)</title><rect x="20.5661%" y="629" width="0.0138%" height="15" fill="rgb(250,61,18)" fg:x="74503" fg:w="50"/><text x="20.8161%" y="639.50"></text></g><g><title>ciEnv::get_method_by_index_impl (44 samples, 0.01%)</title><rect x="20.5678%" y="613" width="0.0121%" height="15" fill="rgb(235,172,48)" fg:x="74509" fg:w="44"/><text x="20.8178%" y="623.50"></text></g><g><title>CallGenerator::for_inline (83 samples, 0.02%)</title><rect x="20.5584%" y="773" width="0.0229%" height="15" fill="rgb(249,201,17)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="783.50"></text></g><g><title>InlineTree::check_can_parse (83 samples, 0.02%)</title><rect x="20.5584%" y="757" width="0.0229%" height="15" fill="rgb(219,208,6)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="767.50"></text></g><g><title>ciMethod::get_flow_analysis (83 samples, 0.02%)</title><rect x="20.5584%" y="741" width="0.0229%" height="15" fill="rgb(248,31,23)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="751.50"></text></g><g><title>ciTypeFlow::do_flow (83 samples, 0.02%)</title><rect x="20.5584%" y="725" width="0.0229%" height="15" fill="rgb(245,15,42)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="735.50"></text></g><g><title>ciTypeFlow::flow_types (83 samples, 0.02%)</title><rect x="20.5584%" y="709" width="0.0229%" height="15" fill="rgb(222,217,39)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="719.50"></text></g><g><title>ciTypeFlow::df_flow_types (82 samples, 0.02%)</title><rect x="20.5587%" y="693" width="0.0226%" height="15" fill="rgb(210,219,27)" fg:x="74476" fg:w="82"/><text x="20.8087%" y="703.50"></text></g><g><title>ciTypeFlow::flow_block (82 samples, 0.02%)</title><rect x="20.5587%" y="677" width="0.0226%" height="15" fill="rgb(252,166,36)" fg:x="74476" fg:w="82"/><text x="20.8087%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (82 samples, 0.02%)</title><rect x="20.5587%" y="661" width="0.0226%" height="15" fill="rgb(245,132,34)" fg:x="74476" fg:w="82"/><text x="20.8087%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (67 samples, 0.02%)</title><rect x="20.5984%" y="661" width="0.0185%" height="15" fill="rgb(236,54,3)" fg:x="74620" fg:w="67"/><text x="20.8484%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (37 samples, 0.01%)</title><rect x="20.6067%" y="645" width="0.0102%" height="15" fill="rgb(241,173,43)" fg:x="74650" fg:w="37"/><text x="20.8567%" y="655.50"></text></g><g><title>Compile::call_generator (91 samples, 0.03%)</title><rect x="20.5959%" y="677" width="0.0251%" height="15" fill="rgb(215,190,9)" fg:x="74611" fg:w="91"/><text x="20.8459%" y="687.50"></text></g><g><title>Parse::do_one_block (129 samples, 0.04%)</title><rect x="20.6509%" y="629" width="0.0356%" height="15" fill="rgb(242,101,16)" fg:x="74810" fg:w="129"/><text x="20.9009%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.03%)</title><rect x="20.6525%" y="613" width="0.0340%" height="15" fill="rgb(223,190,21)" fg:x="74816" fg:w="123"/><text x="20.9025%" y="623.50"></text></g><g><title>Parse::do_all_blocks (142 samples, 0.04%)</title><rect x="20.6495%" y="645" width="0.0392%" height="15" fill="rgb(215,228,25)" fg:x="74805" fg:w="142"/><text x="20.8995%" y="655.50"></text></g><g><title>ParseGenerator::generate (228 samples, 0.06%)</title><rect x="20.6373%" y="677" width="0.0629%" height="15" fill="rgb(225,36,22)" fg:x="74761" fg:w="228"/><text x="20.8873%" y="687.50"></text></g><g><title>Parse::Parse (228 samples, 0.06%)</title><rect x="20.6373%" y="661" width="0.0629%" height="15" fill="rgb(251,106,46)" fg:x="74761" fg:w="228"/><text x="20.8873%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (56 samples, 0.02%)</title><rect x="20.7003%" y="677" width="0.0155%" height="15" fill="rgb(208,90,1)" fg:x="74989" fg:w="56"/><text x="20.9503%" y="687.50"></text></g><g><title>Parse::do_call (459 samples, 0.13%)</title><rect x="20.5959%" y="693" width="0.1267%" height="15" fill="rgb(243,10,4)" fg:x="74611" fg:w="459"/><text x="20.8459%" y="703.50"></text></g><g><title>Parse::do_field_access (62 samples, 0.02%)</title><rect x="20.7265%" y="693" width="0.0171%" height="15" fill="rgb(212,137,27)" fg:x="75084" fg:w="62"/><text x="20.9765%" y="703.50"></text></g><g><title>Parse::do_one_block (649 samples, 0.18%)</title><rect x="20.5838%" y="725" width="0.1792%" height="15" fill="rgb(231,220,49)" fg:x="74567" fg:w="649"/><text x="20.8338%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (645 samples, 0.18%)</title><rect x="20.5849%" y="709" width="0.1780%" height="15" fill="rgb(237,96,20)" fg:x="74571" fg:w="645"/><text x="20.8349%" y="719.50"></text></g><g><title>Parse::do_all_blocks (652 samples, 0.18%)</title><rect x="20.5832%" y="741" width="0.1800%" height="15" fill="rgb(239,229,30)" fg:x="74565" fg:w="652"/><text x="20.8332%" y="751.50"></text></g><g><title>ParseGenerator::generate (659 samples, 0.18%)</title><rect x="20.5832%" y="773" width="0.1819%" height="15" fill="rgb(219,65,33)" fg:x="74565" fg:w="659"/><text x="20.8332%" y="783.50"></text></g><g><title>Parse::Parse (659 samples, 0.18%)</title><rect x="20.5832%" y="757" width="0.1819%" height="15" fill="rgb(243,134,7)" fg:x="74565" fg:w="659"/><text x="20.8332%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (780 samples, 0.22%)</title><rect x="20.5584%" y="821" width="0.2153%" height="15" fill="rgb(216,177,54)" fg:x="74475" fg:w="780"/><text x="20.8084%" y="831.50"></text></g><g><title>C2Compiler::compile_method (780 samples, 0.22%)</title><rect x="20.5584%" y="805" width="0.2153%" height="15" fill="rgb(211,160,20)" fg:x="74475" fg:w="780"/><text x="20.8084%" y="815.50"></text></g><g><title>Compile::Compile (780 samples, 0.22%)</title><rect x="20.5584%" y="789" width="0.2153%" height="15" fill="rgb(239,85,39)" fg:x="74475" fg:w="780"/><text x="20.8084%" y="799.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.02%)</title><rect x="20.7944%" y="693" width="0.0163%" height="15" fill="rgb(232,125,22)" fg:x="75330" fg:w="59"/><text x="21.0444%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.02%)</title><rect x="20.7955%" y="677" width="0.0152%" height="15" fill="rgb(244,57,34)" fg:x="75334" fg:w="55"/><text x="21.0455%" y="687.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.02%)</title><rect x="20.7938%" y="709" width="0.0174%" height="15" fill="rgb(214,203,32)" fg:x="75328" fg:w="63"/><text x="21.0438%" y="719.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.02%)</title><rect x="20.7938%" y="741" width="0.0199%" height="15" fill="rgb(207,58,43)" fg:x="75328" fg:w="72"/><text x="21.0438%" y="751.50"></text></g><g><title>Parse::Parse (72 samples, 0.02%)</title><rect x="20.7938%" y="725" width="0.0199%" height="15" fill="rgb(215,193,15)" fg:x="75328" fg:w="72"/><text x="21.0438%" y="735.50"></text></g><g><title>JavaThread::thread_main_inner (92 samples, 0.03%)</title><rect x="20.7894%" y="821" width="0.0254%" height="15" fill="rgb(232,15,44)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="831.50"></text></g><g><title>CompileBroker::compiler_thread_loop (92 samples, 0.03%)</title><rect x="20.7894%" y="805" width="0.0254%" height="15" fill="rgb(212,3,48)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (92 samples, 0.03%)</title><rect x="20.7894%" y="789" width="0.0254%" height="15" fill="rgb(218,128,7)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="799.50"></text></g><g><title>C2Compiler::compile_method (92 samples, 0.03%)</title><rect x="20.7894%" y="773" width="0.0254%" height="15" fill="rgb(226,216,39)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="783.50"></text></g><g><title>Compile::Compile (92 samples, 0.03%)</title><rect x="20.7894%" y="757" width="0.0254%" height="15" fill="rgb(243,47,51)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="767.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="20.8181%" y="741" width="0.0105%" height="15" fill="rgb(241,183,40)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="751.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="20.8181%" y="725" width="0.0105%" height="15" fill="rgb(231,217,32)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="735.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.01%)</title><rect x="20.8181%" y="709" width="0.0105%" height="15" fill="rgb(229,61,38)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="719.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.01%)</title><rect x="20.8181%" y="693" width="0.0105%" height="15" fill="rgb(225,210,5)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.01%)</title><rect x="20.8181%" y="677" width="0.0105%" height="15" fill="rgb(231,79,45)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="687.50"></text></g><g><title>Parse::do_call (38 samples, 0.01%)</title><rect x="20.8181%" y="661" width="0.0105%" height="15" fill="rgb(224,100,7)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="671.50"></text></g><g><title>Parse::Parse (44 samples, 0.01%)</title><rect x="20.8181%" y="821" width="0.0121%" height="15" fill="rgb(241,198,18)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="831.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="20.8181%" y="805" width="0.0121%" height="15" fill="rgb(252,97,53)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="815.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="20.8181%" y="789" width="0.0121%" height="15" fill="rgb(220,88,7)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="20.8181%" y="773" width="0.0121%" height="15" fill="rgb(213,176,14)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="783.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="20.8181%" y="757" width="0.0121%" height="15" fill="rgb(246,73,7)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="767.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="20.8303%" y="757" width="0.0102%" height="15" fill="rgb(245,64,36)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="767.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="20.8303%" y="741" width="0.0102%" height="15" fill="rgb(245,80,10)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="751.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.01%)</title><rect x="20.8303%" y="725" width="0.0102%" height="15" fill="rgb(232,107,50)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="735.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.01%)</title><rect x="20.8303%" y="709" width="0.0102%" height="15" fill="rgb(253,3,0)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.01%)</title><rect x="20.8303%" y="693" width="0.0102%" height="15" fill="rgb(212,99,53)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="703.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="20.8303%" y="677" width="0.0102%" height="15" fill="rgb(249,111,54)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="687.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="20.8303%" y="821" width="0.0121%" height="15" fill="rgb(249,55,30)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="831.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="20.8303%" y="805" width="0.0121%" height="15" fill="rgb(237,47,42)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="20.8303%" y="789" width="0.0121%" height="15" fill="rgb(211,20,18)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="799.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="20.8303%" y="773" width="0.0121%" height="15" fill="rgb(231,203,46)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="783.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="20.8424%" y="517" width="0.0116%" height="15" fill="rgb(237,142,3)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="527.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="20.8424%" y="501" width="0.0116%" height="15" fill="rgb(241,107,1)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="511.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="20.8424%" y="485" width="0.0116%" height="15" fill="rgb(229,83,13)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="495.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="20.8424%" y="469" width="0.0116%" height="15" fill="rgb(241,91,40)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="20.8424%" y="453" width="0.0116%" height="15" fill="rgb(225,3,45)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="463.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="20.8424%" y="437" width="0.0116%" height="15" fill="rgb(244,223,14)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="447.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.01%)</title><rect x="20.8424%" y="613" width="0.0130%" height="15" fill="rgb(224,124,37)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="623.50"></text></g><g><title>Parse::Parse (47 samples, 0.01%)</title><rect x="20.8424%" y="597" width="0.0130%" height="15" fill="rgb(251,171,30)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="607.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.01%)</title><rect x="20.8424%" y="581" width="0.0130%" height="15" fill="rgb(236,46,54)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="591.50"></text></g><g><title>Parse::do_one_block (47 samples, 0.01%)</title><rect x="20.8424%" y="565" width="0.0130%" height="15" fill="rgb(245,213,5)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.01%)</title><rect x="20.8424%" y="549" width="0.0130%" height="15" fill="rgb(230,144,27)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="559.50"></text></g><g><title>Parse::do_call (47 samples, 0.01%)</title><rect x="20.8424%" y="533" width="0.0130%" height="15" fill="rgb(220,86,6)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="543.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.02%)</title><rect x="20.8424%" y="709" width="0.0157%" height="15" fill="rgb(240,20,13)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="719.50"></text></g><g><title>Parse::Parse (57 samples, 0.02%)</title><rect x="20.8424%" y="693" width="0.0157%" height="15" fill="rgb(217,89,34)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="703.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.02%)</title><rect x="20.8424%" y="677" width="0.0157%" height="15" fill="rgb(229,13,5)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="687.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.02%)</title><rect x="20.8424%" y="661" width="0.0157%" height="15" fill="rgb(244,67,35)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="20.8424%" y="645" width="0.0157%" height="15" fill="rgb(221,40,2)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="655.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="20.8424%" y="629" width="0.0157%" height="15" fill="rgb(237,157,21)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="639.50"></text></g><g><title>ParseGenerator::generate (66 samples, 0.02%)</title><rect x="20.8424%" y="805" width="0.0182%" height="15" fill="rgb(222,94,11)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="815.50"></text></g><g><title>Parse::Parse (66 samples, 0.02%)</title><rect x="20.8424%" y="789" width="0.0182%" height="15" fill="rgb(249,113,6)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="799.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.02%)</title><rect x="20.8424%" y="773" width="0.0182%" height="15" fill="rgb(238,137,36)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="783.50"></text></g><g><title>Parse::do_one_block (66 samples, 0.02%)</title><rect x="20.8424%" y="757" width="0.0182%" height="15" fill="rgb(210,102,26)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.02%)</title><rect x="20.8424%" y="741" width="0.0182%" height="15" fill="rgb(218,30,30)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="751.50"></text></g><g><title>Parse::do_call (66 samples, 0.02%)</title><rect x="20.8424%" y="725" width="0.0182%" height="15" fill="rgb(214,67,26)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="735.50"></text></g><g><title>Parse::do_call (83 samples, 0.02%)</title><rect x="20.8424%" y="821" width="0.0229%" height="15" fill="rgb(251,9,53)" fg:x="75504" fg:w="83"/><text x="21.0924%" y="831.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="20.8653%" y="821" width="0.0116%" height="15" fill="rgb(228,204,25)" fg:x="75587" fg:w="42"/><text x="21.1153%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.01%)</title><rect x="20.8656%" y="805" width="0.0113%" height="15" fill="rgb(207,153,8)" fg:x="75588" fg:w="41"/><text x="21.1156%" y="815.50"></text></g><g><title>Parse::do_call (41 samples, 0.01%)</title><rect x="20.8656%" y="789" width="0.0113%" height="15" fill="rgb(242,9,16)" fg:x="75588" fg:w="41"/><text x="21.1156%" y="799.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="20.8772%" y="789" width="0.0108%" height="15" fill="rgb(217,211,10)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="799.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="20.8772%" y="773" width="0.0108%" height="15" fill="rgb(219,228,52)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="783.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.01%)</title><rect x="20.8772%" y="757" width="0.0108%" height="15" fill="rgb(231,92,29)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="767.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.01%)</title><rect x="20.8772%" y="741" width="0.0108%" height="15" fill="rgb(232,8,23)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.01%)</title><rect x="20.8772%" y="725" width="0.0108%" height="15" fill="rgb(216,211,34)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="735.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="20.8772%" y="709" width="0.0108%" height="15" fill="rgb(236,151,0)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.01%)</title><rect x="20.8769%" y="821" width="0.0130%" height="15" fill="rgb(209,168,3)" fg:x="75629" fg:w="47"/><text x="21.1269%" y="831.50"></text></g><g><title>Parse::do_call (47 samples, 0.01%)</title><rect x="20.8769%" y="805" width="0.0130%" height="15" fill="rgb(208,129,28)" fg:x="75629" fg:w="47"/><text x="21.1269%" y="815.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="20.8996%" y="53" width="0.0102%" height="15" fill="rgb(229,78,22)" fg:x="75711" fg:w="37"/><text x="21.1496%" y="63.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="20.8996%" y="37" width="0.0102%" height="15" fill="rgb(228,187,13)" fg:x="75711" fg:w="37"/><text x="21.1496%" y="47.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="20.8960%" y="69" width="0.0141%" height="15" fill="rgb(240,119,24)" fg:x="75698" fg:w="51"/><text x="21.1460%" y="79.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.02%)</title><rect x="20.8943%" y="149" width="0.0196%" height="15" fill="rgb(209,194,42)" fg:x="75692" fg:w="71"/><text x="21.1443%" y="159.50"></text></g><g><title>Parse::Parse (71 samples, 0.02%)</title><rect x="20.8943%" y="133" width="0.0196%" height="15" fill="rgb(247,200,46)" fg:x="75692" fg:w="71"/><text x="21.1443%" y="143.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.02%)</title><rect x="20.8949%" y="117" width="0.0190%" height="15" fill="rgb(218,76,16)" fg:x="75694" fg:w="69"/><text x="21.1449%" y="127.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.02%)</title><rect x="20.8949%" y="101" width="0.0190%" height="15" fill="rgb(225,21,48)" fg:x="75694" fg:w="69"/><text x="21.1449%" y="111.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.02%)</title><rect x="20.8949%" y="85" width="0.0190%" height="15" fill="rgb(239,223,50)" fg:x="75694" fg:w="69"/><text x="21.1449%" y="95.50"></text></g><g><title>Parse::do_call (78 samples, 0.02%)</title><rect x="20.8929%" y="165" width="0.0215%" height="15" fill="rgb(244,45,21)" fg:x="75687" fg:w="78"/><text x="21.1429%" y="175.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.02%)</title><rect x="20.8929%" y="245" width="0.0221%" height="15" fill="rgb(232,33,43)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="255.50"></text></g><g><title>Parse::Parse (80 samples, 0.02%)</title><rect x="20.8929%" y="229" width="0.0221%" height="15" fill="rgb(209,8,3)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="239.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.02%)</title><rect x="20.8929%" y="213" width="0.0221%" height="15" fill="rgb(214,25,53)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="223.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.02%)</title><rect x="20.8929%" y="197" width="0.0221%" height="15" fill="rgb(254,186,54)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="20.8929%" y="181" width="0.0221%" height="15" fill="rgb(208,174,49)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="191.50"></text></g><g><title>ParseGenerator::generate (98 samples, 0.03%)</title><rect x="20.8899%" y="341" width="0.0271%" height="15" fill="rgb(233,191,51)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="351.50"></text></g><g><title>Parse::Parse (98 samples, 0.03%)</title><rect x="20.8899%" y="325" width="0.0271%" height="15" fill="rgb(222,134,10)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="335.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.03%)</title><rect x="20.8899%" y="309" width="0.0271%" height="15" fill="rgb(230,226,20)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="319.50"></text></g><g><title>Parse::do_one_block (98 samples, 0.03%)</title><rect x="20.8899%" y="293" width="0.0271%" height="15" fill="rgb(251,111,25)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.03%)</title><rect x="20.8899%" y="277" width="0.0271%" height="15" fill="rgb(224,40,46)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="287.50"></text></g><g><title>Parse::do_call (98 samples, 0.03%)</title><rect x="20.8899%" y="261" width="0.0271%" height="15" fill="rgb(236,108,47)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="271.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.03%)</title><rect x="20.8899%" y="437" width="0.0293%" height="15" fill="rgb(234,93,0)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="447.50"></text></g><g><title>Parse::Parse (106 samples, 0.03%)</title><rect x="20.8899%" y="421" width="0.0293%" height="15" fill="rgb(224,213,32)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="431.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.03%)</title><rect x="20.8899%" y="405" width="0.0293%" height="15" fill="rgb(251,11,48)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="415.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.03%)</title><rect x="20.8899%" y="389" width="0.0293%" height="15" fill="rgb(236,173,5)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.03%)</title><rect x="20.8899%" y="373" width="0.0293%" height="15" fill="rgb(230,95,12)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="383.50"></text></g><g><title>Parse::do_call (106 samples, 0.03%)</title><rect x="20.8899%" y="357" width="0.0293%" height="15" fill="rgb(232,209,1)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="367.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.04%)</title><rect x="20.8899%" y="533" width="0.0351%" height="15" fill="rgb(232,6,1)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="543.50"></text></g><g><title>Parse::Parse (127 samples, 0.04%)</title><rect x="20.8899%" y="517" width="0.0351%" height="15" fill="rgb(210,224,50)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="527.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.04%)</title><rect x="20.8899%" y="501" width="0.0351%" height="15" fill="rgb(228,127,35)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="511.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.04%)</title><rect x="20.8899%" y="485" width="0.0351%" height="15" fill="rgb(245,102,45)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (127 samples, 0.04%)</title><rect x="20.8899%" y="469" width="0.0351%" height="15" fill="rgb(214,1,49)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="479.50"></text></g><g><title>Parse::do_call (127 samples, 0.04%)</title><rect x="20.8899%" y="453" width="0.0351%" height="15" fill="rgb(226,163,40)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="463.50"></text></g><g><title>ParseGenerator::generate (148 samples, 0.04%)</title><rect x="20.8899%" y="629" width="0.0409%" height="15" fill="rgb(239,212,28)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="639.50"></text></g><g><title>Parse::Parse (148 samples, 0.04%)</title><rect x="20.8899%" y="613" width="0.0409%" height="15" fill="rgb(220,20,13)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="623.50"></text></g><g><title>Parse::do_all_blocks (148 samples, 0.04%)</title><rect x="20.8899%" y="597" width="0.0409%" height="15" fill="rgb(210,164,35)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="607.50"></text></g><g><title>Parse::do_one_block (148 samples, 0.04%)</title><rect x="20.8899%" y="581" width="0.0409%" height="15" fill="rgb(248,109,41)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (148 samples, 0.04%)</title><rect x="20.8899%" y="565" width="0.0409%" height="15" fill="rgb(238,23,50)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="575.50"></text></g><g><title>Parse::do_call (148 samples, 0.04%)</title><rect x="20.8899%" y="549" width="0.0409%" height="15" fill="rgb(211,48,49)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="559.50"></text></g><g><title>ParseGenerator::generate (177 samples, 0.05%)</title><rect x="20.8899%" y="725" width="0.0489%" height="15" fill="rgb(223,36,21)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="735.50"></text></g><g><title>Parse::Parse (177 samples, 0.05%)</title><rect x="20.8899%" y="709" width="0.0489%" height="15" fill="rgb(207,123,46)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="719.50"></text></g><g><title>Parse::do_all_blocks (177 samples, 0.05%)</title><rect x="20.8899%" y="693" width="0.0489%" height="15" fill="rgb(240,218,32)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="703.50"></text></g><g><title>Parse::do_one_block (177 samples, 0.05%)</title><rect x="20.8899%" y="677" width="0.0489%" height="15" fill="rgb(252,5,43)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (177 samples, 0.05%)</title><rect x="20.8899%" y="661" width="0.0489%" height="15" fill="rgb(252,84,19)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="671.50"></text></g><g><title>Parse::do_call (177 samples, 0.05%)</title><rect x="20.8899%" y="645" width="0.0489%" height="15" fill="rgb(243,152,39)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="655.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="20.9388%" y="709" width="0.0102%" height="15" fill="rgb(234,160,15)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="719.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="20.9388%" y="693" width="0.0102%" height="15" fill="rgb(237,34,20)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="703.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.01%)</title><rect x="20.9388%" y="677" width="0.0102%" height="15" fill="rgb(229,97,13)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="687.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.01%)</title><rect x="20.9388%" y="661" width="0.0102%" height="15" fill="rgb(234,71,50)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.01%)</title><rect x="20.9388%" y="645" width="0.0102%" height="15" fill="rgb(253,155,4)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="655.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="20.9388%" y="629" width="0.0102%" height="15" fill="rgb(222,185,37)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="639.50"></text></g><g><title>ParseGenerator::generate (220 samples, 0.06%)</title><rect x="20.8899%" y="821" width="0.0607%" height="15" fill="rgb(251,177,13)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="831.50"></text></g><g><title>Parse::Parse (220 samples, 0.06%)</title><rect x="20.8899%" y="805" width="0.0607%" height="15" fill="rgb(250,179,40)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="815.50"></text></g><g><title>Parse::do_all_blocks (220 samples, 0.06%)</title><rect x="20.8899%" y="789" width="0.0607%" height="15" fill="rgb(242,44,2)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="799.50"></text></g><g><title>Parse::do_one_block (220 samples, 0.06%)</title><rect x="20.8899%" y="773" width="0.0607%" height="15" fill="rgb(216,177,13)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (220 samples, 0.06%)</title><rect x="20.8899%" y="757" width="0.0607%" height="15" fill="rgb(216,106,43)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="767.50"></text></g><g><title>Parse::do_call (220 samples, 0.06%)</title><rect x="20.8899%" y="741" width="0.0607%" height="15" fill="rgb(216,183,2)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (43 samples, 0.01%)</title><rect x="20.9388%" y="725" width="0.0119%" height="15" fill="rgb(249,75,3)" fg:x="75853" fg:w="43"/><text x="21.1888%" y="735.50"></text></g><g><title>Thread::call_run (59 samples, 0.02%)</title><rect x="20.9647%" y="821" width="0.0163%" height="15" fill="rgb(219,67,39)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (59 samples, 0.02%)</title><rect x="20.9647%" y="805" width="0.0163%" height="15" fill="rgb(253,228,2)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (59 samples, 0.02%)</title><rect x="20.9647%" y="789" width="0.0163%" height="15" fill="rgb(235,138,27)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (59 samples, 0.02%)</title><rect x="20.9647%" y="773" width="0.0163%" height="15" fill="rgb(236,97,51)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="783.50"></text></g><g><title>C2Compiler::compile_method (59 samples, 0.02%)</title><rect x="20.9647%" y="757" width="0.0163%" height="15" fill="rgb(240,80,30)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="767.50"></text></g><g><title>Compile::Compile (59 samples, 0.02%)</title><rect x="20.9647%" y="741" width="0.0163%" height="15" fill="rgb(230,178,19)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="751.50"></text></g><g><title>_dl_update_slotinfo (56 samples, 0.02%)</title><rect x="20.9849%" y="821" width="0.0155%" height="15" fill="rgb(210,190,27)" fg:x="76020" fg:w="56"/><text x="21.2349%" y="831.50"></text></g><g><title>start_thread (76 samples, 0.02%)</title><rect x="21.0056%" y="821" width="0.0210%" height="15" fill="rgb(222,107,31)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="831.50"></text></g><g><title>thread_native_entry (76 samples, 0.02%)</title><rect x="21.0056%" y="805" width="0.0210%" height="15" fill="rgb(216,127,34)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="815.50"></text></g><g><title>Thread::call_run (76 samples, 0.02%)</title><rect x="21.0056%" y="789" width="0.0210%" height="15" fill="rgb(234,116,52)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (76 samples, 0.02%)</title><rect x="21.0056%" y="773" width="0.0210%" height="15" fill="rgb(222,124,15)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (76 samples, 0.02%)</title><rect x="21.0056%" y="757" width="0.0210%" height="15" fill="rgb(231,179,28)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (76 samples, 0.02%)</title><rect x="21.0056%" y="741" width="0.0210%" height="15" fill="rgb(226,93,45)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="751.50"></text></g><g><title>C2Compiler::compile_method (76 samples, 0.02%)</title><rect x="21.0056%" y="725" width="0.0210%" height="15" fill="rgb(215,8,51)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="735.50"></text></g><g><title>Compile::Compile (76 samples, 0.02%)</title><rect x="21.0056%" y="709" width="0.0210%" height="15" fill="rgb(223,106,5)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="719.50"></text></g><g><title>[unknown] (59,442 samples, 16.41%)</title><rect x="4.6248%" y="837" width="16.4086%" height="15" fill="rgb(250,191,5)" fg:x="16754" fg:w="59442"/><text x="4.8748%" y="847.50">[unknown]</text></g><g><title>Dict::Insert (68 samples, 0.02%)</title><rect x="21.0597%" y="661" width="0.0188%" height="15" fill="rgb(242,132,44)" fg:x="76291" fg:w="68"/><text x="21.3097%" y="671.50"></text></g><g><title>CompileWrapper::CompileWrapper (90 samples, 0.02%)</title><rect x="21.0580%" y="693" width="0.0248%" height="15" fill="rgb(251,152,29)" fg:x="76285" fg:w="90"/><text x="21.3080%" y="703.50"></text></g><g><title>Type::Initialize (89 samples, 0.02%)</title><rect x="21.0583%" y="677" width="0.0246%" height="15" fill="rgb(218,179,5)" fg:x="76286" fg:w="89"/><text x="21.3083%" y="687.50"></text></g><g><title>Compile::identify_useful_nodes (157 samples, 0.04%)</title><rect x="21.0967%" y="677" width="0.0433%" height="15" fill="rgb(227,67,19)" fg:x="76425" fg:w="157"/><text x="21.3467%" y="687.50"></text></g><g><title>Compile::remove_useless_nodes (171 samples, 0.05%)</title><rect x="21.1400%" y="677" width="0.0472%" height="15" fill="rgb(233,119,31)" fg:x="76582" fg:w="171"/><text x="21.3900%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (403 samples, 0.11%)</title><rect x="21.0870%" y="693" width="0.1112%" height="15" fill="rgb(241,120,22)" fg:x="76390" fg:w="403"/><text x="21.3370%" y="703.50"></text></g><g><title>C2Compiler::compile_method (634 samples, 0.18%)</title><rect x="21.0384%" y="725" width="0.1750%" height="15" fill="rgb(224,102,30)" fg:x="76214" fg:w="634"/><text x="21.2884%" y="735.50"></text></g><g><title>Compile::Compile (626 samples, 0.17%)</title><rect x="21.0406%" y="709" width="0.1728%" height="15" fill="rgb(210,164,37)" fg:x="76222" fg:w="626"/><text x="21.2906%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (758 samples, 0.21%)</title><rect x="21.0373%" y="741" width="0.2092%" height="15" fill="rgb(226,191,16)" fg:x="76210" fg:w="758"/><text x="21.2873%" y="751.50"></text></g><g><title>finish_task_switch (62 samples, 0.02%)</title><rect x="21.2758%" y="501" width="0.0171%" height="15" fill="rgb(214,40,45)" fg:x="77074" fg:w="62"/><text x="21.5258%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.02%)</title><rect x="21.2764%" y="485" width="0.0166%" height="15" fill="rgb(244,29,26)" fg:x="77076" fg:w="60"/><text x="21.5264%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.02%)</title><rect x="21.2769%" y="469" width="0.0160%" height="15" fill="rgb(216,16,5)" fg:x="77078" fg:w="58"/><text x="21.5269%" y="479.50"></text></g><g><title>native_write_msr (58 samples, 0.02%)</title><rect x="21.2769%" y="453" width="0.0160%" height="15" fill="rgb(249,76,35)" fg:x="77078" fg:w="58"/><text x="21.5269%" y="463.50"></text></g><g><title>futex_wait_queue_me (106 samples, 0.03%)</title><rect x="21.2673%" y="549" width="0.0293%" height="15" fill="rgb(207,11,44)" fg:x="77043" fg:w="106"/><text x="21.5173%" y="559.50"></text></g><g><title>schedule (92 samples, 0.03%)</title><rect x="21.2711%" y="533" width="0.0254%" height="15" fill="rgb(228,190,49)" fg:x="77057" fg:w="92"/><text x="21.5211%" y="543.50"></text></g><g><title>__schedule (91 samples, 0.03%)</title><rect x="21.2714%" y="517" width="0.0251%" height="15" fill="rgb(214,173,12)" fg:x="77058" fg:w="91"/><text x="21.5214%" y="527.50"></text></g><g><title>do_futex (117 samples, 0.03%)</title><rect x="21.2664%" y="581" width="0.0323%" height="15" fill="rgb(218,26,35)" fg:x="77040" fg:w="117"/><text x="21.5164%" y="591.50"></text></g><g><title>futex_wait (116 samples, 0.03%)</title><rect x="21.2667%" y="565" width="0.0320%" height="15" fill="rgb(220,200,19)" fg:x="77041" fg:w="116"/><text x="21.5167%" y="575.50"></text></g><g><title>do_syscall_64 (119 samples, 0.03%)</title><rect x="21.2662%" y="613" width="0.0328%" height="15" fill="rgb(239,95,49)" fg:x="77039" fg:w="119"/><text x="21.5162%" y="623.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.03%)</title><rect x="21.2662%" y="597" width="0.0328%" height="15" fill="rgb(235,85,53)" fg:x="77039" fg:w="119"/><text x="21.5162%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="21.2659%" y="629" width="0.0340%" height="15" fill="rgb(233,133,31)" fg:x="77038" fg:w="123"/><text x="21.5159%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (132 samples, 0.04%)</title><rect x="21.2642%" y="677" width="0.0364%" height="15" fill="rgb(218,25,20)" fg:x="77032" fg:w="132"/><text x="21.5142%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (132 samples, 0.04%)</title><rect x="21.2642%" y="661" width="0.0364%" height="15" fill="rgb(252,210,38)" fg:x="77032" fg:w="132"/><text x="21.5142%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.04%)</title><rect x="21.2651%" y="645" width="0.0356%" height="15" fill="rgb(242,134,21)" fg:x="77035" fg:w="129"/><text x="21.5151%" y="655.50"></text></g><g><title>os::PlatformEvent::park (147 samples, 0.04%)</title><rect x="21.2631%" y="693" width="0.0406%" height="15" fill="rgb(213,28,48)" fg:x="77028" fg:w="147"/><text x="21.5131%" y="703.50"></text></g><g><title>Monitor::IWait (188 samples, 0.05%)</title><rect x="21.2526%" y="709" width="0.0519%" height="15" fill="rgb(250,196,2)" fg:x="76990" fg:w="188"/><text x="21.5026%" y="719.50"></text></g><g><title>Monitor::wait (197 samples, 0.05%)</title><rect x="21.2507%" y="725" width="0.0544%" height="15" fill="rgb(227,5,17)" fg:x="76983" fg:w="197"/><text x="21.5007%" y="735.50"></text></g><g><title>CompileQueue::get (238 samples, 0.07%)</title><rect x="21.2477%" y="741" width="0.0657%" height="15" fill="rgb(221,226,24)" fg:x="76972" fg:w="238"/><text x="21.4977%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,007 samples, 0.28%)</title><rect x="21.0362%" y="757" width="0.2780%" height="15" fill="rgb(211,5,48)" fg:x="76206" fg:w="1007"/><text x="21.2862%" y="767.50"></text></g><g><title>__GI___clone (1,012 samples, 0.28%)</title><rect x="21.0359%" y="837" width="0.2794%" height="15" fill="rgb(219,150,6)" fg:x="76205" fg:w="1012"/><text x="21.2859%" y="847.50"></text></g><g><title>start_thread (1,012 samples, 0.28%)</title><rect x="21.0359%" y="821" width="0.2794%" height="15" fill="rgb(251,46,16)" fg:x="76205" fg:w="1012"/><text x="21.2859%" y="831.50"></text></g><g><title>thread_native_entry (1,011 samples, 0.28%)</title><rect x="21.0362%" y="805" width="0.2791%" height="15" fill="rgb(220,204,40)" fg:x="76206" fg:w="1011"/><text x="21.2862%" y="815.50"></text></g><g><title>Thread::call_run (1,011 samples, 0.28%)</title><rect x="21.0362%" y="789" width="0.2791%" height="15" fill="rgb(211,85,2)" fg:x="76206" fg:w="1011"/><text x="21.2862%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (1,011 samples, 0.28%)</title><rect x="21.0362%" y="773" width="0.2791%" height="15" fill="rgb(229,17,7)" fg:x="76206" fg:w="1011"/><text x="21.2862%" y="783.50"></text></g><g><title>C2_CompilerThre (64,184 samples, 17.72%)</title><rect x="3.6267%" y="853" width="17.7176%" height="15" fill="rgb(239,72,28)" fg:x="13138" fg:w="64184"/><text x="3.8767%" y="863.50">C2_CompilerThre</text></g><g><title>[perf-985085.map] (114 samples, 0.03%)</title><rect x="21.3462%" y="837" width="0.0315%" height="15" fill="rgb(230,47,54)" fg:x="77329" fg:w="114"/><text x="21.5962%" y="847.50"></text></g><g><title>Command-Accumul (129 samples, 0.04%)</title><rect x="21.3443%" y="853" width="0.0356%" height="15" fill="rgb(214,50,8)" fg:x="77322" fg:w="129"/><text x="21.5943%" y="863.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="21.4909%" y="661" width="0.0141%" height="15" fill="rgb(216,198,43)" fg:x="77853" fg:w="51"/><text x="21.7409%" y="671.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="21.4911%" y="645" width="0.0138%" height="15" fill="rgb(234,20,35)" fg:x="77854" fg:w="50"/><text x="21.7411%" y="655.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="21.4911%" y="629" width="0.0138%" height="15" fill="rgb(254,45,19)" fg:x="77854" fg:w="50"/><text x="21.7411%" y="639.50"></text></g><g><title>do_futex (60 samples, 0.02%)</title><rect x="21.4898%" y="693" width="0.0166%" height="15" fill="rgb(219,14,44)" fg:x="77849" fg:w="60"/><text x="21.7398%" y="703.50"></text></g><g><title>futex_wait (59 samples, 0.02%)</title><rect x="21.4900%" y="677" width="0.0163%" height="15" fill="rgb(217,220,26)" fg:x="77850" fg:w="59"/><text x="21.7400%" y="687.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.02%)</title><rect x="21.4898%" y="709" width="0.0168%" height="15" fill="rgb(213,158,28)" fg:x="77849" fg:w="61"/><text x="21.7398%" y="719.50"></text></g><g><title>do_syscall_64 (62 samples, 0.02%)</title><rect x="21.4898%" y="725" width="0.0171%" height="15" fill="rgb(252,51,52)" fg:x="77849" fg:w="62"/><text x="21.7398%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="21.4895%" y="741" width="0.0188%" height="15" fill="rgb(246,89,16)" fg:x="77848" fg:w="68"/><text x="21.7395%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (77 samples, 0.02%)</title><rect x="21.4873%" y="789" width="0.0213%" height="15" fill="rgb(216,158,49)" fg:x="77840" fg:w="77"/><text x="21.7373%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (77 samples, 0.02%)</title><rect x="21.4873%" y="773" width="0.0213%" height="15" fill="rgb(236,107,19)" fg:x="77840" fg:w="77"/><text x="21.7373%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (73 samples, 0.02%)</title><rect x="21.4884%" y="757" width="0.0202%" height="15" fill="rgb(228,185,30)" fg:x="77844" fg:w="73"/><text x="21.7384%" y="767.50"></text></g><g><title>Unsafe_Park (117 samples, 0.03%)</title><rect x="21.4856%" y="821" width="0.0323%" height="15" fill="rgb(246,134,8)" fg:x="77834" fg:w="117"/><text x="21.7356%" y="831.50"></text></g><g><title>Parker::park (115 samples, 0.03%)</title><rect x="21.4862%" y="805" width="0.0317%" height="15" fill="rgb(214,143,50)" fg:x="77836" fg:w="115"/><text x="21.7362%" y="815.50"></text></g><g><title>[perf-985085.map] (444 samples, 0.12%)</title><rect x="21.3959%" y="837" width="0.1226%" height="15" fill="rgb(228,75,8)" fg:x="77509" fg:w="444"/><text x="21.6459%" y="847.50"></text></g><g><title>ForkJoinPool.co (476 samples, 0.13%)</title><rect x="21.3929%" y="853" width="0.1314%" height="15" fill="rgb(207,175,4)" fg:x="77498" fg:w="476"/><text x="21.6429%" y="863.50"></text></g><g><title>__GI___clone (63 samples, 0.02%)</title><rect x="21.5245%" y="837" width="0.0174%" height="15" fill="rgb(205,108,24)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="847.50"></text></g><g><title>start_thread (63 samples, 0.02%)</title><rect x="21.5245%" y="821" width="0.0174%" height="15" fill="rgb(244,120,49)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="831.50"></text></g><g><title>thread_native_entry (63 samples, 0.02%)</title><rect x="21.5245%" y="805" width="0.0174%" height="15" fill="rgb(223,47,38)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="815.50"></text></g><g><title>Thread::call_run (63 samples, 0.02%)</title><rect x="21.5245%" y="789" width="0.0174%" height="15" fill="rgb(229,179,11)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="799.50"></text></g><g><title>GangWorker::loop (63 samples, 0.02%)</title><rect x="21.5245%" y="773" width="0.0174%" height="15" fill="rgb(231,122,1)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="783.50"></text></g><g><title>G1_Conc#0 (66 samples, 0.02%)</title><rect x="21.5243%" y="853" width="0.0182%" height="15" fill="rgb(245,119,9)" fg:x="77974" fg:w="66"/><text x="21.7743%" y="863.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (74 samples, 0.02%)</title><rect x="21.5555%" y="741" width="0.0204%" height="15" fill="rgb(241,163,25)" fg:x="78087" fg:w="74"/><text x="21.8055%" y="751.50"></text></g><g><title>G1RemSet::refine_card_concurrently (72 samples, 0.02%)</title><rect x="21.5560%" y="725" width="0.0199%" height="15" fill="rgb(217,214,3)" fg:x="78089" fg:w="72"/><text x="21.8060%" y="735.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (77 samples, 0.02%)</title><rect x="21.5555%" y="757" width="0.0213%" height="15" fill="rgb(240,86,28)" fg:x="78087" fg:w="77"/><text x="21.8055%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (91 samples, 0.03%)</title><rect x="21.5555%" y="773" width="0.0251%" height="15" fill="rgb(215,47,9)" fg:x="78087" fg:w="91"/><text x="21.8055%" y="783.50"></text></g><g><title>G1_Refine#0 (97 samples, 0.03%)</title><rect x="21.5541%" y="853" width="0.0268%" height="15" fill="rgb(252,25,45)" fg:x="78082" fg:w="97"/><text x="21.8041%" y="863.50"></text></g><g><title>__GI___clone (92 samples, 0.03%)</title><rect x="21.5555%" y="837" width="0.0254%" height="15" fill="rgb(251,164,9)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="847.50"></text></g><g><title>start_thread (92 samples, 0.03%)</title><rect x="21.5555%" y="821" width="0.0254%" height="15" fill="rgb(233,194,0)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="831.50"></text></g><g><title>thread_native_entry (92 samples, 0.03%)</title><rect x="21.5555%" y="805" width="0.0254%" height="15" fill="rgb(249,111,24)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="815.50"></text></g><g><title>Thread::call_run (92 samples, 0.03%)</title><rect x="21.5555%" y="789" width="0.0254%" height="15" fill="rgb(250,223,3)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (84 samples, 0.02%)</title><rect x="21.6013%" y="741" width="0.0232%" height="15" fill="rgb(236,178,37)" fg:x="78253" fg:w="84"/><text x="21.8513%" y="751.50"></text></g><g><title>SpinPause (61 samples, 0.02%)</title><rect x="21.6076%" y="725" width="0.0168%" height="15" fill="rgb(241,158,50)" fg:x="78276" fg:w="61"/><text x="21.8576%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (41 samples, 0.01%)</title><rect x="21.6361%" y="725" width="0.0113%" height="15" fill="rgb(213,121,41)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (41 samples, 0.01%)</title><rect x="21.6361%" y="709" width="0.0113%" height="15" fill="rgb(240,92,3)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (41 samples, 0.01%)</title><rect x="21.6361%" y="693" width="0.0113%" height="15" fill="rgb(205,123,3)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="703.50"></text></g><g><title>JavaThread::oops_do (41 samples, 0.01%)</title><rect x="21.6361%" y="677" width="0.0113%" height="15" fill="rgb(205,97,47)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="687.50"></text></g><g><title>G1ParTask::work (175 samples, 0.05%)</title><rect x="21.6013%" y="757" width="0.0483%" height="15" fill="rgb(247,152,14)" fg:x="78253" fg:w="175"/><text x="21.8513%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (64 samples, 0.02%)</title><rect x="21.6319%" y="741" width="0.0177%" height="15" fill="rgb(248,195,53)" fg:x="78364" fg:w="64"/><text x="21.8819%" y="751.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="21.6747%" y="597" width="0.0102%" height="15" fill="rgb(226,201,16)" fg:x="78519" fg:w="37"/><text x="21.9247%" y="607.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="21.6747%" y="581" width="0.0102%" height="15" fill="rgb(205,98,0)" fg:x="78519" fg:w="37"/><text x="21.9247%" y="591.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="21.6747%" y="565" width="0.0102%" height="15" fill="rgb(214,191,48)" fg:x="78519" fg:w="37"/><text x="21.9247%" y="575.50"></text></g><g><title>do_syscall_64 (42 samples, 0.01%)</title><rect x="21.6747%" y="661" width="0.0116%" height="15" fill="rgb(237,112,39)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="671.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.01%)</title><rect x="21.6747%" y="645" width="0.0116%" height="15" fill="rgb(247,203,27)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="655.50"></text></g><g><title>do_futex (42 samples, 0.01%)</title><rect x="21.6747%" y="629" width="0.0116%" height="15" fill="rgb(235,124,28)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="639.50"></text></g><g><title>futex_wait (42 samples, 0.01%)</title><rect x="21.6747%" y="613" width="0.0116%" height="15" fill="rgb(208,207,46)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="623.50"></text></g><g><title>__GI___clone (317 samples, 0.09%)</title><rect x="21.5993%" y="837" width="0.0875%" height="15" fill="rgb(234,176,4)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="847.50"></text></g><g><title>start_thread (317 samples, 0.09%)</title><rect x="21.5993%" y="821" width="0.0875%" height="15" fill="rgb(230,133,28)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="831.50"></text></g><g><title>thread_native_entry (317 samples, 0.09%)</title><rect x="21.5993%" y="805" width="0.0875%" height="15" fill="rgb(211,137,40)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="815.50"></text></g><g><title>Thread::call_run (317 samples, 0.09%)</title><rect x="21.5993%" y="789" width="0.0875%" height="15" fill="rgb(254,35,13)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="799.50"></text></g><g><title>GangWorker::loop (317 samples, 0.09%)</title><rect x="21.5993%" y="773" width="0.0875%" height="15" fill="rgb(225,49,51)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (46 samples, 0.01%)</title><rect x="21.6742%" y="757" width="0.0127%" height="15" fill="rgb(251,10,15)" fg:x="78517" fg:w="46"/><text x="21.9242%" y="767.50"></text></g><g><title>PosixSemaphore::wait (46 samples, 0.01%)</title><rect x="21.6742%" y="741" width="0.0127%" height="15" fill="rgb(228,207,15)" fg:x="78517" fg:w="46"/><text x="21.9242%" y="751.50"></text></g><g><title>__new_sem_wait_slow (46 samples, 0.01%)</title><rect x="21.6742%" y="725" width="0.0127%" height="15" fill="rgb(241,99,19)" fg:x="78517" fg:w="46"/><text x="21.9242%" y="735.50"></text></g><g><title>do_futex_wait (45 samples, 0.01%)</title><rect x="21.6744%" y="709" width="0.0124%" height="15" fill="rgb(207,104,49)" fg:x="78518" fg:w="45"/><text x="21.9244%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (45 samples, 0.01%)</title><rect x="21.6744%" y="693" width="0.0124%" height="15" fill="rgb(234,99,18)" fg:x="78518" fg:w="45"/><text x="21.9244%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="21.6747%" y="677" width="0.0121%" height="15" fill="rgb(213,191,49)" fg:x="78519" fg:w="44"/><text x="21.9247%" y="687.50"></text></g><g><title>GC_Thread#0 (324 samples, 0.09%)</title><rect x="21.5980%" y="853" width="0.0894%" height="15" fill="rgb(210,226,19)" fg:x="78241" fg:w="324"/><text x="21.8480%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (38 samples, 0.01%)</title><rect x="21.6971%" y="725" width="0.0105%" height="15" fill="rgb(229,97,18)" fg:x="78600" fg:w="38"/><text x="21.9471%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (109 samples, 0.03%)</title><rect x="21.6960%" y="741" width="0.0301%" height="15" fill="rgb(211,167,15)" fg:x="78596" fg:w="109"/><text x="21.9460%" y="751.50"></text></g><g><title>SpinPause (65 samples, 0.02%)</title><rect x="21.7081%" y="725" width="0.0179%" height="15" fill="rgb(210,169,34)" fg:x="78640" fg:w="65"/><text x="21.9581%" y="735.50"></text></g><g><title>frame::oops_interpreted_do (46 samples, 0.01%)</title><rect x="21.7537%" y="661" width="0.0127%" height="15" fill="rgb(241,121,31)" fg:x="78805" fg:w="46"/><text x="22.0037%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (91 samples, 0.03%)</title><rect x="21.7421%" y="725" width="0.0251%" height="15" fill="rgb(232,40,11)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (91 samples, 0.03%)</title><rect x="21.7421%" y="709" width="0.0251%" height="15" fill="rgb(205,86,26)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (91 samples, 0.03%)</title><rect x="21.7421%" y="693" width="0.0251%" height="15" fill="rgb(231,126,28)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="703.50"></text></g><g><title>JavaThread::oops_do (91 samples, 0.03%)</title><rect x="21.7421%" y="677" width="0.0251%" height="15" fill="rgb(219,221,18)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="687.50"></text></g><g><title>G1ParTask::work (298 samples, 0.08%)</title><rect x="21.6960%" y="757" width="0.0823%" height="15" fill="rgb(211,40,0)" fg:x="78596" fg:w="298"/><text x="21.9460%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (136 samples, 0.04%)</title><rect x="21.7407%" y="741" width="0.0375%" height="15" fill="rgb(239,85,43)" fg:x="78758" fg:w="136"/><text x="21.9907%" y="751.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (39 samples, 0.01%)</title><rect x="21.7675%" y="725" width="0.0108%" height="15" fill="rgb(231,55,21)" fg:x="78855" fg:w="39"/><text x="22.0175%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (37 samples, 0.01%)</title><rect x="21.7920%" y="757" width="0.0102%" height="15" fill="rgb(225,184,43)" fg:x="78944" fg:w="37"/><text x="22.0420%" y="767.50"></text></g><g><title>__GI___clone (435 samples, 0.12%)</title><rect x="21.6924%" y="837" width="0.1201%" height="15" fill="rgb(251,158,41)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="847.50"></text></g><g><title>start_thread (435 samples, 0.12%)</title><rect x="21.6924%" y="821" width="0.1201%" height="15" fill="rgb(234,159,37)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="831.50"></text></g><g><title>thread_native_entry (435 samples, 0.12%)</title><rect x="21.6924%" y="805" width="0.1201%" height="15" fill="rgb(216,204,22)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="815.50"></text></g><g><title>Thread::call_run (435 samples, 0.12%)</title><rect x="21.6924%" y="789" width="0.1201%" height="15" fill="rgb(214,17,3)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="799.50"></text></g><g><title>GangWorker::loop (435 samples, 0.12%)</title><rect x="21.6924%" y="773" width="0.1201%" height="15" fill="rgb(212,111,17)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="783.50"></text></g><g><title>GC_Thread#1 (457 samples, 0.13%)</title><rect x="21.6874%" y="853" width="0.1262%" height="15" fill="rgb(221,157,24)" fg:x="78565" fg:w="457"/><text x="21.9374%" y="863.50"></text></g><g><title>SpinPause (44 samples, 0.01%)</title><rect x="21.8251%" y="725" width="0.0121%" height="15" fill="rgb(252,16,13)" fg:x="79064" fg:w="44"/><text x="22.0751%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (65 samples, 0.02%)</title><rect x="21.8196%" y="741" width="0.0179%" height="15" fill="rgb(221,62,2)" fg:x="79044" fg:w="65"/><text x="22.0696%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (44 samples, 0.01%)</title><rect x="21.8464%" y="741" width="0.0121%" height="15" fill="rgb(247,87,22)" fg:x="79141" fg:w="44"/><text x="22.0964%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (44 samples, 0.01%)</title><rect x="21.8464%" y="725" width="0.0121%" height="15" fill="rgb(215,73,9)" fg:x="79141" fg:w="44"/><text x="22.0964%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (44 samples, 0.01%)</title><rect x="21.8464%" y="709" width="0.0121%" height="15" fill="rgb(207,175,33)" fg:x="79141" fg:w="44"/><text x="22.0964%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (92 samples, 0.03%)</title><rect x="21.8585%" y="709" width="0.0254%" height="15" fill="rgb(243,129,54)" fg:x="79185" fg:w="92"/><text x="22.1085%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (91 samples, 0.03%)</title><rect x="21.8588%" y="693" width="0.0251%" height="15" fill="rgb(227,119,45)" fg:x="79186" fg:w="91"/><text x="22.1088%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (91 samples, 0.03%)</title><rect x="21.8588%" y="677" width="0.0251%" height="15" fill="rgb(205,109,36)" fg:x="79186" fg:w="91"/><text x="22.1088%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (77 samples, 0.02%)</title><rect x="21.8627%" y="661" width="0.0213%" height="15" fill="rgb(205,6,39)" fg:x="79200" fg:w="77"/><text x="22.1127%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (60 samples, 0.02%)</title><rect x="21.8674%" y="645" width="0.0166%" height="15" fill="rgb(221,32,16)" fg:x="79217" fg:w="60"/><text x="22.1174%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (48 samples, 0.01%)</title><rect x="21.8707%" y="629" width="0.0133%" height="15" fill="rgb(228,144,50)" fg:x="79229" fg:w="48"/><text x="22.1207%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (144 samples, 0.04%)</title><rect x="21.8585%" y="725" width="0.0398%" height="15" fill="rgb(229,201,53)" fg:x="79185" fg:w="144"/><text x="22.1085%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (52 samples, 0.01%)</title><rect x="21.8839%" y="709" width="0.0144%" height="15" fill="rgb(249,153,27)" fg:x="79277" fg:w="52"/><text x="22.1339%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (52 samples, 0.01%)</title><rect x="21.8839%" y="693" width="0.0144%" height="15" fill="rgb(227,106,25)" fg:x="79277" fg:w="52"/><text x="22.1339%" y="703.50"></text></g><g><title>JavaThread::oops_do (52 samples, 0.01%)</title><rect x="21.8839%" y="677" width="0.0144%" height="15" fill="rgb(230,65,29)" fg:x="79277" fg:w="52"/><text x="22.1339%" y="687.50"></text></g><g><title>G1ParTask::work (290 samples, 0.08%)</title><rect x="21.8194%" y="757" width="0.0801%" height="15" fill="rgb(221,57,46)" fg:x="79043" fg:w="290"/><text x="22.0694%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (148 samples, 0.04%)</title><rect x="21.8585%" y="741" width="0.0409%" height="15" fill="rgb(229,161,17)" fg:x="79185" fg:w="148"/><text x="22.1085%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.01%)</title><rect x="21.9019%" y="757" width="0.0102%" height="15" fill="rgb(222,213,11)" fg:x="79342" fg:w="37"/><text x="22.1519%" y="767.50"></text></g><g><title>__GI___clone (409 samples, 0.11%)</title><rect x="21.8180%" y="837" width="0.1129%" height="15" fill="rgb(235,35,13)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="847.50"></text></g><g><title>start_thread (409 samples, 0.11%)</title><rect x="21.8180%" y="821" width="0.1129%" height="15" fill="rgb(233,158,34)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="831.50"></text></g><g><title>thread_native_entry (409 samples, 0.11%)</title><rect x="21.8180%" y="805" width="0.1129%" height="15" fill="rgb(215,151,48)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="815.50"></text></g><g><title>Thread::call_run (409 samples, 0.11%)</title><rect x="21.8180%" y="789" width="0.1129%" height="15" fill="rgb(229,84,14)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="799.50"></text></g><g><title>GangWorker::loop (409 samples, 0.11%)</title><rect x="21.8180%" y="773" width="0.1129%" height="15" fill="rgb(229,68,14)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="783.50"></text></g><g><title>GC_Thread#2 (427 samples, 0.12%)</title><rect x="21.8136%" y="853" width="0.1179%" height="15" fill="rgb(243,106,26)" fg:x="79022" fg:w="427"/><text x="22.0636%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.02%)</title><rect x="21.9358%" y="741" width="0.0177%" height="15" fill="rgb(206,45,38)" fg:x="79465" fg:w="64"/><text x="22.1858%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (46 samples, 0.01%)</title><rect x="21.9944%" y="597" width="0.0127%" height="15" fill="rgb(226,6,15)" fg:x="79677" fg:w="46"/><text x="22.2444%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (56 samples, 0.02%)</title><rect x="21.9919%" y="613" width="0.0155%" height="15" fill="rgb(232,22,54)" fg:x="79668" fg:w="56"/><text x="22.2419%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (73 samples, 0.02%)</title><rect x="21.9880%" y="645" width="0.0202%" height="15" fill="rgb(229,222,32)" fg:x="79654" fg:w="73"/><text x="22.2380%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (72 samples, 0.02%)</title><rect x="21.9883%" y="629" width="0.0199%" height="15" fill="rgb(228,62,29)" fg:x="79655" fg:w="72"/><text x="22.2383%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (92 samples, 0.03%)</title><rect x="21.9853%" y="661" width="0.0254%" height="15" fill="rgb(251,103,34)" fg:x="79644" fg:w="92"/><text x="22.2353%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (147 samples, 0.04%)</title><rect x="21.9703%" y="725" width="0.0406%" height="15" fill="rgb(233,12,30)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (147 samples, 0.04%)</title><rect x="21.9703%" y="709" width="0.0406%" height="15" fill="rgb(238,52,0)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (147 samples, 0.04%)</title><rect x="21.9703%" y="693" width="0.0406%" height="15" fill="rgb(223,98,5)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="703.50"></text></g><g><title>JavaThread::oops_do (147 samples, 0.04%)</title><rect x="21.9703%" y="677" width="0.0406%" height="15" fill="rgb(228,75,37)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="687.50"></text></g><g><title>G1RootProcessor::evacuate_roots (162 samples, 0.04%)</title><rect x="21.9695%" y="741" width="0.0447%" height="15" fill="rgb(205,115,49)" fg:x="79587" fg:w="162"/><text x="22.2195%" y="751.50"></text></g><g><title>G1ParTask::work (285 samples, 0.08%)</title><rect x="21.9358%" y="757" width="0.0787%" height="15" fill="rgb(250,154,43)" fg:x="79465" fg:w="285"/><text x="22.1858%" y="767.50"></text></g><g><title>__GI___clone (391 samples, 0.11%)</title><rect x="21.9342%" y="837" width="0.1079%" height="15" fill="rgb(226,43,29)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="847.50"></text></g><g><title>start_thread (391 samples, 0.11%)</title><rect x="21.9342%" y="821" width="0.1079%" height="15" fill="rgb(249,228,39)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="831.50"></text></g><g><title>thread_native_entry (391 samples, 0.11%)</title><rect x="21.9342%" y="805" width="0.1079%" height="15" fill="rgb(216,79,43)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="815.50"></text></g><g><title>Thread::call_run (391 samples, 0.11%)</title><rect x="21.9342%" y="789" width="0.1079%" height="15" fill="rgb(228,95,12)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="799.50"></text></g><g><title>GangWorker::loop (391 samples, 0.11%)</title><rect x="21.9342%" y="773" width="0.1079%" height="15" fill="rgb(249,221,15)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="783.50"></text></g><g><title>GC_Thread#3 (405 samples, 0.11%)</title><rect x="21.9314%" y="853" width="0.1118%" height="15" fill="rgb(233,34,13)" fg:x="79449" fg:w="405"/><text x="22.1814%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (87 samples, 0.02%)</title><rect x="22.0457%" y="741" width="0.0240%" height="15" fill="rgb(214,103,39)" fg:x="79863" fg:w="87"/><text x="22.2957%" y="751.50"></text></g><g><title>SpinPause (48 samples, 0.01%)</title><rect x="22.0565%" y="725" width="0.0133%" height="15" fill="rgb(251,126,39)" fg:x="79902" fg:w="48"/><text x="22.3065%" y="735.50"></text></g><g><title>G1ParTask::work (210 samples, 0.06%)</title><rect x="22.0457%" y="757" width="0.0580%" height="15" fill="rgb(214,216,36)" fg:x="79863" fg:w="210"/><text x="22.2957%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (80 samples, 0.02%)</title><rect x="22.0816%" y="741" width="0.0221%" height="15" fill="rgb(220,221,8)" fg:x="79993" fg:w="80"/><text x="22.3316%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (79 samples, 0.02%)</title><rect x="22.0819%" y="725" width="0.0218%" height="15" fill="rgb(240,216,3)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="735.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (79 samples, 0.02%)</title><rect x="22.0819%" y="709" width="0.0218%" height="15" fill="rgb(232,218,17)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (79 samples, 0.02%)</title><rect x="22.0819%" y="693" width="0.0218%" height="15" fill="rgb(229,163,45)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (79 samples, 0.02%)</title><rect x="22.0819%" y="677" width="0.0218%" height="15" fill="rgb(231,110,42)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.02%)</title><rect x="22.0885%" y="661" width="0.0152%" height="15" fill="rgb(208,170,48)" fg:x="80018" fg:w="55"/><text x="22.3385%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (43 samples, 0.01%)</title><rect x="22.0918%" y="645" width="0.0119%" height="15" fill="rgb(239,116,25)" fg:x="80030" fg:w="43"/><text x="22.3418%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (37 samples, 0.01%)</title><rect x="22.0935%" y="629" width="0.0102%" height="15" fill="rgb(219,200,50)" fg:x="80036" fg:w="37"/><text x="22.3435%" y="639.50"></text></g><g><title>ParallelSPCleanupTask::work (38 samples, 0.01%)</title><rect x="22.1142%" y="757" width="0.0105%" height="15" fill="rgb(245,200,0)" fg:x="80111" fg:w="38"/><text x="22.3642%" y="767.50"></text></g><g><title>GC_Thread#4 (316 samples, 0.09%)</title><rect x="22.0432%" y="853" width="0.0872%" height="15" fill="rgb(245,119,33)" fg:x="79854" fg:w="316"/><text x="22.2932%" y="863.50"></text></g><g><title>__GI___clone (311 samples, 0.09%)</title><rect x="22.0446%" y="837" width="0.0858%" height="15" fill="rgb(231,125,12)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="847.50"></text></g><g><title>start_thread (311 samples, 0.09%)</title><rect x="22.0446%" y="821" width="0.0858%" height="15" fill="rgb(216,96,41)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="831.50"></text></g><g><title>thread_native_entry (311 samples, 0.09%)</title><rect x="22.0446%" y="805" width="0.0858%" height="15" fill="rgb(248,43,45)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="815.50"></text></g><g><title>Thread::call_run (311 samples, 0.09%)</title><rect x="22.0446%" y="789" width="0.0858%" height="15" fill="rgb(217,222,7)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="799.50"></text></g><g><title>GangWorker::loop (311 samples, 0.09%)</title><rect x="22.0446%" y="773" width="0.0858%" height="15" fill="rgb(233,28,6)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue (49 samples, 0.01%)</title><rect x="22.1368%" y="725" width="0.0135%" height="15" fill="rgb(231,218,15)" fg:x="80193" fg:w="49"/><text x="22.3868%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (108 samples, 0.03%)</title><rect x="22.1349%" y="741" width="0.0298%" height="15" fill="rgb(226,171,48)" fg:x="80186" fg:w="108"/><text x="22.3849%" y="751.50"></text></g><g><title>SpinPause (49 samples, 0.01%)</title><rect x="22.1512%" y="725" width="0.0135%" height="15" fill="rgb(235,201,9)" fg:x="80245" fg:w="49"/><text x="22.4012%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (106 samples, 0.03%)</title><rect x="22.1785%" y="725" width="0.0293%" height="15" fill="rgb(217,80,15)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (106 samples, 0.03%)</title><rect x="22.1785%" y="709" width="0.0293%" height="15" fill="rgb(219,152,8)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (106 samples, 0.03%)</title><rect x="22.1785%" y="693" width="0.0293%" height="15" fill="rgb(243,107,38)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="703.50"></text></g><g><title>JavaThread::oops_do (106 samples, 0.03%)</title><rect x="22.1785%" y="677" width="0.0293%" height="15" fill="rgb(231,17,5)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (50 samples, 0.01%)</title><rect x="22.1939%" y="661" width="0.0138%" height="15" fill="rgb(209,25,54)" fg:x="80400" fg:w="50"/><text x="22.4439%" y="671.50"></text></g><g><title>G1ParTask::work (294 samples, 0.08%)</title><rect x="22.1349%" y="757" width="0.0812%" height="15" fill="rgb(219,0,2)" fg:x="80186" fg:w="294"/><text x="22.3849%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (138 samples, 0.04%)</title><rect x="22.1779%" y="741" width="0.0381%" height="15" fill="rgb(246,9,5)" fg:x="80342" fg:w="138"/><text x="22.4279%" y="751.50"></text></g><g><title>__GI___clone (402 samples, 0.11%)</title><rect x="22.1321%" y="837" width="0.1110%" height="15" fill="rgb(226,159,4)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="847.50"></text></g><g><title>start_thread (402 samples, 0.11%)</title><rect x="22.1321%" y="821" width="0.1110%" height="15" fill="rgb(219,175,34)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="831.50"></text></g><g><title>thread_native_entry (402 samples, 0.11%)</title><rect x="22.1321%" y="805" width="0.1110%" height="15" fill="rgb(236,10,46)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="815.50"></text></g><g><title>Thread::call_run (402 samples, 0.11%)</title><rect x="22.1321%" y="789" width="0.1110%" height="15" fill="rgb(240,211,16)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="799.50"></text></g><g><title>GangWorker::loop (402 samples, 0.11%)</title><rect x="22.1321%" y="773" width="0.1110%" height="15" fill="rgb(205,3,43)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="783.50"></text></g><g><title>GC_Thread#5 (412 samples, 0.11%)</title><rect x="22.1305%" y="853" width="0.1137%" height="15" fill="rgb(245,7,22)" fg:x="80170" fg:w="412"/><text x="22.3805%" y="863.50"></text></g><g><title>SpinPause (37 samples, 0.01%)</title><rect x="22.2616%" y="725" width="0.0102%" height="15" fill="rgb(239,132,32)" fg:x="80645" fg:w="37"/><text x="22.5116%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.02%)</title><rect x="22.2497%" y="741" width="0.0224%" height="15" fill="rgb(228,202,34)" fg:x="80602" fg:w="81"/><text x="22.4997%" y="751.50"></text></g><g><title>JNIHandleBlock::oops_do (39 samples, 0.01%)</title><rect x="22.2917%" y="661" width="0.0108%" height="15" fill="rgb(254,200,22)" fg:x="80754" fg:w="39"/><text x="22.5417%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.01%)</title><rect x="22.2917%" y="645" width="0.0108%" height="15" fill="rgb(219,10,39)" fg:x="80754" fg:w="39"/><text x="22.5417%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (84 samples, 0.02%)</title><rect x="22.2889%" y="725" width="0.0232%" height="15" fill="rgb(226,210,39)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (84 samples, 0.02%)</title><rect x="22.2889%" y="709" width="0.0232%" height="15" fill="rgb(208,219,16)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (84 samples, 0.02%)</title><rect x="22.2889%" y="693" width="0.0232%" height="15" fill="rgb(216,158,51)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="703.50"></text></g><g><title>JavaThread::oops_do (84 samples, 0.02%)</title><rect x="22.2889%" y="677" width="0.0232%" height="15" fill="rgb(233,14,44)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="687.50"></text></g><g><title>G1ParTask::work (245 samples, 0.07%)</title><rect x="22.2497%" y="757" width="0.0676%" height="15" fill="rgb(237,97,39)" fg:x="80602" fg:w="245"/><text x="22.4997%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (104 samples, 0.03%)</title><rect x="22.2886%" y="741" width="0.0287%" height="15" fill="rgb(218,198,43)" fg:x="80743" fg:w="104"/><text x="22.5386%" y="751.50"></text></g><g><title>ParallelSPCleanupTask::work (39 samples, 0.01%)</title><rect x="22.3289%" y="757" width="0.0108%" height="15" fill="rgb(231,104,20)" fg:x="80889" fg:w="39"/><text x="22.5789%" y="767.50"></text></g><g><title>finish_task_switch (47 samples, 0.01%)</title><rect x="22.3414%" y="549" width="0.0130%" height="15" fill="rgb(254,36,13)" fg:x="80934" fg:w="47"/><text x="22.5914%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.01%)</title><rect x="22.3419%" y="533" width="0.0124%" height="15" fill="rgb(248,14,50)" fg:x="80936" fg:w="45"/><text x="22.5919%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.01%)</title><rect x="22.3419%" y="517" width="0.0124%" height="15" fill="rgb(217,107,29)" fg:x="80936" fg:w="45"/><text x="22.5919%" y="527.50"></text></g><g><title>native_write_msr (45 samples, 0.01%)</title><rect x="22.3419%" y="501" width="0.0124%" height="15" fill="rgb(251,169,33)" fg:x="80936" fg:w="45"/><text x="22.5919%" y="511.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.02%)</title><rect x="22.3405%" y="597" width="0.0163%" height="15" fill="rgb(217,108,32)" fg:x="80931" fg:w="59"/><text x="22.5905%" y="607.50"></text></g><g><title>schedule (57 samples, 0.02%)</title><rect x="22.3411%" y="581" width="0.0157%" height="15" fill="rgb(219,66,42)" fg:x="80933" fg:w="57"/><text x="22.5911%" y="591.50"></text></g><g><title>__schedule (57 samples, 0.02%)</title><rect x="22.3411%" y="565" width="0.0157%" height="15" fill="rgb(206,180,7)" fg:x="80933" fg:w="57"/><text x="22.5911%" y="575.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="22.3405%" y="661" width="0.0168%" height="15" fill="rgb(208,226,31)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="671.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.02%)</title><rect x="22.3405%" y="645" width="0.0168%" height="15" fill="rgb(218,26,49)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="655.50"></text></g><g><title>do_futex (61 samples, 0.02%)</title><rect x="22.3405%" y="629" width="0.0168%" height="15" fill="rgb(233,197,48)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="639.50"></text></g><g><title>futex_wait (61 samples, 0.02%)</title><rect x="22.3405%" y="613" width="0.0168%" height="15" fill="rgb(252,181,51)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="623.50"></text></g><g><title>__GI___clone (401 samples, 0.11%)</title><rect x="22.2475%" y="837" width="0.1107%" height="15" fill="rgb(253,90,19)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="847.50"></text></g><g><title>start_thread (401 samples, 0.11%)</title><rect x="22.2475%" y="821" width="0.1107%" height="15" fill="rgb(215,171,30)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="831.50"></text></g><g><title>thread_native_entry (401 samples, 0.11%)</title><rect x="22.2475%" y="805" width="0.1107%" height="15" fill="rgb(214,222,9)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="815.50"></text></g><g><title>Thread::call_run (401 samples, 0.11%)</title><rect x="22.2475%" y="789" width="0.1107%" height="15" fill="rgb(223,3,22)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="799.50"></text></g><g><title>GangWorker::loop (401 samples, 0.11%)</title><rect x="22.2475%" y="773" width="0.1107%" height="15" fill="rgb(225,196,46)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.02%)</title><rect x="22.3400%" y="757" width="0.0182%" height="15" fill="rgb(209,110,37)" fg:x="80929" fg:w="66"/><text x="22.5900%" y="767.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.02%)</title><rect x="22.3400%" y="741" width="0.0182%" height="15" fill="rgb(249,89,12)" fg:x="80929" fg:w="66"/><text x="22.5900%" y="751.50"></text></g><g><title>__new_sem_wait_slow (65 samples, 0.02%)</title><rect x="22.3402%" y="725" width="0.0179%" height="15" fill="rgb(226,27,33)" fg:x="80930" fg:w="65"/><text x="22.5902%" y="735.50"></text></g><g><title>do_futex_wait (65 samples, 0.02%)</title><rect x="22.3402%" y="709" width="0.0179%" height="15" fill="rgb(213,82,22)" fg:x="80930" fg:w="65"/><text x="22.5902%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (65 samples, 0.02%)</title><rect x="22.3402%" y="693" width="0.0179%" height="15" fill="rgb(248,140,0)" fg:x="80930" fg:w="65"/><text x="22.5902%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.02%)</title><rect x="22.3405%" y="677" width="0.0177%" height="15" fill="rgb(228,106,3)" fg:x="80931" fg:w="64"/><text x="22.5905%" y="687.50"></text></g><g><title>GC_Thread#6 (418 samples, 0.12%)</title><rect x="22.2442%" y="853" width="0.1154%" height="15" fill="rgb(209,23,37)" fg:x="80582" fg:w="418"/><text x="22.4942%" y="863.50"></text></g><g><title>SpinPause (53 samples, 0.01%)</title><rect x="22.3775%" y="725" width="0.0146%" height="15" fill="rgb(241,93,50)" fg:x="81065" fg:w="53"/><text x="22.6275%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (103 samples, 0.03%)</title><rect x="22.3640%" y="741" width="0.0284%" height="15" fill="rgb(253,46,43)" fg:x="81016" fg:w="103"/><text x="22.6140%" y="751.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (68 samples, 0.02%)</title><rect x="22.4062%" y="709" width="0.0188%" height="15" fill="rgb(226,206,43)" fg:x="81169" fg:w="68"/><text x="22.6562%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (65 samples, 0.02%)</title><rect x="22.4070%" y="693" width="0.0179%" height="15" fill="rgb(217,54,7)" fg:x="81172" fg:w="65"/><text x="22.6570%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (65 samples, 0.02%)</title><rect x="22.4070%" y="677" width="0.0179%" height="15" fill="rgb(223,5,52)" fg:x="81172" fg:w="65"/><text x="22.6570%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.02%)</title><rect x="22.4093%" y="661" width="0.0157%" height="15" fill="rgb(206,52,46)" fg:x="81180" fg:w="57"/><text x="22.6593%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (46 samples, 0.01%)</title><rect x="22.4123%" y="645" width="0.0127%" height="15" fill="rgb(253,136,11)" fg:x="81191" fg:w="46"/><text x="22.6623%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (40 samples, 0.01%)</title><rect x="22.4140%" y="629" width="0.0110%" height="15" fill="rgb(208,106,33)" fg:x="81197" fg:w="40"/><text x="22.6640%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (85 samples, 0.02%)</title><rect x="22.4062%" y="725" width="0.0235%" height="15" fill="rgb(206,54,4)" fg:x="81169" fg:w="85"/><text x="22.6562%" y="735.50"></text></g><g><title>G1ParTask::work (261 samples, 0.07%)</title><rect x="22.3640%" y="757" width="0.0720%" height="15" fill="rgb(213,3,15)" fg:x="81016" fg:w="261"/><text x="22.6140%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (109 samples, 0.03%)</title><rect x="22.4059%" y="741" width="0.0301%" height="15" fill="rgb(252,211,39)" fg:x="81168" fg:w="109"/><text x="22.6559%" y="751.50"></text></g><g><title>ParallelSPCleanupTask::work (57 samples, 0.02%)</title><rect x="22.4487%" y="757" width="0.0157%" height="15" fill="rgb(223,6,36)" fg:x="81323" fg:w="57"/><text x="22.6987%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (48 samples, 0.01%)</title><rect x="22.4512%" y="741" width="0.0133%" height="15" fill="rgb(252,169,45)" fg:x="81332" fg:w="48"/><text x="22.7012%" y="751.50"></text></g><g><title>__GI___clone (403 samples, 0.11%)</title><rect x="22.3618%" y="837" width="0.1112%" height="15" fill="rgb(212,48,26)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="847.50"></text></g><g><title>start_thread (403 samples, 0.11%)</title><rect x="22.3618%" y="821" width="0.1112%" height="15" fill="rgb(251,102,48)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="831.50"></text></g><g><title>thread_native_entry (403 samples, 0.11%)</title><rect x="22.3618%" y="805" width="0.1112%" height="15" fill="rgb(243,208,16)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="815.50"></text></g><g><title>Thread::call_run (403 samples, 0.11%)</title><rect x="22.3618%" y="789" width="0.1112%" height="15" fill="rgb(219,96,24)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="799.50"></text></g><g><title>GangWorker::loop (403 samples, 0.11%)</title><rect x="22.3618%" y="773" width="0.1112%" height="15" fill="rgb(219,33,29)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="783.50"></text></g><g><title>GC_Thread#7 (413 samples, 0.11%)</title><rect x="22.3596%" y="853" width="0.1140%" height="15" fill="rgb(223,176,5)" fg:x="81000" fg:w="413"/><text x="22.6096%" y="863.50"></text></g><g><title>[perf-985085.map] (121 samples, 0.03%)</title><rect x="22.4852%" y="837" width="0.0334%" height="15" fill="rgb(228,140,14)" fg:x="81455" fg:w="121"/><text x="22.7352%" y="847.50"></text></g><g><title>Service_Thread (153 samples, 0.04%)</title><rect x="22.4827%" y="853" width="0.0422%" height="15" fill="rgb(217,179,31)" fg:x="81446" fg:w="153"/><text x="22.7327%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (181 samples, 0.05%)</title><rect x="22.5580%" y="501" width="0.0500%" height="15" fill="rgb(230,9,30)" fg:x="81719" fg:w="181"/><text x="22.8080%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (175 samples, 0.05%)</title><rect x="22.5597%" y="485" width="0.0483%" height="15" fill="rgb(230,136,20)" fg:x="81725" fg:w="175"/><text x="22.8097%" y="495.50"></text></g><g><title>native_write_msr (174 samples, 0.05%)</title><rect x="22.5600%" y="469" width="0.0480%" height="15" fill="rgb(215,210,22)" fg:x="81726" fg:w="174"/><text x="22.8100%" y="479.50"></text></g><g><title>finish_task_switch (193 samples, 0.05%)</title><rect x="22.5575%" y="517" width="0.0533%" height="15" fill="rgb(218,43,5)" fg:x="81717" fg:w="193"/><text x="22.8075%" y="527.50"></text></g><g><title>futex_wait_queue_me (265 samples, 0.07%)</title><rect x="22.5434%" y="565" width="0.0732%" height="15" fill="rgb(216,11,5)" fg:x="81666" fg:w="265"/><text x="22.7934%" y="575.50"></text></g><g><title>schedule (249 samples, 0.07%)</title><rect x="22.5478%" y="549" width="0.0687%" height="15" fill="rgb(209,82,29)" fg:x="81682" fg:w="249"/><text x="22.7978%" y="559.50"></text></g><g><title>__schedule (248 samples, 0.07%)</title><rect x="22.5481%" y="533" width="0.0685%" height="15" fill="rgb(244,115,12)" fg:x="81683" fg:w="248"/><text x="22.7981%" y="543.50"></text></g><g><title>do_futex (286 samples, 0.08%)</title><rect x="22.5429%" y="597" width="0.0789%" height="15" fill="rgb(222,82,18)" fg:x="81664" fg:w="286"/><text x="22.7929%" y="607.50"></text></g><g><title>futex_wait (285 samples, 0.08%)</title><rect x="22.5431%" y="581" width="0.0787%" height="15" fill="rgb(249,227,8)" fg:x="81665" fg:w="285"/><text x="22.7931%" y="591.50"></text></g><g><title>do_syscall_64 (297 samples, 0.08%)</title><rect x="22.5404%" y="629" width="0.0820%" height="15" fill="rgb(253,141,45)" fg:x="81655" fg:w="297"/><text x="22.7904%" y="639.50"></text></g><g><title>__x64_sys_futex (297 samples, 0.08%)</title><rect x="22.5404%" y="613" width="0.0820%" height="15" fill="rgb(234,184,4)" fg:x="81655" fg:w="297"/><text x="22.7904%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (305 samples, 0.08%)</title><rect x="22.5396%" y="645" width="0.0842%" height="15" fill="rgb(218,194,23)" fg:x="81652" fg:w="305"/><text x="22.7896%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (324 samples, 0.09%)</title><rect x="22.5346%" y="693" width="0.0894%" height="15" fill="rgb(235,66,41)" fg:x="81634" fg:w="324"/><text x="22.7846%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (324 samples, 0.09%)</title><rect x="22.5346%" y="677" width="0.0894%" height="15" fill="rgb(245,217,1)" fg:x="81634" fg:w="324"/><text x="22.7846%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (315 samples, 0.09%)</title><rect x="22.5371%" y="661" width="0.0870%" height="15" fill="rgb(229,91,1)" fg:x="81643" fg:w="315"/><text x="22.7871%" y="671.50"></text></g><g><title>Monitor::wait (358 samples, 0.10%)</title><rect x="22.5304%" y="741" width="0.0988%" height="15" fill="rgb(207,101,30)" fg:x="81619" fg:w="358"/><text x="22.7804%" y="751.50"></text></g><g><title>Monitor::IWait (355 samples, 0.10%)</title><rect x="22.5313%" y="725" width="0.0980%" height="15" fill="rgb(223,82,49)" fg:x="81622" fg:w="355"/><text x="22.7813%" y="735.50"></text></g><g><title>os::PlatformEvent::park (348 samples, 0.10%)</title><rect x="22.5332%" y="709" width="0.0961%" height="15" fill="rgb(218,167,17)" fg:x="81629" fg:w="348"/><text x="22.7832%" y="719.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (44 samples, 0.01%)</title><rect x="22.6364%" y="693" width="0.0121%" height="15" fill="rgb(208,103,14)" fg:x="82003" fg:w="44"/><text x="22.8864%" y="703.50"></text></g><g><title>NMethodSweeper::process_compiled_method (60 samples, 0.02%)</title><rect x="22.6362%" y="709" width="0.0166%" height="15" fill="rgb(238,20,8)" fg:x="82002" fg:w="60"/><text x="22.8862%" y="719.50"></text></g><g><title>NMethodSweeper::possibly_sweep (88 samples, 0.02%)</title><rect x="22.6293%" y="741" width="0.0243%" height="15" fill="rgb(218,80,54)" fg:x="81977" fg:w="88"/><text x="22.8793%" y="751.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (83 samples, 0.02%)</title><rect x="22.6306%" y="725" width="0.0229%" height="15" fill="rgb(240,144,17)" fg:x="81982" fg:w="83"/><text x="22.8806%" y="735.50"></text></g><g><title>__GI___clone (467 samples, 0.13%)</title><rect x="22.5280%" y="837" width="0.1289%" height="15" fill="rgb(245,27,50)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="847.50"></text></g><g><title>start_thread (467 samples, 0.13%)</title><rect x="22.5280%" y="821" width="0.1289%" height="15" fill="rgb(251,51,7)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="831.50"></text></g><g><title>thread_native_entry (467 samples, 0.13%)</title><rect x="22.5280%" y="805" width="0.1289%" height="15" fill="rgb(245,217,29)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="815.50"></text></g><g><title>Thread::call_run (467 samples, 0.13%)</title><rect x="22.5280%" y="789" width="0.1289%" height="15" fill="rgb(221,176,29)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (467 samples, 0.13%)</title><rect x="22.5280%" y="773" width="0.1289%" height="15" fill="rgb(212,180,24)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="783.50"></text></g><g><title>NMethodSweeper::sweeper_loop (465 samples, 0.13%)</title><rect x="22.5285%" y="757" width="0.1284%" height="15" fill="rgb(254,24,2)" fg:x="81612" fg:w="465"/><text x="22.7785%" y="767.50"></text></g><g><title>Sweeper_thread (484 samples, 0.13%)</title><rect x="22.5252%" y="853" width="0.1336%" height="15" fill="rgb(230,100,2)" fg:x="81600" fg:w="484"/><text x="22.7752%" y="863.50"></text></g><g><title>[perf-985085.map] (200 samples, 0.06%)</title><rect x="22.6613%" y="837" width="0.0552%" height="15" fill="rgb(219,142,25)" fg:x="82093" fg:w="200"/><text x="22.9113%" y="847.50"></text></g><g><title>Thread-0 (231 samples, 0.06%)</title><rect x="22.6588%" y="853" width="0.0638%" height="15" fill="rgb(240,73,43)" fg:x="82084" fg:w="231"/><text x="22.9088%" y="863.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="22.7262%" y="629" width="0.0108%" height="15" fill="rgb(214,114,15)" fg:x="82328" fg:w="39"/><text x="22.9762%" y="639.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.01%)</title><rect x="22.7264%" y="613" width="0.0105%" height="15" fill="rgb(207,130,4)" fg:x="82329" fg:w="38"/><text x="22.9764%" y="623.50"></text></g><g><title>do_futex (38 samples, 0.01%)</title><rect x="22.7264%" y="597" width="0.0105%" height="15" fill="rgb(221,25,40)" fg:x="82329" fg:w="38"/><text x="22.9764%" y="607.50"></text></g><g><title>futex_wait (38 samples, 0.01%)</title><rect x="22.7264%" y="581" width="0.0105%" height="15" fill="rgb(241,184,7)" fg:x="82329" fg:w="38"/><text x="22.9764%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (44 samples, 0.01%)</title><rect x="22.7253%" y="693" width="0.0121%" height="15" fill="rgb(235,159,4)" fg:x="82325" fg:w="44"/><text x="22.9753%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (44 samples, 0.01%)</title><rect x="22.7253%" y="677" width="0.0121%" height="15" fill="rgb(214,87,48)" fg:x="82325" fg:w="44"/><text x="22.9753%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (43 samples, 0.01%)</title><rect x="22.7256%" y="661" width="0.0119%" height="15" fill="rgb(246,198,24)" fg:x="82326" fg:w="43"/><text x="22.9756%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="22.7262%" y="645" width="0.0113%" height="15" fill="rgb(209,66,40)" fg:x="82328" fg:w="41"/><text x="22.9762%" y="655.50"></text></g><g><title>VM_Periodic_Tas (57 samples, 0.02%)</title><rect x="22.7226%" y="853" width="0.0157%" height="15" fill="rgb(233,147,39)" fg:x="82315" fg:w="57"/><text x="22.9726%" y="863.50"></text></g><g><title>__GI___clone (55 samples, 0.02%)</title><rect x="22.7231%" y="837" width="0.0152%" height="15" fill="rgb(231,145,52)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="847.50"></text></g><g><title>start_thread (55 samples, 0.02%)</title><rect x="22.7231%" y="821" width="0.0152%" height="15" fill="rgb(206,20,26)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="831.50"></text></g><g><title>thread_native_entry (55 samples, 0.02%)</title><rect x="22.7231%" y="805" width="0.0152%" height="15" fill="rgb(238,220,4)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="815.50"></text></g><g><title>Thread::call_run (55 samples, 0.02%)</title><rect x="22.7231%" y="789" width="0.0152%" height="15" fill="rgb(252,195,42)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="799.50"></text></g><g><title>WatcherThread::run (55 samples, 0.02%)</title><rect x="22.7231%" y="773" width="0.0152%" height="15" fill="rgb(209,10,6)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="783.50"></text></g><g><title>WatcherThread::sleep (48 samples, 0.01%)</title><rect x="22.7251%" y="757" width="0.0133%" height="15" fill="rgb(229,3,52)" fg:x="82324" fg:w="48"/><text x="22.9751%" y="767.50"></text></g><g><title>Monitor::wait (47 samples, 0.01%)</title><rect x="22.7253%" y="741" width="0.0130%" height="15" fill="rgb(253,49,37)" fg:x="82325" fg:w="47"/><text x="22.9753%" y="751.50"></text></g><g><title>Monitor::IWait (47 samples, 0.01%)</title><rect x="22.7253%" y="725" width="0.0130%" height="15" fill="rgb(240,103,49)" fg:x="82325" fg:w="47"/><text x="22.9753%" y="735.50"></text></g><g><title>os::PlatformEvent::park (47 samples, 0.01%)</title><rect x="22.7253%" y="709" width="0.0130%" height="15" fill="rgb(250,182,30)" fg:x="82325" fg:w="47"/><text x="22.9753%" y="719.50"></text></g><g><title>[unknown] (123 samples, 0.03%)</title><rect x="22.7435%" y="837" width="0.0340%" height="15" fill="rgb(248,8,30)" fg:x="82391" fg:w="123"/><text x="22.9935%" y="847.50"></text></g><g><title>vframe::sender (111 samples, 0.03%)</title><rect x="22.7469%" y="821" width="0.0306%" height="15" fill="rgb(237,120,30)" fg:x="82403" fg:w="111"/><text x="22.9969%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="22.7902%" y="501" width="0.0135%" height="15" fill="rgb(221,146,34)" fg:x="82560" fg:w="49"/><text x="23.0402%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.01%)</title><rect x="22.7902%" y="485" width="0.0135%" height="15" fill="rgb(242,55,13)" fg:x="82560" fg:w="49"/><text x="23.0402%" y="495.50"></text></g><g><title>native_write_msr (49 samples, 0.01%)</title><rect x="22.7902%" y="469" width="0.0135%" height="15" fill="rgb(242,112,31)" fg:x="82560" fg:w="49"/><text x="23.0402%" y="479.50"></text></g><g><title>finish_task_switch (50 samples, 0.01%)</title><rect x="22.7902%" y="517" width="0.0138%" height="15" fill="rgb(249,192,27)" fg:x="82560" fg:w="50"/><text x="23.0402%" y="527.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.02%)</title><rect x="22.7874%" y="565" width="0.0174%" height="15" fill="rgb(208,204,44)" fg:x="82550" fg:w="63"/><text x="23.0374%" y="575.50"></text></g><g><title>schedule (59 samples, 0.02%)</title><rect x="22.7885%" y="549" width="0.0163%" height="15" fill="rgb(208,93,54)" fg:x="82554" fg:w="59"/><text x="23.0385%" y="559.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="22.7888%" y="533" width="0.0160%" height="15" fill="rgb(242,1,31)" fg:x="82555" fg:w="58"/><text x="23.0388%" y="543.50"></text></g><g><title>do_futex (66 samples, 0.02%)</title><rect x="22.7872%" y="597" width="0.0182%" height="15" fill="rgb(241,83,25)" fg:x="82549" fg:w="66"/><text x="23.0372%" y="607.50"></text></g><g><title>futex_wait (66 samples, 0.02%)</title><rect x="22.7872%" y="581" width="0.0182%" height="15" fill="rgb(205,169,50)" fg:x="82549" fg:w="66"/><text x="23.0372%" y="591.50"></text></g><g><title>do_syscall_64 (67 samples, 0.02%)</title><rect x="22.7872%" y="629" width="0.0185%" height="15" fill="rgb(239,186,37)" fg:x="82549" fg:w="67"/><text x="23.0372%" y="639.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.02%)</title><rect x="22.7872%" y="613" width="0.0185%" height="15" fill="rgb(205,221,10)" fg:x="82549" fg:w="67"/><text x="23.0372%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (70 samples, 0.02%)</title><rect x="22.7866%" y="693" width="0.0193%" height="15" fill="rgb(218,196,15)" fg:x="82547" fg:w="70"/><text x="23.0366%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (70 samples, 0.02%)</title><rect x="22.7866%" y="677" width="0.0193%" height="15" fill="rgb(218,196,35)" fg:x="82547" fg:w="70"/><text x="23.0366%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (70 samples, 0.02%)</title><rect x="22.7866%" y="661" width="0.0193%" height="15" fill="rgb(233,63,24)" fg:x="82547" fg:w="70"/><text x="23.0366%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="22.7872%" y="645" width="0.0188%" height="15" fill="rgb(225,8,4)" fg:x="82549" fg:w="68"/><text x="23.0372%" y="655.50"></text></g><g><title>Monitor::wait (73 samples, 0.02%)</title><rect x="22.7863%" y="741" width="0.0202%" height="15" fill="rgb(234,105,35)" fg:x="82546" fg:w="73"/><text x="23.0363%" y="751.50"></text></g><g><title>Monitor::IWait (73 samples, 0.02%)</title><rect x="22.7863%" y="725" width="0.0202%" height="15" fill="rgb(236,21,32)" fg:x="82546" fg:w="73"/><text x="23.0363%" y="735.50"></text></g><g><title>os::PlatformEvent::park (73 samples, 0.02%)</title><rect x="22.7863%" y="709" width="0.0202%" height="15" fill="rgb(228,109,6)" fg:x="82546" fg:w="73"/><text x="23.0363%" y="719.50"></text></g><g><title>PosixSemaphore::signal (68 samples, 0.02%)</title><rect x="22.8609%" y="677" width="0.0188%" height="15" fill="rgb(229,215,31)" fg:x="82816" fg:w="68"/><text x="23.1109%" y="687.50"></text></g><g><title>__new_sem_post (68 samples, 0.02%)</title><rect x="22.8609%" y="661" width="0.0188%" height="15" fill="rgb(221,52,54)" fg:x="82816" fg:w="68"/><text x="23.1109%" y="671.50"></text></g><g><title>futex_wake (68 samples, 0.02%)</title><rect x="22.8609%" y="645" width="0.0188%" height="15" fill="rgb(252,129,43)" fg:x="82816" fg:w="68"/><text x="23.1109%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.02%)</title><rect x="22.8620%" y="629" width="0.0177%" height="15" fill="rgb(248,183,27)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="639.50"></text></g><g><title>do_syscall_64 (64 samples, 0.02%)</title><rect x="22.8620%" y="613" width="0.0177%" height="15" fill="rgb(250,0,22)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="623.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.02%)</title><rect x="22.8620%" y="597" width="0.0177%" height="15" fill="rgb(213,166,10)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="607.50"></text></g><g><title>do_futex (64 samples, 0.02%)</title><rect x="22.8620%" y="581" width="0.0177%" height="15" fill="rgb(207,163,36)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="591.50"></text></g><g><title>futex_wake (64 samples, 0.02%)</title><rect x="22.8620%" y="565" width="0.0177%" height="15" fill="rgb(208,122,22)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="575.50"></text></g><g><title>wake_up_q (57 samples, 0.02%)</title><rect x="22.8639%" y="549" width="0.0157%" height="15" fill="rgb(207,104,49)" fg:x="82827" fg:w="57"/><text x="23.1139%" y="559.50"></text></g><g><title>try_to_wake_up (56 samples, 0.02%)</title><rect x="22.8642%" y="533" width="0.0155%" height="15" fill="rgb(248,211,50)" fg:x="82828" fg:w="56"/><text x="23.1142%" y="543.50"></text></g><g><title>WorkGang::run_task (84 samples, 0.02%)</title><rect x="22.8609%" y="709" width="0.0232%" height="15" fill="rgb(217,13,45)" fg:x="82816" fg:w="84"/><text x="23.1109%" y="719.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (84 samples, 0.02%)</title><rect x="22.8609%" y="693" width="0.0232%" height="15" fill="rgb(211,216,49)" fg:x="82816" fg:w="84"/><text x="23.1109%" y="703.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (89 samples, 0.02%)</title><rect x="22.8600%" y="725" width="0.0246%" height="15" fill="rgb(221,58,53)" fg:x="82813" fg:w="89"/><text x="23.1100%" y="735.50"></text></g><g><title>SafepointSynchronize::begin (324 samples, 0.09%)</title><rect x="22.8065%" y="741" width="0.0894%" height="15" fill="rgb(220,112,41)" fg:x="82619" fg:w="324"/><text x="23.0565%" y="751.50"></text></g><g><title>CodeHeap::next_used (39 samples, 0.01%)</title><rect x="22.9152%" y="661" width="0.0108%" height="15" fill="rgb(236,38,28)" fg:x="83013" fg:w="39"/><text x="23.1652%" y="671.50"></text></g><g><title>CodeBlobIterator<CompiledMethod, CompiledMethodFilter>::next_alive (58 samples, 0.02%)</title><rect x="22.9122%" y="677" width="0.0160%" height="15" fill="rgb(227,195,22)" fg:x="83002" fg:w="58"/><text x="23.1622%" y="687.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (59 samples, 0.02%)</title><rect x="22.9122%" y="693" width="0.0163%" height="15" fill="rgb(214,55,33)" fg:x="83002" fg:w="59"/><text x="23.1622%" y="703.50"></text></g><g><title>VM_Deoptimize::doit (62 samples, 0.02%)</title><rect x="22.9122%" y="709" width="0.0171%" height="15" fill="rgb(248,80,13)" fg:x="83002" fg:w="62"/><text x="23.1622%" y="719.50"></text></g><g><title>VM_Operation::evaluate (119 samples, 0.03%)</title><rect x="22.9042%" y="725" width="0.0328%" height="15" fill="rgb(238,52,6)" fg:x="82973" fg:w="119"/><text x="23.1542%" y="735.50"></text></g><g><title>VMThread::evaluate_operation (120 samples, 0.03%)</title><rect x="22.9042%" y="741" width="0.0331%" height="15" fill="rgb(224,198,47)" fg:x="82973" fg:w="120"/><text x="23.1542%" y="751.50"></text></g><g><title>Thread::call_run (569 samples, 0.16%)</title><rect x="22.7811%" y="789" width="0.1571%" height="15" fill="rgb(233,171,20)" fg:x="82527" fg:w="569"/><text x="23.0311%" y="799.50"></text></g><g><title>VMThread::run (569 samples, 0.16%)</title><rect x="22.7811%" y="773" width="0.1571%" height="15" fill="rgb(241,30,25)" fg:x="82527" fg:w="569"/><text x="23.0311%" y="783.50"></text></g><g><title>VMThread::loop (568 samples, 0.16%)</title><rect x="22.7814%" y="757" width="0.1568%" height="15" fill="rgb(207,171,38)" fg:x="82528" fg:w="568"/><text x="23.0314%" y="767.50"></text></g><g><title>__GI___clone (584 samples, 0.16%)</title><rect x="22.7775%" y="837" width="0.1612%" height="15" fill="rgb(234,70,1)" fg:x="82514" fg:w="584"/><text x="23.0275%" y="847.50"></text></g><g><title>start_thread (571 samples, 0.16%)</title><rect x="22.7811%" y="821" width="0.1576%" height="15" fill="rgb(232,178,18)" fg:x="82527" fg:w="571"/><text x="23.0311%" y="831.50"></text></g><g><title>thread_native_entry (571 samples, 0.16%)</title><rect x="22.7811%" y="805" width="0.1576%" height="15" fill="rgb(241,78,40)" fg:x="82527" fg:w="571"/><text x="23.0311%" y="815.50"></text></g><g><title>VM_Thread (727 samples, 0.20%)</title><rect x="22.7383%" y="853" width="0.2007%" height="15" fill="rgb(222,35,25)" fg:x="82372" fg:w="727"/><text x="22.9883%" y="863.50"></text></g><g><title>schedule_hrtimeout_range_clock (38 samples, 0.01%)</title><rect x="23.0530%" y="757" width="0.0105%" height="15" fill="rgb(207,92,16)" fg:x="83512" fg:w="38"/><text x="23.3030%" y="767.50"></text></g><g><title>__x64_sys_epoll_pwait (51 samples, 0.01%)</title><rect x="23.0497%" y="789" width="0.0141%" height="15" fill="rgb(216,59,51)" fg:x="83500" fg:w="51"/><text x="23.2997%" y="799.50"></text></g><g><title>do_epoll_wait (50 samples, 0.01%)</title><rect x="23.0500%" y="773" width="0.0138%" height="15" fill="rgb(213,80,28)" fg:x="83501" fg:w="50"/><text x="23.3000%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (159 samples, 0.04%)</title><rect x="23.0698%" y="677" width="0.0439%" height="15" fill="rgb(220,93,7)" fg:x="83573" fg:w="159"/><text x="23.3198%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.04%)</title><rect x="23.0712%" y="661" width="0.0425%" height="15" fill="rgb(225,24,44)" fg:x="83578" fg:w="154"/><text x="23.3212%" y="671.50"></text></g><g><title>native_write_msr (154 samples, 0.04%)</title><rect x="23.0712%" y="645" width="0.0425%" height="15" fill="rgb(243,74,40)" fg:x="83578" fg:w="154"/><text x="23.3212%" y="655.50"></text></g><g><title>finish_task_switch (177 samples, 0.05%)</title><rect x="23.0685%" y="693" width="0.0489%" height="15" fill="rgb(228,39,7)" fg:x="83568" fg:w="177"/><text x="23.3185%" y="703.50"></text></g><g><title>futex_wait (193 samples, 0.05%)</title><rect x="23.0649%" y="757" width="0.0533%" height="15" fill="rgb(227,79,8)" fg:x="83555" fg:w="193"/><text x="23.3149%" y="767.50"></text></g><g><title>futex_wait_queue_me (192 samples, 0.05%)</title><rect x="23.0651%" y="741" width="0.0530%" height="15" fill="rgb(236,58,11)" fg:x="83556" fg:w="192"/><text x="23.3151%" y="751.50"></text></g><g><title>schedule (188 samples, 0.05%)</title><rect x="23.0662%" y="725" width="0.0519%" height="15" fill="rgb(249,63,35)" fg:x="83560" fg:w="188"/><text x="23.3162%" y="735.50"></text></g><g><title>__schedule (187 samples, 0.05%)</title><rect x="23.0665%" y="709" width="0.0516%" height="15" fill="rgb(252,114,16)" fg:x="83561" fg:w="187"/><text x="23.3165%" y="719.50"></text></g><g><title>__x64_sys_futex (211 samples, 0.06%)</title><rect x="23.0643%" y="789" width="0.0582%" height="15" fill="rgb(254,151,24)" fg:x="83553" fg:w="211"/><text x="23.3143%" y="799.50"></text></g><g><title>do_futex (209 samples, 0.06%)</title><rect x="23.0649%" y="773" width="0.0577%" height="15" fill="rgb(253,54,39)" fg:x="83555" fg:w="209"/><text x="23.3149%" y="783.50"></text></g><g><title>do_syscall_64 (344 samples, 0.09%)</title><rect x="23.0483%" y="805" width="0.0950%" height="15" fill="rgb(243,25,45)" fg:x="83495" fg:w="344"/><text x="23.2983%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (357 samples, 0.10%)</title><rect x="23.0475%" y="821" width="0.0985%" height="15" fill="rgb(234,134,9)" fg:x="83492" fg:w="357"/><text x="23.2975%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.01%)</title><rect x="23.1485%" y="773" width="0.0116%" height="15" fill="rgb(227,166,31)" fg:x="83858" fg:w="42"/><text x="23.3985%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.01%)</title><rect x="23.1488%" y="757" width="0.0113%" height="15" fill="rgb(245,143,41)" fg:x="83859" fg:w="41"/><text x="23.3988%" y="767.50"></text></g><g><title>native_write_msr (41 samples, 0.01%)</title><rect x="23.1488%" y="741" width="0.0113%" height="15" fill="rgb(238,181,32)" fg:x="83859" fg:w="41"/><text x="23.3988%" y="751.50"></text></g><g><title>schedule_tail (46 samples, 0.01%)</title><rect x="23.1482%" y="805" width="0.0127%" height="15" fill="rgb(224,113,18)" fg:x="83857" fg:w="46"/><text x="23.3982%" y="815.50"></text></g><g><title>finish_task_switch (46 samples, 0.01%)</title><rect x="23.1482%" y="789" width="0.0127%" height="15" fill="rgb(240,229,28)" fg:x="83857" fg:w="46"/><text x="23.3982%" y="799.50"></text></g><g><title>ret_from_fork (50 samples, 0.01%)</title><rect x="23.1474%" y="821" width="0.0138%" height="15" fill="rgb(250,185,3)" fg:x="83854" fg:w="50"/><text x="23.3974%" y="831.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (783 samples, 0.22%)</title><rect x="22.9456%" y="837" width="0.2161%" height="15" fill="rgb(212,59,25)" fg:x="83123" fg:w="783"/><text x="23.1956%" y="847.50"></text></g><g><title>bazel (845 samples, 0.23%)</title><rect x="22.9442%" y="853" width="0.2333%" height="15" fill="rgb(221,87,20)" fg:x="83118" fg:w="845"/><text x="23.1942%" y="863.50"></text></g><g><title>RunfilesCreator::ReadManifest (42 samples, 0.01%)</title><rect x="23.1822%" y="821" width="0.0116%" height="15" fill="rgb(213,74,28)" fg:x="83980" fg:w="42"/><text x="23.4322%" y="831.50"></text></g><g><title>[unknown] (47 samples, 0.01%)</title><rect x="23.1822%" y="837" width="0.0130%" height="15" fill="rgb(224,132,34)" fg:x="83980" fg:w="47"/><text x="23.4322%" y="847.50"></text></g><g><title>RunfilesCreator::CreateFiles (52 samples, 0.01%)</title><rect x="23.2062%" y="773" width="0.0144%" height="15" fill="rgb(222,101,24)" fg:x="84067" fg:w="52"/><text x="23.4562%" y="783.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (144 samples, 0.04%)</title><rect x="23.2062%" y="789" width="0.0398%" height="15" fill="rgb(254,142,4)" fg:x="84067" fg:w="144"/><text x="23.4562%" y="799.50"></text></g><g><title>rename (64 samples, 0.02%)</title><rect x="23.2283%" y="773" width="0.0177%" height="15" fill="rgb(230,229,49)" fg:x="84147" fg:w="64"/><text x="23.4783%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="23.2291%" y="757" width="0.0168%" height="15" fill="rgb(238,70,47)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="767.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="23.2291%" y="741" width="0.0168%" height="15" fill="rgb(231,160,17)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="751.50"></text></g><g><title>__x64_sys_rename (61 samples, 0.02%)</title><rect x="23.2291%" y="725" width="0.0168%" height="15" fill="rgb(218,68,53)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="735.50"></text></g><g><title>do_renameat2 (61 samples, 0.02%)</title><rect x="23.2291%" y="709" width="0.0168%" height="15" fill="rgb(236,111,10)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="719.50"></text></g><g><title>vfs_rename (60 samples, 0.02%)</title><rect x="23.2294%" y="693" width="0.0166%" height="15" fill="rgb(224,34,41)" fg:x="84151" fg:w="60"/><text x="23.4794%" y="703.50"></text></g><g><title>btrfs_rename2 (59 samples, 0.02%)</title><rect x="23.2297%" y="677" width="0.0163%" height="15" fill="rgb(241,118,19)" fg:x="84152" fg:w="59"/><text x="23.4797%" y="687.50"></text></g><g><title>__libc_start_main (165 samples, 0.05%)</title><rect x="23.2026%" y="821" width="0.0455%" height="15" fill="rgb(238,129,25)" fg:x="84054" fg:w="165"/><text x="23.4526%" y="831.50"></text></g><g><title>main (152 samples, 0.04%)</title><rect x="23.2062%" y="805" width="0.0420%" height="15" fill="rgb(238,22,31)" fg:x="84067" fg:w="152"/><text x="23.4562%" y="815.50"></text></g><g><title>ksys_mmap_pgoff (37 samples, 0.01%)</title><rect x="23.2556%" y="597" width="0.0102%" height="15" fill="rgb(222,174,48)" fg:x="84246" fg:w="37"/><text x="23.5056%" y="607.50"></text></g><g><title>vm_mmap_pgoff (37 samples, 0.01%)</title><rect x="23.2556%" y="581" width="0.0102%" height="15" fill="rgb(206,152,40)" fg:x="84246" fg:w="37"/><text x="23.5056%" y="591.50"></text></g><g><title>_dl_map_segments (44 samples, 0.01%)</title><rect x="23.2540%" y="677" width="0.0121%" height="15" fill="rgb(218,99,54)" fg:x="84240" fg:w="44"/><text x="23.5040%" y="687.50"></text></g><g><title>__mmap64 (38 samples, 0.01%)</title><rect x="23.2556%" y="661" width="0.0105%" height="15" fill="rgb(220,174,26)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="671.50"></text></g><g><title>__mmap64 (38 samples, 0.01%)</title><rect x="23.2556%" y="645" width="0.0105%" height="15" fill="rgb(245,116,9)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="23.2556%" y="629" width="0.0105%" height="15" fill="rgb(209,72,35)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="639.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="23.2556%" y="613" width="0.0105%" height="15" fill="rgb(226,126,21)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (62 samples, 0.02%)</title><rect x="23.2537%" y="693" width="0.0171%" height="15" fill="rgb(227,192,1)" fg:x="84239" fg:w="62"/><text x="23.5037%" y="703.50"></text></g><g><title>_dl_catch_exception (83 samples, 0.02%)</title><rect x="23.2515%" y="741" width="0.0229%" height="15" fill="rgb(237,180,29)" fg:x="84231" fg:w="83"/><text x="23.5015%" y="751.50"></text></g><g><title>openaux (83 samples, 0.02%)</title><rect x="23.2515%" y="725" width="0.0229%" height="15" fill="rgb(230,197,35)" fg:x="84231" fg:w="83"/><text x="23.5015%" y="735.50"></text></g><g><title>_dl_map_object (83 samples, 0.02%)</title><rect x="23.2515%" y="709" width="0.0229%" height="15" fill="rgb(246,193,31)" fg:x="84231" fg:w="83"/><text x="23.5015%" y="719.50"></text></g><g><title>_dl_map_object_deps (86 samples, 0.02%)</title><rect x="23.2509%" y="757" width="0.0237%" height="15" fill="rgb(241,36,4)" fg:x="84229" fg:w="86"/><text x="23.5009%" y="767.50"></text></g><g><title>dl_new_hash (45 samples, 0.01%)</title><rect x="23.2943%" y="693" width="0.0124%" height="15" fill="rgb(241,130,17)" fg:x="84386" fg:w="45"/><text x="23.5443%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (120 samples, 0.03%)</title><rect x="23.2923%" y="709" width="0.0331%" height="15" fill="rgb(206,137,32)" fg:x="84379" fg:w="120"/><text x="23.5423%" y="719.50"></text></g><g><title>do_lookup_x (68 samples, 0.02%)</title><rect x="23.3067%" y="693" width="0.0188%" height="15" fill="rgb(237,228,51)" fg:x="84431" fg:w="68"/><text x="23.5567%" y="703.50"></text></g><g><title>elf_machine_rela (152 samples, 0.04%)</title><rect x="23.2846%" y="725" width="0.0420%" height="15" fill="rgb(243,6,42)" fg:x="84351" fg:w="152"/><text x="23.5346%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (178 samples, 0.05%)</title><rect x="23.2799%" y="741" width="0.0491%" height="15" fill="rgb(251,74,28)" fg:x="84334" fg:w="178"/><text x="23.5299%" y="751.50"></text></g><g><title>_dl_relocate_object (198 samples, 0.05%)</title><rect x="23.2752%" y="757" width="0.0547%" height="15" fill="rgb(218,20,49)" fg:x="84317" fg:w="198"/><text x="23.5252%" y="767.50"></text></g><g><title>[ld-2.31.so] (298 samples, 0.08%)</title><rect x="23.2484%" y="773" width="0.0823%" height="15" fill="rgb(238,28,14)" fg:x="84220" fg:w="298"/><text x="23.4984%" y="783.50"></text></g><g><title>_dl_start_final (307 samples, 0.08%)</title><rect x="23.2482%" y="805" width="0.0847%" height="15" fill="rgb(229,40,46)" fg:x="84219" fg:w="307"/><text x="23.4982%" y="815.50"></text></g><g><title>_dl_sysdep_start (307 samples, 0.08%)</title><rect x="23.2482%" y="789" width="0.0847%" height="15" fill="rgb(244,195,20)" fg:x="84219" fg:w="307"/><text x="23.4982%" y="799.50"></text></g><g><title>_dl_start (310 samples, 0.09%)</title><rect x="23.2482%" y="821" width="0.0856%" height="15" fill="rgb(253,56,35)" fg:x="84219" fg:w="310"/><text x="23.4982%" y="831.50"></text></g><g><title>_start (480 samples, 0.13%)</title><rect x="23.2023%" y="837" width="0.1325%" height="15" fill="rgb(210,149,44)" fg:x="84053" fg:w="480"/><text x="23.4523%" y="847.50"></text></g><g><title>mmput (50 samples, 0.01%)</title><rect x="23.3450%" y="757" width="0.0138%" height="15" fill="rgb(240,135,12)" fg:x="84570" fg:w="50"/><text x="23.5950%" y="767.50"></text></g><g><title>exit_mmap (50 samples, 0.01%)</title><rect x="23.3450%" y="741" width="0.0138%" height="15" fill="rgb(251,24,50)" fg:x="84570" fg:w="50"/><text x="23.5950%" y="751.50"></text></g><g><title>build-runfiles (666 samples, 0.18%)</title><rect x="23.1783%" y="853" width="0.1838%" height="15" fill="rgb(243,200,47)" fg:x="83966" fg:w="666"/><text x="23.4283%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.02%)</title><rect x="23.3373%" y="837" width="0.0248%" height="15" fill="rgb(224,166,26)" fg:x="84542" fg:w="90"/><text x="23.5873%" y="847.50"></text></g><g><title>do_syscall_64 (90 samples, 0.02%)</title><rect x="23.3373%" y="821" width="0.0248%" height="15" fill="rgb(233,0,47)" fg:x="84542" fg:w="90"/><text x="23.5873%" y="831.50"></text></g><g><title>__x64_sys_exit_group (63 samples, 0.02%)</title><rect x="23.3448%" y="805" width="0.0174%" height="15" fill="rgb(253,80,5)" fg:x="84569" fg:w="63"/><text x="23.5948%" y="815.50"></text></g><g><title>do_group_exit (63 samples, 0.02%)</title><rect x="23.3448%" y="789" width="0.0174%" height="15" fill="rgb(214,133,25)" fg:x="84569" fg:w="63"/><text x="23.5948%" y="799.50"></text></g><g><title>do_exit (63 samples, 0.02%)</title><rect x="23.3448%" y="773" width="0.0174%" height="15" fill="rgb(209,27,14)" fg:x="84569" fg:w="63"/><text x="23.5948%" y="783.50"></text></g><g><title>__GI__dl_catch_exception (46 samples, 0.01%)</title><rect x="23.3878%" y="565" width="0.0127%" height="15" fill="rgb(219,102,51)" fg:x="84725" fg:w="46"/><text x="23.6378%" y="575.50"></text></g><g><title>dl_open_worker (46 samples, 0.01%)</title><rect x="23.3878%" y="549" width="0.0127%" height="15" fill="rgb(237,18,16)" fg:x="84725" fg:w="46"/><text x="23.6378%" y="559.50"></text></g><g><title>__GI___libc_dlopen_mode (50 samples, 0.01%)</title><rect x="23.3878%" y="661" width="0.0138%" height="15" fill="rgb(241,85,17)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="671.50"></text></g><g><title>dlerror_run (50 samples, 0.01%)</title><rect x="23.3878%" y="645" width="0.0138%" height="15" fill="rgb(236,90,42)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="655.50"></text></g><g><title>__GI__dl_catch_error (50 samples, 0.01%)</title><rect x="23.3878%" y="629" width="0.0138%" height="15" fill="rgb(249,57,21)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="639.50"></text></g><g><title>__GI__dl_catch_exception (50 samples, 0.01%)</title><rect x="23.3878%" y="613" width="0.0138%" height="15" fill="rgb(243,12,36)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="623.50"></text></g><g><title>do_dlopen (50 samples, 0.01%)</title><rect x="23.3878%" y="597" width="0.0138%" height="15" fill="rgb(253,128,47)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="607.50"></text></g><g><title>_dl_open (50 samples, 0.01%)</title><rect x="23.3878%" y="581" width="0.0138%" height="15" fill="rgb(207,33,20)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="591.50"></text></g><g><title>__GI___nss_lookup (51 samples, 0.01%)</title><rect x="23.3878%" y="709" width="0.0141%" height="15" fill="rgb(233,215,35)" fg:x="84725" fg:w="51"/><text x="23.6378%" y="719.50"></text></g><g><title>__GI___nss_lookup_function (51 samples, 0.01%)</title><rect x="23.3878%" y="693" width="0.0141%" height="15" fill="rgb(249,188,52)" fg:x="84725" fg:w="51"/><text x="23.6378%" y="703.50"></text></g><g><title>nss_load_library (51 samples, 0.01%)</title><rect x="23.3878%" y="677" width="0.0141%" height="15" fill="rgb(225,12,32)" fg:x="84725" fg:w="51"/><text x="23.6378%" y="687.50"></text></g><g><title>getpwuid (95 samples, 0.03%)</title><rect x="23.3878%" y="741" width="0.0262%" height="15" fill="rgb(247,98,14)" fg:x="84725" fg:w="95"/><text x="23.6378%" y="751.50"></text></g><g><title>__getpwuid_r (95 samples, 0.03%)</title><rect x="23.3878%" y="725" width="0.0262%" height="15" fill="rgb(247,219,48)" fg:x="84725" fg:w="95"/><text x="23.6378%" y="735.50"></text></g><g><title>[bash] (118 samples, 0.03%)</title><rect x="23.3837%" y="757" width="0.0326%" height="15" fill="rgb(253,60,48)" fg:x="84710" fg:w="118"/><text x="23.6337%" y="767.50"></text></g><g><title>initialize_shell_variables (152 samples, 0.04%)</title><rect x="23.3834%" y="773" width="0.0420%" height="15" fill="rgb(245,15,52)" fg:x="84709" fg:w="152"/><text x="23.6334%" y="783.50"></text></g><g><title>[bash] (187 samples, 0.05%)</title><rect x="23.3771%" y="789" width="0.0516%" height="15" fill="rgb(220,133,28)" fg:x="84686" fg:w="187"/><text x="23.6271%" y="799.50"></text></g><g><title>bprm_execve (59 samples, 0.02%)</title><rect x="23.4499%" y="581" width="0.0163%" height="15" fill="rgb(217,180,4)" fg:x="84950" fg:w="59"/><text x="23.6999%" y="591.50"></text></g><g><title>shell_execve (74 samples, 0.02%)</title><rect x="23.4488%" y="677" width="0.0204%" height="15" fill="rgb(251,24,1)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="687.50"></text></g><g><title>__GI_execve (74 samples, 0.02%)</title><rect x="23.4488%" y="661" width="0.0204%" height="15" fill="rgb(212,185,49)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.02%)</title><rect x="23.4488%" y="645" width="0.0204%" height="15" fill="rgb(215,175,22)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="655.50"></text></g><g><title>do_syscall_64 (74 samples, 0.02%)</title><rect x="23.4488%" y="629" width="0.0204%" height="15" fill="rgb(250,205,14)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="639.50"></text></g><g><title>__x64_sys_execve (74 samples, 0.02%)</title><rect x="23.4488%" y="613" width="0.0204%" height="15" fill="rgb(225,211,22)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="623.50"></text></g><g><title>do_execveat_common (74 samples, 0.02%)</title><rect x="23.4488%" y="597" width="0.0204%" height="15" fill="rgb(251,179,42)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="607.50"></text></g><g><title>exec_builtin (81 samples, 0.02%)</title><rect x="23.4472%" y="693" width="0.0224%" height="15" fill="rgb(208,216,51)" fg:x="84940" fg:w="81"/><text x="23.6972%" y="703.50"></text></g><g><title>[bash] (102 samples, 0.03%)</title><rect x="23.4417%" y="709" width="0.0282%" height="15" fill="rgb(235,36,11)" fg:x="84920" fg:w="102"/><text x="23.6917%" y="719.50"></text></g><g><title>execute_command (118 samples, 0.03%)</title><rect x="23.4417%" y="741" width="0.0326%" height="15" fill="rgb(213,189,28)" fg:x="84920" fg:w="118"/><text x="23.6917%" y="751.50"></text></g><g><title>execute_command_internal (118 samples, 0.03%)</title><rect x="23.4417%" y="725" width="0.0326%" height="15" fill="rgb(227,203,42)" fg:x="84920" fg:w="118"/><text x="23.6917%" y="735.50"></text></g><g><title>execute_command_internal (131 samples, 0.04%)</title><rect x="23.4392%" y="757" width="0.0362%" height="15" fill="rgb(244,72,36)" fg:x="84911" fg:w="131"/><text x="23.6892%" y="767.50"></text></g><g><title>execute_command (132 samples, 0.04%)</title><rect x="23.4392%" y="773" width="0.0364%" height="15" fill="rgb(213,53,17)" fg:x="84911" fg:w="132"/><text x="23.6892%" y="783.50"></text></g><g><title>[bash] (40 samples, 0.01%)</title><rect x="23.4773%" y="725" width="0.0110%" height="15" fill="rgb(207,167,3)" fg:x="85049" fg:w="40"/><text x="23.7273%" y="735.50"></text></g><g><title>reader_loop (179 samples, 0.05%)</title><rect x="23.4392%" y="789" width="0.0494%" height="15" fill="rgb(216,98,30)" fg:x="84911" fg:w="179"/><text x="23.6892%" y="799.50"></text></g><g><title>read_command (47 samples, 0.01%)</title><rect x="23.4756%" y="773" width="0.0130%" height="15" fill="rgb(236,123,15)" fg:x="85043" fg:w="47"/><text x="23.7256%" y="783.50"></text></g><g><title>parse_command (47 samples, 0.01%)</title><rect x="23.4756%" y="757" width="0.0130%" height="15" fill="rgb(248,81,50)" fg:x="85043" fg:w="47"/><text x="23.7256%" y="767.50"></text></g><g><title>yyparse (47 samples, 0.01%)</title><rect x="23.4756%" y="741" width="0.0130%" height="15" fill="rgb(214,120,4)" fg:x="85043" fg:w="47"/><text x="23.7256%" y="751.50"></text></g><g><title>set_default_locale (40 samples, 0.01%)</title><rect x="23.4900%" y="789" width="0.0110%" height="15" fill="rgb(208,179,34)" fg:x="85095" fg:w="40"/><text x="23.7400%" y="799.50"></text></g><g><title>__libc_start_main (463 samples, 0.13%)</title><rect x="23.3762%" y="821" width="0.1278%" height="15" fill="rgb(227,140,7)" fg:x="84683" fg:w="463"/><text x="23.6262%" y="831.50"></text></g><g><title>main (460 samples, 0.13%)</title><rect x="23.3771%" y="805" width="0.1270%" height="15" fill="rgb(214,22,6)" fg:x="84686" fg:w="460"/><text x="23.6271%" y="815.50"></text></g><g><title>do_mmap (43 samples, 0.01%)</title><rect x="23.5187%" y="565" width="0.0119%" height="15" fill="rgb(207,137,27)" fg:x="85199" fg:w="43"/><text x="23.7687%" y="575.50"></text></g><g><title>mmap_region (41 samples, 0.01%)</title><rect x="23.5192%" y="549" width="0.0113%" height="15" fill="rgb(210,8,46)" fg:x="85201" fg:w="41"/><text x="23.7692%" y="559.50"></text></g><g><title>_dl_map_segments (56 samples, 0.02%)</title><rect x="23.5154%" y="677" width="0.0155%" height="15" fill="rgb(240,16,54)" fg:x="85187" fg:w="56"/><text x="23.7654%" y="687.50"></text></g><g><title>__mmap64 (47 samples, 0.01%)</title><rect x="23.5179%" y="661" width="0.0130%" height="15" fill="rgb(211,209,29)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="671.50"></text></g><g><title>__mmap64 (47 samples, 0.01%)</title><rect x="23.5179%" y="645" width="0.0130%" height="15" fill="rgb(226,228,24)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.01%)</title><rect x="23.5179%" y="629" width="0.0130%" height="15" fill="rgb(222,84,9)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="639.50"></text></g><g><title>do_syscall_64 (47 samples, 0.01%)</title><rect x="23.5179%" y="613" width="0.0130%" height="15" fill="rgb(234,203,30)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (46 samples, 0.01%)</title><rect x="23.5181%" y="597" width="0.0127%" height="15" fill="rgb(238,109,14)" fg:x="85197" fg:w="46"/><text x="23.7681%" y="607.50"></text></g><g><title>vm_mmap_pgoff (44 samples, 0.01%)</title><rect x="23.5187%" y="581" width="0.0121%" height="15" fill="rgb(233,206,34)" fg:x="85199" fg:w="44"/><text x="23.7687%" y="591.50"></text></g><g><title>_dl_map_object_from_fd (83 samples, 0.02%)</title><rect x="23.5134%" y="693" width="0.0229%" height="15" fill="rgb(220,167,47)" fg:x="85180" fg:w="83"/><text x="23.7634%" y="703.50"></text></g><g><title>_dl_catch_exception (122 samples, 0.03%)</title><rect x="23.5079%" y="741" width="0.0337%" height="15" fill="rgb(238,105,10)" fg:x="85160" fg:w="122"/><text x="23.7579%" y="751.50"></text></g><g><title>openaux (122 samples, 0.03%)</title><rect x="23.5079%" y="725" width="0.0337%" height="15" fill="rgb(213,227,17)" fg:x="85160" fg:w="122"/><text x="23.7579%" y="735.50"></text></g><g><title>_dl_map_object (122 samples, 0.03%)</title><rect x="23.5079%" y="709" width="0.0337%" height="15" fill="rgb(217,132,38)" fg:x="85160" fg:w="122"/><text x="23.7579%" y="719.50"></text></g><g><title>_dl_map_object_deps (127 samples, 0.04%)</title><rect x="23.5074%" y="757" width="0.0351%" height="15" fill="rgb(242,146,4)" fg:x="85158" fg:w="127"/><text x="23.7574%" y="767.50"></text></g><g><title>elf_machine_rela (62 samples, 0.02%)</title><rect x="23.5526%" y="725" width="0.0171%" height="15" fill="rgb(212,61,9)" fg:x="85322" fg:w="62"/><text x="23.8026%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (47 samples, 0.01%)</title><rect x="23.5568%" y="709" width="0.0130%" height="15" fill="rgb(247,126,22)" fg:x="85337" fg:w="47"/><text x="23.8068%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (101 samples, 0.03%)</title><rect x="23.5488%" y="741" width="0.0279%" height="15" fill="rgb(220,196,2)" fg:x="85308" fg:w="101"/><text x="23.7988%" y="751.50"></text></g><g><title>_dl_relocate_object (118 samples, 0.03%)</title><rect x="23.5446%" y="757" width="0.0326%" height="15" fill="rgb(208,46,4)" fg:x="85293" fg:w="118"/><text x="23.7946%" y="767.50"></text></g><g><title>[ld-2.31.so] (286 samples, 0.08%)</title><rect x="23.5043%" y="773" width="0.0789%" height="15" fill="rgb(252,104,46)" fg:x="85147" fg:w="286"/><text x="23.7543%" y="783.50"></text></g><g><title>_dl_start_final (298 samples, 0.08%)</title><rect x="23.5043%" y="805" width="0.0823%" height="15" fill="rgb(237,152,48)" fg:x="85147" fg:w="298"/><text x="23.7543%" y="815.50"></text></g><g><title>_dl_sysdep_start (298 samples, 0.08%)</title><rect x="23.5043%" y="789" width="0.0823%" height="15" fill="rgb(221,59,37)" fg:x="85147" fg:w="298"/><text x="23.7543%" y="799.50"></text></g><g><title>_dl_start (307 samples, 0.08%)</title><rect x="23.5040%" y="821" width="0.0847%" height="15" fill="rgb(209,202,51)" fg:x="85146" fg:w="307"/><text x="23.7540%" y="831.50"></text></g><g><title>_start (781 samples, 0.22%)</title><rect x="23.3762%" y="837" width="0.2156%" height="15" fill="rgb(228,81,30)" fg:x="84683" fg:w="781"/><text x="23.6262%" y="847.50"></text></g><g><title>exit_mmap (72 samples, 0.02%)</title><rect x="23.6037%" y="709" width="0.0199%" height="15" fill="rgb(227,42,39)" fg:x="85507" fg:w="72"/><text x="23.8537%" y="719.50"></text></g><g><title>mmput (73 samples, 0.02%)</title><rect x="23.6037%" y="725" width="0.0202%" height="15" fill="rgb(221,26,2)" fg:x="85507" fg:w="73"/><text x="23.8537%" y="735.50"></text></g><g><title>begin_new_exec (79 samples, 0.02%)</title><rect x="23.6029%" y="741" width="0.0218%" height="15" fill="rgb(254,61,31)" fg:x="85504" fg:w="79"/><text x="23.8529%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (140 samples, 0.04%)</title><rect x="23.6004%" y="837" width="0.0386%" height="15" fill="rgb(222,173,38)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="847.50"></text></g><g><title>do_syscall_64 (140 samples, 0.04%)</title><rect x="23.6004%" y="821" width="0.0386%" height="15" fill="rgb(218,50,12)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="831.50"></text></g><g><title>__x64_sys_execve (140 samples, 0.04%)</title><rect x="23.6004%" y="805" width="0.0386%" height="15" fill="rgb(223,88,40)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="815.50"></text></g><g><title>do_execveat_common (140 samples, 0.04%)</title><rect x="23.6004%" y="789" width="0.0386%" height="15" fill="rgb(237,54,19)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="799.50"></text></g><g><title>bprm_execve (140 samples, 0.04%)</title><rect x="23.6004%" y="773" width="0.0386%" height="15" fill="rgb(251,129,25)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="783.50"></text></g><g><title>load_elf_binary (140 samples, 0.04%)</title><rect x="23.6004%" y="757" width="0.0386%" height="15" fill="rgb(238,97,19)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="767.50"></text></g><g><title>cc_wrapper.sh (1,005 samples, 0.28%)</title><rect x="23.3622%" y="853" width="0.2774%" height="15" fill="rgb(240,169,18)" fg:x="84632" fg:w="1005"/><text x="23.6122%" y="863.50"></text></g><g><title>[[heap]] (311 samples, 0.09%)</title><rect x="23.6410%" y="837" width="0.0858%" height="15" fill="rgb(230,187,49)" fg:x="85642" fg:w="311"/><text x="23.8910%" y="847.50"></text></g><g><title>[[stack]] (172 samples, 0.05%)</title><rect x="23.7268%" y="837" width="0.0475%" height="15" fill="rgb(209,44,26)" fg:x="85953" fg:w="172"/><text x="23.9768%" y="847.50"></text></g><g><title>[anon] (50 samples, 0.01%)</title><rect x="23.7782%" y="837" width="0.0138%" height="15" fill="rgb(244,0,6)" fg:x="86139" fg:w="50"/><text x="24.0282%" y="847.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (41 samples, 0.01%)</title><rect x="23.8201%" y="725" width="0.0113%" height="15" fill="rgb(248,18,21)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.01%)</title><rect x="23.8201%" y="709" width="0.0113%" height="15" fill="rgb(245,180,19)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (41 samples, 0.01%)</title><rect x="23.8201%" y="693" width="0.0113%" height="15" fill="rgb(252,118,36)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (41 samples, 0.01%)</title><rect x="23.8201%" y="677" width="0.0113%" height="15" fill="rgb(210,224,19)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="687.50"></text></g><g><title>clang::Parser::ParseLinkage (41 samples, 0.01%)</title><rect x="23.8201%" y="661" width="0.0113%" height="15" fill="rgb(218,30,24)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="671.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.01%)</title><rect x="23.8201%" y="645" width="0.0113%" height="15" fill="rgb(219,75,50)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="655.50"></text></g><g><title>ExecuteCC1Tool (57 samples, 0.02%)</title><rect x="23.8171%" y="821" width="0.0157%" height="15" fill="rgb(234,72,50)" fg:x="86280" fg:w="57"/><text x="24.0671%" y="831.50"></text></g><g><title>cc1_main (57 samples, 0.02%)</title><rect x="23.8171%" y="805" width="0.0157%" height="15" fill="rgb(219,100,48)" fg:x="86280" fg:w="57"/><text x="24.0671%" y="815.50"></text></g><g><title>clang::ExecuteCompilerInvocation (54 samples, 0.01%)</title><rect x="23.8179%" y="789" width="0.0149%" height="15" fill="rgb(253,5,41)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="799.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (54 samples, 0.01%)</title><rect x="23.8179%" y="773" width="0.0149%" height="15" fill="rgb(247,181,11)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="783.50"></text></g><g><title>clang::FrontendAction::Execute (54 samples, 0.01%)</title><rect x="23.8179%" y="757" width="0.0149%" height="15" fill="rgb(222,223,25)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="767.50"></text></g><g><title>clang::ParseAST (54 samples, 0.01%)</title><rect x="23.8179%" y="741" width="0.0149%" height="15" fill="rgb(214,198,28)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="751.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (57 samples, 0.02%)</title><rect x="23.8590%" y="805" width="0.0157%" height="15" fill="rgb(230,46,43)" fg:x="86432" fg:w="57"/><text x="24.1090%" y="815.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (57 samples, 0.02%)</title><rect x="23.8590%" y="789" width="0.0157%" height="15" fill="rgb(233,65,53)" fg:x="86432" fg:w="57"/><text x="24.1090%" y="799.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (80 samples, 0.02%)</title><rect x="23.8775%" y="709" width="0.0221%" height="15" fill="rgb(221,121,27)" fg:x="86499" fg:w="80"/><text x="24.1275%" y="719.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (64 samples, 0.02%)</title><rect x="23.9029%" y="709" width="0.0177%" height="15" fill="rgb(247,70,47)" fg:x="86591" fg:w="64"/><text x="24.1529%" y="719.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (159 samples, 0.04%)</title><rect x="23.8775%" y="741" width="0.0439%" height="15" fill="rgb(228,85,35)" fg:x="86499" fg:w="159"/><text x="24.1275%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (159 samples, 0.04%)</title><rect x="23.8775%" y="725" width="0.0439%" height="15" fill="rgb(209,50,18)" fg:x="86499" fg:w="159"/><text x="24.1275%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (42 samples, 0.01%)</title><rect x="23.9269%" y="501" width="0.0116%" height="15" fill="rgb(250,19,35)" fg:x="86678" fg:w="42"/><text x="24.1769%" y="511.50"></text></g><g><title>clang::Preprocessor::HandleDirective (85 samples, 0.02%)</title><rect x="23.9269%" y="517" width="0.0235%" height="15" fill="rgb(253,107,29)" fg:x="86678" fg:w="85"/><text x="24.1769%" y="527.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (90 samples, 0.02%)</title><rect x="23.9258%" y="597" width="0.0248%" height="15" fill="rgb(252,179,29)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (90 samples, 0.02%)</title><rect x="23.9258%" y="581" width="0.0248%" height="15" fill="rgb(238,194,6)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="591.50"></text></g><g><title>clang::Preprocessor::CachingLex (90 samples, 0.02%)</title><rect x="23.9258%" y="565" width="0.0248%" height="15" fill="rgb(238,164,29)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (90 samples, 0.02%)</title><rect x="23.9258%" y="549" width="0.0248%" height="15" fill="rgb(224,25,9)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="559.50"></text></g><g><title>clang::Lexer::LexTokenInternal (90 samples, 0.02%)</title><rect x="23.9258%" y="533" width="0.0248%" height="15" fill="rgb(244,153,23)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="543.50"></text></g><g><title>clang::Parser::ParseDeclGroup (130 samples, 0.04%)</title><rect x="23.9258%" y="613" width="0.0359%" height="15" fill="rgb(212,203,14)" fg:x="86674" fg:w="130"/><text x="24.1758%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaration (155 samples, 0.04%)</title><rect x="23.9258%" y="645" width="0.0428%" height="15" fill="rgb(220,164,20)" fg:x="86674" fg:w="155"/><text x="24.1758%" y="655.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (155 samples, 0.04%)</title><rect x="23.9258%" y="629" width="0.0428%" height="15" fill="rgb(222,203,48)" fg:x="86674" fg:w="155"/><text x="24.1758%" y="639.50"></text></g><g><title>clang::Sema::ActOnDeclarator (37 samples, 0.01%)</title><rect x="23.9816%" y="581" width="0.0102%" height="15" fill="rgb(215,159,22)" fg:x="86876" fg:w="37"/><text x="24.2316%" y="591.50"></text></g><g><title>clang::Sema::HandleDeclarator (37 samples, 0.01%)</title><rect x="23.9816%" y="565" width="0.0102%" height="15" fill="rgb(216,183,47)" fg:x="86876" fg:w="37"/><text x="24.2316%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (38 samples, 0.01%)</title><rect x="23.9816%" y="597" width="0.0105%" height="15" fill="rgb(229,195,25)" fg:x="86876" fg:w="38"/><text x="24.2316%" y="607.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (38 samples, 0.01%)</title><rect x="23.9929%" y="581" width="0.0105%" height="15" fill="rgb(224,132,51)" fg:x="86917" fg:w="38"/><text x="24.2429%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (44 samples, 0.01%)</title><rect x="23.9921%" y="597" width="0.0121%" height="15" fill="rgb(240,63,7)" fg:x="86914" fg:w="44"/><text x="24.2421%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclGroup (139 samples, 0.04%)</title><rect x="23.9686%" y="613" width="0.0384%" height="15" fill="rgb(249,182,41)" fg:x="86829" fg:w="139"/><text x="24.2186%" y="623.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (314 samples, 0.09%)</title><rect x="23.9258%" y="661" width="0.0867%" height="15" fill="rgb(243,47,26)" fg:x="86674" fg:w="314"/><text x="24.1758%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (159 samples, 0.04%)</title><rect x="23.9686%" y="645" width="0.0439%" height="15" fill="rgb(233,48,2)" fg:x="86829" fg:w="159"/><text x="24.2186%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (159 samples, 0.04%)</title><rect x="23.9686%" y="629" width="0.0439%" height="15" fill="rgb(244,165,34)" fg:x="86829" fg:w="159"/><text x="24.2186%" y="639.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (325 samples, 0.09%)</title><rect x="23.9236%" y="741" width="0.0897%" height="15" fill="rgb(207,89,7)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (325 samples, 0.09%)</title><rect x="23.9236%" y="725" width="0.0897%" height="15" fill="rgb(244,117,36)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (325 samples, 0.09%)</title><rect x="23.9236%" y="709" width="0.0897%" height="15" fill="rgb(226,144,34)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (325 samples, 0.09%)</title><rect x="23.9236%" y="693" width="0.0897%" height="15" fill="rgb(213,23,19)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="703.50"></text></g><g><title>clang::Parser::ParseLinkage (317 samples, 0.09%)</title><rect x="23.9258%" y="677" width="0.0875%" height="15" fill="rgb(217,75,12)" fg:x="86674" fg:w="317"/><text x="24.1758%" y="687.50"></text></g><g><title>cc1_main (567 samples, 0.16%)</title><rect x="23.8590%" y="821" width="0.1565%" height="15" fill="rgb(224,159,17)" fg:x="86432" fg:w="567"/><text x="24.1090%" y="831.50"></text></g><g><title>clang::ExecuteCompilerInvocation (510 samples, 0.14%)</title><rect x="23.8748%" y="805" width="0.1408%" height="15" fill="rgb(217,118,1)" fg:x="86489" fg:w="510"/><text x="24.1248%" y="815.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (510 samples, 0.14%)</title><rect x="23.8748%" y="789" width="0.1408%" height="15" fill="rgb(232,180,48)" fg:x="86489" fg:w="510"/><text x="24.1248%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (506 samples, 0.14%)</title><rect x="23.8759%" y="773" width="0.1397%" height="15" fill="rgb(230,27,33)" fg:x="86493" fg:w="506"/><text x="24.1259%" y="783.50"></text></g><g><title>clang::ParseAST (506 samples, 0.14%)</title><rect x="23.8759%" y="757" width="0.1397%" height="15" fill="rgb(205,31,21)" fg:x="86493" fg:w="506"/><text x="24.1259%" y="767.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (88 samples, 0.02%)</title><rect x="24.0164%" y="821" width="0.0243%" height="15" fill="rgb(253,59,4)" fg:x="87002" fg:w="88"/><text x="24.2664%" y="831.50"></text></g><g><title>clang::EmitBackendOutput (82 samples, 0.02%)</title><rect x="24.0180%" y="805" width="0.0226%" height="15" fill="rgb(224,201,9)" fg:x="87008" fg:w="82"/><text x="24.2680%" y="815.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (82 samples, 0.02%)</title><rect x="24.0180%" y="789" width="0.0226%" height="15" fill="rgb(229,206,30)" fg:x="87008" fg:w="82"/><text x="24.2680%" y="799.50"></text></g><g><title>llvm::FPPassManager::runOnModule (47 samples, 0.01%)</title><rect x="24.0277%" y="773" width="0.0130%" height="15" fill="rgb(212,67,47)" fg:x="87043" fg:w="47"/><text x="24.2777%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (47 samples, 0.01%)</title><rect x="24.0277%" y="757" width="0.0130%" height="15" fill="rgb(211,96,50)" fg:x="87043" fg:w="47"/><text x="24.2777%" y="767.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (44 samples, 0.01%)</title><rect x="24.0548%" y="677" width="0.0121%" height="15" fill="rgb(252,114,18)" fg:x="87141" fg:w="44"/><text x="24.3048%" y="687.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (41 samples, 0.01%)</title><rect x="24.0556%" y="661" width="0.0113%" height="15" fill="rgb(223,58,37)" fg:x="87144" fg:w="41"/><text x="24.3056%" y="671.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (52 samples, 0.01%)</title><rect x="24.0528%" y="773" width="0.0144%" height="15" fill="rgb(237,70,4)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="783.50"></text></g><g><title>clang::EmitBackendOutput (52 samples, 0.01%)</title><rect x="24.0528%" y="757" width="0.0144%" height="15" fill="rgb(244,85,46)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="767.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (52 samples, 0.01%)</title><rect x="24.0528%" y="741" width="0.0144%" height="15" fill="rgb(223,39,52)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnModule (52 samples, 0.01%)</title><rect x="24.0528%" y="725" width="0.0144%" height="15" fill="rgb(218,200,14)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (52 samples, 0.01%)</title><rect x="24.0528%" y="709" width="0.0144%" height="15" fill="rgb(208,171,16)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (45 samples, 0.01%)</title><rect x="24.0548%" y="693" width="0.0124%" height="15" fill="rgb(234,200,18)" fg:x="87141" fg:w="45"/><text x="24.3048%" y="703.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (55 samples, 0.02%)</title><rect x="24.0528%" y="821" width="0.0152%" height="15" fill="rgb(228,45,11)" fg:x="87134" fg:w="55"/><text x="24.3028%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (55 samples, 0.02%)</title><rect x="24.0528%" y="805" width="0.0152%" height="15" fill="rgb(237,182,11)" fg:x="87134" fg:w="55"/><text x="24.3028%" y="815.50"></text></g><g><title>clang::ParseAST (55 samples, 0.02%)</title><rect x="24.0528%" y="789" width="0.0152%" height="15" fill="rgb(241,175,49)" fg:x="87134" fg:w="55"/><text x="24.3028%" y="799.50"></text></g><g><title>filename_lookup (37 samples, 0.01%)</title><rect x="24.0796%" y="629" width="0.0102%" height="15" fill="rgb(247,38,35)" fg:x="87231" fg:w="37"/><text x="24.3296%" y="639.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="24.0790%" y="677" width="0.0146%" height="15" fill="rgb(228,39,49)" fg:x="87229" fg:w="53"/><text x="24.3290%" y="687.50"></text></g><g><title>__x64_sys_readlink (52 samples, 0.01%)</title><rect x="24.0793%" y="661" width="0.0144%" height="15" fill="rgb(226,101,26)" fg:x="87230" fg:w="52"/><text x="24.3293%" y="671.50"></text></g><g><title>do_readlinkat (52 samples, 0.01%)</title><rect x="24.0793%" y="645" width="0.0144%" height="15" fill="rgb(206,141,19)" fg:x="87230" fg:w="52"/><text x="24.3293%" y="655.50"></text></g><g><title>__GI___readlink (55 samples, 0.02%)</title><rect x="24.0788%" y="709" width="0.0152%" height="15" fill="rgb(211,200,13)" fg:x="87228" fg:w="55"/><text x="24.3288%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="24.0790%" y="693" width="0.0149%" height="15" fill="rgb(241,121,6)" fg:x="87229" fg:w="54"/><text x="24.3290%" y="703.50"></text></g><g><title>btrfs_search_slot (65 samples, 0.02%)</title><rect x="24.1028%" y="533" width="0.0179%" height="15" fill="rgb(234,221,29)" fg:x="87315" fg:w="65"/><text x="24.3528%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (66 samples, 0.02%)</title><rect x="24.1028%" y="549" width="0.0182%" height="15" fill="rgb(229,136,5)" fg:x="87315" fg:w="66"/><text x="24.3528%" y="559.50"></text></g><g><title>btrfs_lookup (70 samples, 0.02%)</title><rect x="24.1022%" y="581" width="0.0193%" height="15" fill="rgb(238,36,11)" fg:x="87313" fg:w="70"/><text x="24.3522%" y="591.50"></text></g><g><title>btrfs_lookup_dentry (70 samples, 0.02%)</title><rect x="24.1022%" y="565" width="0.0193%" height="15" fill="rgb(251,55,41)" fg:x="87313" fg:w="70"/><text x="24.3522%" y="575.50"></text></g><g><title>link_path_walk.part.0 (37 samples, 0.01%)</title><rect x="24.1246%" y="581" width="0.0102%" height="15" fill="rgb(242,34,40)" fg:x="87394" fg:w="37"/><text x="24.3746%" y="591.50"></text></g><g><title>page_get_link (40 samples, 0.01%)</title><rect x="24.1378%" y="565" width="0.0110%" height="15" fill="rgb(215,42,17)" fg:x="87442" fg:w="40"/><text x="24.3878%" y="575.50"></text></g><g><title>do_read_cache_page (40 samples, 0.01%)</title><rect x="24.1378%" y="549" width="0.0110%" height="15" fill="rgb(207,44,46)" fg:x="87442" fg:w="40"/><text x="24.3878%" y="559.50"></text></g><g><title>step_into (58 samples, 0.02%)</title><rect x="24.1365%" y="581" width="0.0160%" height="15" fill="rgb(211,206,28)" fg:x="87437" fg:w="58"/><text x="24.3865%" y="591.50"></text></g><g><title>do_filp_open (198 samples, 0.05%)</title><rect x="24.0981%" y="613" width="0.0547%" height="15" fill="rgb(237,167,16)" fg:x="87298" fg:w="198"/><text x="24.3481%" y="623.50"></text></g><g><title>path_openat (197 samples, 0.05%)</title><rect x="24.0984%" y="597" width="0.0544%" height="15" fill="rgb(233,66,6)" fg:x="87299" fg:w="197"/><text x="24.3484%" y="607.50"></text></g><g><title>__x64_sys_openat (215 samples, 0.06%)</title><rect x="24.0970%" y="645" width="0.0593%" height="15" fill="rgb(246,123,29)" fg:x="87294" fg:w="215"/><text x="24.3470%" y="655.50"></text></g><g><title>do_sys_openat2 (214 samples, 0.06%)</title><rect x="24.0973%" y="629" width="0.0591%" height="15" fill="rgb(209,62,40)" fg:x="87295" fg:w="214"/><text x="24.3473%" y="639.50"></text></g><g><title>do_syscall_64 (217 samples, 0.06%)</title><rect x="24.0967%" y="661" width="0.0599%" height="15" fill="rgb(218,4,25)" fg:x="87293" fg:w="217"/><text x="24.3467%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (220 samples, 0.06%)</title><rect x="24.0967%" y="677" width="0.0607%" height="15" fill="rgb(253,91,49)" fg:x="87293" fg:w="220"/><text x="24.3467%" y="687.50"></text></g><g><title>__libc_open64 (222 samples, 0.06%)</title><rect x="24.0964%" y="693" width="0.0613%" height="15" fill="rgb(228,155,29)" fg:x="87292" fg:w="222"/><text x="24.3464%" y="703.50"></text></g><g><title>llvm::sys::fs::openFile (226 samples, 0.06%)</title><rect x="24.0962%" y="709" width="0.0624%" height="15" fill="rgb(243,57,37)" fg:x="87291" fg:w="226"/><text x="24.3462%" y="719.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (290 samples, 0.08%)</title><rect x="24.0788%" y="821" width="0.0801%" height="15" fill="rgb(244,167,17)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="831.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (290 samples, 0.08%)</title><rect x="24.0788%" y="805" width="0.0801%" height="15" fill="rgb(207,181,38)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="815.50"></text></g><g><title>clang::FileManager::getFileRef (290 samples, 0.08%)</title><rect x="24.0788%" y="789" width="0.0801%" height="15" fill="rgb(211,8,23)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="799.50"></text></g><g><title>clang::FileManager::getStatValue (290 samples, 0.08%)</title><rect x="24.0788%" y="773" width="0.0801%" height="15" fill="rgb(235,11,44)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="783.50"></text></g><g><title>clang::FileSystemStatCache::get (290 samples, 0.08%)</title><rect x="24.0788%" y="757" width="0.0801%" height="15" fill="rgb(248,18,52)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="767.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (290 samples, 0.08%)</title><rect x="24.0788%" y="741" width="0.0801%" height="15" fill="rgb(208,4,7)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="751.50"></text></g><g><title>llvm::sys::fs::openFileForRead (290 samples, 0.08%)</title><rect x="24.0788%" y="725" width="0.0801%" height="15" fill="rgb(240,17,39)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (41 samples, 0.01%)</title><rect x="24.1707%" y="821" width="0.0113%" height="15" fill="rgb(207,170,3)" fg:x="87561" fg:w="41"/><text x="24.4207%" y="831.50"></text></g><g><title>clang::ParseAST (41 samples, 0.01%)</title><rect x="24.1707%" y="805" width="0.0113%" height="15" fill="rgb(236,100,52)" fg:x="87561" fg:w="41"/><text x="24.4207%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (71 samples, 0.02%)</title><rect x="24.2179%" y="805" width="0.0196%" height="15" fill="rgb(246,78,51)" fg:x="87732" fg:w="71"/><text x="24.4679%" y="815.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (56 samples, 0.02%)</title><rect x="24.2220%" y="789" width="0.0155%" height="15" fill="rgb(211,17,15)" fg:x="87747" fg:w="56"/><text x="24.4720%" y="799.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (56 samples, 0.02%)</title><rect x="24.2220%" y="773" width="0.0155%" height="15" fill="rgb(209,59,46)" fg:x="87747" fg:w="56"/><text x="24.4720%" y="783.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (56 samples, 0.02%)</title><rect x="24.2220%" y="757" width="0.0155%" height="15" fill="rgb(210,92,25)" fg:x="87747" fg:w="56"/><text x="24.4720%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclGroup (97 samples, 0.03%)</title><rect x="24.2121%" y="821" width="0.0268%" height="15" fill="rgb(238,174,52)" fg:x="87711" fg:w="97"/><text x="24.4621%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (40 samples, 0.01%)</title><rect x="24.2507%" y="773" width="0.0110%" height="15" fill="rgb(230,73,7)" fg:x="87851" fg:w="40"/><text x="24.5007%" y="783.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (37 samples, 0.01%)</title><rect x="24.2516%" y="757" width="0.0102%" height="15" fill="rgb(243,124,40)" fg:x="87854" fg:w="37"/><text x="24.5016%" y="767.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (37 samples, 0.01%)</title><rect x="24.2516%" y="741" width="0.0102%" height="15" fill="rgb(244,170,11)" fg:x="87854" fg:w="37"/><text x="24.5016%" y="751.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (37 samples, 0.01%)</title><rect x="24.2516%" y="725" width="0.0102%" height="15" fill="rgb(207,114,54)" fg:x="87854" fg:w="37"/><text x="24.5016%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (58 samples, 0.02%)</title><rect x="24.2472%" y="789" width="0.0160%" height="15" fill="rgb(205,42,20)" fg:x="87838" fg:w="58"/><text x="24.4972%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (52 samples, 0.01%)</title><rect x="24.2673%" y="709" width="0.0144%" height="15" fill="rgb(230,30,28)" fg:x="87911" fg:w="52"/><text x="24.5173%" y="719.50"></text></g><g><title>clang::Sema::ActOnDeclarator (52 samples, 0.01%)</title><rect x="24.2673%" y="693" width="0.0144%" height="15" fill="rgb(205,73,54)" fg:x="87911" fg:w="52"/><text x="24.5173%" y="703.50"></text></g><g><title>clang::Sema::HandleDeclarator (52 samples, 0.01%)</title><rect x="24.2673%" y="677" width="0.0144%" height="15" fill="rgb(254,227,23)" fg:x="87911" fg:w="52"/><text x="24.5173%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (126 samples, 0.03%)</title><rect x="24.2472%" y="821" width="0.0348%" height="15" fill="rgb(228,202,34)" fg:x="87838" fg:w="126"/><text x="24.4972%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (126 samples, 0.03%)</title><rect x="24.2472%" y="805" width="0.0348%" height="15" fill="rgb(222,225,37)" fg:x="87838" fg:w="126"/><text x="24.4972%" y="815.50"></text></g><g><title>clang::Parser::ParseLinkage (65 samples, 0.02%)</title><rect x="24.2640%" y="789" width="0.0179%" height="15" fill="rgb(221,14,54)" fg:x="87899" fg:w="65"/><text x="24.5140%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (65 samples, 0.02%)</title><rect x="24.2640%" y="773" width="0.0179%" height="15" fill="rgb(254,102,2)" fg:x="87899" fg:w="65"/><text x="24.5140%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (55 samples, 0.02%)</title><rect x="24.2668%" y="757" width="0.0152%" height="15" fill="rgb(232,104,17)" fg:x="87909" fg:w="55"/><text x="24.5168%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (55 samples, 0.02%)</title><rect x="24.2668%" y="741" width="0.0152%" height="15" fill="rgb(250,220,14)" fg:x="87909" fg:w="55"/><text x="24.5168%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclGroup (55 samples, 0.02%)</title><rect x="24.2668%" y="725" width="0.0152%" height="15" fill="rgb(241,158,9)" fg:x="87909" fg:w="55"/><text x="24.5168%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (38 samples, 0.01%)</title><rect x="24.2946%" y="821" width="0.0105%" height="15" fill="rgb(246,9,43)" fg:x="88010" fg:w="38"/><text x="24.5446%" y="831.50"></text></g><g><title>btrfs_lookup_dir_item (37 samples, 0.01%)</title><rect x="24.3429%" y="469" width="0.0102%" height="15" fill="rgb(206,73,33)" fg:x="88185" fg:w="37"/><text x="24.5929%" y="479.50"></text></g><g><title>btrfs_search_slot (37 samples, 0.01%)</title><rect x="24.3429%" y="453" width="0.0102%" height="15" fill="rgb(222,79,8)" fg:x="88185" fg:w="37"/><text x="24.5929%" y="463.50"></text></g><g><title>btrfs_lookup (41 samples, 0.01%)</title><rect x="24.3424%" y="501" width="0.0113%" height="15" fill="rgb(234,8,54)" fg:x="88183" fg:w="41"/><text x="24.5924%" y="511.50"></text></g><g><title>btrfs_lookup_dentry (41 samples, 0.01%)</title><rect x="24.3424%" y="485" width="0.0113%" height="15" fill="rgb(209,134,38)" fg:x="88183" fg:w="41"/><text x="24.5924%" y="495.50"></text></g><g><title>__lookup_slow (45 samples, 0.01%)</title><rect x="24.3424%" y="517" width="0.0124%" height="15" fill="rgb(230,127,29)" fg:x="88183" fg:w="45"/><text x="24.5924%" y="527.50"></text></g><g><title>filename_lookup (58 samples, 0.02%)</title><rect x="24.3394%" y="565" width="0.0160%" height="15" fill="rgb(242,44,41)" fg:x="88172" fg:w="58"/><text x="24.5894%" y="575.50"></text></g><g><title>path_lookupat (56 samples, 0.02%)</title><rect x="24.3399%" y="549" width="0.0155%" height="15" fill="rgb(222,56,43)" fg:x="88174" fg:w="56"/><text x="24.5899%" y="559.50"></text></g><g><title>walk_component (48 samples, 0.01%)</title><rect x="24.3421%" y="533" width="0.0133%" height="15" fill="rgb(238,39,47)" fg:x="88182" fg:w="48"/><text x="24.5921%" y="543.50"></text></g><g><title>do_syscall_64 (71 samples, 0.02%)</title><rect x="24.3385%" y="613" width="0.0196%" height="15" fill="rgb(226,79,43)" fg:x="88169" fg:w="71"/><text x="24.5885%" y="623.50"></text></g><g><title>__do_sys_newstat (69 samples, 0.02%)</title><rect x="24.3391%" y="597" width="0.0190%" height="15" fill="rgb(242,105,53)" fg:x="88171" fg:w="69"/><text x="24.5891%" y="607.50"></text></g><g><title>vfs_statx (69 samples, 0.02%)</title><rect x="24.3391%" y="581" width="0.0190%" height="15" fill="rgb(251,132,46)" fg:x="88171" fg:w="69"/><text x="24.5891%" y="591.50"></text></g><g><title>__GI___xstat (74 samples, 0.02%)</title><rect x="24.3380%" y="645" width="0.0204%" height="15" fill="rgb(231,77,14)" fg:x="88167" fg:w="74"/><text x="24.5880%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.02%)</title><rect x="24.3385%" y="629" width="0.0199%" height="15" fill="rgb(240,135,9)" fg:x="88169" fg:w="72"/><text x="24.5885%" y="639.50"></text></g><g><title>llvm::sys::fs::status (76 samples, 0.02%)</title><rect x="24.3380%" y="661" width="0.0210%" height="15" fill="rgb(248,109,14)" fg:x="88167" fg:w="76"/><text x="24.5880%" y="671.50"></text></g><g><title>clang::FileManager::getStatValue (82 samples, 0.02%)</title><rect x="24.3377%" y="693" width="0.0226%" height="15" fill="rgb(227,146,52)" fg:x="88166" fg:w="82"/><text x="24.5877%" y="703.50"></text></g><g><title>clang::FileSystemStatCache::get (82 samples, 0.02%)</title><rect x="24.3377%" y="677" width="0.0226%" height="15" fill="rgb(232,54,3)" fg:x="88166" fg:w="82"/><text x="24.5877%" y="687.50"></text></g><g><title>clang::FileManager::getDirectoryRef (93 samples, 0.03%)</title><rect x="24.3377%" y="709" width="0.0257%" height="15" fill="rgb(229,201,43)" fg:x="88166" fg:w="93"/><text x="24.5877%" y="719.50"></text></g><g><title>clang::FileManager::getFileRef (160 samples, 0.04%)</title><rect x="24.3347%" y="725" width="0.0442%" height="15" fill="rgb(252,161,33)" fg:x="88155" fg:w="160"/><text x="24.5847%" y="735.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (162 samples, 0.04%)</title><rect x="24.3347%" y="741" width="0.0447%" height="15" fill="rgb(226,146,40)" fg:x="88155" fg:w="162"/><text x="24.5847%" y="751.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (178 samples, 0.05%)</title><rect x="24.3327%" y="821" width="0.0491%" height="15" fill="rgb(219,47,25)" fg:x="88148" fg:w="178"/><text x="24.5827%" y="831.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (176 samples, 0.05%)</title><rect x="24.3333%" y="805" width="0.0486%" height="15" fill="rgb(250,135,13)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="815.50"></text></g><g><title>clang::Preprocessor::LookupFile (176 samples, 0.05%)</title><rect x="24.3333%" y="789" width="0.0486%" height="15" fill="rgb(219,229,18)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="799.50"></text></g><g><title>clang::HeaderSearch::LookupFile (176 samples, 0.05%)</title><rect x="24.3333%" y="773" width="0.0486%" height="15" fill="rgb(217,152,27)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="783.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (176 samples, 0.05%)</title><rect x="24.3333%" y="757" width="0.0486%" height="15" fill="rgb(225,71,47)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (75 samples, 0.02%)</title><rect x="24.4144%" y="597" width="0.0207%" height="15" fill="rgb(220,139,14)" fg:x="88444" fg:w="75"/><text x="24.6644%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (39 samples, 0.01%)</title><rect x="24.4244%" y="581" width="0.0108%" height="15" fill="rgb(247,54,32)" fg:x="88480" fg:w="39"/><text x="24.6744%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (39 samples, 0.01%)</title><rect x="24.4244%" y="565" width="0.0108%" height="15" fill="rgb(252,131,39)" fg:x="88480" fg:w="39"/><text x="24.6744%" y="575.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (81 samples, 0.02%)</title><rect x="24.4131%" y="677" width="0.0224%" height="15" fill="rgb(210,108,39)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="687.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (81 samples, 0.02%)</title><rect x="24.4131%" y="661" width="0.0224%" height="15" fill="rgb(205,23,29)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (81 samples, 0.02%)</title><rect x="24.4131%" y="645" width="0.0224%" height="15" fill="rgb(246,139,46)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (81 samples, 0.02%)</title><rect x="24.4131%" y="629" width="0.0224%" height="15" fill="rgb(250,81,26)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="639.50"></text></g><g><title>clang::Parser::ParseLinkage (76 samples, 0.02%)</title><rect x="24.4144%" y="613" width="0.0210%" height="15" fill="rgb(214,104,7)" fg:x="88444" fg:w="76"/><text x="24.6644%" y="623.50"></text></g><g><title>clang::driver::CC1Command::Execute (167 samples, 0.05%)</title><rect x="24.4023%" y="821" width="0.0461%" height="15" fill="rgb(233,189,8)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="831.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (167 samples, 0.05%)</title><rect x="24.4023%" y="805" width="0.0461%" height="15" fill="rgb(228,141,17)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="815.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (167 samples, 0.05%)</title><rect x="24.4023%" y="789" width="0.0461%" height="15" fill="rgb(247,157,1)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="799.50"></text></g><g><title>ExecuteCC1Tool (167 samples, 0.05%)</title><rect x="24.4023%" y="773" width="0.0461%" height="15" fill="rgb(249,225,5)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="783.50"></text></g><g><title>cc1_main (167 samples, 0.05%)</title><rect x="24.4023%" y="757" width="0.0461%" height="15" fill="rgb(242,55,13)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="767.50"></text></g><g><title>clang::ExecuteCompilerInvocation (164 samples, 0.05%)</title><rect x="24.4031%" y="741" width="0.0453%" height="15" fill="rgb(230,49,50)" fg:x="88403" fg:w="164"/><text x="24.6531%" y="751.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (164 samples, 0.05%)</title><rect x="24.4031%" y="725" width="0.0453%" height="15" fill="rgb(241,111,38)" fg:x="88403" fg:w="164"/><text x="24.6531%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (151 samples, 0.04%)</title><rect x="24.4067%" y="709" width="0.0417%" height="15" fill="rgb(252,155,4)" fg:x="88416" fg:w="151"/><text x="24.6567%" y="719.50"></text></g><g><title>clang::ParseAST (151 samples, 0.04%)</title><rect x="24.4067%" y="693" width="0.0417%" height="15" fill="rgb(212,69,32)" fg:x="88416" fg:w="151"/><text x="24.6567%" y="703.50"></text></g><g><title>clang::Preprocessor::Lex (47 samples, 0.01%)</title><rect x="24.4354%" y="677" width="0.0130%" height="15" fill="rgb(243,107,47)" fg:x="88520" fg:w="47"/><text x="24.6854%" y="687.50"></text></g><g><title>clang::Lexer::LexTokenInternal (47 samples, 0.01%)</title><rect x="24.4354%" y="661" width="0.0130%" height="15" fill="rgb(247,130,12)" fg:x="88520" fg:w="47"/><text x="24.6854%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleDirective (47 samples, 0.01%)</title><rect x="24.4354%" y="645" width="0.0130%" height="15" fill="rgb(233,74,16)" fg:x="88520" fg:w="47"/><text x="24.6854%" y="655.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (82 samples, 0.02%)</title><rect x="24.5086%" y="741" width="0.0226%" height="15" fill="rgb(208,58,18)" fg:x="88785" fg:w="82"/><text x="24.7586%" y="751.50"></text></g><g><title>__btrfs_read_lock_root_node (37 samples, 0.01%)</title><rect x="24.5365%" y="469" width="0.0102%" height="15" fill="rgb(242,225,1)" fg:x="88886" fg:w="37"/><text x="24.7865%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (37 samples, 0.01%)</title><rect x="24.5365%" y="453" width="0.0102%" height="15" fill="rgb(249,39,40)" fg:x="88886" fg:w="37"/><text x="24.7865%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (55 samples, 0.02%)</title><rect x="24.5362%" y="501" width="0.0152%" height="15" fill="rgb(207,72,44)" fg:x="88885" fg:w="55"/><text x="24.7862%" y="511.50"></text></g><g><title>btrfs_search_slot (55 samples, 0.02%)</title><rect x="24.5362%" y="485" width="0.0152%" height="15" fill="rgb(215,193,12)" fg:x="88885" fg:w="55"/><text x="24.7862%" y="495.50"></text></g><g><title>btrfs_lookup (57 samples, 0.02%)</title><rect x="24.5359%" y="533" width="0.0157%" height="15" fill="rgb(248,41,39)" fg:x="88884" fg:w="57"/><text x="24.7859%" y="543.50"></text></g><g><title>btrfs_lookup_dentry (57 samples, 0.02%)</title><rect x="24.5359%" y="517" width="0.0157%" height="15" fill="rgb(253,85,4)" fg:x="88884" fg:w="57"/><text x="24.7859%" y="527.50"></text></g><g><title>__lookup_slow (60 samples, 0.02%)</title><rect x="24.5359%" y="549" width="0.0166%" height="15" fill="rgb(243,70,31)" fg:x="88884" fg:w="60"/><text x="24.7859%" y="559.50"></text></g><g><title>filename_lookup (71 samples, 0.02%)</title><rect x="24.5342%" y="597" width="0.0196%" height="15" fill="rgb(253,195,26)" fg:x="88878" fg:w="71"/><text x="24.7842%" y="607.50"></text></g><g><title>path_lookupat (69 samples, 0.02%)</title><rect x="24.5348%" y="581" width="0.0190%" height="15" fill="rgb(243,42,11)" fg:x="88880" fg:w="69"/><text x="24.7848%" y="591.50"></text></g><g><title>walk_component (65 samples, 0.02%)</title><rect x="24.5359%" y="565" width="0.0179%" height="15" fill="rgb(239,66,17)" fg:x="88884" fg:w="65"/><text x="24.7859%" y="575.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="24.5340%" y="629" width="0.0235%" height="15" fill="rgb(217,132,21)" fg:x="88877" fg:w="85"/><text x="24.7840%" y="639.50"></text></g><g><title>do_faccessat (84 samples, 0.02%)</title><rect x="24.5342%" y="613" width="0.0232%" height="15" fill="rgb(252,202,21)" fg:x="88878" fg:w="84"/><text x="24.7842%" y="623.50"></text></g><g><title>__GI___access (88 samples, 0.02%)</title><rect x="24.5334%" y="661" width="0.0243%" height="15" fill="rgb(233,98,36)" fg:x="88875" fg:w="88"/><text x="24.7834%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="24.5340%" y="645" width="0.0237%" height="15" fill="rgb(216,153,54)" fg:x="88877" fg:w="86"/><text x="24.7840%" y="655.50"></text></g><g><title>llvm::sys::fs::access (92 samples, 0.03%)</title><rect x="24.5334%" y="677" width="0.0254%" height="15" fill="rgb(250,99,7)" fg:x="88875" fg:w="92"/><text x="24.7834%" y="687.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (98 samples, 0.03%)</title><rect x="24.5326%" y="693" width="0.0271%" height="15" fill="rgb(207,56,50)" fg:x="88872" fg:w="98"/><text x="24.7826%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (39 samples, 0.01%)</title><rect x="24.5621%" y="485" width="0.0108%" height="15" fill="rgb(244,61,34)" fg:x="88979" fg:w="39"/><text x="24.8121%" y="495.50"></text></g><g><title>btrfs_search_slot (56 samples, 0.02%)</title><rect x="24.5621%" y="501" width="0.0155%" height="15" fill="rgb(241,50,38)" fg:x="88979" fg:w="56"/><text x="24.8121%" y="511.50"></text></g><g><title>btrfs_lookup (60 samples, 0.02%)</title><rect x="24.5613%" y="549" width="0.0166%" height="15" fill="rgb(212,166,30)" fg:x="88976" fg:w="60"/><text x="24.8113%" y="559.50"></text></g><g><title>btrfs_lookup_dentry (60 samples, 0.02%)</title><rect x="24.5613%" y="533" width="0.0166%" height="15" fill="rgb(249,127,32)" fg:x="88976" fg:w="60"/><text x="24.8113%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (57 samples, 0.02%)</title><rect x="24.5621%" y="517" width="0.0157%" height="15" fill="rgb(209,103,0)" fg:x="88979" fg:w="57"/><text x="24.8121%" y="527.50"></text></g><g><title>__lookup_slow (62 samples, 0.02%)</title><rect x="24.5613%" y="565" width="0.0171%" height="15" fill="rgb(238,209,51)" fg:x="88976" fg:w="62"/><text x="24.8113%" y="575.50"></text></g><g><title>filename_lookup (69 samples, 0.02%)</title><rect x="24.5599%" y="613" width="0.0190%" height="15" fill="rgb(237,56,23)" fg:x="88971" fg:w="69"/><text x="24.8099%" y="623.50"></text></g><g><title>path_lookupat (68 samples, 0.02%)</title><rect x="24.5602%" y="597" width="0.0188%" height="15" fill="rgb(215,153,46)" fg:x="88972" fg:w="68"/><text x="24.8102%" y="607.50"></text></g><g><title>walk_component (64 samples, 0.02%)</title><rect x="24.5613%" y="581" width="0.0177%" height="15" fill="rgb(224,49,31)" fg:x="88976" fg:w="64"/><text x="24.8113%" y="591.50"></text></g><g><title>__GI___access (81 samples, 0.02%)</title><rect x="24.5599%" y="677" width="0.0224%" height="15" fill="rgb(250,18,42)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="24.5599%" y="661" width="0.0224%" height="15" fill="rgb(215,176,39)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="671.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="24.5599%" y="645" width="0.0224%" height="15" fill="rgb(223,77,29)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="655.50"></text></g><g><title>do_faccessat (81 samples, 0.02%)</title><rect x="24.5599%" y="629" width="0.0224%" height="15" fill="rgb(234,94,52)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="639.50"></text></g><g><title>llvm::sys::fs::access (84 samples, 0.02%)</title><rect x="24.5599%" y="693" width="0.0232%" height="15" fill="rgb(220,154,50)" fg:x="88971" fg:w="84"/><text x="24.8099%" y="703.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (185 samples, 0.05%)</title><rect x="24.5323%" y="725" width="0.0511%" height="15" fill="rgb(212,11,10)" fg:x="88871" fg:w="185"/><text x="24.7823%" y="735.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (185 samples, 0.05%)</title><rect x="24.5323%" y="709" width="0.0511%" height="15" fill="rgb(205,166,19)" fg:x="88871" fg:w="185"/><text x="24.7823%" y="719.50"></text></g><g><title>clang::driver::Driver::GetProgramPath[abi:cxx11] (51 samples, 0.01%)</title><rect x="24.5834%" y="709" width="0.0141%" height="15" fill="rgb(244,198,16)" fg:x="89056" fg:w="51"/><text x="24.8334%" y="719.50"></text></g><g><title>clang::driver::ToolChain::GetLinkerPath[abi:cxx11] (55 samples, 0.02%)</title><rect x="24.5834%" y="725" width="0.0152%" height="15" fill="rgb(219,69,12)" fg:x="89056" fg:w="55"/><text x="24.8334%" y="735.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (298 samples, 0.08%)</title><rect x="24.5312%" y="741" width="0.0823%" height="15" fill="rgb(245,30,7)" fg:x="88867" fg:w="298"/><text x="24.7812%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobs (395 samples, 0.11%)</title><rect x="24.5047%" y="789" width="0.1090%" height="15" fill="rgb(218,221,48)" fg:x="88771" fg:w="395"/><text x="24.7547%" y="799.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (395 samples, 0.11%)</title><rect x="24.5047%" y="773" width="0.1090%" height="15" fill="rgb(216,66,15)" fg:x="88771" fg:w="395"/><text x="24.7547%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (395 samples, 0.11%)</title><rect x="24.5047%" y="757" width="0.1090%" height="15" fill="rgb(226,122,50)" fg:x="88771" fg:w="395"/><text x="24.7547%" y="767.50"></text></g><g><title>do_filp_open (41 samples, 0.01%)</title><rect x="24.6353%" y="597" width="0.0113%" height="15" fill="rgb(239,156,16)" fg:x="89244" fg:w="41"/><text x="24.8853%" y="607.50"></text></g><g><title>path_openat (41 samples, 0.01%)</title><rect x="24.6353%" y="581" width="0.0113%" height="15" fill="rgb(224,27,38)" fg:x="89244" fg:w="41"/><text x="24.8853%" y="591.50"></text></g><g><title>do_syscall_64 (60 samples, 0.02%)</title><rect x="24.6336%" y="645" width="0.0166%" height="15" fill="rgb(224,39,27)" fg:x="89238" fg:w="60"/><text x="24.8836%" y="655.50"></text></g><g><title>__x64_sys_openat (59 samples, 0.02%)</title><rect x="24.6339%" y="629" width="0.0163%" height="15" fill="rgb(215,92,29)" fg:x="89239" fg:w="59"/><text x="24.8839%" y="639.50"></text></g><g><title>do_sys_openat2 (59 samples, 0.02%)</title><rect x="24.6339%" y="613" width="0.0163%" height="15" fill="rgb(207,159,16)" fg:x="89239" fg:w="59"/><text x="24.8839%" y="623.50"></text></g><g><title>__opendir (63 samples, 0.02%)</title><rect x="24.6336%" y="693" width="0.0174%" height="15" fill="rgb(238,163,47)" fg:x="89238" fg:w="63"/><text x="24.8836%" y="703.50"></text></g><g><title>__GI___open64_nocancel (63 samples, 0.02%)</title><rect x="24.6336%" y="677" width="0.0174%" height="15" fill="rgb(219,91,49)" fg:x="89238" fg:w="63"/><text x="24.8836%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.02%)</title><rect x="24.6336%" y="661" width="0.0174%" height="15" fill="rgb(227,167,31)" fg:x="89238" fg:w="63"/><text x="24.8836%" y="671.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (97 samples, 0.03%)</title><rect x="24.6317%" y="725" width="0.0268%" height="15" fill="rgb(234,80,54)" fg:x="89231" fg:w="97"/><text x="24.8817%" y="735.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (92 samples, 0.03%)</title><rect x="24.6331%" y="709" width="0.0254%" height="15" fill="rgb(212,114,2)" fg:x="89236" fg:w="92"/><text x="24.8831%" y="719.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (178 samples, 0.05%)</title><rect x="24.6160%" y="741" width="0.0491%" height="15" fill="rgb(234,50,24)" fg:x="89174" fg:w="178"/><text x="24.8660%" y="751.50"></text></g><g><title>__btrfs_read_lock_root_node (37 samples, 0.01%)</title><rect x="24.6728%" y="501" width="0.0102%" height="15" fill="rgb(221,68,8)" fg:x="89380" fg:w="37"/><text x="24.9228%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (37 samples, 0.01%)</title><rect x="24.6728%" y="485" width="0.0102%" height="15" fill="rgb(254,180,31)" fg:x="89380" fg:w="37"/><text x="24.9228%" y="495.50"></text></g><g><title>btrfs_search_slot (66 samples, 0.02%)</title><rect x="24.6725%" y="517" width="0.0182%" height="15" fill="rgb(247,130,50)" fg:x="89379" fg:w="66"/><text x="24.9225%" y="527.50"></text></g><g><title>btrfs_lookup (67 samples, 0.02%)</title><rect x="24.6725%" y="565" width="0.0185%" height="15" fill="rgb(211,109,4)" fg:x="89379" fg:w="67"/><text x="24.9225%" y="575.50"></text></g><g><title>btrfs_lookup_dentry (67 samples, 0.02%)</title><rect x="24.6725%" y="549" width="0.0185%" height="15" fill="rgb(238,50,21)" fg:x="89379" fg:w="67"/><text x="24.9225%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (67 samples, 0.02%)</title><rect x="24.6725%" y="533" width="0.0185%" height="15" fill="rgb(225,57,45)" fg:x="89379" fg:w="67"/><text x="24.9225%" y="543.50"></text></g><g><title>__lookup_slow (70 samples, 0.02%)</title><rect x="24.6725%" y="581" width="0.0193%" height="15" fill="rgb(209,196,50)" fg:x="89379" fg:w="70"/><text x="24.9225%" y="591.50"></text></g><g><title>filename_lookup (96 samples, 0.03%)</title><rect x="24.6676%" y="629" width="0.0265%" height="15" fill="rgb(242,140,13)" fg:x="89361" fg:w="96"/><text x="24.9176%" y="639.50"></text></g><g><title>path_lookupat (94 samples, 0.03%)</title><rect x="24.6681%" y="613" width="0.0259%" height="15" fill="rgb(217,111,7)" fg:x="89363" fg:w="94"/><text x="24.9181%" y="623.50"></text></g><g><title>walk_component (78 samples, 0.02%)</title><rect x="24.6725%" y="597" width="0.0215%" height="15" fill="rgb(253,193,51)" fg:x="89379" fg:w="78"/><text x="24.9225%" y="607.50"></text></g><g><title>do_syscall_64 (108 samples, 0.03%)</title><rect x="24.6670%" y="677" width="0.0298%" height="15" fill="rgb(252,70,29)" fg:x="89359" fg:w="108"/><text x="24.9170%" y="687.50"></text></g><g><title>__do_sys_newstat (108 samples, 0.03%)</title><rect x="24.6670%" y="661" width="0.0298%" height="15" fill="rgb(232,127,12)" fg:x="89359" fg:w="108"/><text x="24.9170%" y="671.50"></text></g><g><title>vfs_statx (107 samples, 0.03%)</title><rect x="24.6673%" y="645" width="0.0295%" height="15" fill="rgb(211,180,21)" fg:x="89360" fg:w="107"/><text x="24.9173%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.03%)</title><rect x="24.6667%" y="693" width="0.0304%" height="15" fill="rgb(229,72,13)" fg:x="89358" fg:w="110"/><text x="24.9167%" y="703.50"></text></g><g><title>__GI___xstat (112 samples, 0.03%)</title><rect x="24.6665%" y="709" width="0.0309%" height="15" fill="rgb(240,211,49)" fg:x="89357" fg:w="112"/><text x="24.9165%" y="719.50"></text></g><g><title>llvm::sys::fs::status (118 samples, 0.03%)</title><rect x="24.6659%" y="725" width="0.0326%" height="15" fill="rgb(219,149,40)" fg:x="89355" fg:w="118"/><text x="24.9159%" y="735.50"></text></g><g><title>llvm::vfs::FileSystem::exists (120 samples, 0.03%)</title><rect x="24.6656%" y="741" width="0.0331%" height="15" fill="rgb(210,127,46)" fg:x="89354" fg:w="120"/><text x="24.9156%" y="751.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (309 samples, 0.09%)</title><rect x="24.6146%" y="757" width="0.0853%" height="15" fill="rgb(220,106,7)" fg:x="89169" fg:w="309"/><text x="24.8646%" y="767.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (43 samples, 0.01%)</title><rect x="24.7001%" y="741" width="0.0119%" height="15" fill="rgb(249,31,22)" fg:x="89479" fg:w="43"/><text x="24.9501%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::getInstallationPathCandidates (37 samples, 0.01%)</title><rect x="24.7120%" y="709" width="0.0102%" height="15" fill="rgb(253,1,49)" fg:x="89522" fg:w="37"/><text x="24.9620%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="24.7266%" y="613" width="0.0105%" height="15" fill="rgb(227,144,33)" fg:x="89575" fg:w="38"/><text x="24.9766%" y="623.50"></text></g><g><title>__x64_sys_openat (38 samples, 0.01%)</title><rect x="24.7266%" y="597" width="0.0105%" height="15" fill="rgb(249,163,44)" fg:x="89575" fg:w="38"/><text x="24.9766%" y="607.50"></text></g><g><title>do_sys_openat2 (38 samples, 0.01%)</title><rect x="24.7266%" y="581" width="0.0105%" height="15" fill="rgb(234,15,39)" fg:x="89575" fg:w="38"/><text x="24.9766%" y="591.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (92 samples, 0.03%)</title><rect x="24.7120%" y="741" width="0.0254%" height="15" fill="rgb(207,66,16)" fg:x="89522" fg:w="92"/><text x="24.9620%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (92 samples, 0.03%)</title><rect x="24.7120%" y="725" width="0.0254%" height="15" fill="rgb(233,112,24)" fg:x="89522" fg:w="92"/><text x="24.9620%" y="735.50"></text></g><g><title>llvm::vfs::FileSystem::getBufferForFile (43 samples, 0.01%)</title><rect x="24.7255%" y="709" width="0.0119%" height="15" fill="rgb(230,90,22)" fg:x="89571" fg:w="43"/><text x="24.9755%" y="719.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (42 samples, 0.01%)</title><rect x="24.7258%" y="693" width="0.0116%" height="15" fill="rgb(229,61,13)" fg:x="89572" fg:w="42"/><text x="24.9758%" y="703.50"></text></g><g><title>llvm::sys::fs::openFileForRead (42 samples, 0.01%)</title><rect x="24.7258%" y="677" width="0.0116%" height="15" fill="rgb(225,57,24)" fg:x="89572" fg:w="42"/><text x="24.9758%" y="687.50"></text></g><g><title>llvm::sys::fs::openFile (42 samples, 0.01%)</title><rect x="24.7258%" y="661" width="0.0116%" height="15" fill="rgb(208,169,48)" fg:x="89572" fg:w="42"/><text x="24.9758%" y="671.50"></text></g><g><title>__libc_open64 (40 samples, 0.01%)</title><rect x="24.7264%" y="645" width="0.0110%" height="15" fill="rgb(244,218,51)" fg:x="89574" fg:w="40"/><text x="24.9764%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="24.7266%" y="629" width="0.0108%" height="15" fill="rgb(214,148,10)" fg:x="89575" fg:w="39"/><text x="24.9766%" y="639.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (863 samples, 0.24%)</title><rect x="24.5044%" y="805" width="0.2382%" height="15" fill="rgb(225,174,27)" fg:x="88770" fg:w="863"/><text x="24.7544%" y="815.50"></text></g><g><title>clang::driver::Driver::getToolChain (467 samples, 0.13%)</title><rect x="24.6137%" y="789" width="0.1289%" height="15" fill="rgb(230,96,26)" fg:x="89166" fg:w="467"/><text x="24.8637%" y="799.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (467 samples, 0.13%)</title><rect x="24.6137%" y="773" width="0.1289%" height="15" fill="rgb(232,10,30)" fg:x="89166" fg:w="467"/><text x="24.8637%" y="783.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (155 samples, 0.04%)</title><rect x="24.6999%" y="757" width="0.0428%" height="15" fill="rgb(222,8,50)" fg:x="89478" fg:w="155"/><text x="24.9499%" y="767.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (43 samples, 0.01%)</title><rect x="24.7846%" y="581" width="0.0119%" height="15" fill="rgb(213,81,27)" fg:x="89785" fg:w="43"/><text x="25.0346%" y="591.50"></text></g><g><title>llvm::StringMap<clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl<llvm::MallocAllocator, 4096ul, 4096ul, 128ul> >::try_emplace<clang::IdentifierInfo*> (84 samples, 0.02%)</title><rect x="24.7741%" y="597" width="0.0232%" height="15" fill="rgb(245,50,10)" fg:x="89747" fg:w="84"/><text x="25.0241%" y="607.50"></text></g><g><title>clang::IdentifierTable::get (106 samples, 0.03%)</title><rect x="24.7703%" y="613" width="0.0293%" height="15" fill="rgb(216,100,18)" fg:x="89733" fg:w="106"/><text x="25.0203%" y="623.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (152 samples, 0.04%)</title><rect x="24.7578%" y="629" width="0.0420%" height="15" fill="rgb(236,147,54)" fg:x="89688" fg:w="152"/><text x="25.0078%" y="639.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (99 samples, 0.03%)</title><rect x="24.8048%" y="629" width="0.0273%" height="15" fill="rgb(205,143,26)" fg:x="89858" fg:w="99"/><text x="25.0548%" y="639.50"></text></g><g><title>llvm::sys::fs::TempFile::create (38 samples, 0.01%)</title><rect x="24.8324%" y="533" width="0.0105%" height="15" fill="rgb(236,26,9)" fg:x="89958" fg:w="38"/><text x="25.0824%" y="543.50"></text></g><g><title>GetOutputStream (43 samples, 0.01%)</title><rect x="24.8324%" y="597" width="0.0119%" height="15" fill="rgb(221,165,53)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="607.50"></text></g><g><title>clang::CompilerInstance::createDefaultOutputFile (43 samples, 0.01%)</title><rect x="24.8324%" y="581" width="0.0119%" height="15" fill="rgb(214,110,17)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="591.50"></text></g><g><title>clang::CompilerInstance::createOutputFile (43 samples, 0.01%)</title><rect x="24.8324%" y="565" width="0.0119%" height="15" fill="rgb(237,197,12)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="575.50"></text></g><g><title>clang::CompilerInstance::createOutputFileImpl (43 samples, 0.01%)</title><rect x="24.8324%" y="549" width="0.0119%" height="15" fill="rgb(205,84,17)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="559.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (342 samples, 0.09%)</title><rect x="24.7526%" y="645" width="0.0944%" height="15" fill="rgb(237,18,45)" fg:x="89669" fg:w="342"/><text x="25.0026%" y="655.50"></text></g><g><title>clang::FrontendAction::CreateWrappedASTConsumer (54 samples, 0.01%)</title><rect x="24.8321%" y="629" width="0.0149%" height="15" fill="rgb(221,87,14)" fg:x="89957" fg:w="54"/><text x="25.0821%" y="639.50"></text></g><g><title>clang::CodeGenAction::CreateASTConsumer (53 samples, 0.01%)</title><rect x="24.8324%" y="613" width="0.0146%" height="15" fill="rgb(238,186,15)" fg:x="89958" fg:w="53"/><text x="25.0824%" y="623.50"></text></g><g><title>btrfs_del_inode_ref (37 samples, 0.01%)</title><rect x="24.8514%" y="453" width="0.0102%" height="15" fill="rgb(208,115,11)" fg:x="90027" fg:w="37"/><text x="25.1014%" y="463.50"></text></g><g><title>__btrfs_unlink_inode (51 samples, 0.01%)</title><rect x="24.8514%" y="469" width="0.0141%" height="15" fill="rgb(254,175,0)" fg:x="90027" fg:w="51"/><text x="25.1014%" y="479.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (75 samples, 0.02%)</title><rect x="24.8489%" y="613" width="0.0207%" height="15" fill="rgb(227,24,42)" fg:x="90018" fg:w="75"/><text x="25.0989%" y="623.50"></text></g><g><title>llvm::sys::fs::rename (72 samples, 0.02%)</title><rect x="24.8498%" y="597" width="0.0199%" height="15" fill="rgb(223,211,37)" fg:x="90021" fg:w="72"/><text x="25.0998%" y="607.50"></text></g><g><title>rename (70 samples, 0.02%)</title><rect x="24.8503%" y="581" width="0.0193%" height="15" fill="rgb(235,49,27)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.02%)</title><rect x="24.8503%" y="565" width="0.0193%" height="15" fill="rgb(254,97,51)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="575.50"></text></g><g><title>do_syscall_64 (70 samples, 0.02%)</title><rect x="24.8503%" y="549" width="0.0193%" height="15" fill="rgb(249,51,40)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="559.50"></text></g><g><title>__x64_sys_rename (70 samples, 0.02%)</title><rect x="24.8503%" y="533" width="0.0193%" height="15" fill="rgb(210,128,45)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="543.50"></text></g><g><title>do_renameat2 (69 samples, 0.02%)</title><rect x="24.8506%" y="517" width="0.0190%" height="15" fill="rgb(224,137,50)" fg:x="90024" fg:w="69"/><text x="25.1006%" y="527.50"></text></g><g><title>vfs_rename (67 samples, 0.02%)</title><rect x="24.8511%" y="501" width="0.0185%" height="15" fill="rgb(242,15,9)" fg:x="90026" fg:w="67"/><text x="25.1011%" y="511.50"></text></g><g><title>btrfs_rename2 (67 samples, 0.02%)</title><rect x="24.8511%" y="485" width="0.0185%" height="15" fill="rgb(233,187,41)" fg:x="90026" fg:w="67"/><text x="25.1011%" y="495.50"></text></g><g><title>clang::CompilerInstance::clearOutputFiles (77 samples, 0.02%)</title><rect x="24.8487%" y="629" width="0.0213%" height="15" fill="rgb(227,2,29)" fg:x="90017" fg:w="77"/><text x="25.0987%" y="639.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (129 samples, 0.04%)</title><rect x="24.8470%" y="645" width="0.0356%" height="15" fill="rgb(222,70,3)" fg:x="90011" fg:w="129"/><text x="25.0970%" y="655.50"></text></g><g><title>clang::DependencyFileGenerator::outputDependencyFile (46 samples, 0.01%)</title><rect x="24.8699%" y="629" width="0.0127%" height="15" fill="rgb(213,11,42)" fg:x="90094" fg:w="46"/><text x="25.1199%" y="639.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (97 samples, 0.03%)</title><rect x="24.8931%" y="517" width="0.0268%" height="15" fill="rgb(225,150,9)" fg:x="90178" fg:w="97"/><text x="25.1431%" y="527.50"></text></g><g><title>clang::Parser::ConsumeBrace (97 samples, 0.03%)</title><rect x="24.8931%" y="501" width="0.0268%" height="15" fill="rgb(230,162,45)" fg:x="90178" fg:w="97"/><text x="25.1431%" y="511.50"></text></g><g><title>clang::Preprocessor::Lex (97 samples, 0.03%)</title><rect x="24.8931%" y="485" width="0.0268%" height="15" fill="rgb(222,14,52)" fg:x="90178" fg:w="97"/><text x="25.1431%" y="495.50"></text></g><g><title>clang::Lexer::LexTokenInternal (96 samples, 0.03%)</title><rect x="24.8934%" y="469" width="0.0265%" height="15" fill="rgb(254,198,14)" fg:x="90179" fg:w="96"/><text x="25.1434%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleDirective (84 samples, 0.02%)</title><rect x="24.8967%" y="453" width="0.0232%" height="15" fill="rgb(220,217,30)" fg:x="90191" fg:w="84"/><text x="25.1467%" y="463.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (98 samples, 0.03%)</title><rect x="24.8931%" y="533" width="0.0271%" height="15" fill="rgb(215,146,41)" fg:x="90178" fg:w="98"/><text x="25.1431%" y="543.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (106 samples, 0.03%)</title><rect x="24.8928%" y="613" width="0.0293%" height="15" fill="rgb(217,27,36)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (106 samples, 0.03%)</title><rect x="24.8928%" y="597" width="0.0293%" height="15" fill="rgb(219,218,39)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="607.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (106 samples, 0.03%)</title><rect x="24.8928%" y="581" width="0.0293%" height="15" fill="rgb(219,4,42)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaration (106 samples, 0.03%)</title><rect x="24.8928%" y="565" width="0.0293%" height="15" fill="rgb(249,119,36)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="575.50"></text></g><g><title>clang::Parser::ParseNamespace (105 samples, 0.03%)</title><rect x="24.8931%" y="549" width="0.0290%" height="15" fill="rgb(209,23,33)" fg:x="90178" fg:w="105"/><text x="25.1431%" y="559.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (42 samples, 0.01%)</title><rect x="24.9251%" y="533" width="0.0116%" height="15" fill="rgb(211,10,0)" fg:x="90294" fg:w="42"/><text x="25.1751%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (72 samples, 0.02%)</title><rect x="24.9221%" y="597" width="0.0199%" height="15" fill="rgb(208,99,37)" fg:x="90283" fg:w="72"/><text x="25.1721%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (72 samples, 0.02%)</title><rect x="24.9221%" y="581" width="0.0199%" height="15" fill="rgb(213,132,31)" fg:x="90283" fg:w="72"/><text x="25.1721%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (72 samples, 0.02%)</title><rect x="24.9221%" y="565" width="0.0199%" height="15" fill="rgb(243,129,40)" fg:x="90283" fg:w="72"/><text x="25.1721%" y="575.50"></text></g><g><title>clang::Parser::ParseLinkage (68 samples, 0.02%)</title><rect x="24.9232%" y="549" width="0.0188%" height="15" fill="rgb(210,66,33)" fg:x="90287" fg:w="68"/><text x="25.1732%" y="559.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (76 samples, 0.02%)</title><rect x="24.9221%" y="613" width="0.0210%" height="15" fill="rgb(209,189,4)" fg:x="90283" fg:w="76"/><text x="25.1721%" y="623.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (47 samples, 0.01%)</title><rect x="24.9651%" y="549" width="0.0130%" height="15" fill="rgb(214,107,37)" fg:x="90439" fg:w="47"/><text x="25.2151%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (39 samples, 0.01%)</title><rect x="24.9674%" y="533" width="0.0108%" height="15" fill="rgb(245,88,54)" fg:x="90447" fg:w="39"/><text x="25.2174%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (39 samples, 0.01%)</title><rect x="24.9674%" y="517" width="0.0108%" height="15" fill="rgb(205,146,20)" fg:x="90447" fg:w="39"/><text x="25.2174%" y="527.50"></text></g><g><title>clang::Lexer::LexIdentifierContinue (37 samples, 0.01%)</title><rect x="24.9679%" y="501" width="0.0102%" height="15" fill="rgb(220,161,25)" fg:x="90449" fg:w="37"/><text x="25.2179%" y="511.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (72 samples, 0.02%)</title><rect x="24.9781%" y="549" width="0.0199%" height="15" fill="rgb(215,152,15)" fg:x="90486" fg:w="72"/><text x="25.2281%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (160 samples, 0.04%)</title><rect x="24.9616%" y="565" width="0.0442%" height="15" fill="rgb(233,192,44)" fg:x="90426" fg:w="160"/><text x="25.2116%" y="575.50"></text></g><g><title>EvaluateDirectiveSubExpr (42 samples, 0.01%)</title><rect x="25.0146%" y="533" width="0.0116%" height="15" fill="rgb(240,170,46)" fg:x="90618" fg:w="42"/><text x="25.2646%" y="543.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (107 samples, 0.03%)</title><rect x="25.0118%" y="549" width="0.0295%" height="15" fill="rgb(207,104,33)" fg:x="90608" fg:w="107"/><text x="25.2618%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (156 samples, 0.04%)</title><rect x="25.0115%" y="565" width="0.0431%" height="15" fill="rgb(219,21,39)" fg:x="90607" fg:w="156"/><text x="25.2615%" y="575.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (48 samples, 0.01%)</title><rect x="25.0413%" y="549" width="0.0133%" height="15" fill="rgb(214,133,29)" fg:x="90715" fg:w="48"/><text x="25.2913%" y="559.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,203 samples, 0.33%)</title><rect x="24.7501%" y="661" width="0.3321%" height="15" fill="rgb(226,93,6)" fg:x="89660" fg:w="1203"/><text x="25.0001%" y="671.50"></text></g><g><title>clang::FrontendAction::Execute (723 samples, 0.20%)</title><rect x="24.8826%" y="645" width="0.1996%" height="15" fill="rgb(252,222,34)" fg:x="90140" fg:w="723"/><text x="25.1326%" y="655.50"></text></g><g><title>clang::ParseAST (714 samples, 0.20%)</title><rect x="24.8851%" y="629" width="0.1971%" height="15" fill="rgb(252,92,48)" fg:x="90149" fg:w="714"/><text x="25.1351%" y="639.50"></text></g><g><title>clang::Preprocessor::Lex (493 samples, 0.14%)</title><rect x="24.9461%" y="613" width="0.1361%" height="15" fill="rgb(245,223,24)" fg:x="90370" fg:w="493"/><text x="25.1961%" y="623.50"></text></g><g><title>clang::Lexer::LexTokenInternal (488 samples, 0.13%)</title><rect x="24.9475%" y="597" width="0.1347%" height="15" fill="rgb(205,176,3)" fg:x="90375" fg:w="488"/><text x="25.1975%" y="607.50"></text></g><g><title>clang::Preprocessor::HandleDirective (453 samples, 0.13%)</title><rect x="24.9571%" y="581" width="0.1250%" height="15" fill="rgb(235,151,15)" fg:x="90410" fg:w="453"/><text x="25.2071%" y="591.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,240 samples, 0.34%)</title><rect x="24.7496%" y="677" width="0.3423%" height="15" fill="rgb(237,209,11)" fg:x="89658" fg:w="1240"/><text x="24.9996%" y="687.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,295 samples, 0.36%)</title><rect x="24.7427%" y="757" width="0.3575%" height="15" fill="rgb(243,227,24)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="767.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,295 samples, 0.36%)</title><rect x="24.7427%" y="741" width="0.3575%" height="15" fill="rgb(239,193,16)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="751.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (1,295 samples, 0.36%)</title><rect x="24.7427%" y="725" width="0.3575%" height="15" fill="rgb(231,27,9)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="735.50"></text></g><g><title>ExecuteCC1Tool (1,295 samples, 0.36%)</title><rect x="24.7427%" y="709" width="0.3575%" height="15" fill="rgb(219,169,10)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="719.50"></text></g><g><title>cc1_main (1,295 samples, 0.36%)</title><rect x="24.7427%" y="693" width="0.3575%" height="15" fill="rgb(244,229,43)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="703.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,307 samples, 0.36%)</title><rect x="24.7427%" y="805" width="0.3608%" height="15" fill="rgb(254,38,20)" fg:x="89633" fg:w="1307"/><text x="24.9927%" y="815.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,307 samples, 0.36%)</title><rect x="24.7427%" y="789" width="0.3608%" height="15" fill="rgb(250,47,30)" fg:x="89633" fg:w="1307"/><text x="24.9927%" y="799.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,307 samples, 0.36%)</title><rect x="24.7427%" y="773" width="0.3608%" height="15" fill="rgb(224,124,36)" fg:x="89633" fg:w="1307"/><text x="24.9927%" y="783.50"></text></g><g><title>main (2,193 samples, 0.61%)</title><rect x="24.5044%" y="821" width="0.6054%" height="15" fill="rgb(246,68,51)" fg:x="88770" fg:w="2193"/><text x="24.7544%" y="831.50"></text></g><g><title>[unknown] (4,714 samples, 1.30%)</title><rect x="23.8118%" y="837" width="1.3013%" height="15" fill="rgb(253,43,49)" fg:x="86261" fg:w="4714"/><text x="24.0618%" y="847.50"></text></g><g><title>__spawni_child (68 samples, 0.02%)</title><rect x="25.1131%" y="821" width="0.0188%" height="15" fill="rgb(219,54,36)" fg:x="90975" fg:w="68"/><text x="25.3631%" y="831.50"></text></g><g><title>__GI_execve (52 samples, 0.01%)</title><rect x="25.1175%" y="805" width="0.0144%" height="15" fill="rgb(227,133,34)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="25.1175%" y="789" width="0.0144%" height="15" fill="rgb(247,227,15)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="799.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="25.1175%" y="773" width="0.0144%" height="15" fill="rgb(229,96,14)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="783.50"></text></g><g><title>__x64_sys_execve (52 samples, 0.01%)</title><rect x="25.1175%" y="757" width="0.0144%" height="15" fill="rgb(220,79,17)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="767.50"></text></g><g><title>do_execveat_common (52 samples, 0.01%)</title><rect x="25.1175%" y="741" width="0.0144%" height="15" fill="rgb(205,131,53)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.02%)</title><rect x="25.1385%" y="773" width="0.0193%" height="15" fill="rgb(209,50,29)" fg:x="91067" fg:w="70"/><text x="25.3885%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.02%)</title><rect x="25.1393%" y="757" width="0.0185%" height="15" fill="rgb(245,86,46)" fg:x="91070" fg:w="67"/><text x="25.3893%" y="767.50"></text></g><g><title>native_write_msr (67 samples, 0.02%)</title><rect x="25.1393%" y="741" width="0.0185%" height="15" fill="rgb(235,66,46)" fg:x="91070" fg:w="67"/><text x="25.3893%" y="751.50"></text></g><g><title>__GI___clone (164 samples, 0.05%)</title><rect x="25.1131%" y="837" width="0.0453%" height="15" fill="rgb(232,148,31)" fg:x="90975" fg:w="164"/><text x="25.3631%" y="847.50"></text></g><g><title>ret_from_fork (75 samples, 0.02%)</title><rect x="25.1377%" y="821" width="0.0207%" height="15" fill="rgb(217,149,8)" fg:x="91064" fg:w="75"/><text x="25.3877%" y="831.50"></text></g><g><title>schedule_tail (74 samples, 0.02%)</title><rect x="25.1380%" y="805" width="0.0204%" height="15" fill="rgb(209,183,11)" fg:x="91065" fg:w="74"/><text x="25.3880%" y="815.50"></text></g><g><title>finish_task_switch (72 samples, 0.02%)</title><rect x="25.1385%" y="789" width="0.0199%" height="15" fill="rgb(208,55,20)" fg:x="91067" fg:w="72"/><text x="25.3885%" y="799.50"></text></g><g><title>[libstdc++.so.6.0.28] (38 samples, 0.01%)</title><rect x="25.1617%" y="773" width="0.0105%" height="15" fill="rgb(218,39,14)" fg:x="91151" fg:w="38"/><text x="25.4117%" y="783.50"></text></g><g><title>_dl_start_user (45 samples, 0.01%)</title><rect x="25.1617%" y="837" width="0.0124%" height="15" fill="rgb(216,169,33)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="847.50"></text></g><g><title>_dl_init (45 samples, 0.01%)</title><rect x="25.1617%" y="821" width="0.0124%" height="15" fill="rgb(233,80,24)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="831.50"></text></g><g><title>call_init (45 samples, 0.01%)</title><rect x="25.1617%" y="805" width="0.0124%" height="15" fill="rgb(213,179,31)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="815.50"></text></g><g><title>call_init (45 samples, 0.01%)</title><rect x="25.1617%" y="789" width="0.0124%" height="15" fill="rgb(209,19,5)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="799.50"></text></g><g><title>__GI_exit (159 samples, 0.04%)</title><rect x="25.1780%" y="805" width="0.0439%" height="15" fill="rgb(219,18,35)" fg:x="91210" fg:w="159"/><text x="25.4280%" y="815.50"></text></g><g><title>__run_exit_handlers (159 samples, 0.04%)</title><rect x="25.1780%" y="789" width="0.0439%" height="15" fill="rgb(209,169,16)" fg:x="91210" fg:w="159"/><text x="25.4280%" y="799.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (48 samples, 0.01%)</title><rect x="25.4350%" y="789" width="0.0133%" height="15" fill="rgb(245,90,51)" fg:x="92141" fg:w="48"/><text x="25.6850%" y="799.50"></text></g><g><title>polly::initializePollyPasses (41 samples, 0.01%)</title><rect x="25.4369%" y="773" width="0.0113%" height="15" fill="rgb(220,99,45)" fg:x="92148" fg:w="41"/><text x="25.6869%" y="783.50"></text></g><g><title>__libc_csu_init (1,002 samples, 0.28%)</title><rect x="25.2219%" y="805" width="0.2766%" height="15" fill="rgb(249,89,25)" fg:x="91369" fg:w="1002"/><text x="25.4719%" y="815.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (44 samples, 0.01%)</title><rect x="25.5368%" y="757" width="0.0121%" height="15" fill="rgb(239,193,0)" fg:x="92510" fg:w="44"/><text x="25.7868%" y="767.50"></text></g><g><title>clang::driver::Driver::getToolChain (45 samples, 0.01%)</title><rect x="25.5368%" y="773" width="0.0124%" height="15" fill="rgb(231,126,1)" fg:x="92510" fg:w="45"/><text x="25.7868%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (126 samples, 0.03%)</title><rect x="25.5159%" y="789" width="0.0348%" height="15" fill="rgb(243,166,3)" fg:x="92434" fg:w="126"/><text x="25.7659%" y="799.50"></text></g><g><title>clang::driver::CC1Command::Execute (69 samples, 0.02%)</title><rect x="25.5520%" y="741" width="0.0190%" height="15" fill="rgb(223,22,34)" fg:x="92565" fg:w="69"/><text x="25.8020%" y="751.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (69 samples, 0.02%)</title><rect x="25.5520%" y="725" width="0.0190%" height="15" fill="rgb(251,52,51)" fg:x="92565" fg:w="69"/><text x="25.8020%" y="735.50"></text></g><g><title>llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<llvm::Optional<llvm::StringRef> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*, bool*) const::$_1> (67 samples, 0.02%)</title><rect x="25.5526%" y="709" width="0.0185%" height="15" fill="rgb(221,165,28)" fg:x="92567" fg:w="67"/><text x="25.8026%" y="719.50"></text></g><g><title>ExecuteCC1Tool (67 samples, 0.02%)</title><rect x="25.5526%" y="693" width="0.0185%" height="15" fill="rgb(218,121,47)" fg:x="92567" fg:w="67"/><text x="25.8026%" y="703.50"></text></g><g><title>llvm::sys::ExecuteAndWait (41 samples, 0.01%)</title><rect x="25.5716%" y="725" width="0.0113%" height="15" fill="rgb(209,120,9)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="735.50"></text></g><g><title>llvm::sys::Wait (41 samples, 0.01%)</title><rect x="25.5716%" y="709" width="0.0113%" height="15" fill="rgb(236,68,12)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="719.50"></text></g><g><title>__GI___wait4 (41 samples, 0.01%)</title><rect x="25.5716%" y="693" width="0.0113%" height="15" fill="rgb(225,194,26)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="25.5716%" y="677" width="0.0113%" height="15" fill="rgb(231,84,39)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="687.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="25.5716%" y="661" width="0.0113%" height="15" fill="rgb(210,11,45)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="671.50"></text></g><g><title>__do_sys_wait4 (41 samples, 0.01%)</title><rect x="25.5716%" y="645" width="0.0113%" height="15" fill="rgb(224,54,52)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="655.50"></text></g><g><title>kernel_wait4 (41 samples, 0.01%)</title><rect x="25.5716%" y="629" width="0.0113%" height="15" fill="rgb(238,102,14)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="639.50"></text></g><g><title>do_wait (40 samples, 0.01%)</title><rect x="25.5719%" y="613" width="0.0110%" height="15" fill="rgb(243,160,52)" fg:x="92637" fg:w="40"/><text x="25.8219%" y="623.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (114 samples, 0.03%)</title><rect x="25.5520%" y="773" width="0.0315%" height="15" fill="rgb(216,114,19)" fg:x="92565" fg:w="114"/><text x="25.8020%" y="783.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (114 samples, 0.03%)</title><rect x="25.5520%" y="757" width="0.0315%" height="15" fill="rgb(244,166,37)" fg:x="92565" fg:w="114"/><text x="25.8020%" y="767.50"></text></g><g><title>clang::driver::Command::Execute (45 samples, 0.01%)</title><rect x="25.5711%" y="741" width="0.0124%" height="15" fill="rgb(246,29,44)" fg:x="92634" fg:w="45"/><text x="25.8211%" y="751.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (122 samples, 0.03%)</title><rect x="25.5515%" y="789" width="0.0337%" height="15" fill="rgb(215,56,53)" fg:x="92563" fg:w="122"/><text x="25.8015%" y="799.50"></text></g><g><title>[libc-2.31.so] (40 samples, 0.01%)</title><rect x="25.5940%" y="725" width="0.0110%" height="15" fill="rgb(217,60,2)" fg:x="92717" fg:w="40"/><text x="25.8440%" y="735.50"></text></g><g><title>llvm::opt::OptTable::OptTable (78 samples, 0.02%)</title><rect x="25.5893%" y="741" width="0.0215%" height="15" fill="rgb(207,26,24)" fg:x="92700" fg:w="78"/><text x="25.8393%" y="751.50"></text></g><g><title>clang::driver::getDriverOptTable (116 samples, 0.03%)</title><rect x="25.5890%" y="773" width="0.0320%" height="15" fill="rgb(252,210,15)" fg:x="92699" fg:w="116"/><text x="25.8390%" y="783.50"></text></g><g><title>clang::driver::getDriverOptTable (115 samples, 0.03%)</title><rect x="25.5893%" y="757" width="0.0317%" height="15" fill="rgb(253,209,26)" fg:x="92700" fg:w="115"/><text x="25.8393%" y="767.50"></text></g><g><title>llvm::opt::OptTable::addValues (37 samples, 0.01%)</title><rect x="25.6108%" y="741" width="0.0102%" height="15" fill="rgb(238,170,14)" fg:x="92778" fg:w="37"/><text x="25.8608%" y="751.50"></text></g><g><title>clang::driver::getDriverMode (123 samples, 0.03%)</title><rect x="25.5874%" y="789" width="0.0340%" height="15" fill="rgb(216,178,15)" fg:x="92693" fg:w="123"/><text x="25.8374%" y="799.50"></text></g><g><title>llvm::object_deleter<llvm::cl::SubCommand>::call (107 samples, 0.03%)</title><rect x="25.6384%" y="757" width="0.0295%" height="15" fill="rgb(250,197,2)" fg:x="92878" fg:w="107"/><text x="25.8884%" y="767.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (160 samples, 0.04%)</title><rect x="25.6246%" y="789" width="0.0442%" height="15" fill="rgb(212,70,42)" fg:x="92828" fg:w="160"/><text x="25.8746%" y="799.50"></text></g><g><title>llvm::llvm_shutdown (160 samples, 0.04%)</title><rect x="25.6246%" y="773" width="0.0442%" height="15" fill="rgb(227,213,9)" fg:x="92828" fg:w="160"/><text x="25.8746%" y="783.50"></text></g><g><title>llvm::InitializeAllTargets (159 samples, 0.04%)</title><rect x="25.6688%" y="789" width="0.0439%" height="15" fill="rgb(245,99,25)" fg:x="92988" fg:w="159"/><text x="25.9188%" y="799.50"></text></g><g><title>__libc_start_main (1,965 samples, 0.54%)</title><rect x="25.1777%" y="821" width="0.5424%" height="15" fill="rgb(250,82,29)" fg:x="91209" fg:w="1965"/><text x="25.4277%" y="831.50"></text></g><g><title>main (803 samples, 0.22%)</title><rect x="25.4985%" y="805" width="0.2217%" height="15" fill="rgb(241,226,54)" fg:x="92371" fg:w="803"/><text x="25.7485%" y="815.50"></text></g><g><title>__do_munmap (49 samples, 0.01%)</title><rect x="25.7331%" y="533" width="0.0135%" height="15" fill="rgb(221,99,41)" fg:x="93221" fg:w="49"/><text x="25.9831%" y="543.50"></text></g><g><title>mmap_region (86 samples, 0.02%)</title><rect x="25.7328%" y="549" width="0.0237%" height="15" fill="rgb(213,90,21)" fg:x="93220" fg:w="86"/><text x="25.9828%" y="559.50"></text></g><g><title>do_mmap (88 samples, 0.02%)</title><rect x="25.7326%" y="565" width="0.0243%" height="15" fill="rgb(205,208,24)" fg:x="93219" fg:w="88"/><text x="25.9826%" y="575.50"></text></g><g><title>ksys_mmap_pgoff (92 samples, 0.03%)</title><rect x="25.7320%" y="597" width="0.0254%" height="15" fill="rgb(246,31,12)" fg:x="93217" fg:w="92"/><text x="25.9820%" y="607.50"></text></g><g><title>vm_mmap_pgoff (91 samples, 0.03%)</title><rect x="25.7323%" y="581" width="0.0251%" height="15" fill="rgb(213,154,6)" fg:x="93218" fg:w="91"/><text x="25.9823%" y="591.50"></text></g><g><title>do_syscall_64 (94 samples, 0.03%)</title><rect x="25.7320%" y="613" width="0.0259%" height="15" fill="rgb(222,163,29)" fg:x="93217" fg:w="94"/><text x="25.9820%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.03%)</title><rect x="25.7320%" y="629" width="0.0262%" height="15" fill="rgb(227,201,8)" fg:x="93217" fg:w="95"/><text x="25.9820%" y="639.50"></text></g><g><title>_dl_map_segments (111 samples, 0.03%)</title><rect x="25.7279%" y="677" width="0.0306%" height="15" fill="rgb(233,9,32)" fg:x="93202" fg:w="111"/><text x="25.9779%" y="687.50"></text></g><g><title>__mmap64 (97 samples, 0.03%)</title><rect x="25.7317%" y="661" width="0.0268%" height="15" fill="rgb(217,54,24)" fg:x="93216" fg:w="97"/><text x="25.9817%" y="671.50"></text></g><g><title>__mmap64 (97 samples, 0.03%)</title><rect x="25.7317%" y="645" width="0.0268%" height="15" fill="rgb(235,192,0)" fg:x="93216" fg:w="97"/><text x="25.9817%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (149 samples, 0.04%)</title><rect x="25.7268%" y="693" width="0.0411%" height="15" fill="rgb(235,45,9)" fg:x="93198" fg:w="149"/><text x="25.9768%" y="703.50"></text></g><g><title>_dl_catch_exception (211 samples, 0.06%)</title><rect x="25.7234%" y="741" width="0.0582%" height="15" fill="rgb(246,42,40)" fg:x="93186" fg:w="211"/><text x="25.9734%" y="751.50"></text></g><g><title>openaux (211 samples, 0.06%)</title><rect x="25.7234%" y="725" width="0.0582%" height="15" fill="rgb(248,111,24)" fg:x="93186" fg:w="211"/><text x="25.9734%" y="735.50"></text></g><g><title>_dl_map_object (211 samples, 0.06%)</title><rect x="25.7234%" y="709" width="0.0582%" height="15" fill="rgb(249,65,22)" fg:x="93186" fg:w="211"/><text x="25.9734%" y="719.50"></text></g><g><title>_dl_map_object_deps (219 samples, 0.06%)</title><rect x="25.7226%" y="757" width="0.0605%" height="15" fill="rgb(238,111,51)" fg:x="93183" fg:w="219"/><text x="25.9726%" y="767.50"></text></g><g><title>_dl_protect_relro (38 samples, 0.01%)</title><rect x="25.7880%" y="741" width="0.0105%" height="15" fill="rgb(250,118,22)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="751.50"></text></g><g><title>__mprotect (38 samples, 0.01%)</title><rect x="25.7880%" y="725" width="0.0105%" height="15" fill="rgb(234,84,26)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="25.7880%" y="709" width="0.0105%" height="15" fill="rgb(243,172,12)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="25.7880%" y="693" width="0.0105%" height="15" fill="rgb(236,150,49)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="703.50"></text></g><g><title>__x64_sys_mprotect (38 samples, 0.01%)</title><rect x="25.7880%" y="677" width="0.0105%" height="15" fill="rgb(225,197,26)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="687.50"></text></g><g><title>do_mprotect_pkey (38 samples, 0.01%)</title><rect x="25.7880%" y="661" width="0.0105%" height="15" fill="rgb(214,17,42)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="671.50"></text></g><g><title>mprotect_fixup (37 samples, 0.01%)</title><rect x="25.7883%" y="645" width="0.0102%" height="15" fill="rgb(224,165,40)" fg:x="93421" fg:w="37"/><text x="26.0383%" y="655.50"></text></g><g><title>dl_new_hash (78 samples, 0.02%)</title><rect x="25.8449%" y="693" width="0.0215%" height="15" fill="rgb(246,100,4)" fg:x="93626" fg:w="78"/><text x="26.0949%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (296 samples, 0.08%)</title><rect x="25.8416%" y="709" width="0.0817%" height="15" fill="rgb(222,103,0)" fg:x="93614" fg:w="296"/><text x="26.0916%" y="719.50"></text></g><g><title>do_lookup_x (206 samples, 0.06%)</title><rect x="25.8664%" y="693" width="0.0569%" height="15" fill="rgb(227,189,26)" fg:x="93704" fg:w="206"/><text x="26.1164%" y="703.50"></text></g><g><title>kernel_init_free_pages (38 samples, 0.01%)</title><rect x="25.9454%" y="581" width="0.0105%" height="15" fill="rgb(214,202,17)" fg:x="93990" fg:w="38"/><text x="26.1954%" y="591.50"></text></g><g><title>clear_page_erms (38 samples, 0.01%)</title><rect x="25.9454%" y="565" width="0.0105%" height="15" fill="rgb(229,111,3)" fg:x="93990" fg:w="38"/><text x="26.1954%" y="575.50"></text></g><g><title>__alloc_pages_nodemask (60 samples, 0.02%)</title><rect x="25.9396%" y="629" width="0.0166%" height="15" fill="rgb(229,172,15)" fg:x="93969" fg:w="60"/><text x="26.1896%" y="639.50"></text></g><g><title>get_page_from_freelist (54 samples, 0.01%)</title><rect x="25.9412%" y="613" width="0.0149%" height="15" fill="rgb(230,224,35)" fg:x="93975" fg:w="54"/><text x="26.1912%" y="623.50"></text></g><g><title>prep_new_page (39 samples, 0.01%)</title><rect x="25.9454%" y="597" width="0.0108%" height="15" fill="rgb(251,141,6)" fg:x="93990" fg:w="39"/><text x="26.1954%" y="607.50"></text></g><g><title>alloc_pages_vma (61 samples, 0.02%)</title><rect x="25.9396%" y="645" width="0.0168%" height="15" fill="rgb(225,208,6)" fg:x="93969" fg:w="61"/><text x="26.1896%" y="655.50"></text></g><g><title>copy_page (51 samples, 0.01%)</title><rect x="25.9573%" y="645" width="0.0141%" height="15" fill="rgb(246,181,16)" fg:x="94033" fg:w="51"/><text x="26.2073%" y="655.50"></text></g><g><title>finish_fault (37 samples, 0.01%)</title><rect x="25.9746%" y="645" width="0.0102%" height="15" fill="rgb(227,129,36)" fg:x="94096" fg:w="37"/><text x="26.2246%" y="655.50"></text></g><g><title>handle_mm_fault (220 samples, 0.06%)</title><rect x="25.9280%" y="661" width="0.0607%" height="15" fill="rgb(248,117,24)" fg:x="93927" fg:w="220"/><text x="26.1780%" y="671.50"></text></g><g><title>exc_page_fault (238 samples, 0.07%)</title><rect x="25.9239%" y="693" width="0.0657%" height="15" fill="rgb(214,185,35)" fg:x="93912" fg:w="238"/><text x="26.1739%" y="703.50"></text></g><g><title>do_user_addr_fault (234 samples, 0.06%)</title><rect x="25.9250%" y="677" width="0.0646%" height="15" fill="rgb(236,150,34)" fg:x="93916" fg:w="234"/><text x="26.1750%" y="687.50"></text></g><g><title>asm_exc_page_fault (242 samples, 0.07%)</title><rect x="25.9233%" y="709" width="0.0668%" height="15" fill="rgb(243,228,27)" fg:x="93910" fg:w="242"/><text x="26.1733%" y="719.50"></text></g><g><title>elf_machine_rela (671 samples, 0.19%)</title><rect x="25.8115%" y="725" width="0.1852%" height="15" fill="rgb(245,77,44)" fg:x="93505" fg:w="671"/><text x="26.0615%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (731 samples, 0.20%)</title><rect x="25.7985%" y="741" width="0.2018%" height="15" fill="rgb(235,214,42)" fg:x="93458" fg:w="731"/><text x="26.0485%" y="751.50"></text></g><g><title>_dl_relocate_object (774 samples, 0.21%)</title><rect x="25.7875%" y="757" width="0.2137%" height="15" fill="rgb(221,74,3)" fg:x="93418" fg:w="774"/><text x="26.0375%" y="767.50"></text></g><g><title>[ld-2.31.so] (1,026 samples, 0.28%)</title><rect x="25.7204%" y="773" width="0.2832%" height="15" fill="rgb(206,121,29)" fg:x="93175" fg:w="1026"/><text x="25.9704%" y="783.50"></text></g><g><title>_dl_start_final (1,029 samples, 0.28%)</title><rect x="25.7201%" y="805" width="0.2840%" height="15" fill="rgb(249,131,53)" fg:x="93174" fg:w="1029"/><text x="25.9701%" y="815.50"></text></g><g><title>_dl_sysdep_start (1,029 samples, 0.28%)</title><rect x="25.7201%" y="789" width="0.2840%" height="15" fill="rgb(236,170,29)" fg:x="93174" fg:w="1029"/><text x="25.9701%" y="799.50"></text></g><g><title>_dl_start (1,036 samples, 0.29%)</title><rect x="25.7201%" y="821" width="0.2860%" height="15" fill="rgb(247,96,15)" fg:x="93174" fg:w="1036"/><text x="25.9701%" y="831.50"></text></g><g><title>_start (3,006 samples, 0.83%)</title><rect x="25.1777%" y="837" width="0.8298%" height="15" fill="rgb(211,210,7)" fg:x="91209" fg:w="3006"/><text x="25.4277%" y="847.50"></text></g><g><title>asm_exc_page_fault (261 samples, 0.07%)</title><rect x="26.0075%" y="837" width="0.0720%" height="15" fill="rgb(240,88,50)" fg:x="94215" fg:w="261"/><text x="26.2575%" y="847.50"></text></g><g><title>free_unref_page_list (37 samples, 0.01%)</title><rect x="26.1146%" y="693" width="0.0102%" height="15" fill="rgb(209,229,26)" fg:x="94603" fg:w="37"/><text x="26.3646%" y="703.50"></text></g><g><title>tlb_finish_mmu (83 samples, 0.02%)</title><rect x="26.1022%" y="725" width="0.0229%" height="15" fill="rgb(210,68,23)" fg:x="94558" fg:w="83"/><text x="26.3522%" y="735.50"></text></g><g><title>release_pages (67 samples, 0.02%)</title><rect x="26.1066%" y="709" width="0.0185%" height="15" fill="rgb(229,180,13)" fg:x="94574" fg:w="67"/><text x="26.3566%" y="719.50"></text></g><g><title>mark_page_accessed (46 samples, 0.01%)</title><rect x="26.1850%" y="693" width="0.0127%" height="15" fill="rgb(236,53,44)" fg:x="94858" fg:w="46"/><text x="26.4350%" y="703.50"></text></g><g><title>__mod_lruvec_state (44 samples, 0.01%)</title><rect x="26.2264%" y="677" width="0.0121%" height="15" fill="rgb(244,214,29)" fg:x="95008" fg:w="44"/><text x="26.4764%" y="687.50"></text></g><g><title>__mod_memcg_lruvec_state (55 samples, 0.02%)</title><rect x="26.2385%" y="677" width="0.0152%" height="15" fill="rgb(220,75,29)" fg:x="95052" fg:w="55"/><text x="26.4885%" y="687.50"></text></g><g><title>page_remove_rmap (220 samples, 0.06%)</title><rect x="26.1977%" y="693" width="0.0607%" height="15" fill="rgb(214,183,37)" fg:x="94904" fg:w="220"/><text x="26.4477%" y="703.50"></text></g><g><title>free_pages_and_swap_cache (39 samples, 0.01%)</title><rect x="26.2592%" y="677" width="0.0108%" height="15" fill="rgb(239,117,29)" fg:x="95127" fg:w="39"/><text x="26.5092%" y="687.50"></text></g><g><title>tlb_flush_mmu (115 samples, 0.03%)</title><rect x="26.2592%" y="693" width="0.0317%" height="15" fill="rgb(237,171,35)" fg:x="95127" fg:w="115"/><text x="26.5092%" y="703.50"></text></g><g><title>release_pages (76 samples, 0.02%)</title><rect x="26.2700%" y="677" width="0.0210%" height="15" fill="rgb(229,178,53)" fg:x="95166" fg:w="76"/><text x="26.5200%" y="687.50"></text></g><g><title>unmap_page_range (640 samples, 0.18%)</title><rect x="26.1259%" y="709" width="0.1767%" height="15" fill="rgb(210,102,19)" fg:x="94644" fg:w="640"/><text x="26.3759%" y="719.50"></text></g><g><title>mmput (753 samples, 0.21%)</title><rect x="26.0953%" y="757" width="0.2079%" height="15" fill="rgb(235,127,22)" fg:x="94533" fg:w="753"/><text x="26.3453%" y="767.50"></text></g><g><title>exit_mmap (752 samples, 0.21%)</title><rect x="26.0955%" y="741" width="0.2076%" height="15" fill="rgb(244,31,31)" fg:x="94534" fg:w="752"/><text x="26.3455%" y="751.50"></text></g><g><title>unmap_vmas (645 samples, 0.18%)</title><rect x="26.1251%" y="725" width="0.1780%" height="15" fill="rgb(231,43,21)" fg:x="94641" fg:w="645"/><text x="26.3751%" y="735.50"></text></g><g><title>__x64_sys_exit_group (757 samples, 0.21%)</title><rect x="26.0947%" y="805" width="0.2090%" height="15" fill="rgb(217,131,35)" fg:x="94531" fg:w="757"/><text x="26.3447%" y="815.50"></text></g><g><title>do_group_exit (757 samples, 0.21%)</title><rect x="26.0947%" y="789" width="0.2090%" height="15" fill="rgb(221,149,4)" fg:x="94531" fg:w="757"/><text x="26.3447%" y="799.50"></text></g><g><title>do_exit (757 samples, 0.21%)</title><rect x="26.0947%" y="773" width="0.2090%" height="15" fill="rgb(232,170,28)" fg:x="94531" fg:w="757"/><text x="26.3447%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (798 samples, 0.22%)</title><rect x="26.0859%" y="837" width="0.2203%" height="15" fill="rgb(238,56,10)" fg:x="94499" fg:w="798"/><text x="26.3359%" y="847.50"></text></g><g><title>do_syscall_64 (798 samples, 0.22%)</title><rect x="26.0859%" y="821" width="0.2203%" height="15" fill="rgb(235,196,14)" fg:x="94499" fg:w="798"/><text x="26.3359%" y="831.50"></text></g><g><title>clang (9,683 samples, 2.67%)</title><rect x="23.6396%" y="853" width="2.6729%" height="15" fill="rgb(216,45,48)" fg:x="85637" fg:w="9683"/><text x="23.8896%" y="863.50">cl..</text></g><g><title>[perf-985085.map] (119 samples, 0.03%)</title><rect x="26.3202%" y="837" width="0.0328%" height="15" fill="rgb(238,213,17)" fg:x="95348" fg:w="119"/><text x="26.5702%" y="847.50"></text></g><g><title>find-action-loo (136 samples, 0.04%)</title><rect x="26.3202%" y="853" width="0.0375%" height="15" fill="rgb(212,13,2)" fg:x="95348" fg:w="136"/><text x="26.5702%" y="863.50"></text></g><g><title>[perf-985085.map] (66 samples, 0.02%)</title><rect x="26.3606%" y="837" width="0.0182%" height="15" fill="rgb(240,114,20)" fg:x="95494" fg:w="66"/><text x="26.6106%" y="847.50"></text></g><g><title>globbing_pool-0 (82 samples, 0.02%)</title><rect x="26.3578%" y="853" width="0.0226%" height="15" fill="rgb(228,41,40)" fg:x="95484" fg:w="82"/><text x="26.6078%" y="863.50"></text></g><g><title>[perf-985085.map] (106 samples, 0.03%)</title><rect x="26.3854%" y="837" width="0.0293%" height="15" fill="rgb(244,132,35)" fg:x="95584" fg:w="106"/><text x="26.6354%" y="847.50"></text></g><g><title>globbing_pool-1 (132 samples, 0.04%)</title><rect x="26.3804%" y="853" width="0.0364%" height="15" fill="rgb(253,189,4)" fg:x="95566" fg:w="132"/><text x="26.6304%" y="863.50"></text></g><g><title>[perf-985085.map] (112 samples, 0.03%)</title><rect x="26.4271%" y="837" width="0.0309%" height="15" fill="rgb(224,37,19)" fg:x="95735" fg:w="112"/><text x="26.6771%" y="847.50"></text></g><g><title>globbing_pool-2 (165 samples, 0.05%)</title><rect x="26.4169%" y="853" width="0.0455%" height="15" fill="rgb(235,223,18)" fg:x="95698" fg:w="165"/><text x="26.6669%" y="863.50"></text></g><g><title>[perf-985085.map] (94 samples, 0.03%)</title><rect x="26.4682%" y="837" width="0.0259%" height="15" fill="rgb(235,163,25)" fg:x="95884" fg:w="94"/><text x="26.7182%" y="847.50"></text></g><g><title>globbing_pool-3 (120 samples, 0.03%)</title><rect x="26.4624%" y="853" width="0.0331%" height="15" fill="rgb(217,145,28)" fg:x="95863" fg:w="120"/><text x="26.7124%" y="863.50"></text></g><g><title>[perf-985085.map] (90 samples, 0.02%)</title><rect x="26.5005%" y="837" width="0.0248%" height="15" fill="rgb(223,223,32)" fg:x="96001" fg:w="90"/><text x="26.7505%" y="847.50"></text></g><g><title>globbing_pool-4 (202 samples, 0.06%)</title><rect x="26.4955%" y="853" width="0.0558%" height="15" fill="rgb(227,189,39)" fg:x="95983" fg:w="202"/><text x="26.7455%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.03%)</title><rect x="26.5262%" y="837" width="0.0251%" height="15" fill="rgb(248,10,22)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (91 samples, 0.03%)</title><rect x="26.5262%" y="821" width="0.0251%" height="15" fill="rgb(248,46,39)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (91 samples, 0.03%)</title><rect x="26.5262%" y="805" width="0.0251%" height="15" fill="rgb(248,113,48)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="815.50"></text></g><g><title>arch_do_signal (91 samples, 0.03%)</title><rect x="26.5262%" y="789" width="0.0251%" height="15" fill="rgb(245,16,25)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="799.50"></text></g><g><title>get_signal (91 samples, 0.03%)</title><rect x="26.5262%" y="773" width="0.0251%" height="15" fill="rgb(249,152,16)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="783.50"></text></g><g><title>do_group_exit (91 samples, 0.03%)</title><rect x="26.5262%" y="757" width="0.0251%" height="15" fill="rgb(250,16,1)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="767.50"></text></g><g><title>do_exit (91 samples, 0.03%)</title><rect x="26.5262%" y="741" width="0.0251%" height="15" fill="rgb(249,138,3)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="751.50"></text></g><g><title>mmput (91 samples, 0.03%)</title><rect x="26.5262%" y="725" width="0.0251%" height="15" fill="rgb(227,71,41)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="735.50"></text></g><g><title>exit_mmap (91 samples, 0.03%)</title><rect x="26.5262%" y="709" width="0.0251%" height="15" fill="rgb(209,184,23)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="719.50"></text></g><g><title>unmap_vmas (89 samples, 0.02%)</title><rect x="26.5267%" y="693" width="0.0246%" height="15" fill="rgb(223,215,31)" fg:x="96096" fg:w="89"/><text x="26.7767%" y="703.50"></text></g><g><title>unmap_page_range (89 samples, 0.02%)</title><rect x="26.5267%" y="677" width="0.0246%" height="15" fill="rgb(210,146,28)" fg:x="96096" fg:w="89"/><text x="26.7767%" y="687.50"></text></g><g><title>tlb_flush_mmu (54 samples, 0.01%)</title><rect x="26.5364%" y="661" width="0.0149%" height="15" fill="rgb(209,183,41)" fg:x="96131" fg:w="54"/><text x="26.7864%" y="671.50"></text></g><g><title>release_pages (49 samples, 0.01%)</title><rect x="26.5378%" y="645" width="0.0135%" height="15" fill="rgb(209,224,45)" fg:x="96136" fg:w="49"/><text x="26.7878%" y="655.50"></text></g><g><title>[perf-985085.map] (49 samples, 0.01%)</title><rect x="26.5527%" y="837" width="0.0135%" height="15" fill="rgb(224,209,51)" fg:x="96190" fg:w="49"/><text x="26.8027%" y="847.50"></text></g><g><title>globbing_pool-5 (58 samples, 0.02%)</title><rect x="26.5513%" y="853" width="0.0160%" height="15" fill="rgb(223,17,39)" fg:x="96185" fg:w="58"/><text x="26.8013%" y="863.50"></text></g><g><title>globbing_pool-6 (48 samples, 0.01%)</title><rect x="26.5673%" y="853" width="0.0133%" height="15" fill="rgb(234,204,37)" fg:x="96243" fg:w="48"/><text x="26.8173%" y="863.50"></text></g><g><title>[perf-985085.map] (61 samples, 0.02%)</title><rect x="26.5841%" y="837" width="0.0168%" height="15" fill="rgb(236,120,5)" fg:x="96304" fg:w="61"/><text x="26.8341%" y="847.50"></text></g><g><title>globbing_pool-7 (78 samples, 0.02%)</title><rect x="26.5806%" y="853" width="0.0215%" height="15" fill="rgb(248,97,27)" fg:x="96291" fg:w="78"/><text x="26.8306%" y="863.50"></text></g><g><title>[perf-985085.map] (89 samples, 0.02%)</title><rect x="26.6071%" y="837" width="0.0246%" height="15" fill="rgb(240,66,17)" fg:x="96387" fg:w="89"/><text x="26.8571%" y="847.50"></text></g><g><title>globbing_pool-8 (124 samples, 0.03%)</title><rect x="26.6021%" y="853" width="0.0342%" height="15" fill="rgb(210,79,3)" fg:x="96369" fg:w="124"/><text x="26.8521%" y="863.50"></text></g><g><title>[perf-985085.map] (92 samples, 0.03%)</title><rect x="26.6385%" y="837" width="0.0254%" height="15" fill="rgb(214,176,27)" fg:x="96501" fg:w="92"/><text x="26.8885%" y="847.50"></text></g><g><title>globbing_pool-9 (125 samples, 0.03%)</title><rect x="26.6363%" y="853" width="0.0345%" height="15" fill="rgb(235,185,3)" fg:x="96493" fg:w="125"/><text x="26.8863%" y="863.50"></text></g><g><title>[anon] (236 samples, 0.07%)</title><rect x="26.6758%" y="837" width="0.0651%" height="15" fill="rgb(227,24,12)" fg:x="96636" fg:w="236"/><text x="26.9258%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (59 samples, 0.02%)</title><rect x="27.3571%" y="677" width="0.0163%" height="15" fill="rgb(252,169,48)" fg:x="99104" fg:w="59"/><text x="27.6071%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (58 samples, 0.02%)</title><rect x="27.3573%" y="661" width="0.0160%" height="15" fill="rgb(212,65,1)" fg:x="99105" fg:w="58"/><text x="27.6073%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (51 samples, 0.01%)</title><rect x="27.3593%" y="645" width="0.0141%" height="15" fill="rgb(242,39,24)" fg:x="99112" fg:w="51"/><text x="27.6093%" y="655.50"></text></g><g><title>ClassFileParser::ClassFileParser (80 samples, 0.02%)</title><rect x="27.3562%" y="709" width="0.0221%" height="15" fill="rgb(249,32,23)" fg:x="99101" fg:w="80"/><text x="27.6062%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (79 samples, 0.02%)</title><rect x="27.3565%" y="693" width="0.0218%" height="15" fill="rgb(251,195,23)" fg:x="99102" fg:w="79"/><text x="27.6065%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (128 samples, 0.04%)</title><rect x="27.3562%" y="725" width="0.0353%" height="15" fill="rgb(236,174,8)" fg:x="99101" fg:w="128"/><text x="27.6062%" y="735.50"></text></g><g><title>ClassLoader::load_class (139 samples, 0.04%)</title><rect x="27.3535%" y="741" width="0.0384%" height="15" fill="rgb(220,197,8)" fg:x="99091" fg:w="139"/><text x="27.6035%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (152 samples, 0.04%)</title><rect x="27.3532%" y="757" width="0.0420%" height="15" fill="rgb(240,108,37)" fg:x="99090" fg:w="152"/><text x="27.6032%" y="767.50"></text></g><g><title>ConstantPool::klass_at_impl (165 samples, 0.05%)</title><rect x="27.3510%" y="805" width="0.0455%" height="15" fill="rgb(232,176,24)" fg:x="99082" fg:w="165"/><text x="27.6010%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (162 samples, 0.04%)</title><rect x="27.3518%" y="789" width="0.0447%" height="15" fill="rgb(243,35,29)" fg:x="99085" fg:w="162"/><text x="27.6018%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (162 samples, 0.04%)</title><rect x="27.3518%" y="773" width="0.0447%" height="15" fill="rgb(210,37,18)" fg:x="99085" fg:w="162"/><text x="27.6018%" y="783.50"></text></g><g><title>Rewriter::rewrite_bytecodes (40 samples, 0.01%)</title><rect x="27.4250%" y="741" width="0.0110%" height="15" fill="rgb(224,184,40)" fg:x="99350" fg:w="40"/><text x="27.6750%" y="751.50"></text></g><g><title>Rewriter::rewrite (62 samples, 0.02%)</title><rect x="27.4192%" y="773" width="0.0171%" height="15" fill="rgb(236,39,29)" fg:x="99329" fg:w="62"/><text x="27.6692%" y="783.50"></text></g><g><title>Rewriter::Rewriter (61 samples, 0.02%)</title><rect x="27.4195%" y="757" width="0.0168%" height="15" fill="rgb(232,48,39)" fg:x="99330" fg:w="61"/><text x="27.6695%" y="767.50"></text></g><g><title>InstanceKlass::initialize_impl (157 samples, 0.04%)</title><rect x="27.3988%" y="805" width="0.0433%" height="15" fill="rgb(236,34,42)" fg:x="99255" fg:w="157"/><text x="27.6488%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (154 samples, 0.04%)</title><rect x="27.3996%" y="789" width="0.0425%" height="15" fill="rgb(243,106,37)" fg:x="99258" fg:w="154"/><text x="27.6496%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (332 samples, 0.09%)</title><rect x="27.3507%" y="821" width="0.0916%" height="15" fill="rgb(218,96,6)" fg:x="99081" fg:w="332"/><text x="27.6007%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (70 samples, 0.02%)</title><rect x="27.4576%" y="821" width="0.0193%" height="15" fill="rgb(235,130,12)" fg:x="99468" fg:w="70"/><text x="27.7076%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (70 samples, 0.02%)</title><rect x="27.4576%" y="805" width="0.0193%" height="15" fill="rgb(231,95,0)" fg:x="99468" fg:w="70"/><text x="27.7076%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (63 samples, 0.02%)</title><rect x="27.4595%" y="789" width="0.0174%" height="15" fill="rgb(228,12,23)" fg:x="99475" fg:w="63"/><text x="27.7095%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (57 samples, 0.02%)</title><rect x="27.4611%" y="773" width="0.0157%" height="15" fill="rgb(216,12,1)" fg:x="99481" fg:w="57"/><text x="27.7111%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (53 samples, 0.01%)</title><rect x="27.5059%" y="773" width="0.0146%" height="15" fill="rgb(219,59,3)" fg:x="99643" fg:w="53"/><text x="27.7559%" y="783.50"></text></g><g><title>LinkResolver::resolve_field_access (80 samples, 0.02%)</title><rect x="27.4987%" y="789" width="0.0221%" height="15" fill="rgb(215,208,46)" fg:x="99617" fg:w="80"/><text x="27.7487%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (96 samples, 0.03%)</title><rect x="27.4945%" y="805" width="0.0265%" height="15" fill="rgb(254,224,29)" fg:x="99602" fg:w="96"/><text x="27.7445%" y="815.50"></text></g><g><title>ClassLoader::load_class (51 samples, 0.01%)</title><rect x="27.5371%" y="709" width="0.0141%" height="15" fill="rgb(232,14,29)" fg:x="99756" fg:w="51"/><text x="27.7871%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (44 samples, 0.01%)</title><rect x="27.5390%" y="693" width="0.0121%" height="15" fill="rgb(208,45,52)" fg:x="99763" fg:w="44"/><text x="27.7890%" y="703.50"></text></g><g><title>SystemDictionary::load_instance_class (54 samples, 0.01%)</title><rect x="27.5371%" y="725" width="0.0149%" height="15" fill="rgb(234,191,28)" fg:x="99756" fg:w="54"/><text x="27.7871%" y="735.50"></text></g><g><title>ConstantPool::klass_ref_at (77 samples, 0.02%)</title><rect x="27.5310%" y="773" width="0.0213%" height="15" fill="rgb(244,67,43)" fg:x="99734" fg:w="77"/><text x="27.7810%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_fail (68 samples, 0.02%)</title><rect x="27.5335%" y="757" width="0.0188%" height="15" fill="rgb(236,189,24)" fg:x="99743" fg:w="68"/><text x="27.7835%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (65 samples, 0.02%)</title><rect x="27.5343%" y="741" width="0.0179%" height="15" fill="rgb(239,214,33)" fg:x="99746" fg:w="65"/><text x="27.7843%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (43 samples, 0.01%)</title><rect x="27.5608%" y="773" width="0.0119%" height="15" fill="rgb(226,176,41)" fg:x="99842" fg:w="43"/><text x="27.8108%" y="783.50"></text></g><g><title>Rewriter::rewrite (40 samples, 0.01%)</title><rect x="27.5820%" y="725" width="0.0110%" height="15" fill="rgb(248,47,8)" fg:x="99919" fg:w="40"/><text x="27.8320%" y="735.50"></text></g><g><title>Rewriter::Rewriter (40 samples, 0.01%)</title><rect x="27.5820%" y="709" width="0.0110%" height="15" fill="rgb(218,81,44)" fg:x="99919" fg:w="40"/><text x="27.8320%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (85 samples, 0.02%)</title><rect x="27.5727%" y="757" width="0.0235%" height="15" fill="rgb(213,98,6)" fg:x="99885" fg:w="85"/><text x="27.8227%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (85 samples, 0.02%)</title><rect x="27.5727%" y="741" width="0.0235%" height="15" fill="rgb(222,85,22)" fg:x="99885" fg:w="85"/><text x="27.8227%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (103 samples, 0.03%)</title><rect x="27.5727%" y="773" width="0.0284%" height="15" fill="rgb(239,46,39)" fg:x="99885" fg:w="103"/><text x="27.8227%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (265 samples, 0.07%)</title><rect x="27.5293%" y="789" width="0.0732%" height="15" fill="rgb(237,12,29)" fg:x="99728" fg:w="265"/><text x="27.7793%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (309 samples, 0.09%)</title><rect x="27.5210%" y="805" width="0.0853%" height="15" fill="rgb(214,77,8)" fg:x="99698" fg:w="309"/><text x="27.7710%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (52 samples, 0.01%)</title><rect x="27.6063%" y="805" width="0.0144%" height="15" fill="rgb(217,168,37)" fg:x="100007" fg:w="52"/><text x="27.8563%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (51 samples, 0.01%)</title><rect x="27.6066%" y="789" width="0.0141%" height="15" fill="rgb(221,217,23)" fg:x="100008" fg:w="51"/><text x="27.8566%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (51 samples, 0.01%)</title><rect x="27.6066%" y="773" width="0.0141%" height="15" fill="rgb(243,229,36)" fg:x="100008" fg:w="51"/><text x="27.8566%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (467 samples, 0.13%)</title><rect x="27.4932%" y="821" width="0.1289%" height="15" fill="rgb(251,163,40)" fg:x="99597" fg:w="467"/><text x="27.7432%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (37 samples, 0.01%)</title><rect x="27.6221%" y="821" width="0.0102%" height="15" fill="rgb(237,222,12)" fg:x="100064" fg:w="37"/><text x="27.8721%" y="831.50"></text></g><g><title>SymbolTable::add (54 samples, 0.01%)</title><rect x="27.7256%" y="677" width="0.0149%" height="15" fill="rgb(248,132,6)" fg:x="100439" fg:w="54"/><text x="27.9756%" y="687.50"></text></g><g><title>SymbolTable::basic_add (53 samples, 0.01%)</title><rect x="27.7259%" y="661" width="0.0146%" height="15" fill="rgb(227,167,50)" fg:x="100440" fg:w="53"/><text x="27.9759%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (453 samples, 0.13%)</title><rect x="27.7405%" y="677" width="0.1250%" height="15" fill="rgb(242,84,37)" fg:x="100493" fg:w="453"/><text x="27.9905%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (534 samples, 0.15%)</title><rect x="27.7184%" y="693" width="0.1474%" height="15" fill="rgb(212,4,50)" fg:x="100413" fg:w="534"/><text x="27.9684%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool (551 samples, 0.15%)</title><rect x="27.7151%" y="709" width="0.1521%" height="15" fill="rgb(230,228,32)" fg:x="100401" fg:w="551"/><text x="27.9651%" y="719.50"></text></g><g><title>Method::allocate (40 samples, 0.01%)</title><rect x="27.8959%" y="677" width="0.0110%" height="15" fill="rgb(248,217,23)" fg:x="101056" fg:w="40"/><text x="28.1459%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (161 samples, 0.04%)</title><rect x="27.8733%" y="693" width="0.0444%" height="15" fill="rgb(238,197,32)" fg:x="100974" fg:w="161"/><text x="28.1233%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (168 samples, 0.05%)</title><rect x="27.8727%" y="709" width="0.0464%" height="15" fill="rgb(236,106,1)" fg:x="100972" fg:w="168"/><text x="28.1227%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (776 samples, 0.21%)</title><rect x="27.7099%" y="741" width="0.2142%" height="15" fill="rgb(219,228,13)" fg:x="100382" fg:w="776"/><text x="27.9599%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (774 samples, 0.21%)</title><rect x="27.7104%" y="725" width="0.2137%" height="15" fill="rgb(238,30,35)" fg:x="100384" fg:w="774"/><text x="27.9604%" y="735.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (94 samples, 0.03%)</title><rect x="27.9323%" y="693" width="0.0259%" height="15" fill="rgb(236,70,23)" fg:x="101188" fg:w="94"/><text x="28.1823%" y="703.50"></text></g><g><title>DefaultMethods::generate_default_methods (137 samples, 0.04%)</title><rect x="27.9266%" y="709" width="0.0378%" height="15" fill="rgb(249,104,48)" fg:x="101167" fg:w="137"/><text x="28.1766%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (180 samples, 0.05%)</title><rect x="27.9241%" y="725" width="0.0497%" height="15" fill="rgb(254,117,50)" fg:x="101158" fg:w="180"/><text x="28.1741%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (190 samples, 0.05%)</title><rect x="27.9241%" y="741" width="0.0524%" height="15" fill="rgb(223,152,4)" fg:x="101158" fg:w="190"/><text x="28.1741%" y="751.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (58 samples, 0.02%)</title><rect x="27.9765%" y="741" width="0.0160%" height="15" fill="rgb(245,6,2)" fg:x="101348" fg:w="58"/><text x="28.2265%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (1,029 samples, 0.28%)</title><rect x="27.7096%" y="757" width="0.2840%" height="15" fill="rgb(249,150,24)" fg:x="100381" fg:w="1029"/><text x="27.9596%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (1,072 samples, 0.30%)</title><rect x="27.7063%" y="805" width="0.2959%" height="15" fill="rgb(228,185,42)" fg:x="100369" fg:w="1072"/><text x="27.9563%" y="815.50"></text></g><g><title>jvm_define_class_common (1,071 samples, 0.30%)</title><rect x="27.7065%" y="789" width="0.2956%" height="15" fill="rgb(226,39,33)" fg:x="100370" fg:w="1071"/><text x="27.9565%" y="799.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,061 samples, 0.29%)</title><rect x="27.7093%" y="773" width="0.2929%" height="15" fill="rgb(221,166,19)" fg:x="100380" fg:w="1061"/><text x="27.9593%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,113 samples, 0.31%)</title><rect x="27.7060%" y="821" width="0.3072%" height="15" fill="rgb(209,109,2)" fg:x="100368" fg:w="1113"/><text x="27.9560%" y="831.50"></text></g><g><title>ClassLoader::load_class (42 samples, 0.01%)</title><rect x="28.0185%" y="741" width="0.0116%" height="15" fill="rgb(252,216,26)" fg:x="101500" fg:w="42"/><text x="28.2685%" y="751.50"></text></g><g><title>SystemDictionary::resolve_or_null (69 samples, 0.02%)</title><rect x="28.0138%" y="789" width="0.0190%" height="15" fill="rgb(227,173,36)" fg:x="101483" fg:w="69"/><text x="28.2638%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (68 samples, 0.02%)</title><rect x="28.0141%" y="773" width="0.0188%" height="15" fill="rgb(209,90,7)" fg:x="101484" fg:w="68"/><text x="28.2641%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (52 samples, 0.01%)</title><rect x="28.0185%" y="757" width="0.0144%" height="15" fill="rgb(250,194,11)" fg:x="101500" fg:w="52"/><text x="28.2685%" y="767.50"></text></g><g><title>JVM_FindClassFromBootLoader (72 samples, 0.02%)</title><rect x="28.0132%" y="805" width="0.0199%" height="15" fill="rgb(220,72,50)" fg:x="101481" fg:w="72"/><text x="28.2632%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (91 samples, 0.03%)</title><rect x="28.0132%" y="821" width="0.0251%" height="15" fill="rgb(222,106,48)" fg:x="101481" fg:w="91"/><text x="28.2632%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (65 samples, 0.02%)</title><rect x="28.0668%" y="821" width="0.0179%" height="15" fill="rgb(216,220,45)" fg:x="101675" fg:w="65"/><text x="28.3168%" y="831.50"></text></g><g><title>SystemDictionary::parse_stream (62 samples, 0.02%)</title><rect x="28.0676%" y="805" width="0.0171%" height="15" fill="rgb(234,112,18)" fg:x="101678" fg:w="62"/><text x="28.3176%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (43 samples, 0.01%)</title><rect x="28.0729%" y="789" width="0.0119%" height="15" fill="rgb(206,179,9)" fg:x="101697" fg:w="43"/><text x="28.3229%" y="799.50"></text></g><g><title>[perf-985085.map] (4,901 samples, 1.35%)</title><rect x="26.7459%" y="837" width="1.3529%" height="15" fill="rgb(215,115,40)" fg:x="96890" fg:w="4901"/><text x="26.9959%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (47 samples, 0.01%)</title><rect x="28.1112%" y="821" width="0.0130%" height="15" fill="rgb(222,69,34)" fg:x="101836" fg:w="47"/><text x="28.3612%" y="831.50"></text></g><g><title>new_sync_read (38 samples, 0.01%)</title><rect x="28.1330%" y="693" width="0.0105%" height="15" fill="rgb(209,161,10)" fg:x="101915" fg:w="38"/><text x="28.3830%" y="703.50"></text></g><g><title>ksys_read (47 samples, 0.01%)</title><rect x="28.1314%" y="725" width="0.0130%" height="15" fill="rgb(217,6,38)" fg:x="101909" fg:w="47"/><text x="28.3814%" y="735.50"></text></g><g><title>vfs_read (42 samples, 0.01%)</title><rect x="28.1328%" y="709" width="0.0116%" height="15" fill="rgb(229,229,48)" fg:x="101914" fg:w="42"/><text x="28.3828%" y="719.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="28.1314%" y="741" width="0.0133%" height="15" fill="rgb(225,21,28)" fg:x="101909" fg:w="48"/><text x="28.3814%" y="751.50"></text></g><g><title>handleRead (51 samples, 0.01%)</title><rect x="28.1311%" y="805" width="0.0141%" height="15" fill="rgb(206,33,13)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="815.50"></text></g><g><title>__libc_read (51 samples, 0.01%)</title><rect x="28.1311%" y="789" width="0.0141%" height="15" fill="rgb(242,178,17)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="799.50"></text></g><g><title>__libc_read (51 samples, 0.01%)</title><rect x="28.1311%" y="773" width="0.0141%" height="15" fill="rgb(220,162,5)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="28.1311%" y="757" width="0.0141%" height="15" fill="rgb(210,33,43)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="767.50"></text></g><g><title>readBytes (67 samples, 0.02%)</title><rect x="28.1297%" y="821" width="0.0185%" height="15" fill="rgb(216,116,54)" fg:x="101903" fg:w="67"/><text x="28.3797%" y="831.50"></text></g><g><title>[unknown] (187 samples, 0.05%)</title><rect x="28.0988%" y="837" width="0.0516%" height="15" fill="rgb(249,92,24)" fg:x="101791" fg:w="187"/><text x="28.3488%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (118 samples, 0.03%)</title><rect x="28.1568%" y="773" width="0.0326%" height="15" fill="rgb(231,189,14)" fg:x="102001" fg:w="118"/><text x="28.4068%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (116 samples, 0.03%)</title><rect x="28.1573%" y="757" width="0.0320%" height="15" fill="rgb(230,8,41)" fg:x="102003" fg:w="116"/><text x="28.4073%" y="767.50"></text></g><g><title>native_write_msr (116 samples, 0.03%)</title><rect x="28.1573%" y="741" width="0.0320%" height="15" fill="rgb(249,7,27)" fg:x="102003" fg:w="116"/><text x="28.4073%" y="751.50"></text></g><g><title>ret_from_fork (125 samples, 0.03%)</title><rect x="28.1559%" y="821" width="0.0345%" height="15" fill="rgb(232,86,5)" fg:x="101998" fg:w="125"/><text x="28.4059%" y="831.50"></text></g><g><title>schedule_tail (123 samples, 0.03%)</title><rect x="28.1565%" y="805" width="0.0340%" height="15" fill="rgb(224,175,18)" fg:x="102000" fg:w="123"/><text x="28.4065%" y="815.50"></text></g><g><title>finish_task_switch (123 samples, 0.03%)</title><rect x="28.1565%" y="789" width="0.0340%" height="15" fill="rgb(220,129,12)" fg:x="102000" fg:w="123"/><text x="28.4065%" y="799.50"></text></g><g><title>init_globals (42 samples, 0.01%)</title><rect x="28.1927%" y="757" width="0.0116%" height="15" fill="rgb(210,19,36)" fg:x="102131" fg:w="42"/><text x="28.4427%" y="767.50"></text></g><g><title>JNI_CreateJavaVM (55 samples, 0.02%)</title><rect x="28.1904%" y="789" width="0.0152%" height="15" fill="rgb(219,96,14)" fg:x="102123" fg:w="55"/><text x="28.4404%" y="799.50"></text></g><g><title>Threads::create_vm (55 samples, 0.02%)</title><rect x="28.1904%" y="773" width="0.0152%" height="15" fill="rgb(249,106,1)" fg:x="102123" fg:w="55"/><text x="28.4404%" y="783.50"></text></g><g><title>JavaMain (57 samples, 0.02%)</title><rect x="28.1904%" y="805" width="0.0157%" height="15" fill="rgb(249,155,20)" fg:x="102123" fg:w="57"/><text x="28.4404%" y="815.50"></text></g><g><title>__GI___clone (271 samples, 0.07%)</title><rect x="28.1507%" y="837" width="0.0748%" height="15" fill="rgb(244,168,9)" fg:x="101979" fg:w="271"/><text x="28.4007%" y="847.50"></text></g><g><title>start_thread (127 samples, 0.04%)</title><rect x="28.1904%" y="821" width="0.0351%" height="15" fill="rgb(216,23,50)" fg:x="102123" fg:w="127"/><text x="28.4404%" y="831.50"></text></g><g><title>thread_native_entry (67 samples, 0.02%)</title><rect x="28.2070%" y="805" width="0.0185%" height="15" fill="rgb(224,219,20)" fg:x="102183" fg:w="67"/><text x="28.4570%" y="815.50"></text></g><g><title>java (5,667 samples, 1.56%)</title><rect x="26.6708%" y="853" width="1.5643%" height="15" fill="rgb(222,156,15)" fg:x="96618" fg:w="5667"/><text x="26.9208%" y="863.50"></text></g><g><title>[[heap]] (133 samples, 0.04%)</title><rect x="28.2352%" y="837" width="0.0367%" height="15" fill="rgb(231,97,17)" fg:x="102285" fg:w="133"/><text x="28.4852%" y="847.50"></text></g><g><title>[[stack]] (85 samples, 0.02%)</title><rect x="28.2719%" y="837" width="0.0235%" height="15" fill="rgb(218,70,48)" fg:x="102418" fg:w="85"/><text x="28.5219%" y="847.50"></text></g><g><title>[anon] (45 samples, 0.01%)</title><rect x="28.2953%" y="837" width="0.0124%" height="15" fill="rgb(212,196,52)" fg:x="102503" fg:w="45"/><text x="28.5453%" y="847.50"></text></g><g><title>copy_process (71 samples, 0.02%)</title><rect x="28.3207%" y="741" width="0.0196%" height="15" fill="rgb(243,203,18)" fg:x="102595" fg:w="71"/><text x="28.5707%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="28.3207%" y="805" width="0.0240%" height="15" fill="rgb(252,125,41)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="815.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="28.3207%" y="789" width="0.0240%" height="15" fill="rgb(223,180,33)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="799.50"></text></g><g><title>__do_sys_clone (87 samples, 0.02%)</title><rect x="28.3207%" y="773" width="0.0240%" height="15" fill="rgb(254,159,46)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="783.50"></text></g><g><title>kernel_clone (87 samples, 0.02%)</title><rect x="28.3207%" y="757" width="0.0240%" height="15" fill="rgb(254,38,10)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="767.50"></text></g><g><title>__GI___clone (89 samples, 0.02%)</title><rect x="28.3205%" y="821" width="0.0246%" height="15" fill="rgb(208,217,32)" fg:x="102594" fg:w="89"/><text x="28.5705%" y="831.50"></text></g><g><title>[unknown] (376 samples, 0.10%)</title><rect x="28.3172%" y="837" width="0.1038%" height="15" fill="rgb(221,120,13)" fg:x="102582" fg:w="376"/><text x="28.5672%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (371 samples, 0.10%)</title><rect x="28.4301%" y="773" width="0.1024%" height="15" fill="rgb(246,54,52)" fg:x="102991" fg:w="371"/><text x="28.6801%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (364 samples, 0.10%)</title><rect x="28.4320%" y="757" width="0.1005%" height="15" fill="rgb(242,34,25)" fg:x="102998" fg:w="364"/><text x="28.6820%" y="767.50"></text></g><g><title>native_write_msr (364 samples, 0.10%)</title><rect x="28.4320%" y="741" width="0.1005%" height="15" fill="rgb(247,209,9)" fg:x="102998" fg:w="364"/><text x="28.6820%" y="751.50"></text></g><g><title>schedule_tail (391 samples, 0.11%)</title><rect x="28.4273%" y="805" width="0.1079%" height="15" fill="rgb(228,71,26)" fg:x="102981" fg:w="391"/><text x="28.6773%" y="815.50"></text></g><g><title>finish_task_switch (390 samples, 0.11%)</title><rect x="28.4276%" y="789" width="0.1077%" height="15" fill="rgb(222,145,49)" fg:x="102982" fg:w="390"/><text x="28.6776%" y="799.50"></text></g><g><title>ret_from_fork (415 samples, 0.11%)</title><rect x="28.4229%" y="821" width="0.1146%" height="15" fill="rgb(218,121,17)" fg:x="102965" fg:w="415"/><text x="28.6729%" y="831.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="28.5631%" y="613" width="0.0146%" height="15" fill="rgb(244,50,7)" fg:x="103473" fg:w="53"/><text x="28.8131%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.01%)</title><rect x="28.5637%" y="597" width="0.0141%" height="15" fill="rgb(246,229,37)" fg:x="103475" fg:w="51"/><text x="28.8137%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.01%)</title><rect x="28.5639%" y="581" width="0.0138%" height="15" fill="rgb(225,18,5)" fg:x="103476" fg:w="50"/><text x="28.8139%" y="591.50"></text></g><g><title>native_write_msr (49 samples, 0.01%)</title><rect x="28.5642%" y="565" width="0.0135%" height="15" fill="rgb(213,204,8)" fg:x="103477" fg:w="49"/><text x="28.8142%" y="575.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.03%)</title><rect x="28.5573%" y="661" width="0.0273%" height="15" fill="rgb(238,103,6)" fg:x="103452" fg:w="99"/><text x="28.8073%" y="671.50"></text></g><g><title>schedule (97 samples, 0.03%)</title><rect x="28.5579%" y="645" width="0.0268%" height="15" fill="rgb(222,25,35)" fg:x="103454" fg:w="97"/><text x="28.8079%" y="655.50"></text></g><g><title>__schedule (95 samples, 0.03%)</title><rect x="28.5584%" y="629" width="0.0262%" height="15" fill="rgb(213,203,35)" fg:x="103456" fg:w="95"/><text x="28.8084%" y="639.50"></text></g><g><title>__x64_sys_futex (118 samples, 0.03%)</title><rect x="28.5557%" y="709" width="0.0326%" height="15" fill="rgb(221,79,53)" fg:x="103446" fg:w="118"/><text x="28.8057%" y="719.50"></text></g><g><title>do_futex (116 samples, 0.03%)</title><rect x="28.5562%" y="693" width="0.0320%" height="15" fill="rgb(243,200,35)" fg:x="103448" fg:w="116"/><text x="28.8062%" y="703.50"></text></g><g><title>futex_wait (114 samples, 0.03%)</title><rect x="28.5568%" y="677" width="0.0315%" height="15" fill="rgb(248,60,25)" fg:x="103450" fg:w="114"/><text x="28.8068%" y="687.50"></text></g><g><title>do_syscall_64 (121 samples, 0.03%)</title><rect x="28.5557%" y="725" width="0.0334%" height="15" fill="rgb(227,53,46)" fg:x="103446" fg:w="121"/><text x="28.8057%" y="735.50"></text></g><g><title>__GI___pthread_mutex_lock (159 samples, 0.04%)</title><rect x="28.5457%" y="773" width="0.0439%" height="15" fill="rgb(216,120,32)" fg:x="103410" fg:w="159"/><text x="28.7957%" y="783.50"></text></g><g><title>__lll_lock_wait (130 samples, 0.04%)</title><rect x="28.5537%" y="757" width="0.0359%" height="15" fill="rgb(220,134,1)" fg:x="103439" fg:w="130"/><text x="28.8037%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (124 samples, 0.03%)</title><rect x="28.5554%" y="741" width="0.0342%" height="15" fill="rgb(237,168,5)" fg:x="103445" fg:w="124"/><text x="28.8054%" y="751.50"></text></g><g><title>__x64_sys_futex (151 samples, 0.04%)</title><rect x="28.6037%" y="725" width="0.0417%" height="15" fill="rgb(231,100,33)" fg:x="103620" fg:w="151"/><text x="28.8537%" y="735.50"></text></g><g><title>do_futex (150 samples, 0.04%)</title><rect x="28.6040%" y="709" width="0.0414%" height="15" fill="rgb(236,177,47)" fg:x="103621" fg:w="150"/><text x="28.8540%" y="719.50"></text></g><g><title>futex_wake (149 samples, 0.04%)</title><rect x="28.6042%" y="693" width="0.0411%" height="15" fill="rgb(235,7,49)" fg:x="103622" fg:w="149"/><text x="28.8542%" y="703.50"></text></g><g><title>wake_up_q (108 samples, 0.03%)</title><rect x="28.6156%" y="677" width="0.0298%" height="15" fill="rgb(232,119,22)" fg:x="103663" fg:w="108"/><text x="28.8656%" y="687.50"></text></g><g><title>try_to_wake_up (105 samples, 0.03%)</title><rect x="28.6164%" y="661" width="0.0290%" height="15" fill="rgb(254,73,53)" fg:x="103666" fg:w="105"/><text x="28.8664%" y="671.50"></text></g><g><title>do_syscall_64 (155 samples, 0.04%)</title><rect x="28.6029%" y="741" width="0.0428%" height="15" fill="rgb(251,35,20)" fg:x="103617" fg:w="155"/><text x="28.8529%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.05%)</title><rect x="28.6015%" y="757" width="0.0458%" height="15" fill="rgb(241,119,20)" fg:x="103612" fg:w="166"/><text x="28.8515%" y="767.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (210 samples, 0.06%)</title><rect x="28.5904%" y="773" width="0.0580%" height="15" fill="rgb(207,102,14)" fg:x="103572" fg:w="210"/><text x="28.8404%" y="783.50"></text></g><g><title>__GI___libc_malloc (106 samples, 0.03%)</title><rect x="28.6603%" y="741" width="0.0293%" height="15" fill="rgb(248,201,50)" fg:x="103825" fg:w="106"/><text x="28.9103%" y="751.50"></text></g><g><title>tcache_init (69 samples, 0.02%)</title><rect x="28.6705%" y="725" width="0.0190%" height="15" fill="rgb(222,185,44)" fg:x="103862" fg:w="69"/><text x="28.9205%" y="735.50"></text></g><g><title>tcache_init (68 samples, 0.02%)</title><rect x="28.6708%" y="709" width="0.0188%" height="15" fill="rgb(218,107,18)" fg:x="103863" fg:w="68"/><text x="28.9208%" y="719.50"></text></g><g><title>arena_get2 (68 samples, 0.02%)</title><rect x="28.6708%" y="693" width="0.0188%" height="15" fill="rgb(237,177,39)" fg:x="103863" fg:w="68"/><text x="28.9208%" y="703.50"></text></g><g><title>arena_get2 (68 samples, 0.02%)</title><rect x="28.6708%" y="677" width="0.0188%" height="15" fill="rgb(246,69,6)" fg:x="103863" fg:w="68"/><text x="28.9208%" y="687.50"></text></g><g><title>_int_new_arena (67 samples, 0.02%)</title><rect x="28.6710%" y="661" width="0.0185%" height="15" fill="rgb(234,208,37)" fg:x="103864" fg:w="67"/><text x="28.9210%" y="671.50"></text></g><g><title>new_heap (57 samples, 0.02%)</title><rect x="28.6738%" y="645" width="0.0157%" height="15" fill="rgb(225,4,6)" fg:x="103874" fg:w="57"/><text x="28.9238%" y="655.50"></text></g><g><title>operator new (111 samples, 0.03%)</title><rect x="28.6603%" y="757" width="0.0306%" height="15" fill="rgb(233,45,0)" fg:x="103825" fg:w="111"/><text x="28.9103%" y="767.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_manager (215 samples, 0.06%)</title><rect x="28.6492%" y="773" width="0.0593%" height="15" fill="rgb(226,136,5)" fg:x="103785" fg:w="215"/><text x="28.8992%" y="783.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_manager (60 samples, 0.02%)</title><rect x="28.6920%" y="757" width="0.0166%" height="15" fill="rgb(211,91,47)" fg:x="103940" fg:w="60"/><text x="28.9420%" y="767.50"></text></g><g><title>std::_Function_handler<void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_invoke (165 samples, 0.05%)</title><rect x="28.7199%" y="757" width="0.0455%" height="15" fill="rgb(242,88,51)" fg:x="104041" fg:w="165"/><text x="28.9699%" y="767.50"></text></g><g><title>llvm::function_ref<void (unsigned long)>::callback_fn<llvm::parallelForEach<lld::elf::Symbol* const*, (anonymous namespace)::Writer<llvm::object::ELFType<(llvm::support::endianness)1, true> >::finalizeSections()::{lambda(lld::elf::Symbol*)#1}>(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer<llvm::object::ELFType<(llvm::support::endianness)1, true> >::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}> (132 samples, 0.04%)</title><rect x="28.7290%" y="741" width="0.0364%" height="15" fill="rgb(230,91,28)" fg:x="104074" fg:w="132"/><text x="28.9790%" y="751.50"></text></g><g><title>lld::elf::computeIsPreemptible (95 samples, 0.03%)</title><rect x="28.7392%" y="725" width="0.0262%" height="15" fill="rgb(254,186,29)" fg:x="104111" fg:w="95"/><text x="28.9892%" y="735.50"></text></g><g><title>std::_Function_handler<void (), llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_invoke (222 samples, 0.06%)</title><rect x="28.7086%" y="773" width="0.0613%" height="15" fill="rgb(238,6,4)" fg:x="104000" fg:w="222"/><text x="28.9586%" y="783.50"></text></g><g><title>ttwu_do_activate (69 samples, 0.02%)</title><rect x="28.8157%" y="581" width="0.0190%" height="15" fill="rgb(221,151,16)" fg:x="104388" fg:w="69"/><text x="29.0657%" y="591.50"></text></g><g><title>do_syscall_64 (183 samples, 0.05%)</title><rect x="28.7889%" y="677" width="0.0505%" height="15" fill="rgb(251,143,52)" fg:x="104291" fg:w="183"/><text x="29.0389%" y="687.50"></text></g><g><title>__x64_sys_futex (181 samples, 0.05%)</title><rect x="28.7895%" y="661" width="0.0500%" height="15" fill="rgb(206,90,15)" fg:x="104293" fg:w="181"/><text x="29.0395%" y="671.50"></text></g><g><title>do_futex (181 samples, 0.05%)</title><rect x="28.7895%" y="645" width="0.0500%" height="15" fill="rgb(218,35,8)" fg:x="104293" fg:w="181"/><text x="29.0395%" y="655.50"></text></g><g><title>futex_wake (178 samples, 0.05%)</title><rect x="28.7903%" y="629" width="0.0491%" height="15" fill="rgb(239,215,6)" fg:x="104296" fg:w="178"/><text x="29.0403%" y="639.50"></text></g><g><title>wake_up_q (155 samples, 0.04%)</title><rect x="28.7966%" y="613" width="0.0428%" height="15" fill="rgb(245,116,39)" fg:x="104319" fg:w="155"/><text x="29.0466%" y="623.50"></text></g><g><title>try_to_wake_up (152 samples, 0.04%)</title><rect x="28.7975%" y="597" width="0.0420%" height="15" fill="rgb(242,65,28)" fg:x="104322" fg:w="152"/><text x="29.0475%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.05%)</title><rect x="28.7889%" y="693" width="0.0511%" height="15" fill="rgb(252,132,53)" fg:x="104291" fg:w="185"/><text x="29.0389%" y="703.50"></text></g><g><title>__condvar_dec_grefs (215 samples, 0.06%)</title><rect x="28.7809%" y="725" width="0.0593%" height="15" fill="rgb(224,159,50)" fg:x="104262" fg:w="215"/><text x="29.0309%" y="735.50"></text></g><g><title>futex_wake (189 samples, 0.05%)</title><rect x="28.7881%" y="709" width="0.0522%" height="15" fill="rgb(224,93,4)" fg:x="104288" fg:w="189"/><text x="29.0381%" y="719.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.02%)</title><rect x="28.8530%" y="677" width="0.0179%" height="15" fill="rgb(208,81,34)" fg:x="104523" fg:w="65"/><text x="29.1030%" y="687.50"></text></g><g><title>do_futex (63 samples, 0.02%)</title><rect x="28.8535%" y="661" width="0.0174%" height="15" fill="rgb(233,92,54)" fg:x="104525" fg:w="63"/><text x="29.1035%" y="671.50"></text></g><g><title>futex_wake (58 samples, 0.02%)</title><rect x="28.8549%" y="645" width="0.0160%" height="15" fill="rgb(237,21,14)" fg:x="104530" fg:w="58"/><text x="29.1049%" y="655.50"></text></g><g><title>do_syscall_64 (71 samples, 0.02%)</title><rect x="28.8521%" y="693" width="0.0196%" height="15" fill="rgb(249,128,51)" fg:x="104520" fg:w="71"/><text x="29.1021%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="28.8513%" y="709" width="0.0218%" height="15" fill="rgb(223,129,24)" fg:x="104517" fg:w="79"/><text x="29.1013%" y="719.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (102 samples, 0.03%)</title><rect x="28.8452%" y="725" width="0.0282%" height="15" fill="rgb(231,168,25)" fg:x="104495" fg:w="102"/><text x="29.0952%" y="735.50"></text></g><g><title>__pthread_disable_asynccancel (40 samples, 0.01%)</title><rect x="28.8784%" y="709" width="0.0110%" height="15" fill="rgb(224,39,20)" fg:x="104615" fg:w="40"/><text x="29.1284%" y="719.50"></text></g><g><title>__perf_event_task_sched_out (51 samples, 0.01%)</title><rect x="28.9617%" y="581" width="0.0141%" height="15" fill="rgb(225,152,53)" fg:x="104917" fg:w="51"/><text x="29.2117%" y="591.50"></text></g><g><title>update_curr (59 samples, 0.02%)</title><rect x="29.0040%" y="549" width="0.0163%" height="15" fill="rgb(252,17,24)" fg:x="105070" fg:w="59"/><text x="29.2540%" y="559.50"></text></g><g><title>dequeue_entity (177 samples, 0.05%)</title><rect x="28.9915%" y="565" width="0.0489%" height="15" fill="rgb(250,114,30)" fg:x="105025" fg:w="177"/><text x="29.2415%" y="575.50"></text></g><g><title>update_load_avg (73 samples, 0.02%)</title><rect x="29.0202%" y="549" width="0.0202%" height="15" fill="rgb(229,5,4)" fg:x="105129" fg:w="73"/><text x="29.2702%" y="559.50"></text></g><g><title>dequeue_task_fair (231 samples, 0.06%)</title><rect x="28.9844%" y="581" width="0.0638%" height="15" fill="rgb(225,176,49)" fg:x="104999" fg:w="231"/><text x="29.2344%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (2,022 samples, 0.56%)</title><rect x="29.0650%" y="565" width="0.5582%" height="15" fill="rgb(224,221,49)" fg:x="105291" fg:w="2022"/><text x="29.3150%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,976 samples, 0.55%)</title><rect x="29.0777%" y="549" width="0.5455%" height="15" fill="rgb(253,169,27)" fg:x="105337" fg:w="1976"/><text x="29.3277%" y="559.50"></text></g><g><title>native_write_msr (1,962 samples, 0.54%)</title><rect x="29.0815%" y="533" width="0.5416%" height="15" fill="rgb(211,206,16)" fg:x="105351" fg:w="1962"/><text x="29.3315%" y="543.50"></text></g><g><title>finish_task_switch (2,127 samples, 0.59%)</title><rect x="29.0481%" y="581" width="0.5871%" height="15" fill="rgb(244,87,35)" fg:x="105230" fg:w="2127"/><text x="29.2981%" y="591.50"></text></g><g><title>pick_next_task_fair (57 samples, 0.02%)</title><rect x="29.6353%" y="581" width="0.0157%" height="15" fill="rgb(246,28,10)" fg:x="107357" fg:w="57"/><text x="29.8853%" y="591.50"></text></g><g><title>psi_task_change (195 samples, 0.05%)</title><rect x="29.6604%" y="581" width="0.0538%" height="15" fill="rgb(229,12,44)" fg:x="107448" fg:w="195"/><text x="29.9104%" y="591.50"></text></g><g><title>psi_group_change (173 samples, 0.05%)</title><rect x="29.6665%" y="565" width="0.0478%" height="15" fill="rgb(210,145,37)" fg:x="107470" fg:w="173"/><text x="29.9165%" y="575.50"></text></g><g><title>record_times (48 samples, 0.01%)</title><rect x="29.7010%" y="549" width="0.0133%" height="15" fill="rgb(227,112,52)" fg:x="107595" fg:w="48"/><text x="29.9510%" y="559.50"></text></g><g><title>psi_task_switch (50 samples, 0.01%)</title><rect x="29.7142%" y="581" width="0.0138%" height="15" fill="rgb(238,155,34)" fg:x="107643" fg:w="50"/><text x="29.9642%" y="591.50"></text></g><g><title>psi_group_change (39 samples, 0.01%)</title><rect x="29.7172%" y="565" width="0.0108%" height="15" fill="rgb(239,226,36)" fg:x="107654" fg:w="39"/><text x="29.9672%" y="575.50"></text></g><g><title>futex_wait_queue_me (2,935 samples, 0.81%)</title><rect x="28.9272%" y="629" width="0.8102%" height="15" fill="rgb(230,16,23)" fg:x="104792" fg:w="2935"/><text x="29.1772%" y="639.50"></text></g><g><title>schedule (2,878 samples, 0.79%)</title><rect x="28.9429%" y="613" width="0.7945%" height="15" fill="rgb(236,171,36)" fg:x="104849" fg:w="2878"/><text x="29.1929%" y="623.50"></text></g><g><title>__schedule (2,861 samples, 0.79%)</title><rect x="28.9476%" y="597" width="0.7898%" height="15" fill="rgb(221,22,14)" fg:x="104866" fg:w="2861"/><text x="29.1976%" y="607.50"></text></g><g><title>do_syscall_64 (3,101 samples, 0.86%)</title><rect x="28.9018%" y="693" width="0.8560%" height="15" fill="rgb(242,43,11)" fg:x="104700" fg:w="3101"/><text x="29.1518%" y="703.50"></text></g><g><title>__x64_sys_futex (3,087 samples, 0.85%)</title><rect x="28.9057%" y="677" width="0.8521%" height="15" fill="rgb(232,69,23)" fg:x="104714" fg:w="3087"/><text x="29.1557%" y="687.50"></text></g><g><title>do_futex (3,073 samples, 0.85%)</title><rect x="28.9095%" y="661" width="0.8483%" height="15" fill="rgb(216,180,54)" fg:x="104728" fg:w="3073"/><text x="29.1595%" y="671.50"></text></g><g><title>futex_wait (3,051 samples, 0.84%)</title><rect x="28.9156%" y="645" width="0.8422%" height="15" fill="rgb(216,5,24)" fg:x="104750" fg:w="3051"/><text x="29.1656%" y="655.50"></text></g><g><title>futex_wait_setup (74 samples, 0.02%)</title><rect x="29.7374%" y="629" width="0.0204%" height="15" fill="rgb(225,89,9)" fg:x="107727" fg:w="74"/><text x="29.9874%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,220 samples, 0.89%)</title><rect x="28.8991%" y="709" width="0.8889%" height="15" fill="rgb(243,75,33)" fg:x="104690" fg:w="3220"/><text x="29.1491%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (109 samples, 0.03%)</title><rect x="29.7578%" y="693" width="0.0301%" height="15" fill="rgb(247,141,45)" fg:x="107801" fg:w="109"/><text x="30.0078%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (106 samples, 0.03%)</title><rect x="29.7587%" y="677" width="0.0293%" height="15" fill="rgb(232,177,36)" fg:x="107804" fg:w="106"/><text x="30.0087%" y="687.50"></text></g><g><title>switch_fpu_return (97 samples, 0.03%)</title><rect x="29.7611%" y="661" width="0.0268%" height="15" fill="rgb(219,125,36)" fg:x="107813" fg:w="97"/><text x="30.0111%" y="671.50"></text></g><g><title>copy_kernel_to_fpregs (77 samples, 0.02%)</title><rect x="29.7667%" y="645" width="0.0213%" height="15" fill="rgb(227,94,9)" fg:x="107833" fg:w="77"/><text x="30.0167%" y="655.50"></text></g><g><title>__pthread_cond_wait (3,701 samples, 1.02%)</title><rect x="28.7710%" y="757" width="1.0216%" height="15" fill="rgb(240,34,52)" fg:x="104226" fg:w="3701"/><text x="29.0210%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (3,700 samples, 1.02%)</title><rect x="28.7712%" y="741" width="1.0214%" height="15" fill="rgb(216,45,12)" fg:x="104227" fg:w="3700"/><text x="29.0212%" y="751.50"></text></g><g><title>futex_wait_cancelable (3,326 samples, 0.92%)</title><rect x="28.8745%" y="725" width="0.9181%" height="15" fill="rgb(246,21,19)" fg:x="104601" fg:w="3326"/><text x="29.1245%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.04%)</title><rect x="29.8133%" y="581" width="0.0433%" height="15" fill="rgb(213,98,42)" fg:x="108002" fg:w="157"/><text x="30.0633%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.04%)</title><rect x="29.8139%" y="565" width="0.0428%" height="15" fill="rgb(250,136,47)" fg:x="108004" fg:w="155"/><text x="30.0639%" y="575.50"></text></g><g><title>native_write_msr (155 samples, 0.04%)</title><rect x="29.8139%" y="549" width="0.0428%" height="15" fill="rgb(251,124,27)" fg:x="108004" fg:w="155"/><text x="30.0639%" y="559.50"></text></g><g><title>finish_task_switch (167 samples, 0.05%)</title><rect x="29.8122%" y="597" width="0.0461%" height="15" fill="rgb(229,180,14)" fg:x="107998" fg:w="167"/><text x="30.0622%" y="607.50"></text></g><g><title>futex_wait_queue_me (220 samples, 0.06%)</title><rect x="29.8025%" y="645" width="0.0607%" height="15" fill="rgb(245,216,25)" fg:x="107963" fg:w="220"/><text x="30.0525%" y="655.50"></text></g><g><title>schedule (215 samples, 0.06%)</title><rect x="29.8039%" y="629" width="0.0593%" height="15" fill="rgb(251,43,5)" fg:x="107968" fg:w="215"/><text x="30.0539%" y="639.50"></text></g><g><title>__schedule (212 samples, 0.06%)</title><rect x="29.8048%" y="613" width="0.0585%" height="15" fill="rgb(250,128,24)" fg:x="107971" fg:w="212"/><text x="30.0548%" y="623.50"></text></g><g><title>__x64_sys_futex (242 samples, 0.07%)</title><rect x="29.8006%" y="693" width="0.0668%" height="15" fill="rgb(217,117,27)" fg:x="107956" fg:w="242"/><text x="30.0506%" y="703.50"></text></g><g><title>do_futex (242 samples, 0.07%)</title><rect x="29.8006%" y="677" width="0.0668%" height="15" fill="rgb(245,147,4)" fg:x="107956" fg:w="242"/><text x="30.0506%" y="687.50"></text></g><g><title>futex_wait (241 samples, 0.07%)</title><rect x="29.8009%" y="661" width="0.0665%" height="15" fill="rgb(242,201,35)" fg:x="107957" fg:w="241"/><text x="30.0509%" y="671.50"></text></g><g><title>do_syscall_64 (247 samples, 0.07%)</title><rect x="29.8001%" y="709" width="0.0682%" height="15" fill="rgb(218,181,1)" fg:x="107954" fg:w="247"/><text x="30.0501%" y="719.50"></text></g><g><title>__pthread_mutex_cond_lock (281 samples, 0.08%)</title><rect x="29.7926%" y="757" width="0.0776%" height="15" fill="rgb(222,6,29)" fg:x="107927" fg:w="281"/><text x="30.0426%" y="767.50"></text></g><g><title>__lll_lock_wait (262 samples, 0.07%)</title><rect x="29.7979%" y="741" width="0.0723%" height="15" fill="rgb(208,186,3)" fg:x="107946" fg:w="262"/><text x="30.0479%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (256 samples, 0.07%)</title><rect x="29.7995%" y="725" width="0.0707%" height="15" fill="rgb(216,36,26)" fg:x="107952" fg:w="256"/><text x="30.0495%" y="735.50"></text></g><g><title>std::condition_variable::wait (3,998 samples, 1.10%)</title><rect x="28.7699%" y="773" width="1.1036%" height="15" fill="rgb(248,201,23)" fg:x="104222" fg:w="3998"/><text x="29.0199%" y="783.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (4,839 samples, 1.34%)</title><rect x="28.5388%" y="789" width="1.3358%" height="15" fill="rgb(251,170,31)" fg:x="103385" fg:w="4839"/><text x="28.7888%" y="799.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (40 samples, 0.01%)</title><rect x="29.8856%" y="757" width="0.0110%" height="15" fill="rgb(207,110,25)" fg:x="108264" fg:w="40"/><text x="30.1356%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (312 samples, 0.09%)</title><rect x="29.9502%" y="549" width="0.0861%" height="15" fill="rgb(250,54,15)" fg:x="108498" fg:w="312"/><text x="30.2002%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (310 samples, 0.09%)</title><rect x="29.9508%" y="533" width="0.0856%" height="15" fill="rgb(227,68,33)" fg:x="108500" fg:w="310"/><text x="30.2008%" y="543.50"></text></g><g><title>native_write_msr (308 samples, 0.09%)</title><rect x="29.9513%" y="517" width="0.0850%" height="15" fill="rgb(238,34,41)" fg:x="108502" fg:w="308"/><text x="30.2013%" y="527.50"></text></g><g><title>finish_task_switch (328 samples, 0.09%)</title><rect x="29.9469%" y="565" width="0.0905%" height="15" fill="rgb(220,11,15)" fg:x="108486" fg:w="328"/><text x="30.1969%" y="575.50"></text></g><g><title>futex_wait_queue_me (444 samples, 0.12%)</title><rect x="29.9317%" y="613" width="0.1226%" height="15" fill="rgb(246,111,35)" fg:x="108431" fg:w="444"/><text x="30.1817%" y="623.50"></text></g><g><title>schedule (438 samples, 0.12%)</title><rect x="29.9334%" y="597" width="0.1209%" height="15" fill="rgb(209,88,53)" fg:x="108437" fg:w="438"/><text x="30.1834%" y="607.50"></text></g><g><title>__schedule (438 samples, 0.12%)</title><rect x="29.9334%" y="581" width="0.1209%" height="15" fill="rgb(231,185,47)" fg:x="108437" fg:w="438"/><text x="30.1834%" y="591.50"></text></g><g><title>__x64_sys_futex (464 samples, 0.13%)</title><rect x="29.9290%" y="661" width="0.1281%" height="15" fill="rgb(233,154,1)" fg:x="108421" fg:w="464"/><text x="30.1790%" y="671.50"></text></g><g><title>do_futex (461 samples, 0.13%)</title><rect x="29.9298%" y="645" width="0.1273%" height="15" fill="rgb(225,15,46)" fg:x="108424" fg:w="461"/><text x="30.1798%" y="655.50"></text></g><g><title>futex_wait (459 samples, 0.13%)</title><rect x="29.9304%" y="629" width="0.1267%" height="15" fill="rgb(211,135,41)" fg:x="108426" fg:w="459"/><text x="30.1804%" y="639.50"></text></g><g><title>do_syscall_64 (468 samples, 0.13%)</title><rect x="29.9281%" y="677" width="0.1292%" height="15" fill="rgb(208,54,0)" fg:x="108418" fg:w="468"/><text x="30.1781%" y="687.50"></text></g><g><title>__pthread_cond_wait (545 samples, 0.15%)</title><rect x="29.9110%" y="741" width="0.1504%" height="15" fill="rgb(244,136,14)" fg:x="108356" fg:w="545"/><text x="30.1610%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (545 samples, 0.15%)</title><rect x="29.9110%" y="725" width="0.1504%" height="15" fill="rgb(241,56,14)" fg:x="108356" fg:w="545"/><text x="30.1610%" y="735.50"></text></g><g><title>futex_wait_cancelable (502 samples, 0.14%)</title><rect x="29.9229%" y="709" width="0.1386%" height="15" fill="rgb(205,80,24)" fg:x="108399" fg:w="502"/><text x="30.1729%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (485 samples, 0.13%)</title><rect x="29.9276%" y="693" width="0.1339%" height="15" fill="rgb(220,57,4)" fg:x="108416" fg:w="485"/><text x="30.1776%" y="703.50"></text></g><g><title>finish_task_switch (37 samples, 0.01%)</title><rect x="30.0642%" y="581" width="0.0102%" height="15" fill="rgb(226,193,50)" fg:x="108911" fg:w="37"/><text x="30.3142%" y="591.50"></text></g><g><title>do_syscall_64 (46 samples, 0.01%)</title><rect x="30.0629%" y="693" width="0.0127%" height="15" fill="rgb(231,168,22)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="703.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.01%)</title><rect x="30.0629%" y="677" width="0.0127%" height="15" fill="rgb(254,215,14)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="687.50"></text></g><g><title>do_futex (46 samples, 0.01%)</title><rect x="30.0629%" y="661" width="0.0127%" height="15" fill="rgb(211,115,16)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="671.50"></text></g><g><title>futex_wait (46 samples, 0.01%)</title><rect x="30.0629%" y="645" width="0.0127%" height="15" fill="rgb(236,210,16)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="655.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.01%)</title><rect x="30.0629%" y="629" width="0.0127%" height="15" fill="rgb(221,94,12)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="639.50"></text></g><g><title>schedule (45 samples, 0.01%)</title><rect x="30.0631%" y="613" width="0.0124%" height="15" fill="rgb(235,218,49)" fg:x="108907" fg:w="45"/><text x="30.3131%" y="623.50"></text></g><g><title>__schedule (44 samples, 0.01%)</title><rect x="30.0634%" y="597" width="0.0121%" height="15" fill="rgb(217,114,14)" fg:x="108908" fg:w="44"/><text x="30.3134%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="30.0626%" y="709" width="0.0135%" height="15" fill="rgb(216,145,22)" fg:x="108905" fg:w="49"/><text x="30.3126%" y="719.50"></text></g><g><title>__pthread_mutex_cond_lock (54 samples, 0.01%)</title><rect x="30.0615%" y="741" width="0.0149%" height="15" fill="rgb(217,112,39)" fg:x="108901" fg:w="54"/><text x="30.3115%" y="751.50"></text></g><g><title>__lll_lock_wait (50 samples, 0.01%)</title><rect x="30.0626%" y="725" width="0.0138%" height="15" fill="rgb(225,85,32)" fg:x="108905" fg:w="50"/><text x="30.3126%" y="735.50"></text></g><g><title>std::condition_variable::wait (601 samples, 0.17%)</title><rect x="29.9110%" y="757" width="0.1659%" height="15" fill="rgb(245,209,47)" fg:x="108356" fg:w="601"/><text x="30.1610%" y="767.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (733 samples, 0.20%)</title><rect x="29.8749%" y="773" width="0.2023%" height="15" fill="rgb(218,220,15)" fg:x="108225" fg:w="733"/><text x="30.1249%" y="783.50"></text></g><g><title>std::thread::_State_impl<std::thread::_Invoker<std::tuple<llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}> > >::_M_run (779 samples, 0.22%)</title><rect x="29.8749%" y="789" width="0.2150%" height="15" fill="rgb(222,202,31)" fg:x="108225" fg:w="779"/><text x="30.1249%" y="799.50"></text></g><g><title>[libstdc++.so.6.0.28] (5,624 samples, 1.55%)</title><rect x="28.5380%" y="805" width="1.5525%" height="15" fill="rgb(243,203,4)" fg:x="103382" fg:w="5624"/><text x="28.7880%" y="815.50"></text></g><g><title>advise_stack_range (37 samples, 0.01%)</title><rect x="30.0976%" y="805" width="0.0102%" height="15" fill="rgb(237,92,17)" fg:x="109032" fg:w="37"/><text x="30.3476%" y="815.50"></text></g><g><title>__GI___clone (6,130 samples, 1.69%)</title><rect x="28.4209%" y="837" width="1.6922%" height="15" fill="rgb(231,119,7)" fg:x="102958" fg:w="6130"/><text x="28.6709%" y="847.50"></text></g><g><title>start_thread (5,708 samples, 1.58%)</title><rect x="28.5374%" y="821" width="1.5757%" height="15" fill="rgb(237,82,41)" fg:x="103380" fg:w="5708"/><text x="28.7874%" y="831.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (42 samples, 0.01%)</title><rect x="30.2332%" y="789" width="0.0116%" height="15" fill="rgb(226,81,48)" fg:x="109523" fg:w="42"/><text x="30.4832%" y="799.50"></text></g><g><title>__libc_csu_init (525 samples, 0.14%)</title><rect x="30.1250%" y="805" width="0.1449%" height="15" fill="rgb(234,70,51)" fg:x="109131" fg:w="525"/><text x="30.3750%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (64 samples, 0.02%)</title><rect x="30.2831%" y="709" width="0.0177%" height="15" fill="rgb(251,86,4)" fg:x="109704" fg:w="64"/><text x="30.5331%" y="719.50"></text></g><g><title>filename_lookup (39 samples, 0.01%)</title><rect x="30.3008%" y="597" width="0.0108%" height="15" fill="rgb(244,144,28)" fg:x="109768" fg:w="39"/><text x="30.5508%" y="607.50"></text></g><g><title>path_lookupat (39 samples, 0.01%)</title><rect x="30.3008%" y="581" width="0.0108%" height="15" fill="rgb(232,161,39)" fg:x="109768" fg:w="39"/><text x="30.5508%" y="591.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="30.3008%" y="629" width="0.0119%" height="15" fill="rgb(247,34,51)" fg:x="109768" fg:w="43"/><text x="30.5508%" y="639.50"></text></g><g><title>do_faccessat (43 samples, 0.01%)</title><rect x="30.3008%" y="613" width="0.0119%" height="15" fill="rgb(225,132,2)" fg:x="109768" fg:w="43"/><text x="30.5508%" y="623.50"></text></g><g><title>findFile[abi:cxx11] (44 samples, 0.01%)</title><rect x="30.3008%" y="693" width="0.0121%" height="15" fill="rgb(209,159,44)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="703.50"></text></g><g><title>llvm::sys::fs::access (44 samples, 0.01%)</title><rect x="30.3008%" y="677" width="0.0121%" height="15" fill="rgb(251,214,1)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="687.50"></text></g><g><title>__GI___access (44 samples, 0.01%)</title><rect x="30.3008%" y="661" width="0.0121%" height="15" fill="rgb(247,84,47)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="30.3008%" y="645" width="0.0121%" height="15" fill="rgb(240,111,43)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (54 samples, 0.01%)</title><rect x="30.3174%" y="485" width="0.0149%" height="15" fill="rgb(215,214,35)" fg:x="109828" fg:w="54"/><text x="30.5674%" y="495.50"></text></g><g><title>btrfs_search_slot (54 samples, 0.01%)</title><rect x="30.3174%" y="469" width="0.0149%" height="15" fill="rgb(248,207,23)" fg:x="109828" fg:w="54"/><text x="30.5674%" y="479.50"></text></g><g><title>btrfs_lookup (55 samples, 0.02%)</title><rect x="30.3174%" y="517" width="0.0152%" height="15" fill="rgb(214,186,4)" fg:x="109828" fg:w="55"/><text x="30.5674%" y="527.50"></text></g><g><title>btrfs_lookup_dentry (55 samples, 0.02%)</title><rect x="30.3174%" y="501" width="0.0152%" height="15" fill="rgb(220,133,22)" fg:x="109828" fg:w="55"/><text x="30.5674%" y="511.50"></text></g><g><title>__lookup_slow (56 samples, 0.02%)</title><rect x="30.3174%" y="533" width="0.0155%" height="15" fill="rgb(239,134,19)" fg:x="109828" fg:w="56"/><text x="30.5674%" y="543.50"></text></g><g><title>filename_lookup (74 samples, 0.02%)</title><rect x="30.3141%" y="581" width="0.0204%" height="15" fill="rgb(250,140,9)" fg:x="109816" fg:w="74"/><text x="30.5641%" y="591.50"></text></g><g><title>path_lookupat (73 samples, 0.02%)</title><rect x="30.3143%" y="565" width="0.0202%" height="15" fill="rgb(225,59,14)" fg:x="109817" fg:w="73"/><text x="30.5643%" y="575.50"></text></g><g><title>walk_component (62 samples, 0.02%)</title><rect x="30.3174%" y="549" width="0.0171%" height="15" fill="rgb(214,152,51)" fg:x="109828" fg:w="62"/><text x="30.5674%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="30.3138%" y="629" width="0.0232%" height="15" fill="rgb(251,227,43)" fg:x="109815" fg:w="84"/><text x="30.5638%" y="639.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="30.3138%" y="613" width="0.0232%" height="15" fill="rgb(241,96,17)" fg:x="109815" fg:w="84"/><text x="30.5638%" y="623.50"></text></g><g><title>do_faccessat (84 samples, 0.02%)</title><rect x="30.3138%" y="597" width="0.0232%" height="15" fill="rgb(234,198,43)" fg:x="109815" fg:w="84"/><text x="30.5638%" y="607.50"></text></g><g><title>__GI___access (88 samples, 0.02%)</title><rect x="30.3132%" y="645" width="0.0243%" height="15" fill="rgb(220,108,29)" fg:x="109813" fg:w="88"/><text x="30.5632%" y="655.50"></text></g><g><title>llvm::sys::fs::access (91 samples, 0.03%)</title><rect x="30.3132%" y="661" width="0.0251%" height="15" fill="rgb(226,163,33)" fg:x="109813" fg:w="91"/><text x="30.5632%" y="671.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (96 samples, 0.03%)</title><rect x="30.3130%" y="693" width="0.0265%" height="15" fill="rgb(205,194,45)" fg:x="109812" fg:w="96"/><text x="30.5630%" y="703.50"></text></g><g><title>findFile[abi:cxx11] (96 samples, 0.03%)</title><rect x="30.3130%" y="677" width="0.0265%" height="15" fill="rgb(206,143,44)" fg:x="109812" fg:w="96"/><text x="30.5630%" y="687.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (141 samples, 0.04%)</title><rect x="30.3008%" y="709" width="0.0389%" height="15" fill="rgb(236,136,36)" fg:x="109768" fg:w="141"/><text x="30.5508%" y="719.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (236 samples, 0.07%)</title><rect x="30.2749%" y="741" width="0.0651%" height="15" fill="rgb(249,172,42)" fg:x="109674" fg:w="236"/><text x="30.5249%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (207 samples, 0.06%)</title><rect x="30.2829%" y="725" width="0.0571%" height="15" fill="rgb(216,139,23)" fg:x="109703" fg:w="207"/><text x="30.5329%" y="735.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::LookupBucketFor<llvm::CachedHashStringRef> (45 samples, 0.01%)</title><rect x="30.3759%" y="677" width="0.0124%" height="15" fill="rgb(207,166,20)" fg:x="110040" fg:w="45"/><text x="30.6259%" y="687.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (157 samples, 0.04%)</title><rect x="30.3513%" y="709" width="0.0433%" height="15" fill="rgb(210,209,22)" fg:x="109951" fg:w="157"/><text x="30.6013%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::insert (148 samples, 0.04%)</title><rect x="30.3538%" y="693" width="0.0409%" height="15" fill="rgb(232,118,20)" fg:x="109960" fg:w="148"/><text x="30.6038%" y="703.50"></text></g><g><title>lld::elf::ArchiveFile::parse (202 samples, 0.06%)</title><rect x="30.3491%" y="725" width="0.0558%" height="15" fill="rgb(238,113,42)" fg:x="109943" fg:w="202"/><text x="30.5991%" y="735.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="30.4143%" y="597" width="0.0108%" height="15" fill="rgb(231,42,5)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="607.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.01%)</title><rect x="30.4143%" y="581" width="0.0108%" height="15" fill="rgb(243,166,24)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="591.50"></text></g><g><title>do_futex (39 samples, 0.01%)</title><rect x="30.4143%" y="565" width="0.0108%" height="15" fill="rgb(237,226,12)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="575.50"></text></g><g><title>futex_wait (39 samples, 0.01%)</title><rect x="30.4143%" y="549" width="0.0108%" height="15" fill="rgb(229,133,24)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="559.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.01%)</title><rect x="30.4143%" y="533" width="0.0108%" height="15" fill="rgb(238,33,43)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="543.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="30.4143%" y="517" width="0.0108%" height="15" fill="rgb(227,59,38)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="527.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="30.4143%" y="501" width="0.0108%" height="15" fill="rgb(230,97,0)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="511.50"></text></g><g><title>finish_task_switch (37 samples, 0.01%)</title><rect x="30.4148%" y="485" width="0.0102%" height="15" fill="rgb(250,173,50)" fg:x="110181" fg:w="37"/><text x="30.6648%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.01%)</title><rect x="30.4148%" y="469" width="0.0102%" height="15" fill="rgb(240,15,50)" fg:x="110181" fg:w="37"/><text x="30.6648%" y="479.50"></text></g><g><title>__GI___pthread_mutex_lock (41 samples, 0.01%)</title><rect x="30.4143%" y="645" width="0.0113%" height="15" fill="rgb(221,93,22)" fg:x="110179" fg:w="41"/><text x="30.6643%" y="655.50"></text></g><g><title>__lll_lock_wait (41 samples, 0.01%)</title><rect x="30.4143%" y="629" width="0.0113%" height="15" fill="rgb(245,180,53)" fg:x="110179" fg:w="41"/><text x="30.6643%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="30.4143%" y="613" width="0.0113%" height="15" fill="rgb(231,88,51)" fg:x="110179" fg:w="41"/><text x="30.6643%" y="623.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (49 samples, 0.01%)</title><rect x="30.4143%" y="661" width="0.0135%" height="15" fill="rgb(240,58,21)" fg:x="110179" fg:w="49"/><text x="30.6643%" y="671.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (115 samples, 0.03%)</title><rect x="30.4143%" y="677" width="0.0317%" height="15" fill="rgb(237,21,10)" fg:x="110179" fg:w="115"/><text x="30.6643%" y="687.50"></text></g><g><title>std::condition_variable::notify_one (65 samples, 0.02%)</title><rect x="30.4281%" y="661" width="0.0179%" height="15" fill="rgb(218,43,11)" fg:x="110229" fg:w="65"/><text x="30.6781%" y="671.50"></text></g><g><title>__pthread_cond_signal (65 samples, 0.02%)</title><rect x="30.4281%" y="645" width="0.0179%" height="15" fill="rgb(218,221,29)" fg:x="110229" fg:w="65"/><text x="30.6781%" y="655.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (146 samples, 0.04%)</title><rect x="30.4121%" y="709" width="0.0403%" height="15" fill="rgb(214,118,42)" fg:x="110171" fg:w="146"/><text x="30.6621%" y="719.50"></text></g><g><title>llvm::parallelForEachN (140 samples, 0.04%)</title><rect x="30.4137%" y="693" width="0.0386%" height="15" fill="rgb(251,200,26)" fg:x="110177" fg:w="140"/><text x="30.6637%" y="703.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (147 samples, 0.04%)</title><rect x="30.4121%" y="725" width="0.0406%" height="15" fill="rgb(237,101,39)" fg:x="110171" fg:w="147"/><text x="30.6621%" y="735.50"></text></g><g><title>lld::elf::SymbolTable::find (54 samples, 0.01%)</title><rect x="30.4570%" y="725" width="0.0149%" height="15" fill="rgb(251,117,11)" fg:x="110334" fg:w="54"/><text x="30.7070%" y="735.50"></text></g><g><title>lld::make<lld::elf::SymbolUnion> (68 samples, 0.02%)</title><rect x="30.5291%" y="661" width="0.0188%" height="15" fill="rgb(216,223,23)" fg:x="110595" fg:w="68"/><text x="30.7791%" y="671.50"></text></g><g><title>handle_mm_fault (37 samples, 0.01%)</title><rect x="30.5617%" y="581" width="0.0102%" height="15" fill="rgb(251,54,12)" fg:x="110713" fg:w="37"/><text x="30.8117%" y="591.50"></text></g><g><title>exc_page_fault (43 samples, 0.01%)</title><rect x="30.5606%" y="613" width="0.0119%" height="15" fill="rgb(254,176,54)" fg:x="110709" fg:w="43"/><text x="30.8106%" y="623.50"></text></g><g><title>do_user_addr_fault (43 samples, 0.01%)</title><rect x="30.5606%" y="597" width="0.0119%" height="15" fill="rgb(210,32,8)" fg:x="110709" fg:w="43"/><text x="30.8106%" y="607.50"></text></g><g><title>asm_exc_page_fault (45 samples, 0.01%)</title><rect x="30.5603%" y="629" width="0.0124%" height="15" fill="rgb(235,52,38)" fg:x="110708" fg:w="45"/><text x="30.8103%" y="639.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::LookupBucketFor<llvm::CachedHashStringRef> (42 samples, 0.01%)</title><rect x="30.5749%" y="629" width="0.0116%" height="15" fill="rgb(231,4,44)" fg:x="110761" fg:w="42"/><text x="30.8249%" y="639.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::InsertIntoBucketImpl<llvm::CachedHashStringRef> (149 samples, 0.04%)</title><rect x="30.5479%" y="661" width="0.0411%" height="15" fill="rgb(249,2,32)" fg:x="110663" fg:w="149"/><text x="30.7979%" y="671.50"></text></g><g><title>llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::grow (144 samples, 0.04%)</title><rect x="30.5492%" y="645" width="0.0398%" height="15" fill="rgb(224,65,26)" fg:x="110668" fg:w="144"/><text x="30.7992%" y="655.50"></text></g><g><title>llvm::DenseMapBase<llvm::DenseMap<llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >, llvm::CachedHashStringRef, int, llvm::DenseMapInfo<llvm::CachedHashStringRef, void>, llvm::detail::DenseMapPair<llvm::CachedHashStringRef, int> >::LookupBucketFor<llvm::CachedHashStringRef> (87 samples, 0.02%)</title><rect x="30.5890%" y="661" width="0.0240%" height="15" fill="rgb(250,73,40)" fg:x="110812" fg:w="87"/><text x="30.8390%" y="671.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (427 samples, 0.12%)</title><rect x="30.5076%" y="693" width="0.1179%" height="15" fill="rgb(253,177,16)" fg:x="110517" fg:w="427"/><text x="30.7576%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::insert (381 samples, 0.11%)</title><rect x="30.5203%" y="677" width="0.1052%" height="15" fill="rgb(217,32,34)" fg:x="110563" fg:w="381"/><text x="30.7703%" y="687.50"></text></g><g><title>llvm::Twine::toVector (79 samples, 0.02%)</title><rect x="30.6315%" y="693" width="0.0218%" height="15" fill="rgb(212,7,10)" fg:x="110966" fg:w="79"/><text x="30.8815%" y="703.50"></text></g><g><title>lld::elf::SharedFile::parse<llvm::object::ELFType<(llvm::support::endianness)1, true> > (602 samples, 0.17%)</title><rect x="30.4949%" y="709" width="0.1662%" height="15" fill="rgb(245,89,8)" fg:x="110471" fg:w="602"/><text x="30.7449%" y="719.50"></text></g><g><title>lld::elf::parseFile (621 samples, 0.17%)</title><rect x="30.4899%" y="725" width="0.1714%" height="15" fill="rgb(237,16,53)" fg:x="110453" fg:w="621"/><text x="30.7399%" y="735.50"></text></g><g><title>do_syscall_64 (37 samples, 0.01%)</title><rect x="30.6964%" y="549" width="0.0102%" height="15" fill="rgb(250,204,30)" fg:x="111201" fg:w="37"/><text x="30.9464%" y="559.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (62 samples, 0.02%)</title><rect x="30.6898%" y="629" width="0.0171%" height="15" fill="rgb(208,77,27)" fg:x="111177" fg:w="62"/><text x="30.9398%" y="639.50"></text></g><g><title>std::condition_variable::notify_one (53 samples, 0.01%)</title><rect x="30.6922%" y="613" width="0.0146%" height="15" fill="rgb(250,204,28)" fg:x="111186" fg:w="53"/><text x="30.9422%" y="623.50"></text></g><g><title>__pthread_cond_signal (53 samples, 0.01%)</title><rect x="30.6922%" y="597" width="0.0146%" height="15" fill="rgb(244,63,21)" fg:x="111186" fg:w="53"/><text x="30.9422%" y="607.50"></text></g><g><title>futex_wake (41 samples, 0.01%)</title><rect x="30.6955%" y="581" width="0.0113%" height="15" fill="rgb(236,85,44)" fg:x="111198" fg:w="41"/><text x="30.9455%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="30.6961%" y="565" width="0.0108%" height="15" fill="rgb(215,98,4)" fg:x="111200" fg:w="39"/><text x="30.9461%" y="575.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (66 samples, 0.02%)</title><rect x="30.6898%" y="661" width="0.0182%" height="15" fill="rgb(235,38,11)" fg:x="111177" fg:w="66"/><text x="30.9398%" y="671.50"></text></g><g><title>llvm::parallelForEachN (66 samples, 0.02%)</title><rect x="30.6898%" y="645" width="0.0182%" height="15" fill="rgb(254,186,25)" fg:x="111177" fg:w="66"/><text x="30.9398%" y="655.50"></text></g><g><title>llvm::function_ref<void (unsigned long)>::callback_fn<lld::elf::OutputSection::writeTo<llvm::object::ELFType<(llvm::support::endianness)1, true> >(unsigned char*)::{lambda(unsigned long)#2}> (81 samples, 0.02%)</title><rect x="30.6873%" y="677" width="0.0224%" height="15" fill="rgb(225,55,31)" fg:x="111168" fg:w="81"/><text x="30.9373%" y="687.50"></text></g><g><title>lld::elf::OutputSection::writeTo<llvm::object::ELFType<(llvm::support::endianness)1, true> > (117 samples, 0.03%)</title><rect x="30.6862%" y="709" width="0.0323%" height="15" fill="rgb(211,15,21)" fg:x="111164" fg:w="117"/><text x="30.9362%" y="719.50"></text></g><g><title>llvm::parallelForEachN (113 samples, 0.03%)</title><rect x="30.6873%" y="693" width="0.0312%" height="15" fill="rgb(215,187,41)" fg:x="111168" fg:w="113"/><text x="30.9373%" y="703.50"></text></g><g><title>lld::elf::postScanRelocations (39 samples, 0.01%)</title><rect x="30.7229%" y="709" width="0.0108%" height="15" fill="rgb(248,69,32)" fg:x="111297" fg:w="39"/><text x="30.9729%" y="719.50"></text></g><g><title>llvm::FileOutputBuffer::create (62 samples, 0.02%)</title><rect x="30.7392%" y="709" width="0.0171%" height="15" fill="rgb(252,102,52)" fg:x="111356" fg:w="62"/><text x="30.9892%" y="719.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="30.7855%" y="501" width="0.0149%" height="15" fill="rgb(253,140,32)" fg:x="111524" fg:w="54"/><text x="31.0355%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.01%)</title><rect x="30.7861%" y="485" width="0.0144%" height="15" fill="rgb(216,56,42)" fg:x="111526" fg:w="52"/><text x="31.0361%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.01%)</title><rect x="30.7864%" y="469" width="0.0141%" height="15" fill="rgb(216,184,14)" fg:x="111527" fg:w="51"/><text x="31.0364%" y="479.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="30.7864%" y="453" width="0.0141%" height="15" fill="rgb(237,187,27)" fg:x="111527" fg:w="51"/><text x="31.0364%" y="463.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="30.7828%" y="549" width="0.0224%" height="15" fill="rgb(219,65,3)" fg:x="111514" fg:w="81"/><text x="31.0328%" y="559.50"></text></g><g><title>schedule (78 samples, 0.02%)</title><rect x="30.7836%" y="533" width="0.0215%" height="15" fill="rgb(245,83,25)" fg:x="111517" fg:w="78"/><text x="31.0336%" y="543.50"></text></g><g><title>__schedule (78 samples, 0.02%)</title><rect x="30.7836%" y="517" width="0.0215%" height="15" fill="rgb(214,205,45)" fg:x="111517" fg:w="78"/><text x="31.0336%" y="527.50"></text></g><g><title>do_syscall_64 (92 samples, 0.03%)</title><rect x="30.7822%" y="613" width="0.0254%" height="15" fill="rgb(241,20,18)" fg:x="111512" fg:w="92"/><text x="31.0322%" y="623.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.03%)</title><rect x="30.7822%" y="597" width="0.0254%" height="15" fill="rgb(232,163,23)" fg:x="111512" fg:w="92"/><text x="31.0322%" y="607.50"></text></g><g><title>do_futex (90 samples, 0.02%)</title><rect x="30.7828%" y="581" width="0.0248%" height="15" fill="rgb(214,5,46)" fg:x="111514" fg:w="90"/><text x="31.0328%" y="591.50"></text></g><g><title>futex_wait (90 samples, 0.02%)</title><rect x="30.7828%" y="565" width="0.0248%" height="15" fill="rgb(229,78,17)" fg:x="111514" fg:w="90"/><text x="31.0328%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.03%)</title><rect x="30.7822%" y="629" width="0.0257%" height="15" fill="rgb(248,89,10)" fg:x="111512" fg:w="93"/><text x="31.0322%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (123 samples, 0.03%)</title><rect x="30.7742%" y="661" width="0.0340%" height="15" fill="rgb(248,54,15)" fg:x="111483" fg:w="123"/><text x="31.0242%" y="671.50"></text></g><g><title>__lll_lock_wait (101 samples, 0.03%)</title><rect x="30.7803%" y="645" width="0.0279%" height="15" fill="rgb(223,116,6)" fg:x="111505" fg:w="101"/><text x="31.0303%" y="655.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="30.8156%" y="629" width="0.0224%" height="15" fill="rgb(205,125,38)" fg:x="111633" fg:w="81"/><text x="31.0656%" y="639.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.02%)</title><rect x="30.8162%" y="613" width="0.0218%" height="15" fill="rgb(251,78,38)" fg:x="111635" fg:w="79"/><text x="31.0662%" y="623.50"></text></g><g><title>do_futex (79 samples, 0.02%)</title><rect x="30.8162%" y="597" width="0.0218%" height="15" fill="rgb(253,78,28)" fg:x="111635" fg:w="79"/><text x="31.0662%" y="607.50"></text></g><g><title>futex_wake (75 samples, 0.02%)</title><rect x="30.8173%" y="581" width="0.0207%" height="15" fill="rgb(209,120,3)" fg:x="111639" fg:w="75"/><text x="31.0673%" y="591.50"></text></g><g><title>wake_up_q (62 samples, 0.02%)</title><rect x="30.8209%" y="565" width="0.0171%" height="15" fill="rgb(238,229,9)" fg:x="111652" fg:w="62"/><text x="31.0709%" y="575.50"></text></g><g><title>try_to_wake_up (62 samples, 0.02%)</title><rect x="30.8209%" y="549" width="0.0171%" height="15" fill="rgb(253,159,18)" fg:x="111652" fg:w="62"/><text x="31.0709%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="30.8154%" y="645" width="0.0232%" height="15" fill="rgb(244,42,34)" fg:x="111632" fg:w="84"/><text x="31.0654%" y="655.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (111 samples, 0.03%)</title><rect x="30.8082%" y="661" width="0.0306%" height="15" fill="rgb(224,8,7)" fg:x="111606" fg:w="111"/><text x="31.0582%" y="671.50"></text></g><g><title>_int_malloc (39 samples, 0.01%)</title><rect x="30.8441%" y="597" width="0.0108%" height="15" fill="rgb(210,201,45)" fg:x="111736" fg:w="39"/><text x="31.0941%" y="607.50"></text></g><g><title>__GI___libc_malloc (60 samples, 0.02%)</title><rect x="30.8396%" y="613" width="0.0166%" height="15" fill="rgb(252,185,21)" fg:x="111720" fg:w="60"/><text x="31.0896%" y="623.50"></text></g><g><title>operator new (62 samples, 0.02%)</title><rect x="30.8396%" y="629" width="0.0171%" height="15" fill="rgb(223,131,1)" fg:x="111720" fg:w="62"/><text x="31.0896%" y="639.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (348 samples, 0.10%)</title><rect x="30.7731%" y="677" width="0.0961%" height="15" fill="rgb(245,141,16)" fg:x="111479" fg:w="348"/><text x="31.0231%" y="687.50"></text></g><g><title>std::deque<std::function<void ()>, std::allocator<std::function<void ()> > >::push_back (109 samples, 0.03%)</title><rect x="30.8391%" y="661" width="0.0301%" height="15" fill="rgb(229,55,45)" fg:x="111718" fg:w="109"/><text x="31.0891%" y="671.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_manager (109 samples, 0.03%)</title><rect x="30.8391%" y="645" width="0.0301%" height="15" fill="rgb(208,92,15)" fg:x="111718" fg:w="109"/><text x="31.0891%" y="655.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref<void (unsigned long)>)::$_1>::_M_manager (44 samples, 0.01%)</title><rect x="30.8570%" y="629" width="0.0121%" height="15" fill="rgb(234,185,47)" fg:x="111783" fg:w="44"/><text x="31.1070%" y="639.50"></text></g><g><title>operator new (42 samples, 0.01%)</title><rect x="30.8576%" y="613" width="0.0116%" height="15" fill="rgb(253,104,50)" fg:x="111785" fg:w="42"/><text x="31.1076%" y="623.50"></text></g><g><title>__GI___libc_malloc (41 samples, 0.01%)</title><rect x="30.8579%" y="597" width="0.0113%" height="15" fill="rgb(205,70,7)" fg:x="111786" fg:w="41"/><text x="31.1079%" y="607.50"></text></g><g><title>std::_Function_base::_Base_manager<llvm::parallel::detail::TaskGroup::spawn(std::function<void ()>)::$_0>::_M_manager (45 samples, 0.01%)</title><rect x="30.8722%" y="677" width="0.0124%" height="15" fill="rgb(240,178,43)" fg:x="111838" fg:w="45"/><text x="31.1222%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (252 samples, 0.07%)</title><rect x="30.9161%" y="453" width="0.0696%" height="15" fill="rgb(214,112,2)" fg:x="111997" fg:w="252"/><text x="31.1661%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (248 samples, 0.07%)</title><rect x="30.9172%" y="437" width="0.0685%" height="15" fill="rgb(206,46,17)" fg:x="112001" fg:w="248"/><text x="31.1672%" y="447.50"></text></g><g><title>native_write_msr (245 samples, 0.07%)</title><rect x="30.9180%" y="421" width="0.0676%" height="15" fill="rgb(225,220,16)" fg:x="112004" fg:w="245"/><text x="31.1680%" y="431.50"></text></g><g><title>finish_task_switch (266 samples, 0.07%)</title><rect x="30.9147%" y="469" width="0.0734%" height="15" fill="rgb(238,65,40)" fg:x="111992" fg:w="266"/><text x="31.1647%" y="479.50"></text></g><g><title>futex_wait_queue_me (353 samples, 0.10%)</title><rect x="30.9015%" y="517" width="0.0974%" height="15" fill="rgb(230,151,21)" fg:x="111944" fg:w="353"/><text x="31.1515%" y="527.50"></text></g><g><title>schedule (346 samples, 0.10%)</title><rect x="30.9034%" y="501" width="0.0955%" height="15" fill="rgb(218,58,49)" fg:x="111951" fg:w="346"/><text x="31.1534%" y="511.50"></text></g><g><title>__schedule (343 samples, 0.09%)</title><rect x="30.9042%" y="485" width="0.0947%" height="15" fill="rgb(219,179,14)" fg:x="111954" fg:w="343"/><text x="31.1542%" y="495.50"></text></g><g><title>do_syscall_64 (370 samples, 0.10%)</title><rect x="30.8990%" y="581" width="0.1021%" height="15" fill="rgb(223,72,1)" fg:x="111935" fg:w="370"/><text x="31.1490%" y="591.50"></text></g><g><title>__x64_sys_futex (368 samples, 0.10%)</title><rect x="30.8995%" y="565" width="0.1016%" height="15" fill="rgb(238,126,10)" fg:x="111937" fg:w="368"/><text x="31.1495%" y="575.50"></text></g><g><title>do_futex (367 samples, 0.10%)</title><rect x="30.8998%" y="549" width="0.1013%" height="15" fill="rgb(224,206,38)" fg:x="111938" fg:w="367"/><text x="31.1498%" y="559.50"></text></g><g><title>futex_wait (365 samples, 0.10%)</title><rect x="30.9004%" y="533" width="0.1008%" height="15" fill="rgb(212,201,54)" fg:x="111940" fg:w="365"/><text x="31.1504%" y="543.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (401 samples, 0.11%)</title><rect x="30.8937%" y="645" width="0.1107%" height="15" fill="rgb(218,154,48)" fg:x="111916" fg:w="401"/><text x="31.1437%" y="655.50"></text></g><g><title>futex_wait_simple (390 samples, 0.11%)</title><rect x="30.8968%" y="629" width="0.1077%" height="15" fill="rgb(232,93,24)" fg:x="111927" fg:w="390"/><text x="31.1468%" y="639.50"></text></g><g><title>futex_wait (390 samples, 0.11%)</title><rect x="30.8968%" y="613" width="0.1077%" height="15" fill="rgb(245,30,21)" fg:x="111927" fg:w="390"/><text x="31.1468%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (383 samples, 0.11%)</title><rect x="30.8987%" y="597" width="0.1057%" height="15" fill="rgb(242,148,29)" fg:x="111934" fg:w="383"/><text x="31.1487%" y="607.50"></text></g><g><title>mark_wake_futex (54 samples, 0.01%)</title><rect x="31.0315%" y="549" width="0.0149%" height="15" fill="rgb(244,153,54)" fg:x="112415" fg:w="54"/><text x="31.2815%" y="559.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.04%)</title><rect x="31.0597%" y="517" width="0.0422%" height="15" fill="rgb(252,87,22)" fg:x="112517" fg:w="153"/><text x="31.3097%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (139 samples, 0.04%)</title><rect x="31.0635%" y="501" width="0.0384%" height="15" fill="rgb(210,51,29)" fg:x="112531" fg:w="139"/><text x="31.3135%" y="511.50"></text></g><g><title>available_idle_cpu (47 samples, 0.01%)</title><rect x="31.1298%" y="501" width="0.0130%" height="15" fill="rgb(242,136,47)" fg:x="112771" fg:w="47"/><text x="31.3798%" y="511.50"></text></g><g><title>select_task_rq_fair (197 samples, 0.05%)</title><rect x="31.1074%" y="517" width="0.0544%" height="15" fill="rgb(238,68,4)" fg:x="112690" fg:w="197"/><text x="31.3574%" y="527.50"></text></g><g><title>enqueue_entity (165 samples, 0.05%)</title><rect x="31.1797%" y="485" width="0.0455%" height="15" fill="rgb(242,161,30)" fg:x="112952" fg:w="165"/><text x="31.4297%" y="495.50"></text></g><g><title>update_load_avg (65 samples, 0.02%)</title><rect x="31.2073%" y="469" width="0.0179%" height="15" fill="rgb(218,58,44)" fg:x="113052" fg:w="65"/><text x="31.4573%" y="479.50"></text></g><g><title>enqueue_task_fair (225 samples, 0.06%)</title><rect x="31.1712%" y="501" width="0.0621%" height="15" fill="rgb(252,125,32)" fg:x="112921" fg:w="225"/><text x="31.4212%" y="511.50"></text></g><g><title>ttwu_do_activate (435 samples, 0.12%)</title><rect x="31.1679%" y="517" width="0.1201%" height="15" fill="rgb(219,178,0)" fg:x="112909" fg:w="435"/><text x="31.4179%" y="527.50"></text></g><g><title>psi_task_change (197 samples, 0.05%)</title><rect x="31.2336%" y="501" width="0.0544%" height="15" fill="rgb(213,152,7)" fg:x="113147" fg:w="197"/><text x="31.4836%" y="511.50"></text></g><g><title>psi_group_change (181 samples, 0.05%)</title><rect x="31.2380%" y="485" width="0.0500%" height="15" fill="rgb(249,109,34)" fg:x="113163" fg:w="181"/><text x="31.4880%" y="495.50"></text></g><g><title>__x64_sys_futex (1,043 samples, 0.29%)</title><rect x="31.0174%" y="597" width="0.2879%" height="15" fill="rgb(232,96,21)" fg:x="112364" fg:w="1043"/><text x="31.2674%" y="607.50"></text></g><g><title>do_futex (1,037 samples, 0.29%)</title><rect x="31.0191%" y="581" width="0.2863%" height="15" fill="rgb(228,27,39)" fg:x="112370" fg:w="1037"/><text x="31.2691%" y="591.50"></text></g><g><title>futex_wake (1,035 samples, 0.29%)</title><rect x="31.0196%" y="565" width="0.2857%" height="15" fill="rgb(211,182,52)" fg:x="112372" fg:w="1035"/><text x="31.2696%" y="575.50"></text></g><g><title>wake_up_q (930 samples, 0.26%)</title><rect x="31.0486%" y="549" width="0.2567%" height="15" fill="rgb(234,178,38)" fg:x="112477" fg:w="930"/><text x="31.2986%" y="559.50"></text></g><g><title>try_to_wake_up (915 samples, 0.25%)</title><rect x="31.0527%" y="533" width="0.2526%" height="15" fill="rgb(221,111,3)" fg:x="112492" fg:w="915"/><text x="31.3027%" y="543.50"></text></g><g><title>do_syscall_64 (1,049 samples, 0.29%)</title><rect x="31.0166%" y="613" width="0.2896%" height="15" fill="rgb(228,175,21)" fg:x="112361" fg:w="1049"/><text x="31.2666%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,087 samples, 0.30%)</title><rect x="31.0155%" y="629" width="0.3001%" height="15" fill="rgb(228,174,43)" fg:x="112357" fg:w="1087"/><text x="31.2655%" y="639.50"></text></g><g><title>std::condition_variable::notify_one (1,563 samples, 0.43%)</title><rect x="30.8868%" y="677" width="0.4315%" height="15" fill="rgb(211,191,0)" fg:x="111891" fg:w="1563"/><text x="31.1368%" y="687.50"></text></g><g><title>__pthread_cond_signal (1,560 samples, 0.43%)</title><rect x="30.8877%" y="661" width="0.4306%" height="15" fill="rgb(253,117,3)" fg:x="111894" fg:w="1560"/><text x="31.1377%" y="671.50"></text></g><g><title>futex_wake (1,126 samples, 0.31%)</title><rect x="31.0075%" y="645" width="0.3108%" height="15" fill="rgb(241,127,19)" fg:x="112328" fg:w="1126"/><text x="31.2575%" y="655.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (2,034 samples, 0.56%)</title><rect x="30.7577%" y="693" width="0.5615%" height="15" fill="rgb(218,103,12)" fg:x="111423" fg:w="2034"/><text x="31.0077%" y="703.50"></text></g><g><title>llvm::parallelForEachN (2,061 samples, 0.57%)</title><rect x="30.7568%" y="709" width="0.5689%" height="15" fill="rgb(236,214,43)" fg:x="111420" fg:w="2061"/><text x="31.0068%" y="719.50"></text></g><g><title>__btrfs_unlink_inode (51 samples, 0.01%)</title><rect x="31.3293%" y="565" width="0.0141%" height="15" fill="rgb(244,144,19)" fg:x="113494" fg:w="51"/><text x="31.5793%" y="575.50"></text></g><g><title>do_syscall_64 (76 samples, 0.02%)</title><rect x="31.3285%" y="645" width="0.0210%" height="15" fill="rgb(246,188,10)" fg:x="113491" fg:w="76"/><text x="31.5785%" y="655.50"></text></g><g><title>__x64_sys_rename (76 samples, 0.02%)</title><rect x="31.3285%" y="629" width="0.0210%" height="15" fill="rgb(212,193,33)" fg:x="113491" fg:w="76"/><text x="31.5785%" y="639.50"></text></g><g><title>do_renameat2 (76 samples, 0.02%)</title><rect x="31.3285%" y="613" width="0.0210%" height="15" fill="rgb(241,51,29)" fg:x="113491" fg:w="76"/><text x="31.5785%" y="623.50"></text></g><g><title>vfs_rename (73 samples, 0.02%)</title><rect x="31.3293%" y="597" width="0.0202%" height="15" fill="rgb(211,58,19)" fg:x="113494" fg:w="73"/><text x="31.5793%" y="607.50"></text></g><g><title>btrfs_rename2 (73 samples, 0.02%)</title><rect x="31.3293%" y="581" width="0.0202%" height="15" fill="rgb(229,111,26)" fg:x="113494" fg:w="73"/><text x="31.5793%" y="591.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (87 samples, 0.02%)</title><rect x="31.3258%" y="709" width="0.0240%" height="15" fill="rgb(213,115,40)" fg:x="113481" fg:w="87"/><text x="31.5758%" y="719.50"></text></g><g><title>llvm::sys::fs::rename (80 samples, 0.02%)</title><rect x="31.3277%" y="693" width="0.0221%" height="15" fill="rgb(209,56,44)" fg:x="113488" fg:w="80"/><text x="31.5777%" y="703.50"></text></g><g><title>rename (78 samples, 0.02%)</title><rect x="31.3282%" y="677" width="0.0215%" height="15" fill="rgb(230,108,32)" fg:x="113490" fg:w="78"/><text x="31.5782%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="31.3285%" y="661" width="0.0213%" height="15" fill="rgb(216,165,31)" fg:x="113491" fg:w="77"/><text x="31.5785%" y="671.50"></text></g><g><title>lld::elf::writeResult<llvm::object::ELFType<(llvm::support::endianness)1, true> > (2,478 samples, 0.68%)</title><rect x="30.6688%" y="725" width="0.6840%" height="15" fill="rgb(218,122,21)" fg:x="111101" fg:w="2478"/><text x="30.9188%" y="735.50"></text></g><g><title>llvm::FileOutputBuffer::create (75 samples, 0.02%)</title><rect x="31.3545%" y="709" width="0.0207%" height="15" fill="rgb(223,224,47)" fg:x="113585" fg:w="75"/><text x="31.6045%" y="719.50"></text></g><g><title>evict (80 samples, 0.02%)</title><rect x="31.3779%" y="597" width="0.0221%" height="15" fill="rgb(238,102,44)" fg:x="113670" fg:w="80"/><text x="31.6279%" y="607.50"></text></g><g><title>btrfs_evict_inode (80 samples, 0.02%)</title><rect x="31.3779%" y="581" width="0.0221%" height="15" fill="rgb(236,46,40)" fg:x="113670" fg:w="80"/><text x="31.6279%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (37 samples, 0.01%)</title><rect x="31.4003%" y="565" width="0.0102%" height="15" fill="rgb(247,202,50)" fg:x="113751" fg:w="37"/><text x="31.6503%" y="575.50"></text></g><g><title>__GI_remove (130 samples, 0.04%)</title><rect x="31.3774%" y="677" width="0.0359%" height="15" fill="rgb(209,99,20)" fg:x="113668" fg:w="130"/><text x="31.6274%" y="687.50"></text></g><g><title>__unlink (129 samples, 0.04%)</title><rect x="31.3777%" y="661" width="0.0356%" height="15" fill="rgb(252,27,34)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.04%)</title><rect x="31.3777%" y="645" width="0.0356%" height="15" fill="rgb(215,206,23)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="655.50"></text></g><g><title>do_syscall_64 (129 samples, 0.04%)</title><rect x="31.3777%" y="629" width="0.0356%" height="15" fill="rgb(212,135,36)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="639.50"></text></g><g><title>do_unlinkat (129 samples, 0.04%)</title><rect x="31.3777%" y="613" width="0.0356%" height="15" fill="rgb(240,189,1)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="623.50"></text></g><g><title>vfs_unlink (48 samples, 0.01%)</title><rect x="31.4000%" y="597" width="0.0133%" height="15" fill="rgb(242,56,20)" fg:x="113750" fg:w="48"/><text x="31.6500%" y="607.50"></text></g><g><title>btrfs_unlink (48 samples, 0.01%)</title><rect x="31.4000%" y="581" width="0.0133%" height="15" fill="rgb(247,132,33)" fg:x="113750" fg:w="48"/><text x="31.6500%" y="591.50"></text></g><g><title>lld::tryCreateFile (218 samples, 0.06%)</title><rect x="31.3534%" y="725" width="0.0602%" height="15" fill="rgb(208,149,11)" fg:x="113581" fg:w="218"/><text x="31.6034%" y="735.50"></text></g><g><title>llvm::sys::fs::TempFile::discard (138 samples, 0.04%)</title><rect x="31.3754%" y="709" width="0.0381%" height="15" fill="rgb(211,33,11)" fg:x="113661" fg:w="138"/><text x="31.6254%" y="719.50"></text></g><g><title>llvm::sys::fs::remove (134 samples, 0.04%)</title><rect x="31.3765%" y="693" width="0.0370%" height="15" fill="rgb(221,29,38)" fg:x="113665" fg:w="134"/><text x="31.6265%" y="703.50"></text></g><g><title>lld::elf::LinkerDriver::link (3,891 samples, 1.07%)</title><rect x="30.3400%" y="741" width="1.0741%" height="15" fill="rgb(206,182,49)" fg:x="109910" fg:w="3891"/><text x="30.5900%" y="751.50"></text></g><g><title>llvm::InitializeAllTargets (67 samples, 0.02%)</title><rect x="31.4166%" y="741" width="0.0185%" height="15" fill="rgb(216,140,1)" fg:x="113810" fg:w="67"/><text x="31.6666%" y="751.50"></text></g><g><title>lld::elf::link (4,271 samples, 1.18%)</title><rect x="30.2702%" y="773" width="1.1790%" height="15" fill="rgb(232,57,40)" fg:x="109657" fg:w="4271"/><text x="30.5202%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (4,257 samples, 1.18%)</title><rect x="30.2740%" y="757" width="1.1751%" height="15" fill="rgb(224,186,18)" fg:x="109671" fg:w="4257"/><text x="30.5240%" y="767.50"></text></g><g><title>readConfigs (41 samples, 0.01%)</title><rect x="31.4378%" y="741" width="0.0113%" height="15" fill="rgb(215,121,11)" fg:x="113887" fg:w="41"/><text x="31.6878%" y="751.50"></text></g><g><title>llvm::object_deleter<llvm::cl::SubCommand>::call (69 samples, 0.02%)</title><rect x="31.4552%" y="741" width="0.0190%" height="15" fill="rgb(245,147,10)" fg:x="113950" fg:w="69"/><text x="31.7052%" y="751.50"></text></g><g><title>llvm::llvm_shutdown (107 samples, 0.03%)</title><rect x="31.4491%" y="757" width="0.0295%" height="15" fill="rgb(238,153,13)" fg:x="113928" fg:w="107"/><text x="31.6991%" y="767.50"></text></g><g><title>lldMain (4,387 samples, 1.21%)</title><rect x="30.2702%" y="789" width="1.2110%" height="15" fill="rgb(233,108,0)" fg:x="109657" fg:w="4387"/><text x="30.5202%" y="799.50"></text></g><g><title>lld::exitLld (116 samples, 0.03%)</title><rect x="31.4491%" y="773" width="0.0320%" height="15" fill="rgb(212,157,17)" fg:x="113928" fg:w="116"/><text x="31.6991%" y="783.50"></text></g><g><title>__libc_start_main (4,920 samples, 1.36%)</title><rect x="30.1247%" y="821" width="1.3581%" height="15" fill="rgb(225,213,38)" fg:x="109130" fg:w="4920"/><text x="30.3747%" y="831.50"></text></g><g><title>main (4,394 samples, 1.21%)</title><rect x="30.2699%" y="805" width="1.2129%" height="15" fill="rgb(248,16,11)" fg:x="109656" fg:w="4394"/><text x="30.5199%" y="815.50"></text></g><g><title>ksys_mmap_pgoff (57 samples, 0.02%)</title><rect x="31.4936%" y="597" width="0.0157%" height="15" fill="rgb(241,33,4)" fg:x="114089" fg:w="57"/><text x="31.7436%" y="607.50"></text></g><g><title>vm_mmap_pgoff (56 samples, 0.02%)</title><rect x="31.4939%" y="581" width="0.0155%" height="15" fill="rgb(222,26,43)" fg:x="114090" fg:w="56"/><text x="31.7439%" y="591.50"></text></g><g><title>do_mmap (56 samples, 0.02%)</title><rect x="31.4939%" y="565" width="0.0155%" height="15" fill="rgb(243,29,36)" fg:x="114090" fg:w="56"/><text x="31.7439%" y="575.50"></text></g><g><title>mmap_region (55 samples, 0.02%)</title><rect x="31.4941%" y="549" width="0.0152%" height="15" fill="rgb(241,9,27)" fg:x="114091" fg:w="55"/><text x="31.7441%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="31.4936%" y="629" width="0.0168%" height="15" fill="rgb(205,117,26)" fg:x="114089" fg:w="61"/><text x="31.7436%" y="639.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="31.4936%" y="613" width="0.0168%" height="15" fill="rgb(209,80,39)" fg:x="114089" fg:w="61"/><text x="31.7436%" y="623.50"></text></g><g><title>_dl_map_segments (71 samples, 0.02%)</title><rect x="31.4914%" y="677" width="0.0196%" height="15" fill="rgb(239,155,6)" fg:x="114081" fg:w="71"/><text x="31.7414%" y="687.50"></text></g><g><title>__mmap64 (64 samples, 0.02%)</title><rect x="31.4933%" y="661" width="0.0177%" height="15" fill="rgb(212,104,12)" fg:x="114088" fg:w="64"/><text x="31.7433%" y="671.50"></text></g><g><title>__mmap64 (64 samples, 0.02%)</title><rect x="31.4933%" y="645" width="0.0177%" height="15" fill="rgb(234,204,3)" fg:x="114088" fg:w="64"/><text x="31.7433%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (88 samples, 0.02%)</title><rect x="31.4903%" y="693" width="0.0243%" height="15" fill="rgb(251,218,7)" fg:x="114077" fg:w="88"/><text x="31.7403%" y="703.50"></text></g><g><title>_dl_catch_exception (144 samples, 0.04%)</title><rect x="31.4864%" y="741" width="0.0398%" height="15" fill="rgb(221,81,32)" fg:x="114063" fg:w="144"/><text x="31.7364%" y="751.50"></text></g><g><title>openaux (144 samples, 0.04%)</title><rect x="31.4864%" y="725" width="0.0398%" height="15" fill="rgb(214,152,26)" fg:x="114063" fg:w="144"/><text x="31.7364%" y="735.50"></text></g><g><title>_dl_map_object (144 samples, 0.04%)</title><rect x="31.4864%" y="709" width="0.0398%" height="15" fill="rgb(223,22,3)" fg:x="114063" fg:w="144"/><text x="31.7364%" y="719.50"></text></g><g><title>_dl_map_object_deps (146 samples, 0.04%)</title><rect x="31.4861%" y="757" width="0.0403%" height="15" fill="rgb(207,174,7)" fg:x="114062" fg:w="146"/><text x="31.7361%" y="767.50"></text></g><g><title>dl_new_hash (42 samples, 0.01%)</title><rect x="31.5513%" y="693" width="0.0116%" height="15" fill="rgb(224,19,52)" fg:x="114298" fg:w="42"/><text x="31.8013%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (167 samples, 0.05%)</title><rect x="31.5494%" y="709" width="0.0461%" height="15" fill="rgb(228,24,14)" fg:x="114291" fg:w="167"/><text x="31.7994%" y="719.50"></text></g><g><title>do_lookup_x (118 samples, 0.03%)</title><rect x="31.5629%" y="693" width="0.0326%" height="15" fill="rgb(230,153,43)" fg:x="114340" fg:w="118"/><text x="31.8129%" y="703.50"></text></g><g><title>asm_exc_page_fault (48 samples, 0.01%)</title><rect x="31.5955%" y="709" width="0.0133%" height="15" fill="rgb(231,106,12)" fg:x="114458" fg:w="48"/><text x="31.8455%" y="719.50"></text></g><g><title>exc_page_fault (48 samples, 0.01%)</title><rect x="31.5955%" y="693" width="0.0133%" height="15" fill="rgb(215,92,2)" fg:x="114458" fg:w="48"/><text x="31.8455%" y="703.50"></text></g><g><title>do_user_addr_fault (48 samples, 0.01%)</title><rect x="31.5955%" y="677" width="0.0133%" height="15" fill="rgb(249,143,25)" fg:x="114458" fg:w="48"/><text x="31.8455%" y="687.50"></text></g><g><title>handle_mm_fault (46 samples, 0.01%)</title><rect x="31.5960%" y="661" width="0.0127%" height="15" fill="rgb(252,7,35)" fg:x="114460" fg:w="46"/><text x="31.8460%" y="671.50"></text></g><g><title>elf_machine_rela (261 samples, 0.07%)</title><rect x="31.5386%" y="725" width="0.0720%" height="15" fill="rgb(216,69,40)" fg:x="114252" fg:w="261"/><text x="31.7886%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (290 samples, 0.08%)</title><rect x="31.5325%" y="741" width="0.0801%" height="15" fill="rgb(240,36,33)" fg:x="114230" fg:w="290"/><text x="31.7825%" y="751.50"></text></g><g><title>_dl_relocate_object (307 samples, 0.08%)</title><rect x="31.5286%" y="757" width="0.0847%" height="15" fill="rgb(231,128,14)" fg:x="114216" fg:w="307"/><text x="31.7786%" y="767.50"></text></g><g><title>[ld-2.31.so] (481 samples, 0.13%)</title><rect x="31.4831%" y="773" width="0.1328%" height="15" fill="rgb(245,143,14)" fg:x="114051" fg:w="481"/><text x="31.7331%" y="783.50"></text></g><g><title>_dl_start_final (491 samples, 0.14%)</title><rect x="31.4828%" y="805" width="0.1355%" height="15" fill="rgb(222,130,28)" fg:x="114050" fg:w="491"/><text x="31.7328%" y="815.50"></text></g><g><title>_dl_sysdep_start (491 samples, 0.14%)</title><rect x="31.4828%" y="789" width="0.1355%" height="15" fill="rgb(212,10,48)" fg:x="114050" fg:w="491"/><text x="31.7328%" y="799.50"></text></g><g><title>_dl_start (493 samples, 0.14%)</title><rect x="31.4828%" y="821" width="0.1361%" height="15" fill="rgb(254,118,45)" fg:x="114050" fg:w="493"/><text x="31.7328%" y="831.50"></text></g><g><title>_start (5,416 samples, 1.50%)</title><rect x="30.1247%" y="837" width="1.4951%" height="15" fill="rgb(228,6,45)" fg:x="109130" fg:w="5416"/><text x="30.3747%" y="847.50"></text></g><g><title>asm_exc_page_fault (136 samples, 0.04%)</title><rect x="31.6197%" y="837" width="0.0375%" height="15" fill="rgb(241,18,35)" fg:x="114546" fg:w="136"/><text x="31.8697%" y="847.50"></text></g><g><title>page_remove_rmap (86 samples, 0.02%)</title><rect x="31.6957%" y="693" width="0.0237%" height="15" fill="rgb(227,214,53)" fg:x="114821" fg:w="86"/><text x="31.9457%" y="703.50"></text></g><g><title>tlb_flush_mmu (55 samples, 0.02%)</title><rect x="31.7194%" y="693" width="0.0152%" height="15" fill="rgb(224,107,51)" fg:x="114907" fg:w="55"/><text x="31.9694%" y="703.50"></text></g><g><title>release_pages (41 samples, 0.01%)</title><rect x="31.7233%" y="677" width="0.0113%" height="15" fill="rgb(248,60,28)" fg:x="114921" fg:w="41"/><text x="31.9733%" y="687.50"></text></g><g><title>mmput (231 samples, 0.06%)</title><rect x="31.6738%" y="757" width="0.0638%" height="15" fill="rgb(249,101,23)" fg:x="114742" fg:w="231"/><text x="31.9238%" y="767.50"></text></g><g><title>exit_mmap (231 samples, 0.06%)</title><rect x="31.6738%" y="741" width="0.0638%" height="15" fill="rgb(228,51,19)" fg:x="114742" fg:w="231"/><text x="31.9238%" y="751.50"></text></g><g><title>unmap_vmas (215 samples, 0.06%)</title><rect x="31.6783%" y="725" width="0.0593%" height="15" fill="rgb(213,20,6)" fg:x="114758" fg:w="215"/><text x="31.9283%" y="735.50"></text></g><g><title>unmap_page_range (215 samples, 0.06%)</title><rect x="31.6783%" y="709" width="0.0593%" height="15" fill="rgb(212,124,10)" fg:x="114758" fg:w="215"/><text x="31.9283%" y="719.50"></text></g><g><title>__x64_sys_exit_group (249 samples, 0.07%)</title><rect x="31.6697%" y="805" width="0.0687%" height="15" fill="rgb(248,3,40)" fg:x="114727" fg:w="249"/><text x="31.9197%" y="815.50"></text></g><g><title>do_group_exit (249 samples, 0.07%)</title><rect x="31.6697%" y="789" width="0.0687%" height="15" fill="rgb(223,178,23)" fg:x="114727" fg:w="249"/><text x="31.9197%" y="799.50"></text></g><g><title>do_exit (249 samples, 0.07%)</title><rect x="31.6697%" y="773" width="0.0687%" height="15" fill="rgb(240,132,45)" fg:x="114727" fg:w="249"/><text x="31.9197%" y="783.50"></text></g><g><title>do_syscall_64 (298 samples, 0.08%)</title><rect x="31.6603%" y="821" width="0.0823%" height="15" fill="rgb(245,164,36)" fg:x="114693" fg:w="298"/><text x="31.9103%" y="831.50"></text></g><g><title>page_remove_rmap (57 samples, 0.02%)</title><rect x="31.7688%" y="661" width="0.0157%" height="15" fill="rgb(231,188,53)" fg:x="115086" fg:w="57"/><text x="32.0188%" y="671.50"></text></g><g><title>tlb_flush_mmu (38 samples, 0.01%)</title><rect x="31.7845%" y="661" width="0.0105%" height="15" fill="rgb(237,198,39)" fg:x="115143" fg:w="38"/><text x="32.0345%" y="671.50"></text></g><g><title>unmap_page_range (188 samples, 0.05%)</title><rect x="31.7473%" y="677" width="0.0519%" height="15" fill="rgb(223,120,35)" fg:x="115008" fg:w="188"/><text x="31.9973%" y="687.50"></text></g><g><title>mmput (203 samples, 0.06%)</title><rect x="31.7434%" y="725" width="0.0560%" height="15" fill="rgb(253,107,49)" fg:x="114994" fg:w="203"/><text x="31.9934%" y="735.50"></text></g><g><title>exit_mmap (203 samples, 0.06%)</title><rect x="31.7434%" y="709" width="0.0560%" height="15" fill="rgb(216,44,31)" fg:x="114994" fg:w="203"/><text x="31.9934%" y="719.50"></text></g><g><title>unmap_vmas (189 samples, 0.05%)</title><rect x="31.7473%" y="693" width="0.0522%" height="15" fill="rgb(253,87,21)" fg:x="115008" fg:w="189"/><text x="31.9973%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (512 samples, 0.14%)</title><rect x="31.6584%" y="837" width="0.1413%" height="15" fill="rgb(226,18,2)" fg:x="114686" fg:w="512"/><text x="31.9084%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (207 samples, 0.06%)</title><rect x="31.7426%" y="821" width="0.0571%" height="15" fill="rgb(216,8,46)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (207 samples, 0.06%)</title><rect x="31.7426%" y="805" width="0.0571%" height="15" fill="rgb(226,140,39)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="815.50"></text></g><g><title>arch_do_signal (207 samples, 0.06%)</title><rect x="31.7426%" y="789" width="0.0571%" height="15" fill="rgb(221,194,54)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="799.50"></text></g><g><title>get_signal (207 samples, 0.06%)</title><rect x="31.7426%" y="773" width="0.0571%" height="15" fill="rgb(213,92,11)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="783.50"></text></g><g><title>do_group_exit (207 samples, 0.06%)</title><rect x="31.7426%" y="757" width="0.0571%" height="15" fill="rgb(229,162,46)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="767.50"></text></g><g><title>do_exit (207 samples, 0.06%)</title><rect x="31.7426%" y="741" width="0.0571%" height="15" fill="rgb(214,111,36)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="751.50"></text></g><g><title>ld.lld (12,978 samples, 3.58%)</title><rect x="28.2352%" y="853" width="3.5825%" height="15" fill="rgb(207,6,21)" fg:x="102285" fg:w="12978"/><text x="28.4852%" y="863.50">ld.l..</text></g><g><title>[[heap]] (46 samples, 0.01%)</title><rect x="31.8177%" y="837" width="0.0127%" height="15" fill="rgb(213,127,38)" fg:x="115263" fg:w="46"/><text x="32.0677%" y="847.50"></text></g><g><title>[[stack]] (43 samples, 0.01%)</title><rect x="31.8304%" y="837" width="0.0119%" height="15" fill="rgb(238,118,32)" fg:x="115309" fg:w="43"/><text x="32.0804%" y="847.50"></text></g><g><title>[bash] (94 samples, 0.03%)</title><rect x="31.8505%" y="821" width="0.0259%" height="15" fill="rgb(240,139,39)" fg:x="115382" fg:w="94"/><text x="32.1005%" y="831.50"></text></g><g><title>arch_fork (44 samples, 0.01%)</title><rect x="31.8922%" y="101" width="0.0121%" height="15" fill="rgb(235,10,37)" fg:x="115533" fg:w="44"/><text x="32.1422%" y="111.50"></text></g><g><title>__libc_fork (46 samples, 0.01%)</title><rect x="31.8919%" y="117" width="0.0127%" height="15" fill="rgb(249,171,38)" fg:x="115532" fg:w="46"/><text x="32.1419%" y="127.50"></text></g><g><title>make_child (47 samples, 0.01%)</title><rect x="31.8919%" y="133" width="0.0130%" height="15" fill="rgb(242,144,32)" fg:x="115532" fg:w="47"/><text x="32.1419%" y="143.50"></text></g><g><title>execute_command (53 samples, 0.01%)</title><rect x="31.8905%" y="789" width="0.0146%" height="15" fill="rgb(217,117,21)" fg:x="115527" fg:w="53"/><text x="32.1405%" y="799.50"></text></g><g><title>execute_command_internal (53 samples, 0.01%)</title><rect x="31.8905%" y="773" width="0.0146%" height="15" fill="rgb(249,87,1)" fg:x="115527" fg:w="53"/><text x="32.1405%" y="783.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="757" width="0.0133%" height="15" fill="rgb(248,196,48)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="767.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="741" width="0.0133%" height="15" fill="rgb(251,206,33)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="751.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="725" width="0.0133%" height="15" fill="rgb(232,141,28)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="735.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="709" width="0.0133%" height="15" fill="rgb(209,167,14)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="719.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="693" width="0.0133%" height="15" fill="rgb(225,11,50)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="703.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="677" width="0.0133%" height="15" fill="rgb(209,50,20)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="687.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="661" width="0.0133%" height="15" fill="rgb(212,17,46)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="671.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="645" width="0.0133%" height="15" fill="rgb(216,101,39)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="655.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="629" width="0.0133%" height="15" fill="rgb(212,228,48)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="639.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="613" width="0.0133%" height="15" fill="rgb(250,6,50)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="623.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="597" width="0.0133%" height="15" fill="rgb(250,160,48)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="607.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="581" width="0.0133%" height="15" fill="rgb(244,216,33)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="591.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="565" width="0.0133%" height="15" fill="rgb(207,157,5)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="575.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="549" width="0.0133%" height="15" fill="rgb(228,199,8)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="559.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="533" width="0.0133%" height="15" fill="rgb(227,80,20)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="543.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="517" width="0.0133%" height="15" fill="rgb(222,9,33)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="527.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="501" width="0.0133%" height="15" fill="rgb(239,44,28)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="511.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="485" width="0.0133%" height="15" fill="rgb(249,187,43)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="495.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="469" width="0.0133%" height="15" fill="rgb(216,141,28)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="479.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="453" width="0.0133%" height="15" fill="rgb(230,154,53)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="463.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="437" width="0.0133%" height="15" fill="rgb(227,82,4)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="447.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="421" width="0.0133%" height="15" fill="rgb(220,107,16)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="431.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="405" width="0.0133%" height="15" fill="rgb(207,187,2)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="415.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="389" width="0.0133%" height="15" fill="rgb(210,162,52)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="399.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="373" width="0.0133%" height="15" fill="rgb(217,216,49)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="383.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="357" width="0.0133%" height="15" fill="rgb(218,146,49)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="367.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="341" width="0.0133%" height="15" fill="rgb(216,55,40)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="351.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="325" width="0.0133%" height="15" fill="rgb(208,196,21)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="335.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="309" width="0.0133%" height="15" fill="rgb(242,117,42)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="319.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="293" width="0.0133%" height="15" fill="rgb(210,11,23)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="303.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="277" width="0.0133%" height="15" fill="rgb(217,110,2)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="287.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="261" width="0.0133%" height="15" fill="rgb(229,77,54)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="271.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="245" width="0.0133%" height="15" fill="rgb(218,53,16)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="255.50"></text></g><g><title>expand_words (48 samples, 0.01%)</title><rect x="31.8919%" y="229" width="0.0133%" height="15" fill="rgb(215,38,13)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="239.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="213" width="0.0133%" height="15" fill="rgb(235,42,18)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="223.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="197" width="0.0133%" height="15" fill="rgb(219,66,54)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="207.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="181" width="0.0133%" height="15" fill="rgb(222,205,4)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="191.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="165" width="0.0133%" height="15" fill="rgb(227,213,46)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="175.50"></text></g><g><title>command_substitute (48 samples, 0.01%)</title><rect x="31.8919%" y="149" width="0.0133%" height="15" fill="rgb(250,145,42)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="159.50"></text></g><g><title>execute_command (64 samples, 0.02%)</title><rect x="31.9082%" y="741" width="0.0177%" height="15" fill="rgb(219,15,2)" fg:x="115591" fg:w="64"/><text x="32.1582%" y="751.50"></text></g><g><title>execute_command_internal (64 samples, 0.02%)</title><rect x="31.9082%" y="725" width="0.0177%" height="15" fill="rgb(231,181,52)" fg:x="115591" fg:w="64"/><text x="32.1582%" y="735.50"></text></g><g><title>[bash] (64 samples, 0.02%)</title><rect x="31.9082%" y="709" width="0.0177%" height="15" fill="rgb(235,1,42)" fg:x="115591" fg:w="64"/><text x="32.1582%" y="719.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="693" width="0.0152%" height="15" fill="rgb(249,88,27)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="703.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="677" width="0.0152%" height="15" fill="rgb(235,145,16)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="687.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="661" width="0.0152%" height="15" fill="rgb(237,114,19)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="671.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="645" width="0.0152%" height="15" fill="rgb(238,51,50)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="655.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="629" width="0.0152%" height="15" fill="rgb(205,194,25)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="639.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="613" width="0.0152%" height="15" fill="rgb(215,203,17)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="623.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="597" width="0.0152%" height="15" fill="rgb(233,112,49)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="607.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="581" width="0.0152%" height="15" fill="rgb(241,130,26)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="591.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="565" width="0.0152%" height="15" fill="rgb(252,223,19)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="575.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="549" width="0.0152%" height="15" fill="rgb(211,95,25)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="559.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="533" width="0.0152%" height="15" fill="rgb(251,182,27)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="543.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="517" width="0.0152%" height="15" fill="rgb(238,24,4)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="527.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="501" width="0.0152%" height="15" fill="rgb(224,220,25)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="511.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="485" width="0.0152%" height="15" fill="rgb(239,133,26)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="495.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="469" width="0.0152%" height="15" fill="rgb(211,94,48)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="479.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="453" width="0.0152%" height="15" fill="rgb(239,87,6)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="463.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="437" width="0.0152%" height="15" fill="rgb(227,62,0)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="447.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="421" width="0.0152%" height="15" fill="rgb(211,226,4)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="431.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="405" width="0.0152%" height="15" fill="rgb(253,38,52)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="415.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="389" width="0.0152%" height="15" fill="rgb(229,126,40)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="399.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="373" width="0.0152%" height="15" fill="rgb(229,165,44)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="383.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="357" width="0.0152%" height="15" fill="rgb(247,95,47)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="367.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="341" width="0.0152%" height="15" fill="rgb(216,140,30)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="351.50"></text></g><g><title>expand_words (55 samples, 0.02%)</title><rect x="31.9107%" y="325" width="0.0152%" height="15" fill="rgb(246,214,8)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="335.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="309" width="0.0152%" height="15" fill="rgb(227,224,15)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="319.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="293" width="0.0152%" height="15" fill="rgb(233,175,4)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="303.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="277" width="0.0152%" height="15" fill="rgb(221,66,45)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="287.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="261" width="0.0152%" height="15" fill="rgb(221,178,18)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="271.50"></text></g><g><title>command_substitute (55 samples, 0.02%)</title><rect x="31.9107%" y="245" width="0.0152%" height="15" fill="rgb(213,81,29)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="255.50"></text></g><g><title>parse_and_execute (54 samples, 0.01%)</title><rect x="31.9110%" y="229" width="0.0149%" height="15" fill="rgb(220,89,49)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="239.50"></text></g><g><title>execute_command_internal (54 samples, 0.01%)</title><rect x="31.9110%" y="213" width="0.0149%" height="15" fill="rgb(227,60,33)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="223.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="31.9110%" y="197" width="0.0149%" height="15" fill="rgb(205,113,12)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="207.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="31.9110%" y="181" width="0.0149%" height="15" fill="rgb(211,32,1)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="191.50"></text></g><g><title>execute_command_internal (54 samples, 0.01%)</title><rect x="31.9110%" y="165" width="0.0149%" height="15" fill="rgb(246,2,12)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="175.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="31.9110%" y="149" width="0.0149%" height="15" fill="rgb(243,37,27)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="159.50"></text></g><g><title>shell_execve (38 samples, 0.01%)</title><rect x="31.9154%" y="133" width="0.0105%" height="15" fill="rgb(248,211,31)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="143.50"></text></g><g><title>__GI_execve (38 samples, 0.01%)</title><rect x="31.9154%" y="117" width="0.0105%" height="15" fill="rgb(242,146,47)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="127.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="31.9154%" y="101" width="0.0105%" height="15" fill="rgb(206,70,20)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="111.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="31.9154%" y="85" width="0.0105%" height="15" fill="rgb(215,10,51)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="95.50"></text></g><g><title>__x64_sys_execve (38 samples, 0.01%)</title><rect x="31.9154%" y="69" width="0.0105%" height="15" fill="rgb(243,178,53)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="79.50"></text></g><g><title>do_execveat_common (38 samples, 0.01%)</title><rect x="31.9154%" y="53" width="0.0105%" height="15" fill="rgb(233,221,20)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="63.50"></text></g><g><title>bprm_execve (37 samples, 0.01%)</title><rect x="31.9157%" y="37" width="0.0102%" height="15" fill="rgb(218,95,35)" fg:x="115618" fg:w="37"/><text x="32.1657%" y="47.50"></text></g><g><title>[bash] (134 samples, 0.04%)</title><rect x="31.8903%" y="805" width="0.0370%" height="15" fill="rgb(229,13,5)" fg:x="115526" fg:w="134"/><text x="32.1403%" y="815.50"></text></g><g><title>execute_command_internal (80 samples, 0.02%)</title><rect x="31.9052%" y="789" width="0.0221%" height="15" fill="rgb(252,164,30)" fg:x="115580" fg:w="80"/><text x="32.1552%" y="799.50"></text></g><g><title>execute_command_internal (69 samples, 0.02%)</title><rect x="31.9082%" y="773" width="0.0190%" height="15" fill="rgb(232,68,36)" fg:x="115591" fg:w="69"/><text x="32.1582%" y="783.50"></text></g><g><title>[bash] (69 samples, 0.02%)</title><rect x="31.9082%" y="757" width="0.0190%" height="15" fill="rgb(219,59,54)" fg:x="115591" fg:w="69"/><text x="32.1582%" y="767.50"></text></g><g><title>arch_fork (52 samples, 0.01%)</title><rect x="31.9306%" y="149" width="0.0144%" height="15" fill="rgb(250,92,33)" fg:x="115672" fg:w="52"/><text x="32.1806%" y="159.50"></text></g><g><title>make_child (54 samples, 0.01%)</title><rect x="31.9306%" y="181" width="0.0149%" height="15" fill="rgb(229,162,54)" fg:x="115672" fg:w="54"/><text x="32.1806%" y="191.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="31.9306%" y="165" width="0.0149%" height="15" fill="rgb(244,114,52)" fg:x="115672" fg:w="54"/><text x="32.1806%" y="175.50"></text></g><g><title>execute_command (67 samples, 0.02%)</title><rect x="31.9278%" y="773" width="0.0185%" height="15" fill="rgb(212,211,43)" fg:x="115662" fg:w="67"/><text x="32.1778%" y="783.50"></text></g><g><title>execute_command_internal (67 samples, 0.02%)</title><rect x="31.9278%" y="757" width="0.0185%" height="15" fill="rgb(226,147,8)" fg:x="115662" fg:w="67"/><text x="32.1778%" y="767.50"></text></g><g><title>[bash] (67 samples, 0.02%)</title><rect x="31.9278%" y="741" width="0.0185%" height="15" fill="rgb(226,23,13)" fg:x="115662" fg:w="67"/><text x="32.1778%" y="751.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="725" width="0.0179%" height="15" fill="rgb(240,63,4)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="735.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="709" width="0.0179%" height="15" fill="rgb(221,1,32)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="719.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="693" width="0.0179%" height="15" fill="rgb(242,117,10)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="703.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="677" width="0.0179%" height="15" fill="rgb(249,172,44)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="687.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="661" width="0.0179%" height="15" fill="rgb(244,46,45)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="671.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="645" width="0.0179%" height="15" fill="rgb(206,43,17)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="655.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="629" width="0.0179%" height="15" fill="rgb(239,218,39)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="639.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="613" width="0.0179%" height="15" fill="rgb(208,169,54)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="623.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="597" width="0.0179%" height="15" fill="rgb(247,25,42)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="607.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="581" width="0.0179%" height="15" fill="rgb(226,23,31)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="591.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="565" width="0.0179%" height="15" fill="rgb(247,16,28)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="575.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="549" width="0.0179%" height="15" fill="rgb(231,147,38)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="559.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="533" width="0.0179%" height="15" fill="rgb(253,81,48)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="543.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="517" width="0.0179%" height="15" fill="rgb(249,222,43)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="527.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="501" width="0.0179%" height="15" fill="rgb(221,3,27)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="511.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="485" width="0.0179%" height="15" fill="rgb(228,180,5)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="495.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="469" width="0.0179%" height="15" fill="rgb(227,131,42)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="479.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="453" width="0.0179%" height="15" fill="rgb(212,3,39)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="463.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="437" width="0.0179%" height="15" fill="rgb(226,45,5)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="447.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="421" width="0.0179%" height="15" fill="rgb(215,167,45)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="431.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="405" width="0.0179%" height="15" fill="rgb(250,218,53)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="415.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="389" width="0.0179%" height="15" fill="rgb(207,140,0)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="399.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="373" width="0.0179%" height="15" fill="rgb(238,133,51)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="383.50"></text></g><g><title>expand_words (65 samples, 0.02%)</title><rect x="31.9284%" y="357" width="0.0179%" height="15" fill="rgb(218,203,53)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="367.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="341" width="0.0179%" height="15" fill="rgb(226,184,25)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="351.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="325" width="0.0179%" height="15" fill="rgb(231,121,21)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="335.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="309" width="0.0179%" height="15" fill="rgb(251,14,34)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="319.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="293" width="0.0179%" height="15" fill="rgb(249,193,11)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="303.50"></text></g><g><title>command_substitute (65 samples, 0.02%)</title><rect x="31.9284%" y="277" width="0.0179%" height="15" fill="rgb(220,172,37)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="287.50"></text></g><g><title>parse_and_execute (65 samples, 0.02%)</title><rect x="31.9284%" y="261" width="0.0179%" height="15" fill="rgb(231,229,43)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="271.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="245" width="0.0179%" height="15" fill="rgb(250,161,5)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="255.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="229" width="0.0179%" height="15" fill="rgb(218,225,18)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="239.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="213" width="0.0179%" height="15" fill="rgb(245,45,42)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="223.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="197" width="0.0179%" height="15" fill="rgb(211,115,1)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="207.50"></text></g><g><title>execute_command_internal (206 samples, 0.06%)</title><rect x="31.8900%" y="821" width="0.0569%" height="15" fill="rgb(248,133,52)" fg:x="115525" fg:w="206"/><text x="32.1400%" y="831.50"></text></g><g><title>execute_command_internal (69 samples, 0.02%)</title><rect x="31.9278%" y="805" width="0.0190%" height="15" fill="rgb(238,100,21)" fg:x="115662" fg:w="69"/><text x="32.1778%" y="815.50"></text></g><g><title>[bash] (69 samples, 0.02%)</title><rect x="31.9278%" y="789" width="0.0190%" height="15" fill="rgb(247,144,11)" fg:x="115662" fg:w="69"/><text x="32.1778%" y="799.50"></text></g><g><title>main (41 samples, 0.01%)</title><rect x="31.9474%" y="821" width="0.0113%" height="15" fill="rgb(206,164,16)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="831.50"></text></g><g><title>reader_loop (41 samples, 0.01%)</title><rect x="31.9474%" y="805" width="0.0113%" height="15" fill="rgb(222,34,3)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="815.50"></text></g><g><title>execute_command (41 samples, 0.01%)</title><rect x="31.9474%" y="789" width="0.0113%" height="15" fill="rgb(248,82,4)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="799.50"></text></g><g><title>execute_command_internal (41 samples, 0.01%)</title><rect x="31.9474%" y="773" width="0.0113%" height="15" fill="rgb(228,81,46)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="783.50"></text></g><g><title>[bash] (41 samples, 0.01%)</title><rect x="31.9474%" y="757" width="0.0113%" height="15" fill="rgb(227,67,47)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="767.50"></text></g><g><title>[unknown] (406 samples, 0.11%)</title><rect x="31.8505%" y="837" width="0.1121%" height="15" fill="rgb(215,93,53)" fg:x="115382" fg:w="406"/><text x="32.1005%" y="847.50"></text></g><g><title>__libc_fork (37 samples, 0.01%)</title><rect x="31.9921%" y="677" width="0.0102%" height="15" fill="rgb(248,194,39)" fg:x="115895" fg:w="37"/><text x="32.2421%" y="687.50"></text></g><g><title>make_child (40 samples, 0.01%)</title><rect x="31.9921%" y="693" width="0.0110%" height="15" fill="rgb(215,5,19)" fg:x="115895" fg:w="40"/><text x="32.2421%" y="703.50"></text></g><g><title>execute_command (98 samples, 0.03%)</title><rect x="31.9794%" y="725" width="0.0271%" height="15" fill="rgb(226,215,51)" fg:x="115849" fg:w="98"/><text x="32.2294%" y="735.50"></text></g><g><title>execute_command_internal (98 samples, 0.03%)</title><rect x="31.9794%" y="709" width="0.0271%" height="15" fill="rgb(225,56,26)" fg:x="115849" fg:w="98"/><text x="32.2294%" y="719.50"></text></g><g><title>[bash] (144 samples, 0.04%)</title><rect x="31.9783%" y="741" width="0.0398%" height="15" fill="rgb(222,75,29)" fg:x="115845" fg:w="144"/><text x="32.2283%" y="751.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="485" width="0.0102%" height="15" fill="rgb(236,139,6)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="495.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="469" width="0.0102%" height="15" fill="rgb(223,137,36)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="479.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="453" width="0.0102%" height="15" fill="rgb(226,99,2)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="463.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="437" width="0.0102%" height="15" fill="rgb(206,133,23)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="447.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="421" width="0.0102%" height="15" fill="rgb(243,173,15)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="431.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="32.0286%" y="517" width="0.0116%" height="15" fill="rgb(228,69,28)" fg:x="116027" fg:w="42"/><text x="32.2786%" y="527.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="32.0286%" y="501" width="0.0116%" height="15" fill="rgb(212,51,22)" fg:x="116027" fg:w="42"/><text x="32.2786%" y="511.50"></text></g><g><title>copy_command (43 samples, 0.01%)</title><rect x="32.0286%" y="533" width="0.0119%" height="15" fill="rgb(227,113,0)" fg:x="116027" fg:w="43"/><text x="32.2786%" y="543.50"></text></g><g><title>copy_command (46 samples, 0.01%)</title><rect x="32.0280%" y="549" width="0.0127%" height="15" fill="rgb(252,84,27)" fg:x="116025" fg:w="46"/><text x="32.2780%" y="559.50"></text></g><g><title>copy_command (48 samples, 0.01%)</title><rect x="32.0280%" y="565" width="0.0133%" height="15" fill="rgb(223,145,39)" fg:x="116025" fg:w="48"/><text x="32.2780%" y="575.50"></text></g><g><title>copy_command (69 samples, 0.02%)</title><rect x="32.0225%" y="597" width="0.0190%" height="15" fill="rgb(239,219,30)" fg:x="116005" fg:w="69"/><text x="32.2725%" y="607.50"></text></g><g><title>copy_command (66 samples, 0.02%)</title><rect x="32.0233%" y="581" width="0.0182%" height="15" fill="rgb(224,196,39)" fg:x="116008" fg:w="66"/><text x="32.2733%" y="591.50"></text></g><g><title>copy_command (73 samples, 0.02%)</title><rect x="32.0222%" y="613" width="0.0202%" height="15" fill="rgb(205,35,43)" fg:x="116004" fg:w="73"/><text x="32.2722%" y="623.50"></text></g><g><title>copy_command (77 samples, 0.02%)</title><rect x="32.0222%" y="629" width="0.0213%" height="15" fill="rgb(228,201,21)" fg:x="116004" fg:w="77"/><text x="32.2722%" y="639.50"></text></g><g><title>copy_command (87 samples, 0.02%)</title><rect x="32.0200%" y="645" width="0.0240%" height="15" fill="rgb(237,118,16)" fg:x="115996" fg:w="87"/><text x="32.2700%" y="655.50"></text></g><g><title>copy_command (92 samples, 0.03%)</title><rect x="32.0195%" y="661" width="0.0254%" height="15" fill="rgb(241,17,19)" fg:x="115994" fg:w="92"/><text x="32.2695%" y="671.50"></text></g><g><title>copy_command (101 samples, 0.03%)</title><rect x="32.0184%" y="677" width="0.0279%" height="15" fill="rgb(214,10,25)" fg:x="115990" fg:w="101"/><text x="32.2684%" y="687.50"></text></g><g><title>copy_command (102 samples, 0.03%)</title><rect x="32.0184%" y="693" width="0.0282%" height="15" fill="rgb(238,37,29)" fg:x="115990" fg:w="102"/><text x="32.2684%" y="703.50"></text></g><g><title>copy_command (103 samples, 0.03%)</title><rect x="32.0184%" y="709" width="0.0284%" height="15" fill="rgb(253,83,25)" fg:x="115990" fg:w="103"/><text x="32.2684%" y="719.50"></text></g><g><title>bind_function (105 samples, 0.03%)</title><rect x="32.0181%" y="741" width="0.0290%" height="15" fill="rgb(234,192,12)" fg:x="115989" fg:w="105"/><text x="32.2681%" y="751.50"></text></g><g><title>copy_command (104 samples, 0.03%)</title><rect x="32.0184%" y="725" width="0.0287%" height="15" fill="rgb(241,216,45)" fg:x="115990" fg:w="104"/><text x="32.2684%" y="735.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0575%" y="325" width="0.0102%" height="15" fill="rgb(242,22,33)" fg:x="116132" fg:w="37"/><text x="32.3075%" y="335.50"></text></g><g><title>copy_command (39 samples, 0.01%)</title><rect x="32.0573%" y="357" width="0.0108%" height="15" fill="rgb(231,105,49)" fg:x="116131" fg:w="39"/><text x="32.3073%" y="367.50"></text></g><g><title>copy_command (38 samples, 0.01%)</title><rect x="32.0575%" y="341" width="0.0105%" height="15" fill="rgb(218,204,15)" fg:x="116132" fg:w="38"/><text x="32.3075%" y="351.50"></text></g><g><title>copy_command (40 samples, 0.01%)</title><rect x="32.0573%" y="389" width="0.0110%" height="15" fill="rgb(235,138,41)" fg:x="116131" fg:w="40"/><text x="32.3073%" y="399.50"></text></g><g><title>copy_command (40 samples, 0.01%)</title><rect x="32.0573%" y="373" width="0.0110%" height="15" fill="rgb(246,0,9)" fg:x="116131" fg:w="40"/><text x="32.3073%" y="383.50"></text></g><g><title>copy_command (47 samples, 0.01%)</title><rect x="32.0564%" y="421" width="0.0130%" height="15" fill="rgb(210,74,4)" fg:x="116128" fg:w="47"/><text x="32.3064%" y="431.50"></text></g><g><title>copy_command (45 samples, 0.01%)</title><rect x="32.0570%" y="405" width="0.0124%" height="15" fill="rgb(250,60,41)" fg:x="116130" fg:w="45"/><text x="32.3070%" y="415.50"></text></g><g><title>copy_command (48 samples, 0.01%)</title><rect x="32.0564%" y="453" width="0.0133%" height="15" fill="rgb(220,115,12)" fg:x="116128" fg:w="48"/><text x="32.3064%" y="463.50"></text></g><g><title>copy_command (48 samples, 0.01%)</title><rect x="32.0564%" y="437" width="0.0133%" height="15" fill="rgb(237,100,13)" fg:x="116128" fg:w="48"/><text x="32.3064%" y="447.50"></text></g><g><title>copy_command (49 samples, 0.01%)</title><rect x="32.0564%" y="469" width="0.0135%" height="15" fill="rgb(213,55,26)" fg:x="116128" fg:w="49"/><text x="32.3064%" y="479.50"></text></g><g><title>copy_command (51 samples, 0.01%)</title><rect x="32.0564%" y="485" width="0.0141%" height="15" fill="rgb(216,17,4)" fg:x="116128" fg:w="51"/><text x="32.3064%" y="495.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="32.0562%" y="501" width="0.0155%" height="15" fill="rgb(220,153,47)" fg:x="116127" fg:w="56"/><text x="32.3062%" y="511.50"></text></g><g><title>copy_command (58 samples, 0.02%)</title><rect x="32.0562%" y="517" width="0.0160%" height="15" fill="rgb(215,131,9)" fg:x="116127" fg:w="58"/><text x="32.3062%" y="527.50"></text></g><g><title>copy_command (59 samples, 0.02%)</title><rect x="32.0562%" y="533" width="0.0163%" height="15" fill="rgb(233,46,42)" fg:x="116127" fg:w="59"/><text x="32.3062%" y="543.50"></text></g><g><title>copy_command (63 samples, 0.02%)</title><rect x="32.0562%" y="549" width="0.0174%" height="15" fill="rgb(226,86,7)" fg:x="116127" fg:w="63"/><text x="32.3062%" y="559.50"></text></g><g><title>copy_command (66 samples, 0.02%)</title><rect x="32.0559%" y="565" width="0.0182%" height="15" fill="rgb(239,226,21)" fg:x="116126" fg:w="66"/><text x="32.3059%" y="575.50"></text></g><g><title>copy_command (83 samples, 0.02%)</title><rect x="32.0518%" y="581" width="0.0229%" height="15" fill="rgb(244,137,22)" fg:x="116111" fg:w="83"/><text x="32.3018%" y="591.50"></text></g><g><title>copy_command (85 samples, 0.02%)</title><rect x="32.0518%" y="597" width="0.0235%" height="15" fill="rgb(211,139,35)" fg:x="116111" fg:w="85"/><text x="32.3018%" y="607.50"></text></g><g><title>copy_command (89 samples, 0.02%)</title><rect x="32.0512%" y="613" width="0.0246%" height="15" fill="rgb(214,62,50)" fg:x="116109" fg:w="89"/><text x="32.3012%" y="623.50"></text></g><g><title>copy_command (93 samples, 0.03%)</title><rect x="32.0506%" y="629" width="0.0257%" height="15" fill="rgb(212,113,44)" fg:x="116107" fg:w="93"/><text x="32.3006%" y="639.50"></text></g><g><title>copy_command (100 samples, 0.03%)</title><rect x="32.0495%" y="645" width="0.0276%" height="15" fill="rgb(226,150,43)" fg:x="116103" fg:w="100"/><text x="32.2995%" y="655.50"></text></g><g><title>copy_command (108 samples, 0.03%)</title><rect x="32.0484%" y="661" width="0.0298%" height="15" fill="rgb(250,71,37)" fg:x="116099" fg:w="108"/><text x="32.2984%" y="671.50"></text></g><g><title>copy_command (112 samples, 0.03%)</title><rect x="32.0479%" y="677" width="0.0309%" height="15" fill="rgb(219,76,19)" fg:x="116097" fg:w="112"/><text x="32.2979%" y="687.50"></text></g><g><title>copy_command (113 samples, 0.03%)</title><rect x="32.0479%" y="693" width="0.0312%" height="15" fill="rgb(250,39,11)" fg:x="116097" fg:w="113"/><text x="32.2979%" y="703.50"></text></g><g><title>copy_command (114 samples, 0.03%)</title><rect x="32.0479%" y="725" width="0.0315%" height="15" fill="rgb(230,64,31)" fg:x="116097" fg:w="114"/><text x="32.2979%" y="735.50"></text></g><g><title>copy_command (114 samples, 0.03%)</title><rect x="32.0479%" y="709" width="0.0315%" height="15" fill="rgb(208,222,23)" fg:x="116097" fg:w="114"/><text x="32.2979%" y="719.50"></text></g><g><title>copy_function_def_contents (118 samples, 0.03%)</title><rect x="32.0476%" y="741" width="0.0326%" height="15" fill="rgb(227,125,18)" fg:x="116096" fg:w="118"/><text x="32.2976%" y="751.50"></text></g><g><title>arch_fork (45 samples, 0.01%)</title><rect x="32.0937%" y="629" width="0.0124%" height="15" fill="rgb(234,210,9)" fg:x="116263" fg:w="45"/><text x="32.3437%" y="639.50"></text></g><g><title>__libc_fork (46 samples, 0.01%)</title><rect x="32.0937%" y="645" width="0.0127%" height="15" fill="rgb(217,127,24)" fg:x="116263" fg:w="46"/><text x="32.3437%" y="655.50"></text></g><g><title>make_child (48 samples, 0.01%)</title><rect x="32.0937%" y="661" width="0.0133%" height="15" fill="rgb(239,141,48)" fg:x="116263" fg:w="48"/><text x="32.3437%" y="671.50"></text></g><g><title>parse_and_execute (80 samples, 0.02%)</title><rect x="32.1070%" y="661" width="0.0221%" height="15" fill="rgb(227,109,8)" fg:x="116311" fg:w="80"/><text x="32.3570%" y="671.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="32.1083%" y="645" width="0.0207%" height="15" fill="rgb(235,184,23)" fg:x="116316" fg:w="75"/><text x="32.3583%" y="655.50"></text></g><g><title>expand_word_leave_quoted (169 samples, 0.05%)</title><rect x="32.0898%" y="709" width="0.0467%" height="15" fill="rgb(227,226,48)" fg:x="116249" fg:w="169"/><text x="32.3398%" y="719.50"></text></g><g><title>[bash] (169 samples, 0.05%)</title><rect x="32.0898%" y="693" width="0.0467%" height="15" fill="rgb(206,150,11)" fg:x="116249" fg:w="169"/><text x="32.3398%" y="703.50"></text></g><g><title>command_substitute (169 samples, 0.05%)</title><rect x="32.0898%" y="677" width="0.0467%" height="15" fill="rgb(254,2,33)" fg:x="116249" fg:w="169"/><text x="32.3398%" y="687.50"></text></g><g><title>execute_command (216 samples, 0.06%)</title><rect x="32.0805%" y="741" width="0.0596%" height="15" fill="rgb(243,160,20)" fg:x="116215" fg:w="216"/><text x="32.3305%" y="751.50"></text></g><g><title>execute_command_internal (215 samples, 0.06%)</title><rect x="32.0807%" y="725" width="0.0593%" height="15" fill="rgb(218,208,30)" fg:x="116216" fg:w="215"/><text x="32.3307%" y="735.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="32.1580%" y="565" width="0.0149%" height="15" fill="rgb(224,120,49)" fg:x="116496" fg:w="54"/><text x="32.4080%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.01%)</title><rect x="32.1876%" y="469" width="0.0133%" height="15" fill="rgb(246,12,2)" fg:x="116603" fg:w="48"/><text x="32.4376%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.01%)</title><rect x="32.1878%" y="453" width="0.0130%" height="15" fill="rgb(236,117,3)" fg:x="116604" fg:w="47"/><text x="32.4378%" y="463.50"></text></g><g><title>native_write_msr (46 samples, 0.01%)</title><rect x="32.1881%" y="437" width="0.0127%" height="15" fill="rgb(216,128,52)" fg:x="116605" fg:w="46"/><text x="32.4381%" y="447.50"></text></g><g><title>ret_from_fork (56 samples, 0.02%)</title><rect x="32.1859%" y="517" width="0.0155%" height="15" fill="rgb(246,145,19)" fg:x="116597" fg:w="56"/><text x="32.4359%" y="527.50"></text></g><g><title>schedule_tail (56 samples, 0.02%)</title><rect x="32.1859%" y="501" width="0.0155%" height="15" fill="rgb(222,11,46)" fg:x="116597" fg:w="56"/><text x="32.4359%" y="511.50"></text></g><g><title>finish_task_switch (52 samples, 0.01%)</title><rect x="32.1870%" y="485" width="0.0144%" height="15" fill="rgb(245,82,36)" fg:x="116601" fg:w="52"/><text x="32.4370%" y="495.50"></text></g><g><title>arch_fork (83 samples, 0.02%)</title><rect x="32.1787%" y="533" width="0.0229%" height="15" fill="rgb(250,73,51)" fg:x="116571" fg:w="83"/><text x="32.4287%" y="543.50"></text></g><g><title>__libc_fork (87 samples, 0.02%)</title><rect x="32.1782%" y="549" width="0.0240%" height="15" fill="rgb(221,189,23)" fg:x="116569" fg:w="87"/><text x="32.4282%" y="559.50"></text></g><g><title>make_child (90 samples, 0.02%)</title><rect x="32.1782%" y="565" width="0.0248%" height="15" fill="rgb(210,33,7)" fg:x="116569" fg:w="90"/><text x="32.4282%" y="575.50"></text></g><g><title>[bash] (195 samples, 0.05%)</title><rect x="32.1561%" y="613" width="0.0538%" height="15" fill="rgb(210,107,22)" fg:x="116489" fg:w="195"/><text x="32.4061%" y="623.50"></text></g><g><title>[bash] (195 samples, 0.05%)</title><rect x="32.1561%" y="597" width="0.0538%" height="15" fill="rgb(222,116,37)" fg:x="116489" fg:w="195"/><text x="32.4061%" y="607.50"></text></g><g><title>execute_command_internal (189 samples, 0.05%)</title><rect x="32.1578%" y="581" width="0.0522%" height="15" fill="rgb(254,17,48)" fg:x="116495" fg:w="189"/><text x="32.4078%" y="591.50"></text></g><g><title>execute_command_internal (196 samples, 0.05%)</title><rect x="32.1561%" y="629" width="0.0541%" height="15" fill="rgb(224,36,32)" fg:x="116489" fg:w="196"/><text x="32.4061%" y="639.50"></text></g><g><title>parse_and_execute (204 samples, 0.06%)</title><rect x="32.1547%" y="645" width="0.0563%" height="15" fill="rgb(232,90,46)" fg:x="116484" fg:w="204"/><text x="32.4047%" y="655.50"></text></g><g><title>command_substitute (258 samples, 0.07%)</title><rect x="32.1428%" y="661" width="0.0712%" height="15" fill="rgb(241,66,40)" fg:x="116441" fg:w="258"/><text x="32.3928%" y="671.50"></text></g><g><title>[bash] (267 samples, 0.07%)</title><rect x="32.1409%" y="677" width="0.0737%" height="15" fill="rgb(249,184,29)" fg:x="116434" fg:w="267"/><text x="32.3909%" y="687.50"></text></g><g><title>[bash] (269 samples, 0.07%)</title><rect x="32.1409%" y="693" width="0.0743%" height="15" fill="rgb(231,181,1)" fg:x="116434" fg:w="269"/><text x="32.3909%" y="703.50"></text></g><g><title>[bash] (272 samples, 0.08%)</title><rect x="32.1406%" y="709" width="0.0751%" height="15" fill="rgb(224,94,2)" fg:x="116433" fg:w="272"/><text x="32.3906%" y="719.50"></text></g><g><title>expand_words (278 samples, 0.08%)</title><rect x="32.1404%" y="741" width="0.0767%" height="15" fill="rgb(229,170,15)" fg:x="116432" fg:w="278"/><text x="32.3904%" y="751.50"></text></g><g><title>[bash] (278 samples, 0.08%)</title><rect x="32.1404%" y="725" width="0.0767%" height="15" fill="rgb(240,127,35)" fg:x="116432" fg:w="278"/><text x="32.3904%" y="735.50"></text></g><g><title>execute_command (873 samples, 0.24%)</title><rect x="31.9772%" y="773" width="0.2410%" height="15" fill="rgb(248,196,34)" fg:x="115841" fg:w="873"/><text x="32.2272%" y="783.50"></text></g><g><title>execute_command_internal (870 samples, 0.24%)</title><rect x="31.9780%" y="757" width="0.2402%" height="15" fill="rgb(236,137,7)" fg:x="115844" fg:w="870"/><text x="32.2280%" y="767.50"></text></g><g><title>[bash] (64 samples, 0.02%)</title><rect x="32.3314%" y="693" width="0.0177%" height="15" fill="rgb(235,127,16)" fg:x="117124" fg:w="64"/><text x="32.5814%" y="703.50"></text></g><g><title>buffered_getchar (90 samples, 0.02%)</title><rect x="32.3507%" y="693" width="0.0248%" height="15" fill="rgb(250,192,54)" fg:x="117194" fg:w="90"/><text x="32.6007%" y="703.50"></text></g><g><title>[bash] (369 samples, 0.10%)</title><rect x="32.2753%" y="709" width="0.1019%" height="15" fill="rgb(218,98,20)" fg:x="116921" fg:w="369"/><text x="32.5253%" y="719.50"></text></g><g><title>[bash] (617 samples, 0.17%)</title><rect x="32.2397%" y="725" width="0.1703%" height="15" fill="rgb(230,176,47)" fg:x="116792" fg:w="617"/><text x="32.4897%" y="735.50"></text></g><g><title>reader_loop (1,663 samples, 0.46%)</title><rect x="31.9676%" y="789" width="0.4591%" height="15" fill="rgb(244,2,33)" fg:x="115806" fg:w="1663"/><text x="32.2176%" y="799.50"></text></g><g><title>read_command (755 samples, 0.21%)</title><rect x="32.2182%" y="773" width="0.2084%" height="15" fill="rgb(231,100,17)" fg:x="116714" fg:w="755"/><text x="32.4682%" y="783.50"></text></g><g><title>parse_command (755 samples, 0.21%)</title><rect x="32.2182%" y="757" width="0.2084%" height="15" fill="rgb(245,23,12)" fg:x="116714" fg:w="755"/><text x="32.4682%" y="767.50"></text></g><g><title>yyparse (755 samples, 0.21%)</title><rect x="32.2182%" y="741" width="0.2084%" height="15" fill="rgb(249,55,22)" fg:x="116714" fg:w="755"/><text x="32.4682%" y="751.50"></text></g><g><title>__libc_start_main (1,694 samples, 0.47%)</title><rect x="31.9637%" y="821" width="0.4676%" height="15" fill="rgb(207,134,9)" fg:x="115792" fg:w="1694"/><text x="32.2137%" y="831.50"></text></g><g><title>main (1,694 samples, 0.47%)</title><rect x="31.9637%" y="805" width="0.4676%" height="15" fill="rgb(218,134,0)" fg:x="115792" fg:w="1694"/><text x="32.2137%" y="815.50"></text></g><g><title>_dl_start_final (40 samples, 0.01%)</title><rect x="32.4313%" y="805" width="0.0110%" height="15" fill="rgb(213,212,33)" fg:x="117486" fg:w="40"/><text x="32.6813%" y="815.50"></text></g><g><title>_dl_sysdep_start (40 samples, 0.01%)</title><rect x="32.4313%" y="789" width="0.0110%" height="15" fill="rgb(252,106,18)" fg:x="117486" fg:w="40"/><text x="32.6813%" y="799.50"></text></g><g><title>[ld-2.31.so] (40 samples, 0.01%)</title><rect x="32.4313%" y="773" width="0.0110%" height="15" fill="rgb(208,126,42)" fg:x="117486" fg:w="40"/><text x="32.6813%" y="783.50"></text></g><g><title>_start (1,735 samples, 0.48%)</title><rect x="31.9637%" y="837" width="0.4789%" height="15" fill="rgb(246,175,29)" fg:x="115792" fg:w="1735"/><text x="32.2137%" y="847.50"></text></g><g><title>_dl_start (41 samples, 0.01%)</title><rect x="32.4313%" y="821" width="0.0113%" height="15" fill="rgb(215,13,50)" fg:x="117486" fg:w="41"/><text x="32.6813%" y="831.50"></text></g><g><title>asm_exc_page_fault (46 samples, 0.01%)</title><rect x="32.4426%" y="837" width="0.0127%" height="15" fill="rgb(216,172,15)" fg:x="117527" fg:w="46"/><text x="32.6926%" y="847.50"></text></g><g><title>mmput (97 samples, 0.03%)</title><rect x="32.4628%" y="757" width="0.0268%" height="15" fill="rgb(212,103,13)" fg:x="117600" fg:w="97"/><text x="32.7128%" y="767.50"></text></g><g><title>exit_mmap (97 samples, 0.03%)</title><rect x="32.4628%" y="741" width="0.0268%" height="15" fill="rgb(231,171,36)" fg:x="117600" fg:w="97"/><text x="32.7128%" y="751.50"></text></g><g><title>unmap_vmas (49 samples, 0.01%)</title><rect x="32.4760%" y="725" width="0.0135%" height="15" fill="rgb(250,123,20)" fg:x="117648" fg:w="49"/><text x="32.7260%" y="735.50"></text></g><g><title>unmap_page_range (48 samples, 0.01%)</title><rect x="32.4763%" y="709" width="0.0133%" height="15" fill="rgb(212,53,50)" fg:x="117649" fg:w="48"/><text x="32.7263%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.04%)</title><rect x="32.4556%" y="837" width="0.0356%" height="15" fill="rgb(243,54,12)" fg:x="117574" fg:w="129"/><text x="32.7056%" y="847.50"></text></g><g><title>do_syscall_64 (129 samples, 0.04%)</title><rect x="32.4556%" y="821" width="0.0356%" height="15" fill="rgb(234,101,34)" fg:x="117574" fg:w="129"/><text x="32.7056%" y="831.50"></text></g><g><title>__x64_sys_exit_group (105 samples, 0.03%)</title><rect x="32.4622%" y="805" width="0.0290%" height="15" fill="rgb(254,67,22)" fg:x="117598" fg:w="105"/><text x="32.7122%" y="815.50"></text></g><g><title>do_group_exit (105 samples, 0.03%)</title><rect x="32.4622%" y="789" width="0.0290%" height="15" fill="rgb(250,35,47)" fg:x="117598" fg:w="105"/><text x="32.7122%" y="799.50"></text></g><g><title>do_exit (105 samples, 0.03%)</title><rect x="32.4622%" y="773" width="0.0290%" height="15" fill="rgb(226,126,38)" fg:x="117598" fg:w="105"/><text x="32.7122%" y="783.50"></text></g><g><title>libtool (2,446 samples, 0.68%)</title><rect x="31.8177%" y="853" width="0.6752%" height="15" fill="rgb(216,138,53)" fg:x="115263" fg:w="2446"/><text x="32.0677%" y="863.50"></text></g><g><title>copy_namespaces (45 samples, 0.01%)</title><rect x="32.5114%" y="709" width="0.0124%" height="15" fill="rgb(246,199,43)" fg:x="117776" fg:w="45"/><text x="32.7614%" y="719.50"></text></g><g><title>create_new_namespaces (45 samples, 0.01%)</title><rect x="32.5114%" y="693" width="0.0124%" height="15" fill="rgb(232,125,11)" fg:x="117776" fg:w="45"/><text x="32.7614%" y="703.50"></text></g><g><title>dup_mm (43 samples, 0.01%)</title><rect x="32.5241%" y="709" width="0.0119%" height="15" fill="rgb(218,219,45)" fg:x="117822" fg:w="43"/><text x="32.7741%" y="719.50"></text></g><g><title>copy_process (108 samples, 0.03%)</title><rect x="32.5078%" y="725" width="0.0298%" height="15" fill="rgb(216,102,54)" fg:x="117763" fg:w="108"/><text x="32.7578%" y="735.50"></text></g><g><title>__libc_start_main (112 samples, 0.03%)</title><rect x="32.5075%" y="821" width="0.0309%" height="15" fill="rgb(250,228,7)" fg:x="117762" fg:w="112"/><text x="32.7575%" y="831.50"></text></g><g><title>__GI___clone (112 samples, 0.03%)</title><rect x="32.5075%" y="805" width="0.0309%" height="15" fill="rgb(226,125,25)" fg:x="117762" fg:w="112"/><text x="32.7575%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.03%)</title><rect x="32.5078%" y="789" width="0.0306%" height="15" fill="rgb(224,165,27)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="799.50"></text></g><g><title>do_syscall_64 (111 samples, 0.03%)</title><rect x="32.5078%" y="773" width="0.0306%" height="15" fill="rgb(233,86,3)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="783.50"></text></g><g><title>__do_sys_clone (111 samples, 0.03%)</title><rect x="32.5078%" y="757" width="0.0306%" height="15" fill="rgb(228,116,20)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="767.50"></text></g><g><title>kernel_clone (111 samples, 0.03%)</title><rect x="32.5078%" y="741" width="0.0306%" height="15" fill="rgb(209,192,17)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="751.50"></text></g><g><title>[unknown] (130 samples, 0.04%)</title><rect x="32.5056%" y="837" width="0.0359%" height="15" fill="rgb(224,88,34)" fg:x="117755" fg:w="130"/><text x="32.7556%" y="847.50"></text></g><g><title>WriteFile (50 samples, 0.01%)</title><rect x="32.5489%" y="805" width="0.0138%" height="15" fill="rgb(233,38,6)" fg:x="117912" fg:w="50"/><text x="32.7989%" y="815.50"></text></g><g><title>__GI__IO_default_uflow (71 samples, 0.02%)</title><rect x="32.5657%" y="741" width="0.0196%" height="15" fill="rgb(212,59,30)" fg:x="117973" fg:w="71"/><text x="32.8157%" y="751.50"></text></g><g><title>_IO_new_file_underflow (71 samples, 0.02%)</title><rect x="32.5657%" y="725" width="0.0196%" height="15" fill="rgb(213,80,3)" fg:x="117973" fg:w="71"/><text x="32.8157%" y="735.50"></text></g><g><title>__GI___read_nocancel (68 samples, 0.02%)</title><rect x="32.5666%" y="709" width="0.0188%" height="15" fill="rgb(251,178,7)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="32.5666%" y="693" width="0.0188%" height="15" fill="rgb(213,154,26)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="703.50"></text></g><g><title>do_syscall_64 (68 samples, 0.02%)</title><rect x="32.5666%" y="677" width="0.0188%" height="15" fill="rgb(238,165,49)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="687.50"></text></g><g><title>ksys_read (68 samples, 0.02%)</title><rect x="32.5666%" y="661" width="0.0188%" height="15" fill="rgb(248,91,46)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="671.50"></text></g><g><title>vfs_read (68 samples, 0.02%)</title><rect x="32.5666%" y="645" width="0.0188%" height="15" fill="rgb(244,21,52)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="655.50"></text></g><g><title>new_sync_read (68 samples, 0.02%)</title><rect x="32.5666%" y="629" width="0.0188%" height="15" fill="rgb(247,122,20)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="639.50"></text></g><g><title>seq_read_iter (68 samples, 0.02%)</title><rect x="32.5666%" y="613" width="0.0188%" height="15" fill="rgb(218,27,9)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="623.50"></text></g><g><title>show_vfsmnt (63 samples, 0.02%)</title><rect x="32.5680%" y="597" width="0.0174%" height="15" fill="rgb(246,7,6)" fg:x="117981" fg:w="63"/><text x="32.8180%" y="607.50"></text></g><g><title>__GI___fgets_unlocked (78 samples, 0.02%)</title><rect x="32.5641%" y="773" width="0.0215%" height="15" fill="rgb(227,135,54)" fg:x="117967" fg:w="78"/><text x="32.8141%" y="783.50"></text></g><g><title>__GI__IO_getline_info (77 samples, 0.02%)</title><rect x="32.5644%" y="757" width="0.0213%" height="15" fill="rgb(247,14,11)" fg:x="117968" fg:w="77"/><text x="32.8144%" y="767.50"></text></g><g><title>__GI___getmntent_r (91 samples, 0.03%)</title><rect x="32.5635%" y="805" width="0.0251%" height="15" fill="rgb(206,149,34)" fg:x="117965" fg:w="91"/><text x="32.8135%" y="815.50"></text></g><g><title>get_mnt_entry (90 samples, 0.02%)</title><rect x="32.5638%" y="789" width="0.0248%" height="15" fill="rgb(227,228,4)" fg:x="117966" fg:w="90"/><text x="32.8138%" y="799.50"></text></g><g><title>schedule (76 samples, 0.02%)</title><rect x="32.5950%" y="725" width="0.0210%" height="15" fill="rgb(238,218,28)" fg:x="118079" fg:w="76"/><text x="32.8450%" y="735.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="32.5950%" y="709" width="0.0210%" height="15" fill="rgb(252,86,40)" fg:x="118079" fg:w="76"/><text x="32.8450%" y="719.50"></text></g><g><title>finish_task_switch (75 samples, 0.02%)</title><rect x="32.5953%" y="693" width="0.0207%" height="15" fill="rgb(251,225,11)" fg:x="118080" fg:w="75"/><text x="32.8453%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.02%)</title><rect x="32.5964%" y="677" width="0.0196%" height="15" fill="rgb(206,46,49)" fg:x="118084" fg:w="71"/><text x="32.8464%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.02%)</title><rect x="32.5964%" y="661" width="0.0196%" height="15" fill="rgb(245,128,24)" fg:x="118084" fg:w="71"/><text x="32.8464%" y="671.50"></text></g><g><title>native_write_msr (70 samples, 0.02%)</title><rect x="32.5967%" y="645" width="0.0193%" height="15" fill="rgb(219,177,34)" fg:x="118085" fg:w="70"/><text x="32.8467%" y="655.50"></text></g><g><title>__GI___wait4 (98 samples, 0.03%)</title><rect x="32.5947%" y="805" width="0.0271%" height="15" fill="rgb(218,60,48)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.03%)</title><rect x="32.5947%" y="789" width="0.0271%" height="15" fill="rgb(221,11,5)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="799.50"></text></g><g><title>do_syscall_64 (98 samples, 0.03%)</title><rect x="32.5947%" y="773" width="0.0271%" height="15" fill="rgb(220,148,13)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="783.50"></text></g><g><title>kernel_wait4 (98 samples, 0.03%)</title><rect x="32.5947%" y="757" width="0.0271%" height="15" fill="rgb(210,16,3)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="767.50"></text></g><g><title>do_wait (98 samples, 0.03%)</title><rect x="32.5947%" y="741" width="0.0271%" height="15" fill="rgb(236,80,2)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="751.50"></text></g><g><title>bprm_execve (119 samples, 0.03%)</title><rect x="32.6298%" y="709" width="0.0328%" height="15" fill="rgb(239,129,19)" fg:x="118205" fg:w="119"/><text x="32.8798%" y="719.50"></text></g><g><title>__execvpe_common (145 samples, 0.04%)</title><rect x="32.6268%" y="805" width="0.0400%" height="15" fill="rgb(220,106,35)" fg:x="118194" fg:w="145"/><text x="32.8768%" y="815.50"></text></g><g><title>__GI_execve (140 samples, 0.04%)</title><rect x="32.6281%" y="789" width="0.0386%" height="15" fill="rgb(252,139,45)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (140 samples, 0.04%)</title><rect x="32.6281%" y="773" width="0.0386%" height="15" fill="rgb(229,8,36)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="783.50"></text></g><g><title>do_syscall_64 (140 samples, 0.04%)</title><rect x="32.6281%" y="757" width="0.0386%" height="15" fill="rgb(230,126,33)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="767.50"></text></g><g><title>__x64_sys_execve (140 samples, 0.04%)</title><rect x="32.6281%" y="741" width="0.0386%" height="15" fill="rgb(239,140,21)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="751.50"></text></g><g><title>do_execveat_common (140 samples, 0.04%)</title><rect x="32.6281%" y="725" width="0.0386%" height="15" fill="rgb(254,104,9)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="735.50"></text></g><g><title>dup_mm (59 samples, 0.02%)</title><rect x="32.6701%" y="693" width="0.0163%" height="15" fill="rgb(239,52,14)" fg:x="118351" fg:w="59"/><text x="32.9201%" y="703.50"></text></g><g><title>copy_process (75 samples, 0.02%)</title><rect x="32.6690%" y="709" width="0.0207%" height="15" fill="rgb(208,227,44)" fg:x="118347" fg:w="75"/><text x="32.9190%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="32.6687%" y="773" width="0.0213%" height="15" fill="rgb(246,18,19)" fg:x="118346" fg:w="77"/><text x="32.9187%" y="783.50"></text></g><g><title>do_syscall_64 (76 samples, 0.02%)</title><rect x="32.6690%" y="757" width="0.0210%" height="15" fill="rgb(235,228,25)" fg:x="118347" fg:w="76"/><text x="32.9190%" y="767.50"></text></g><g><title>__do_sys_clone (76 samples, 0.02%)</title><rect x="32.6690%" y="741" width="0.0210%" height="15" fill="rgb(240,156,20)" fg:x="118347" fg:w="76"/><text x="32.9190%" y="751.50"></text></g><g><title>kernel_clone (76 samples, 0.02%)</title><rect x="32.6690%" y="725" width="0.0210%" height="15" fill="rgb(224,8,20)" fg:x="118347" fg:w="76"/><text x="32.9190%" y="735.50"></text></g><g><title>arch_fork (156 samples, 0.04%)</title><rect x="32.6679%" y="789" width="0.0431%" height="15" fill="rgb(214,12,52)" fg:x="118343" fg:w="156"/><text x="32.9179%" y="799.50"></text></g><g><title>ret_from_fork (76 samples, 0.02%)</title><rect x="32.6900%" y="773" width="0.0210%" height="15" fill="rgb(211,220,47)" fg:x="118423" fg:w="76"/><text x="32.9400%" y="783.50"></text></g><g><title>schedule_tail (76 samples, 0.02%)</title><rect x="32.6900%" y="757" width="0.0210%" height="15" fill="rgb(250,173,5)" fg:x="118423" fg:w="76"/><text x="32.9400%" y="767.50"></text></g><g><title>finish_task_switch (66 samples, 0.02%)</title><rect x="32.6927%" y="741" width="0.0182%" height="15" fill="rgb(250,125,52)" fg:x="118433" fg:w="66"/><text x="32.9427%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.02%)</title><rect x="32.6933%" y="725" width="0.0177%" height="15" fill="rgb(209,133,18)" fg:x="118435" fg:w="64"/><text x="32.9433%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.02%)</title><rect x="32.6936%" y="709" width="0.0174%" height="15" fill="rgb(216,173,22)" fg:x="118436" fg:w="63"/><text x="32.9436%" y="719.50"></text></g><g><title>native_write_msr (63 samples, 0.02%)</title><rect x="32.6936%" y="693" width="0.0174%" height="15" fill="rgb(205,3,22)" fg:x="118436" fg:w="63"/><text x="32.9436%" y="703.50"></text></g><g><title>__libc_fork (168 samples, 0.05%)</title><rect x="32.6668%" y="805" width="0.0464%" height="15" fill="rgb(248,22,20)" fg:x="118339" fg:w="168"/><text x="32.9168%" y="815.50"></text></g><g><title>path_mount (48 samples, 0.01%)</title><rect x="32.7242%" y="741" width="0.0133%" height="15" fill="rgb(233,6,29)" fg:x="118547" fg:w="48"/><text x="32.9742%" y="751.50"></text></g><g><title>do_syscall_64 (95 samples, 0.03%)</title><rect x="32.7156%" y="773" width="0.0262%" height="15" fill="rgb(240,22,54)" fg:x="118516" fg:w="95"/><text x="32.9656%" y="783.50"></text></g><g><title>__x64_sys_mount (95 samples, 0.03%)</title><rect x="32.7156%" y="757" width="0.0262%" height="15" fill="rgb(231,133,32)" fg:x="118516" fg:w="95"/><text x="32.9656%" y="767.50"></text></g><g><title>__mount (98 samples, 0.03%)</title><rect x="32.7151%" y="805" width="0.0271%" height="15" fill="rgb(248,193,4)" fg:x="118514" fg:w="98"/><text x="32.9651%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.03%)</title><rect x="32.7156%" y="789" width="0.0265%" height="15" fill="rgb(211,178,46)" fg:x="118516" fg:w="96"/><text x="32.9656%" y="799.50"></text></g><g><title>_dl_runtime_resolve_xsavec (42 samples, 0.01%)</title><rect x="32.7424%" y="805" width="0.0116%" height="15" fill="rgb(224,5,42)" fg:x="118613" fg:w="42"/><text x="32.9924%" y="815.50"></text></g><g><title>Pid1Main (825 samples, 0.23%)</title><rect x="32.5420%" y="821" width="0.2277%" height="15" fill="rgb(239,176,25)" fg:x="117887" fg:w="825"/><text x="32.7920%" y="831.50"></text></g><g><title>schedule_tail (101 samples, 0.03%)</title><rect x="32.7753%" y="805" width="0.0279%" height="15" fill="rgb(245,187,50)" fg:x="118732" fg:w="101"/><text x="33.0253%" y="815.50"></text></g><g><title>finish_task_switch (100 samples, 0.03%)</title><rect x="32.7755%" y="789" width="0.0276%" height="15" fill="rgb(248,24,15)" fg:x="118733" fg:w="100"/><text x="33.0255%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.03%)</title><rect x="32.7764%" y="773" width="0.0268%" height="15" fill="rgb(205,166,13)" fg:x="118736" fg:w="97"/><text x="33.0264%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.03%)</title><rect x="32.7766%" y="757" width="0.0265%" height="15" fill="rgb(208,114,23)" fg:x="118737" fg:w="96"/><text x="33.0266%" y="767.50"></text></g><g><title>native_write_msr (96 samples, 0.03%)</title><rect x="32.7766%" y="741" width="0.0265%" height="15" fill="rgb(239,127,18)" fg:x="118737" fg:w="96"/><text x="33.0266%" y="751.50"></text></g><g><title>__GI___clone (950 samples, 0.26%)</title><rect x="32.5415%" y="837" width="0.2622%" height="15" fill="rgb(219,154,28)" fg:x="117885" fg:w="950"/><text x="32.7915%" y="847.50"></text></g><g><title>ret_from_fork (106 samples, 0.03%)</title><rect x="32.7744%" y="821" width="0.0293%" height="15" fill="rgb(225,157,23)" fg:x="118729" fg:w="106"/><text x="33.0244%" y="831.50"></text></g><g><title>_dl_start_user (44 samples, 0.01%)</title><rect x="32.8048%" y="837" width="0.0121%" height="15" fill="rgb(219,8,6)" fg:x="118839" fg:w="44"/><text x="33.0548%" y="847.50"></text></g><g><title>_dl_init (44 samples, 0.01%)</title><rect x="32.8048%" y="821" width="0.0121%" height="15" fill="rgb(212,47,6)" fg:x="118839" fg:w="44"/><text x="33.0548%" y="831.50"></text></g><g><title>call_init (44 samples, 0.01%)</title><rect x="32.8048%" y="805" width="0.0121%" height="15" fill="rgb(224,190,4)" fg:x="118839" fg:w="44"/><text x="33.0548%" y="815.50"></text></g><g><title>call_init (43 samples, 0.01%)</title><rect x="32.8051%" y="789" width="0.0119%" height="15" fill="rgb(239,183,29)" fg:x="118840" fg:w="43"/><text x="33.0551%" y="799.50"></text></g><g><title>__GI_exit (39 samples, 0.01%)</title><rect x="32.8222%" y="805" width="0.0108%" height="15" fill="rgb(213,57,7)" fg:x="118902" fg:w="39"/><text x="33.0722%" y="815.50"></text></g><g><title>__run_exit_handlers (39 samples, 0.01%)</title><rect x="32.8222%" y="789" width="0.0108%" height="15" fill="rgb(216,148,1)" fg:x="118902" fg:w="39"/><text x="33.0722%" y="799.50"></text></g><g><title>alloc_pages_vma (51 samples, 0.01%)</title><rect x="32.8608%" y="709" width="0.0141%" height="15" fill="rgb(236,182,29)" fg:x="119042" fg:w="51"/><text x="33.1108%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (50 samples, 0.01%)</title><rect x="32.8611%" y="693" width="0.0138%" height="15" fill="rgb(244,120,48)" fg:x="119043" fg:w="50"/><text x="33.1111%" y="703.50"></text></g><g><title>get_page_from_freelist (46 samples, 0.01%)</title><rect x="32.8622%" y="677" width="0.0127%" height="15" fill="rgb(206,71,34)" fg:x="119047" fg:w="46"/><text x="33.1122%" y="687.50"></text></g><g><title>exc_page_fault (113 samples, 0.03%)</title><rect x="32.8539%" y="757" width="0.0312%" height="15" fill="rgb(242,32,6)" fg:x="119017" fg:w="113"/><text x="33.1039%" y="767.50"></text></g><g><title>do_user_addr_fault (112 samples, 0.03%)</title><rect x="32.8542%" y="741" width="0.0309%" height="15" fill="rgb(241,35,3)" fg:x="119018" fg:w="112"/><text x="33.1042%" y="751.50"></text></g><g><title>handle_mm_fault (107 samples, 0.03%)</title><rect x="32.8556%" y="725" width="0.0295%" height="15" fill="rgb(222,62,19)" fg:x="119023" fg:w="107"/><text x="33.1056%" y="735.50"></text></g><g><title>asm_exc_page_fault (115 samples, 0.03%)</title><rect x="32.8537%" y="773" width="0.0317%" height="15" fill="rgb(223,110,41)" fg:x="119016" fg:w="115"/><text x="33.1037%" y="783.50"></text></g><g><title>[libc-2.31.so] (146 samples, 0.04%)</title><rect x="32.8492%" y="789" width="0.0403%" height="15" fill="rgb(208,224,4)" fg:x="119000" fg:w="146"/><text x="33.0992%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.01%)</title><rect x="32.9119%" y="629" width="0.0124%" height="15" fill="rgb(241,137,19)" fg:x="119227" fg:w="45"/><text x="33.1619%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.01%)</title><rect x="32.9119%" y="613" width="0.0124%" height="15" fill="rgb(244,24,17)" fg:x="119227" fg:w="45"/><text x="33.1619%" y="623.50"></text></g><g><title>native_write_msr (45 samples, 0.01%)</title><rect x="32.9119%" y="597" width="0.0124%" height="15" fill="rgb(245,178,49)" fg:x="119227" fg:w="45"/><text x="33.1619%" y="607.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="32.9116%" y="677" width="0.0130%" height="15" fill="rgb(219,160,38)" fg:x="119226" fg:w="47"/><text x="33.1616%" y="687.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="32.9116%" y="661" width="0.0130%" height="15" fill="rgb(228,137,14)" fg:x="119226" fg:w="47"/><text x="33.1616%" y="671.50"></text></g><g><title>finish_task_switch (46 samples, 0.01%)</title><rect x="32.9119%" y="645" width="0.0127%" height="15" fill="rgb(237,134,11)" fg:x="119227" fg:w="46"/><text x="33.1619%" y="655.50"></text></g><g><title>__libc_read (53 samples, 0.01%)</title><rect x="32.9102%" y="789" width="0.0146%" height="15" fill="rgb(211,126,44)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="32.9102%" y="773" width="0.0146%" height="15" fill="rgb(226,171,33)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="783.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="32.9102%" y="757" width="0.0146%" height="15" fill="rgb(253,99,13)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="767.50"></text></g><g><title>ksys_read (53 samples, 0.01%)</title><rect x="32.9102%" y="741" width="0.0146%" height="15" fill="rgb(244,48,7)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="751.50"></text></g><g><title>vfs_read (53 samples, 0.01%)</title><rect x="32.9102%" y="725" width="0.0146%" height="15" fill="rgb(244,217,54)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="735.50"></text></g><g><title>new_sync_read (53 samples, 0.01%)</title><rect x="32.9102%" y="709" width="0.0146%" height="15" fill="rgb(224,15,18)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="719.50"></text></g><g><title>pipe_read (53 samples, 0.01%)</title><rect x="32.9102%" y="693" width="0.0146%" height="15" fill="rgb(244,99,12)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="703.50"></text></g><g><title>__libc_start_main (393 samples, 0.11%)</title><rect x="32.8222%" y="821" width="0.1085%" height="15" fill="rgb(233,226,8)" fg:x="118902" fg:w="393"/><text x="33.0722%" y="831.50"></text></g><g><title>main (320 samples, 0.09%)</title><rect x="32.8423%" y="805" width="0.0883%" height="15" fill="rgb(229,211,3)" fg:x="118975" fg:w="320"/><text x="33.0923%" y="815.50"></text></g><g><title>__do_munmap (60 samples, 0.02%)</title><rect x="32.9494%" y="533" width="0.0166%" height="15" fill="rgb(216,140,21)" fg:x="119363" fg:w="60"/><text x="33.1994%" y="543.50"></text></g><g><title>do_mmap (96 samples, 0.03%)</title><rect x="32.9486%" y="565" width="0.0265%" height="15" fill="rgb(234,122,30)" fg:x="119360" fg:w="96"/><text x="33.1986%" y="575.50"></text></g><g><title>mmap_region (94 samples, 0.03%)</title><rect x="32.9492%" y="549" width="0.0259%" height="15" fill="rgb(236,25,46)" fg:x="119362" fg:w="94"/><text x="33.1992%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (99 samples, 0.03%)</title><rect x="32.9483%" y="597" width="0.0273%" height="15" fill="rgb(217,52,54)" fg:x="119359" fg:w="99"/><text x="33.1983%" y="607.50"></text></g><g><title>vm_mmap_pgoff (99 samples, 0.03%)</title><rect x="32.9483%" y="581" width="0.0273%" height="15" fill="rgb(222,29,26)" fg:x="119359" fg:w="99"/><text x="33.1983%" y="591.50"></text></g><g><title>do_syscall_64 (108 samples, 0.03%)</title><rect x="32.9483%" y="613" width="0.0298%" height="15" fill="rgb(216,177,29)" fg:x="119359" fg:w="108"/><text x="33.1983%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.03%)</title><rect x="32.9483%" y="629" width="0.0301%" height="15" fill="rgb(247,136,51)" fg:x="119359" fg:w="109"/><text x="33.1983%" y="639.50"></text></g><g><title>_dl_map_segments (122 samples, 0.03%)</title><rect x="32.9450%" y="677" width="0.0337%" height="15" fill="rgb(231,47,47)" fg:x="119347" fg:w="122"/><text x="33.1950%" y="687.50"></text></g><g><title>__mmap64 (111 samples, 0.03%)</title><rect x="32.9481%" y="661" width="0.0306%" height="15" fill="rgb(211,192,36)" fg:x="119358" fg:w="111"/><text x="33.1981%" y="671.50"></text></g><g><title>__mmap64 (111 samples, 0.03%)</title><rect x="32.9481%" y="645" width="0.0306%" height="15" fill="rgb(229,156,32)" fg:x="119358" fg:w="111"/><text x="33.1981%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (159 samples, 0.04%)</title><rect x="32.9425%" y="693" width="0.0439%" height="15" fill="rgb(248,213,20)" fg:x="119338" fg:w="159"/><text x="33.1925%" y="703.50"></text></g><g><title>_dl_catch_exception (222 samples, 0.06%)</title><rect x="32.9351%" y="741" width="0.0613%" height="15" fill="rgb(217,64,7)" fg:x="119311" fg:w="222"/><text x="33.1851%" y="751.50"></text></g><g><title>openaux (222 samples, 0.06%)</title><rect x="32.9351%" y="725" width="0.0613%" height="15" fill="rgb(232,142,8)" fg:x="119311" fg:w="222"/><text x="33.1851%" y="735.50"></text></g><g><title>_dl_map_object (222 samples, 0.06%)</title><rect x="32.9351%" y="709" width="0.0613%" height="15" fill="rgb(224,92,44)" fg:x="119311" fg:w="222"/><text x="33.1851%" y="719.50"></text></g><g><title>_dl_map_object_deps (231 samples, 0.06%)</title><rect x="32.9348%" y="757" width="0.0638%" height="15" fill="rgb(214,169,17)" fg:x="119310" fg:w="231"/><text x="33.1848%" y="767.50"></text></g><g><title>dl_new_hash (90 samples, 0.02%)</title><rect x="33.0353%" y="693" width="0.0248%" height="15" fill="rgb(210,59,37)" fg:x="119674" fg:w="90"/><text x="33.2853%" y="703.50"></text></g><g><title>check_match (43 samples, 0.01%)</title><rect x="33.1098%" y="677" width="0.0119%" height="15" fill="rgb(214,116,48)" fg:x="119944" fg:w="43"/><text x="33.3598%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (336 samples, 0.09%)</title><rect x="33.0320%" y="709" width="0.0928%" height="15" fill="rgb(244,191,6)" fg:x="119662" fg:w="336"/><text x="33.2820%" y="719.50"></text></g><g><title>do_lookup_x (234 samples, 0.06%)</title><rect x="33.0601%" y="693" width="0.0646%" height="15" fill="rgb(241,50,52)" fg:x="119764" fg:w="234"/><text x="33.3101%" y="703.50"></text></g><g><title>elf_machine_rela (398 samples, 0.11%)</title><rect x="33.0160%" y="725" width="0.1099%" height="15" fill="rgb(236,75,39)" fg:x="119604" fg:w="398"/><text x="33.2660%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (446 samples, 0.12%)</title><rect x="33.0077%" y="741" width="0.1231%" height="15" fill="rgb(236,99,0)" fg:x="119574" fg:w="446"/><text x="33.2577%" y="751.50"></text></g><g><title>_dl_relocate_object (466 samples, 0.13%)</title><rect x="33.0027%" y="757" width="0.1286%" height="15" fill="rgb(207,202,15)" fg:x="119556" fg:w="466"/><text x="33.2527%" y="767.50"></text></g><g><title>[ld-2.31.so] (737 samples, 0.20%)</title><rect x="32.9310%" y="773" width="0.2034%" height="15" fill="rgb(233,207,14)" fg:x="119296" fg:w="737"/><text x="33.1810%" y="783.50"></text></g><g><title>_dl_start_final (753 samples, 0.21%)</title><rect x="32.9307%" y="805" width="0.2079%" height="15" fill="rgb(226,27,51)" fg:x="119295" fg:w="753"/><text x="33.1807%" y="815.50"></text></g><g><title>_dl_sysdep_start (753 samples, 0.21%)</title><rect x="32.9307%" y="789" width="0.2079%" height="15" fill="rgb(206,104,42)" fg:x="119295" fg:w="753"/><text x="33.1807%" y="799.50"></text></g><g><title>_dl_start (762 samples, 0.21%)</title><rect x="32.9307%" y="821" width="0.2103%" height="15" fill="rgb(212,225,4)" fg:x="119295" fg:w="762"/><text x="33.1807%" y="831.50"></text></g><g><title>_start (1,163 samples, 0.32%)</title><rect x="32.8222%" y="837" width="0.3210%" height="15" fill="rgb(233,96,42)" fg:x="118902" fg:w="1163"/><text x="33.0722%" y="847.50"></text></g><g><title>asm_exc_page_fault (139 samples, 0.04%)</title><rect x="33.1432%" y="837" width="0.0384%" height="15" fill="rgb(229,21,32)" fg:x="120065" fg:w="139"/><text x="33.3932%" y="847.50"></text></g><g><title>mmput (87 samples, 0.02%)</title><rect x="33.1855%" y="725" width="0.0240%" height="15" fill="rgb(226,216,24)" fg:x="120218" fg:w="87"/><text x="33.4355%" y="735.50"></text></g><g><title>exit_mmap (86 samples, 0.02%)</title><rect x="33.1857%" y="709" width="0.0237%" height="15" fill="rgb(221,163,17)" fg:x="120219" fg:w="86"/><text x="33.4357%" y="719.50"></text></g><g><title>begin_new_exec (92 samples, 0.03%)</title><rect x="33.1849%" y="741" width="0.0254%" height="15" fill="rgb(216,216,42)" fg:x="120216" fg:w="92"/><text x="33.4349%" y="751.50"></text></g><g><title>__x64_sys_execve (142 samples, 0.04%)</title><rect x="33.1822%" y="805" width="0.0392%" height="15" fill="rgb(240,118,7)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="815.50"></text></g><g><title>do_execveat_common (142 samples, 0.04%)</title><rect x="33.1822%" y="789" width="0.0392%" height="15" fill="rgb(221,67,37)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="799.50"></text></g><g><title>bprm_execve (142 samples, 0.04%)</title><rect x="33.1822%" y="773" width="0.0392%" height="15" fill="rgb(241,32,44)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="783.50"></text></g><g><title>load_elf_binary (142 samples, 0.04%)</title><rect x="33.1822%" y="757" width="0.0392%" height="15" fill="rgb(235,204,43)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="767.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.01%)</title><rect x="33.2396%" y="741" width="0.0149%" height="15" fill="rgb(213,116,10)" fg:x="120414" fg:w="54"/><text x="33.4896%" y="751.50"></text></g><g><title>release_pages (47 samples, 0.01%)</title><rect x="33.2415%" y="725" width="0.0130%" height="15" fill="rgb(239,15,48)" fg:x="120421" fg:w="47"/><text x="33.4915%" y="735.50"></text></g><g><title>mmput (146 samples, 0.04%)</title><rect x="33.2263%" y="773" width="0.0403%" height="15" fill="rgb(207,123,36)" fg:x="120366" fg:w="146"/><text x="33.4763%" y="783.50"></text></g><g><title>exit_mmap (146 samples, 0.04%)</title><rect x="33.2263%" y="757" width="0.0403%" height="15" fill="rgb(209,103,30)" fg:x="120366" fg:w="146"/><text x="33.4763%" y="767.50"></text></g><g><title>unmap_vmas (44 samples, 0.01%)</title><rect x="33.2545%" y="741" width="0.0121%" height="15" fill="rgb(238,100,19)" fg:x="120468" fg:w="44"/><text x="33.5045%" y="751.50"></text></g><g><title>unmap_page_range (44 samples, 0.01%)</title><rect x="33.2545%" y="725" width="0.0121%" height="15" fill="rgb(244,30,14)" fg:x="120468" fg:w="44"/><text x="33.5045%" y="735.50"></text></g><g><title>task_work_run (52 samples, 0.01%)</title><rect x="33.2669%" y="773" width="0.0144%" height="15" fill="rgb(249,174,6)" fg:x="120513" fg:w="52"/><text x="33.5169%" y="783.50"></text></g><g><title>cleanup_mnt (51 samples, 0.01%)</title><rect x="33.2672%" y="757" width="0.0141%" height="15" fill="rgb(235,213,41)" fg:x="120514" fg:w="51"/><text x="33.5172%" y="767.50"></text></g><g><title>__x64_sys_exit (218 samples, 0.06%)</title><rect x="33.2214%" y="805" width="0.0602%" height="15" fill="rgb(213,118,6)" fg:x="120348" fg:w="218"/><text x="33.4714%" y="815.50"></text></g><g><title>do_exit (218 samples, 0.06%)</title><rect x="33.2214%" y="789" width="0.0602%" height="15" fill="rgb(235,44,51)" fg:x="120348" fg:w="218"/><text x="33.4714%" y="799.50"></text></g><g><title>unmap_page_range (59 samples, 0.02%)</title><rect x="33.2981%" y="709" width="0.0163%" height="15" fill="rgb(217,9,53)" fg:x="120626" fg:w="59"/><text x="33.5481%" y="719.50"></text></g><g><title>mmput (118 samples, 0.03%)</title><rect x="33.2821%" y="757" width="0.0326%" height="15" fill="rgb(237,172,34)" fg:x="120568" fg:w="118"/><text x="33.5321%" y="767.50"></text></g><g><title>exit_mmap (117 samples, 0.03%)</title><rect x="33.2824%" y="741" width="0.0323%" height="15" fill="rgb(206,206,11)" fg:x="120569" fg:w="117"/><text x="33.5324%" y="751.50"></text></g><g><title>unmap_vmas (60 samples, 0.02%)</title><rect x="33.2981%" y="725" width="0.0166%" height="15" fill="rgb(214,149,29)" fg:x="120626" fg:w="60"/><text x="33.5481%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (490 samples, 0.14%)</title><rect x="33.1816%" y="837" width="0.1353%" height="15" fill="rgb(208,123,3)" fg:x="120204" fg:w="490"/><text x="33.4316%" y="847.50"></text></g><g><title>do_syscall_64 (488 samples, 0.13%)</title><rect x="33.1822%" y="821" width="0.1347%" height="15" fill="rgb(229,126,4)" fg:x="120206" fg:w="488"/><text x="33.4322%" y="831.50"></text></g><g><title>__x64_sys_exit_group (128 samples, 0.04%)</title><rect x="33.2815%" y="805" width="0.0353%" height="15" fill="rgb(222,92,36)" fg:x="120566" fg:w="128"/><text x="33.5315%" y="815.50"></text></g><g><title>do_group_exit (128 samples, 0.04%)</title><rect x="33.2815%" y="789" width="0.0353%" height="15" fill="rgb(216,39,41)" fg:x="120566" fg:w="128"/><text x="33.5315%" y="799.50"></text></g><g><title>do_exit (128 samples, 0.04%)</title><rect x="33.2815%" y="773" width="0.0353%" height="15" fill="rgb(253,127,28)" fg:x="120566" fg:w="128"/><text x="33.5315%" y="783.50"></text></g><g><title>linux-sandbox (2,987 samples, 0.82%)</title><rect x="32.4929%" y="853" width="0.8245%" height="15" fill="rgb(249,152,51)" fg:x="117709" fg:w="2987"/><text x="32.7429%" y="863.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (54 samples, 0.01%)</title><rect x="33.3254%" y="789" width="0.0149%" height="15" fill="rgb(209,123,42)" fg:x="120725" fg:w="54"/><text x="33.5754%" y="799.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (54 samples, 0.01%)</title><rect x="33.3254%" y="773" width="0.0149%" height="15" fill="rgb(241,118,22)" fg:x="120725" fg:w="54"/><text x="33.5754%" y="783.50"></text></g><g><title>__libc_fork (41 samples, 0.01%)</title><rect x="33.3290%" y="757" width="0.0113%" height="15" fill="rgb(208,25,7)" fg:x="120738" fg:w="41"/><text x="33.5790%" y="767.50"></text></g><g><title>arch_fork (39 samples, 0.01%)</title><rect x="33.3296%" y="741" width="0.0108%" height="15" fill="rgb(243,144,39)" fg:x="120740" fg:w="39"/><text x="33.5796%" y="751.50"></text></g><g><title>__libc_start_main (72 samples, 0.02%)</title><rect x="33.3249%" y="821" width="0.0199%" height="15" fill="rgb(250,50,5)" fg:x="120723" fg:w="72"/><text x="33.5749%" y="831.50"></text></g><g><title>main (70 samples, 0.02%)</title><rect x="33.3254%" y="805" width="0.0193%" height="15" fill="rgb(207,67,11)" fg:x="120725" fg:w="70"/><text x="33.5754%" y="815.50"></text></g><g><title>_dl_catch_exception (40 samples, 0.01%)</title><rect x="33.3456%" y="741" width="0.0110%" height="15" fill="rgb(245,204,40)" fg:x="120798" fg:w="40"/><text x="33.5956%" y="751.50"></text></g><g><title>openaux (40 samples, 0.01%)</title><rect x="33.3456%" y="725" width="0.0110%" height="15" fill="rgb(238,228,24)" fg:x="120798" fg:w="40"/><text x="33.5956%" y="735.50"></text></g><g><title>_dl_map_object (40 samples, 0.01%)</title><rect x="33.3456%" y="709" width="0.0110%" height="15" fill="rgb(217,116,22)" fg:x="120798" fg:w="40"/><text x="33.5956%" y="719.50"></text></g><g><title>_dl_map_object_deps (41 samples, 0.01%)</title><rect x="33.3456%" y="757" width="0.0113%" height="15" fill="rgb(234,98,12)" fg:x="120798" fg:w="41"/><text x="33.5956%" y="767.50"></text></g><g><title>elf_machine_rela (56 samples, 0.02%)</title><rect x="33.3583%" y="725" width="0.0155%" height="15" fill="rgb(242,170,50)" fg:x="120844" fg:w="56"/><text x="33.6083%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (39 samples, 0.01%)</title><rect x="33.3630%" y="709" width="0.0108%" height="15" fill="rgb(235,7,5)" fg:x="120861" fg:w="39"/><text x="33.6130%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (60 samples, 0.02%)</title><rect x="33.3580%" y="741" width="0.0166%" height="15" fill="rgb(241,114,28)" fg:x="120843" fg:w="60"/><text x="33.6080%" y="751.50"></text></g><g><title>_dl_relocate_object (65 samples, 0.02%)</title><rect x="33.3572%" y="757" width="0.0179%" height="15" fill="rgb(246,112,42)" fg:x="120840" fg:w="65"/><text x="33.6072%" y="767.50"></text></g><g><title>[ld-2.31.so] (111 samples, 0.03%)</title><rect x="33.3450%" y="773" width="0.0306%" height="15" fill="rgb(248,228,14)" fg:x="120796" fg:w="111"/><text x="33.5950%" y="783.50"></text></g><g><title>_dl_start_final (114 samples, 0.03%)</title><rect x="33.3447%" y="805" width="0.0315%" height="15" fill="rgb(208,133,18)" fg:x="120795" fg:w="114"/><text x="33.5947%" y="815.50"></text></g><g><title>_dl_sysdep_start (114 samples, 0.03%)</title><rect x="33.3447%" y="789" width="0.0315%" height="15" fill="rgb(207,35,49)" fg:x="120795" fg:w="114"/><text x="33.5947%" y="799.50"></text></g><g><title>_dl_start (115 samples, 0.03%)</title><rect x="33.3447%" y="821" width="0.0317%" height="15" fill="rgb(205,68,36)" fg:x="120795" fg:w="115"/><text x="33.5947%" y="831.50"></text></g><g><title>_start (188 samples, 0.05%)</title><rect x="33.3249%" y="837" width="0.0519%" height="15" fill="rgb(245,62,40)" fg:x="120723" fg:w="188"/><text x="33.5749%" y="847.50"></text></g><g><title>process-wrapper (254 samples, 0.07%)</title><rect x="33.3191%" y="853" width="0.0701%" height="15" fill="rgb(228,27,24)" fg:x="120702" fg:w="254"/><text x="33.5691%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="33.3787%" y="837" width="0.0105%" height="15" fill="rgb(253,19,12)" fg:x="120918" fg:w="38"/><text x="33.6287%" y="847.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="33.3787%" y="821" width="0.0105%" height="15" fill="rgb(232,28,20)" fg:x="120918" fg:w="38"/><text x="33.6287%" y="831.50"></text></g><g><title>finish_task_switch (40 samples, 0.01%)</title><rect x="33.4568%" y="693" width="0.0110%" height="15" fill="rgb(218,35,51)" fg:x="121201" fg:w="40"/><text x="33.7068%" y="703.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="33.4563%" y="725" width="0.0119%" height="15" fill="rgb(212,90,40)" fg:x="121199" fg:w="43"/><text x="33.7063%" y="735.50"></text></g><g><title>__schedule (43 samples, 0.01%)</title><rect x="33.4563%" y="709" width="0.0119%" height="15" fill="rgb(220,172,12)" fg:x="121199" fg:w="43"/><text x="33.7063%" y="719.50"></text></g><g><title>__dentry_kill (55 samples, 0.02%)</title><rect x="33.4753%" y="629" width="0.0152%" height="15" fill="rgb(226,159,20)" fg:x="121268" fg:w="55"/><text x="33.7253%" y="639.50"></text></g><g><title>d_invalidate (81 samples, 0.02%)</title><rect x="33.4701%" y="677" width="0.0224%" height="15" fill="rgb(234,205,16)" fg:x="121249" fg:w="81"/><text x="33.7201%" y="687.50"></text></g><g><title>shrink_dcache_parent (81 samples, 0.02%)</title><rect x="33.4701%" y="661" width="0.0224%" height="15" fill="rgb(207,9,39)" fg:x="121249" fg:w="81"/><text x="33.7201%" y="671.50"></text></g><g><title>shrink_dentry_list (62 samples, 0.02%)</title><rect x="33.4753%" y="645" width="0.0171%" height="15" fill="rgb(249,143,15)" fg:x="121268" fg:w="62"/><text x="33.7253%" y="655.50"></text></g><g><title>do_wait (212 samples, 0.06%)</title><rect x="33.4345%" y="741" width="0.0585%" height="15" fill="rgb(253,133,29)" fg:x="121120" fg:w="212"/><text x="33.6845%" y="751.50"></text></g><g><title>wait_consider_task (90 samples, 0.02%)</title><rect x="33.4681%" y="725" width="0.0248%" height="15" fill="rgb(221,187,0)" fg:x="121242" fg:w="90"/><text x="33.7181%" y="735.50"></text></g><g><title>release_task (90 samples, 0.02%)</title><rect x="33.4681%" y="709" width="0.0248%" height="15" fill="rgb(205,204,26)" fg:x="121242" fg:w="90"/><text x="33.7181%" y="719.50"></text></g><g><title>proc_invalidate_siblings_dcache (84 samples, 0.02%)</title><rect x="33.4698%" y="693" width="0.0232%" height="15" fill="rgb(224,68,54)" fg:x="121248" fg:w="84"/><text x="33.7198%" y="703.50"></text></g><g><title>do_syscall_64 (213 samples, 0.06%)</title><rect x="33.4345%" y="773" width="0.0588%" height="15" fill="rgb(209,67,4)" fg:x="121120" fg:w="213"/><text x="33.6845%" y="783.50"></text></g><g><title>kernel_wait4 (213 samples, 0.06%)</title><rect x="33.4345%" y="757" width="0.0588%" height="15" fill="rgb(228,229,18)" fg:x="121120" fg:w="213"/><text x="33.6845%" y="767.50"></text></g><g><title>__GI___wait4 (216 samples, 0.06%)</title><rect x="33.4339%" y="805" width="0.0596%" height="15" fill="rgb(231,89,13)" fg:x="121118" fg:w="216"/><text x="33.6839%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (214 samples, 0.06%)</title><rect x="33.4345%" y="789" width="0.0591%" height="15" fill="rgb(210,182,18)" fg:x="121120" fg:w="214"/><text x="33.6845%" y="799.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (217 samples, 0.06%)</title><rect x="33.4339%" y="821" width="0.0599%" height="15" fill="rgb(240,105,2)" fg:x="121118" fg:w="217"/><text x="33.6839%" y="831.50"></text></g><g><title>[perf-985085.map] (409 samples, 0.11%)</title><rect x="33.3911%" y="837" width="0.1129%" height="15" fill="rgb(207,170,50)" fg:x="120963" fg:w="409"/><text x="33.6411%" y="847.50"></text></g><g><title>process_reaper (422 samples, 0.12%)</title><rect x="33.3892%" y="853" width="0.1165%" height="15" fill="rgb(232,133,24)" fg:x="120956" fg:w="422"/><text x="33.6392%" y="863.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (39 samples, 0.01%)</title><rect x="33.6484%" y="821" width="0.0108%" height="15" fill="rgb(235,166,27)" fg:x="121895" fg:w="39"/><text x="33.8984%" y="831.50"></text></g><g><title>deflate (39 samples, 0.01%)</title><rect x="33.6484%" y="805" width="0.0108%" height="15" fill="rgb(209,19,13)" fg:x="121895" fg:w="39"/><text x="33.8984%" y="815.50"></text></g><g><title>[libz.so.1.2.11] (39 samples, 0.01%)</title><rect x="33.6484%" y="789" width="0.0108%" height="15" fill="rgb(226,79,39)" fg:x="121895" fg:w="39"/><text x="33.8984%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.02%)</title><rect x="33.6821%" y="597" width="0.0215%" height="15" fill="rgb(222,163,10)" fg:x="122017" fg:w="78"/><text x="33.9321%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.02%)</title><rect x="33.6821%" y="581" width="0.0215%" height="15" fill="rgb(214,44,19)" fg:x="122017" fg:w="78"/><text x="33.9321%" y="591.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="33.6821%" y="565" width="0.0215%" height="15" fill="rgb(210,217,13)" fg:x="122017" fg:w="78"/><text x="33.9321%" y="575.50"></text></g><g><title>finish_task_switch (85 samples, 0.02%)</title><rect x="33.6812%" y="613" width="0.0235%" height="15" fill="rgb(237,61,54)" fg:x="122014" fg:w="85"/><text x="33.9312%" y="623.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.03%)</title><rect x="33.6746%" y="661" width="0.0345%" height="15" fill="rgb(226,184,24)" fg:x="121990" fg:w="125"/><text x="33.9246%" y="671.50"></text></g><g><title>schedule (123 samples, 0.03%)</title><rect x="33.6752%" y="645" width="0.0340%" height="15" fill="rgb(223,226,4)" fg:x="121992" fg:w="123"/><text x="33.9252%" y="655.50"></text></g><g><title>__schedule (123 samples, 0.03%)</title><rect x="33.6752%" y="629" width="0.0340%" height="15" fill="rgb(210,26,41)" fg:x="121992" fg:w="123"/><text x="33.9252%" y="639.50"></text></g><g><title>do_syscall_64 (137 samples, 0.04%)</title><rect x="33.6721%" y="725" width="0.0378%" height="15" fill="rgb(220,221,6)" fg:x="121981" fg:w="137"/><text x="33.9221%" y="735.50"></text></g><g><title>__x64_sys_futex (136 samples, 0.04%)</title><rect x="33.6724%" y="709" width="0.0375%" height="15" fill="rgb(225,89,49)" fg:x="121982" fg:w="136"/><text x="33.9224%" y="719.50"></text></g><g><title>do_futex (135 samples, 0.04%)</title><rect x="33.6727%" y="693" width="0.0373%" height="15" fill="rgb(218,70,45)" fg:x="121983" fg:w="135"/><text x="33.9227%" y="703.50"></text></g><g><title>futex_wait (134 samples, 0.04%)</title><rect x="33.6730%" y="677" width="0.0370%" height="15" fill="rgb(238,166,21)" fg:x="121984" fg:w="134"/><text x="33.9230%" y="687.50"></text></g><g><title>__pthread_cond_wait (159 samples, 0.04%)</title><rect x="33.6683%" y="789" width="0.0439%" height="15" fill="rgb(224,141,44)" fg:x="121967" fg:w="159"/><text x="33.9183%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (159 samples, 0.04%)</title><rect x="33.6683%" y="773" width="0.0439%" height="15" fill="rgb(230,12,49)" fg:x="121967" fg:w="159"/><text x="33.9183%" y="783.50"></text></g><g><title>futex_wait_cancelable (154 samples, 0.04%)</title><rect x="33.6696%" y="757" width="0.0425%" height="15" fill="rgb(212,174,12)" fg:x="121972" fg:w="154"/><text x="33.9196%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (145 samples, 0.04%)</title><rect x="33.6721%" y="741" width="0.0400%" height="15" fill="rgb(246,67,9)" fg:x="121981" fg:w="145"/><text x="33.9221%" y="751.50"></text></g><g><title>Parker::park (186 samples, 0.05%)</title><rect x="33.6639%" y="805" width="0.0513%" height="15" fill="rgb(239,35,23)" fg:x="121951" fg:w="186"/><text x="33.9139%" y="815.50"></text></g><g><title>Unsafe_Park (193 samples, 0.05%)</title><rect x="33.6633%" y="821" width="0.0533%" height="15" fill="rgb(211,167,0)" fg:x="121949" fg:w="193"/><text x="33.9133%" y="831.50"></text></g><g><title>asm_exc_page_fault (37 samples, 0.01%)</title><rect x="33.7174%" y="821" width="0.0102%" height="15" fill="rgb(225,119,45)" fg:x="122145" fg:w="37"/><text x="33.9674%" y="831.50"></text></g><g><title>[perf-985085.map] (790 samples, 0.22%)</title><rect x="33.5104%" y="837" width="0.2181%" height="15" fill="rgb(210,162,6)" fg:x="121395" fg:w="790"/><text x="33.7604%" y="847.50"></text></g><g><title>profile-writer- (835 samples, 0.23%)</title><rect x="33.5057%" y="853" width="0.2305%" height="15" fill="rgb(208,118,35)" fg:x="121378" fg:w="835"/><text x="33.7557%" y="863.50"></text></g><g><title>[python3.9] (107 samples, 0.03%)</title><rect x="33.7754%" y="821" width="0.0295%" height="15" fill="rgb(239,4,53)" fg:x="122355" fg:w="107"/><text x="34.0254%" y="831.50"></text></g><g><title>PyImport_ImportModuleLevelObject (37 samples, 0.01%)</title><rect x="33.8430%" y="565" width="0.0102%" height="15" fill="rgb(213,130,21)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="575.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (37 samples, 0.01%)</title><rect x="33.8430%" y="549" width="0.0102%" height="15" fill="rgb(235,148,0)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="559.50"></text></g><g><title>[python3.9] (37 samples, 0.01%)</title><rect x="33.8430%" y="533" width="0.0102%" height="15" fill="rgb(244,224,18)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.01%)</title><rect x="33.8430%" y="517" width="0.0102%" height="15" fill="rgb(211,214,4)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (100 samples, 0.03%)</title><rect x="33.8270%" y="805" width="0.0276%" height="15" fill="rgb(206,119,25)" fg:x="122542" fg:w="100"/><text x="34.0770%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (89 samples, 0.02%)</title><rect x="33.8300%" y="789" width="0.0246%" height="15" fill="rgb(243,93,47)" fg:x="122553" fg:w="89"/><text x="34.0800%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (87 samples, 0.02%)</title><rect x="33.8306%" y="773" width="0.0240%" height="15" fill="rgb(224,194,6)" fg:x="122555" fg:w="87"/><text x="34.0806%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (67 samples, 0.02%)</title><rect x="33.8361%" y="757" width="0.0185%" height="15" fill="rgb(243,229,6)" fg:x="122575" fg:w="67"/><text x="34.0861%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (67 samples, 0.02%)</title><rect x="33.8361%" y="741" width="0.0185%" height="15" fill="rgb(207,23,50)" fg:x="122575" fg:w="67"/><text x="34.0861%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="33.8430%" y="725" width="0.0116%" height="15" fill="rgb(253,192,32)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.01%)</title><rect x="33.8430%" y="709" width="0.0116%" height="15" fill="rgb(213,21,6)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="719.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="693" width="0.0116%" height="15" fill="rgb(243,151,13)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="33.8430%" y="677" width="0.0116%" height="15" fill="rgb(233,165,41)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="687.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="661" width="0.0116%" height="15" fill="rgb(246,176,45)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="671.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="645" width="0.0116%" height="15" fill="rgb(217,170,52)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="655.50"></text></g><g><title>PyEval_EvalCode (42 samples, 0.01%)</title><rect x="33.8430%" y="629" width="0.0116%" height="15" fill="rgb(214,203,54)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="639.50"></text></g><g><title>_PyEval_EvalCodeWithName (42 samples, 0.01%)</title><rect x="33.8430%" y="613" width="0.0116%" height="15" fill="rgb(248,215,49)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="623.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="597" width="0.0116%" height="15" fill="rgb(208,46,10)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="33.8430%" y="581" width="0.0116%" height="15" fill="rgb(254,5,31)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (165 samples, 0.05%)</title><rect x="33.8093%" y="821" width="0.0455%" height="15" fill="rgb(222,104,33)" fg:x="122478" fg:w="165"/><text x="34.0593%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (47 samples, 0.01%)</title><rect x="33.8549%" y="821" width="0.0130%" height="15" fill="rgb(248,49,16)" fg:x="122643" fg:w="47"/><text x="34.1049%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (44 samples, 0.01%)</title><rect x="33.8678%" y="821" width="0.0121%" height="15" fill="rgb(232,198,41)" fg:x="122690" fg:w="44"/><text x="34.1178%" y="831.50"></text></g><g><title>[python3.9] (44 samples, 0.01%)</title><rect x="33.8678%" y="805" width="0.0121%" height="15" fill="rgb(214,125,3)" fg:x="122690" fg:w="44"/><text x="34.1178%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.8678%" y="789" width="0.0121%" height="15" fill="rgb(229,220,28)" fg:x="122690" fg:w="44"/><text x="34.1178%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="33.8681%" y="773" width="0.0119%" height="15" fill="rgb(222,64,37)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.01%)</title><rect x="33.8681%" y="757" width="0.0119%" height="15" fill="rgb(249,184,13)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="33.8681%" y="741" width="0.0119%" height="15" fill="rgb(252,176,6)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.01%)</title><rect x="33.8681%" y="725" width="0.0119%" height="15" fill="rgb(228,153,7)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="709" width="0.0113%" height="15" fill="rgb(242,193,5)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.01%)</title><rect x="33.8687%" y="693" width="0.0113%" height="15" fill="rgb(232,140,9)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="677" width="0.0113%" height="15" fill="rgb(213,222,16)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.01%)</title><rect x="33.8687%" y="661" width="0.0113%" height="15" fill="rgb(222,75,50)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="671.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="645" width="0.0113%" height="15" fill="rgb(205,180,2)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="629" width="0.0113%" height="15" fill="rgb(216,34,7)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="639.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="613" width="0.0113%" height="15" fill="rgb(253,16,32)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="623.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="597" width="0.0113%" height="15" fill="rgb(208,97,28)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="607.50"></text></g><g><title>PyEval_EvalCode (41 samples, 0.01%)</title><rect x="33.8687%" y="581" width="0.0113%" height="15" fill="rgb(225,92,11)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (41 samples, 0.01%)</title><rect x="33.8687%" y="565" width="0.0113%" height="15" fill="rgb(243,38,12)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="575.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="549" width="0.0113%" height="15" fill="rgb(208,139,16)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="533" width="0.0113%" height="15" fill="rgb(227,24,9)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="543.50"></text></g><g><title>[unknown] (463 samples, 0.13%)</title><rect x="33.7536%" y="837" width="0.1278%" height="15" fill="rgb(206,62,11)" fg:x="122276" fg:w="463"/><text x="34.0036%" y="847.50"></text></g><g><title>[python3.9] (43 samples, 0.01%)</title><rect x="33.8988%" y="757" width="0.0119%" height="15" fill="rgb(228,134,27)" fg:x="122802" fg:w="43"/><text x="34.1488%" y="767.50"></text></g><g><title>Py_RunMain (121 samples, 0.03%)</title><rect x="33.8822%" y="789" width="0.0334%" height="15" fill="rgb(205,55,33)" fg:x="122742" fg:w="121"/><text x="34.1322%" y="799.50"></text></g><g><title>Py_FinalizeEx (88 samples, 0.02%)</title><rect x="33.8913%" y="773" width="0.0243%" height="15" fill="rgb(243,75,43)" fg:x="122775" fg:w="88"/><text x="34.1413%" y="783.50"></text></g><g><title>PyImport_ImportModule (47 samples, 0.01%)</title><rect x="33.9189%" y="709" width="0.0130%" height="15" fill="rgb(223,27,42)" fg:x="122875" fg:w="47"/><text x="34.1689%" y="719.50"></text></g><g><title>PyImport_Import (46 samples, 0.01%)</title><rect x="33.9192%" y="693" width="0.0127%" height="15" fill="rgb(232,189,33)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="703.50"></text></g><g><title>PyObject_CallFunction (46 samples, 0.01%)</title><rect x="33.9192%" y="677" width="0.0127%" height="15" fill="rgb(210,9,39)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="687.50"></text></g><g><title>_PyObject_MakeTpCall (46 samples, 0.01%)</title><rect x="33.9192%" y="661" width="0.0127%" height="15" fill="rgb(242,85,26)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="671.50"></text></g><g><title>[python3.9] (46 samples, 0.01%)</title><rect x="33.9192%" y="645" width="0.0127%" height="15" fill="rgb(248,44,4)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="655.50"></text></g><g><title>[python3.9] (46 samples, 0.01%)</title><rect x="33.9192%" y="629" width="0.0127%" height="15" fill="rgb(250,96,46)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="639.50"></text></g><g><title>PyImport_ImportModuleLevelObject (46 samples, 0.01%)</title><rect x="33.9192%" y="613" width="0.0127%" height="15" fill="rgb(229,116,26)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="623.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (46 samples, 0.01%)</title><rect x="33.9192%" y="597" width="0.0127%" height="15" fill="rgb(246,94,34)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="607.50"></text></g><g><title>[python3.9] (46 samples, 0.01%)</title><rect x="33.9192%" y="581" width="0.0127%" height="15" fill="rgb(251,73,21)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (46 samples, 0.01%)</title><rect x="33.9192%" y="565" width="0.0127%" height="15" fill="rgb(254,121,25)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (46 samples, 0.01%)</title><rect x="33.9192%" y="549" width="0.0127%" height="15" fill="rgb(215,161,49)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.9197%" y="533" width="0.0121%" height="15" fill="rgb(221,43,13)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (44 samples, 0.01%)</title><rect x="33.9197%" y="517" width="0.0121%" height="15" fill="rgb(249,5,37)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.9197%" y="501" width="0.0121%" height="15" fill="rgb(226,25,44)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (44 samples, 0.01%)</title><rect x="33.9197%" y="485" width="0.0121%" height="15" fill="rgb(238,189,16)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.9197%" y="469" width="0.0121%" height="15" fill="rgb(251,186,8)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="33.9200%" y="453" width="0.0119%" height="15" fill="rgb(254,34,31)" fg:x="122879" fg:w="43"/><text x="34.1700%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.01%)</title><rect x="33.9217%" y="437" width="0.0102%" height="15" fill="rgb(225,215,27)" fg:x="122885" fg:w="37"/><text x="34.1717%" y="447.50"></text></g><g><title>Py_InitializeFromConfig (134 samples, 0.04%)</title><rect x="33.9156%" y="757" width="0.0370%" height="15" fill="rgb(221,192,48)" fg:x="122863" fg:w="134"/><text x="34.1656%" y="767.50"></text></g><g><title>[python3.9] (134 samples, 0.04%)</title><rect x="33.9156%" y="741" width="0.0370%" height="15" fill="rgb(219,137,20)" fg:x="122863" fg:w="134"/><text x="34.1656%" y="751.50"></text></g><g><title>[python3.9] (134 samples, 0.04%)</title><rect x="33.9156%" y="725" width="0.0370%" height="15" fill="rgb(219,84,11)" fg:x="122863" fg:w="134"/><text x="34.1656%" y="735.50"></text></g><g><title>Py_BytesMain (258 samples, 0.07%)</title><rect x="33.8822%" y="805" width="0.0712%" height="15" fill="rgb(224,10,23)" fg:x="122742" fg:w="258"/><text x="34.1322%" y="815.50"></text></g><g><title>[python3.9] (137 samples, 0.04%)</title><rect x="33.9156%" y="789" width="0.0378%" height="15" fill="rgb(248,22,39)" fg:x="122863" fg:w="137"/><text x="34.1656%" y="799.50"></text></g><g><title>[python3.9] (137 samples, 0.04%)</title><rect x="33.9156%" y="773" width="0.0378%" height="15" fill="rgb(212,154,20)" fg:x="122863" fg:w="137"/><text x="34.1656%" y="783.50"></text></g><g><title>__libc_start_main (259 samples, 0.07%)</title><rect x="33.8822%" y="821" width="0.0715%" height="15" fill="rgb(236,199,50)" fg:x="122742" fg:w="259"/><text x="34.1322%" y="831.50"></text></g><g><title>_start (274 samples, 0.08%)</title><rect x="33.8822%" y="837" width="0.0756%" height="15" fill="rgb(211,9,17)" fg:x="122742" fg:w="274"/><text x="34.1322%" y="847.50"></text></g><g><title>python3 (821 samples, 0.23%)</title><rect x="33.7378%" y="853" width="0.2266%" height="15" fill="rgb(243,216,36)" fg:x="122219" fg:w="821"/><text x="33.9878%" y="863.50"></text></g><g><title>_dl_map_object_from_fd (38 samples, 0.01%)</title><rect x="33.9813%" y="693" width="0.0105%" height="15" fill="rgb(250,2,10)" fg:x="123101" fg:w="38"/><text x="34.2313%" y="703.50"></text></g><g><title>_dl_catch_exception (47 samples, 0.01%)</title><rect x="33.9802%" y="741" width="0.0130%" height="15" fill="rgb(226,50,48)" fg:x="123097" fg:w="47"/><text x="34.2302%" y="751.50"></text></g><g><title>openaux (47 samples, 0.01%)</title><rect x="33.9802%" y="725" width="0.0130%" height="15" fill="rgb(243,81,16)" fg:x="123097" fg:w="47"/><text x="34.2302%" y="735.50"></text></g><g><title>_dl_map_object (47 samples, 0.01%)</title><rect x="33.9802%" y="709" width="0.0130%" height="15" fill="rgb(250,14,2)" fg:x="123097" fg:w="47"/><text x="34.2302%" y="719.50"></text></g><g><title>_dl_map_object_deps (49 samples, 0.01%)</title><rect x="33.9799%" y="757" width="0.0135%" height="15" fill="rgb(233,135,29)" fg:x="123096" fg:w="49"/><text x="34.2299%" y="767.50"></text></g><g><title>[ld-2.31.so] (81 samples, 0.02%)</title><rect x="33.9794%" y="773" width="0.0224%" height="15" fill="rgb(224,64,43)" fg:x="123094" fg:w="81"/><text x="34.2294%" y="783.50"></text></g><g><title>_dl_start (84 samples, 0.02%)</title><rect x="33.9791%" y="821" width="0.0232%" height="15" fill="rgb(238,84,13)" fg:x="123093" fg:w="84"/><text x="34.2291%" y="831.50"></text></g><g><title>_dl_start_final (84 samples, 0.02%)</title><rect x="33.9791%" y="805" width="0.0232%" height="15" fill="rgb(253,48,26)" fg:x="123093" fg:w="84"/><text x="34.2291%" y="815.50"></text></g><g><title>_dl_sysdep_start (84 samples, 0.02%)</title><rect x="33.9791%" y="789" width="0.0232%" height="15" fill="rgb(205,223,31)" fg:x="123093" fg:w="84"/><text x="34.2291%" y="799.50"></text></g><g><title>_start (87 samples, 0.02%)</title><rect x="33.9788%" y="837" width="0.0240%" height="15" fill="rgb(221,41,32)" fg:x="123092" fg:w="87"/><text x="34.2288%" y="847.50"></text></g><g><title>sed (161 samples, 0.04%)</title><rect x="33.9645%" y="853" width="0.0444%" height="15" fill="rgb(213,158,31)" fg:x="123040" fg:w="161"/><text x="34.2145%" y="863.50"></text></g><g><title>[anon] (705 samples, 0.19%)</title><rect x="34.0128%" y="837" width="0.1946%" height="15" fill="rgb(245,126,43)" fg:x="123215" fg:w="705"/><text x="34.2628%" y="847.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="34.3253%" y="789" width="0.0108%" height="15" fill="rgb(227,7,22)" fg:x="124347" fg:w="39"/><text x="34.5753%" y="799.50"></text></g><g><title>__fput (83 samples, 0.02%)</title><rect x="34.3379%" y="741" width="0.0229%" height="15" fill="rgb(252,90,44)" fg:x="124393" fg:w="83"/><text x="34.5879%" y="751.50"></text></g><g><title>__GI___close_nocancel (137 samples, 0.04%)</title><rect x="34.3247%" y="821" width="0.0378%" height="15" fill="rgb(253,91,0)" fg:x="124345" fg:w="137"/><text x="34.5747%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (136 samples, 0.04%)</title><rect x="34.3250%" y="805" width="0.0375%" height="15" fill="rgb(252,175,49)" fg:x="124346" fg:w="136"/><text x="34.5750%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (96 samples, 0.03%)</title><rect x="34.3360%" y="789" width="0.0265%" height="15" fill="rgb(246,150,1)" fg:x="124386" fg:w="96"/><text x="34.5860%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (96 samples, 0.03%)</title><rect x="34.3360%" y="773" width="0.0265%" height="15" fill="rgb(241,192,25)" fg:x="124386" fg:w="96"/><text x="34.5860%" y="783.50"></text></g><g><title>task_work_run (91 samples, 0.03%)</title><rect x="34.3374%" y="757" width="0.0251%" height="15" fill="rgb(239,187,11)" fg:x="124391" fg:w="91"/><text x="34.5874%" y="767.50"></text></g><g><title>__GI___libc_free (40 samples, 0.01%)</title><rect x="34.3628%" y="821" width="0.0110%" height="15" fill="rgb(218,202,51)" fg:x="124483" fg:w="40"/><text x="34.6128%" y="831.50"></text></g><g><title>link_path_walk.part.0 (43 samples, 0.01%)</title><rect x="34.3805%" y="709" width="0.0119%" height="15" fill="rgb(225,176,8)" fg:x="124547" fg:w="43"/><text x="34.6305%" y="719.50"></text></g><g><title>filename_lookup (61 samples, 0.02%)</title><rect x="34.3780%" y="741" width="0.0168%" height="15" fill="rgb(219,122,41)" fg:x="124538" fg:w="61"/><text x="34.6280%" y="751.50"></text></g><g><title>path_lookupat (56 samples, 0.02%)</title><rect x="34.3794%" y="725" width="0.0155%" height="15" fill="rgb(248,140,20)" fg:x="124543" fg:w="56"/><text x="34.6294%" y="735.50"></text></g><g><title>__do_sys_newlstat (87 samples, 0.02%)</title><rect x="34.3752%" y="773" width="0.0240%" height="15" fill="rgb(245,41,37)" fg:x="124528" fg:w="87"/><text x="34.6252%" y="783.50"></text></g><g><title>vfs_statx (80 samples, 0.02%)</title><rect x="34.3771%" y="757" width="0.0221%" height="15" fill="rgb(235,82,39)" fg:x="124535" fg:w="80"/><text x="34.6271%" y="767.50"></text></g><g><title>do_syscall_64 (91 samples, 0.03%)</title><rect x="34.3747%" y="789" width="0.0251%" height="15" fill="rgb(230,108,42)" fg:x="124526" fg:w="91"/><text x="34.6247%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.03%)</title><rect x="34.3747%" y="805" width="0.0259%" height="15" fill="rgb(215,150,50)" fg:x="124526" fg:w="94"/><text x="34.6247%" y="815.50"></text></g><g><title>__GI___lxstat (98 samples, 0.03%)</title><rect x="34.3738%" y="821" width="0.0271%" height="15" fill="rgb(233,212,5)" fg:x="124523" fg:w="98"/><text x="34.6238%" y="831.50"></text></g><g><title>prepare_to_wait_event (67 samples, 0.02%)</title><rect x="34.4241%" y="629" width="0.0185%" height="15" fill="rgb(245,80,22)" fg:x="124705" fg:w="67"/><text x="34.6741%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (62 samples, 0.02%)</title><rect x="34.4255%" y="613" width="0.0171%" height="15" fill="rgb(238,129,16)" fg:x="124710" fg:w="62"/><text x="34.6755%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (62 samples, 0.02%)</title><rect x="34.4255%" y="597" width="0.0171%" height="15" fill="rgb(240,19,0)" fg:x="124710" fg:w="62"/><text x="34.6755%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (169 samples, 0.05%)</title><rect x="34.4175%" y="645" width="0.0467%" height="15" fill="rgb(232,42,35)" fg:x="124681" fg:w="169"/><text x="34.6675%" y="655.50"></text></g><g><title>schedule (59 samples, 0.02%)</title><rect x="34.4478%" y="629" width="0.0163%" height="15" fill="rgb(223,130,24)" fg:x="124791" fg:w="59"/><text x="34.6978%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="34.4481%" y="613" width="0.0160%" height="15" fill="rgb(237,16,22)" fg:x="124792" fg:w="58"/><text x="34.6981%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (177 samples, 0.05%)</title><rect x="34.4169%" y="661" width="0.0489%" height="15" fill="rgb(248,192,20)" fg:x="124679" fg:w="177"/><text x="34.6669%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (54 samples, 0.01%)</title><rect x="34.4658%" y="661" width="0.0149%" height="15" fill="rgb(233,167,2)" fg:x="124856" fg:w="54"/><text x="34.7158%" y="671.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="34.4699%" y="645" width="0.0108%" height="15" fill="rgb(252,71,44)" fg:x="124871" fg:w="39"/><text x="34.7199%" y="655.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="34.4699%" y="629" width="0.0108%" height="15" fill="rgb(238,37,47)" fg:x="124871" fg:w="39"/><text x="34.7199%" y="639.50"></text></g><g><title>__wake_up_common (58 samples, 0.02%)</title><rect x="34.4807%" y="645" width="0.0160%" height="15" fill="rgb(214,202,54)" fg:x="124910" fg:w="58"/><text x="34.7307%" y="655.50"></text></g><g><title>autoremove_wake_function (58 samples, 0.02%)</title><rect x="34.4807%" y="629" width="0.0160%" height="15" fill="rgb(254,165,40)" fg:x="124910" fg:w="58"/><text x="34.7307%" y="639.50"></text></g><g><title>try_to_wake_up (57 samples, 0.02%)</title><rect x="34.4809%" y="613" width="0.0157%" height="15" fill="rgb(246,173,38)" fg:x="124911" fg:w="57"/><text x="34.7309%" y="623.50"></text></g><g><title>__wake_up_common_lock (60 samples, 0.02%)</title><rect x="34.4807%" y="661" width="0.0166%" height="15" fill="rgb(215,3,27)" fg:x="124910" fg:w="60"/><text x="34.7307%" y="671.50"></text></g><g><title>btrfs_search_slot (396 samples, 0.11%)</title><rect x="34.4141%" y="677" width="0.1093%" height="15" fill="rgb(239,169,51)" fg:x="124669" fg:w="396"/><text x="34.6641%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (399 samples, 0.11%)</title><rect x="34.4139%" y="693" width="0.1101%" height="15" fill="rgb(212,5,25)" fg:x="124668" fg:w="399"/><text x="34.6639%" y="703.50"></text></g><g><title>btrfs_lookup (416 samples, 0.11%)</title><rect x="34.4097%" y="725" width="0.1148%" height="15" fill="rgb(243,45,17)" fg:x="124653" fg:w="416"/><text x="34.6597%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (416 samples, 0.11%)</title><rect x="34.4097%" y="709" width="0.1148%" height="15" fill="rgb(242,97,9)" fg:x="124653" fg:w="416"/><text x="34.6597%" y="719.50"></text></g><g><title>__lookup_hash (452 samples, 0.12%)</title><rect x="34.4094%" y="741" width="0.1248%" height="15" fill="rgb(228,71,31)" fg:x="124652" fg:w="452"/><text x="34.6594%" y="751.50"></text></g><g><title>link_path_walk.part.0 (80 samples, 0.02%)</title><rect x="34.5389%" y="709" width="0.0221%" height="15" fill="rgb(252,184,16)" fg:x="125121" fg:w="80"/><text x="34.7889%" y="719.50"></text></g><g><title>walk_component (42 samples, 0.01%)</title><rect x="34.5494%" y="693" width="0.0116%" height="15" fill="rgb(236,169,46)" fg:x="125159" fg:w="42"/><text x="34.7994%" y="703.50"></text></g><g><title>filename_parentat (112 samples, 0.03%)</title><rect x="34.5345%" y="741" width="0.0309%" height="15" fill="rgb(207,17,47)" fg:x="125105" fg:w="112"/><text x="34.7845%" y="751.50"></text></g><g><title>path_parentat (106 samples, 0.03%)</title><rect x="34.5361%" y="725" width="0.0293%" height="15" fill="rgb(206,201,28)" fg:x="125111" fg:w="106"/><text x="34.7861%" y="735.50"></text></g><g><title>filename_create (572 samples, 0.16%)</title><rect x="34.4092%" y="757" width="0.1579%" height="15" fill="rgb(224,184,23)" fg:x="124651" fg:w="572"/><text x="34.6592%" y="767.50"></text></g><g><title>prepare_to_wait_event (53 samples, 0.01%)</title><rect x="34.5999%" y="613" width="0.0146%" height="15" fill="rgb(208,139,48)" fg:x="125342" fg:w="53"/><text x="34.8499%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (49 samples, 0.01%)</title><rect x="34.6010%" y="597" width="0.0135%" height="15" fill="rgb(208,130,10)" fg:x="125346" fg:w="49"/><text x="34.8510%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (49 samples, 0.01%)</title><rect x="34.6010%" y="581" width="0.0135%" height="15" fill="rgb(211,213,45)" fg:x="125346" fg:w="49"/><text x="34.8510%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (132 samples, 0.04%)</title><rect x="34.5966%" y="629" width="0.0364%" height="15" fill="rgb(235,100,30)" fg:x="125330" fg:w="132"/><text x="34.8466%" y="639.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="34.6190%" y="613" width="0.0141%" height="15" fill="rgb(206,144,31)" fg:x="125411" fg:w="51"/><text x="34.8690%" y="623.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="34.6190%" y="597" width="0.0141%" height="15" fill="rgb(224,200,26)" fg:x="125411" fg:w="51"/><text x="34.8690%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (133 samples, 0.04%)</title><rect x="34.5966%" y="645" width="0.0367%" height="15" fill="rgb(247,104,53)" fg:x="125330" fg:w="133"/><text x="34.8466%" y="655.50"></text></g><g><title>__btrfs_tree_lock (45 samples, 0.01%)</title><rect x="34.6333%" y="645" width="0.0124%" height="15" fill="rgb(220,14,17)" fg:x="125463" fg:w="45"/><text x="34.8833%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (51 samples, 0.01%)</title><rect x="34.6466%" y="645" width="0.0141%" height="15" fill="rgb(230,140,40)" fg:x="125511" fg:w="51"/><text x="34.8966%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (50 samples, 0.01%)</title><rect x="34.6468%" y="629" width="0.0138%" height="15" fill="rgb(229,2,41)" fg:x="125512" fg:w="50"/><text x="34.8968%" y="639.50"></text></g><g><title>ttwu_do_activate (39 samples, 0.01%)</title><rect x="34.6797%" y="565" width="0.0108%" height="15" fill="rgb(232,89,16)" fg:x="125631" fg:w="39"/><text x="34.9297%" y="575.50"></text></g><g><title>__wake_up_common_lock (65 samples, 0.02%)</title><rect x="34.6744%" y="629" width="0.0179%" height="15" fill="rgb(247,59,52)" fg:x="125612" fg:w="65"/><text x="34.9244%" y="639.50"></text></g><g><title>__wake_up_common (65 samples, 0.02%)</title><rect x="34.6744%" y="613" width="0.0179%" height="15" fill="rgb(226,110,21)" fg:x="125612" fg:w="65"/><text x="34.9244%" y="623.50"></text></g><g><title>autoremove_wake_function (64 samples, 0.02%)</title><rect x="34.6747%" y="597" width="0.0177%" height="15" fill="rgb(224,176,43)" fg:x="125613" fg:w="64"/><text x="34.9247%" y="607.50"></text></g><g><title>try_to_wake_up (64 samples, 0.02%)</title><rect x="34.6747%" y="581" width="0.0177%" height="15" fill="rgb(221,73,6)" fg:x="125613" fg:w="64"/><text x="34.9247%" y="591.50"></text></g><g><title>btrfs_search_slot (366 samples, 0.10%)</title><rect x="34.5930%" y="661" width="0.1010%" height="15" fill="rgb(232,78,19)" fg:x="125317" fg:w="366"/><text x="34.8430%" y="671.50"></text></g><g><title>unlock_up (75 samples, 0.02%)</title><rect x="34.6733%" y="645" width="0.0207%" height="15" fill="rgb(233,112,48)" fg:x="125608" fg:w="75"/><text x="34.9233%" y="655.50"></text></g><g><title>insert_with_overflow (436 samples, 0.12%)</title><rect x="34.5930%" y="693" width="0.1204%" height="15" fill="rgb(243,131,47)" fg:x="125317" fg:w="436"/><text x="34.8430%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (436 samples, 0.12%)</title><rect x="34.5930%" y="677" width="0.1204%" height="15" fill="rgb(226,51,1)" fg:x="125317" fg:w="436"/><text x="34.8430%" y="687.50"></text></g><g><title>setup_items_for_insert (70 samples, 0.02%)</title><rect x="34.6940%" y="661" width="0.0193%" height="15" fill="rgb(247,58,7)" fg:x="125683" fg:w="70"/><text x="34.9440%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (482 samples, 0.13%)</title><rect x="34.5817%" y="709" width="0.1331%" height="15" fill="rgb(209,7,32)" fg:x="125276" fg:w="482"/><text x="34.8317%" y="719.50"></text></g><g><title>btrfs_add_link (499 samples, 0.14%)</title><rect x="34.5809%" y="725" width="0.1377%" height="15" fill="rgb(209,39,41)" fg:x="125273" fg:w="499"/><text x="34.8309%" y="735.50"></text></g><g><title>_raw_spin_lock_irqsave (60 samples, 0.02%)</title><rect x="34.7424%" y="629" width="0.0166%" height="15" fill="rgb(226,182,46)" fg:x="125858" fg:w="60"/><text x="34.9924%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (58 samples, 0.02%)</title><rect x="34.7429%" y="613" width="0.0160%" height="15" fill="rgb(230,219,10)" fg:x="125860" fg:w="58"/><text x="34.9929%" y="623.50"></text></g><g><title>prepare_to_wait_event (68 samples, 0.02%)</title><rect x="34.7407%" y="645" width="0.0188%" height="15" fill="rgb(227,175,30)" fg:x="125852" fg:w="68"/><text x="34.9907%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (153 samples, 0.04%)</title><rect x="34.7352%" y="661" width="0.0422%" height="15" fill="rgb(217,2,50)" fg:x="125832" fg:w="153"/><text x="34.9852%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (156 samples, 0.04%)</title><rect x="34.7352%" y="677" width="0.0431%" height="15" fill="rgb(229,160,0)" fg:x="125832" fg:w="156"/><text x="34.9852%" y="687.50"></text></g><g><title>__btrfs_tree_lock (70 samples, 0.02%)</title><rect x="34.7782%" y="677" width="0.0193%" height="15" fill="rgb(207,78,37)" fg:x="125988" fg:w="70"/><text x="35.0282%" y="687.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="34.7835%" y="661" width="0.0141%" height="15" fill="rgb(225,57,0)" fg:x="126007" fg:w="51"/><text x="35.0335%" y="671.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="34.7838%" y="645" width="0.0138%" height="15" fill="rgb(232,154,2)" fg:x="126008" fg:w="50"/><text x="35.0338%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (62 samples, 0.02%)</title><rect x="34.7995%" y="677" width="0.0171%" height="15" fill="rgb(241,212,25)" fg:x="126065" fg:w="62"/><text x="35.0495%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (58 samples, 0.02%)</title><rect x="34.8006%" y="661" width="0.0160%" height="15" fill="rgb(226,69,20)" fg:x="126069" fg:w="58"/><text x="35.0506%" y="671.50"></text></g><g><title>__wake_up_common (59 samples, 0.02%)</title><rect x="34.8326%" y="645" width="0.0163%" height="15" fill="rgb(247,184,54)" fg:x="126185" fg:w="59"/><text x="35.0826%" y="655.50"></text></g><g><title>autoremove_wake_function (59 samples, 0.02%)</title><rect x="34.8326%" y="629" width="0.0163%" height="15" fill="rgb(210,145,0)" fg:x="126185" fg:w="59"/><text x="35.0826%" y="639.50"></text></g><g><title>try_to_wake_up (58 samples, 0.02%)</title><rect x="34.8329%" y="613" width="0.0160%" height="15" fill="rgb(253,82,12)" fg:x="126186" fg:w="58"/><text x="35.0829%" y="623.50"></text></g><g><title>__wake_up_common_lock (61 samples, 0.02%)</title><rect x="34.8323%" y="661" width="0.0168%" height="15" fill="rgb(245,42,11)" fg:x="126184" fg:w="61"/><text x="35.0823%" y="671.50"></text></g><g><title>btrfs_search_slot (426 samples, 0.12%)</title><rect x="34.7330%" y="693" width="0.1176%" height="15" fill="rgb(219,147,32)" fg:x="125824" fg:w="426"/><text x="34.9830%" y="703.50"></text></g><g><title>unlock_up (70 samples, 0.02%)</title><rect x="34.8312%" y="677" width="0.0193%" height="15" fill="rgb(246,12,7)" fg:x="126180" fg:w="70"/><text x="35.0812%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (473 samples, 0.13%)</title><rect x="34.7327%" y="709" width="0.1306%" height="15" fill="rgb(243,50,9)" fg:x="125823" fg:w="473"/><text x="34.9827%" y="719.50"></text></g><g><title>setup_items_for_insert (46 samples, 0.01%)</title><rect x="34.8506%" y="693" width="0.0127%" height="15" fill="rgb(219,149,6)" fg:x="126250" fg:w="46"/><text x="35.1006%" y="703.50"></text></g><g><title>btrfs_new_inode (591 samples, 0.16%)</title><rect x="34.7255%" y="725" width="0.1631%" height="15" fill="rgb(241,51,42)" fg:x="125797" fg:w="591"/><text x="34.9755%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (45 samples, 0.01%)</title><rect x="34.8887%" y="709" width="0.0124%" height="15" fill="rgb(226,128,27)" fg:x="126388" fg:w="45"/><text x="35.1387%" y="719.50"></text></g><g><title>btrfs_update_inode (50 samples, 0.01%)</title><rect x="34.8887%" y="725" width="0.0138%" height="15" fill="rgb(244,144,4)" fg:x="126388" fg:w="50"/><text x="35.1387%" y="735.50"></text></g><g><title>btrfs_mkdir (1,219 samples, 0.34%)</title><rect x="34.5767%" y="741" width="0.3365%" height="15" fill="rgb(221,4,13)" fg:x="125258" fg:w="1219"/><text x="34.8267%" y="751.50"></text></g><g><title>do_mkdirat (1,849 samples, 0.51%)</title><rect x="34.4050%" y="773" width="0.5104%" height="15" fill="rgb(208,170,28)" fg:x="124636" fg:w="1849"/><text x="34.6550%" y="783.50"></text></g><g><title>vfs_mkdir (1,229 samples, 0.34%)</title><rect x="34.5762%" y="757" width="0.3393%" height="15" fill="rgb(226,131,13)" fg:x="125256" fg:w="1229"/><text x="34.8262%" y="767.50"></text></g><g><title>do_syscall_64 (1,854 samples, 0.51%)</title><rect x="34.4045%" y="789" width="0.5118%" height="15" fill="rgb(215,72,41)" fg:x="124634" fg:w="1854"/><text x="34.6545%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,857 samples, 0.51%)</title><rect x="34.4042%" y="805" width="0.5126%" height="15" fill="rgb(243,108,20)" fg:x="124633" fg:w="1857"/><text x="34.6542%" y="815.50"></text></g><g><title>__GI___mkdir (1,871 samples, 0.52%)</title><rect x="34.4009%" y="821" width="0.5165%" height="15" fill="rgb(230,189,17)" fg:x="124621" fg:w="1871"/><text x="34.6509%" y="831.50"></text></g><g><title>btrfs_filldir (74 samples, 0.02%)</title><rect x="34.9475%" y="709" width="0.0204%" height="15" fill="rgb(220,50,17)" fg:x="126601" fg:w="74"/><text x="35.1975%" y="719.50"></text></g><g><title>filldir64 (72 samples, 0.02%)</title><rect x="34.9480%" y="693" width="0.0199%" height="15" fill="rgb(248,152,48)" fg:x="126603" fg:w="72"/><text x="35.1980%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (47 samples, 0.01%)</title><rect x="34.9751%" y="709" width="0.0130%" height="15" fill="rgb(244,91,11)" fg:x="126701" fg:w="47"/><text x="35.2251%" y="719.50"></text></g><g><title>btrfs_release_path (37 samples, 0.01%)</title><rect x="34.9955%" y="709" width="0.0102%" height="15" fill="rgb(220,157,5)" fg:x="126775" fg:w="37"/><text x="35.2455%" y="719.50"></text></g><g><title>finish_wait (69 samples, 0.02%)</title><rect x="35.0192%" y="661" width="0.0190%" height="15" fill="rgb(253,137,8)" fg:x="126861" fg:w="69"/><text x="35.2692%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (63 samples, 0.02%)</title><rect x="35.0209%" y="645" width="0.0174%" height="15" fill="rgb(217,137,51)" fg:x="126867" fg:w="63"/><text x="35.2709%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (61 samples, 0.02%)</title><rect x="35.0214%" y="629" width="0.0168%" height="15" fill="rgb(218,209,53)" fg:x="126869" fg:w="61"/><text x="35.2714%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.07%)</title><rect x="35.0441%" y="645" width="0.0712%" height="15" fill="rgb(249,137,25)" fg:x="126951" fg:w="258"/><text x="35.2941%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (252 samples, 0.07%)</title><rect x="35.0457%" y="629" width="0.0696%" height="15" fill="rgb(239,155,26)" fg:x="126957" fg:w="252"/><text x="35.2957%" y="639.50"></text></g><g><title>prepare_to_wait_event (280 samples, 0.08%)</title><rect x="35.0383%" y="661" width="0.0773%" height="15" fill="rgb(227,85,46)" fg:x="126930" fg:w="280"/><text x="35.2883%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (90 samples, 0.02%)</title><rect x="35.1156%" y="661" width="0.0248%" height="15" fill="rgb(251,107,43)" fg:x="127210" fg:w="90"/><text x="35.3656%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (58 samples, 0.02%)</title><rect x="35.1244%" y="645" width="0.0160%" height="15" fill="rgb(234,170,33)" fg:x="127242" fg:w="58"/><text x="35.3744%" y="655.50"></text></g><g><title>dequeue_task_fair (44 samples, 0.01%)</title><rect x="35.1440%" y="629" width="0.0121%" height="15" fill="rgb(206,29,35)" fg:x="127313" fg:w="44"/><text x="35.3940%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="35.1578%" y="613" width="0.0149%" height="15" fill="rgb(227,138,25)" fg:x="127363" fg:w="54"/><text x="35.4078%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (53 samples, 0.01%)</title><rect x="35.1581%" y="597" width="0.0146%" height="15" fill="rgb(249,131,35)" fg:x="127364" fg:w="53"/><text x="35.4081%" y="607.50"></text></g><g><title>native_write_msr (52 samples, 0.01%)</title><rect x="35.1584%" y="581" width="0.0144%" height="15" fill="rgb(239,6,40)" fg:x="127365" fg:w="52"/><text x="35.4084%" y="591.50"></text></g><g><title>finish_task_switch (62 samples, 0.02%)</title><rect x="35.1561%" y="629" width="0.0171%" height="15" fill="rgb(246,136,47)" fg:x="127357" fg:w="62"/><text x="35.4061%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (633 samples, 0.17%)</title><rect x="35.0137%" y="677" width="0.1747%" height="15" fill="rgb(253,58,26)" fg:x="126841" fg:w="633"/><text x="35.2637%" y="687.50"></text></g><g><title>schedule (174 samples, 0.05%)</title><rect x="35.1404%" y="661" width="0.0480%" height="15" fill="rgb(237,141,10)" fg:x="127300" fg:w="174"/><text x="35.3904%" y="671.50"></text></g><g><title>__schedule (174 samples, 0.05%)</title><rect x="35.1404%" y="645" width="0.0480%" height="15" fill="rgb(234,156,12)" fg:x="127300" fg:w="174"/><text x="35.3904%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (645 samples, 0.18%)</title><rect x="35.0137%" y="693" width="0.1780%" height="15" fill="rgb(243,224,36)" fg:x="126841" fg:w="645"/><text x="35.2637%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (134 samples, 0.04%)</title><rect x="35.1918%" y="693" width="0.0370%" height="15" fill="rgb(205,229,51)" fg:x="127486" fg:w="134"/><text x="35.4418%" y="703.50"></text></g><g><title>schedule (91 samples, 0.03%)</title><rect x="35.2036%" y="677" width="0.0251%" height="15" fill="rgb(223,189,4)" fg:x="127529" fg:w="91"/><text x="35.4536%" y="687.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="35.2039%" y="661" width="0.0248%" height="15" fill="rgb(249,167,54)" fg:x="127530" fg:w="90"/><text x="35.4539%" y="671.50"></text></g><g><title>ttwu_do_activate (67 samples, 0.02%)</title><rect x="35.2539%" y="629" width="0.0185%" height="15" fill="rgb(218,34,28)" fg:x="127711" fg:w="67"/><text x="35.5039%" y="639.50"></text></g><g><title>__wake_up_common (175 samples, 0.05%)</title><rect x="35.2290%" y="677" width="0.0483%" height="15" fill="rgb(232,109,42)" fg:x="127621" fg:w="175"/><text x="35.4790%" y="687.50"></text></g><g><title>autoremove_wake_function (172 samples, 0.05%)</title><rect x="35.2298%" y="661" width="0.0475%" height="15" fill="rgb(248,214,46)" fg:x="127624" fg:w="172"/><text x="35.4798%" y="671.50"></text></g><g><title>try_to_wake_up (167 samples, 0.05%)</title><rect x="35.2312%" y="645" width="0.0461%" height="15" fill="rgb(244,216,40)" fg:x="127629" fg:w="167"/><text x="35.4812%" y="655.50"></text></g><g><title>__wake_up_common_lock (180 samples, 0.05%)</title><rect x="35.2287%" y="693" width="0.0497%" height="15" fill="rgb(231,226,31)" fg:x="127620" fg:w="180"/><text x="35.4787%" y="703.50"></text></g><g><title>btrfs_tree_read_lock_atomic (77 samples, 0.02%)</title><rect x="35.2848%" y="693" width="0.0213%" height="15" fill="rgb(238,38,43)" fg:x="127823" fg:w="77"/><text x="35.5348%" y="703.50"></text></g><g><title>queued_read_lock_slowpath (67 samples, 0.02%)</title><rect x="35.2875%" y="677" width="0.0185%" height="15" fill="rgb(208,88,43)" fg:x="127833" fg:w="67"/><text x="35.5375%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (37 samples, 0.01%)</title><rect x="35.3096%" y="693" width="0.0102%" height="15" fill="rgb(205,136,37)" fg:x="127913" fg:w="37"/><text x="35.5596%" y="703.50"></text></g><g><title>__radix_tree_lookup (39 samples, 0.01%)</title><rect x="35.3328%" y="661" width="0.0108%" height="15" fill="rgb(237,34,14)" fg:x="127997" fg:w="39"/><text x="35.5828%" y="671.50"></text></g><g><title>find_extent_buffer (65 samples, 0.02%)</title><rect x="35.3303%" y="677" width="0.0179%" height="15" fill="rgb(236,193,44)" fg:x="127988" fg:w="65"/><text x="35.5803%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (109 samples, 0.03%)</title><rect x="35.3198%" y="693" width="0.0301%" height="15" fill="rgb(231,48,10)" fg:x="127950" fg:w="109"/><text x="35.5698%" y="703.50"></text></g><g><title>btrfs_search_slot (1,257 samples, 0.35%)</title><rect x="35.0057%" y="709" width="0.3470%" height="15" fill="rgb(213,141,34)" fg:x="126812" fg:w="1257"/><text x="35.2557%" y="719.50"></text></g><g><title>btrfs_real_readdir (1,614 samples, 0.45%)</title><rect x="34.9389%" y="725" width="0.4455%" height="15" fill="rgb(249,130,34)" fg:x="126570" fg:w="1614"/><text x="35.1889%" y="735.50"></text></g><g><title>read_extent_buffer (62 samples, 0.02%)</title><rect x="35.3673%" y="709" width="0.0171%" height="15" fill="rgb(219,42,41)" fg:x="128122" fg:w="62"/><text x="35.6173%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (55 samples, 0.02%)</title><rect x="35.3974%" y="677" width="0.0152%" height="15" fill="rgb(224,100,54)" fg:x="128231" fg:w="55"/><text x="35.6474%" y="687.50"></text></g><g><title>btrfs_update_inode (60 samples, 0.02%)</title><rect x="35.3969%" y="693" width="0.0166%" height="15" fill="rgb(229,200,27)" fg:x="128229" fg:w="60"/><text x="35.6469%" y="703.50"></text></g><g><title>btrfs_dirty_inode (93 samples, 0.03%)</title><rect x="35.3930%" y="709" width="0.0257%" height="15" fill="rgb(217,118,10)" fg:x="128215" fg:w="93"/><text x="35.6430%" y="719.50"></text></g><g><title>touch_atime (107 samples, 0.03%)</title><rect x="35.3897%" y="725" width="0.0295%" height="15" fill="rgb(206,22,3)" fg:x="128203" fg:w="107"/><text x="35.6397%" y="735.50"></text></g><g><title>iterate_dir (1,753 samples, 0.48%)</title><rect x="34.9364%" y="741" width="0.4839%" height="15" fill="rgb(232,163,46)" fg:x="126561" fg:w="1753"/><text x="35.1864%" y="751.50"></text></g><g><title>do_syscall_64 (1,775 samples, 0.49%)</title><rect x="34.9306%" y="773" width="0.4900%" height="15" fill="rgb(206,95,13)" fg:x="126540" fg:w="1775"/><text x="35.1806%" y="783.50"></text></g><g><title>__x64_sys_getdents64 (1,774 samples, 0.49%)</title><rect x="34.9309%" y="757" width="0.4897%" height="15" fill="rgb(253,154,18)" fg:x="126541" fg:w="1774"/><text x="35.1809%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,790 samples, 0.49%)</title><rect x="34.9298%" y="789" width="0.4941%" height="15" fill="rgb(219,32,23)" fg:x="126537" fg:w="1790"/><text x="35.1798%" y="799.50"></text></g><g><title>__GI___readdir64 (1,838 samples, 0.51%)</title><rect x="34.9174%" y="821" width="0.5074%" height="15" fill="rgb(230,191,45)" fg:x="126492" fg:w="1838"/><text x="35.1674%" y="831.50"></text></g><g><title>__GI___getdents64 (1,807 samples, 0.50%)</title><rect x="34.9259%" y="805" width="0.4988%" height="15" fill="rgb(229,64,36)" fg:x="126523" fg:w="1807"/><text x="35.1759%" y="815.50"></text></g><g><title>link_path_walk.part.0 (38 samples, 0.01%)</title><rect x="35.4289%" y="709" width="0.0105%" height="15" fill="rgb(205,129,25)" fg:x="128345" fg:w="38"/><text x="35.6789%" y="719.50"></text></g><g><title>path_lookupat (49 samples, 0.01%)</title><rect x="35.4278%" y="725" width="0.0135%" height="15" fill="rgb(254,112,7)" fg:x="128341" fg:w="49"/><text x="35.6778%" y="735.50"></text></g><g><title>filename_lookup (52 samples, 0.01%)</title><rect x="35.4272%" y="741" width="0.0144%" height="15" fill="rgb(226,53,48)" fg:x="128339" fg:w="52"/><text x="35.6772%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.02%)</title><rect x="35.4258%" y="805" width="0.0193%" height="15" fill="rgb(214,153,38)" fg:x="128334" fg:w="70"/><text x="35.6758%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.02%)</title><rect x="35.4258%" y="789" width="0.0193%" height="15" fill="rgb(243,101,7)" fg:x="128334" fg:w="70"/><text x="35.6758%" y="799.50"></text></g><g><title>__do_sys_newstat (70 samples, 0.02%)</title><rect x="35.4258%" y="773" width="0.0193%" height="15" fill="rgb(240,140,22)" fg:x="128334" fg:w="70"/><text x="35.6758%" y="783.50"></text></g><g><title>vfs_statx (69 samples, 0.02%)</title><rect x="35.4261%" y="757" width="0.0190%" height="15" fill="rgb(235,114,2)" fg:x="128335" fg:w="69"/><text x="35.6761%" y="767.50"></text></g><g><title>__GI___xstat (74 samples, 0.02%)</title><rect x="35.4250%" y="821" width="0.0204%" height="15" fill="rgb(242,59,12)" fg:x="128331" fg:w="74"/><text x="35.6750%" y="831.50"></text></g><g><title>btrfs_lookup_dir_item (50 samples, 0.01%)</title><rect x="35.4510%" y="677" width="0.0138%" height="15" fill="rgb(252,134,9)" fg:x="128425" fg:w="50"/><text x="35.7010%" y="687.50"></text></g><g><title>btrfs_search_slot (50 samples, 0.01%)</title><rect x="35.4510%" y="661" width="0.0138%" height="15" fill="rgb(236,4,44)" fg:x="128425" fg:w="50"/><text x="35.7010%" y="671.50"></text></g><g><title>__btrfs_unlink_inode (66 samples, 0.02%)</title><rect x="35.4476%" y="693" width="0.0182%" height="15" fill="rgb(254,172,41)" fg:x="128413" fg:w="66"/><text x="35.6976%" y="703.50"></text></g><g><title>btrfs_rmdir (80 samples, 0.02%)</title><rect x="35.4474%" y="709" width="0.0221%" height="15" fill="rgb(244,63,20)" fg:x="128412" fg:w="80"/><text x="35.6974%" y="719.50"></text></g><g><title>btrfs_del_orphan_item (44 samples, 0.01%)</title><rect x="35.4797%" y="677" width="0.0121%" height="15" fill="rgb(250,73,31)" fg:x="128529" fg:w="44"/><text x="35.7297%" y="687.50"></text></g><g><title>btrfs_search_slot (44 samples, 0.01%)</title><rect x="35.4797%" y="661" width="0.0121%" height="15" fill="rgb(241,38,36)" fg:x="128529" fg:w="44"/><text x="35.7297%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (43 samples, 0.01%)</title><rect x="35.4918%" y="677" width="0.0119%" height="15" fill="rgb(245,211,2)" fg:x="128573" fg:w="43"/><text x="35.7418%" y="687.50"></text></g><g><title>evict (122 samples, 0.03%)</title><rect x="35.4703%" y="709" width="0.0337%" height="15" fill="rgb(206,120,28)" fg:x="128495" fg:w="122"/><text x="35.7203%" y="719.50"></text></g><g><title>btrfs_evict_inode (122 samples, 0.03%)</title><rect x="35.4703%" y="693" width="0.0337%" height="15" fill="rgb(211,59,34)" fg:x="128495" fg:w="122"/><text x="35.7203%" y="703.50"></text></g><g><title>__GI_remove (216 samples, 0.06%)</title><rect x="35.4454%" y="805" width="0.0596%" height="15" fill="rgb(233,168,5)" fg:x="128405" fg:w="216"/><text x="35.6954%" y="815.50"></text></g><g><title>__GI___rmdir (215 samples, 0.06%)</title><rect x="35.4457%" y="789" width="0.0593%" height="15" fill="rgb(234,33,13)" fg:x="128406" fg:w="215"/><text x="35.6957%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (213 samples, 0.06%)</title><rect x="35.4463%" y="773" width="0.0588%" height="15" fill="rgb(231,150,26)" fg:x="128408" fg:w="213"/><text x="35.6963%" y="783.50"></text></g><g><title>do_syscall_64 (213 samples, 0.06%)</title><rect x="35.4463%" y="757" width="0.0588%" height="15" fill="rgb(217,191,4)" fg:x="128408" fg:w="213"/><text x="35.6963%" y="767.50"></text></g><g><title>do_rmdir (212 samples, 0.06%)</title><rect x="35.4465%" y="741" width="0.0585%" height="15" fill="rgb(246,198,38)" fg:x="128409" fg:w="212"/><text x="35.6965%" y="751.50"></text></g><g><title>vfs_rmdir.part.0 (209 samples, 0.06%)</title><rect x="35.4474%" y="725" width="0.0577%" height="15" fill="rgb(245,64,37)" fg:x="128412" fg:w="209"/><text x="35.6974%" y="735.50"></text></g><g><title>btrfs_lookup (37 samples, 0.01%)</title><rect x="35.5070%" y="725" width="0.0102%" height="15" fill="rgb(250,30,36)" fg:x="128628" fg:w="37"/><text x="35.7570%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (37 samples, 0.01%)</title><rect x="35.5070%" y="709" width="0.0102%" height="15" fill="rgb(217,86,53)" fg:x="128628" fg:w="37"/><text x="35.7570%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (37 samples, 0.01%)</title><rect x="35.5070%" y="693" width="0.0102%" height="15" fill="rgb(228,157,16)" fg:x="128628" fg:w="37"/><text x="35.7570%" y="703.50"></text></g><g><title>__lookup_hash (41 samples, 0.01%)</title><rect x="35.5070%" y="741" width="0.0113%" height="15" fill="rgb(217,59,31)" fg:x="128628" fg:w="41"/><text x="35.7570%" y="751.50"></text></g><g><title>__GI_remove (307 samples, 0.08%)</title><rect x="35.4454%" y="821" width="0.0847%" height="15" fill="rgb(237,138,41)" fg:x="128405" fg:w="307"/><text x="35.6954%" y="831.50"></text></g><g><title>__unlink (91 samples, 0.03%)</title><rect x="35.5051%" y="805" width="0.0251%" height="15" fill="rgb(227,91,49)" fg:x="128621" fg:w="91"/><text x="35.7551%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="35.5056%" y="789" width="0.0246%" height="15" fill="rgb(247,21,44)" fg:x="128623" fg:w="89"/><text x="35.7556%" y="799.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="35.5056%" y="773" width="0.0246%" height="15" fill="rgb(219,210,51)" fg:x="128623" fg:w="89"/><text x="35.7556%" y="783.50"></text></g><g><title>do_unlinkat (84 samples, 0.02%)</title><rect x="35.5070%" y="757" width="0.0232%" height="15" fill="rgb(209,140,6)" fg:x="128628" fg:w="84"/><text x="35.7570%" y="767.50"></text></g><g><title>__switch_to_asm (85 samples, 0.02%)</title><rect x="35.5534%" y="805" width="0.0235%" height="15" fill="rgb(221,188,24)" fg:x="128796" fg:w="85"/><text x="35.8034%" y="815.50"></text></g><g><title>_raw_spin_lock_irqsave (74 samples, 0.02%)</title><rect x="35.5854%" y="805" width="0.0204%" height="15" fill="rgb(232,154,20)" fg:x="128912" fg:w="74"/><text x="35.8354%" y="815.50"></text></g><g><title>memset_erms (102 samples, 0.03%)</title><rect x="35.6690%" y="725" width="0.0282%" height="15" fill="rgb(244,137,50)" fg:x="129215" fg:w="102"/><text x="35.9190%" y="735.50"></text></g><g><title>kmem_cache_alloc (163 samples, 0.04%)</title><rect x="35.6547%" y="741" width="0.0450%" height="15" fill="rgb(225,185,43)" fg:x="129163" fg:w="163"/><text x="35.9047%" y="751.50"></text></g><g><title>__virt_addr_valid (61 samples, 0.02%)</title><rect x="35.7397%" y="709" width="0.0168%" height="15" fill="rgb(213,205,38)" fg:x="129471" fg:w="61"/><text x="35.9897%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (425 samples, 0.12%)</title><rect x="35.6428%" y="773" width="0.1173%" height="15" fill="rgb(236,73,12)" fg:x="129120" fg:w="425"/><text x="35.8928%" y="783.50"></text></g><g><title>getname_flags.part.0 (395 samples, 0.11%)</title><rect x="35.6511%" y="757" width="0.1090%" height="15" fill="rgb(235,219,13)" fg:x="129150" fg:w="395"/><text x="35.9011%" y="767.50"></text></g><g><title>strncpy_from_user (219 samples, 0.06%)</title><rect x="35.6997%" y="741" width="0.0605%" height="15" fill="rgb(218,59,36)" fg:x="129326" fg:w="219"/><text x="35.9497%" y="751.50"></text></g><g><title>__check_object_size (129 samples, 0.04%)</title><rect x="35.7245%" y="725" width="0.0356%" height="15" fill="rgb(205,110,39)" fg:x="129416" fg:w="129"/><text x="35.9745%" y="735.50"></text></g><g><title>filename_parentat (55 samples, 0.02%)</title><rect x="35.7737%" y="757" width="0.0152%" height="15" fill="rgb(218,206,42)" fg:x="129594" fg:w="55"/><text x="36.0237%" y="767.50"></text></g><g><title>path_parentat (53 samples, 0.01%)</title><rect x="35.7742%" y="741" width="0.0146%" height="15" fill="rgb(248,125,24)" fg:x="129596" fg:w="53"/><text x="36.0242%" y="751.50"></text></g><g><title>btrfs_del_dir_entries_in_log (66 samples, 0.02%)</title><rect x="35.8148%" y="709" width="0.0182%" height="15" fill="rgb(242,28,27)" fg:x="129743" fg:w="66"/><text x="36.0648%" y="719.50"></text></g><g><title>btrfs_search_slot (74 samples, 0.02%)</title><rect x="35.8377%" y="677" width="0.0204%" height="15" fill="rgb(216,228,15)" fg:x="129826" fg:w="74"/><text x="36.0877%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (109 samples, 0.03%)</title><rect x="35.8336%" y="693" width="0.0301%" height="15" fill="rgb(235,116,46)" fg:x="129811" fg:w="109"/><text x="36.0836%" y="703.50"></text></g><g><title>btrfs_del_inode_ref_in_log (117 samples, 0.03%)</title><rect x="35.8330%" y="709" width="0.0323%" height="15" fill="rgb(224,18,32)" fg:x="129809" fg:w="117"/><text x="36.0830%" y="719.50"></text></g><g><title>btrfs_get_token_32 (38 samples, 0.01%)</title><rect x="35.8799%" y="693" width="0.0105%" height="15" fill="rgb(252,5,12)" fg:x="129979" fg:w="38"/><text x="36.1299%" y="703.50"></text></g><g><title>memmove_extent_buffer (40 samples, 0.01%)</title><rect x="35.8990%" y="693" width="0.0110%" height="15" fill="rgb(251,36,5)" fg:x="130048" fg:w="40"/><text x="36.1490%" y="703.50"></text></g><g><title>btrfs_del_items (171 samples, 0.05%)</title><rect x="35.8653%" y="709" width="0.0472%" height="15" fill="rgb(217,53,14)" fg:x="129926" fg:w="171"/><text x="36.1153%" y="719.50"></text></g><g><title>_raw_spin_lock_irqsave (86 samples, 0.02%)</title><rect x="35.9503%" y="629" width="0.0237%" height="15" fill="rgb(215,86,45)" fg:x="130234" fg:w="86"/><text x="36.2003%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (81 samples, 0.02%)</title><rect x="35.9517%" y="613" width="0.0224%" height="15" fill="rgb(242,169,11)" fg:x="130239" fg:w="81"/><text x="36.2017%" y="623.50"></text></g><g><title>prepare_to_wait_event (96 samples, 0.03%)</title><rect x="35.9484%" y="645" width="0.0265%" height="15" fill="rgb(211,213,45)" fg:x="130227" fg:w="96"/><text x="36.1984%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (44 samples, 0.01%)</title><rect x="35.9749%" y="645" width="0.0121%" height="15" fill="rgb(205,88,11)" fg:x="130323" fg:w="44"/><text x="36.2249%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (219 samples, 0.06%)</title><rect x="35.9385%" y="661" width="0.0605%" height="15" fill="rgb(252,69,26)" fg:x="130191" fg:w="219"/><text x="36.1885%" y="671.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="35.9870%" y="645" width="0.0119%" height="15" fill="rgb(246,123,37)" fg:x="130367" fg:w="43"/><text x="36.2370%" y="655.50"></text></g><g><title>__schedule (40 samples, 0.01%)</title><rect x="35.9879%" y="629" width="0.0110%" height="15" fill="rgb(212,205,5)" fg:x="130370" fg:w="40"/><text x="36.2379%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (221 samples, 0.06%)</title><rect x="35.9382%" y="677" width="0.0610%" height="15" fill="rgb(253,148,0)" fg:x="130190" fg:w="221"/><text x="36.1882%" y="687.50"></text></g><g><title>__btrfs_tree_lock (49 samples, 0.01%)</title><rect x="35.9992%" y="677" width="0.0135%" height="15" fill="rgb(239,22,4)" fg:x="130411" fg:w="49"/><text x="36.2492%" y="687.50"></text></g><g><title>schedule (46 samples, 0.01%)</title><rect x="36.0000%" y="661" width="0.0127%" height="15" fill="rgb(226,26,53)" fg:x="130414" fg:w="46"/><text x="36.2500%" y="671.50"></text></g><g><title>__schedule (45 samples, 0.01%)</title><rect x="36.0003%" y="645" width="0.0124%" height="15" fill="rgb(225,229,45)" fg:x="130415" fg:w="45"/><text x="36.2503%" y="655.50"></text></g><g><title>finish_wait (146 samples, 0.04%)</title><rect x="36.0246%" y="645" width="0.0403%" height="15" fill="rgb(220,60,37)" fg:x="130503" fg:w="146"/><text x="36.2746%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (139 samples, 0.04%)</title><rect x="36.0265%" y="629" width="0.0384%" height="15" fill="rgb(217,180,35)" fg:x="130510" fg:w="139"/><text x="36.2765%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (134 samples, 0.04%)</title><rect x="36.0279%" y="613" width="0.0370%" height="15" fill="rgb(229,7,53)" fg:x="130515" fg:w="134"/><text x="36.2779%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (487 samples, 0.13%)</title><rect x="36.0781%" y="629" width="0.1344%" height="15" fill="rgb(254,137,3)" fg:x="130697" fg:w="487"/><text x="36.3281%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (461 samples, 0.13%)</title><rect x="36.0853%" y="613" width="0.1273%" height="15" fill="rgb(215,140,41)" fg:x="130723" fg:w="461"/><text x="36.3353%" y="623.50"></text></g><g><title>prepare_to_wait_event (541 samples, 0.15%)</title><rect x="36.0652%" y="645" width="0.1493%" height="15" fill="rgb(250,80,15)" fg:x="130650" fg:w="541"/><text x="36.3152%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (186 samples, 0.05%)</title><rect x="36.2145%" y="645" width="0.0513%" height="15" fill="rgb(252,191,6)" fg:x="131191" fg:w="186"/><text x="36.4645%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (108 samples, 0.03%)</title><rect x="36.2360%" y="629" width="0.0298%" height="15" fill="rgb(246,217,18)" fg:x="131269" fg:w="108"/><text x="36.4860%" y="639.50"></text></g><g><title>dequeue_entity (60 samples, 0.02%)</title><rect x="36.2774%" y="597" width="0.0166%" height="15" fill="rgb(223,93,7)" fg:x="131419" fg:w="60"/><text x="36.5274%" y="607.50"></text></g><g><title>dequeue_task_fair (73 samples, 0.02%)</title><rect x="36.2758%" y="613" width="0.0202%" height="15" fill="rgb(225,55,52)" fg:x="131413" fg:w="73"/><text x="36.5258%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.03%)</title><rect x="36.3006%" y="597" width="0.0276%" height="15" fill="rgb(240,31,24)" fg:x="131503" fg:w="100"/><text x="36.5506%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (95 samples, 0.03%)</title><rect x="36.3020%" y="581" width="0.0262%" height="15" fill="rgb(205,56,52)" fg:x="131508" fg:w="95"/><text x="36.5520%" y="591.50"></text></g><g><title>native_write_msr (93 samples, 0.03%)</title><rect x="36.3026%" y="565" width="0.0257%" height="15" fill="rgb(246,146,12)" fg:x="131510" fg:w="93"/><text x="36.5526%" y="575.50"></text></g><g><title>finish_task_switch (123 samples, 0.03%)</title><rect x="36.2959%" y="613" width="0.0340%" height="15" fill="rgb(239,84,36)" fg:x="131486" fg:w="123"/><text x="36.5459%" y="623.50"></text></g><g><title>psi_task_change (82 samples, 0.02%)</title><rect x="36.3379%" y="613" width="0.0226%" height="15" fill="rgb(207,41,40)" fg:x="131638" fg:w="82"/><text x="36.5879%" y="623.50"></text></g><g><title>psi_group_change (69 samples, 0.02%)</title><rect x="36.3415%" y="597" width="0.0190%" height="15" fill="rgb(241,179,25)" fg:x="131651" fg:w="69"/><text x="36.5915%" y="607.50"></text></g><g><title>__btrfs_tree_lock (1,274 samples, 0.35%)</title><rect x="36.0141%" y="661" width="0.3517%" height="15" fill="rgb(210,0,34)" fg:x="130465" fg:w="1274"/><text x="36.2641%" y="671.50"></text></g><g><title>schedule (362 samples, 0.10%)</title><rect x="36.2658%" y="645" width="0.0999%" height="15" fill="rgb(225,217,29)" fg:x="131377" fg:w="362"/><text x="36.5158%" y="655.50"></text></g><g><title>__schedule (362 samples, 0.10%)</title><rect x="36.2658%" y="629" width="0.0999%" height="15" fill="rgb(216,191,38)" fg:x="131377" fg:w="362"/><text x="36.5158%" y="639.50"></text></g><g><title>btrfs_lock_root_node (1,277 samples, 0.35%)</title><rect x="36.0138%" y="677" width="0.3525%" height="15" fill="rgb(232,140,52)" fg:x="130464" fg:w="1277"/><text x="36.2638%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (51 samples, 0.01%)</title><rect x="36.3683%" y="677" width="0.0141%" height="15" fill="rgb(223,158,51)" fg:x="131748" fg:w="51"/><text x="36.6183%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (46 samples, 0.01%)</title><rect x="36.3696%" y="661" width="0.0127%" height="15" fill="rgb(235,29,51)" fg:x="131753" fg:w="46"/><text x="36.6196%" y="671.50"></text></g><g><title>select_task_rq_fair (48 samples, 0.01%)</title><rect x="36.4204%" y="597" width="0.0133%" height="15" fill="rgb(215,181,18)" fg:x="131937" fg:w="48"/><text x="36.6704%" y="607.50"></text></g><g><title>enqueue_task_fair (45 samples, 0.01%)</title><rect x="36.4364%" y="581" width="0.0124%" height="15" fill="rgb(227,125,34)" fg:x="131995" fg:w="45"/><text x="36.6864%" y="591.50"></text></g><g><title>ttwu_do_activate (97 samples, 0.03%)</title><rect x="36.4356%" y="597" width="0.0268%" height="15" fill="rgb(230,197,49)" fg:x="131992" fg:w="97"/><text x="36.6856%" y="607.50"></text></g><g><title>psi_task_change (49 samples, 0.01%)</title><rect x="36.4489%" y="581" width="0.0135%" height="15" fill="rgb(239,141,16)" fg:x="132040" fg:w="49"/><text x="36.6989%" y="591.50"></text></g><g><title>psi_group_change (45 samples, 0.01%)</title><rect x="36.4500%" y="565" width="0.0124%" height="15" fill="rgb(225,105,43)" fg:x="132044" fg:w="45"/><text x="36.7000%" y="575.50"></text></g><g><title>__wake_up_common (233 samples, 0.06%)</title><rect x="36.4036%" y="645" width="0.0643%" height="15" fill="rgb(214,131,14)" fg:x="131876" fg:w="233"/><text x="36.6536%" y="655.50"></text></g><g><title>autoremove_wake_function (231 samples, 0.06%)</title><rect x="36.4041%" y="629" width="0.0638%" height="15" fill="rgb(229,177,11)" fg:x="131878" fg:w="231"/><text x="36.6541%" y="639.50"></text></g><g><title>try_to_wake_up (229 samples, 0.06%)</title><rect x="36.4047%" y="613" width="0.0632%" height="15" fill="rgb(231,180,14)" fg:x="131880" fg:w="229"/><text x="36.6547%" y="623.50"></text></g><g><title>__wake_up_common_lock (241 samples, 0.07%)</title><rect x="36.4033%" y="661" width="0.0665%" height="15" fill="rgb(232,88,2)" fg:x="131875" fg:w="241"/><text x="36.6533%" y="671.50"></text></g><g><title>btrfs_search_slot (1,944 samples, 0.54%)</title><rect x="35.9343%" y="693" width="0.5366%" height="15" fill="rgb(205,220,8)" fg:x="130176" fg:w="1944"/><text x="36.1843%" y="703.50"></text></g><g><title>unlock_up (249 samples, 0.07%)</title><rect x="36.4022%" y="677" width="0.0687%" height="15" fill="rgb(225,23,53)" fg:x="131871" fg:w="249"/><text x="36.6522%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (1,969 samples, 0.54%)</title><rect x="35.9288%" y="709" width="0.5435%" height="15" fill="rgb(213,62,29)" fg:x="130156" fg:w="1969"/><text x="36.1788%" y="719.50"></text></g><g><title>__wake_up_common (74 samples, 0.02%)</title><rect x="36.4723%" y="677" width="0.0204%" height="15" fill="rgb(227,75,7)" fg:x="132125" fg:w="74"/><text x="36.7223%" y="687.50"></text></g><g><title>autoremove_wake_function (73 samples, 0.02%)</title><rect x="36.4726%" y="661" width="0.0202%" height="15" fill="rgb(207,105,14)" fg:x="132126" fg:w="73"/><text x="36.7226%" y="671.50"></text></g><g><title>try_to_wake_up (71 samples, 0.02%)</title><rect x="36.4732%" y="645" width="0.0196%" height="15" fill="rgb(245,62,29)" fg:x="132128" fg:w="71"/><text x="36.7232%" y="655.50"></text></g><g><title>__wake_up_common_lock (75 samples, 0.02%)</title><rect x="36.4723%" y="693" width="0.0207%" height="15" fill="rgb(236,202,4)" fg:x="132125" fg:w="75"/><text x="36.7223%" y="703.50"></text></g><g><title>btrfs_release_path (86 samples, 0.02%)</title><rect x="36.4723%" y="709" width="0.0237%" height="15" fill="rgb(250,67,1)" fg:x="132125" fg:w="86"/><text x="36.7223%" y="719.50"></text></g><g><title>__btrfs_unlink_inode (2,514 samples, 0.69%)</title><rect x="35.8117%" y="725" width="0.6940%" height="15" fill="rgb(253,115,44)" fg:x="129732" fg:w="2514"/><text x="36.0617%" y="735.50"></text></g><g><title>_raw_spin_lock_irqsave (124 samples, 0.03%)</title><rect x="36.5388%" y="613" width="0.0342%" height="15" fill="rgb(251,139,18)" fg:x="132366" fg:w="124"/><text x="36.7888%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (123 samples, 0.03%)</title><rect x="36.5391%" y="597" width="0.0340%" height="15" fill="rgb(218,22,32)" fg:x="132367" fg:w="123"/><text x="36.7891%" y="607.50"></text></g><g><title>prepare_to_wait_event (133 samples, 0.04%)</title><rect x="36.5369%" y="629" width="0.0367%" height="15" fill="rgb(243,53,5)" fg:x="132359" fg:w="133"/><text x="36.7869%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (282 samples, 0.08%)</title><rect x="36.5259%" y="645" width="0.0778%" height="15" fill="rgb(227,56,16)" fg:x="132319" fg:w="282"/><text x="36.7759%" y="655.50"></text></g><g><title>schedule (79 samples, 0.02%)</title><rect x="36.5819%" y="629" width="0.0218%" height="15" fill="rgb(245,53,0)" fg:x="132522" fg:w="79"/><text x="36.8319%" y="639.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="36.5819%" y="613" width="0.0218%" height="15" fill="rgb(216,170,35)" fg:x="132522" fg:w="79"/><text x="36.8319%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (289 samples, 0.08%)</title><rect x="36.5256%" y="661" width="0.0798%" height="15" fill="rgb(211,200,8)" fg:x="132318" fg:w="289"/><text x="36.7756%" y="671.50"></text></g><g><title>__btrfs_tree_lock (89 samples, 0.02%)</title><rect x="36.6054%" y="661" width="0.0246%" height="15" fill="rgb(228,204,44)" fg:x="132607" fg:w="89"/><text x="36.8554%" y="671.50"></text></g><g><title>schedule (55 samples, 0.02%)</title><rect x="36.6148%" y="645" width="0.0152%" height="15" fill="rgb(214,121,17)" fg:x="132641" fg:w="55"/><text x="36.8648%" y="655.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="36.6150%" y="629" width="0.0149%" height="15" fill="rgb(233,64,38)" fg:x="132642" fg:w="54"/><text x="36.8650%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (41 samples, 0.01%)</title><rect x="36.6424%" y="661" width="0.0113%" height="15" fill="rgb(253,54,19)" fg:x="132741" fg:w="41"/><text x="36.8924%" y="671.50"></text></g><g><title>ttwu_do_activate (51 samples, 0.01%)</title><rect x="36.6738%" y="581" width="0.0141%" height="15" fill="rgb(253,94,18)" fg:x="132855" fg:w="51"/><text x="36.9238%" y="591.50"></text></g><g><title>__wake_up_common_lock (131 samples, 0.04%)</title><rect x="36.6556%" y="645" width="0.0362%" height="15" fill="rgb(227,57,52)" fg:x="132789" fg:w="131"/><text x="36.9056%" y="655.50"></text></g><g><title>__wake_up_common (131 samples, 0.04%)</title><rect x="36.6556%" y="629" width="0.0362%" height="15" fill="rgb(230,228,50)" fg:x="132789" fg:w="131"/><text x="36.9056%" y="639.50"></text></g><g><title>autoremove_wake_function (128 samples, 0.04%)</title><rect x="36.6564%" y="613" width="0.0353%" height="15" fill="rgb(217,205,27)" fg:x="132792" fg:w="128"/><text x="36.9064%" y="623.50"></text></g><g><title>try_to_wake_up (126 samples, 0.03%)</title><rect x="36.6570%" y="597" width="0.0348%" height="15" fill="rgb(252,71,50)" fg:x="132794" fg:w="126"/><text x="36.9070%" y="607.50"></text></g><g><title>btrfs_search_slot (625 samples, 0.17%)</title><rect x="36.5206%" y="677" width="0.1725%" height="15" fill="rgb(209,86,4)" fg:x="132300" fg:w="625"/><text x="36.7706%" y="687.50"></text></g><g><title>unlock_up (143 samples, 0.04%)</title><rect x="36.6537%" y="661" width="0.0395%" height="15" fill="rgb(229,94,0)" fg:x="132782" fg:w="143"/><text x="36.9037%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (656 samples, 0.18%)</title><rect x="36.5195%" y="693" width="0.1811%" height="15" fill="rgb(252,223,21)" fg:x="132296" fg:w="656"/><text x="36.7695%" y="703.50"></text></g><g><title>btrfs_orphan_add (704 samples, 0.19%)</title><rect x="36.5082%" y="725" width="0.1943%" height="15" fill="rgb(230,210,4)" fg:x="132255" fg:w="704"/><text x="36.7582%" y="735.50"></text></g><g><title>btrfs_insert_orphan_item (702 samples, 0.19%)</title><rect x="36.5088%" y="709" width="0.1938%" height="15" fill="rgb(240,149,38)" fg:x="132257" fg:w="702"/><text x="36.7588%" y="719.50"></text></g><g><title>btrfs_rmdir (3,323 samples, 0.92%)</title><rect x="35.8015%" y="741" width="0.9173%" height="15" fill="rgb(254,105,20)" fg:x="129695" fg:w="3323"/><text x="36.0515%" y="751.50"></text></g><g><title>destroy_inode (78 samples, 0.02%)</title><rect x="36.7257%" y="741" width="0.0215%" height="15" fill="rgb(253,87,46)" fg:x="133043" fg:w="78"/><text x="36.9757%" y="751.50"></text></g><g><title>btrfs_destroy_inode (61 samples, 0.02%)</title><rect x="36.7304%" y="725" width="0.0168%" height="15" fill="rgb(253,116,33)" fg:x="133060" fg:w="61"/><text x="36.9804%" y="735.50"></text></g><g><title>__btrfs_end_transaction (43 samples, 0.01%)</title><rect x="36.7517%" y="709" width="0.0119%" height="15" fill="rgb(229,198,5)" fg:x="133137" fg:w="43"/><text x="37.0017%" y="719.50"></text></g><g><title>btrfs_get_token_32 (45 samples, 0.01%)</title><rect x="36.7989%" y="661" width="0.0124%" height="15" fill="rgb(242,38,37)" fg:x="133308" fg:w="45"/><text x="37.0489%" y="671.50"></text></g><g><title>memmove_extent_buffer (37 samples, 0.01%)</title><rect x="36.8240%" y="661" width="0.0102%" height="15" fill="rgb(242,69,53)" fg:x="133399" fg:w="37"/><text x="37.0740%" y="671.50"></text></g><g><title>btrfs_del_items (179 samples, 0.05%)</title><rect x="36.7851%" y="677" width="0.0494%" height="15" fill="rgb(249,80,16)" fg:x="133258" fg:w="179"/><text x="37.0351%" y="687.50"></text></g><g><title>prepare_to_wait_event (98 samples, 0.03%)</title><rect x="36.8511%" y="613" width="0.0271%" height="15" fill="rgb(206,128,11)" fg:x="133497" fg:w="98"/><text x="37.1011%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (95 samples, 0.03%)</title><rect x="36.8519%" y="597" width="0.0262%" height="15" fill="rgb(212,35,20)" fg:x="133500" fg:w="95"/><text x="37.1019%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (92 samples, 0.03%)</title><rect x="36.8527%" y="581" width="0.0254%" height="15" fill="rgb(236,79,13)" fg:x="133503" fg:w="92"/><text x="37.1027%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (212 samples, 0.06%)</title><rect x="36.8430%" y="629" width="0.0585%" height="15" fill="rgb(233,123,3)" fg:x="133468" fg:w="212"/><text x="37.0930%" y="639.50"></text></g><g><title>schedule (66 samples, 0.02%)</title><rect x="36.8834%" y="613" width="0.0182%" height="15" fill="rgb(214,93,52)" fg:x="133614" fg:w="66"/><text x="37.1334%" y="623.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="36.8836%" y="597" width="0.0179%" height="15" fill="rgb(251,37,40)" fg:x="133615" fg:w="65"/><text x="37.1336%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (219 samples, 0.06%)</title><rect x="36.8425%" y="645" width="0.0605%" height="15" fill="rgb(227,80,54)" fg:x="133466" fg:w="219"/><text x="37.0925%" y="655.50"></text></g><g><title>__btrfs_tree_lock (67 samples, 0.02%)</title><rect x="36.9030%" y="645" width="0.0185%" height="15" fill="rgb(254,48,11)" fg:x="133685" fg:w="67"/><text x="37.1530%" y="655.50"></text></g><g><title>schedule (58 samples, 0.02%)</title><rect x="36.9054%" y="629" width="0.0160%" height="15" fill="rgb(235,193,26)" fg:x="133694" fg:w="58"/><text x="37.1554%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="36.9054%" y="613" width="0.0160%" height="15" fill="rgb(229,99,21)" fg:x="133694" fg:w="58"/><text x="37.1554%" y="623.50"></text></g><g><title>finish_wait (92 samples, 0.03%)</title><rect x="36.9303%" y="613" width="0.0254%" height="15" fill="rgb(211,140,41)" fg:x="133784" fg:w="92"/><text x="37.1803%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (87 samples, 0.02%)</title><rect x="36.9317%" y="597" width="0.0240%" height="15" fill="rgb(240,227,30)" fg:x="133789" fg:w="87"/><text x="37.1817%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (81 samples, 0.02%)</title><rect x="36.9333%" y="581" width="0.0224%" height="15" fill="rgb(215,224,45)" fg:x="133795" fg:w="81"/><text x="37.1833%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (356 samples, 0.10%)</title><rect x="36.9651%" y="597" width="0.0983%" height="15" fill="rgb(206,123,31)" fg:x="133910" fg:w="356"/><text x="37.2151%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (338 samples, 0.09%)</title><rect x="36.9700%" y="581" width="0.0933%" height="15" fill="rgb(210,138,16)" fg:x="133928" fg:w="338"/><text x="37.2200%" y="591.50"></text></g><g><title>prepare_to_wait_event (393 samples, 0.11%)</title><rect x="36.9560%" y="613" width="0.1085%" height="15" fill="rgb(228,57,28)" fg:x="133877" fg:w="393"/><text x="37.2060%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (144 samples, 0.04%)</title><rect x="37.0644%" y="613" width="0.0398%" height="15" fill="rgb(242,170,10)" fg:x="134270" fg:w="144"/><text x="37.3144%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (83 samples, 0.02%)</title><rect x="37.0813%" y="597" width="0.0229%" height="15" fill="rgb(228,214,39)" fg:x="134331" fg:w="83"/><text x="37.3313%" y="607.50"></text></g><g><title>dequeue_entity (46 samples, 0.01%)</title><rect x="37.1166%" y="565" width="0.0127%" height="15" fill="rgb(218,179,33)" fg:x="134459" fg:w="46"/><text x="37.3666%" y="575.50"></text></g><g><title>dequeue_task_fair (58 samples, 0.02%)</title><rect x="37.1155%" y="581" width="0.0160%" height="15" fill="rgb(235,193,39)" fg:x="134455" fg:w="58"/><text x="37.3655%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.03%)</title><rect x="37.1354%" y="565" width="0.0259%" height="15" fill="rgb(219,221,36)" fg:x="134527" fg:w="94"/><text x="37.3854%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (92 samples, 0.03%)</title><rect x="37.1359%" y="549" width="0.0254%" height="15" fill="rgb(248,218,19)" fg:x="134529" fg:w="92"/><text x="37.3859%" y="559.50"></text></g><g><title>native_write_msr (91 samples, 0.03%)</title><rect x="37.1362%" y="533" width="0.0251%" height="15" fill="rgb(205,50,9)" fg:x="134530" fg:w="91"/><text x="37.3862%" y="543.50"></text></g><g><title>finish_task_switch (112 samples, 0.03%)</title><rect x="37.1315%" y="581" width="0.0309%" height="15" fill="rgb(238,81,28)" fg:x="134513" fg:w="112"/><text x="37.3815%" y="591.50"></text></g><g><title>psi_task_change (50 samples, 0.01%)</title><rect x="37.1674%" y="581" width="0.0138%" height="15" fill="rgb(235,110,19)" fg:x="134643" fg:w="50"/><text x="37.4174%" y="591.50"></text></g><g><title>psi_group_change (42 samples, 0.01%)</title><rect x="37.1696%" y="565" width="0.0116%" height="15" fill="rgb(214,7,14)" fg:x="134651" fg:w="42"/><text x="37.4196%" y="575.50"></text></g><g><title>__btrfs_tree_lock (956 samples, 0.26%)</title><rect x="36.9220%" y="629" width="0.2639%" height="15" fill="rgb(211,77,3)" fg:x="133754" fg:w="956"/><text x="37.1720%" y="639.50"></text></g><g><title>schedule (296 samples, 0.08%)</title><rect x="37.1042%" y="613" width="0.0817%" height="15" fill="rgb(229,5,9)" fg:x="134414" fg:w="296"/><text x="37.3542%" y="623.50"></text></g><g><title>__schedule (294 samples, 0.08%)</title><rect x="37.1047%" y="597" width="0.0812%" height="15" fill="rgb(225,90,11)" fg:x="134416" fg:w="294"/><text x="37.3547%" y="607.50"></text></g><g><title>btrfs_lock_root_node (957 samples, 0.26%)</title><rect x="36.9220%" y="645" width="0.2642%" height="15" fill="rgb(242,56,8)" fg:x="133754" fg:w="957"/><text x="37.1720%" y="655.50"></text></g><g><title>select_task_rq_fair (49 samples, 0.01%)</title><rect x="37.2386%" y="565" width="0.0135%" height="15" fill="rgb(249,212,39)" fg:x="134901" fg:w="49"/><text x="37.4886%" y="575.50"></text></g><g><title>enqueue_entity (59 samples, 0.02%)</title><rect x="37.2579%" y="533" width="0.0163%" height="15" fill="rgb(236,90,9)" fg:x="134971" fg:w="59"/><text x="37.5079%" y="543.50"></text></g><g><title>enqueue_task_fair (77 samples, 0.02%)</title><rect x="37.2555%" y="549" width="0.0213%" height="15" fill="rgb(206,88,35)" fg:x="134962" fg:w="77"/><text x="37.5055%" y="559.50"></text></g><g><title>ttwu_do_activate (154 samples, 0.04%)</title><rect x="37.2541%" y="565" width="0.0425%" height="15" fill="rgb(205,126,30)" fg:x="134957" fg:w="154"/><text x="37.5041%" y="575.50"></text></g><g><title>psi_task_change (71 samples, 0.02%)</title><rect x="37.2770%" y="549" width="0.0196%" height="15" fill="rgb(230,176,12)" fg:x="135040" fg:w="71"/><text x="37.5270%" y="559.50"></text></g><g><title>psi_group_change (63 samples, 0.02%)</title><rect x="37.2792%" y="533" width="0.0174%" height="15" fill="rgb(243,19,9)" fg:x="135048" fg:w="63"/><text x="37.5292%" y="543.50"></text></g><g><title>__wake_up_common (320 samples, 0.09%)</title><rect x="37.2165%" y="613" width="0.0883%" height="15" fill="rgb(245,171,17)" fg:x="134821" fg:w="320"/><text x="37.4665%" y="623.50"></text></g><g><title>autoremove_wake_function (314 samples, 0.09%)</title><rect x="37.2182%" y="597" width="0.0867%" height="15" fill="rgb(227,52,21)" fg:x="134827" fg:w="314"/><text x="37.4682%" y="607.50"></text></g><g><title>try_to_wake_up (306 samples, 0.08%)</title><rect x="37.2204%" y="581" width="0.0845%" height="15" fill="rgb(238,69,14)" fg:x="134835" fg:w="306"/><text x="37.4704%" y="591.50"></text></g><g><title>__wake_up_common_lock (329 samples, 0.09%)</title><rect x="37.2165%" y="629" width="0.0908%" height="15" fill="rgb(241,156,39)" fg:x="134821" fg:w="329"/><text x="37.4665%" y="639.50"></text></g><g><title>btrfs_lookup_inode (1,712 samples, 0.47%)</title><rect x="36.8359%" y="677" width="0.4726%" height="15" fill="rgb(212,227,28)" fg:x="133442" fg:w="1712"/><text x="37.0859%" y="687.50"></text></g><g><title>btrfs_search_slot (1,706 samples, 0.47%)</title><rect x="36.8375%" y="661" width="0.4709%" height="15" fill="rgb(209,118,27)" fg:x="133448" fg:w="1706"/><text x="37.0875%" y="671.50"></text></g><g><title>unlock_up (336 samples, 0.09%)</title><rect x="37.2157%" y="645" width="0.0928%" height="15" fill="rgb(226,102,5)" fg:x="134818" fg:w="336"/><text x="37.4657%" y="655.50"></text></g><g><title>ttwu_do_activate (40 samples, 0.01%)</title><rect x="37.3189%" y="597" width="0.0110%" height="15" fill="rgb(223,34,3)" fg:x="135192" fg:w="40"/><text x="37.5689%" y="607.50"></text></g><g><title>__wake_up_common (81 samples, 0.02%)</title><rect x="37.3104%" y="645" width="0.0224%" height="15" fill="rgb(221,81,38)" fg:x="135161" fg:w="81"/><text x="37.5604%" y="655.50"></text></g><g><title>autoremove_wake_function (79 samples, 0.02%)</title><rect x="37.3109%" y="629" width="0.0218%" height="15" fill="rgb(236,219,28)" fg:x="135163" fg:w="79"/><text x="37.5609%" y="639.50"></text></g><g><title>try_to_wake_up (76 samples, 0.02%)</title><rect x="37.3118%" y="613" width="0.0210%" height="15" fill="rgb(213,200,14)" fg:x="135166" fg:w="76"/><text x="37.5618%" y="623.50"></text></g><g><title>__wake_up_common_lock (82 samples, 0.02%)</title><rect x="37.3104%" y="661" width="0.0226%" height="15" fill="rgb(240,33,19)" fg:x="135161" fg:w="82"/><text x="37.5604%" y="671.50"></text></g><g><title>btrfs_release_path (94 samples, 0.03%)</title><rect x="37.3101%" y="677" width="0.0259%" height="15" fill="rgb(233,113,27)" fg:x="135160" fg:w="94"/><text x="37.5601%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (2,027 samples, 0.56%)</title><rect x="36.7837%" y="693" width="0.5595%" height="15" fill="rgb(220,221,18)" fg:x="133253" fg:w="2027"/><text x="37.0337%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (2,092 samples, 0.58%)</title><rect x="36.7760%" y="709" width="0.5775%" height="15" fill="rgb(238,92,8)" fg:x="133225" fg:w="2092"/><text x="37.0260%" y="719.50"></text></g><g><title>__wake_up_common (88 samples, 0.02%)</title><rect x="37.3615%" y="645" width="0.0243%" height="15" fill="rgb(222,164,16)" fg:x="135346" fg:w="88"/><text x="37.6115%" y="655.50"></text></g><g><title>autoremove_wake_function (86 samples, 0.02%)</title><rect x="37.3620%" y="629" width="0.0237%" height="15" fill="rgb(241,119,3)" fg:x="135348" fg:w="86"/><text x="37.6120%" y="639.50"></text></g><g><title>try_to_wake_up (86 samples, 0.02%)</title><rect x="37.3620%" y="613" width="0.0237%" height="15" fill="rgb(241,44,8)" fg:x="135348" fg:w="86"/><text x="37.6120%" y="623.50"></text></g><g><title>__wake_up_common_lock (94 samples, 0.03%)</title><rect x="37.3609%" y="661" width="0.0259%" height="15" fill="rgb(230,36,40)" fg:x="135344" fg:w="94"/><text x="37.6109%" y="671.50"></text></g><g><title>btrfs_free_path (105 samples, 0.03%)</title><rect x="37.3604%" y="693" width="0.0290%" height="15" fill="rgb(243,16,36)" fg:x="135342" fg:w="105"/><text x="37.6104%" y="703.50"></text></g><g><title>btrfs_release_path (105 samples, 0.03%)</title><rect x="37.3604%" y="677" width="0.0290%" height="15" fill="rgb(231,4,26)" fg:x="135342" fg:w="105"/><text x="37.6104%" y="687.50"></text></g><g><title>finish_wait (55 samples, 0.02%)</title><rect x="37.3968%" y="645" width="0.0152%" height="15" fill="rgb(240,9,31)" fg:x="135474" fg:w="55"/><text x="37.6468%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (54 samples, 0.01%)</title><rect x="37.3971%" y="629" width="0.0149%" height="15" fill="rgb(207,173,15)" fg:x="135475" fg:w="54"/><text x="37.6471%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (54 samples, 0.01%)</title><rect x="37.3971%" y="613" width="0.0149%" height="15" fill="rgb(224,192,53)" fg:x="135475" fg:w="54"/><text x="37.6471%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (176 samples, 0.05%)</title><rect x="37.4156%" y="629" width="0.0486%" height="15" fill="rgb(223,67,28)" fg:x="135542" fg:w="176"/><text x="37.6656%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (171 samples, 0.05%)</title><rect x="37.4169%" y="613" width="0.0472%" height="15" fill="rgb(211,20,47)" fg:x="135547" fg:w="171"/><text x="37.6669%" y="623.50"></text></g><g><title>prepare_to_wait_event (191 samples, 0.05%)</title><rect x="37.4120%" y="645" width="0.0527%" height="15" fill="rgb(240,228,2)" fg:x="135529" fg:w="191"/><text x="37.6620%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (365 samples, 0.10%)</title><rect x="37.3932%" y="661" width="0.1008%" height="15" fill="rgb(248,151,12)" fg:x="135461" fg:w="365"/><text x="37.6432%" y="671.50"></text></g><g><title>schedule (73 samples, 0.02%)</title><rect x="37.4738%" y="645" width="0.0202%" height="15" fill="rgb(244,8,39)" fg:x="135753" fg:w="73"/><text x="37.7238%" y="655.50"></text></g><g><title>__schedule (72 samples, 0.02%)</title><rect x="37.4741%" y="629" width="0.0199%" height="15" fill="rgb(222,26,8)" fg:x="135754" fg:w="72"/><text x="37.7241%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (368 samples, 0.10%)</title><rect x="37.3932%" y="677" width="0.1016%" height="15" fill="rgb(213,106,44)" fg:x="135461" fg:w="368"/><text x="37.6432%" y="687.50"></text></g><g><title>__btrfs_tree_lock (64 samples, 0.02%)</title><rect x="37.4948%" y="677" width="0.0177%" height="15" fill="rgb(214,129,20)" fg:x="135829" fg:w="64"/><text x="37.7448%" y="687.50"></text></g><g><title>schedule (61 samples, 0.02%)</title><rect x="37.4956%" y="661" width="0.0168%" height="15" fill="rgb(212,32,13)" fg:x="135832" fg:w="61"/><text x="37.7456%" y="671.50"></text></g><g><title>__schedule (61 samples, 0.02%)</title><rect x="37.4956%" y="645" width="0.0168%" height="15" fill="rgb(208,168,33)" fg:x="135832" fg:w="61"/><text x="37.7456%" y="655.50"></text></g><g><title>finish_wait (163 samples, 0.04%)</title><rect x="37.5268%" y="645" width="0.0450%" height="15" fill="rgb(231,207,8)" fg:x="135945" fg:w="163"/><text x="37.7768%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (155 samples, 0.04%)</title><rect x="37.5290%" y="629" width="0.0428%" height="15" fill="rgb(235,219,23)" fg:x="135953" fg:w="155"/><text x="37.7790%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (146 samples, 0.04%)</title><rect x="37.5315%" y="613" width="0.0403%" height="15" fill="rgb(226,216,26)" fg:x="135962" fg:w="146"/><text x="37.7815%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (509 samples, 0.14%)</title><rect x="37.5823%" y="629" width="0.1405%" height="15" fill="rgb(239,137,16)" fg:x="136146" fg:w="509"/><text x="37.8323%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (486 samples, 0.13%)</title><rect x="37.5886%" y="613" width="0.1342%" height="15" fill="rgb(207,12,36)" fg:x="136169" fg:w="486"/><text x="37.8386%" y="623.50"></text></g><g><title>prepare_to_wait_event (555 samples, 0.15%)</title><rect x="37.5718%" y="645" width="0.1532%" height="15" fill="rgb(210,214,24)" fg:x="136108" fg:w="555"/><text x="37.8218%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (188 samples, 0.05%)</title><rect x="37.7250%" y="645" width="0.0519%" height="15" fill="rgb(206,56,30)" fg:x="136663" fg:w="188"/><text x="37.9750%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (104 samples, 0.03%)</title><rect x="37.7482%" y="629" width="0.0287%" height="15" fill="rgb(228,143,26)" fg:x="136747" fg:w="104"/><text x="37.9982%" y="639.50"></text></g><g><title>dequeue_entity (70 samples, 0.02%)</title><rect x="37.7902%" y="597" width="0.0193%" height="15" fill="rgb(216,218,46)" fg:x="136899" fg:w="70"/><text x="38.0402%" y="607.50"></text></g><g><title>dequeue_task_fair (80 samples, 0.02%)</title><rect x="37.7879%" y="613" width="0.0221%" height="15" fill="rgb(206,6,19)" fg:x="136891" fg:w="80"/><text x="38.0379%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.03%)</title><rect x="37.8136%" y="597" width="0.0271%" height="15" fill="rgb(239,177,51)" fg:x="136984" fg:w="98"/><text x="38.0636%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.03%)</title><rect x="37.8142%" y="581" width="0.0265%" height="15" fill="rgb(216,55,25)" fg:x="136986" fg:w="96"/><text x="38.0642%" y="591.50"></text></g><g><title>native_write_msr (93 samples, 0.03%)</title><rect x="37.8150%" y="565" width="0.0257%" height="15" fill="rgb(231,163,29)" fg:x="136989" fg:w="93"/><text x="38.0650%" y="575.50"></text></g><g><title>finish_task_switch (113 samples, 0.03%)</title><rect x="37.8100%" y="613" width="0.0312%" height="15" fill="rgb(232,149,50)" fg:x="136971" fg:w="113"/><text x="38.0600%" y="623.50"></text></g><g><title>psi_task_change (71 samples, 0.02%)</title><rect x="37.8487%" y="613" width="0.0196%" height="15" fill="rgb(223,142,48)" fg:x="137111" fg:w="71"/><text x="38.0987%" y="623.50"></text></g><g><title>psi_group_change (62 samples, 0.02%)</title><rect x="37.8512%" y="597" width="0.0171%" height="15" fill="rgb(245,83,23)" fg:x="137120" fg:w="62"/><text x="38.1012%" y="607.50"></text></g><g><title>__btrfs_tree_lock (1,303 samples, 0.36%)</title><rect x="37.5147%" y="661" width="0.3597%" height="15" fill="rgb(224,63,2)" fg:x="135901" fg:w="1303"/><text x="37.7647%" y="671.50"></text></g><g><title>schedule (353 samples, 0.10%)</title><rect x="37.7769%" y="645" width="0.0974%" height="15" fill="rgb(218,65,53)" fg:x="136851" fg:w="353"/><text x="38.0269%" y="655.50"></text></g><g><title>__schedule (346 samples, 0.10%)</title><rect x="37.7788%" y="629" width="0.0955%" height="15" fill="rgb(221,84,29)" fg:x="136858" fg:w="346"/><text x="38.0288%" y="639.50"></text></g><g><title>btrfs_lock_root_node (1,306 samples, 0.36%)</title><rect x="37.5144%" y="677" width="0.3605%" height="15" fill="rgb(234,0,32)" fg:x="135900" fg:w="1306"/><text x="37.7644%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (42 samples, 0.01%)</title><rect x="37.8904%" y="677" width="0.0116%" height="15" fill="rgb(206,20,16)" fg:x="137262" fg:w="42"/><text x="38.1404%" y="687.50"></text></g><g><title>select_task_rq_fair (48 samples, 0.01%)</title><rect x="37.9240%" y="597" width="0.0133%" height="15" fill="rgb(244,172,18)" fg:x="137384" fg:w="48"/><text x="38.1740%" y="607.50"></text></g><g><title>enqueue_entity (38 samples, 0.01%)</title><rect x="37.9417%" y="565" width="0.0105%" height="15" fill="rgb(254,133,1)" fg:x="137448" fg:w="38"/><text x="38.1917%" y="575.50"></text></g><g><title>enqueue_task_fair (49 samples, 0.01%)</title><rect x="37.9400%" y="581" width="0.0135%" height="15" fill="rgb(222,206,41)" fg:x="137442" fg:w="49"/><text x="38.1900%" y="591.50"></text></g><g><title>ttwu_do_activate (111 samples, 0.03%)</title><rect x="37.9378%" y="597" width="0.0306%" height="15" fill="rgb(212,3,42)" fg:x="137434" fg:w="111"/><text x="38.1878%" y="607.50"></text></g><g><title>psi_task_change (54 samples, 0.01%)</title><rect x="37.9536%" y="581" width="0.0149%" height="15" fill="rgb(241,11,4)" fg:x="137491" fg:w="54"/><text x="38.2036%" y="591.50"></text></g><g><title>psi_group_change (51 samples, 0.01%)</title><rect x="37.9544%" y="565" width="0.0141%" height="15" fill="rgb(205,19,26)" fg:x="137494" fg:w="51"/><text x="38.2044%" y="575.50"></text></g><g><title>__wake_up_common (242 samples, 0.07%)</title><rect x="37.9061%" y="645" width="0.0668%" height="15" fill="rgb(210,179,32)" fg:x="137319" fg:w="242"/><text x="38.1561%" y="655.50"></text></g><g><title>autoremove_wake_function (240 samples, 0.07%)</title><rect x="37.9066%" y="629" width="0.0663%" height="15" fill="rgb(227,116,49)" fg:x="137321" fg:w="240"/><text x="38.1566%" y="639.50"></text></g><g><title>try_to_wake_up (234 samples, 0.06%)</title><rect x="37.9083%" y="613" width="0.0646%" height="15" fill="rgb(211,146,6)" fg:x="137327" fg:w="234"/><text x="38.1583%" y="623.50"></text></g><g><title>__wake_up_common_lock (256 samples, 0.07%)</title><rect x="37.9058%" y="661" width="0.0707%" height="15" fill="rgb(219,44,39)" fg:x="137318" fg:w="256"/><text x="38.1558%" y="671.50"></text></g><g><title>btrfs_search_slot (2,134 samples, 0.59%)</title><rect x="37.3893%" y="693" width="0.5891%" height="15" fill="rgb(234,128,11)" fg:x="135447" fg:w="2134"/><text x="37.6393%" y="703.50"></text></g><g><title>unlock_up (266 samples, 0.07%)</title><rect x="37.9050%" y="677" width="0.0734%" height="15" fill="rgb(220,183,53)" fg:x="137315" fg:w="266"/><text x="38.1550%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (2,273 samples, 0.63%)</title><rect x="37.3535%" y="709" width="0.6274%" height="15" fill="rgb(213,219,32)" fg:x="135317" fg:w="2273"/><text x="37.6035%" y="719.50"></text></g><g><title>__clear_extent_bit (38 samples, 0.01%)</title><rect x="37.9892%" y="693" width="0.0105%" height="15" fill="rgb(232,156,16)" fg:x="137620" fg:w="38"/><text x="38.2392%" y="703.50"></text></g><g><title>_find_next_bit.constprop.0 (82 samples, 0.02%)</title><rect x="38.0082%" y="613" width="0.0226%" height="15" fill="rgb(246,135,34)" fg:x="137689" fg:w="82"/><text x="38.2582%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (104 samples, 0.03%)</title><rect x="38.0044%" y="629" width="0.0287%" height="15" fill="rgb(241,99,0)" fg:x="137675" fg:w="104"/><text x="38.2544%" y="639.50"></text></g><g><title>__btrfs_add_free_space (115 samples, 0.03%)</title><rect x="38.0022%" y="645" width="0.0317%" height="15" fill="rgb(222,103,45)" fg:x="137667" fg:w="115"/><text x="38.2522%" y="655.50"></text></g><g><title>btrfs_free_tree_block (119 samples, 0.03%)</title><rect x="38.0022%" y="661" width="0.0328%" height="15" fill="rgb(212,57,4)" fg:x="137667" fg:w="119"/><text x="38.2522%" y="671.50"></text></g><g><title>btrfs_del_leaf (129 samples, 0.04%)</title><rect x="38.0022%" y="677" width="0.0356%" height="15" fill="rgb(215,68,47)" fg:x="137667" fg:w="129"/><text x="38.2522%" y="687.50"></text></g><g><title>btrfs_get_token_32 (53 samples, 0.01%)</title><rect x="38.0397%" y="677" width="0.0146%" height="15" fill="rgb(230,84,2)" fg:x="137803" fg:w="53"/><text x="38.2897%" y="687.50"></text></g><g><title>btrfs_del_items (288 samples, 0.08%)</title><rect x="37.9997%" y="693" width="0.0795%" height="15" fill="rgb(220,102,14)" fg:x="137658" fg:w="288"/><text x="38.2497%" y="703.50"></text></g><g><title>__wake_up_common (63 samples, 0.02%)</title><rect x="38.0844%" y="645" width="0.0174%" height="15" fill="rgb(240,10,32)" fg:x="137965" fg:w="63"/><text x="38.3344%" y="655.50"></text></g><g><title>autoremove_wake_function (60 samples, 0.02%)</title><rect x="38.0852%" y="629" width="0.0166%" height="15" fill="rgb(215,47,27)" fg:x="137968" fg:w="60"/><text x="38.3352%" y="639.50"></text></g><g><title>try_to_wake_up (60 samples, 0.02%)</title><rect x="38.0852%" y="613" width="0.0166%" height="15" fill="rgb(233,188,43)" fg:x="137968" fg:w="60"/><text x="38.3352%" y="623.50"></text></g><g><title>__wake_up_common_lock (64 samples, 0.02%)</title><rect x="38.0844%" y="661" width="0.0177%" height="15" fill="rgb(253,190,1)" fg:x="137965" fg:w="64"/><text x="38.3344%" y="671.50"></text></g><g><title>btrfs_free_path (79 samples, 0.02%)</title><rect x="38.0836%" y="693" width="0.0218%" height="15" fill="rgb(206,114,52)" fg:x="137962" fg:w="79"/><text x="38.3336%" y="703.50"></text></g><g><title>btrfs_release_path (78 samples, 0.02%)</title><rect x="38.0839%" y="677" width="0.0215%" height="15" fill="rgb(233,120,37)" fg:x="137963" fg:w="78"/><text x="38.3339%" y="687.50"></text></g><g><title>__btrfs_kill_delayed_node (60 samples, 0.02%)</title><rect x="38.1084%" y="677" width="0.0166%" height="15" fill="rgb(214,52,39)" fg:x="138052" fg:w="60"/><text x="38.3584%" y="687.50"></text></g><g><title>btrfs_kill_delayed_inode_items (66 samples, 0.02%)</title><rect x="38.1076%" y="693" width="0.0182%" height="15" fill="rgb(223,80,29)" fg:x="138049" fg:w="66"/><text x="38.3576%" y="703.50"></text></g><g><title>finish_wait (40 samples, 0.01%)</title><rect x="38.1355%" y="645" width="0.0110%" height="15" fill="rgb(230,101,40)" fg:x="138150" fg:w="40"/><text x="38.3855%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (39 samples, 0.01%)</title><rect x="38.1358%" y="629" width="0.0108%" height="15" fill="rgb(219,211,8)" fg:x="138151" fg:w="39"/><text x="38.3858%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (39 samples, 0.01%)</title><rect x="38.1358%" y="613" width="0.0108%" height="15" fill="rgb(252,126,28)" fg:x="138151" fg:w="39"/><text x="38.3858%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (119 samples, 0.03%)</title><rect x="38.1476%" y="629" width="0.0328%" height="15" fill="rgb(215,56,38)" fg:x="138194" fg:w="119"/><text x="38.3976%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (116 samples, 0.03%)</title><rect x="38.1485%" y="613" width="0.0320%" height="15" fill="rgb(249,55,44)" fg:x="138197" fg:w="116"/><text x="38.3985%" y="623.50"></text></g><g><title>prepare_to_wait_event (124 samples, 0.03%)</title><rect x="38.1465%" y="645" width="0.0342%" height="15" fill="rgb(220,221,32)" fg:x="138190" fg:w="124"/><text x="38.3965%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (267 samples, 0.07%)</title><rect x="38.1336%" y="661" width="0.0737%" height="15" fill="rgb(212,216,41)" fg:x="138143" fg:w="267"/><text x="38.3836%" y="671.50"></text></g><g><title>schedule (73 samples, 0.02%)</title><rect x="38.1871%" y="645" width="0.0202%" height="15" fill="rgb(228,213,43)" fg:x="138337" fg:w="73"/><text x="38.4371%" y="655.50"></text></g><g><title>__schedule (71 samples, 0.02%)</title><rect x="38.1877%" y="629" width="0.0196%" height="15" fill="rgb(211,31,26)" fg:x="138339" fg:w="71"/><text x="38.4377%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (275 samples, 0.08%)</title><rect x="38.1327%" y="677" width="0.0759%" height="15" fill="rgb(229,202,19)" fg:x="138140" fg:w="275"/><text x="38.3827%" y="687.50"></text></g><g><title>__btrfs_tree_lock (75 samples, 0.02%)</title><rect x="38.2086%" y="677" width="0.0207%" height="15" fill="rgb(229,105,46)" fg:x="138415" fg:w="75"/><text x="38.4586%" y="687.50"></text></g><g><title>schedule (66 samples, 0.02%)</title><rect x="38.2111%" y="661" width="0.0182%" height="15" fill="rgb(235,108,1)" fg:x="138424" fg:w="66"/><text x="38.4611%" y="671.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="38.2114%" y="645" width="0.0179%" height="15" fill="rgb(245,111,35)" fg:x="138425" fg:w="65"/><text x="38.4614%" y="655.50"></text></g><g><title>finish_wait (93 samples, 0.03%)</title><rect x="38.2360%" y="645" width="0.0257%" height="15" fill="rgb(219,185,31)" fg:x="138514" fg:w="93"/><text x="38.4860%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (86 samples, 0.02%)</title><rect x="38.2379%" y="629" width="0.0237%" height="15" fill="rgb(214,4,43)" fg:x="138521" fg:w="86"/><text x="38.4879%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (80 samples, 0.02%)</title><rect x="38.2396%" y="613" width="0.0221%" height="15" fill="rgb(235,227,40)" fg:x="138527" fg:w="80"/><text x="38.4896%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (328 samples, 0.09%)</title><rect x="38.2685%" y="629" width="0.0905%" height="15" fill="rgb(230,88,30)" fg:x="138632" fg:w="328"/><text x="38.5185%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (319 samples, 0.09%)</title><rect x="38.2710%" y="613" width="0.0881%" height="15" fill="rgb(216,217,1)" fg:x="138641" fg:w="319"/><text x="38.5210%" y="623.50"></text></g><g><title>prepare_to_wait_event (358 samples, 0.10%)</title><rect x="38.2616%" y="645" width="0.0988%" height="15" fill="rgb(248,139,50)" fg:x="138607" fg:w="358"/><text x="38.5116%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (119 samples, 0.03%)</title><rect x="38.3605%" y="645" width="0.0328%" height="15" fill="rgb(233,1,21)" fg:x="138965" fg:w="119"/><text x="38.6105%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (67 samples, 0.02%)</title><rect x="38.3748%" y="629" width="0.0185%" height="15" fill="rgb(215,183,12)" fg:x="139017" fg:w="67"/><text x="38.6248%" y="639.50"></text></g><g><title>dequeue_entity (43 samples, 0.01%)</title><rect x="38.4046%" y="597" width="0.0119%" height="15" fill="rgb(229,104,42)" fg:x="139125" fg:w="43"/><text x="38.6546%" y="607.50"></text></g><g><title>dequeue_task_fair (50 samples, 0.01%)</title><rect x="38.4035%" y="613" width="0.0138%" height="15" fill="rgb(243,34,48)" fg:x="139121" fg:w="50"/><text x="38.6535%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.02%)</title><rect x="38.4204%" y="597" width="0.0232%" height="15" fill="rgb(239,11,44)" fg:x="139182" fg:w="84"/><text x="38.6704%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (83 samples, 0.02%)</title><rect x="38.4206%" y="581" width="0.0229%" height="15" fill="rgb(231,98,35)" fg:x="139183" fg:w="83"/><text x="38.6706%" y="591.50"></text></g><g><title>native_write_msr (82 samples, 0.02%)</title><rect x="38.4209%" y="565" width="0.0226%" height="15" fill="rgb(233,28,25)" fg:x="139184" fg:w="82"/><text x="38.6709%" y="575.50"></text></g><g><title>finish_task_switch (98 samples, 0.03%)</title><rect x="38.4173%" y="613" width="0.0271%" height="15" fill="rgb(234,123,11)" fg:x="139171" fg:w="98"/><text x="38.6673%" y="623.50"></text></g><g><title>psi_task_change (50 samples, 0.01%)</title><rect x="38.4494%" y="613" width="0.0138%" height="15" fill="rgb(220,69,3)" fg:x="139287" fg:w="50"/><text x="38.6994%" y="623.50"></text></g><g><title>psi_group_change (45 samples, 0.01%)</title><rect x="38.4507%" y="597" width="0.0124%" height="15" fill="rgb(214,64,36)" fg:x="139292" fg:w="45"/><text x="38.7007%" y="607.50"></text></g><g><title>__btrfs_tree_lock (859 samples, 0.24%)</title><rect x="38.2304%" y="661" width="0.2371%" height="15" fill="rgb(211,138,32)" fg:x="138494" fg:w="859"/><text x="38.4804%" y="671.50"></text></g><g><title>schedule (269 samples, 0.07%)</title><rect x="38.3933%" y="645" width="0.0743%" height="15" fill="rgb(213,118,47)" fg:x="139084" fg:w="269"/><text x="38.6433%" y="655.50"></text></g><g><title>__schedule (263 samples, 0.07%)</title><rect x="38.3950%" y="629" width="0.0726%" height="15" fill="rgb(243,124,49)" fg:x="139090" fg:w="263"/><text x="38.6450%" y="639.50"></text></g><g><title>btrfs_lock_root_node (860 samples, 0.24%)</title><rect x="38.2304%" y="677" width="0.2374%" height="15" fill="rgb(221,30,28)" fg:x="138494" fg:w="860"/><text x="38.4804%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (66 samples, 0.02%)</title><rect x="38.4709%" y="677" width="0.0182%" height="15" fill="rgb(246,37,13)" fg:x="139365" fg:w="66"/><text x="38.7209%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (64 samples, 0.02%)</title><rect x="38.4714%" y="661" width="0.0177%" height="15" fill="rgb(249,66,14)" fg:x="139367" fg:w="64"/><text x="38.7214%" y="671.50"></text></g><g><title>select_task_rq_fair (66 samples, 0.02%)</title><rect x="38.5308%" y="597" width="0.0182%" height="15" fill="rgb(213,166,5)" fg:x="139582" fg:w="66"/><text x="38.7808%" y="607.50"></text></g><g><title>enqueue_entity (44 samples, 0.01%)</title><rect x="38.5556%" y="565" width="0.0121%" height="15" fill="rgb(221,66,24)" fg:x="139672" fg:w="44"/><text x="38.8056%" y="575.50"></text></g><g><title>enqueue_task_fair (63 samples, 0.02%)</title><rect x="38.5515%" y="581" width="0.0174%" height="15" fill="rgb(210,132,17)" fg:x="139657" fg:w="63"/><text x="38.8015%" y="591.50"></text></g><g><title>ttwu_do_activate (143 samples, 0.04%)</title><rect x="38.5504%" y="597" width="0.0395%" height="15" fill="rgb(243,202,5)" fg:x="139653" fg:w="143"/><text x="38.8004%" y="607.50"></text></g><g><title>psi_task_change (76 samples, 0.02%)</title><rect x="38.5689%" y="581" width="0.0210%" height="15" fill="rgb(233,70,48)" fg:x="139720" fg:w="76"/><text x="38.8189%" y="591.50"></text></g><g><title>psi_group_change (66 samples, 0.02%)</title><rect x="38.5716%" y="565" width="0.0182%" height="15" fill="rgb(238,41,26)" fg:x="139730" fg:w="66"/><text x="38.8216%" y="575.50"></text></g><g><title>__wake_up_common (305 samples, 0.08%)</title><rect x="38.5117%" y="645" width="0.0842%" height="15" fill="rgb(241,19,31)" fg:x="139513" fg:w="305"/><text x="38.7617%" y="655.50"></text></g><g><title>autoremove_wake_function (301 samples, 0.08%)</title><rect x="38.5128%" y="629" width="0.0831%" height="15" fill="rgb(214,76,10)" fg:x="139517" fg:w="301"/><text x="38.7628%" y="639.50"></text></g><g><title>try_to_wake_up (293 samples, 0.08%)</title><rect x="38.5150%" y="613" width="0.0809%" height="15" fill="rgb(254,202,22)" fg:x="139525" fg:w="293"/><text x="38.7650%" y="623.50"></text></g><g><title>__wake_up_common_lock (318 samples, 0.09%)</title><rect x="38.5117%" y="661" width="0.0878%" height="15" fill="rgb(214,72,24)" fg:x="139513" fg:w="318"/><text x="38.7617%" y="671.50"></text></g><g><title>btrfs_search_slot (1,718 samples, 0.47%)</title><rect x="38.1264%" y="693" width="0.4742%" height="15" fill="rgb(221,92,46)" fg:x="138117" fg:w="1718"/><text x="38.3764%" y="703.50"></text></g><g><title>unlock_up (323 samples, 0.09%)</title><rect x="38.5115%" y="677" width="0.0892%" height="15" fill="rgb(246,13,50)" fg:x="139512" fg:w="323"/><text x="38.7615%" y="687.50"></text></g><g><title>btrfs_truncate_inode_items (2,268 samples, 0.63%)</title><rect x="37.9823%" y="709" width="0.6261%" height="15" fill="rgb(240,165,38)" fg:x="137595" fg:w="2268"/><text x="38.2323%" y="719.50"></text></g><g><title>btrfs_block_rsv_refill (45 samples, 0.01%)</title><rect x="38.6100%" y="693" width="0.0124%" height="15" fill="rgb(241,24,51)" fg:x="139869" fg:w="45"/><text x="38.8600%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (37 samples, 0.01%)</title><rect x="38.6122%" y="677" width="0.0102%" height="15" fill="rgb(227,51,44)" fg:x="139877" fg:w="37"/><text x="38.8622%" y="687.50"></text></g><g><title>evict_refill_and_join (70 samples, 0.02%)</title><rect x="38.6084%" y="709" width="0.0193%" height="15" fill="rgb(231,121,3)" fg:x="139863" fg:w="70"/><text x="38.8584%" y="719.50"></text></g><g><title>btrfs_evict_inode (6,825 samples, 1.88%)</title><rect x="36.7489%" y="725" width="1.8840%" height="15" fill="rgb(245,3,41)" fg:x="133127" fg:w="6825"/><text x="36.9989%" y="735.50">b..</text></g><g><title>evict (6,833 samples, 1.89%)</title><rect x="36.7478%" y="741" width="1.8862%" height="15" fill="rgb(214,13,26)" fg:x="133123" fg:w="6833"/><text x="36.9978%" y="751.50">e..</text></g><g><title>d_lru_del (109 samples, 0.03%)</title><rect x="38.6558%" y="693" width="0.0301%" height="15" fill="rgb(252,75,11)" fg:x="140035" fg:w="109"/><text x="38.9058%" y="703.50"></text></g><g><title>list_lru_del (107 samples, 0.03%)</title><rect x="38.6564%" y="677" width="0.0295%" height="15" fill="rgb(218,226,17)" fg:x="140037" fg:w="107"/><text x="38.9064%" y="687.50"></text></g><g><title>mem_cgroup_from_obj (44 samples, 0.01%)</title><rect x="38.6738%" y="661" width="0.0121%" height="15" fill="rgb(248,89,38)" fg:x="140100" fg:w="44"/><text x="38.9238%" y="671.50"></text></g><g><title>d_walk (175 samples, 0.05%)</title><rect x="38.6393%" y="725" width="0.0483%" height="15" fill="rgb(237,73,46)" fg:x="139975" fg:w="175"/><text x="38.8893%" y="735.50"></text></g><g><title>select_collect (120 samples, 0.03%)</title><rect x="38.6545%" y="709" width="0.0331%" height="15" fill="rgb(242,78,33)" fg:x="140030" fg:w="120"/><text x="38.9045%" y="719.50"></text></g><g><title>___d_drop (87 samples, 0.02%)</title><rect x="38.6909%" y="693" width="0.0240%" height="15" fill="rgb(235,60,3)" fg:x="140162" fg:w="87"/><text x="38.9409%" y="703.50"></text></g><g><title>call_rcu (47 samples, 0.01%)</title><rect x="38.7168%" y="693" width="0.0130%" height="15" fill="rgb(216,172,19)" fg:x="140256" fg:w="47"/><text x="38.9668%" y="703.50"></text></g><g><title>__dentry_kill (152 samples, 0.04%)</title><rect x="38.6884%" y="709" width="0.0420%" height="15" fill="rgb(227,6,42)" fg:x="140153" fg:w="152"/><text x="38.9384%" y="719.50"></text></g><g><title>shrink_dcache_parent (389 samples, 0.11%)</title><rect x="38.6382%" y="741" width="0.1074%" height="15" fill="rgb(223,207,42)" fg:x="139971" fg:w="389"/><text x="38.8882%" y="751.50"></text></g><g><title>shrink_dentry_list (210 samples, 0.06%)</title><rect x="38.6876%" y="725" width="0.0580%" height="15" fill="rgb(246,138,30)" fg:x="140150" fg:w="210"/><text x="38.9376%" y="735.50"></text></g><g><title>do_rmdir (10,816 samples, 2.99%)</title><rect x="35.7601%" y="773" width="2.9857%" height="15" fill="rgb(251,199,47)" fg:x="129545" fg:w="10816"/><text x="36.0101%" y="783.50">do_..</text></g><g><title>vfs_rmdir.part.0 (10,668 samples, 2.94%)</title><rect x="35.8010%" y="757" width="2.9448%" height="15" fill="rgb(228,218,44)" fg:x="129693" fg:w="10668"/><text x="36.0510%" y="767.50">vf..</text></g><g><title>__d_lookup (193 samples, 0.05%)</title><rect x="38.7674%" y="709" width="0.0533%" height="15" fill="rgb(220,68,6)" fg:x="140439" fg:w="193"/><text x="39.0174%" y="719.50"></text></g><g><title>__lookup_hash (219 samples, 0.06%)</title><rect x="38.7605%" y="757" width="0.0605%" height="15" fill="rgb(240,60,26)" fg:x="140414" fg:w="219"/><text x="39.0105%" y="767.50"></text></g><g><title>lookup_dcache (212 samples, 0.06%)</title><rect x="38.7624%" y="741" width="0.0585%" height="15" fill="rgb(211,200,19)" fg:x="140421" fg:w="212"/><text x="39.0124%" y="751.50"></text></g><g><title>d_lookup (202 samples, 0.06%)</title><rect x="38.7651%" y="725" width="0.0558%" height="15" fill="rgb(242,145,30)" fg:x="140431" fg:w="202"/><text x="39.0151%" y="735.50"></text></g><g><title>call_rcu (83 samples, 0.02%)</title><rect x="38.8209%" y="757" width="0.0229%" height="15" fill="rgb(225,64,13)" fg:x="140633" fg:w="83"/><text x="39.0709%" y="767.50"></text></g><g><title>__srcu_read_lock (40 samples, 0.01%)</title><rect x="38.8640%" y="693" width="0.0110%" height="15" fill="rgb(218,103,35)" fg:x="140789" fg:w="40"/><text x="39.1140%" y="703.50"></text></g><g><title>fsnotify_destroy_marks (60 samples, 0.02%)</title><rect x="38.8596%" y="725" width="0.0166%" height="15" fill="rgb(216,93,46)" fg:x="140773" fg:w="60"/><text x="39.1096%" y="735.50"></text></g><g><title>fsnotify_grab_connector (52 samples, 0.01%)</title><rect x="38.8618%" y="709" width="0.0144%" height="15" fill="rgb(225,159,27)" fg:x="140781" fg:w="52"/><text x="39.1118%" y="719.50"></text></g><g><title>__destroy_inode (140 samples, 0.04%)</title><rect x="38.8474%" y="741" width="0.0386%" height="15" fill="rgb(225,204,11)" fg:x="140729" fg:w="140"/><text x="39.0974%" y="751.50"></text></g><g><title>alloc_extent_map (107 samples, 0.03%)</title><rect x="38.9073%" y="709" width="0.0295%" height="15" fill="rgb(205,56,4)" fg:x="140946" fg:w="107"/><text x="39.1573%" y="719.50"></text></g><g><title>kmem_cache_alloc (86 samples, 0.02%)</title><rect x="38.9131%" y="693" width="0.0237%" height="15" fill="rgb(206,6,35)" fg:x="140967" fg:w="86"/><text x="39.1631%" y="703.50"></text></g><g><title>kmem_cache_free (60 samples, 0.02%)</title><rect x="38.9426%" y="709" width="0.0166%" height="15" fill="rgb(247,73,52)" fg:x="141074" fg:w="60"/><text x="39.1926%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (234 samples, 0.06%)</title><rect x="38.8960%" y="725" width="0.0646%" height="15" fill="rgb(246,97,4)" fg:x="140905" fg:w="234"/><text x="39.1460%" y="735.50"></text></g><g><title>alloc_extent_state (52 samples, 0.01%)</title><rect x="38.9736%" y="677" width="0.0144%" height="15" fill="rgb(212,37,15)" fg:x="141186" fg:w="52"/><text x="39.2236%" y="687.50"></text></g><g><title>kmem_cache_alloc (49 samples, 0.01%)</title><rect x="38.9744%" y="661" width="0.0135%" height="15" fill="rgb(208,130,40)" fg:x="141189" fg:w="49"/><text x="39.2244%" y="671.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (129 samples, 0.04%)</title><rect x="38.9606%" y="725" width="0.0356%" height="15" fill="rgb(236,55,29)" fg:x="141139" fg:w="129"/><text x="39.2106%" y="735.50"></text></g><g><title>clear_extent_bit (103 samples, 0.03%)</title><rect x="38.9678%" y="709" width="0.0284%" height="15" fill="rgb(209,156,45)" fg:x="141165" fg:w="103"/><text x="39.2178%" y="719.50"></text></g><g><title>__clear_extent_bit (101 samples, 0.03%)</title><rect x="38.9683%" y="693" width="0.0279%" height="15" fill="rgb(249,107,4)" fg:x="141167" fg:w="101"/><text x="39.2183%" y="703.50"></text></g><g><title>alloc_extent_state (108 samples, 0.03%)</title><rect x="39.0255%" y="677" width="0.0298%" height="15" fill="rgb(227,7,13)" fg:x="141374" fg:w="108"/><text x="39.2755%" y="687.50"></text></g><g><title>kmem_cache_alloc (81 samples, 0.02%)</title><rect x="39.0329%" y="661" width="0.0224%" height="15" fill="rgb(250,129,14)" fg:x="141401" fg:w="81"/><text x="39.2829%" y="671.50"></text></g><g><title>clear_record_extent_bits (208 samples, 0.06%)</title><rect x="39.0111%" y="709" width="0.0574%" height="15" fill="rgb(229,92,13)" fg:x="141322" fg:w="208"/><text x="39.2611%" y="719.50"></text></g><g><title>__clear_extent_bit (196 samples, 0.05%)</title><rect x="39.0144%" y="693" width="0.0541%" height="15" fill="rgb(245,98,39)" fg:x="141334" fg:w="196"/><text x="39.2644%" y="703.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (270 samples, 0.07%)</title><rect x="39.0050%" y="725" width="0.0745%" height="15" fill="rgb(234,135,48)" fg:x="141300" fg:w="270"/><text x="39.2550%" y="735.50"></text></g><g><title>btrfs_destroy_inode (933 samples, 0.26%)</title><rect x="38.8861%" y="741" width="0.2575%" height="15" fill="rgb(230,98,28)" fg:x="140869" fg:w="933"/><text x="39.1361%" y="751.50"></text></g><g><title>rb_erase (232 samples, 0.06%)</title><rect x="39.0796%" y="725" width="0.0640%" height="15" fill="rgb(223,121,0)" fg:x="141570" fg:w="232"/><text x="39.3296%" y="735.50"></text></g><g><title>destroy_inode (1,105 samples, 0.31%)</title><rect x="38.8438%" y="757" width="0.3050%" height="15" fill="rgb(234,173,33)" fg:x="140716" fg:w="1105"/><text x="39.0938%" y="767.50"></text></g><g><title>btrfs_dentry_delete (44 samples, 0.01%)</title><rect x="39.1762%" y="741" width="0.0121%" height="15" fill="rgb(245,47,8)" fg:x="141920" fg:w="44"/><text x="39.4262%" y="751.50"></text></g><g><title>lockref_put_or_lock (50 samples, 0.01%)</title><rect x="39.1883%" y="741" width="0.0138%" height="15" fill="rgb(205,17,20)" fg:x="141964" fg:w="50"/><text x="39.4383%" y="751.50"></text></g><g><title>dput (168 samples, 0.05%)</title><rect x="39.1563%" y="757" width="0.0464%" height="15" fill="rgb(232,151,16)" fg:x="141848" fg:w="168"/><text x="39.4063%" y="767.50"></text></g><g><title>__list_del_entry_valid (56 samples, 0.02%)</title><rect x="39.2115%" y="741" width="0.0155%" height="15" fill="rgb(208,30,32)" fg:x="142048" fg:w="56"/><text x="39.4615%" y="751.50"></text></g><g><title>__remove_inode_hash (37 samples, 0.01%)</title><rect x="39.2270%" y="741" width="0.0102%" height="15" fill="rgb(254,26,3)" fg:x="142104" fg:w="37"/><text x="39.4770%" y="751.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="39.2372%" y="741" width="0.0141%" height="15" fill="rgb(240,177,30)" fg:x="142141" fg:w="51"/><text x="39.4872%" y="751.50"></text></g><g><title>_raw_spin_lock (110 samples, 0.03%)</title><rect x="39.3542%" y="677" width="0.0304%" height="15" fill="rgb(248,76,44)" fg:x="142565" fg:w="110"/><text x="39.6042%" y="687.50"></text></g><g><title>btrfs_trans_release_metadata (203 samples, 0.06%)</title><rect x="39.3321%" y="709" width="0.0560%" height="15" fill="rgb(241,186,54)" fg:x="142485" fg:w="203"/><text x="39.5821%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (193 samples, 0.05%)</title><rect x="39.3349%" y="693" width="0.0533%" height="15" fill="rgb(249,171,29)" fg:x="142495" fg:w="193"/><text x="39.5849%" y="703.50"></text></g><g><title>__btrfs_end_transaction (505 samples, 0.14%)</title><rect x="39.2767%" y="725" width="0.1394%" height="15" fill="rgb(237,151,44)" fg:x="142284" fg:w="505"/><text x="39.5267%" y="735.50"></text></g><g><title>kmem_cache_free (101 samples, 0.03%)</title><rect x="39.3882%" y="709" width="0.0279%" height="15" fill="rgb(228,174,30)" fg:x="142688" fg:w="101"/><text x="39.6382%" y="719.50"></text></g><g><title>mutex_lock (57 samples, 0.02%)</title><rect x="39.4368%" y="709" width="0.0157%" height="15" fill="rgb(252,14,37)" fg:x="142864" fg:w="57"/><text x="39.6868%" y="719.50"></text></g><g><title>__radix_tree_delete (41 samples, 0.01%)</title><rect x="39.4572%" y="693" width="0.0113%" height="15" fill="rgb(207,111,40)" fg:x="142938" fg:w="41"/><text x="39.7072%" y="703.50"></text></g><g><title>__radix_tree_lookup (125 samples, 0.03%)</title><rect x="39.4685%" y="693" width="0.0345%" height="15" fill="rgb(248,171,54)" fg:x="142979" fg:w="125"/><text x="39.7185%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (328 samples, 0.09%)</title><rect x="39.4161%" y="725" width="0.0905%" height="15" fill="rgb(211,127,2)" fg:x="142789" fg:w="328"/><text x="39.6661%" y="735.50"></text></g><g><title>radix_tree_delete_item (191 samples, 0.05%)</title><rect x="39.4539%" y="709" width="0.0527%" height="15" fill="rgb(236,87,47)" fg:x="142926" fg:w="191"/><text x="39.7039%" y="719.50"></text></g><g><title>btrfs_alloc_block_rsv (122 samples, 0.03%)</title><rect x="39.5141%" y="725" width="0.0337%" height="15" fill="rgb(223,190,45)" fg:x="143144" fg:w="122"/><text x="39.7641%" y="735.50"></text></g><g><title>kmem_cache_alloc_trace (74 samples, 0.02%)</title><rect x="39.5273%" y="709" width="0.0204%" height="15" fill="rgb(215,5,16)" fg:x="143192" fg:w="74"/><text x="39.7773%" y="719.50"></text></g><g><title>btrfs_btree_balance_dirty (66 samples, 0.02%)</title><rect x="39.5477%" y="725" width="0.0182%" height="15" fill="rgb(252,82,33)" fg:x="143266" fg:w="66"/><text x="39.7977%" y="735.50"></text></g><g><title>__btrfs_end_transaction (188 samples, 0.05%)</title><rect x="39.5759%" y="709" width="0.0519%" height="15" fill="rgb(247,213,44)" fg:x="143368" fg:w="188"/><text x="39.8259%" y="719.50"></text></g><g><title>kmem_cache_free (53 samples, 0.01%)</title><rect x="39.6132%" y="693" width="0.0146%" height="15" fill="rgb(205,196,44)" fg:x="143503" fg:w="53"/><text x="39.8632%" y="703.50"></text></g><g><title>mutex_lock (51 samples, 0.01%)</title><rect x="39.6579%" y="693" width="0.0141%" height="15" fill="rgb(237,96,54)" fg:x="143665" fg:w="51"/><text x="39.9079%" y="703.50"></text></g><g><title>_cond_resched (44 samples, 0.01%)</title><rect x="39.6598%" y="677" width="0.0121%" height="15" fill="rgb(230,113,34)" fg:x="143672" fg:w="44"/><text x="39.9098%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (166 samples, 0.05%)</title><rect x="39.6278%" y="709" width="0.0458%" height="15" fill="rgb(221,224,12)" fg:x="143556" fg:w="166"/><text x="39.8778%" y="719.50"></text></g><g><title>_find_next_bit.constprop.0 (216 samples, 0.06%)</title><rect x="39.7426%" y="613" width="0.0596%" height="15" fill="rgb(219,112,44)" fg:x="143972" fg:w="216"/><text x="39.9926%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (260 samples, 0.07%)</title><rect x="39.7338%" y="629" width="0.0718%" height="15" fill="rgb(210,31,13)" fg:x="143940" fg:w="260"/><text x="39.9838%" y="639.50"></text></g><g><title>__btrfs_add_free_space (279 samples, 0.08%)</title><rect x="39.7296%" y="645" width="0.0770%" height="15" fill="rgb(230,25,16)" fg:x="143925" fg:w="279"/><text x="39.9796%" y="655.50"></text></g><g><title>btrfs_free_tree_block (299 samples, 0.08%)</title><rect x="39.7294%" y="661" width="0.0825%" height="15" fill="rgb(246,108,53)" fg:x="143924" fg:w="299"/><text x="39.9794%" y="671.50"></text></g><g><title>btrfs_del_leaf (307 samples, 0.08%)</title><rect x="39.7294%" y="677" width="0.0847%" height="15" fill="rgb(241,172,50)" fg:x="143924" fg:w="307"/><text x="39.9794%" y="687.50"></text></g><g><title>btrfs_get_token_32 (425 samples, 0.12%)</title><rect x="39.8224%" y="677" width="0.1173%" height="15" fill="rgb(235,141,10)" fg:x="144261" fg:w="425"/><text x="40.0724%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (51 samples, 0.01%)</title><rect x="39.9256%" y="661" width="0.0141%" height="15" fill="rgb(220,174,43)" fg:x="144635" fg:w="51"/><text x="40.1756%" y="671.50"></text></g><g><title>btrfs_set_token_32 (308 samples, 0.09%)</title><rect x="39.9472%" y="677" width="0.0850%" height="15" fill="rgb(215,181,40)" fg:x="144713" fg:w="308"/><text x="40.1972%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (47 samples, 0.01%)</title><rect x="40.0192%" y="661" width="0.0130%" height="15" fill="rgb(230,97,2)" fg:x="144974" fg:w="47"/><text x="40.2692%" y="671.50"></text></g><g><title>memcpy_extent_buffer (70 samples, 0.02%)</title><rect x="40.0405%" y="677" width="0.0193%" height="15" fill="rgb(211,25,27)" fg:x="145051" fg:w="70"/><text x="40.2905%" y="687.50"></text></g><g><title>memmove (51 samples, 0.01%)</title><rect x="40.0457%" y="661" width="0.0141%" height="15" fill="rgb(230,87,26)" fg:x="145070" fg:w="51"/><text x="40.2957%" y="671.50"></text></g><g><title>copy_pages (68 samples, 0.02%)</title><rect x="40.0744%" y="661" width="0.0188%" height="15" fill="rgb(227,160,17)" fg:x="145174" fg:w="68"/><text x="40.3244%" y="671.50"></text></g><g><title>memmove_extent_buffer (617 samples, 0.17%)</title><rect x="40.0598%" y="677" width="0.1703%" height="15" fill="rgb(244,85,34)" fg:x="145121" fg:w="617"/><text x="40.3098%" y="687.50"></text></g><g><title>memmove (496 samples, 0.14%)</title><rect x="40.0932%" y="661" width="0.1369%" height="15" fill="rgb(207,70,0)" fg:x="145242" fg:w="496"/><text x="40.3432%" y="671.50"></text></g><g><title>push_leaf_left (42 samples, 0.01%)</title><rect x="40.2301%" y="677" width="0.0116%" height="15" fill="rgb(223,129,7)" fg:x="145738" fg:w="42"/><text x="40.4801%" y="687.50"></text></g><g><title>btrfs_del_items (1,987 samples, 0.55%)</title><rect x="39.6979%" y="693" width="0.5485%" height="15" fill="rgb(246,105,7)" fg:x="143810" fg:w="1987"/><text x="39.9479%" y="703.50"></text></g><g><title>_raw_spin_lock (48 samples, 0.01%)</title><rect x="40.2555%" y="661" width="0.0133%" height="15" fill="rgb(215,154,42)" fg:x="145830" fg:w="48"/><text x="40.5055%" y="671.50"></text></g><g><title>btrfs_block_rsv_release (82 samples, 0.02%)</title><rect x="40.2486%" y="677" width="0.0226%" height="15" fill="rgb(220,215,30)" fg:x="145805" fg:w="82"/><text x="40.4986%" y="687.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (116 samples, 0.03%)</title><rect x="40.2464%" y="693" width="0.0320%" height="15" fill="rgb(228,81,51)" fg:x="145797" fg:w="116"/><text x="40.4964%" y="703.50"></text></g><g><title>_raw_read_lock (58 samples, 0.02%)</title><rect x="40.3803%" y="629" width="0.0160%" height="15" fill="rgb(247,71,54)" fg:x="146282" fg:w="58"/><text x="40.6303%" y="639.50"></text></g><g><title>finish_wait (514 samples, 0.14%)</title><rect x="40.3971%" y="629" width="0.1419%" height="15" fill="rgb(234,176,34)" fg:x="146343" fg:w="514"/><text x="40.6471%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (490 samples, 0.14%)</title><rect x="40.4037%" y="613" width="0.1353%" height="15" fill="rgb(241,103,54)" fg:x="146367" fg:w="490"/><text x="40.6537%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (468 samples, 0.13%)</title><rect x="40.4098%" y="597" width="0.1292%" height="15" fill="rgb(228,22,34)" fg:x="146389" fg:w="468"/><text x="40.6598%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (2,018 samples, 0.56%)</title><rect x="40.5788%" y="613" width="0.5571%" height="15" fill="rgb(241,179,48)" fg:x="147001" fg:w="2018"/><text x="40.8288%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,956 samples, 0.54%)</title><rect x="40.5959%" y="597" width="0.5399%" height="15" fill="rgb(235,167,37)" fg:x="147063" fg:w="1956"/><text x="40.8459%" y="607.50"></text></g><g><title>prepare_to_wait_event (2,184 samples, 0.60%)</title><rect x="40.5396%" y="629" width="0.6029%" height="15" fill="rgb(213,109,30)" fg:x="146859" fg:w="2184"/><text x="40.7896%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (642 samples, 0.18%)</title><rect x="41.1424%" y="629" width="0.1772%" height="15" fill="rgb(222,172,16)" fg:x="149043" fg:w="642"/><text x="41.3924%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (459 samples, 0.13%)</title><rect x="41.1930%" y="613" width="0.1267%" height="15" fill="rgb(233,192,5)" fg:x="149226" fg:w="459"/><text x="41.4430%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (42 samples, 0.01%)</title><rect x="41.3456%" y="597" width="0.0116%" height="15" fill="rgb(247,189,41)" fg:x="149779" fg:w="42"/><text x="41.5956%" y="607.50"></text></g><g><title>update_curr (82 samples, 0.02%)</title><rect x="41.3909%" y="565" width="0.0226%" height="15" fill="rgb(218,134,47)" fg:x="149943" fg:w="82"/><text x="41.6409%" y="575.50"></text></g><g><title>dequeue_entity (218 samples, 0.06%)</title><rect x="41.3729%" y="581" width="0.0602%" height="15" fill="rgb(216,29,3)" fg:x="149878" fg:w="218"/><text x="41.6229%" y="591.50"></text></g><g><title>update_load_avg (71 samples, 0.02%)</title><rect x="41.4135%" y="565" width="0.0196%" height="15" fill="rgb(246,140,12)" fg:x="150025" fg:w="71"/><text x="41.6635%" y="575.50"></text></g><g><title>dequeue_task_fair (284 samples, 0.08%)</title><rect x="41.3627%" y="597" width="0.0784%" height="15" fill="rgb(230,136,11)" fg:x="149841" fg:w="284"/><text x="41.6127%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (221 samples, 0.06%)</title><rect x="41.4519%" y="581" width="0.0610%" height="15" fill="rgb(247,22,47)" fg:x="150164" fg:w="221"/><text x="41.7019%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (210 samples, 0.06%)</title><rect x="41.4549%" y="565" width="0.0580%" height="15" fill="rgb(218,84,22)" fg:x="150175" fg:w="210"/><text x="41.7049%" y="575.50"></text></g><g><title>native_write_msr (208 samples, 0.06%)</title><rect x="41.4555%" y="549" width="0.0574%" height="15" fill="rgb(216,87,39)" fg:x="150177" fg:w="208"/><text x="41.7055%" y="559.50"></text></g><g><title>finish_task_switch (272 samples, 0.08%)</title><rect x="41.4411%" y="597" width="0.0751%" height="15" fill="rgb(221,178,8)" fg:x="150125" fg:w="272"/><text x="41.6911%" y="607.50"></text></g><g><title>pick_next_task_fair (65 samples, 0.02%)</title><rect x="41.5165%" y="597" width="0.0179%" height="15" fill="rgb(230,42,11)" fg:x="150398" fg:w="65"/><text x="41.7665%" y="607.50"></text></g><g><title>__update_idle_core (48 samples, 0.01%)</title><rect x="41.5355%" y="581" width="0.0133%" height="15" fill="rgb(237,229,4)" fg:x="150467" fg:w="48"/><text x="41.7855%" y="591.50"></text></g><g><title>pick_next_task_idle (53 samples, 0.01%)</title><rect x="41.5344%" y="597" width="0.0146%" height="15" fill="rgb(222,31,33)" fg:x="150463" fg:w="53"/><text x="41.7844%" y="607.50"></text></g><g><title>psi_task_change (255 samples, 0.07%)</title><rect x="41.5490%" y="597" width="0.0704%" height="15" fill="rgb(210,17,39)" fg:x="150516" fg:w="255"/><text x="41.7990%" y="607.50"></text></g><g><title>psi_group_change (223 samples, 0.06%)</title><rect x="41.5579%" y="581" width="0.0616%" height="15" fill="rgb(244,93,20)" fg:x="150548" fg:w="223"/><text x="41.8079%" y="591.50"></text></g><g><title>record_times (59 samples, 0.02%)</title><rect x="41.6032%" y="565" width="0.0163%" height="15" fill="rgb(210,40,47)" fg:x="150712" fg:w="59"/><text x="41.8532%" y="575.50"></text></g><g><title>sched_clock_cpu (40 samples, 0.01%)</title><rect x="41.6084%" y="549" width="0.0110%" height="15" fill="rgb(239,211,47)" fg:x="150731" fg:w="40"/><text x="41.8584%" y="559.50"></text></g><g><title>psi_task_switch (61 samples, 0.02%)</title><rect x="41.6194%" y="597" width="0.0168%" height="15" fill="rgb(251,223,49)" fg:x="150771" fg:w="61"/><text x="41.8694%" y="607.50"></text></g><g><title>psi_group_change (46 samples, 0.01%)</title><rect x="41.6236%" y="581" width="0.0127%" height="15" fill="rgb(221,149,5)" fg:x="150786" fg:w="46"/><text x="41.8736%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (4,650 samples, 1.28%)</title><rect x="40.3623%" y="645" width="1.2836%" height="15" fill="rgb(219,224,51)" fg:x="146217" fg:w="4650"/><text x="40.6123%" y="655.50"></text></g><g><title>schedule (1,182 samples, 0.33%)</title><rect x="41.3197%" y="629" width="0.3263%" height="15" fill="rgb(223,7,8)" fg:x="149685" fg:w="1182"/><text x="41.5697%" y="639.50"></text></g><g><title>__schedule (1,167 samples, 0.32%)</title><rect x="41.3238%" y="613" width="0.3221%" height="15" fill="rgb(241,217,22)" fg:x="149700" fg:w="1167"/><text x="41.5738%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (4,715 samples, 1.30%)</title><rect x="40.3590%" y="661" width="1.3015%" height="15" fill="rgb(248,209,0)" fg:x="146205" fg:w="4715"/><text x="40.6090%" y="671.50"></text></g><g><title>btrfs_root_node (53 samples, 0.01%)</title><rect x="41.6459%" y="645" width="0.0146%" height="15" fill="rgb(217,205,4)" fg:x="150867" fg:w="53"/><text x="41.8959%" y="655.50"></text></g><g><title>prepare_to_wait_event (58 samples, 0.02%)</title><rect x="41.6744%" y="645" width="0.0160%" height="15" fill="rgb(228,124,39)" fg:x="150970" fg:w="58"/><text x="41.9244%" y="655.50"></text></g><g><title>update_curr (42 samples, 0.01%)</title><rect x="41.7334%" y="581" width="0.0116%" height="15" fill="rgb(250,116,42)" fg:x="151184" fg:w="42"/><text x="41.9834%" y="591.50"></text></g><g><title>dequeue_entity (135 samples, 0.04%)</title><rect x="41.7199%" y="597" width="0.0373%" height="15" fill="rgb(223,202,9)" fg:x="151135" fg:w="135"/><text x="41.9699%" y="607.50"></text></g><g><title>update_load_avg (44 samples, 0.01%)</title><rect x="41.7450%" y="581" width="0.0121%" height="15" fill="rgb(242,222,40)" fg:x="151226" fg:w="44"/><text x="41.9950%" y="591.50"></text></g><g><title>dequeue_task_fair (174 samples, 0.05%)</title><rect x="41.7152%" y="613" width="0.0480%" height="15" fill="rgb(229,99,46)" fg:x="151118" fg:w="174"/><text x="41.9652%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.04%)</title><rect x="41.7710%" y="597" width="0.0433%" height="15" fill="rgb(225,56,46)" fg:x="151320" fg:w="157"/><text x="42.0210%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (152 samples, 0.04%)</title><rect x="41.7724%" y="581" width="0.0420%" height="15" fill="rgb(227,94,5)" fg:x="151325" fg:w="152"/><text x="42.0224%" y="591.50"></text></g><g><title>native_write_msr (151 samples, 0.04%)</title><rect x="41.7726%" y="565" width="0.0417%" height="15" fill="rgb(205,112,38)" fg:x="151326" fg:w="151"/><text x="42.0226%" y="575.50"></text></g><g><title>finish_task_switch (193 samples, 0.05%)</title><rect x="41.7633%" y="613" width="0.0533%" height="15" fill="rgb(231,133,46)" fg:x="151292" fg:w="193"/><text x="42.0133%" y="623.50"></text></g><g><title>psi_task_change (111 samples, 0.03%)</title><rect x="41.8284%" y="613" width="0.0306%" height="15" fill="rgb(217,16,9)" fg:x="151528" fg:w="111"/><text x="42.0784%" y="623.50"></text></g><g><title>psi_group_change (94 samples, 0.03%)</title><rect x="41.8331%" y="597" width="0.0259%" height="15" fill="rgb(249,173,9)" fg:x="151545" fg:w="94"/><text x="42.0831%" y="607.50"></text></g><g><title>__btrfs_tree_lock (770 samples, 0.21%)</title><rect x="41.6606%" y="661" width="0.2126%" height="15" fill="rgb(205,163,53)" fg:x="150920" fg:w="770"/><text x="41.9106%" y="671.50"></text></g><g><title>schedule (662 samples, 0.18%)</title><rect x="41.6904%" y="645" width="0.1827%" height="15" fill="rgb(217,54,41)" fg:x="151028" fg:w="662"/><text x="41.9404%" y="655.50"></text></g><g><title>__schedule (650 samples, 0.18%)</title><rect x="41.6937%" y="629" width="0.1794%" height="15" fill="rgb(228,216,12)" fg:x="151040" fg:w="650"/><text x="41.9437%" y="639.50"></text></g><g><title>balance_level (42 samples, 0.01%)</title><rect x="41.8731%" y="661" width="0.0116%" height="15" fill="rgb(244,228,15)" fg:x="151690" fg:w="42"/><text x="42.1231%" y="671.50"></text></g><g><title>__schedule (42 samples, 0.01%)</title><rect x="41.9540%" y="613" width="0.0116%" height="15" fill="rgb(221,176,53)" fg:x="151983" fg:w="42"/><text x="42.2040%" y="623.50"></text></g><g><title>_cond_resched (56 samples, 0.02%)</title><rect x="41.9515%" y="629" width="0.0155%" height="15" fill="rgb(205,94,34)" fg:x="151974" fg:w="56"/><text x="42.2015%" y="639.50"></text></g><g><title>_raw_write_lock (156 samples, 0.04%)</title><rect x="41.9717%" y="629" width="0.0431%" height="15" fill="rgb(213,110,48)" fg:x="152047" fg:w="156"/><text x="42.2217%" y="639.50"></text></g><g><title>__list_del_entry_valid (115 samples, 0.03%)</title><rect x="42.0211%" y="613" width="0.0317%" height="15" fill="rgb(236,142,28)" fg:x="152226" fg:w="115"/><text x="42.2711%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (1,744 samples, 0.48%)</title><rect x="42.0528%" y="613" width="0.4814%" height="15" fill="rgb(225,135,29)" fg:x="152341" fg:w="1744"/><text x="42.3028%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,659 samples, 0.46%)</title><rect x="42.0763%" y="597" width="0.4580%" height="15" fill="rgb(252,45,31)" fg:x="152426" fg:w="1659"/><text x="42.3263%" y="607.50"></text></g><g><title>finish_wait (1,882 samples, 0.52%)</title><rect x="42.0150%" y="629" width="0.5195%" height="15" fill="rgb(211,187,50)" fg:x="152204" fg:w="1882"/><text x="42.2650%" y="639.50"></text></g><g><title>__list_add_valid (129 samples, 0.04%)</title><rect x="42.6472%" y="613" width="0.0356%" height="15" fill="rgb(229,109,7)" fg:x="154494" fg:w="129"/><text x="42.8972%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (6,150 samples, 1.70%)</title><rect x="42.6828%" y="613" width="1.6977%" height="15" fill="rgb(251,131,51)" fg:x="154623" fg:w="6150"/><text x="42.9328%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,827 samples, 1.61%)</title><rect x="42.7719%" y="597" width="1.6085%" height="15" fill="rgb(251,180,35)" fg:x="154946" fg:w="5827"/><text x="43.0219%" y="607.50"></text></g><g><title>prepare_to_wait_event (6,786 samples, 1.87%)</title><rect x="42.5362%" y="629" width="1.8732%" height="15" fill="rgb(211,46,32)" fg:x="154092" fg:w="6786"/><text x="42.7862%" y="639.50">p..</text></g><g><title>_raw_spin_unlock_irqrestore (105 samples, 0.03%)</title><rect x="44.3804%" y="613" width="0.0290%" height="15" fill="rgb(248,123,17)" fg:x="160773" fg:w="105"/><text x="44.6304%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (2,267 samples, 0.63%)</title><rect x="44.4094%" y="629" width="0.6258%" height="15" fill="rgb(227,141,18)" fg:x="160878" fg:w="2267"/><text x="44.6594%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,271 samples, 0.35%)</title><rect x="44.6844%" y="613" width="0.3509%" height="15" fill="rgb(216,102,9)" fg:x="161874" fg:w="1271"/><text x="44.9344%" y="623.50"></text></g><g><title>_raw_spin_lock (85 samples, 0.02%)</title><rect x="45.1426%" y="581" width="0.0235%" height="15" fill="rgb(253,47,13)" fg:x="163534" fg:w="85"/><text x="45.3926%" y="591.50"></text></g><g><title>__perf_event_task_sched_out (184 samples, 0.05%)</title><rect x="45.1172%" y="597" width="0.0508%" height="15" fill="rgb(226,93,23)" fg:x="163442" fg:w="184"/><text x="45.3672%" y="607.50"></text></g><g><title>_raw_spin_lock (44 samples, 0.01%)</title><rect x="45.1721%" y="597" width="0.0121%" height="15" fill="rgb(247,104,17)" fg:x="163641" fg:w="44"/><text x="45.4221%" y="607.50"></text></g><g><title>reweight_entity (46 samples, 0.01%)</title><rect x="45.2436%" y="565" width="0.0127%" height="15" fill="rgb(233,203,26)" fg:x="163900" fg:w="46"/><text x="45.4936%" y="575.50"></text></g><g><title>update_cfs_group (92 samples, 0.03%)</title><rect x="45.2563%" y="565" width="0.0254%" height="15" fill="rgb(244,98,49)" fg:x="163946" fg:w="92"/><text x="45.5063%" y="575.50"></text></g><g><title>__calc_delta (72 samples, 0.02%)</title><rect x="45.3168%" y="549" width="0.0199%" height="15" fill="rgb(235,134,22)" fg:x="164165" fg:w="72"/><text x="45.5668%" y="559.50"></text></g><g><title>cpuacct_charge (62 samples, 0.02%)</title><rect x="45.3386%" y="549" width="0.0171%" height="15" fill="rgb(221,70,32)" fg:x="164244" fg:w="62"/><text x="45.5886%" y="559.50"></text></g><g><title>update_curr (302 samples, 0.08%)</title><rect x="45.2817%" y="565" width="0.0834%" height="15" fill="rgb(238,15,50)" fg:x="164038" fg:w="302"/><text x="45.5317%" y="575.50"></text></g><g><title>__update_load_avg_cfs_rq (65 samples, 0.02%)</title><rect x="45.3966%" y="549" width="0.0179%" height="15" fill="rgb(215,221,48)" fg:x="164454" fg:w="65"/><text x="45.6466%" y="559.50"></text></g><g><title>__update_load_avg_se (111 samples, 0.03%)</title><rect x="45.4145%" y="549" width="0.0306%" height="15" fill="rgb(236,73,3)" fg:x="164519" fg:w="111"/><text x="45.6645%" y="559.50"></text></g><g><title>dequeue_entity (865 samples, 0.24%)</title><rect x="45.2088%" y="581" width="0.2388%" height="15" fill="rgb(250,107,11)" fg:x="163774" fg:w="865"/><text x="45.4588%" y="591.50"></text></g><g><title>update_load_avg (299 samples, 0.08%)</title><rect x="45.3651%" y="565" width="0.0825%" height="15" fill="rgb(242,39,14)" fg:x="164340" fg:w="299"/><text x="45.6151%" y="575.50"></text></g><g><title>dequeue_task_fair (1,038 samples, 0.29%)</title><rect x="45.1843%" y="597" width="0.2865%" height="15" fill="rgb(248,164,37)" fg:x="163685" fg:w="1038"/><text x="45.4343%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (844 samples, 0.23%)</title><rect x="45.5202%" y="581" width="0.2330%" height="15" fill="rgb(217,60,12)" fg:x="164902" fg:w="844"/><text x="45.7702%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (812 samples, 0.22%)</title><rect x="45.5291%" y="565" width="0.2241%" height="15" fill="rgb(240,125,29)" fg:x="164934" fg:w="812"/><text x="45.7791%" y="575.50"></text></g><g><title>native_write_msr (806 samples, 0.22%)</title><rect x="45.5307%" y="549" width="0.2225%" height="15" fill="rgb(208,207,28)" fg:x="164940" fg:w="806"/><text x="45.7807%" y="559.50"></text></g><g><title>finish_task_switch (1,064 samples, 0.29%)</title><rect x="45.4708%" y="597" width="0.2937%" height="15" fill="rgb(209,159,27)" fg:x="164723" fg:w="1064"/><text x="45.7208%" y="607.50"></text></g><g><title>newidle_balance (88 samples, 0.02%)</title><rect x="45.7789%" y="581" width="0.0243%" height="15" fill="rgb(251,176,53)" fg:x="165839" fg:w="88"/><text x="46.0289%" y="591.50"></text></g><g><title>pick_next_task_fair (193 samples, 0.05%)</title><rect x="45.7648%" y="597" width="0.0533%" height="15" fill="rgb(211,85,7)" fg:x="165788" fg:w="193"/><text x="46.0148%" y="607.50"></text></g><g><title>pick_next_task_idle (181 samples, 0.05%)</title><rect x="45.8181%" y="597" width="0.0500%" height="15" fill="rgb(216,64,54)" fg:x="165981" fg:w="181"/><text x="46.0681%" y="607.50"></text></g><g><title>__update_idle_core (172 samples, 0.05%)</title><rect x="45.8206%" y="581" width="0.0475%" height="15" fill="rgb(217,54,24)" fg:x="165990" fg:w="172"/><text x="46.0706%" y="591.50"></text></g><g><title>psi_task_change (821 samples, 0.23%)</title><rect x="45.8680%" y="597" width="0.2266%" height="15" fill="rgb(208,206,53)" fg:x="166162" fg:w="821"/><text x="46.1180%" y="607.50"></text></g><g><title>psi_group_change (722 samples, 0.20%)</title><rect x="45.8954%" y="581" width="0.1993%" height="15" fill="rgb(251,74,39)" fg:x="166261" fg:w="722"/><text x="46.1454%" y="591.50"></text></g><g><title>record_times (231 samples, 0.06%)</title><rect x="46.0309%" y="565" width="0.0638%" height="15" fill="rgb(226,47,5)" fg:x="166752" fg:w="231"/><text x="46.2809%" y="575.50"></text></g><g><title>sched_clock_cpu (144 samples, 0.04%)</title><rect x="46.0549%" y="549" width="0.0398%" height="15" fill="rgb(234,111,33)" fg:x="166839" fg:w="144"/><text x="46.3049%" y="559.50"></text></g><g><title>sched_clock (120 samples, 0.03%)</title><rect x="46.0615%" y="533" width="0.0331%" height="15" fill="rgb(251,14,10)" fg:x="166863" fg:w="120"/><text x="46.3115%" y="543.50"></text></g><g><title>native_sched_clock (118 samples, 0.03%)</title><rect x="46.0621%" y="517" width="0.0326%" height="15" fill="rgb(232,43,0)" fg:x="166865" fg:w="118"/><text x="46.3121%" y="527.50"></text></g><g><title>psi_task_switch (126 samples, 0.03%)</title><rect x="46.0947%" y="597" width="0.0348%" height="15" fill="rgb(222,68,43)" fg:x="166983" fg:w="126"/><text x="46.3447%" y="607.50"></text></g><g><title>psi_group_change (100 samples, 0.03%)</title><rect x="46.1018%" y="581" width="0.0276%" height="15" fill="rgb(217,24,23)" fg:x="167009" fg:w="100"/><text x="46.3518%" y="591.50"></text></g><g><title>put_prev_task_fair (47 samples, 0.01%)</title><rect x="46.1294%" y="597" width="0.0130%" height="15" fill="rgb(229,209,14)" fg:x="167109" fg:w="47"/><text x="46.3794%" y="607.50"></text></g><g><title>put_prev_entity (37 samples, 0.01%)</title><rect x="46.1322%" y="581" width="0.0102%" height="15" fill="rgb(250,149,48)" fg:x="167119" fg:w="37"/><text x="46.3822%" y="591.50"></text></g><g><title>__btrfs_tree_lock (15,505 samples, 4.28%)</title><rect x="41.8927%" y="645" width="4.2801%" height="15" fill="rgb(210,120,37)" fg:x="151761" fg:w="15505"/><text x="42.1427%" y="655.50">__btr..</text></g><g><title>schedule (4,121 samples, 1.14%)</title><rect x="45.0352%" y="629" width="1.1376%" height="15" fill="rgb(210,21,8)" fg:x="163145" fg:w="4121"/><text x="45.2852%" y="639.50"></text></g><g><title>__schedule (4,058 samples, 1.12%)</title><rect x="45.0526%" y="613" width="1.1202%" height="15" fill="rgb(243,145,7)" fg:x="163208" fg:w="4058"/><text x="45.3026%" y="623.50"></text></g><g><title>update_rq_clock (99 samples, 0.03%)</title><rect x="46.1455%" y="597" width="0.0273%" height="15" fill="rgb(238,178,32)" fg:x="167167" fg:w="99"/><text x="46.3955%" y="607.50"></text></g><g><title>sched_clock_cpu (54 samples, 0.01%)</title><rect x="46.1579%" y="581" width="0.0149%" height="15" fill="rgb(222,4,10)" fg:x="167212" fg:w="54"/><text x="46.4079%" y="591.50"></text></g><g><title>sched_clock (48 samples, 0.01%)</title><rect x="46.1595%" y="565" width="0.0133%" height="15" fill="rgb(239,7,37)" fg:x="167218" fg:w="48"/><text x="46.4095%" y="575.50"></text></g><g><title>native_sched_clock (46 samples, 0.01%)</title><rect x="46.1601%" y="549" width="0.0127%" height="15" fill="rgb(215,31,37)" fg:x="167220" fg:w="46"/><text x="46.4101%" y="559.50"></text></g><g><title>btrfs_lock_root_node (15,525 samples, 4.29%)</title><rect x="41.8911%" y="661" width="4.2856%" height="15" fill="rgb(224,83,33)" fg:x="151755" fg:w="15525"/><text x="42.1411%" y="671.50">btrfs..</text></g><g><title>btrfs_set_path_blocking (75 samples, 0.02%)</title><rect x="46.1767%" y="661" width="0.0207%" height="15" fill="rgb(239,55,3)" fg:x="167280" fg:w="75"/><text x="46.4267%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_write (46 samples, 0.01%)</title><rect x="46.1847%" y="645" width="0.0127%" height="15" fill="rgb(247,92,11)" fg:x="167309" fg:w="46"/><text x="46.4347%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (491 samples, 0.14%)</title><rect x="46.2065%" y="661" width="0.1355%" height="15" fill="rgb(239,200,7)" fg:x="167388" fg:w="491"/><text x="46.4565%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (462 samples, 0.13%)</title><rect x="46.2145%" y="645" width="0.1275%" height="15" fill="rgb(227,115,8)" fg:x="167417" fg:w="462"/><text x="46.4645%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (256 samples, 0.07%)</title><rect x="46.3497%" y="661" width="0.0707%" height="15" fill="rgb(215,189,27)" fg:x="167907" fg:w="256"/><text x="46.5997%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (52 samples, 0.01%)</title><rect x="46.4336%" y="645" width="0.0144%" height="15" fill="rgb(251,216,39)" fg:x="168211" fg:w="52"/><text x="46.6836%" y="655.50"></text></g><g><title>btrfs_get_64 (58 samples, 0.02%)</title><rect x="46.4480%" y="645" width="0.0160%" height="15" fill="rgb(207,29,47)" fg:x="168263" fg:w="58"/><text x="46.6980%" y="655.50"></text></g><g><title>__radix_tree_lookup (168 samples, 0.05%)</title><rect x="46.4938%" y="629" width="0.0464%" height="15" fill="rgb(210,71,34)" fg:x="168429" fg:w="168"/><text x="46.7438%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (70 samples, 0.02%)</title><rect x="46.5405%" y="629" width="0.0193%" height="15" fill="rgb(253,217,51)" fg:x="168598" fg:w="70"/><text x="46.7905%" y="639.50"></text></g><g><title>mark_page_accessed (56 samples, 0.02%)</title><rect x="46.5443%" y="613" width="0.0155%" height="15" fill="rgb(222,117,46)" fg:x="168612" fg:w="56"/><text x="46.7943%" y="623.50"></text></g><g><title>find_extent_buffer (327 samples, 0.09%)</title><rect x="46.4706%" y="645" width="0.0903%" height="15" fill="rgb(226,132,6)" fg:x="168345" fg:w="327"/><text x="46.7206%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (549 samples, 0.15%)</title><rect x="46.4204%" y="661" width="0.1515%" height="15" fill="rgb(254,145,51)" fg:x="168163" fg:w="549"/><text x="46.6704%" y="671.50"></text></g><g><title>read_extent_buffer (40 samples, 0.01%)</title><rect x="46.5609%" y="645" width="0.0110%" height="15" fill="rgb(231,199,27)" fg:x="168672" fg:w="40"/><text x="46.8109%" y="655.50"></text></g><g><title>__radix_tree_lookup (56 samples, 0.02%)</title><rect x="46.6037%" y="629" width="0.0155%" height="15" fill="rgb(245,158,14)" fg:x="168827" fg:w="56"/><text x="46.8537%" y="639.50"></text></g><g><title>find_extent_buffer (136 samples, 0.04%)</title><rect x="46.5904%" y="645" width="0.0375%" height="15" fill="rgb(240,113,14)" fg:x="168779" fg:w="136"/><text x="46.8404%" y="655.50"></text></g><g><title>reada_for_balance (221 samples, 0.06%)</title><rect x="46.5719%" y="661" width="0.0610%" height="15" fill="rgb(210,20,13)" fg:x="168712" fg:w="221"/><text x="46.8219%" y="671.50"></text></g><g><title>__list_del_entry_valid (100 samples, 0.03%)</title><rect x="46.6738%" y="597" width="0.0276%" height="15" fill="rgb(241,144,13)" fg:x="169081" fg:w="100"/><text x="46.9238%" y="607.50"></text></g><g><title>_raw_spin_lock (156 samples, 0.04%)</title><rect x="46.8419%" y="581" width="0.0431%" height="15" fill="rgb(235,43,34)" fg:x="169690" fg:w="156"/><text x="47.0919%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath (100 samples, 0.03%)</title><rect x="46.8574%" y="565" width="0.0276%" height="15" fill="rgb(208,36,20)" fg:x="169746" fg:w="100"/><text x="47.1074%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (138 samples, 0.04%)</title><rect x="46.8850%" y="581" width="0.0381%" height="15" fill="rgb(239,204,10)" fg:x="169846" fg:w="138"/><text x="47.1350%" y="591.50"></text></g><g><title>available_idle_cpu (117 samples, 0.03%)</title><rect x="47.0056%" y="565" width="0.0323%" height="15" fill="rgb(217,84,43)" fg:x="170283" fg:w="117"/><text x="47.2556%" y="575.50"></text></g><g><title>cpumask_next_wrap (42 samples, 0.01%)</title><rect x="47.0456%" y="565" width="0.0116%" height="15" fill="rgb(241,170,50)" fg:x="170428" fg:w="42"/><text x="47.2956%" y="575.50"></text></g><g><title>select_task_rq_fair (615 samples, 0.17%)</title><rect x="46.9294%" y="581" width="0.1698%" height="15" fill="rgb(226,205,29)" fg:x="170007" fg:w="615"/><text x="47.1794%" y="591.50"></text></g><g><title>update_cfs_rq_h_load (127 samples, 0.04%)</title><rect x="47.0641%" y="565" width="0.0351%" height="15" fill="rgb(233,113,1)" fg:x="170495" fg:w="127"/><text x="47.3141%" y="575.50"></text></g><g><title>set_task_cpu (67 samples, 0.02%)</title><rect x="47.0992%" y="581" width="0.0185%" height="15" fill="rgb(253,98,13)" fg:x="170622" fg:w="67"/><text x="47.3492%" y="591.50"></text></g><g><title>migrate_task_rq_fair (40 samples, 0.01%)</title><rect x="47.1066%" y="565" width="0.0110%" height="15" fill="rgb(211,115,12)" fg:x="170649" fg:w="40"/><text x="47.3566%" y="575.50"></text></g><g><title>reweight_entity (45 samples, 0.01%)</title><rect x="47.2242%" y="533" width="0.0124%" height="15" fill="rgb(208,12,16)" fg:x="171075" fg:w="45"/><text x="47.4742%" y="543.50"></text></g><g><title>update_cfs_group (55 samples, 0.02%)</title><rect x="47.2367%" y="533" width="0.0152%" height="15" fill="rgb(237,193,54)" fg:x="171120" fg:w="55"/><text x="47.4867%" y="543.50"></text></g><g><title>update_curr (63 samples, 0.02%)</title><rect x="47.2518%" y="533" width="0.0174%" height="15" fill="rgb(243,22,42)" fg:x="171175" fg:w="63"/><text x="47.5018%" y="543.50"></text></g><g><title>enqueue_entity (554 samples, 0.15%)</title><rect x="47.1665%" y="549" width="0.1529%" height="15" fill="rgb(233,151,36)" fg:x="170866" fg:w="554"/><text x="47.4165%" y="559.50"></text></g><g><title>update_load_avg (182 samples, 0.05%)</title><rect x="47.2692%" y="533" width="0.0502%" height="15" fill="rgb(237,57,45)" fg:x="171238" fg:w="182"/><text x="47.5192%" y="543.50"></text></g><g><title>enqueue_task_fair (739 samples, 0.20%)</title><rect x="47.1315%" y="565" width="0.2040%" height="15" fill="rgb(221,88,17)" fg:x="170739" fg:w="739"/><text x="47.3815%" y="575.50"></text></g><g><title>ttwu_do_activate (1,534 samples, 0.42%)</title><rect x="47.1177%" y="581" width="0.4235%" height="15" fill="rgb(230,79,15)" fg:x="170689" fg:w="1534"/><text x="47.3677%" y="591.50"></text></g><g><title>psi_task_change (745 samples, 0.21%)</title><rect x="47.3355%" y="565" width="0.2057%" height="15" fill="rgb(213,57,13)" fg:x="171478" fg:w="745"/><text x="47.5855%" y="575.50"></text></g><g><title>psi_group_change (670 samples, 0.18%)</title><rect x="47.3562%" y="549" width="0.1849%" height="15" fill="rgb(222,116,39)" fg:x="171553" fg:w="670"/><text x="47.6062%" y="559.50"></text></g><g><title>record_times (106 samples, 0.03%)</title><rect x="47.5119%" y="533" width="0.0293%" height="15" fill="rgb(245,107,2)" fg:x="172117" fg:w="106"/><text x="47.7619%" y="543.50"></text></g><g><title>sched_clock_cpu (68 samples, 0.02%)</title><rect x="47.5224%" y="517" width="0.0188%" height="15" fill="rgb(238,1,10)" fg:x="172155" fg:w="68"/><text x="47.7724%" y="527.50"></text></g><g><title>sched_clock (55 samples, 0.02%)</title><rect x="47.5260%" y="501" width="0.0152%" height="15" fill="rgb(249,4,48)" fg:x="172168" fg:w="55"/><text x="47.7760%" y="511.50"></text></g><g><title>native_sched_clock (47 samples, 0.01%)</title><rect x="47.5282%" y="485" width="0.0130%" height="15" fill="rgb(223,151,18)" fg:x="172176" fg:w="47"/><text x="47.7782%" y="495.50"></text></g><g><title>ttwu_do_wakeup (145 samples, 0.04%)</title><rect x="47.5411%" y="581" width="0.0400%" height="15" fill="rgb(227,65,43)" fg:x="172223" fg:w="145"/><text x="47.7911%" y="591.50"></text></g><g><title>check_preempt_curr (132 samples, 0.04%)</title><rect x="47.5447%" y="565" width="0.0364%" height="15" fill="rgb(218,40,45)" fg:x="172236" fg:w="132"/><text x="47.7947%" y="575.50"></text></g><g><title>resched_curr (63 samples, 0.02%)</title><rect x="47.5638%" y="549" width="0.0174%" height="15" fill="rgb(252,121,31)" fg:x="172305" fg:w="63"/><text x="47.8138%" y="559.50"></text></g><g><title>ttwu_queue_wakelist (59 samples, 0.02%)</title><rect x="47.5812%" y="581" width="0.0163%" height="15" fill="rgb(219,158,43)" fg:x="172368" fg:w="59"/><text x="47.8312%" y="591.50"></text></g><g><title>__wake_up_common (3,548 samples, 0.98%)</title><rect x="46.6542%" y="629" width="0.9794%" height="15" fill="rgb(231,162,42)" fg:x="169010" fg:w="3548"/><text x="46.9042%" y="639.50"></text></g><g><title>autoremove_wake_function (3,482 samples, 0.96%)</title><rect x="46.6724%" y="613" width="0.9612%" height="15" fill="rgb(217,179,25)" fg:x="169076" fg:w="3482"/><text x="46.9224%" y="623.50"></text></g><g><title>try_to_wake_up (3,375 samples, 0.93%)</title><rect x="46.7020%" y="597" width="0.9316%" height="15" fill="rgb(206,212,31)" fg:x="169183" fg:w="3375"/><text x="46.9520%" y="607.50"></text></g><g><title>update_rq_clock (131 samples, 0.04%)</title><rect x="47.5975%" y="581" width="0.0362%" height="15" fill="rgb(235,144,12)" fg:x="172427" fg:w="131"/><text x="47.8475%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (116 samples, 0.03%)</title><rect x="47.6336%" y="629" width="0.0320%" height="15" fill="rgb(213,51,10)" fg:x="172558" fg:w="116"/><text x="47.8836%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (96 samples, 0.03%)</title><rect x="47.6391%" y="613" width="0.0265%" height="15" fill="rgb(231,145,14)" fg:x="172578" fg:w="96"/><text x="47.8891%" y="623.50"></text></g><g><title>__wake_up_common_lock (3,702 samples, 1.02%)</title><rect x="46.6492%" y="645" width="1.0219%" height="15" fill="rgb(235,15,28)" fg:x="168992" fg:w="3702"/><text x="46.8992%" y="655.50"></text></g><g><title>btrfs_lookup_inode (26,806 samples, 7.40%)</title><rect x="40.2853%" y="693" width="7.3996%" height="15" fill="rgb(237,206,10)" fg:x="145938" fg:w="26806"/><text x="40.5353%" y="703.50">btrfs_look..</text></g><g><title>btrfs_search_slot (26,766 samples, 7.39%)</title><rect x="40.2964%" y="677" width="7.3886%" height="15" fill="rgb(236,227,27)" fg:x="145978" fg:w="26766"/><text x="40.5464%" y="687.50">btrfs_sear..</text></g><g><title>unlock_up (3,811 samples, 1.05%)</title><rect x="46.6330%" y="661" width="1.0520%" height="15" fill="rgb(246,83,35)" fg:x="168933" fg:w="3811"/><text x="46.8830%" y="671.50"></text></g><g><title>btrfs_tree_unlock (49 samples, 0.01%)</title><rect x="47.6714%" y="645" width="0.0135%" height="15" fill="rgb(220,136,24)" fg:x="172695" fg:w="49"/><text x="47.9214%" y="655.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.02%)</title><rect x="47.7747%" y="613" width="0.0166%" height="15" fill="rgb(217,3,25)" fg:x="173069" fg:w="60"/><text x="48.0247%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (43 samples, 0.01%)</title><rect x="47.7794%" y="597" width="0.0119%" height="15" fill="rgb(239,24,14)" fg:x="173086" fg:w="43"/><text x="48.0294%" y="607.50"></text></g><g><title>select_task_rq_fair (167 samples, 0.05%)</title><rect x="47.8012%" y="613" width="0.0461%" height="15" fill="rgb(244,16,53)" fg:x="173165" fg:w="167"/><text x="48.0512%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (52 samples, 0.01%)</title><rect x="47.8329%" y="597" width="0.0144%" height="15" fill="rgb(208,175,44)" fg:x="173280" fg:w="52"/><text x="48.0829%" y="607.50"></text></g><g><title>enqueue_entity (159 samples, 0.04%)</title><rect x="47.8638%" y="581" width="0.0439%" height="15" fill="rgb(252,18,48)" fg:x="173392" fg:w="159"/><text x="48.1138%" y="591.50"></text></g><g><title>update_load_avg (48 samples, 0.01%)</title><rect x="47.8945%" y="565" width="0.0133%" height="15" fill="rgb(234,199,32)" fg:x="173503" fg:w="48"/><text x="48.1445%" y="575.50"></text></g><g><title>enqueue_task_fair (195 samples, 0.05%)</title><rect x="47.8558%" y="597" width="0.0538%" height="15" fill="rgb(225,77,54)" fg:x="173363" fg:w="195"/><text x="48.1058%" y="607.50"></text></g><g><title>ttwu_do_activate (420 samples, 0.12%)</title><rect x="47.8506%" y="613" width="0.1159%" height="15" fill="rgb(225,42,25)" fg:x="173344" fg:w="420"/><text x="48.1006%" y="623.50"></text></g><g><title>psi_task_change (206 samples, 0.06%)</title><rect x="47.9097%" y="597" width="0.0569%" height="15" fill="rgb(242,227,46)" fg:x="173558" fg:w="206"/><text x="48.1597%" y="607.50"></text></g><g><title>psi_group_change (192 samples, 0.05%)</title><rect x="47.9135%" y="581" width="0.0530%" height="15" fill="rgb(246,197,35)" fg:x="173572" fg:w="192"/><text x="48.1635%" y="591.50"></text></g><g><title>ttwu_do_wakeup (39 samples, 0.01%)</title><rect x="47.9665%" y="613" width="0.0108%" height="15" fill="rgb(215,159,26)" fg:x="173764" fg:w="39"/><text x="48.2165%" y="623.50"></text></g><g><title>check_preempt_curr (38 samples, 0.01%)</title><rect x="47.9668%" y="597" width="0.0105%" height="15" fill="rgb(212,194,50)" fg:x="173765" fg:w="38"/><text x="48.2168%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (51 samples, 0.01%)</title><rect x="47.9773%" y="613" width="0.0141%" height="15" fill="rgb(246,132,1)" fg:x="173803" fg:w="51"/><text x="48.2273%" y="623.50"></text></g><g><title>__wake_up_common (1,092 samples, 0.30%)</title><rect x="47.7023%" y="661" width="0.3014%" height="15" fill="rgb(217,71,7)" fg:x="172807" fg:w="1092"/><text x="47.9523%" y="671.50"></text></g><g><title>autoremove_wake_function (1,059 samples, 0.29%)</title><rect x="47.7115%" y="645" width="0.2923%" height="15" fill="rgb(252,59,32)" fg:x="172840" fg:w="1059"/><text x="47.9615%" y="655.50"></text></g><g><title>try_to_wake_up (1,040 samples, 0.29%)</title><rect x="47.7167%" y="629" width="0.2871%" height="15" fill="rgb(253,204,25)" fg:x="172859" fg:w="1040"/><text x="47.9667%" y="639.50"></text></g><g><title>update_rq_clock (45 samples, 0.01%)</title><rect x="47.9914%" y="613" width="0.0124%" height="15" fill="rgb(232,21,16)" fg:x="173854" fg:w="45"/><text x="48.2414%" y="623.50"></text></g><g><title>__wake_up_common_lock (1,119 samples, 0.31%)</title><rect x="47.7012%" y="677" width="0.3089%" height="15" fill="rgb(248,90,29)" fg:x="172803" fg:w="1119"/><text x="47.9512%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (78 samples, 0.02%)</title><rect x="48.0201%" y="677" width="0.0215%" height="15" fill="rgb(249,223,7)" fg:x="173958" fg:w="78"/><text x="48.2701%" y="687.50"></text></g><g><title>btrfs_release_path (1,255 samples, 0.35%)</title><rect x="47.6990%" y="693" width="0.3464%" height="15" fill="rgb(231,119,42)" fg:x="172795" fg:w="1255"/><text x="47.9490%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (41 samples, 0.01%)</title><rect x="48.0455%" y="677" width="0.0113%" height="15" fill="rgb(215,41,35)" fg:x="174050" fg:w="41"/><text x="48.2955%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (41 samples, 0.01%)</title><rect x="48.0455%" y="661" width="0.0113%" height="15" fill="rgb(220,44,45)" fg:x="174050" fg:w="41"/><text x="48.2955%" y="671.50"></text></g><g><title>prepare_to_wait_event (82 samples, 0.02%)</title><rect x="48.0676%" y="645" width="0.0226%" height="15" fill="rgb(253,197,36)" fg:x="174130" fg:w="82"/><text x="48.3176%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (80 samples, 0.02%)</title><rect x="48.0681%" y="629" width="0.0221%" height="15" fill="rgb(245,225,54)" fg:x="174132" fg:w="80"/><text x="48.3181%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (78 samples, 0.02%)</title><rect x="48.0687%" y="613" width="0.0215%" height="15" fill="rgb(239,94,37)" fg:x="174134" fg:w="78"/><text x="48.3187%" y="623.50"></text></g><g><title>__btrfs_tree_lock (185 samples, 0.05%)</title><rect x="48.0593%" y="661" width="0.0511%" height="15" fill="rgb(242,217,10)" fg:x="174100" fg:w="185"/><text x="48.3093%" y="671.50"></text></g><g><title>schedule (48 samples, 0.01%)</title><rect x="48.0971%" y="645" width="0.0133%" height="15" fill="rgb(250,193,7)" fg:x="174237" fg:w="48"/><text x="48.3471%" y="655.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="48.0974%" y="629" width="0.0130%" height="15" fill="rgb(230,104,19)" fg:x="174238" fg:w="47"/><text x="48.3474%" y="639.50"></text></g><g><title>btrfs_lock_root_node (187 samples, 0.05%)</title><rect x="48.0590%" y="677" width="0.0516%" height="15" fill="rgb(230,181,4)" fg:x="174099" fg:w="187"/><text x="48.3090%" y="687.50"></text></g><g><title>__wake_up_common_lock (40 samples, 0.01%)</title><rect x="48.1145%" y="661" width="0.0110%" height="15" fill="rgb(216,219,49)" fg:x="174300" fg:w="40"/><text x="48.3645%" y="671.50"></text></g><g><title>btrfs_search_slot (291 samples, 0.08%)</title><rect x="48.0455%" y="693" width="0.0803%" height="15" fill="rgb(254,144,0)" fg:x="174050" fg:w="291"/><text x="48.2955%" y="703.50"></text></g><g><title>unlock_up (41 samples, 0.01%)</title><rect x="48.1145%" y="677" width="0.0113%" height="15" fill="rgb(205,209,38)" fg:x="174300" fg:w="41"/><text x="48.3645%" y="687.50"></text></g><g><title>finish_one_item (66 samples, 0.02%)</title><rect x="48.1258%" y="693" width="0.0182%" height="15" fill="rgb(240,21,42)" fg:x="174341" fg:w="66"/><text x="48.3758%" y="703.50"></text></g><g><title>__btrfs_update_delayed_inode (30,774 samples, 8.49%)</title><rect x="39.6736%" y="709" width="8.4950%" height="15" fill="rgb(241,132,3)" fg:x="143722" fg:w="30774"/><text x="39.9236%" y="719.50">__btrfs_upda..</text></g><g><title>write_extent_buffer (76 samples, 0.02%)</title><rect x="48.1476%" y="693" width="0.0210%" height="15" fill="rgb(225,14,2)" fg:x="174420" fg:w="76"/><text x="48.3976%" y="703.50"></text></g><g><title>btrfs_btree_balance_dirty (42 samples, 0.01%)</title><rect x="48.1719%" y="709" width="0.0116%" height="15" fill="rgb(210,141,35)" fg:x="174508" fg:w="42"/><text x="48.4219%" y="719.50"></text></g><g><title>btrfs_get_delayed_node (40 samples, 0.01%)</title><rect x="48.1871%" y="709" width="0.0110%" height="15" fill="rgb(251,14,44)" fg:x="174563" fg:w="40"/><text x="48.4371%" y="719.50"></text></g><g><title>kmem_cache_alloc (37 samples, 0.01%)</title><rect x="48.1981%" y="709" width="0.0102%" height="15" fill="rgb(247,48,18)" fg:x="174603" fg:w="37"/><text x="48.4481%" y="719.50"></text></g><g><title>kmem_cache_free (74 samples, 0.02%)</title><rect x="48.2083%" y="709" width="0.0204%" height="15" fill="rgb(225,0,40)" fg:x="174640" fg:w="74"/><text x="48.4583%" y="719.50"></text></g><g><title>join_transaction (58 samples, 0.02%)</title><rect x="48.2600%" y="693" width="0.0160%" height="15" fill="rgb(221,31,33)" fg:x="174827" fg:w="58"/><text x="48.5100%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (31,610 samples, 8.73%)</title><rect x="39.5659%" y="725" width="8.7258%" height="15" fill="rgb(237,42,40)" fg:x="143332" fg:w="31610"/><text x="39.8159%" y="735.50">btrfs_commit..</text></g><g><title>start_transaction (176 samples, 0.05%)</title><rect x="48.2431%" y="709" width="0.0486%" height="15" fill="rgb(233,51,29)" fg:x="174766" fg:w="176"/><text x="48.4931%" y="719.50"></text></g><g><title>kmem_cache_alloc (57 samples, 0.02%)</title><rect x="48.2760%" y="693" width="0.0157%" height="15" fill="rgb(226,58,20)" fg:x="174885" fg:w="57"/><text x="48.5260%" y="703.50"></text></g><g><title>btrfs_mark_buffer_dirty (40 samples, 0.01%)</title><rect x="48.3400%" y="693" width="0.0110%" height="15" fill="rgb(208,98,7)" fg:x="175117" fg:w="40"/><text x="48.5900%" y="703.50"></text></g><g><title>memcpy_extent_buffer (48 samples, 0.01%)</title><rect x="48.3629%" y="693" width="0.0133%" height="15" fill="rgb(228,143,44)" fg:x="175200" fg:w="48"/><text x="48.6129%" y="703.50"></text></g><g><title>btrfs_del_items (292 samples, 0.08%)</title><rect x="48.3027%" y="709" width="0.0806%" height="15" fill="rgb(246,55,38)" fg:x="174982" fg:w="292"/><text x="48.5527%" y="719.50"></text></g><g><title>_raw_spin_lock (84 samples, 0.02%)</title><rect x="48.4631%" y="613" width="0.0232%" height="15" fill="rgb(247,87,16)" fg:x="175563" fg:w="84"/><text x="48.7131%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (77 samples, 0.02%)</title><rect x="48.4651%" y="597" width="0.0213%" height="15" fill="rgb(234,129,42)" fg:x="175570" fg:w="77"/><text x="48.7151%" y="607.50"></text></g><g><title>select_task_rq_fair (138 samples, 0.04%)</title><rect x="48.4910%" y="613" width="0.0381%" height="15" fill="rgb(220,82,16)" fg:x="175664" fg:w="138"/><text x="48.7410%" y="623.50"></text></g><g><title>enqueue_entity (110 samples, 0.03%)</title><rect x="48.5407%" y="581" width="0.0304%" height="15" fill="rgb(211,88,4)" fg:x="175844" fg:w="110"/><text x="48.7907%" y="591.50"></text></g><g><title>update_load_avg (46 samples, 0.01%)</title><rect x="48.5584%" y="565" width="0.0127%" height="15" fill="rgb(248,151,21)" fg:x="175908" fg:w="46"/><text x="48.8084%" y="575.50"></text></g><g><title>enqueue_task_fair (142 samples, 0.04%)</title><rect x="48.5357%" y="597" width="0.0392%" height="15" fill="rgb(238,163,6)" fg:x="175826" fg:w="142"/><text x="48.7857%" y="607.50"></text></g><g><title>ttwu_do_activate (329 samples, 0.09%)</title><rect x="48.5338%" y="613" width="0.0908%" height="15" fill="rgb(209,183,11)" fg:x="175819" fg:w="329"/><text x="48.7838%" y="623.50"></text></g><g><title>psi_task_change (179 samples, 0.05%)</title><rect x="48.5752%" y="597" width="0.0494%" height="15" fill="rgb(219,37,20)" fg:x="175969" fg:w="179"/><text x="48.8252%" y="607.50"></text></g><g><title>psi_group_change (154 samples, 0.04%)</title><rect x="48.5821%" y="581" width="0.0425%" height="15" fill="rgb(210,158,4)" fg:x="175994" fg:w="154"/><text x="48.8321%" y="591.50"></text></g><g><title>__wake_up_common (927 samples, 0.26%)</title><rect x="48.3916%" y="661" width="0.2559%" height="15" fill="rgb(221,167,53)" fg:x="175304" fg:w="927"/><text x="48.6416%" y="671.50"></text></g><g><title>autoremove_wake_function (905 samples, 0.25%)</title><rect x="48.3977%" y="645" width="0.2498%" height="15" fill="rgb(237,151,45)" fg:x="175326" fg:w="905"/><text x="48.6477%" y="655.50"></text></g><g><title>try_to_wake_up (890 samples, 0.25%)</title><rect x="48.4018%" y="629" width="0.2457%" height="15" fill="rgb(231,39,3)" fg:x="175341" fg:w="890"/><text x="48.6518%" y="639.50"></text></g><g><title>__wake_up_common_lock (951 samples, 0.26%)</title><rect x="48.3902%" y="677" width="0.2625%" height="15" fill="rgb(212,167,28)" fg:x="175299" fg:w="951"/><text x="48.6402%" y="687.50"></text></g><g><title>btrfs_tree_unlock (37 samples, 0.01%)</title><rect x="48.6528%" y="677" width="0.0102%" height="15" fill="rgb(232,178,8)" fg:x="176250" fg:w="37"/><text x="48.9028%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.02%)</title><rect x="48.6638%" y="677" width="0.0166%" height="15" fill="rgb(225,151,20)" fg:x="176290" fg:w="60"/><text x="48.9138%" y="687.50"></text></g><g><title>btrfs_free_path (1,098 samples, 0.30%)</title><rect x="48.3833%" y="709" width="0.3031%" height="15" fill="rgb(238,3,37)" fg:x="175274" fg:w="1098"/><text x="48.6333%" y="719.50"></text></g><g><title>btrfs_release_path (1,094 samples, 0.30%)</title><rect x="48.3845%" y="693" width="0.3020%" height="15" fill="rgb(251,147,42)" fg:x="175278" fg:w="1094"/><text x="48.6345%" y="703.50"></text></g><g><title>_raw_read_lock (69 samples, 0.02%)</title><rect x="48.7648%" y="661" width="0.0190%" height="15" fill="rgb(208,173,10)" fg:x="176656" fg:w="69"/><text x="49.0148%" y="671.50"></text></g><g><title>finish_wait (683 samples, 0.19%)</title><rect x="48.7861%" y="661" width="0.1885%" height="15" fill="rgb(246,225,4)" fg:x="176733" fg:w="683"/><text x="49.0361%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (641 samples, 0.18%)</title><rect x="48.7977%" y="645" width="0.1769%" height="15" fill="rgb(248,102,6)" fg:x="176775" fg:w="641"/><text x="49.0477%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (628 samples, 0.17%)</title><rect x="48.8013%" y="629" width="0.1734%" height="15" fill="rgb(232,6,21)" fg:x="176788" fg:w="628"/><text x="49.0513%" y="639.50"></text></g><g><title>__list_add_valid (38 samples, 0.01%)</title><rect x="48.9989%" y="645" width="0.0105%" height="15" fill="rgb(221,179,22)" fg:x="177504" fg:w="38"/><text x="49.2489%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (2,470 samples, 0.68%)</title><rect x="49.0094%" y="645" width="0.6818%" height="15" fill="rgb(252,50,20)" fg:x="177542" fg:w="2470"/><text x="49.2594%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,412 samples, 0.67%)</title><rect x="49.0254%" y="629" width="0.6658%" height="15" fill="rgb(222,56,38)" fg:x="177600" fg:w="2412"/><text x="49.2754%" y="639.50"></text></g><g><title>prepare_to_wait_event (2,623 samples, 0.72%)</title><rect x="48.9763%" y="661" width="0.7241%" height="15" fill="rgb(206,193,29)" fg:x="177422" fg:w="2623"/><text x="49.2263%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (274 samples, 0.08%)</title><rect x="49.7004%" y="661" width="0.0756%" height="15" fill="rgb(239,192,45)" fg:x="180045" fg:w="274"/><text x="49.9504%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (172 samples, 0.05%)</title><rect x="49.7285%" y="645" width="0.0475%" height="15" fill="rgb(254,18,36)" fg:x="180147" fg:w="172"/><text x="49.9785%" y="655.50"></text></g><g><title>__perf_event_task_sched_out (50 samples, 0.01%)</title><rect x="49.7950%" y="629" width="0.0138%" height="15" fill="rgb(221,127,11)" fg:x="180388" fg:w="50"/><text x="50.0450%" y="639.50"></text></g><g><title>update_curr (60 samples, 0.02%)</title><rect x="49.8364%" y="597" width="0.0166%" height="15" fill="rgb(234,146,35)" fg:x="180538" fg:w="60"/><text x="50.0864%" y="607.50"></text></g><g><title>dequeue_entity (197 samples, 0.05%)</title><rect x="49.8215%" y="613" width="0.0544%" height="15" fill="rgb(254,201,37)" fg:x="180484" fg:w="197"/><text x="50.0715%" y="623.50"></text></g><g><title>update_load_avg (83 samples, 0.02%)</title><rect x="49.8530%" y="597" width="0.0229%" height="15" fill="rgb(211,202,23)" fg:x="180598" fg:w="83"/><text x="50.1030%" y="607.50"></text></g><g><title>dequeue_task_fair (261 samples, 0.07%)</title><rect x="49.8127%" y="629" width="0.0720%" height="15" fill="rgb(237,91,2)" fg:x="180452" fg:w="261"/><text x="50.0627%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (264 samples, 0.07%)</title><rect x="49.8922%" y="613" width="0.0729%" height="15" fill="rgb(226,228,36)" fg:x="180740" fg:w="264"/><text x="50.1422%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (250 samples, 0.07%)</title><rect x="49.8961%" y="597" width="0.0690%" height="15" fill="rgb(213,63,50)" fg:x="180754" fg:w="250"/><text x="50.1461%" y="607.50"></text></g><g><title>native_write_msr (242 samples, 0.07%)</title><rect x="49.8983%" y="581" width="0.0668%" height="15" fill="rgb(235,194,19)" fg:x="180762" fg:w="242"/><text x="50.1483%" y="591.50"></text></g><g><title>finish_task_switch (301 samples, 0.08%)</title><rect x="49.8848%" y="629" width="0.0831%" height="15" fill="rgb(207,204,18)" fg:x="180713" fg:w="301"/><text x="50.1348%" y="639.50"></text></g><g><title>pick_next_task_fair (45 samples, 0.01%)</title><rect x="49.9678%" y="629" width="0.0124%" height="15" fill="rgb(248,8,7)" fg:x="181014" fg:w="45"/><text x="50.2178%" y="639.50"></text></g><g><title>pick_next_task_idle (40 samples, 0.01%)</title><rect x="49.9803%" y="629" width="0.0110%" height="15" fill="rgb(223,145,47)" fg:x="181059" fg:w="40"/><text x="50.2303%" y="639.50"></text></g><g><title>psi_task_change (195 samples, 0.05%)</title><rect x="49.9913%" y="629" width="0.0538%" height="15" fill="rgb(228,84,11)" fg:x="181099" fg:w="195"/><text x="50.2413%" y="639.50"></text></g><g><title>psi_group_change (171 samples, 0.05%)</title><rect x="49.9979%" y="613" width="0.0472%" height="15" fill="rgb(218,76,45)" fg:x="181123" fg:w="171"/><text x="50.2479%" y="623.50"></text></g><g><title>record_times (53 samples, 0.01%)</title><rect x="50.0305%" y="597" width="0.0146%" height="15" fill="rgb(223,80,15)" fg:x="181241" fg:w="53"/><text x="50.2805%" y="607.50"></text></g><g><title>psi_task_switch (47 samples, 0.01%)</title><rect x="50.0451%" y="629" width="0.0130%" height="15" fill="rgb(219,218,33)" fg:x="181294" fg:w="47"/><text x="50.2951%" y="639.50"></text></g><g><title>psi_group_change (40 samples, 0.01%)</title><rect x="50.0471%" y="613" width="0.0110%" height="15" fill="rgb(208,51,11)" fg:x="181301" fg:w="40"/><text x="50.2971%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (4,805 samples, 1.33%)</title><rect x="48.7458%" y="677" width="1.3264%" height="15" fill="rgb(229,165,39)" fg:x="176587" fg:w="4805"/><text x="48.9958%" y="687.50"></text></g><g><title>schedule (1,073 samples, 0.30%)</title><rect x="49.7760%" y="661" width="0.2962%" height="15" fill="rgb(241,100,24)" fg:x="180319" fg:w="1073"/><text x="50.0260%" y="671.50"></text></g><g><title>__schedule (1,065 samples, 0.29%)</title><rect x="49.7782%" y="645" width="0.2940%" height="15" fill="rgb(228,14,23)" fg:x="180327" fg:w="1065"/><text x="50.0282%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (4,837 samples, 1.34%)</title><rect x="48.7422%" y="693" width="1.3352%" height="15" fill="rgb(247,116,52)" fg:x="176574" fg:w="4837"/><text x="48.9922%" y="703.50"></text></g><g><title>prepare_to_wait_event (66 samples, 0.02%)</title><rect x="50.0940%" y="677" width="0.0182%" height="15" fill="rgb(216,149,33)" fg:x="181471" fg:w="66"/><text x="50.3440%" y="687.50"></text></g><g><title>update_curr (38 samples, 0.01%)</title><rect x="50.1462%" y="613" width="0.0105%" height="15" fill="rgb(238,142,29)" fg:x="181660" fg:w="38"/><text x="50.3962%" y="623.50"></text></g><g><title>dequeue_entity (140 samples, 0.04%)</title><rect x="50.1351%" y="629" width="0.0386%" height="15" fill="rgb(224,83,40)" fg:x="181620" fg:w="140"/><text x="50.3851%" y="639.50"></text></g><g><title>update_load_avg (62 samples, 0.02%)</title><rect x="50.1567%" y="613" width="0.0171%" height="15" fill="rgb(234,165,11)" fg:x="181698" fg:w="62"/><text x="50.4067%" y="623.50"></text></g><g><title>dequeue_task_fair (165 samples, 0.05%)</title><rect x="50.1315%" y="645" width="0.0455%" height="15" fill="rgb(215,96,23)" fg:x="181607" fg:w="165"/><text x="50.3815%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (170 samples, 0.05%)</title><rect x="50.1867%" y="629" width="0.0469%" height="15" fill="rgb(233,179,26)" fg:x="181807" fg:w="170"/><text x="50.4367%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (165 samples, 0.05%)</title><rect x="50.1881%" y="613" width="0.0455%" height="15" fill="rgb(225,129,33)" fg:x="181812" fg:w="165"/><text x="50.4381%" y="623.50"></text></g><g><title>native_write_msr (162 samples, 0.04%)</title><rect x="50.1890%" y="597" width="0.0447%" height="15" fill="rgb(237,49,13)" fg:x="181815" fg:w="162"/><text x="50.4390%" y="607.50"></text></g><g><title>finish_task_switch (208 samples, 0.06%)</title><rect x="50.1771%" y="645" width="0.0574%" height="15" fill="rgb(211,3,31)" fg:x="181772" fg:w="208"/><text x="50.4271%" y="655.50"></text></g><g><title>psi_task_change (106 samples, 0.03%)</title><rect x="50.2516%" y="645" width="0.0293%" height="15" fill="rgb(216,152,19)" fg:x="182042" fg:w="106"/><text x="50.5016%" y="655.50"></text></g><g><title>psi_group_change (95 samples, 0.03%)</title><rect x="50.2547%" y="629" width="0.0262%" height="15" fill="rgb(251,121,35)" fg:x="182053" fg:w="95"/><text x="50.5047%" y="639.50"></text></g><g><title>__btrfs_tree_lock (779 samples, 0.22%)</title><rect x="50.0774%" y="693" width="0.2150%" height="15" fill="rgb(210,217,47)" fg:x="181411" fg:w="779"/><text x="50.3274%" y="703.50"></text></g><g><title>schedule (653 samples, 0.18%)</title><rect x="50.1122%" y="677" width="0.1803%" height="15" fill="rgb(244,116,22)" fg:x="181537" fg:w="653"/><text x="50.3622%" y="687.50"></text></g><g><title>__schedule (645 samples, 0.18%)</title><rect x="50.1144%" y="661" width="0.1780%" height="15" fill="rgb(228,17,21)" fg:x="181545" fg:w="645"/><text x="50.3644%" y="671.50"></text></g><g><title>balance_level (40 samples, 0.01%)</title><rect x="50.2930%" y="693" width="0.0110%" height="15" fill="rgb(240,149,34)" fg:x="182192" fg:w="40"/><text x="50.5430%" y="703.50"></text></g><g><title>__schedule (53 samples, 0.01%)</title><rect x="50.3797%" y="645" width="0.0146%" height="15" fill="rgb(208,125,47)" fg:x="182506" fg:w="53"/><text x="50.6297%" y="655.50"></text></g><g><title>_cond_resched (71 samples, 0.02%)</title><rect x="50.3769%" y="661" width="0.0196%" height="15" fill="rgb(249,186,39)" fg:x="182496" fg:w="71"/><text x="50.6269%" y="671.50"></text></g><g><title>_raw_write_lock (138 samples, 0.04%)</title><rect x="50.4037%" y="661" width="0.0381%" height="15" fill="rgb(240,220,33)" fg:x="182593" fg:w="138"/><text x="50.6537%" y="671.50"></text></g><g><title>__list_del_entry_valid (87 samples, 0.02%)</title><rect x="50.4471%" y="645" width="0.0240%" height="15" fill="rgb(243,110,23)" fg:x="182750" fg:w="87"/><text x="50.6971%" y="655.50"></text></g><g><title>finish_wait (1,907 samples, 0.53%)</title><rect x="50.4421%" y="661" width="0.5264%" height="15" fill="rgb(219,163,46)" fg:x="182732" fg:w="1907"/><text x="50.6921%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (1,802 samples, 0.50%)</title><rect x="50.4711%" y="645" width="0.4974%" height="15" fill="rgb(216,126,30)" fg:x="182837" fg:w="1802"/><text x="50.7211%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,711 samples, 0.47%)</title><rect x="50.4962%" y="629" width="0.4723%" height="15" fill="rgb(208,139,11)" fg:x="182928" fg:w="1711"/><text x="50.7462%" y="639.50"></text></g><g><title>__list_add_valid (138 samples, 0.04%)</title><rect x="51.0831%" y="645" width="0.0381%" height="15" fill="rgb(213,118,36)" fg:x="185054" fg:w="138"/><text x="51.3331%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (6,514 samples, 1.80%)</title><rect x="51.1212%" y="645" width="1.7982%" height="15" fill="rgb(226,43,17)" fg:x="185192" fg:w="6514"/><text x="51.3712%" y="655.50">_..</text></g><g><title>native_queued_spin_lock_slowpath (6,172 samples, 1.70%)</title><rect x="51.2156%" y="629" width="1.7037%" height="15" fill="rgb(254,217,4)" fg:x="185534" fg:w="6172"/><text x="51.4656%" y="639.50"></text></g><g><title>_raw_spin_unlock_irqrestore (117 samples, 0.03%)</title><rect x="52.9193%" y="645" width="0.0323%" height="15" fill="rgb(210,134,47)" fg:x="191706" fg:w="117"/><text x="53.1693%" y="655.50"></text></g><g><title>prepare_to_wait_event (7,174 samples, 1.98%)</title><rect x="50.9715%" y="661" width="1.9803%" height="15" fill="rgb(237,24,49)" fg:x="184650" fg:w="7174"/><text x="51.2215%" y="671.50">p..</text></g><g><title>queued_write_lock_slowpath (2,363 samples, 0.65%)</title><rect x="52.9519%" y="661" width="0.6523%" height="15" fill="rgb(251,39,46)" fg:x="191824" fg:w="2363"/><text x="53.2019%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,355 samples, 0.37%)</title><rect x="53.2301%" y="645" width="0.3740%" height="15" fill="rgb(251,220,3)" fg:x="192832" fg:w="1355"/><text x="53.4801%" y="655.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.02%)</title><rect x="53.7132%" y="613" width="0.0199%" height="15" fill="rgb(228,105,12)" fg:x="194582" fg:w="72"/><text x="53.9632%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (177 samples, 0.05%)</title><rect x="53.6875%" y="629" width="0.0489%" height="15" fill="rgb(215,196,1)" fg:x="194489" fg:w="177"/><text x="53.9375%" y="639.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.02%)</title><rect x="53.7414%" y="629" width="0.0160%" height="15" fill="rgb(214,33,39)" fg:x="194684" fg:w="58"/><text x="53.9914%" y="639.50"></text></g><g><title>reweight_entity (39 samples, 0.01%)</title><rect x="53.8236%" y="597" width="0.0108%" height="15" fill="rgb(220,19,52)" fg:x="194982" fg:w="39"/><text x="54.0736%" y="607.50"></text></g><g><title>update_cfs_group (99 samples, 0.03%)</title><rect x="53.8344%" y="597" width="0.0273%" height="15" fill="rgb(221,78,38)" fg:x="195021" fg:w="99"/><text x="54.0844%" y="607.50"></text></g><g><title>__calc_delta (66 samples, 0.02%)</title><rect x="53.8976%" y="581" width="0.0182%" height="15" fill="rgb(253,30,16)" fg:x="195250" fg:w="66"/><text x="54.1476%" y="591.50"></text></g><g><title>cpuacct_charge (51 samples, 0.01%)</title><rect x="53.9222%" y="581" width="0.0141%" height="15" fill="rgb(242,65,0)" fg:x="195339" fg:w="51"/><text x="54.1722%" y="591.50"></text></g><g><title>update_curr (299 samples, 0.08%)</title><rect x="53.8617%" y="597" width="0.0825%" height="15" fill="rgb(235,201,12)" fg:x="195120" fg:w="299"/><text x="54.1117%" y="607.50"></text></g><g><title>__update_load_avg_cfs_rq (84 samples, 0.02%)</title><rect x="53.9785%" y="581" width="0.0232%" height="15" fill="rgb(233,161,9)" fg:x="195543" fg:w="84"/><text x="54.2285%" y="591.50"></text></g><g><title>__update_load_avg_se (109 samples, 0.03%)</title><rect x="54.0017%" y="581" width="0.0301%" height="15" fill="rgb(241,207,41)" fg:x="195627" fg:w="109"/><text x="54.2517%" y="591.50"></text></g><g><title>dequeue_entity (920 samples, 0.25%)</title><rect x="53.7819%" y="613" width="0.2540%" height="15" fill="rgb(212,69,46)" fg:x="194831" fg:w="920"/><text x="54.0319%" y="623.50"></text></g><g><title>update_load_avg (332 samples, 0.09%)</title><rect x="53.9443%" y="597" width="0.0916%" height="15" fill="rgb(239,69,45)" fg:x="195419" fg:w="332"/><text x="54.1943%" y="607.50"></text></g><g><title>dequeue_task_fair (1,100 samples, 0.30%)</title><rect x="53.7576%" y="629" width="0.3036%" height="15" fill="rgb(242,117,48)" fg:x="194743" fg:w="1100"/><text x="54.0076%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (976 samples, 0.27%)</title><rect x="54.1088%" y="613" width="0.2694%" height="15" fill="rgb(228,41,36)" fg:x="196015" fg:w="976"/><text x="54.3588%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (941 samples, 0.26%)</title><rect x="54.1184%" y="597" width="0.2598%" height="15" fill="rgb(212,3,32)" fg:x="196050" fg:w="941"/><text x="54.3684%" y="607.50"></text></g><g><title>native_write_msr (922 samples, 0.25%)</title><rect x="54.1237%" y="581" width="0.2545%" height="15" fill="rgb(233,41,49)" fg:x="196069" fg:w="922"/><text x="54.3737%" y="591.50"></text></g><g><title>finish_task_switch (1,189 samples, 0.33%)</title><rect x="54.0613%" y="629" width="0.3282%" height="15" fill="rgb(252,170,49)" fg:x="195843" fg:w="1189"/><text x="54.3113%" y="639.50"></text></g><g><title>newidle_balance (93 samples, 0.03%)</title><rect x="54.4055%" y="613" width="0.0257%" height="15" fill="rgb(229,53,26)" fg:x="197090" fg:w="93"/><text x="54.6555%" y="623.50"></text></g><g><title>pick_next_task_fair (211 samples, 0.06%)</title><rect x="54.3898%" y="629" width="0.0582%" height="15" fill="rgb(217,157,12)" fg:x="197033" fg:w="211"/><text x="54.6398%" y="639.50"></text></g><g><title>__update_idle_core (154 samples, 0.04%)</title><rect x="54.4536%" y="613" width="0.0425%" height="15" fill="rgb(227,17,9)" fg:x="197264" fg:w="154"/><text x="54.7036%" y="623.50"></text></g><g><title>pick_next_task_idle (175 samples, 0.05%)</title><rect x="54.4480%" y="629" width="0.0483%" height="15" fill="rgb(218,84,12)" fg:x="197244" fg:w="175"/><text x="54.6980%" y="639.50"></text></g><g><title>psi_task_change (835 samples, 0.23%)</title><rect x="54.4963%" y="629" width="0.2305%" height="15" fill="rgb(212,79,24)" fg:x="197419" fg:w="835"/><text x="54.7463%" y="639.50"></text></g><g><title>psi_group_change (731 samples, 0.20%)</title><rect x="54.5251%" y="613" width="0.2018%" height="15" fill="rgb(217,222,37)" fg:x="197523" fg:w="731"/><text x="54.7751%" y="623.50"></text></g><g><title>record_times (204 samples, 0.06%)</title><rect x="54.6705%" y="597" width="0.0563%" height="15" fill="rgb(246,208,8)" fg:x="198050" fg:w="204"/><text x="54.9205%" y="607.50"></text></g><g><title>sched_clock_cpu (124 samples, 0.03%)</title><rect x="54.6926%" y="581" width="0.0342%" height="15" fill="rgb(244,133,10)" fg:x="198130" fg:w="124"/><text x="54.9426%" y="591.50"></text></g><g><title>sched_clock (110 samples, 0.03%)</title><rect x="54.6965%" y="565" width="0.0304%" height="15" fill="rgb(209,219,41)" fg:x="198144" fg:w="110"/><text x="54.9465%" y="575.50"></text></g><g><title>native_sched_clock (102 samples, 0.03%)</title><rect x="54.6987%" y="549" width="0.0282%" height="15" fill="rgb(253,175,45)" fg:x="198152" fg:w="102"/><text x="54.9487%" y="559.50"></text></g><g><title>psi_task_switch (123 samples, 0.03%)</title><rect x="54.7268%" y="629" width="0.0340%" height="15" fill="rgb(235,100,37)" fg:x="198254" fg:w="123"/><text x="54.9768%" y="639.50"></text></g><g><title>psi_group_change (95 samples, 0.03%)</title><rect x="54.7346%" y="613" width="0.0262%" height="15" fill="rgb(225,87,19)" fg:x="198282" fg:w="95"/><text x="54.9846%" y="623.50"></text></g><g><title>put_prev_task_fair (51 samples, 0.01%)</title><rect x="54.7608%" y="629" width="0.0141%" height="15" fill="rgb(217,152,17)" fg:x="198377" fg:w="51"/><text x="55.0108%" y="639.50"></text></g><g><title>put_prev_entity (41 samples, 0.01%)</title><rect x="54.7636%" y="613" width="0.0113%" height="15" fill="rgb(235,72,13)" fg:x="198387" fg:w="41"/><text x="55.0136%" y="623.50"></text></g><g><title>__btrfs_tree_lock (16,262 samples, 4.49%)</title><rect x="50.3126%" y="677" width="4.4890%" height="15" fill="rgb(233,140,18)" fg:x="182263" fg:w="16262"/><text x="50.5626%" y="687.50">__btr..</text></g><g><title>schedule (4,338 samples, 1.20%)</title><rect x="53.6042%" y="661" width="1.1975%" height="15" fill="rgb(207,212,28)" fg:x="194187" fg:w="4338"/><text x="53.8542%" y="671.50"></text></g><g><title>__schedule (4,269 samples, 1.18%)</title><rect x="53.6232%" y="645" width="1.1784%" height="15" fill="rgb(220,130,25)" fg:x="194256" fg:w="4269"/><text x="53.8732%" y="655.50"></text></g><g><title>update_rq_clock (81 samples, 0.02%)</title><rect x="54.7793%" y="629" width="0.0224%" height="15" fill="rgb(205,55,34)" fg:x="198444" fg:w="81"/><text x="55.0293%" y="639.50"></text></g><g><title>sched_clock_cpu (42 samples, 0.01%)</title><rect x="54.7901%" y="613" width="0.0116%" height="15" fill="rgb(237,54,35)" fg:x="198483" fg:w="42"/><text x="55.0401%" y="623.50"></text></g><g><title>sched_clock (40 samples, 0.01%)</title><rect x="54.7906%" y="597" width="0.0110%" height="15" fill="rgb(208,67,23)" fg:x="198485" fg:w="40"/><text x="55.0406%" y="607.50"></text></g><g><title>native_sched_clock (38 samples, 0.01%)</title><rect x="54.7912%" y="581" width="0.0105%" height="15" fill="rgb(206,207,50)" fg:x="198487" fg:w="38"/><text x="55.0412%" y="591.50"></text></g><g><title>btrfs_lock_root_node (16,290 samples, 4.50%)</title><rect x="50.3104%" y="693" width="4.4968%" height="15" fill="rgb(213,211,42)" fg:x="182255" fg:w="16290"/><text x="50.5604%" y="703.50">btrfs..</text></g><g><title>btrfs_set_path_blocking (79 samples, 0.02%)</title><rect x="54.8072%" y="693" width="0.0218%" height="15" fill="rgb(252,197,50)" fg:x="198545" fg:w="79"/><text x="55.0572%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (325 samples, 0.09%)</title><rect x="54.8389%" y="693" width="0.0897%" height="15" fill="rgb(251,211,41)" fg:x="198660" fg:w="325"/><text x="55.0889%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (295 samples, 0.08%)</title><rect x="54.8472%" y="677" width="0.0814%" height="15" fill="rgb(229,211,5)" fg:x="198690" fg:w="295"/><text x="55.0972%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (232 samples, 0.06%)</title><rect x="54.9347%" y="693" width="0.0640%" height="15" fill="rgb(239,36,31)" fg:x="199007" fg:w="232"/><text x="55.1847%" y="703.50"></text></g><g><title>btrfs_buffer_uptodate (47 samples, 0.01%)</title><rect x="55.0123%" y="677" width="0.0130%" height="15" fill="rgb(248,67,31)" fg:x="199288" fg:w="47"/><text x="55.2623%" y="687.50"></text></g><g><title>btrfs_get_64 (69 samples, 0.02%)</title><rect x="55.0252%" y="677" width="0.0190%" height="15" fill="rgb(249,55,44)" fg:x="199335" fg:w="69"/><text x="55.2752%" y="687.50"></text></g><g><title>__radix_tree_lookup (142 samples, 0.04%)</title><rect x="55.0758%" y="661" width="0.0392%" height="15" fill="rgb(216,82,12)" fg:x="199518" fg:w="142"/><text x="55.3258%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (73 samples, 0.02%)</title><rect x="55.1150%" y="661" width="0.0202%" height="15" fill="rgb(242,174,1)" fg:x="199660" fg:w="73"/><text x="55.3650%" y="671.50"></text></g><g><title>mark_page_accessed (58 samples, 0.02%)</title><rect x="55.1191%" y="645" width="0.0160%" height="15" fill="rgb(208,120,29)" fg:x="199675" fg:w="58"/><text x="55.3691%" y="655.50"></text></g><g><title>find_extent_buffer (305 samples, 0.08%)</title><rect x="55.0517%" y="677" width="0.0842%" height="15" fill="rgb(221,105,43)" fg:x="199431" fg:w="305"/><text x="55.3017%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (540 samples, 0.15%)</title><rect x="54.9987%" y="693" width="0.1491%" height="15" fill="rgb(234,124,22)" fg:x="199239" fg:w="540"/><text x="55.2487%" y="703.50"></text></g><g><title>read_extent_buffer (43 samples, 0.01%)</title><rect x="55.1359%" y="677" width="0.0119%" height="15" fill="rgb(212,23,30)" fg:x="199736" fg:w="43"/><text x="55.3859%" y="687.50"></text></g><g><title>__radix_tree_lookup (47 samples, 0.01%)</title><rect x="55.1746%" y="661" width="0.0130%" height="15" fill="rgb(219,122,53)" fg:x="199876" fg:w="47"/><text x="55.4246%" y="671.50"></text></g><g><title>find_extent_buffer (111 samples, 0.03%)</title><rect x="55.1658%" y="677" width="0.0306%" height="15" fill="rgb(248,84,24)" fg:x="199844" fg:w="111"/><text x="55.4158%" y="687.50"></text></g><g><title>reada_for_balance (197 samples, 0.05%)</title><rect x="55.1478%" y="693" width="0.0544%" height="15" fill="rgb(245,115,18)" fg:x="199779" fg:w="197"/><text x="55.3978%" y="703.50"></text></g><g><title>__list_del_entry_valid (91 samples, 0.03%)</title><rect x="55.2328%" y="629" width="0.0251%" height="15" fill="rgb(227,176,51)" fg:x="200087" fg:w="91"/><text x="55.4828%" y="639.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.04%)</title><rect x="55.3891%" y="613" width="0.0389%" height="15" fill="rgb(229,63,42)" fg:x="200653" fg:w="141"/><text x="55.6391%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (94 samples, 0.03%)</title><rect x="55.4020%" y="597" width="0.0259%" height="15" fill="rgb(247,202,24)" fg:x="200700" fg:w="94"/><text x="55.6520%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (131 samples, 0.04%)</title><rect x="55.4280%" y="613" width="0.0362%" height="15" fill="rgb(244,173,20)" fg:x="200794" fg:w="131"/><text x="55.6780%" y="623.50"></text></g><g><title>available_idle_cpu (145 samples, 0.04%)</title><rect x="55.5420%" y="597" width="0.0400%" height="15" fill="rgb(242,81,47)" fg:x="201207" fg:w="145"/><text x="55.7920%" y="607.50"></text></g><g><title>select_task_rq_fair (652 samples, 0.18%)</title><rect x="55.4694%" y="613" width="0.1800%" height="15" fill="rgb(231,185,54)" fg:x="200944" fg:w="652"/><text x="55.7194%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (149 samples, 0.04%)</title><rect x="55.6082%" y="597" width="0.0411%" height="15" fill="rgb(243,55,32)" fg:x="201447" fg:w="149"/><text x="55.8582%" y="607.50"></text></g><g><title>set_task_cpu (70 samples, 0.02%)</title><rect x="55.6494%" y="613" width="0.0193%" height="15" fill="rgb(208,167,19)" fg:x="201596" fg:w="70"/><text x="55.8994%" y="623.50"></text></g><g><title>migrate_task_rq_fair (41 samples, 0.01%)</title><rect x="55.6574%" y="597" width="0.0113%" height="15" fill="rgb(231,72,35)" fg:x="201625" fg:w="41"/><text x="55.9074%" y="607.50"></text></g><g><title>reweight_entity (41 samples, 0.01%)</title><rect x="55.7606%" y="565" width="0.0113%" height="15" fill="rgb(250,173,51)" fg:x="201999" fg:w="41"/><text x="56.0106%" y="575.50"></text></g><g><title>update_cfs_group (41 samples, 0.01%)</title><rect x="55.7719%" y="565" width="0.0113%" height="15" fill="rgb(209,5,22)" fg:x="202040" fg:w="41"/><text x="56.0219%" y="575.50"></text></g><g><title>update_curr (70 samples, 0.02%)</title><rect x="55.7833%" y="565" width="0.0193%" height="15" fill="rgb(250,174,19)" fg:x="202081" fg:w="70"/><text x="56.0333%" y="575.50"></text></g><g><title>__update_load_avg_cfs_rq (38 samples, 0.01%)</title><rect x="55.8225%" y="549" width="0.0105%" height="15" fill="rgb(217,3,49)" fg:x="202223" fg:w="38"/><text x="56.0725%" y="559.50"></text></g><g><title>__update_load_avg_se (43 samples, 0.01%)</title><rect x="55.8329%" y="549" width="0.0119%" height="15" fill="rgb(218,225,5)" fg:x="202261" fg:w="43"/><text x="56.0829%" y="559.50"></text></g><g><title>enqueue_entity (513 samples, 0.14%)</title><rect x="55.7087%" y="581" width="0.1416%" height="15" fill="rgb(236,89,11)" fg:x="201811" fg:w="513"/><text x="55.9587%" y="591.50"></text></g><g><title>update_load_avg (173 samples, 0.05%)</title><rect x="55.8026%" y="565" width="0.0478%" height="15" fill="rgb(206,33,28)" fg:x="202151" fg:w="173"/><text x="56.0526%" y="575.50"></text></g><g><title>enqueue_task_fair (689 samples, 0.19%)</title><rect x="55.6792%" y="597" width="0.1902%" height="15" fill="rgb(241,56,42)" fg:x="201704" fg:w="689"/><text x="55.9292%" y="607.50"></text></g><g><title>ttwu_do_activate (1,431 samples, 0.40%)</title><rect x="55.6687%" y="613" width="0.3950%" height="15" fill="rgb(222,44,11)" fg:x="201666" fg:w="1431"/><text x="55.9187%" y="623.50"></text></g><g><title>psi_task_change (704 samples, 0.19%)</title><rect x="55.8694%" y="597" width="0.1943%" height="15" fill="rgb(234,111,20)" fg:x="202393" fg:w="704"/><text x="56.1194%" y="607.50"></text></g><g><title>psi_group_change (644 samples, 0.18%)</title><rect x="55.8859%" y="581" width="0.1778%" height="15" fill="rgb(237,77,6)" fg:x="202453" fg:w="644"/><text x="56.1359%" y="591.50"></text></g><g><title>record_times (122 samples, 0.03%)</title><rect x="56.0300%" y="565" width="0.0337%" height="15" fill="rgb(235,111,23)" fg:x="202975" fg:w="122"/><text x="56.2800%" y="575.50"></text></g><g><title>sched_clock_cpu (82 samples, 0.02%)</title><rect x="56.0411%" y="549" width="0.0226%" height="15" fill="rgb(251,135,29)" fg:x="203015" fg:w="82"/><text x="56.2911%" y="559.50"></text></g><g><title>sched_clock (67 samples, 0.02%)</title><rect x="56.0452%" y="533" width="0.0185%" height="15" fill="rgb(217,57,1)" fg:x="203030" fg:w="67"/><text x="56.2952%" y="543.50"></text></g><g><title>native_sched_clock (57 samples, 0.02%)</title><rect x="56.0480%" y="517" width="0.0157%" height="15" fill="rgb(249,119,31)" fg:x="203040" fg:w="57"/><text x="56.2980%" y="527.50"></text></g><g><title>ttwu_do_wakeup (118 samples, 0.03%)</title><rect x="56.0637%" y="613" width="0.0326%" height="15" fill="rgb(233,164,33)" fg:x="203097" fg:w="118"/><text x="56.3137%" y="623.50"></text></g><g><title>check_preempt_curr (103 samples, 0.03%)</title><rect x="56.0679%" y="597" width="0.0284%" height="15" fill="rgb(250,217,43)" fg:x="203112" fg:w="103"/><text x="56.3179%" y="607.50"></text></g><g><title>resched_curr (45 samples, 0.01%)</title><rect x="56.0839%" y="581" width="0.0124%" height="15" fill="rgb(232,154,50)" fg:x="203170" fg:w="45"/><text x="56.3339%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (71 samples, 0.02%)</title><rect x="56.0963%" y="613" width="0.0196%" height="15" fill="rgb(227,190,8)" fg:x="203215" fg:w="71"/><text x="56.3463%" y="623.50"></text></g><g><title>__wake_up_common (3,368 samples, 0.93%)</title><rect x="55.2168%" y="661" width="0.9297%" height="15" fill="rgb(209,217,32)" fg:x="200029" fg:w="3368"/><text x="55.4668%" y="671.50"></text></g><g><title>autoremove_wake_function (3,322 samples, 0.92%)</title><rect x="55.2295%" y="645" width="0.9170%" height="15" fill="rgb(243,203,50)" fg:x="200075" fg:w="3322"/><text x="55.4795%" y="655.50"></text></g><g><title>try_to_wake_up (3,216 samples, 0.89%)</title><rect x="55.2588%" y="629" width="0.8878%" height="15" fill="rgb(232,152,27)" fg:x="200181" fg:w="3216"/><text x="55.5088%" y="639.50"></text></g><g><title>update_rq_clock (111 samples, 0.03%)</title><rect x="56.1159%" y="613" width="0.0306%" height="15" fill="rgb(240,34,29)" fg:x="203286" fg:w="111"/><text x="56.3659%" y="623.50"></text></g><g><title>sched_clock_cpu (37 samples, 0.01%)</title><rect x="56.1363%" y="597" width="0.0102%" height="15" fill="rgb(215,185,52)" fg:x="203360" fg:w="37"/><text x="56.3863%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (148 samples, 0.04%)</title><rect x="56.1465%" y="661" width="0.0409%" height="15" fill="rgb(240,89,49)" fg:x="203397" fg:w="148"/><text x="56.3965%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (128 samples, 0.04%)</title><rect x="56.1521%" y="645" width="0.0353%" height="15" fill="rgb(225,12,52)" fg:x="203417" fg:w="128"/><text x="56.4021%" y="655.50"></text></g><g><title>__wake_up_common_lock (3,549 samples, 0.98%)</title><rect x="55.2132%" y="677" width="0.9797%" height="15" fill="rgb(239,128,45)" fg:x="200016" fg:w="3549"/><text x="55.4632%" y="687.50"></text></g><g><title>btrfs_search_slot (27,254 samples, 7.52%)</title><rect x="48.6864%" y="709" width="7.5233%" height="15" fill="rgb(211,78,47)" fg:x="176372" fg:w="27254"/><text x="48.9364%" y="719.50">btrfs_sear..</text></g><g><title>unlock_up (3,650 samples, 1.01%)</title><rect x="55.2022%" y="693" width="1.0076%" height="15" fill="rgb(232,31,21)" fg:x="199976" fg:w="3650"/><text x="55.4522%" y="703.50"></text></g><g><title>btrfs_tree_unlock (61 samples, 0.02%)</title><rect x="56.1929%" y="677" width="0.0168%" height="15" fill="rgb(222,168,14)" fg:x="203565" fg:w="61"/><text x="56.4429%" y="687.50"></text></g><g><title>kmem_cache_alloc (42 samples, 0.01%)</title><rect x="56.2097%" y="709" width="0.0116%" height="15" fill="rgb(209,128,24)" fg:x="203626" fg:w="42"/><text x="56.4597%" y="719.50"></text></g><g><title>btrfs_del_orphan_item (28,795 samples, 7.95%)</title><rect x="48.2917%" y="725" width="7.9487%" height="15" fill="rgb(249,35,13)" fg:x="174942" fg:w="28795"/><text x="48.5417%" y="735.50">btrfs_del_o..</text></g><g><title>kmem_cache_free (69 samples, 0.02%)</title><rect x="56.2213%" y="709" width="0.0190%" height="15" fill="rgb(218,7,2)" fg:x="203668" fg:w="69"/><text x="56.4713%" y="719.50"></text></g><g><title>btrfs_free_block_rsv (49 samples, 0.01%)</title><rect x="56.2465%" y="725" width="0.0135%" height="15" fill="rgb(238,107,27)" fg:x="203759" fg:w="49"/><text x="56.4965%" y="735.50"></text></g><g><title>btrfs_block_rsv_release (47 samples, 0.01%)</title><rect x="56.2470%" y="709" width="0.0130%" height="15" fill="rgb(217,88,38)" fg:x="203761" fg:w="47"/><text x="56.4970%" y="719.50"></text></g><g><title>alloc_extent_state (55 samples, 0.02%)</title><rect x="56.3431%" y="693" width="0.0152%" height="15" fill="rgb(230,207,0)" fg:x="204109" fg:w="55"/><text x="56.5931%" y="703.50"></text></g><g><title>kmem_cache_alloc (46 samples, 0.01%)</title><rect x="56.3456%" y="677" width="0.0127%" height="15" fill="rgb(249,64,54)" fg:x="204118" fg:w="46"/><text x="56.5956%" y="687.50"></text></g><g><title>__wake_up_common_lock (42 samples, 0.01%)</title><rect x="56.3663%" y="677" width="0.0116%" height="15" fill="rgb(231,7,11)" fg:x="204193" fg:w="42"/><text x="56.6163%" y="687.50"></text></g><g><title>kmem_cache_free (49 samples, 0.01%)</title><rect x="56.3903%" y="677" width="0.0135%" height="15" fill="rgb(205,149,21)" fg:x="204280" fg:w="49"/><text x="56.6403%" y="687.50"></text></g><g><title>clear_state_bit (173 samples, 0.05%)</title><rect x="56.3583%" y="693" width="0.0478%" height="15" fill="rgb(215,126,34)" fg:x="204164" fg:w="173"/><text x="56.6083%" y="703.50"></text></g><g><title>__clear_extent_bit (325 samples, 0.09%)</title><rect x="56.3265%" y="709" width="0.0897%" height="15" fill="rgb(241,132,45)" fg:x="204049" fg:w="325"/><text x="56.5765%" y="719.50"></text></g><g><title>_find_next_bit.constprop.0 (799 samples, 0.22%)</title><rect x="56.5032%" y="629" width="0.2206%" height="15" fill="rgb(252,69,32)" fg:x="204689" fg:w="799"/><text x="56.7532%" y="639.50"></text></g><g><title>find_next_zero_bit (43 samples, 0.01%)</title><rect x="56.7240%" y="629" width="0.0119%" height="15" fill="rgb(232,204,19)" fg:x="205489" fg:w="43"/><text x="56.9740%" y="639.50"></text></g><g><title>steal_from_bitmap.part.0 (950 samples, 0.26%)</title><rect x="56.4739%" y="645" width="0.2622%" height="15" fill="rgb(249,15,47)" fg:x="204583" fg:w="950"/><text x="56.7239%" y="655.50"></text></g><g><title>__btrfs_add_free_space (1,013 samples, 0.28%)</title><rect x="56.4618%" y="661" width="0.2796%" height="15" fill="rgb(209,227,23)" fg:x="204539" fg:w="1013"/><text x="56.7118%" y="671.50"></text></g><g><title>btrfs_free_tree_block (1,074 samples, 0.30%)</title><rect x="56.4615%" y="677" width="0.2965%" height="15" fill="rgb(248,92,24)" fg:x="204538" fg:w="1074"/><text x="56.7115%" y="687.50"></text></g><g><title>btrfs_del_leaf (1,115 samples, 0.31%)</title><rect x="56.4609%" y="693" width="0.3078%" height="15" fill="rgb(247,59,2)" fg:x="204536" fg:w="1115"/><text x="56.7109%" y="703.50"></text></g><g><title>btrfs_get_32 (46 samples, 0.01%)</title><rect x="56.7687%" y="693" width="0.0127%" height="15" fill="rgb(221,30,5)" fg:x="205651" fg:w="46"/><text x="57.0187%" y="703.50"></text></g><g><title>btrfs_get_token_32 (402 samples, 0.11%)</title><rect x="56.7814%" y="693" width="0.1110%" height="15" fill="rgb(208,108,53)" fg:x="205697" fg:w="402"/><text x="57.0314%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (60 samples, 0.02%)</title><rect x="56.8758%" y="677" width="0.0166%" height="15" fill="rgb(211,183,26)" fg:x="206039" fg:w="60"/><text x="57.1258%" y="687.50"></text></g><g><title>btrfs_set_token_32 (317 samples, 0.09%)</title><rect x="56.9034%" y="693" width="0.0875%" height="15" fill="rgb(232,132,4)" fg:x="206139" fg:w="317"/><text x="57.1534%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (49 samples, 0.01%)</title><rect x="56.9774%" y="677" width="0.0135%" height="15" fill="rgb(253,128,37)" fg:x="206407" fg:w="49"/><text x="57.2274%" y="687.50"></text></g><g><title>fixup_low_keys (48 samples, 0.01%)</title><rect x="56.9912%" y="693" width="0.0133%" height="15" fill="rgb(221,58,24)" fg:x="206457" fg:w="48"/><text x="57.2412%" y="703.50"></text></g><g><title>leaf_space_used (41 samples, 0.01%)</title><rect x="57.0045%" y="693" width="0.0113%" height="15" fill="rgb(230,54,45)" fg:x="206505" fg:w="41"/><text x="57.2545%" y="703.50"></text></g><g><title>memcpy_extent_buffer (50 samples, 0.01%)</title><rect x="57.0158%" y="693" width="0.0138%" height="15" fill="rgb(254,21,18)" fg:x="206546" fg:w="50"/><text x="57.2658%" y="703.50"></text></g><g><title>copy_pages (76 samples, 0.02%)</title><rect x="57.0417%" y="677" width="0.0210%" height="15" fill="rgb(221,108,0)" fg:x="206640" fg:w="76"/><text x="57.2917%" y="687.50"></text></g><g><title>memmove_extent_buffer (486 samples, 0.13%)</title><rect x="57.0296%" y="693" width="0.1342%" height="15" fill="rgb(206,95,1)" fg:x="206596" fg:w="486"/><text x="57.2796%" y="703.50"></text></g><g><title>memmove (366 samples, 0.10%)</title><rect x="57.0627%" y="677" width="0.1010%" height="15" fill="rgb(237,52,5)" fg:x="206716" fg:w="366"/><text x="57.3127%" y="687.50"></text></g><g><title>__push_leaf_left (85 samples, 0.02%)</title><rect x="57.1651%" y="677" width="0.0235%" height="15" fill="rgb(218,150,34)" fg:x="207087" fg:w="85"/><text x="57.4151%" y="687.50"></text></g><g><title>push_leaf_left (130 samples, 0.04%)</title><rect x="57.1638%" y="693" width="0.0359%" height="15" fill="rgb(235,194,28)" fg:x="207082" fg:w="130"/><text x="57.4138%" y="703.50"></text></g><g><title>push_leaf_right (41 samples, 0.01%)</title><rect x="57.1996%" y="693" width="0.0113%" height="15" fill="rgb(245,92,18)" fg:x="207212" fg:w="41"/><text x="57.4496%" y="703.50"></text></g><g><title>btrfs_del_items (2,891 samples, 0.80%)</title><rect x="56.4173%" y="709" width="0.7980%" height="15" fill="rgb(253,203,53)" fg:x="204378" fg:w="2891"/><text x="56.6673%" y="719.50"></text></g><g><title>alloc_extent_map (130 samples, 0.04%)</title><rect x="57.2267%" y="693" width="0.0359%" height="15" fill="rgb(249,185,47)" fg:x="207310" fg:w="130"/><text x="57.4767%" y="703.50"></text></g><g><title>kmem_cache_alloc (93 samples, 0.03%)</title><rect x="57.2369%" y="677" width="0.0257%" height="15" fill="rgb(252,194,52)" fg:x="207347" fg:w="93"/><text x="57.4869%" y="687.50"></text></g><g><title>kmem_cache_free (64 samples, 0.02%)</title><rect x="57.2689%" y="693" width="0.0177%" height="15" fill="rgb(210,53,36)" fg:x="207463" fg:w="64"/><text x="57.5189%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (261 samples, 0.07%)</title><rect x="57.2154%" y="709" width="0.0720%" height="15" fill="rgb(237,37,25)" fg:x="207269" fg:w="261"/><text x="57.4654%" y="719.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="57.3559%" y="613" width="0.0135%" height="15" fill="rgb(242,116,27)" fg:x="207778" fg:w="49"/><text x="57.6059%" y="623.50"></text></g><g><title>select_task_rq_fair (168 samples, 0.05%)</title><rect x="57.3785%" y="613" width="0.0464%" height="15" fill="rgb(213,185,26)" fg:x="207860" fg:w="168"/><text x="57.6285%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (56 samples, 0.02%)</title><rect x="57.4094%" y="597" width="0.0155%" height="15" fill="rgb(225,204,8)" fg:x="207972" fg:w="56"/><text x="57.6594%" y="607.50"></text></g><g><title>enqueue_entity (194 samples, 0.05%)</title><rect x="57.4450%" y="581" width="0.0536%" height="15" fill="rgb(254,111,37)" fg:x="208101" fg:w="194"/><text x="57.6950%" y="591.50"></text></g><g><title>update_load_avg (66 samples, 0.02%)</title><rect x="57.4804%" y="565" width="0.0182%" height="15" fill="rgb(242,35,9)" fg:x="208229" fg:w="66"/><text x="57.7304%" y="575.50"></text></g><g><title>enqueue_task_fair (235 samples, 0.06%)</title><rect x="57.4351%" y="597" width="0.0649%" height="15" fill="rgb(232,138,49)" fg:x="208065" fg:w="235"/><text x="57.6851%" y="607.50"></text></g><g><title>ttwu_do_activate (487 samples, 0.13%)</title><rect x="57.4293%" y="613" width="0.1344%" height="15" fill="rgb(247,56,4)" fg:x="208044" fg:w="487"/><text x="57.6793%" y="623.50"></text></g><g><title>psi_task_change (231 samples, 0.06%)</title><rect x="57.5000%" y="597" width="0.0638%" height="15" fill="rgb(226,179,17)" fg:x="208300" fg:w="231"/><text x="57.7500%" y="607.50"></text></g><g><title>psi_group_change (216 samples, 0.06%)</title><rect x="57.5041%" y="581" width="0.0596%" height="15" fill="rgb(216,163,45)" fg:x="208315" fg:w="216"/><text x="57.7541%" y="591.50"></text></g><g><title>ttwu_do_wakeup (43 samples, 0.01%)</title><rect x="57.5637%" y="613" width="0.0119%" height="15" fill="rgb(211,157,3)" fg:x="208531" fg:w="43"/><text x="57.8137%" y="623.50"></text></g><g><title>check_preempt_curr (38 samples, 0.01%)</title><rect x="57.5651%" y="597" width="0.0105%" height="15" fill="rgb(234,44,20)" fg:x="208536" fg:w="38"/><text x="57.8151%" y="607.50"></text></g><g><title>__wake_up_common (1,086 samples, 0.30%)</title><rect x="57.2976%" y="661" width="0.2998%" height="15" fill="rgb(254,138,23)" fg:x="207567" fg:w="1086"/><text x="57.5476%" y="671.50"></text></g><g><title>autoremove_wake_function (1,058 samples, 0.29%)</title><rect x="57.3054%" y="645" width="0.2921%" height="15" fill="rgb(206,119,39)" fg:x="207595" fg:w="1058"/><text x="57.5554%" y="655.50"></text></g><g><title>try_to_wake_up (1,038 samples, 0.29%)</title><rect x="57.3109%" y="629" width="0.2865%" height="15" fill="rgb(231,105,52)" fg:x="207615" fg:w="1038"/><text x="57.5609%" y="639.50"></text></g><g><title>update_rq_clock (45 samples, 0.01%)</title><rect x="57.5850%" y="613" width="0.0124%" height="15" fill="rgb(250,20,5)" fg:x="208608" fg:w="45"/><text x="57.8350%" y="623.50"></text></g><g><title>__wake_up_common_lock (1,107 samples, 0.31%)</title><rect x="57.2965%" y="677" width="0.3056%" height="15" fill="rgb(215,198,30)" fg:x="207563" fg:w="1107"/><text x="57.5465%" y="687.50"></text></g><g><title>btrfs_tree_unlock (48 samples, 0.01%)</title><rect x="57.6021%" y="677" width="0.0133%" height="15" fill="rgb(246,142,8)" fg:x="208670" fg:w="48"/><text x="57.8521%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (65 samples, 0.02%)</title><rect x="57.6167%" y="677" width="0.0179%" height="15" fill="rgb(243,26,38)" fg:x="208723" fg:w="65"/><text x="57.8667%" y="687.50"></text></g><g><title>btrfs_free_path (1,286 samples, 0.35%)</title><rect x="57.2874%" y="709" width="0.3550%" height="15" fill="rgb(205,133,28)" fg:x="207530" fg:w="1286"/><text x="57.5374%" y="719.50"></text></g><g><title>btrfs_release_path (1,279 samples, 0.35%)</title><rect x="57.2894%" y="693" width="0.3531%" height="15" fill="rgb(212,34,0)" fg:x="207537" fg:w="1279"/><text x="57.5394%" y="703.50"></text></g><g><title>alloc_extent_state (115 samples, 0.03%)</title><rect x="57.6830%" y="661" width="0.0317%" height="15" fill="rgb(251,226,22)" fg:x="208963" fg:w="115"/><text x="57.9330%" y="671.50"></text></g><g><title>kmem_cache_alloc (94 samples, 0.03%)</title><rect x="57.6888%" y="645" width="0.0259%" height="15" fill="rgb(252,119,9)" fg:x="208984" fg:w="94"/><text x="57.9388%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (49 samples, 0.01%)</title><rect x="57.7012%" y="629" width="0.0135%" height="15" fill="rgb(213,150,50)" fg:x="209029" fg:w="49"/><text x="57.9512%" y="639.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (265 samples, 0.07%)</title><rect x="57.6593%" y="709" width="0.0732%" height="15" fill="rgb(212,24,39)" fg:x="208877" fg:w="265"/><text x="57.9093%" y="719.50"></text></g><g><title>clear_extent_bit (238 samples, 0.07%)</title><rect x="57.6667%" y="693" width="0.0657%" height="15" fill="rgb(213,46,39)" fg:x="208904" fg:w="238"/><text x="57.9167%" y="703.50"></text></g><g><title>__clear_extent_bit (236 samples, 0.07%)</title><rect x="57.6673%" y="677" width="0.0651%" height="15" fill="rgb(239,106,12)" fg:x="208906" fg:w="236"/><text x="57.9173%" y="687.50"></text></g><g><title>kmem_cache_free (49 samples, 0.01%)</title><rect x="57.7189%" y="661" width="0.0135%" height="15" fill="rgb(249,229,21)" fg:x="209093" fg:w="49"/><text x="57.9689%" y="671.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (69 samples, 0.02%)</title><rect x="57.7324%" y="709" width="0.0190%" height="15" fill="rgb(212,158,3)" fg:x="209142" fg:w="69"/><text x="57.9824%" y="719.50"></text></g><g><title>btrfs_kill_delayed_inode_items (79 samples, 0.02%)</title><rect x="57.7515%" y="709" width="0.0218%" height="15" fill="rgb(253,26,48)" fg:x="209211" fg:w="79"/><text x="58.0015%" y="719.50"></text></g><g><title>_raw_read_lock (57 samples, 0.02%)</title><rect x="57.8597%" y="661" width="0.0157%" height="15" fill="rgb(238,178,20)" fg:x="209603" fg:w="57"/><text x="58.1097%" y="671.50"></text></g><g><title>finish_wait (621 samples, 0.17%)</title><rect x="57.8773%" y="661" width="0.1714%" height="15" fill="rgb(208,86,15)" fg:x="209667" fg:w="621"/><text x="58.1273%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (595 samples, 0.16%)</title><rect x="57.8845%" y="645" width="0.1642%" height="15" fill="rgb(239,42,53)" fg:x="209693" fg:w="595"/><text x="58.1345%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (580 samples, 0.16%)</title><rect x="57.8886%" y="629" width="0.1601%" height="15" fill="rgb(245,226,8)" fg:x="209708" fg:w="580"/><text x="58.1386%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (1,877 samples, 0.52%)</title><rect x="58.0755%" y="645" width="0.5181%" height="15" fill="rgb(216,176,32)" fg:x="210385" fg:w="1877"/><text x="58.3255%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,817 samples, 0.50%)</title><rect x="58.0921%" y="629" width="0.5016%" height="15" fill="rgb(231,186,21)" fg:x="210445" fg:w="1817"/><text x="58.3421%" y="639.50"></text></g><g><title>prepare_to_wait_event (1,989 samples, 0.55%)</title><rect x="58.0490%" y="661" width="0.5491%" height="15" fill="rgb(205,95,49)" fg:x="210289" fg:w="1989"/><text x="58.2990%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (316 samples, 0.09%)</title><rect x="58.5981%" y="661" width="0.0872%" height="15" fill="rgb(217,145,8)" fg:x="212278" fg:w="316"/><text x="58.8481%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (198 samples, 0.05%)</title><rect x="58.6307%" y="645" width="0.0547%" height="15" fill="rgb(239,144,48)" fg:x="212396" fg:w="198"/><text x="58.8807%" y="655.50"></text></g><g><title>update_curr (64 samples, 0.02%)</title><rect x="58.7356%" y="597" width="0.0177%" height="15" fill="rgb(214,189,23)" fg:x="212776" fg:w="64"/><text x="58.9856%" y="607.50"></text></g><g><title>dequeue_entity (166 samples, 0.05%)</title><rect x="58.7253%" y="613" width="0.0458%" height="15" fill="rgb(229,157,17)" fg:x="212739" fg:w="166"/><text x="58.9753%" y="623.50"></text></g><g><title>update_load_avg (65 samples, 0.02%)</title><rect x="58.7532%" y="597" width="0.0179%" height="15" fill="rgb(230,5,48)" fg:x="212840" fg:w="65"/><text x="59.0032%" y="607.50"></text></g><g><title>dequeue_task_fair (218 samples, 0.06%)</title><rect x="58.7173%" y="629" width="0.0602%" height="15" fill="rgb(224,156,48)" fg:x="212710" fg:w="218"/><text x="58.9673%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (203 samples, 0.06%)</title><rect x="58.7852%" y="613" width="0.0560%" height="15" fill="rgb(223,14,29)" fg:x="212956" fg:w="203"/><text x="59.0352%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (198 samples, 0.05%)</title><rect x="58.7866%" y="597" width="0.0547%" height="15" fill="rgb(229,96,36)" fg:x="212961" fg:w="198"/><text x="59.0366%" y="607.50"></text></g><g><title>native_write_msr (194 samples, 0.05%)</title><rect x="58.7877%" y="581" width="0.0536%" height="15" fill="rgb(231,102,53)" fg:x="212965" fg:w="194"/><text x="59.0377%" y="591.50"></text></g><g><title>finish_task_switch (247 samples, 0.07%)</title><rect x="58.7775%" y="629" width="0.0682%" height="15" fill="rgb(210,77,38)" fg:x="212928" fg:w="247"/><text x="59.0275%" y="639.50"></text></g><g><title>pick_next_task_fair (42 samples, 0.01%)</title><rect x="58.8457%" y="629" width="0.0116%" height="15" fill="rgb(235,131,6)" fg:x="213175" fg:w="42"/><text x="59.0957%" y="639.50"></text></g><g><title>psi_task_change (149 samples, 0.04%)</title><rect x="58.8656%" y="629" width="0.0411%" height="15" fill="rgb(252,55,38)" fg:x="213247" fg:w="149"/><text x="59.1156%" y="639.50"></text></g><g><title>psi_group_change (136 samples, 0.04%)</title><rect x="58.8692%" y="613" width="0.0375%" height="15" fill="rgb(246,38,14)" fg:x="213260" fg:w="136"/><text x="59.1192%" y="623.50"></text></g><g><title>record_times (40 samples, 0.01%)</title><rect x="58.8957%" y="597" width="0.0110%" height="15" fill="rgb(242,27,5)" fg:x="213356" fg:w="40"/><text x="59.1457%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (3,914 samples, 1.08%)</title><rect x="57.8428%" y="677" width="1.0804%" height="15" fill="rgb(228,65,35)" fg:x="209542" fg:w="3914"/><text x="58.0928%" y="687.50"></text></g><g><title>schedule (862 samples, 0.24%)</title><rect x="58.6853%" y="661" width="0.2379%" height="15" fill="rgb(245,93,11)" fg:x="212594" fg:w="862"/><text x="58.9353%" y="671.50"></text></g><g><title>__schedule (849 samples, 0.23%)</title><rect x="58.6889%" y="645" width="0.2344%" height="15" fill="rgb(213,1,31)" fg:x="212607" fg:w="849"/><text x="58.9389%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (3,973 samples, 1.10%)</title><rect x="57.8390%" y="693" width="1.0967%" height="15" fill="rgb(237,205,14)" fg:x="209528" fg:w="3973"/><text x="58.0890%" y="703.50"></text></g><g><title>btrfs_root_node (45 samples, 0.01%)</title><rect x="58.9233%" y="677" width="0.0124%" height="15" fill="rgb(232,118,45)" fg:x="213456" fg:w="45"/><text x="59.1733%" y="687.50"></text></g><g><title>prepare_to_wait_event (64 samples, 0.02%)</title><rect x="58.9442%" y="677" width="0.0177%" height="15" fill="rgb(218,5,6)" fg:x="213532" fg:w="64"/><text x="59.1942%" y="687.50"></text></g><g><title>update_curr (41 samples, 0.01%)</title><rect x="58.9972%" y="613" width="0.0113%" height="15" fill="rgb(251,87,51)" fg:x="213724" fg:w="41"/><text x="59.2472%" y="623.50"></text></g><g><title>dequeue_entity (114 samples, 0.03%)</title><rect x="58.9887%" y="629" width="0.0315%" height="15" fill="rgb(207,225,20)" fg:x="213693" fg:w="114"/><text x="59.2387%" y="639.50"></text></g><g><title>update_load_avg (42 samples, 0.01%)</title><rect x="59.0086%" y="613" width="0.0116%" height="15" fill="rgb(222,78,54)" fg:x="213765" fg:w="42"/><text x="59.2586%" y="623.50"></text></g><g><title>dequeue_task_fair (144 samples, 0.04%)</title><rect x="58.9868%" y="645" width="0.0398%" height="15" fill="rgb(232,85,16)" fg:x="213686" fg:w="144"/><text x="59.2368%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.04%)</title><rect x="59.0326%" y="629" width="0.0444%" height="15" fill="rgb(244,25,33)" fg:x="213852" fg:w="161"/><text x="59.2826%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (157 samples, 0.04%)</title><rect x="59.0337%" y="613" width="0.0433%" height="15" fill="rgb(233,24,36)" fg:x="213856" fg:w="157"/><text x="59.2837%" y="623.50"></text></g><g><title>native_write_msr (154 samples, 0.04%)</title><rect x="59.0345%" y="597" width="0.0425%" height="15" fill="rgb(253,49,54)" fg:x="213859" fg:w="154"/><text x="59.2845%" y="607.50"></text></g><g><title>finish_task_switch (190 samples, 0.05%)</title><rect x="59.0265%" y="645" width="0.0524%" height="15" fill="rgb(245,12,22)" fg:x="213830" fg:w="190"/><text x="59.2765%" y="655.50"></text></g><g><title>pick_next_task_fair (42 samples, 0.01%)</title><rect x="59.0790%" y="645" width="0.0116%" height="15" fill="rgb(253,141,28)" fg:x="214020" fg:w="42"/><text x="59.3290%" y="655.50"></text></g><g><title>psi_task_change (117 samples, 0.03%)</title><rect x="59.0977%" y="645" width="0.0323%" height="15" fill="rgb(225,207,27)" fg:x="214088" fg:w="117"/><text x="59.3477%" y="655.50"></text></g><g><title>psi_group_change (98 samples, 0.03%)</title><rect x="59.1030%" y="629" width="0.0271%" height="15" fill="rgb(220,84,2)" fg:x="214107" fg:w="98"/><text x="59.3530%" y="639.50"></text></g><g><title>__btrfs_tree_lock (748 samples, 0.21%)</title><rect x="58.9357%" y="693" width="0.2065%" height="15" fill="rgb(224,37,37)" fg:x="213501" fg:w="748"/><text x="59.1857%" y="703.50"></text></g><g><title>schedule (653 samples, 0.18%)</title><rect x="58.9619%" y="677" width="0.1803%" height="15" fill="rgb(220,143,18)" fg:x="213596" fg:w="653"/><text x="59.2119%" y="687.50"></text></g><g><title>__schedule (640 samples, 0.18%)</title><rect x="58.9655%" y="661" width="0.1767%" height="15" fill="rgb(210,88,33)" fg:x="213609" fg:w="640"/><text x="59.2155%" y="671.50"></text></g><g><title>balance_level (46 samples, 0.01%)</title><rect x="59.1430%" y="693" width="0.0127%" height="15" fill="rgb(219,87,51)" fg:x="214252" fg:w="46"/><text x="59.3930%" y="703.50"></text></g><g><title>_cond_resched (42 samples, 0.01%)</title><rect x="59.2051%" y="661" width="0.0116%" height="15" fill="rgb(211,7,35)" fg:x="214477" fg:w="42"/><text x="59.4551%" y="671.50"></text></g><g><title>_raw_write_lock (81 samples, 0.02%)</title><rect x="59.2200%" y="661" width="0.0224%" height="15" fill="rgb(232,77,2)" fg:x="214531" fg:w="81"/><text x="59.4700%" y="671.50"></text></g><g><title>__list_del_entry_valid (56 samples, 0.02%)</title><rect x="59.2476%" y="645" width="0.0155%" height="15" fill="rgb(249,94,25)" fg:x="214631" fg:w="56"/><text x="59.4976%" y="655.50"></text></g><g><title>finish_wait (1,299 samples, 0.36%)</title><rect x="59.2424%" y="661" width="0.3586%" height="15" fill="rgb(215,112,2)" fg:x="214612" fg:w="1299"/><text x="59.4924%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (1,224 samples, 0.34%)</title><rect x="59.2631%" y="645" width="0.3379%" height="15" fill="rgb(226,115,48)" fg:x="214687" fg:w="1224"/><text x="59.5131%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,159 samples, 0.32%)</title><rect x="59.2810%" y="629" width="0.3199%" height="15" fill="rgb(249,196,10)" fg:x="214752" fg:w="1159"/><text x="59.5310%" y="639.50"></text></g><g><title>__list_add_valid (96 samples, 0.03%)</title><rect x="59.6829%" y="645" width="0.0265%" height="15" fill="rgb(237,109,14)" fg:x="216208" fg:w="96"/><text x="59.9329%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (4,381 samples, 1.21%)</title><rect x="59.7094%" y="645" width="1.2093%" height="15" fill="rgb(217,103,53)" fg:x="216304" fg:w="4381"/><text x="59.9594%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,157 samples, 1.15%)</title><rect x="59.7713%" y="629" width="1.1475%" height="15" fill="rgb(244,137,9)" fg:x="216528" fg:w="4157"/><text x="60.0213%" y="639.50"></text></g><g><title>prepare_to_wait_event (4,824 samples, 1.33%)</title><rect x="59.6048%" y="661" width="1.3316%" height="15" fill="rgb(227,201,3)" fg:x="215925" fg:w="4824"/><text x="59.8548%" y="671.50"></text></g><g><title>_raw_spin_unlock_irqrestore (64 samples, 0.02%)</title><rect x="60.9188%" y="645" width="0.0177%" height="15" fill="rgb(243,94,6)" fg:x="220685" fg:w="64"/><text x="61.1688%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (1,685 samples, 0.47%)</title><rect x="60.9365%" y="661" width="0.4651%" height="15" fill="rgb(235,118,5)" fg:x="220749" fg:w="1685"/><text x="61.1865%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (931 samples, 0.26%)</title><rect x="61.1446%" y="645" width="0.2570%" height="15" fill="rgb(247,10,30)" fg:x="221503" fg:w="931"/><text x="61.3946%" y="655.50"></text></g><g><title>_raw_spin_lock (39 samples, 0.01%)</title><rect x="61.4794%" y="613" width="0.0108%" height="15" fill="rgb(205,26,28)" fg:x="222716" fg:w="39"/><text x="61.7294%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (106 samples, 0.03%)</title><rect x="61.4637%" y="629" width="0.0293%" height="15" fill="rgb(206,99,35)" fg:x="222659" fg:w="106"/><text x="61.7137%" y="639.50"></text></g><g><title>update_cfs_group (67 samples, 0.02%)</title><rect x="61.5645%" y="597" width="0.0185%" height="15" fill="rgb(238,130,40)" fg:x="223024" fg:w="67"/><text x="61.8145%" y="607.50"></text></g><g><title>__calc_delta (38 samples, 0.01%)</title><rect x="61.6078%" y="581" width="0.0105%" height="15" fill="rgb(224,126,31)" fg:x="223181" fg:w="38"/><text x="61.8578%" y="591.50"></text></g><g><title>cpuacct_charge (45 samples, 0.01%)</title><rect x="61.6219%" y="581" width="0.0124%" height="15" fill="rgb(254,105,17)" fg:x="223232" fg:w="45"/><text x="61.8719%" y="591.50"></text></g><g><title>update_curr (204 samples, 0.06%)</title><rect x="61.5829%" y="597" width="0.0563%" height="15" fill="rgb(216,87,36)" fg:x="223091" fg:w="204"/><text x="61.8329%" y="607.50"></text></g><g><title>__update_load_avg_cfs_rq (57 samples, 0.02%)</title><rect x="61.6597%" y="581" width="0.0157%" height="15" fill="rgb(240,21,12)" fg:x="223369" fg:w="57"/><text x="61.9097%" y="591.50"></text></g><g><title>__update_load_avg_se (76 samples, 0.02%)</title><rect x="61.6754%" y="581" width="0.0210%" height="15" fill="rgb(245,192,34)" fg:x="223426" fg:w="76"/><text x="61.9254%" y="591.50"></text></g><g><title>dequeue_entity (624 samples, 0.17%)</title><rect x="61.5266%" y="613" width="0.1723%" height="15" fill="rgb(226,100,49)" fg:x="222887" fg:w="624"/><text x="61.7766%" y="623.50"></text></g><g><title>update_load_avg (216 samples, 0.06%)</title><rect x="61.6393%" y="597" width="0.0596%" height="15" fill="rgb(245,188,27)" fg:x="223295" fg:w="216"/><text x="61.8893%" y="607.50"></text></g><g><title>dequeue_task_fair (758 samples, 0.21%)</title><rect x="61.5073%" y="629" width="0.2092%" height="15" fill="rgb(212,170,8)" fg:x="222817" fg:w="758"/><text x="61.7573%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (738 samples, 0.20%)</title><rect x="61.7571%" y="613" width="0.2037%" height="15" fill="rgb(217,113,29)" fg:x="223722" fg:w="738"/><text x="62.0071%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (710 samples, 0.20%)</title><rect x="61.7649%" y="597" width="0.1960%" height="15" fill="rgb(237,30,3)" fg:x="223750" fg:w="710"/><text x="62.0149%" y="607.50"></text></g><g><title>native_write_msr (694 samples, 0.19%)</title><rect x="61.7693%" y="581" width="0.1916%" height="15" fill="rgb(227,19,28)" fg:x="223766" fg:w="694"/><text x="62.0193%" y="591.50"></text></g><g><title>finish_task_switch (902 samples, 0.25%)</title><rect x="61.7166%" y="629" width="0.2490%" height="15" fill="rgb(239,172,45)" fg:x="223575" fg:w="902"/><text x="61.9666%" y="639.50"></text></g><g><title>newidle_balance (62 samples, 0.02%)</title><rect x="61.9755%" y="613" width="0.0171%" height="15" fill="rgb(254,55,39)" fg:x="224513" fg:w="62"/><text x="62.2255%" y="623.50"></text></g><g><title>pick_next_task_fair (139 samples, 0.04%)</title><rect x="61.9661%" y="629" width="0.0384%" height="15" fill="rgb(249,208,12)" fg:x="224479" fg:w="139"/><text x="62.2161%" y="639.50"></text></g><g><title>pick_next_task_idle (122 samples, 0.03%)</title><rect x="62.0045%" y="629" width="0.0337%" height="15" fill="rgb(240,52,13)" fg:x="224618" fg:w="122"/><text x="62.2545%" y="639.50"></text></g><g><title>__update_idle_core (101 samples, 0.03%)</title><rect x="62.0103%" y="613" width="0.0279%" height="15" fill="rgb(252,149,13)" fg:x="224639" fg:w="101"/><text x="62.2603%" y="623.50"></text></g><g><title>psi_task_change (630 samples, 0.17%)</title><rect x="62.0381%" y="629" width="0.1739%" height="15" fill="rgb(232,81,48)" fg:x="224740" fg:w="630"/><text x="62.2881%" y="639.50"></text></g><g><title>psi_group_change (549 samples, 0.15%)</title><rect x="62.0605%" y="613" width="0.1515%" height="15" fill="rgb(222,144,2)" fg:x="224821" fg:w="549"/><text x="62.3105%" y="623.50"></text></g><g><title>record_times (157 samples, 0.04%)</title><rect x="62.1687%" y="597" width="0.0433%" height="15" fill="rgb(216,81,32)" fg:x="225213" fg:w="157"/><text x="62.4187%" y="607.50"></text></g><g><title>sched_clock_cpu (109 samples, 0.03%)</title><rect x="62.1820%" y="581" width="0.0301%" height="15" fill="rgb(244,78,51)" fg:x="225261" fg:w="109"/><text x="62.4320%" y="591.50"></text></g><g><title>sched_clock (91 samples, 0.03%)</title><rect x="62.1869%" y="565" width="0.0251%" height="15" fill="rgb(217,66,21)" fg:x="225279" fg:w="91"/><text x="62.4369%" y="575.50"></text></g><g><title>native_sched_clock (88 samples, 0.02%)</title><rect x="62.1878%" y="549" width="0.0243%" height="15" fill="rgb(247,101,42)" fg:x="225282" fg:w="88"/><text x="62.4378%" y="559.50"></text></g><g><title>psi_task_switch (87 samples, 0.02%)</title><rect x="62.2121%" y="629" width="0.0240%" height="15" fill="rgb(227,81,39)" fg:x="225370" fg:w="87"/><text x="62.4621%" y="639.50"></text></g><g><title>psi_group_change (71 samples, 0.02%)</title><rect x="62.2165%" y="613" width="0.0196%" height="15" fill="rgb(220,223,44)" fg:x="225386" fg:w="71"/><text x="62.4665%" y="623.50"></text></g><g><title>__btrfs_tree_lock (11,259 samples, 3.11%)</title><rect x="59.1607%" y="677" width="3.1080%" height="15" fill="rgb(205,218,2)" fg:x="214316" fg:w="11259"/><text x="59.4107%" y="687.50">__b..</text></g><g><title>schedule (3,141 samples, 0.87%)</title><rect x="61.4016%" y="661" width="0.8671%" height="15" fill="rgb(212,207,28)" fg:x="222434" fg:w="3141"/><text x="61.6516%" y="671.50"></text></g><g><title>__schedule (3,099 samples, 0.86%)</title><rect x="61.4132%" y="645" width="0.8555%" height="15" fill="rgb(224,12,41)" fg:x="222476" fg:w="3099"/><text x="61.6632%" y="655.50"></text></g><g><title>update_rq_clock (73 samples, 0.02%)</title><rect x="62.2485%" y="629" width="0.0202%" height="15" fill="rgb(216,118,12)" fg:x="225502" fg:w="73"/><text x="62.4985%" y="639.50"></text></g><g><title>sched_clock_cpu (38 samples, 0.01%)</title><rect x="62.2582%" y="613" width="0.0105%" height="15" fill="rgb(252,97,46)" fg:x="225537" fg:w="38"/><text x="62.5082%" y="623.50"></text></g><g><title>btrfs_lock_root_node (11,281 samples, 3.11%)</title><rect x="59.1596%" y="693" width="3.1141%" height="15" fill="rgb(244,206,19)" fg:x="214312" fg:w="11281"/><text x="59.4096%" y="703.50">btr..</text></g><g><title>btrfs_set_path_blocking (87 samples, 0.02%)</title><rect x="62.2736%" y="693" width="0.0240%" height="15" fill="rgb(231,84,31)" fg:x="225593" fg:w="87"/><text x="62.5236%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (707 samples, 0.20%)</title><rect x="62.3062%" y="693" width="0.1952%" height="15" fill="rgb(244,133,0)" fg:x="225711" fg:w="707"/><text x="62.5562%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (672 samples, 0.19%)</title><rect x="62.3158%" y="677" width="0.1855%" height="15" fill="rgb(223,15,50)" fg:x="225746" fg:w="672"/><text x="62.5658%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (245 samples, 0.07%)</title><rect x="62.5082%" y="693" width="0.0676%" height="15" fill="rgb(250,118,49)" fg:x="226443" fg:w="245"/><text x="62.7582%" y="703.50"></text></g><g><title>btrfs_get_64 (40 samples, 0.01%)</title><rect x="62.6007%" y="677" width="0.0110%" height="15" fill="rgb(248,25,38)" fg:x="226778" fg:w="40"/><text x="62.8507%" y="687.50"></text></g><g><title>__radix_tree_lookup (161 samples, 0.04%)</title><rect x="62.6366%" y="661" width="0.0444%" height="15" fill="rgb(215,70,14)" fg:x="226908" fg:w="161"/><text x="62.8866%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (52 samples, 0.01%)</title><rect x="62.6811%" y="661" width="0.0144%" height="15" fill="rgb(215,28,15)" fg:x="227069" fg:w="52"/><text x="62.9311%" y="671.50"></text></g><g><title>mark_page_accessed (40 samples, 0.01%)</title><rect x="62.6844%" y="645" width="0.0110%" height="15" fill="rgb(243,6,28)" fg:x="227081" fg:w="40"/><text x="62.9344%" y="655.50"></text></g><g><title>find_extent_buffer (280 samples, 0.08%)</title><rect x="62.6187%" y="677" width="0.0773%" height="15" fill="rgb(222,130,1)" fg:x="226843" fg:w="280"/><text x="62.8687%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (468 samples, 0.13%)</title><rect x="62.5759%" y="693" width="0.1292%" height="15" fill="rgb(236,166,44)" fg:x="226688" fg:w="468"/><text x="62.8259%" y="703.50"></text></g><g><title>__radix_tree_lookup (59 samples, 0.02%)</title><rect x="62.7255%" y="661" width="0.0163%" height="15" fill="rgb(221,108,14)" fg:x="227230" fg:w="59"/><text x="62.9755%" y="671.50"></text></g><g><title>find_extent_buffer (118 samples, 0.03%)</title><rect x="62.7169%" y="677" width="0.0326%" height="15" fill="rgb(252,3,45)" fg:x="227199" fg:w="118"/><text x="62.9669%" y="687.50"></text></g><g><title>reada_for_balance (189 samples, 0.05%)</title><rect x="62.7051%" y="693" width="0.0522%" height="15" fill="rgb(237,68,30)" fg:x="227156" fg:w="189"/><text x="62.9551%" y="703.50"></text></g><g><title>__list_del_entry_valid (100 samples, 0.03%)</title><rect x="62.7893%" y="629" width="0.0276%" height="15" fill="rgb(211,79,22)" fg:x="227461" fg:w="100"/><text x="63.0393%" y="639.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.04%)</title><rect x="62.9582%" y="613" width="0.0422%" height="15" fill="rgb(252,185,21)" fg:x="228073" fg:w="153"/><text x="63.2082%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (100 samples, 0.03%)</title><rect x="62.9728%" y="597" width="0.0276%" height="15" fill="rgb(225,189,26)" fg:x="228126" fg:w="100"/><text x="63.2228%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (121 samples, 0.03%)</title><rect x="63.0004%" y="613" width="0.0334%" height="15" fill="rgb(241,30,40)" fg:x="228226" fg:w="121"/><text x="63.2504%" y="623.50"></text></g><g><title>available_idle_cpu (169 samples, 0.05%)</title><rect x="63.1028%" y="597" width="0.0467%" height="15" fill="rgb(235,215,44)" fg:x="228597" fg:w="169"/><text x="63.3528%" y="607.50"></text></g><g><title>cpumask_next_wrap (39 samples, 0.01%)</title><rect x="63.1575%" y="597" width="0.0108%" height="15" fill="rgb(205,8,29)" fg:x="228795" fg:w="39"/><text x="63.4075%" y="607.50"></text></g><g><title>select_task_rq_fair (604 samples, 0.17%)</title><rect x="63.0369%" y="613" width="0.1667%" height="15" fill="rgb(241,137,42)" fg:x="228358" fg:w="604"/><text x="63.2869%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (91 samples, 0.03%)</title><rect x="63.1785%" y="597" width="0.0251%" height="15" fill="rgb(237,155,2)" fg:x="228871" fg:w="91"/><text x="63.4285%" y="607.50"></text></g><g><title>set_task_cpu (81 samples, 0.02%)</title><rect x="63.2036%" y="613" width="0.0224%" height="15" fill="rgb(245,29,42)" fg:x="228962" fg:w="81"/><text x="63.4536%" y="623.50"></text></g><g><title>migrate_task_rq_fair (48 samples, 0.01%)</title><rect x="63.2127%" y="597" width="0.0133%" height="15" fill="rgb(234,101,35)" fg:x="228995" fg:w="48"/><text x="63.4627%" y="607.50"></text></g><g><title>reweight_entity (44 samples, 0.01%)</title><rect x="63.3237%" y="565" width="0.0121%" height="15" fill="rgb(228,64,37)" fg:x="229397" fg:w="44"/><text x="63.5737%" y="575.50"></text></g><g><title>update_cfs_group (59 samples, 0.02%)</title><rect x="63.3358%" y="565" width="0.0163%" height="15" fill="rgb(217,214,36)" fg:x="229441" fg:w="59"/><text x="63.5858%" y="575.50"></text></g><g><title>update_curr (68 samples, 0.02%)</title><rect x="63.3521%" y="565" width="0.0188%" height="15" fill="rgb(243,70,3)" fg:x="229500" fg:w="68"/><text x="63.6021%" y="575.50"></text></g><g><title>__update_load_avg_cfs_rq (42 samples, 0.01%)</title><rect x="63.3982%" y="549" width="0.0116%" height="15" fill="rgb(253,158,52)" fg:x="229667" fg:w="42"/><text x="63.6482%" y="559.50"></text></g><g><title>enqueue_entity (549 samples, 0.15%)</title><rect x="63.2693%" y="581" width="0.1515%" height="15" fill="rgb(234,111,54)" fg:x="229200" fg:w="549"/><text x="63.5193%" y="591.50"></text></g><g><title>update_load_avg (181 samples, 0.05%)</title><rect x="63.3709%" y="565" width="0.0500%" height="15" fill="rgb(217,70,32)" fg:x="229568" fg:w="181"/><text x="63.6209%" y="575.50"></text></g><g><title>enqueue_task_fair (715 samples, 0.20%)</title><rect x="63.2389%" y="597" width="0.1974%" height="15" fill="rgb(234,18,33)" fg:x="229090" fg:w="715"/><text x="63.4889%" y="607.50"></text></g><g><title>ttwu_do_activate (1,431 samples, 0.40%)</title><rect x="63.2260%" y="613" width="0.3950%" height="15" fill="rgb(234,12,49)" fg:x="229043" fg:w="1431"/><text x="63.4760%" y="623.50"></text></g><g><title>psi_task_change (667 samples, 0.18%)</title><rect x="63.4369%" y="597" width="0.1841%" height="15" fill="rgb(236,10,21)" fg:x="229807" fg:w="667"/><text x="63.6869%" y="607.50"></text></g><g><title>psi_group_change (600 samples, 0.17%)</title><rect x="63.4554%" y="581" width="0.1656%" height="15" fill="rgb(248,182,45)" fg:x="229874" fg:w="600"/><text x="63.7054%" y="591.50"></text></g><g><title>record_times (100 samples, 0.03%)</title><rect x="63.5934%" y="565" width="0.0276%" height="15" fill="rgb(217,95,36)" fg:x="230374" fg:w="100"/><text x="63.8434%" y="575.50"></text></g><g><title>sched_clock_cpu (66 samples, 0.02%)</title><rect x="63.6028%" y="549" width="0.0182%" height="15" fill="rgb(212,110,31)" fg:x="230408" fg:w="66"/><text x="63.8528%" y="559.50"></text></g><g><title>sched_clock (59 samples, 0.02%)</title><rect x="63.6047%" y="533" width="0.0163%" height="15" fill="rgb(206,32,53)" fg:x="230415" fg:w="59"/><text x="63.8547%" y="543.50"></text></g><g><title>native_sched_clock (54 samples, 0.01%)</title><rect x="63.6061%" y="517" width="0.0149%" height="15" fill="rgb(246,141,37)" fg:x="230420" fg:w="54"/><text x="63.8561%" y="527.50"></text></g><g><title>ttwu_do_wakeup (130 samples, 0.04%)</title><rect x="63.6210%" y="613" width="0.0359%" height="15" fill="rgb(219,16,7)" fg:x="230474" fg:w="130"/><text x="63.8710%" y="623.50"></text></g><g><title>check_preempt_curr (114 samples, 0.03%)</title><rect x="63.6254%" y="597" width="0.0315%" height="15" fill="rgb(230,205,45)" fg:x="230490" fg:w="114"/><text x="63.8754%" y="607.50"></text></g><g><title>resched_curr (46 samples, 0.01%)</title><rect x="63.6442%" y="581" width="0.0127%" height="15" fill="rgb(231,43,49)" fg:x="230558" fg:w="46"/><text x="63.8942%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (57 samples, 0.02%)</title><rect x="63.6569%" y="613" width="0.0157%" height="15" fill="rgb(212,106,34)" fg:x="230604" fg:w="57"/><text x="63.9069%" y="623.50"></text></g><g><title>__wake_up_common (3,369 samples, 0.93%)</title><rect x="62.7760%" y="661" width="0.9300%" height="15" fill="rgb(206,83,17)" fg:x="227413" fg:w="3369"/><text x="63.0260%" y="671.50"></text></g><g><title>autoremove_wake_function (3,328 samples, 0.92%)</title><rect x="62.7873%" y="645" width="0.9187%" height="15" fill="rgb(244,154,49)" fg:x="227454" fg:w="3328"/><text x="63.0373%" y="655.50"></text></g><g><title>try_to_wake_up (3,218 samples, 0.89%)</title><rect x="62.8177%" y="629" width="0.8883%" height="15" fill="rgb(244,149,49)" fg:x="227564" fg:w="3218"/><text x="63.0677%" y="639.50"></text></g><g><title>update_rq_clock (121 samples, 0.03%)</title><rect x="63.6726%" y="613" width="0.0334%" height="15" fill="rgb(227,134,18)" fg:x="230661" fg:w="121"/><text x="63.9226%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (154 samples, 0.04%)</title><rect x="63.7060%" y="661" width="0.0425%" height="15" fill="rgb(237,116,36)" fg:x="230782" fg:w="154"/><text x="63.9560%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (127 samples, 0.04%)</title><rect x="63.7135%" y="645" width="0.0351%" height="15" fill="rgb(205,129,40)" fg:x="230809" fg:w="127"/><text x="63.9635%" y="655.50"></text></g><g><title>__wake_up_common_lock (3,563 samples, 0.98%)</title><rect x="62.7727%" y="677" width="0.9835%" height="15" fill="rgb(236,178,4)" fg:x="227401" fg:w="3563"/><text x="63.0227%" y="687.50"></text></g><g><title>btrfs_search_slot (21,712 samples, 5.99%)</title><rect x="57.7791%" y="709" width="5.9935%" height="15" fill="rgb(251,76,53)" fg:x="209311" fg:w="21712"/><text x="58.0291%" y="719.50">btrfs_se..</text></g><g><title>unlock_up (3,678 samples, 1.02%)</title><rect x="62.7572%" y="693" width="1.0153%" height="15" fill="rgb(242,92,40)" fg:x="227345" fg:w="3678"/><text x="63.0072%" y="703.50"></text></g><g><title>btrfs_tree_unlock (59 samples, 0.02%)</title><rect x="63.7562%" y="677" width="0.0163%" height="15" fill="rgb(209,45,30)" fg:x="230964" fg:w="59"/><text x="64.0062%" y="687.50"></text></g><g><title>alloc_extent_state (76 samples, 0.02%)</title><rect x="63.8214%" y="677" width="0.0210%" height="15" fill="rgb(218,157,36)" fg:x="231200" fg:w="76"/><text x="64.0714%" y="687.50"></text></g><g><title>kmem_cache_alloc (47 samples, 0.01%)</title><rect x="63.8294%" y="661" width="0.0130%" height="15" fill="rgb(222,186,16)" fg:x="231229" fg:w="47"/><text x="64.0794%" y="671.50"></text></g><g><title>lock_extent_bits (256 samples, 0.07%)</title><rect x="63.8010%" y="709" width="0.0707%" height="15" fill="rgb(254,72,35)" fg:x="231126" fg:w="256"/><text x="64.0510%" y="719.50"></text></g><g><title>__set_extent_bit (241 samples, 0.07%)</title><rect x="63.8051%" y="693" width="0.0665%" height="15" fill="rgb(224,25,35)" fg:x="231141" fg:w="241"/><text x="64.0551%" y="703.50"></text></g><g><title>insert_state (83 samples, 0.02%)</title><rect x="63.8487%" y="677" width="0.0229%" height="15" fill="rgb(206,135,52)" fg:x="231299" fg:w="83"/><text x="64.0987%" y="687.50"></text></g><g><title>set_state_bits (50 samples, 0.01%)</title><rect x="63.8578%" y="661" width="0.0138%" height="15" fill="rgb(229,174,47)" fg:x="231332" fg:w="50"/><text x="64.1078%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (27,558 samples, 7.61%)</title><rect x="56.2732%" y="725" width="7.6072%" height="15" fill="rgb(242,184,21)" fg:x="203856" fg:w="27558"/><text x="56.5232%" y="735.50">btrfs_trun..</text></g><g><title>btrfs_block_rsv_migrate (43 samples, 0.01%)</title><rect x="63.8943%" y="709" width="0.0119%" height="15" fill="rgb(213,22,45)" fg:x="231464" fg:w="43"/><text x="64.1443%" y="719.50"></text></g><g><title>_raw_spin_lock (39 samples, 0.01%)</title><rect x="63.8954%" y="693" width="0.0108%" height="15" fill="rgb(237,81,54)" fg:x="231468" fg:w="39"/><text x="64.1454%" y="703.50"></text></g><g><title>btrfs_block_rsv_add_bytes (38 samples, 0.01%)</title><rect x="63.9249%" y="693" width="0.0105%" height="15" fill="rgb(248,177,18)" fg:x="231575" fg:w="38"/><text x="64.1749%" y="703.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (181 samples, 0.05%)</title><rect x="63.9727%" y="661" width="0.0500%" height="15" fill="rgb(254,31,16)" fg:x="231748" fg:w="181"/><text x="64.2227%" y="671.50"></text></g><g><title>btrfs_reduce_alloc_profile (81 samples, 0.02%)</title><rect x="64.0003%" y="645" width="0.0224%" height="15" fill="rgb(235,20,31)" fg:x="231848" fg:w="81"/><text x="64.2503%" y="655.50"></text></g><g><title>btrfs_block_rsv_refill (585 samples, 0.16%)</title><rect x="63.9061%" y="709" width="0.1615%" height="15" fill="rgb(240,56,43)" fg:x="231507" fg:w="585"/><text x="64.1561%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (479 samples, 0.13%)</title><rect x="63.9354%" y="693" width="0.1322%" height="15" fill="rgb(237,197,51)" fg:x="231613" fg:w="479"/><text x="64.1854%" y="703.50"></text></g><g><title>__reserve_bytes (459 samples, 0.13%)</title><rect x="63.9409%" y="677" width="0.1267%" height="15" fill="rgb(241,162,44)" fg:x="231633" fg:w="459"/><text x="64.1909%" y="687.50"></text></g><g><title>calc_available_free_space.isra.0 (163 samples, 0.04%)</title><rect x="64.0226%" y="661" width="0.0450%" height="15" fill="rgb(224,23,20)" fg:x="231929" fg:w="163"/><text x="64.2726%" y="671.50"></text></g><g><title>btrfs_reduce_alloc_profile (84 samples, 0.02%)</title><rect x="64.0444%" y="645" width="0.0232%" height="15" fill="rgb(250,109,34)" fg:x="232008" fg:w="84"/><text x="64.2944%" y="655.50"></text></g><g><title>join_transaction (80 samples, 0.02%)</title><rect x="64.1063%" y="693" width="0.0221%" height="15" fill="rgb(214,175,50)" fg:x="232232" fg:w="80"/><text x="64.3563%" y="703.50"></text></g><g><title>_raw_spin_lock (41 samples, 0.01%)</title><rect x="64.1170%" y="677" width="0.0113%" height="15" fill="rgb(213,182,5)" fg:x="232271" fg:w="41"/><text x="64.3670%" y="687.50"></text></g><g><title>evict_refill_and_join (1,003 samples, 0.28%)</title><rect x="63.8824%" y="725" width="0.2769%" height="15" fill="rgb(209,199,19)" fg:x="231421" fg:w="1003"/><text x="64.1324%" y="735.50"></text></g><g><title>start_transaction (311 samples, 0.09%)</title><rect x="64.0734%" y="709" width="0.0858%" height="15" fill="rgb(236,224,42)" fg:x="232113" fg:w="311"/><text x="64.3234%" y="719.50"></text></g><g><title>kmem_cache_alloc (112 samples, 0.03%)</title><rect x="64.1283%" y="693" width="0.0309%" height="15" fill="rgb(246,226,29)" fg:x="232312" fg:w="112"/><text x="64.3783%" y="703.50"></text></g><g><title>kfree (97 samples, 0.03%)</title><rect x="64.1609%" y="725" width="0.0268%" height="15" fill="rgb(227,223,11)" fg:x="232430" fg:w="97"/><text x="64.4109%" y="735.50"></text></g><g><title>kmem_cache_free (108 samples, 0.03%)</title><rect x="64.1877%" y="725" width="0.0298%" height="15" fill="rgb(219,7,51)" fg:x="232527" fg:w="108"/><text x="64.4377%" y="735.50"></text></g><g><title>__pagevec_release (49 samples, 0.01%)</title><rect x="64.2352%" y="709" width="0.0135%" height="15" fill="rgb(245,167,10)" fg:x="232699" fg:w="49"/><text x="64.4852%" y="719.50"></text></g><g><title>btrfs_evict_inode (90,587 samples, 25.01%)</title><rect x="39.2513%" y="741" width="25.0060%" height="15" fill="rgb(237,224,16)" fg:x="142192" fg:w="90587"/><text x="39.5013%" y="751.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (95 samples, 0.03%)</title><rect x="64.2310%" y="725" width="0.0262%" height="15" fill="rgb(226,132,13)" fg:x="232684" fg:w="95"/><text x="64.4810%" y="735.50"></text></g><g><title>evict (90,843 samples, 25.08%)</title><rect x="39.2027%" y="757" width="25.0767%" height="15" fill="rgb(214,140,3)" fg:x="142016" fg:w="90843"/><text x="39.4527%" y="767.50">evict</text></g><g><title>__legitimize_path (55 samples, 0.02%)</title><rect x="64.3036%" y="693" width="0.0152%" height="15" fill="rgb(221,177,4)" fg:x="232947" fg:w="55"/><text x="64.5536%" y="703.50"></text></g><g><title>complete_walk (117 samples, 0.03%)</title><rect x="64.2929%" y="725" width="0.0323%" height="15" fill="rgb(238,139,3)" fg:x="232908" fg:w="117"/><text x="64.5429%" y="735.50"></text></g><g><title>try_to_unlazy (104 samples, 0.03%)</title><rect x="64.2965%" y="709" width="0.0287%" height="15" fill="rgb(216,17,39)" fg:x="232921" fg:w="104"/><text x="64.5465%" y="719.50"></text></g><g><title>inode_permission.part.0 (92 samples, 0.03%)</title><rect x="64.3332%" y="709" width="0.0254%" height="15" fill="rgb(238,120,9)" fg:x="233054" fg:w="92"/><text x="64.5832%" y="719.50"></text></g><g><title>link_path_walk.part.0 (132 samples, 0.04%)</title><rect x="64.3252%" y="725" width="0.0364%" height="15" fill="rgb(244,92,53)" fg:x="233025" fg:w="132"/><text x="64.5752%" y="735.50"></text></g><g><title>__fget_light (132 samples, 0.04%)</title><rect x="64.3760%" y="709" width="0.0364%" height="15" fill="rgb(224,148,33)" fg:x="233209" fg:w="132"/><text x="64.6260%" y="719.50"></text></g><g><title>__fget_files (95 samples, 0.03%)</title><rect x="64.3862%" y="693" width="0.0262%" height="15" fill="rgb(243,6,36)" fg:x="233246" fg:w="95"/><text x="64.6362%" y="703.50"></text></g><g><title>path_init (192 samples, 0.05%)</title><rect x="64.3616%" y="725" width="0.0530%" height="15" fill="rgb(230,102,11)" fg:x="233157" fg:w="192"/><text x="64.6116%" y="735.50"></text></g><g><title>filename_parentat (528 samples, 0.15%)</title><rect x="64.2793%" y="757" width="0.1458%" height="15" fill="rgb(234,148,36)" fg:x="232859" fg:w="528"/><text x="64.5293%" y="767.50"></text></g><g><title>path_parentat (489 samples, 0.13%)</title><rect x="64.2901%" y="741" width="0.1350%" height="15" fill="rgb(251,153,25)" fg:x="232898" fg:w="489"/><text x="64.5401%" y="751.50"></text></g><g><title>terminate_walk (38 samples, 0.01%)</title><rect x="64.4146%" y="725" width="0.0105%" height="15" fill="rgb(215,129,8)" fg:x="233349" fg:w="38"/><text x="64.6646%" y="735.50"></text></g><g><title>ihold (60 samples, 0.02%)</title><rect x="64.4251%" y="757" width="0.0166%" height="15" fill="rgb(224,128,35)" fg:x="233387" fg:w="60"/><text x="64.6751%" y="767.50"></text></g><g><title>iput.part.0 (74 samples, 0.02%)</title><rect x="64.4417%" y="757" width="0.0204%" height="15" fill="rgb(237,56,52)" fg:x="233447" fg:w="74"/><text x="64.6917%" y="767.50"></text></g><g><title>kmem_cache_free (77 samples, 0.02%)</title><rect x="64.4621%" y="757" width="0.0213%" height="15" fill="rgb(234,213,19)" fg:x="233521" fg:w="77"/><text x="64.7121%" y="767.50"></text></g><g><title>mnt_drop_write (41 samples, 0.01%)</title><rect x="64.4833%" y="757" width="0.0113%" height="15" fill="rgb(252,82,23)" fg:x="233598" fg:w="41"/><text x="64.7333%" y="767.50"></text></g><g><title>mnt_want_write (44 samples, 0.01%)</title><rect x="64.4947%" y="757" width="0.0121%" height="15" fill="rgb(254,201,21)" fg:x="233639" fg:w="44"/><text x="64.7447%" y="767.50"></text></g><g><title>putname (64 samples, 0.02%)</title><rect x="64.5134%" y="757" width="0.0177%" height="15" fill="rgb(250,186,11)" fg:x="233707" fg:w="64"/><text x="64.7634%" y="767.50"></text></g><g><title>apparmor_path_unlink (37 samples, 0.01%)</title><rect x="64.5344%" y="741" width="0.0102%" height="15" fill="rgb(211,174,5)" fg:x="233783" fg:w="37"/><text x="64.7844%" y="751.50"></text></g><g><title>security_path_unlink (125 samples, 0.03%)</title><rect x="64.5311%" y="757" width="0.0345%" height="15" fill="rgb(214,121,10)" fg:x="233771" fg:w="125"/><text x="64.7811%" y="767.50"></text></g><g><title>tomoyo_path_unlink (76 samples, 0.02%)</title><rect x="64.5446%" y="741" width="0.0210%" height="15" fill="rgb(241,66,2)" fg:x="233820" fg:w="76"/><text x="64.7946%" y="751.50"></text></g><g><title>tomoyo_path_perm (73 samples, 0.02%)</title><rect x="64.5455%" y="725" width="0.0202%" height="15" fill="rgb(220,167,19)" fg:x="233823" fg:w="73"/><text x="64.7955%" y="735.50"></text></g><g><title>tomoyo_init_request_info (53 samples, 0.01%)</title><rect x="64.5510%" y="709" width="0.0146%" height="15" fill="rgb(231,54,50)" fg:x="233843" fg:w="53"/><text x="64.8010%" y="719.50"></text></g><g><title>tomoyo_domain (37 samples, 0.01%)</title><rect x="64.5554%" y="693" width="0.0102%" height="15" fill="rgb(239,217,53)" fg:x="233859" fg:w="37"/><text x="64.8054%" y="703.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.02%)</title><rect x="64.6404%" y="677" width="0.0177%" height="15" fill="rgb(248,8,0)" fg:x="234167" fg:w="64"/><text x="64.8904%" y="687.50"></text></g><g><title>btrfs_trans_release_metadata (138 samples, 0.04%)</title><rect x="64.6252%" y="709" width="0.0381%" height="15" fill="rgb(229,118,37)" fg:x="234112" fg:w="138"/><text x="64.8752%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (125 samples, 0.03%)</title><rect x="64.6288%" y="693" width="0.0345%" height="15" fill="rgb(253,223,43)" fg:x="234125" fg:w="125"/><text x="64.8788%" y="703.50"></text></g><g><title>__btrfs_end_transaction (327 samples, 0.09%)</title><rect x="64.5921%" y="725" width="0.0903%" height="15" fill="rgb(211,77,36)" fg:x="233992" fg:w="327"/><text x="64.8421%" y="735.50"></text></g><g><title>kmem_cache_free (69 samples, 0.02%)</title><rect x="64.6633%" y="709" width="0.0190%" height="15" fill="rgb(219,3,53)" fg:x="234250" fg:w="69"/><text x="64.9133%" y="719.50"></text></g><g><title>btrfs_free_path (58 samples, 0.02%)</title><rect x="64.7351%" y="693" width="0.0160%" height="15" fill="rgb(244,45,42)" fg:x="234510" fg:w="58"/><text x="64.9851%" y="703.50"></text></g><g><title>btrfs_release_path (53 samples, 0.01%)</title><rect x="64.7365%" y="677" width="0.0146%" height="15" fill="rgb(225,95,27)" fg:x="234515" fg:w="53"/><text x="64.9865%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (43 samples, 0.01%)</title><rect x="64.7947%" y="661" width="0.0119%" height="15" fill="rgb(207,74,8)" fg:x="234726" fg:w="43"/><text x="65.0447%" y="671.50"></text></g><g><title>find_extent_buffer (47 samples, 0.01%)</title><rect x="64.8176%" y="645" width="0.0130%" height="15" fill="rgb(243,63,36)" fg:x="234809" fg:w="47"/><text x="65.0676%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (102 samples, 0.03%)</title><rect x="64.8066%" y="661" width="0.0282%" height="15" fill="rgb(211,180,12)" fg:x="234769" fg:w="102"/><text x="65.0566%" y="671.50"></text></g><g><title>btrfs_lookup_dir_index_item (325 samples, 0.09%)</title><rect x="64.7511%" y="693" width="0.0897%" height="15" fill="rgb(254,166,49)" fg:x="234568" fg:w="325"/><text x="65.0011%" y="703.50"></text></g><g><title>btrfs_search_slot (316 samples, 0.09%)</title><rect x="64.7536%" y="677" width="0.0872%" height="15" fill="rgb(205,19,0)" fg:x="234577" fg:w="316"/><text x="65.0036%" y="687.50"></text></g><g><title>find_extent_buffer (66 samples, 0.02%)</title><rect x="64.9087%" y="645" width="0.0182%" height="15" fill="rgb(224,172,32)" fg:x="235139" fg:w="66"/><text x="65.1587%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (115 samples, 0.03%)</title><rect x="64.8996%" y="661" width="0.0317%" height="15" fill="rgb(254,136,30)" fg:x="235106" fg:w="115"/><text x="65.1496%" y="671.50"></text></g><g><title>btrfs_search_slot (328 samples, 0.09%)</title><rect x="64.8455%" y="677" width="0.0905%" height="15" fill="rgb(246,19,35)" fg:x="234910" fg:w="328"/><text x="65.0955%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (362 samples, 0.10%)</title><rect x="64.8408%" y="693" width="0.0999%" height="15" fill="rgb(219,24,36)" fg:x="234893" fg:w="362"/><text x="65.0908%" y="703.50"></text></g><g><title>btrfs_release_path (60 samples, 0.02%)</title><rect x="64.9407%" y="693" width="0.0166%" height="15" fill="rgb(251,55,1)" fg:x="235255" fg:w="60"/><text x="65.1907%" y="703.50"></text></g><g><title>btrfs_del_dir_entries_in_log (934 samples, 0.26%)</title><rect x="64.7144%" y="709" width="0.2578%" height="15" fill="rgb(218,117,39)" fg:x="234435" fg:w="934"/><text x="64.9644%" y="719.50"></text></g><g><title>btrfs_free_path (141 samples, 0.04%)</title><rect x="64.9833%" y="677" width="0.0389%" height="15" fill="rgb(248,169,11)" fg:x="235409" fg:w="141"/><text x="65.2333%" y="687.50"></text></g><g><title>btrfs_release_path (129 samples, 0.04%)</title><rect x="64.9866%" y="661" width="0.0356%" height="15" fill="rgb(244,40,44)" fg:x="235421" fg:w="129"/><text x="65.2366%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (112 samples, 0.03%)</title><rect x="65.0617%" y="661" width="0.0309%" height="15" fill="rgb(234,62,37)" fg:x="235693" fg:w="112"/><text x="65.3117%" y="671.50"></text></g><g><title>btrfs_root_node (76 samples, 0.02%)</title><rect x="65.0716%" y="645" width="0.0210%" height="15" fill="rgb(207,117,42)" fg:x="235729" fg:w="76"/><text x="65.3216%" y="655.50"></text></g><g><title>balance_level (46 samples, 0.01%)</title><rect x="65.0928%" y="661" width="0.0127%" height="15" fill="rgb(213,43,2)" fg:x="235806" fg:w="46"/><text x="65.3428%" y="671.50"></text></g><g><title>btrfs_lock_root_node (50 samples, 0.01%)</title><rect x="65.1078%" y="661" width="0.0138%" height="15" fill="rgb(244,202,51)" fg:x="235860" fg:w="50"/><text x="65.3578%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (43 samples, 0.01%)</title><rect x="65.1216%" y="661" width="0.0119%" height="15" fill="rgb(253,174,46)" fg:x="235910" fg:w="43"/><text x="65.3716%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (120 samples, 0.03%)</title><rect x="65.1483%" y="661" width="0.0331%" height="15" fill="rgb(251,23,1)" fg:x="236007" fg:w="120"/><text x="65.3983%" y="671.50"></text></g><g><title>__radix_tree_lookup (86 samples, 0.02%)</title><rect x="65.2149%" y="629" width="0.0237%" height="15" fill="rgb(253,26,1)" fg:x="236248" fg:w="86"/><text x="65.4649%" y="639.50"></text></g><g><title>find_extent_buffer (177 samples, 0.05%)</title><rect x="65.2033%" y="645" width="0.0489%" height="15" fill="rgb(216,89,31)" fg:x="236206" fg:w="177"/><text x="65.4533%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (49 samples, 0.01%)</title><rect x="65.2386%" y="629" width="0.0135%" height="15" fill="rgb(209,109,5)" fg:x="236334" fg:w="49"/><text x="65.4886%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (290 samples, 0.08%)</title><rect x="65.1815%" y="661" width="0.0801%" height="15" fill="rgb(229,63,13)" fg:x="236127" fg:w="290"/><text x="65.4315%" y="671.50"></text></g><g><title>btrfs_search_slot (907 samples, 0.25%)</title><rect x="65.0222%" y="677" width="0.2504%" height="15" fill="rgb(238,137,54)" fg:x="235550" fg:w="907"/><text x="65.2722%" y="687.50"></text></g><g><title>crc32c (60 samples, 0.02%)</title><rect x="65.2726%" y="677" width="0.0166%" height="15" fill="rgb(228,1,9)" fg:x="236457" fg:w="60"/><text x="65.5226%" y="687.50"></text></g><g><title>kmem_cache_alloc (93 samples, 0.03%)</title><rect x="65.2891%" y="677" width="0.0257%" height="15" fill="rgb(249,120,48)" fg:x="236517" fg:w="93"/><text x="65.5391%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (1,285 samples, 0.35%)</title><rect x="64.9777%" y="693" width="0.3547%" height="15" fill="rgb(209,72,36)" fg:x="235389" fg:w="1285"/><text x="65.2277%" y="703.50"></text></g><g><title>kmem_cache_free (64 samples, 0.02%)</title><rect x="65.3148%" y="677" width="0.0177%" height="15" fill="rgb(247,98,49)" fg:x="236610" fg:w="64"/><text x="65.5648%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (1,374 samples, 0.38%)</title><rect x="64.9722%" y="709" width="0.3793%" height="15" fill="rgb(233,75,36)" fg:x="235369" fg:w="1374"/><text x="65.2222%" y="719.50"></text></g><g><title>_find_next_bit.constprop.0 (226 samples, 0.06%)</title><rect x="65.4153%" y="629" width="0.0624%" height="15" fill="rgb(225,14,24)" fg:x="236974" fg:w="226"/><text x="65.6653%" y="639.50"></text></g><g><title>steal_from_bitmap.part.0 (277 samples, 0.08%)</title><rect x="65.4056%" y="645" width="0.0765%" height="15" fill="rgb(237,193,20)" fg:x="236939" fg:w="277"/><text x="65.6556%" y="655.50"></text></g><g><title>__btrfs_add_free_space (289 samples, 0.08%)</title><rect x="65.4039%" y="661" width="0.0798%" height="15" fill="rgb(239,122,19)" fg:x="236933" fg:w="289"/><text x="65.6539%" y="671.50"></text></g><g><title>btrfs_free_tree_block (309 samples, 0.09%)</title><rect x="65.4039%" y="677" width="0.0853%" height="15" fill="rgb(231,220,10)" fg:x="236933" fg:w="309"/><text x="65.6539%" y="687.50"></text></g><g><title>btrfs_del_leaf (317 samples, 0.09%)</title><rect x="65.4039%" y="693" width="0.0875%" height="15" fill="rgb(220,66,15)" fg:x="236933" fg:w="317"/><text x="65.6539%" y="703.50"></text></g><g><title>btrfs_get_32 (47 samples, 0.01%)</title><rect x="65.4915%" y="693" width="0.0130%" height="15" fill="rgb(215,171,52)" fg:x="237250" fg:w="47"/><text x="65.7415%" y="703.50"></text></g><g><title>btrfs_get_token_32 (660 samples, 0.18%)</title><rect x="65.5044%" y="693" width="0.1822%" height="15" fill="rgb(241,169,50)" fg:x="237297" fg:w="660"/><text x="65.7544%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (83 samples, 0.02%)</title><rect x="65.6637%" y="677" width="0.0229%" height="15" fill="rgb(236,189,0)" fg:x="237874" fg:w="83"/><text x="65.9137%" y="687.50"></text></g><g><title>btrfs_mark_buffer_dirty (50 samples, 0.01%)</title><rect x="65.6866%" y="693" width="0.0138%" height="15" fill="rgb(217,147,20)" fg:x="237957" fg:w="50"/><text x="65.9366%" y="703.50"></text></g><g><title>btrfs_set_token_32 (513 samples, 0.14%)</title><rect x="65.7010%" y="693" width="0.1416%" height="15" fill="rgb(206,188,39)" fg:x="238009" fg:w="513"/><text x="65.9510%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (73 samples, 0.02%)</title><rect x="65.8224%" y="677" width="0.0202%" height="15" fill="rgb(227,118,25)" fg:x="238449" fg:w="73"/><text x="66.0724%" y="687.50"></text></g><g><title>memcpy_extent_buffer (89 samples, 0.02%)</title><rect x="65.8514%" y="693" width="0.0246%" height="15" fill="rgb(248,171,40)" fg:x="238554" fg:w="89"/><text x="66.1014%" y="703.50"></text></g><g><title>memmove (62 samples, 0.02%)</title><rect x="65.8589%" y="677" width="0.0171%" height="15" fill="rgb(251,90,54)" fg:x="238581" fg:w="62"/><text x="66.1089%" y="687.50"></text></g><g><title>copy_pages (50 samples, 0.01%)</title><rect x="65.8851%" y="677" width="0.0138%" height="15" fill="rgb(234,11,46)" fg:x="238676" fg:w="50"/><text x="66.1351%" y="687.50"></text></g><g><title>memmove_extent_buffer (416 samples, 0.11%)</title><rect x="65.8760%" y="693" width="0.1148%" height="15" fill="rgb(229,134,13)" fg:x="238643" fg:w="416"/><text x="66.1260%" y="703.50"></text></g><g><title>memmove (333 samples, 0.09%)</title><rect x="65.8989%" y="677" width="0.0919%" height="15" fill="rgb(223,129,3)" fg:x="238726" fg:w="333"/><text x="66.1489%" y="687.50"></text></g><g><title>btrfs_del_items (2,364 samples, 0.65%)</title><rect x="65.3515%" y="709" width="0.6526%" height="15" fill="rgb(221,124,13)" fg:x="236743" fg:w="2364"/><text x="65.6015%" y="719.50"></text></g><g><title>__list_add_valid (39 samples, 0.01%)</title><rect x="66.0295%" y="677" width="0.0108%" height="15" fill="rgb(234,3,18)" fg:x="239199" fg:w="39"/><text x="66.2795%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (111 samples, 0.03%)</title><rect x="66.0157%" y="693" width="0.0306%" height="15" fill="rgb(249,199,20)" fg:x="239149" fg:w="111"/><text x="66.2657%" y="703.50"></text></g><g><title>btrfs_get_or_create_delayed_node (101 samples, 0.03%)</title><rect x="66.0463%" y="693" width="0.0279%" height="15" fill="rgb(224,134,6)" fg:x="239260" fg:w="101"/><text x="66.2963%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (98 samples, 0.03%)</title><rect x="66.0471%" y="677" width="0.0271%" height="15" fill="rgb(254,83,26)" fg:x="239263" fg:w="98"/><text x="66.2971%" y="687.50"></text></g><g><title>mutex_lock (38 samples, 0.01%)</title><rect x="66.0742%" y="693" width="0.0105%" height="15" fill="rgb(217,88,9)" fg:x="239361" fg:w="38"/><text x="66.3242%" y="703.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (301 samples, 0.08%)</title><rect x="66.0041%" y="709" width="0.0831%" height="15" fill="rgb(225,73,2)" fg:x="239107" fg:w="301"/><text x="66.2541%" y="719.50"></text></g><g><title>btrfs_comp_cpu_keys (97 samples, 0.03%)</title><rect x="66.0971%" y="677" width="0.0268%" height="15" fill="rgb(226,44,39)" fg:x="239444" fg:w="97"/><text x="66.3471%" y="687.50"></text></g><g><title>__btrfs_add_delayed_item (148 samples, 0.04%)</title><rect x="66.0899%" y="693" width="0.0409%" height="15" fill="rgb(228,53,17)" fg:x="239418" fg:w="148"/><text x="66.3399%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (74 samples, 0.02%)</title><rect x="66.1308%" y="693" width="0.0204%" height="15" fill="rgb(212,27,27)" fg:x="239566" fg:w="74"/><text x="66.3808%" y="703.50"></text></g><g><title>mutex_spin_on_owner (56 samples, 0.02%)</title><rect x="66.1523%" y="677" width="0.0155%" height="15" fill="rgb(241,50,6)" fg:x="239644" fg:w="56"/><text x="66.4023%" y="687.50"></text></g><g><title>__mutex_lock.constprop.0 (97 samples, 0.03%)</title><rect x="66.1512%" y="693" width="0.0268%" height="15" fill="rgb(225,28,51)" fg:x="239640" fg:w="97"/><text x="66.4012%" y="703.50"></text></g><g><title>schedule_preempt_disabled (37 samples, 0.01%)</title><rect x="66.1678%" y="677" width="0.0102%" height="15" fill="rgb(215,33,16)" fg:x="239700" fg:w="37"/><text x="66.4178%" y="687.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="66.1678%" y="661" width="0.0102%" height="15" fill="rgb(243,40,39)" fg:x="239700" fg:w="37"/><text x="66.4178%" y="671.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="66.1678%" y="645" width="0.0102%" height="15" fill="rgb(225,11,42)" fg:x="239700" fg:w="37"/><text x="66.4178%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (79 samples, 0.02%)</title><rect x="66.1805%" y="693" width="0.0218%" height="15" fill="rgb(241,220,38)" fg:x="239746" fg:w="79"/><text x="66.4305%" y="703.50"></text></g><g><title>btrfs_block_rsv_migrate (60 samples, 0.02%)</title><rect x="66.1857%" y="677" width="0.0166%" height="15" fill="rgb(244,52,35)" fg:x="239765" fg:w="60"/><text x="66.4357%" y="687.50"></text></g><g><title>_raw_spin_lock (42 samples, 0.01%)</title><rect x="66.1907%" y="661" width="0.0116%" height="15" fill="rgb(246,42,46)" fg:x="239783" fg:w="42"/><text x="66.4407%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (81 samples, 0.02%)</title><rect x="66.2117%" y="693" width="0.0224%" height="15" fill="rgb(205,184,13)" fg:x="239859" fg:w="81"/><text x="66.4617%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (565 samples, 0.16%)</title><rect x="66.0872%" y="709" width="0.1560%" height="15" fill="rgb(209,48,36)" fg:x="239408" fg:w="565"/><text x="66.3372%" y="719.50"></text></g><g><title>btrfs_delete_one_dir_name (44 samples, 0.01%)</title><rect x="66.2431%" y="709" width="0.0121%" height="15" fill="rgb(244,34,51)" fg:x="239973" fg:w="44"/><text x="66.4931%" y="719.50"></text></g><g><title>btrfs_get_16 (64 samples, 0.02%)</title><rect x="66.2798%" y="677" width="0.0177%" height="15" fill="rgb(221,107,33)" fg:x="240106" fg:w="64"/><text x="66.5298%" y="687.50"></text></g><g><title>btrfs_match_dir_item_name (220 samples, 0.06%)</title><rect x="66.2674%" y="693" width="0.0607%" height="15" fill="rgb(224,203,12)" fg:x="240061" fg:w="220"/><text x="66.5174%" y="703.50"></text></g><g><title>memcmp_extent_buffer (79 samples, 0.02%)</title><rect x="66.3063%" y="677" width="0.0218%" height="15" fill="rgb(230,215,18)" fg:x="240202" fg:w="79"/><text x="66.5563%" y="687.50"></text></g><g><title>memcmp (52 samples, 0.01%)</title><rect x="66.3138%" y="661" width="0.0144%" height="15" fill="rgb(206,185,35)" fg:x="240229" fg:w="52"/><text x="66.5638%" y="671.50"></text></g><g><title>_raw_read_lock (44 samples, 0.01%)</title><rect x="66.4181%" y="645" width="0.0121%" height="15" fill="rgb(228,140,34)" fg:x="240607" fg:w="44"/><text x="66.6681%" y="655.50"></text></g><g><title>finish_wait (271 samples, 0.07%)</title><rect x="66.4308%" y="645" width="0.0748%" height="15" fill="rgb(208,93,13)" fg:x="240653" fg:w="271"/><text x="66.6808%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.07%)</title><rect x="66.4344%" y="629" width="0.0712%" height="15" fill="rgb(221,193,39)" fg:x="240666" fg:w="258"/><text x="66.6844%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (240 samples, 0.07%)</title><rect x="66.4394%" y="613" width="0.0663%" height="15" fill="rgb(241,132,34)" fg:x="240684" fg:w="240"/><text x="66.6894%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (1,150 samples, 0.32%)</title><rect x="66.5308%" y="629" width="0.3175%" height="15" fill="rgb(221,141,10)" fg:x="241015" fg:w="1150"/><text x="66.7808%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,120 samples, 0.31%)</title><rect x="66.5390%" y="613" width="0.3092%" height="15" fill="rgb(226,90,31)" fg:x="241045" fg:w="1120"/><text x="66.7890%" y="623.50"></text></g><g><title>prepare_to_wait_event (1,249 samples, 0.34%)</title><rect x="66.5059%" y="645" width="0.3448%" height="15" fill="rgb(243,75,5)" fg:x="240925" fg:w="1249"/><text x="66.7559%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (347 samples, 0.10%)</title><rect x="66.8507%" y="645" width="0.0958%" height="15" fill="rgb(227,156,21)" fg:x="242174" fg:w="347"/><text x="67.1007%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (217 samples, 0.06%)</title><rect x="66.8866%" y="629" width="0.0599%" height="15" fill="rgb(250,195,8)" fg:x="242304" fg:w="217"/><text x="67.1366%" y="639.50"></text></g><g><title>update_curr (48 samples, 0.01%)</title><rect x="66.9934%" y="581" width="0.0133%" height="15" fill="rgb(220,134,5)" fg:x="242691" fg:w="48"/><text x="67.2434%" y="591.50"></text></g><g><title>dequeue_entity (142 samples, 0.04%)</title><rect x="66.9807%" y="597" width="0.0392%" height="15" fill="rgb(246,106,34)" fg:x="242645" fg:w="142"/><text x="67.2307%" y="607.50"></text></g><g><title>update_load_avg (48 samples, 0.01%)</title><rect x="67.0067%" y="581" width="0.0133%" height="15" fill="rgb(205,1,4)" fg:x="242739" fg:w="48"/><text x="67.2567%" y="591.50"></text></g><g><title>dequeue_task_fair (173 samples, 0.05%)</title><rect x="66.9763%" y="613" width="0.0478%" height="15" fill="rgb(224,151,29)" fg:x="242629" fg:w="173"/><text x="67.2263%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (117 samples, 0.03%)</title><rect x="67.0315%" y="597" width="0.0323%" height="15" fill="rgb(251,196,0)" fg:x="242829" fg:w="117"/><text x="67.2815%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (111 samples, 0.03%)</title><rect x="67.0332%" y="581" width="0.0306%" height="15" fill="rgb(212,127,0)" fg:x="242835" fg:w="111"/><text x="67.2832%" y="591.50"></text></g><g><title>native_write_msr (109 samples, 0.03%)</title><rect x="67.0337%" y="565" width="0.0301%" height="15" fill="rgb(236,71,53)" fg:x="242837" fg:w="109"/><text x="67.2837%" y="575.50"></text></g><g><title>finish_task_switch (147 samples, 0.04%)</title><rect x="67.0241%" y="613" width="0.0406%" height="15" fill="rgb(227,99,0)" fg:x="242802" fg:w="147"/><text x="67.2741%" y="623.50"></text></g><g><title>pick_next_task_fair (51 samples, 0.01%)</title><rect x="67.0646%" y="613" width="0.0141%" height="15" fill="rgb(239,89,21)" fg:x="242949" fg:w="51"/><text x="67.3146%" y="623.50"></text></g><g><title>psi_task_change (118 samples, 0.03%)</title><rect x="67.0853%" y="613" width="0.0326%" height="15" fill="rgb(243,122,19)" fg:x="243024" fg:w="118"/><text x="67.3353%" y="623.50"></text></g><g><title>psi_group_change (100 samples, 0.03%)</title><rect x="67.0903%" y="597" width="0.0276%" height="15" fill="rgb(229,192,45)" fg:x="243042" fg:w="100"/><text x="67.3403%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (2,642 samples, 0.73%)</title><rect x="66.4038%" y="661" width="0.7293%" height="15" fill="rgb(235,165,35)" fg:x="240555" fg:w="2642"/><text x="66.6538%" y="671.50"></text></g><g><title>schedule (676 samples, 0.19%)</title><rect x="66.9465%" y="645" width="0.1866%" height="15" fill="rgb(253,202,0)" fg:x="242521" fg:w="676"/><text x="67.1965%" y="655.50"></text></g><g><title>__schedule (666 samples, 0.18%)</title><rect x="66.9492%" y="629" width="0.1838%" height="15" fill="rgb(235,51,20)" fg:x="242531" fg:w="666"/><text x="67.1992%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (2,713 samples, 0.75%)</title><rect x="66.4002%" y="677" width="0.7489%" height="15" fill="rgb(218,95,46)" fg:x="240542" fg:w="2713"/><text x="66.6502%" y="687.50"></text></g><g><title>btrfs_root_node (58 samples, 0.02%)</title><rect x="67.1331%" y="661" width="0.0160%" height="15" fill="rgb(212,81,10)" fg:x="243197" fg:w="58"/><text x="67.3831%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (43 samples, 0.01%)</title><rect x="67.1676%" y="645" width="0.0119%" height="15" fill="rgb(240,59,0)" fg:x="243322" fg:w="43"/><text x="67.4176%" y="655.50"></text></g><g><title>prepare_to_wait_event (70 samples, 0.02%)</title><rect x="67.1612%" y="661" width="0.0193%" height="15" fill="rgb(212,191,42)" fg:x="243299" fg:w="70"/><text x="67.4112%" y="671.50"></text></g><g><title>__perf_event_task_sched_out (38 samples, 0.01%)</title><rect x="67.1988%" y="629" width="0.0105%" height="15" fill="rgb(233,140,3)" fg:x="243435" fg:w="38"/><text x="67.4488%" y="639.50"></text></g><g><title>update_curr (61 samples, 0.02%)</title><rect x="67.2308%" y="597" width="0.0168%" height="15" fill="rgb(215,69,23)" fg:x="243551" fg:w="61"/><text x="67.4808%" y="607.50"></text></g><g><title>dequeue_entity (162 samples, 0.04%)</title><rect x="67.2165%" y="613" width="0.0447%" height="15" fill="rgb(240,202,20)" fg:x="243499" fg:w="162"/><text x="67.4665%" y="623.50"></text></g><g><title>update_load_avg (49 samples, 0.01%)</title><rect x="67.2476%" y="597" width="0.0135%" height="15" fill="rgb(209,146,50)" fg:x="243612" fg:w="49"/><text x="67.4976%" y="607.50"></text></g><g><title>dequeue_task_fair (206 samples, 0.06%)</title><rect x="67.2118%" y="629" width="0.0569%" height="15" fill="rgb(253,102,54)" fg:x="243482" fg:w="206"/><text x="67.4618%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.06%)</title><rect x="67.2775%" y="613" width="0.0563%" height="15" fill="rgb(250,173,47)" fg:x="243720" fg:w="204"/><text x="67.5275%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (199 samples, 0.05%)</title><rect x="67.2788%" y="597" width="0.0549%" height="15" fill="rgb(232,142,7)" fg:x="243725" fg:w="199"/><text x="67.5288%" y="607.50"></text></g><g><title>native_write_msr (194 samples, 0.05%)</title><rect x="67.2802%" y="581" width="0.0536%" height="15" fill="rgb(230,157,47)" fg:x="243730" fg:w="194"/><text x="67.5302%" y="591.50"></text></g><g><title>finish_task_switch (243 samples, 0.07%)</title><rect x="67.2686%" y="629" width="0.0671%" height="15" fill="rgb(214,177,35)" fg:x="243688" fg:w="243"/><text x="67.5186%" y="639.50"></text></g><g><title>pick_next_task_fair (46 samples, 0.01%)</title><rect x="67.3357%" y="629" width="0.0127%" height="15" fill="rgb(234,119,46)" fg:x="243931" fg:w="46"/><text x="67.5857%" y="639.50"></text></g><g><title>psi_task_change (187 samples, 0.05%)</title><rect x="67.3572%" y="629" width="0.0516%" height="15" fill="rgb(241,180,50)" fg:x="244009" fg:w="187"/><text x="67.6072%" y="639.50"></text></g><g><title>psi_group_change (151 samples, 0.04%)</title><rect x="67.3672%" y="613" width="0.0417%" height="15" fill="rgb(221,54,25)" fg:x="244045" fg:w="151"/><text x="67.6172%" y="623.50"></text></g><g><title>psi_task_switch (37 samples, 0.01%)</title><rect x="67.4089%" y="629" width="0.0102%" height="15" fill="rgb(209,157,44)" fg:x="244196" fg:w="37"/><text x="67.6589%" y="639.50"></text></g><g><title>__schedule (889 samples, 0.25%)</title><rect x="67.1828%" y="645" width="0.2454%" height="15" fill="rgb(246,115,41)" fg:x="243377" fg:w="889"/><text x="67.4328%" y="655.50"></text></g><g><title>__btrfs_tree_lock (1,012 samples, 0.28%)</title><rect x="67.1491%" y="677" width="0.2794%" height="15" fill="rgb(229,86,1)" fg:x="243255" fg:w="1012"/><text x="67.3991%" y="687.50"></text></g><g><title>schedule (898 samples, 0.25%)</title><rect x="67.1806%" y="661" width="0.2479%" height="15" fill="rgb(240,108,53)" fg:x="243369" fg:w="898"/><text x="67.4306%" y="671.50"></text></g><g><title>_cond_resched (43 samples, 0.01%)</title><rect x="67.4895%" y="645" width="0.0119%" height="15" fill="rgb(227,134,2)" fg:x="244488" fg:w="43"/><text x="67.7395%" y="655.50"></text></g><g><title>_raw_write_lock (99 samples, 0.03%)</title><rect x="67.5024%" y="645" width="0.0273%" height="15" fill="rgb(213,129,25)" fg:x="244535" fg:w="99"/><text x="67.7524%" y="655.50"></text></g><g><title>__list_del_entry_valid (56 samples, 0.02%)</title><rect x="67.5325%" y="629" width="0.0155%" height="15" fill="rgb(226,35,21)" fg:x="244644" fg:w="56"/><text x="67.7825%" y="639.50"></text></g><g><title>finish_wait (1,254 samples, 0.35%)</title><rect x="67.5298%" y="645" width="0.3462%" height="15" fill="rgb(208,129,26)" fg:x="244634" fg:w="1254"/><text x="67.7798%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (1,188 samples, 0.33%)</title><rect x="67.5480%" y="629" width="0.3279%" height="15" fill="rgb(224,83,6)" fg:x="244700" fg:w="1188"/><text x="67.7980%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,122 samples, 0.31%)</title><rect x="67.5662%" y="613" width="0.3097%" height="15" fill="rgb(227,52,39)" fg:x="244766" fg:w="1122"/><text x="67.8162%" y="623.50"></text></g><g><title>__list_add_valid (104 samples, 0.03%)</title><rect x="67.9538%" y="629" width="0.0287%" height="15" fill="rgb(241,30,17)" fg:x="246170" fg:w="104"/><text x="68.2038%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (4,157 samples, 1.15%)</title><rect x="67.9825%" y="629" width="1.1475%" height="15" fill="rgb(246,186,42)" fg:x="246274" fg:w="4157"/><text x="68.2325%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,955 samples, 1.09%)</title><rect x="68.0382%" y="613" width="1.0918%" height="15" fill="rgb(221,169,15)" fg:x="246476" fg:w="3955"/><text x="68.2882%" y="623.50"></text></g><g><title>prepare_to_wait_event (4,612 samples, 1.27%)</title><rect x="67.8779%" y="645" width="1.2731%" height="15" fill="rgb(235,108,21)" fg:x="245895" fg:w="4612"/><text x="68.1279%" y="655.50"></text></g><g><title>_raw_spin_unlock_irqrestore (76 samples, 0.02%)</title><rect x="69.1300%" y="629" width="0.0210%" height="15" fill="rgb(219,148,30)" fg:x="250431" fg:w="76"/><text x="69.3800%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (1,619 samples, 0.45%)</title><rect x="69.1510%" y="645" width="0.4469%" height="15" fill="rgb(220,109,5)" fg:x="250507" fg:w="1619"/><text x="69.4010%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (899 samples, 0.25%)</title><rect x="69.3497%" y="629" width="0.2482%" height="15" fill="rgb(213,203,48)" fg:x="251227" fg:w="899"/><text x="69.5997%" y="639.50"></text></g><g><title>_raw_spin_lock (48 samples, 0.01%)</title><rect x="69.6724%" y="597" width="0.0133%" height="15" fill="rgb(244,71,33)" fg:x="252396" fg:w="48"/><text x="69.9224%" y="607.50"></text></g><g><title>__perf_event_task_sched_out (119 samples, 0.03%)</title><rect x="69.6548%" y="613" width="0.0328%" height="15" fill="rgb(209,23,2)" fg:x="252332" fg:w="119"/><text x="69.9048%" y="623.50"></text></g><g><title>_raw_spin_lock (44 samples, 0.01%)</title><rect x="69.6917%" y="613" width="0.0121%" height="15" fill="rgb(219,97,7)" fg:x="252466" fg:w="44"/><text x="69.9417%" y="623.50"></text></g><g><title>update_cfs_group (66 samples, 0.02%)</title><rect x="69.7566%" y="581" width="0.0182%" height="15" fill="rgb(216,161,23)" fg:x="252701" fg:w="66"/><text x="70.0066%" y="591.50"></text></g><g><title>__calc_delta (47 samples, 0.01%)</title><rect x="69.8027%" y="565" width="0.0130%" height="15" fill="rgb(207,45,42)" fg:x="252868" fg:w="47"/><text x="70.0527%" y="575.50"></text></g><g><title>update_curr (219 samples, 0.06%)</title><rect x="69.7748%" y="581" width="0.0605%" height="15" fill="rgb(241,61,4)" fg:x="252767" fg:w="219"/><text x="70.0248%" y="591.50"></text></g><g><title>__update_load_avg_cfs_rq (68 samples, 0.02%)</title><rect x="69.8596%" y="565" width="0.0188%" height="15" fill="rgb(236,170,1)" fg:x="253074" fg:w="68"/><text x="70.1096%" y="575.50"></text></g><g><title>__update_load_avg_se (80 samples, 0.02%)</title><rect x="69.8783%" y="565" width="0.0221%" height="15" fill="rgb(239,72,5)" fg:x="253142" fg:w="80"/><text x="70.1283%" y="575.50"></text></g><g><title>dequeue_entity (663 samples, 0.18%)</title><rect x="69.7205%" y="597" width="0.1830%" height="15" fill="rgb(214,13,50)" fg:x="252570" fg:w="663"/><text x="69.9705%" y="607.50"></text></g><g><title>update_load_avg (247 samples, 0.07%)</title><rect x="69.8353%" y="581" width="0.0682%" height="15" fill="rgb(224,88,9)" fg:x="252986" fg:w="247"/><text x="70.0853%" y="591.50"></text></g><g><title>dequeue_task_fair (775 samples, 0.21%)</title><rect x="69.7039%" y="613" width="0.2139%" height="15" fill="rgb(238,192,34)" fg:x="252510" fg:w="775"/><text x="69.9539%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (692 samples, 0.19%)</title><rect x="69.9532%" y="597" width="0.1910%" height="15" fill="rgb(217,203,50)" fg:x="253413" fg:w="692"/><text x="70.2032%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (670 samples, 0.18%)</title><rect x="69.9592%" y="581" width="0.1849%" height="15" fill="rgb(241,123,32)" fg:x="253435" fg:w="670"/><text x="70.2092%" y="591.50"></text></g><g><title>native_write_msr (661 samples, 0.18%)</title><rect x="69.9617%" y="565" width="0.1825%" height="15" fill="rgb(248,151,39)" fg:x="253444" fg:w="661"/><text x="70.2117%" y="575.50"></text></g><g><title>finish_task_switch (859 samples, 0.24%)</title><rect x="69.9178%" y="613" width="0.2371%" height="15" fill="rgb(208,89,6)" fg:x="253285" fg:w="859"/><text x="70.1678%" y="623.50"></text></g><g><title>newidle_balance (66 samples, 0.02%)</title><rect x="70.1616%" y="597" width="0.0182%" height="15" fill="rgb(254,43,26)" fg:x="254168" fg:w="66"/><text x="70.4116%" y="607.50"></text></g><g><title>pick_next_task_fair (129 samples, 0.04%)</title><rect x="70.1552%" y="613" width="0.0356%" height="15" fill="rgb(216,158,13)" fg:x="254145" fg:w="129"/><text x="70.4052%" y="623.50"></text></g><g><title>pick_next_task_idle (106 samples, 0.03%)</title><rect x="70.1908%" y="613" width="0.0293%" height="15" fill="rgb(212,47,37)" fg:x="254274" fg:w="106"/><text x="70.4408%" y="623.50"></text></g><g><title>__update_idle_core (92 samples, 0.03%)</title><rect x="70.1947%" y="597" width="0.0254%" height="15" fill="rgb(254,16,10)" fg:x="254288" fg:w="92"/><text x="70.4447%" y="607.50"></text></g><g><title>psi_task_change (618 samples, 0.17%)</title><rect x="70.2201%" y="613" width="0.1706%" height="15" fill="rgb(223,228,16)" fg:x="254380" fg:w="618"/><text x="70.4701%" y="623.50"></text></g><g><title>psi_group_change (529 samples, 0.15%)</title><rect x="70.2447%" y="597" width="0.1460%" height="15" fill="rgb(249,108,50)" fg:x="254469" fg:w="529"/><text x="70.4947%" y="607.50"></text></g><g><title>record_times (154 samples, 0.04%)</title><rect x="70.3482%" y="581" width="0.0425%" height="15" fill="rgb(208,220,5)" fg:x="254844" fg:w="154"/><text x="70.5982%" y="591.50"></text></g><g><title>sched_clock_cpu (107 samples, 0.03%)</title><rect x="70.3611%" y="565" width="0.0295%" height="15" fill="rgb(217,89,48)" fg:x="254891" fg:w="107"/><text x="70.6111%" y="575.50"></text></g><g><title>sched_clock (89 samples, 0.02%)</title><rect x="70.3661%" y="549" width="0.0246%" height="15" fill="rgb(212,113,41)" fg:x="254909" fg:w="89"/><text x="70.6161%" y="559.50"></text></g><g><title>native_sched_clock (82 samples, 0.02%)</title><rect x="70.3680%" y="533" width="0.0226%" height="15" fill="rgb(231,127,5)" fg:x="254916" fg:w="82"/><text x="70.6180%" y="543.50"></text></g><g><title>psi_task_switch (77 samples, 0.02%)</title><rect x="70.3907%" y="613" width="0.0213%" height="15" fill="rgb(217,141,17)" fg:x="254998" fg:w="77"/><text x="70.6407%" y="623.50"></text></g><g><title>psi_group_change (53 samples, 0.01%)</title><rect x="70.3973%" y="597" width="0.0146%" height="15" fill="rgb(245,125,54)" fg:x="255022" fg:w="53"/><text x="70.6473%" y="607.50"></text></g><g><title>__btrfs_tree_lock (10,840 samples, 2.99%)</title><rect x="67.4447%" y="661" width="2.9923%" height="15" fill="rgb(248,125,3)" fg:x="244326" fg:w="10840"/><text x="67.6947%" y="671.50">__b..</text></g><g><title>schedule (3,040 samples, 0.84%)</title><rect x="69.5979%" y="645" width="0.8392%" height="15" fill="rgb(236,119,51)" fg:x="252126" fg:w="3040"/><text x="69.8479%" y="655.50"></text></g><g><title>__schedule (2,998 samples, 0.83%)</title><rect x="69.6095%" y="629" width="0.8276%" height="15" fill="rgb(239,99,8)" fg:x="252168" fg:w="2998"/><text x="69.8595%" y="639.50"></text></g><g><title>update_rq_clock (58 samples, 0.02%)</title><rect x="70.4211%" y="613" width="0.0160%" height="15" fill="rgb(224,228,4)" fg:x="255108" fg:w="58"/><text x="70.6711%" y="623.50"></text></g><g><title>sched_clock_cpu (44 samples, 0.01%)</title><rect x="70.4249%" y="597" width="0.0121%" height="15" fill="rgb(220,131,45)" fg:x="255122" fg:w="44"/><text x="70.6749%" y="607.50"></text></g><g><title>sched_clock (40 samples, 0.01%)</title><rect x="70.4260%" y="581" width="0.0110%" height="15" fill="rgb(215,62,5)" fg:x="255126" fg:w="40"/><text x="70.6760%" y="591.50"></text></g><g><title>native_sched_clock (38 samples, 0.01%)</title><rect x="70.4266%" y="565" width="0.0105%" height="15" fill="rgb(253,12,24)" fg:x="255128" fg:w="38"/><text x="70.6766%" y="575.50"></text></g><g><title>btrfs_lock_root_node (10,871 samples, 3.00%)</title><rect x="67.4431%" y="677" width="3.0009%" height="15" fill="rgb(248,120,50)" fg:x="244320" fg:w="10871"/><text x="67.6931%" y="687.50">btr..</text></g><g><title>btrfs_set_path_blocking (59 samples, 0.02%)</title><rect x="70.4440%" y="677" width="0.0163%" height="15" fill="rgb(245,194,10)" fg:x="255191" fg:w="59"/><text x="70.6940%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (325 samples, 0.09%)</title><rect x="70.4677%" y="677" width="0.0897%" height="15" fill="rgb(241,149,38)" fg:x="255277" fg:w="325"/><text x="70.7177%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (296 samples, 0.08%)</title><rect x="70.4757%" y="661" width="0.0817%" height="15" fill="rgb(219,215,7)" fg:x="255306" fg:w="296"/><text x="70.7257%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (308 samples, 0.09%)</title><rect x="70.5640%" y="677" width="0.0850%" height="15" fill="rgb(208,120,31)" fg:x="255626" fg:w="308"/><text x="70.8140%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (55 samples, 0.02%)</title><rect x="70.6604%" y="661" width="0.0152%" height="15" fill="rgb(244,30,8)" fg:x="255975" fg:w="55"/><text x="70.9104%" y="671.50"></text></g><g><title>verify_parent_transid (41 samples, 0.01%)</title><rect x="70.6642%" y="645" width="0.0113%" height="15" fill="rgb(238,35,44)" fg:x="255989" fg:w="41"/><text x="70.9142%" y="655.50"></text></g><g><title>btrfs_get_64 (58 samples, 0.02%)</title><rect x="70.6756%" y="661" width="0.0160%" height="15" fill="rgb(243,218,37)" fg:x="256030" fg:w="58"/><text x="70.9256%" y="671.50"></text></g><g><title>__radix_tree_lookup (183 samples, 0.05%)</title><rect x="70.7214%" y="645" width="0.0505%" height="15" fill="rgb(218,169,10)" fg:x="256196" fg:w="183"/><text x="70.9714%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (66 samples, 0.02%)</title><rect x="70.7719%" y="645" width="0.0182%" height="15" fill="rgb(221,144,10)" fg:x="256379" fg:w="66"/><text x="71.0219%" y="655.50"></text></g><g><title>mark_page_accessed (56 samples, 0.02%)</title><rect x="70.7747%" y="629" width="0.0155%" height="15" fill="rgb(226,41,38)" fg:x="256389" fg:w="56"/><text x="71.0247%" y="639.50"></text></g><g><title>find_extent_buffer (339 samples, 0.09%)</title><rect x="70.6971%" y="661" width="0.0936%" height="15" fill="rgb(228,3,1)" fg:x="256108" fg:w="339"/><text x="70.9471%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (559 samples, 0.15%)</title><rect x="70.6491%" y="677" width="0.1543%" height="15" fill="rgb(209,129,12)" fg:x="255934" fg:w="559"/><text x="70.8991%" y="687.50"></text></g><g><title>read_extent_buffer (46 samples, 0.01%)</title><rect x="70.7907%" y="661" width="0.0127%" height="15" fill="rgb(213,136,33)" fg:x="256447" fg:w="46"/><text x="71.0407%" y="671.50"></text></g><g><title>__radix_tree_lookup (54 samples, 0.01%)</title><rect x="70.8315%" y="645" width="0.0149%" height="15" fill="rgb(209,181,29)" fg:x="256595" fg:w="54"/><text x="71.0815%" y="655.50"></text></g><g><title>find_extent_buffer (120 samples, 0.03%)</title><rect x="70.8219%" y="661" width="0.0331%" height="15" fill="rgb(234,173,18)" fg:x="256560" fg:w="120"/><text x="71.0719%" y="671.50"></text></g><g><title>reada_for_balance (200 samples, 0.06%)</title><rect x="70.8034%" y="677" width="0.0552%" height="15" fill="rgb(227,73,47)" fg:x="256493" fg:w="200"/><text x="71.0534%" y="687.50"></text></g><g><title>__list_del_entry_valid (87 samples, 0.02%)</title><rect x="70.8992%" y="613" width="0.0240%" height="15" fill="rgb(234,9,34)" fg:x="256840" fg:w="87"/><text x="71.1492%" y="623.50"></text></g><g><title>_raw_spin_lock (189 samples, 0.05%)</title><rect x="71.0479%" y="597" width="0.0522%" height="15" fill="rgb(235,172,15)" fg:x="257379" fg:w="189"/><text x="71.2979%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (127 samples, 0.04%)</title><rect x="71.0651%" y="581" width="0.0351%" height="15" fill="rgb(245,61,2)" fg:x="257441" fg:w="127"/><text x="71.3151%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (136 samples, 0.04%)</title><rect x="71.1001%" y="597" width="0.0375%" height="15" fill="rgb(238,39,47)" fg:x="257568" fg:w="136"/><text x="71.3501%" y="607.50"></text></g><g><title>available_idle_cpu (193 samples, 0.05%)</title><rect x="71.2265%" y="581" width="0.0533%" height="15" fill="rgb(234,37,24)" fg:x="258026" fg:w="193"/><text x="71.4765%" y="591.50"></text></g><g><title>cpumask_next_wrap (53 samples, 0.01%)</title><rect x="71.2878%" y="581" width="0.0146%" height="15" fill="rgb(248,223,24)" fg:x="258248" fg:w="53"/><text x="71.5378%" y="591.50"></text></g><g><title>select_task_rq_fair (745 samples, 0.21%)</title><rect x="71.1415%" y="597" width="0.2057%" height="15" fill="rgb(223,12,15)" fg:x="257718" fg:w="745"/><text x="71.3915%" y="607.50"></text></g><g><title>update_cfs_rq_h_load (123 samples, 0.03%)</title><rect x="71.3132%" y="581" width="0.0340%" height="15" fill="rgb(249,6,3)" fg:x="258340" fg:w="123"/><text x="71.5632%" y="591.50"></text></g><g><title>migrate_task_rq_fair (42 samples, 0.01%)</title><rect x="71.3571%" y="581" width="0.0116%" height="15" fill="rgb(237,105,33)" fg:x="258499" fg:w="42"/><text x="71.6071%" y="591.50"></text></g><g><title>set_task_cpu (80 samples, 0.02%)</title><rect x="71.3472%" y="597" width="0.0221%" height="15" fill="rgb(252,208,35)" fg:x="258463" fg:w="80"/><text x="71.5972%" y="607.50"></text></g><g><title>update_cfs_group (54 samples, 0.01%)</title><rect x="71.4910%" y="549" width="0.0149%" height="15" fill="rgb(215,181,35)" fg:x="258984" fg:w="54"/><text x="71.7410%" y="559.50"></text></g><g><title>update_curr (74 samples, 0.02%)</title><rect x="71.5059%" y="549" width="0.0204%" height="15" fill="rgb(246,212,3)" fg:x="259038" fg:w="74"/><text x="71.7559%" y="559.50"></text></g><g><title>__update_load_avg_cfs_rq (52 samples, 0.01%)</title><rect x="71.5581%" y="533" width="0.0144%" height="15" fill="rgb(247,156,24)" fg:x="259227" fg:w="52"/><text x="71.8081%" y="543.50"></text></g><g><title>enqueue_entity (621 samples, 0.17%)</title><rect x="71.4176%" y="565" width="0.1714%" height="15" fill="rgb(248,9,31)" fg:x="258718" fg:w="621"/><text x="71.6676%" y="575.50"></text></g><g><title>update_load_avg (227 samples, 0.06%)</title><rect x="71.5263%" y="549" width="0.0627%" height="15" fill="rgb(234,26,45)" fg:x="259112" fg:w="227"/><text x="71.7763%" y="559.50"></text></g><g><title>enqueue_task_fair (793 samples, 0.22%)</title><rect x="71.3875%" y="581" width="0.2189%" height="15" fill="rgb(249,11,32)" fg:x="258609" fg:w="793"/><text x="71.6375%" y="591.50"></text></g><g><title>ttwu_do_activate (1,663 samples, 0.46%)</title><rect x="71.3693%" y="597" width="0.4591%" height="15" fill="rgb(249,162,33)" fg:x="258543" fg:w="1663"/><text x="71.6193%" y="607.50"></text></g><g><title>psi_task_change (804 samples, 0.22%)</title><rect x="71.6064%" y="581" width="0.2219%" height="15" fill="rgb(232,4,32)" fg:x="259402" fg:w="804"/><text x="71.8564%" y="591.50"></text></g><g><title>psi_group_change (726 samples, 0.20%)</title><rect x="71.6279%" y="565" width="0.2004%" height="15" fill="rgb(212,5,45)" fg:x="259480" fg:w="726"/><text x="71.8779%" y="575.50"></text></g><g><title>record_times (126 samples, 0.03%)</title><rect x="71.7935%" y="549" width="0.0348%" height="15" fill="rgb(227,95,13)" fg:x="260080" fg:w="126"/><text x="72.0435%" y="559.50"></text></g><g><title>sched_clock_cpu (87 samples, 0.02%)</title><rect x="71.8043%" y="533" width="0.0240%" height="15" fill="rgb(223,205,10)" fg:x="260119" fg:w="87"/><text x="72.0543%" y="543.50"></text></g><g><title>sched_clock (74 samples, 0.02%)</title><rect x="71.8079%" y="517" width="0.0204%" height="15" fill="rgb(222,178,8)" fg:x="260132" fg:w="74"/><text x="72.0579%" y="527.50"></text></g><g><title>native_sched_clock (66 samples, 0.02%)</title><rect x="71.8101%" y="501" width="0.0182%" height="15" fill="rgb(216,13,22)" fg:x="260140" fg:w="66"/><text x="72.0601%" y="511.50"></text></g><g><title>resched_curr (53 samples, 0.01%)</title><rect x="71.8526%" y="565" width="0.0146%" height="15" fill="rgb(240,167,12)" fg:x="260294" fg:w="53"/><text x="72.1026%" y="575.50"></text></g><g><title>ttwu_do_wakeup (142 samples, 0.04%)</title><rect x="71.8283%" y="597" width="0.0392%" height="15" fill="rgb(235,68,35)" fg:x="260206" fg:w="142"/><text x="72.0783%" y="607.50"></text></g><g><title>check_preempt_curr (128 samples, 0.04%)</title><rect x="71.8322%" y="581" width="0.0353%" height="15" fill="rgb(253,40,27)" fg:x="260220" fg:w="128"/><text x="72.0822%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (76 samples, 0.02%)</title><rect x="71.8675%" y="597" width="0.0210%" height="15" fill="rgb(214,19,28)" fg:x="260348" fg:w="76"/><text x="72.1175%" y="607.50"></text></g><g><title>__wake_up_common (3,815 samples, 1.05%)</title><rect x="70.8754%" y="645" width="1.0531%" height="15" fill="rgb(210,167,45)" fg:x="256754" fg:w="3815"/><text x="71.1254%" y="655.50"></text></g><g><title>autoremove_wake_function (3,748 samples, 1.03%)</title><rect x="70.8939%" y="629" width="1.0346%" height="15" fill="rgb(232,97,40)" fg:x="256821" fg:w="3748"/><text x="71.1439%" y="639.50"></text></g><g><title>try_to_wake_up (3,641 samples, 1.01%)</title><rect x="70.9235%" y="613" width="1.0051%" height="15" fill="rgb(250,35,23)" fg:x="256928" fg:w="3641"/><text x="71.1735%" y="623.50"></text></g><g><title>update_rq_clock (145 samples, 0.04%)</title><rect x="71.8885%" y="597" width="0.0400%" height="15" fill="rgb(248,47,53)" fg:x="260424" fg:w="145"/><text x="72.1385%" y="607.50"></text></g><g><title>sched_clock_cpu (48 samples, 0.01%)</title><rect x="71.9153%" y="581" width="0.0133%" height="15" fill="rgb(226,58,50)" fg:x="260521" fg:w="48"/><text x="72.1653%" y="591.50"></text></g><g><title>sched_clock (42 samples, 0.01%)</title><rect x="71.9169%" y="565" width="0.0116%" height="15" fill="rgb(217,105,26)" fg:x="260527" fg:w="42"/><text x="72.1669%" y="575.50"></text></g><g><title>native_sched_clock (40 samples, 0.01%)</title><rect x="71.9175%" y="549" width="0.0110%" height="15" fill="rgb(208,64,1)" fg:x="260529" fg:w="40"/><text x="72.1675%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (103 samples, 0.03%)</title><rect x="71.9285%" y="645" width="0.0284%" height="15" fill="rgb(214,80,1)" fg:x="260569" fg:w="103"/><text x="72.1785%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (85 samples, 0.02%)</title><rect x="71.9335%" y="629" width="0.0235%" height="15" fill="rgb(206,175,26)" fg:x="260587" fg:w="85"/><text x="72.1835%" y="639.50"></text></g><g><title>__wake_up_common_lock (3,952 samples, 1.09%)</title><rect x="70.8732%" y="661" width="1.0909%" height="15" fill="rgb(235,156,37)" fg:x="256746" fg:w="3952"/><text x="71.1232%" y="671.50"></text></g><g><title>btrfs_search_slot (20,477 samples, 5.65%)</title><rect x="66.3281%" y="693" width="5.6526%" height="15" fill="rgb(213,100,9)" fg:x="240281" fg:w="20477"/><text x="66.5781%" y="703.50">btrfs_s..</text></g><g><title>unlock_up (4,065 samples, 1.12%)</title><rect x="70.8586%" y="677" width="1.1221%" height="15" fill="rgb(241,15,13)" fg:x="256693" fg:w="4065"/><text x="71.1086%" y="687.50"></text></g><g><title>btrfs_tree_unlock (60 samples, 0.02%)</title><rect x="71.9641%" y="661" width="0.0166%" height="15" fill="rgb(205,97,43)" fg:x="260698" fg:w="60"/><text x="72.2141%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (20,805 samples, 5.74%)</title><rect x="66.2578%" y="709" width="5.7431%" height="15" fill="rgb(216,106,32)" fg:x="240026" fg:w="20805"/><text x="66.5078%" y="719.50">btrfs_l..</text></g><g><title>crc32c (73 samples, 0.02%)</title><rect x="71.9807%" y="693" width="0.0202%" height="15" fill="rgb(226,200,8)" fg:x="260758" fg:w="73"/><text x="72.2307%" y="703.50"></text></g><g><title>_raw_spin_lock (38 samples, 0.01%)</title><rect x="72.0809%" y="629" width="0.0105%" height="15" fill="rgb(244,54,29)" fg:x="261121" fg:w="38"/><text x="72.3309%" y="639.50"></text></g><g><title>select_task_rq_fair (156 samples, 0.04%)</title><rect x="72.0997%" y="629" width="0.0431%" height="15" fill="rgb(252,169,12)" fg:x="261189" fg:w="156"/><text x="72.3497%" y="639.50"></text></g><g><title>update_cfs_rq_h_load (42 samples, 0.01%)</title><rect x="72.1311%" y="613" width="0.0116%" height="15" fill="rgb(231,199,11)" fg:x="261303" fg:w="42"/><text x="72.3811%" y="623.50"></text></g><g><title>enqueue_entity (169 samples, 0.05%)</title><rect x="72.1587%" y="597" width="0.0467%" height="15" fill="rgb(233,191,18)" fg:x="261403" fg:w="169"/><text x="72.4087%" y="607.50"></text></g><g><title>update_load_avg (55 samples, 0.02%)</title><rect x="72.1902%" y="581" width="0.0152%" height="15" fill="rgb(215,83,47)" fg:x="261517" fg:w="55"/><text x="72.4402%" y="591.50"></text></g><g><title>enqueue_task_fair (200 samples, 0.06%)</title><rect x="72.1510%" y="613" width="0.0552%" height="15" fill="rgb(251,67,19)" fg:x="261375" fg:w="200"/><text x="72.4010%" y="623.50"></text></g><g><title>ttwu_do_activate (437 samples, 0.12%)</title><rect x="72.1460%" y="629" width="0.1206%" height="15" fill="rgb(240,7,20)" fg:x="261357" fg:w="437"/><text x="72.3960%" y="639.50"></text></g><g><title>psi_task_change (219 samples, 0.06%)</title><rect x="72.2062%" y="613" width="0.0605%" height="15" fill="rgb(210,150,26)" fg:x="261575" fg:w="219"/><text x="72.4562%" y="623.50"></text></g><g><title>psi_group_change (198 samples, 0.05%)</title><rect x="72.2120%" y="597" width="0.0547%" height="15" fill="rgb(228,75,42)" fg:x="261596" fg:w="198"/><text x="72.4620%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (39 samples, 0.01%)</title><rect x="72.2763%" y="629" width="0.0108%" height="15" fill="rgb(237,134,48)" fg:x="261829" fg:w="39"/><text x="72.5263%" y="639.50"></text></g><g><title>__wake_up_common (1,050 samples, 0.29%)</title><rect x="72.0083%" y="677" width="0.2898%" height="15" fill="rgb(205,80,50)" fg:x="260858" fg:w="1050"/><text x="72.2583%" y="687.50"></text></g><g><title>autoremove_wake_function (1,015 samples, 0.28%)</title><rect x="72.0180%" y="661" width="0.2802%" height="15" fill="rgb(217,74,48)" fg:x="260893" fg:w="1015"/><text x="72.2680%" y="671.50"></text></g><g><title>try_to_wake_up (995 samples, 0.27%)</title><rect x="72.0235%" y="645" width="0.2747%" height="15" fill="rgb(205,82,50)" fg:x="260913" fg:w="995"/><text x="72.2735%" y="655.50"></text></g><g><title>update_rq_clock (40 samples, 0.01%)</title><rect x="72.2871%" y="629" width="0.0110%" height="15" fill="rgb(228,1,33)" fg:x="261868" fg:w="40"/><text x="72.5371%" y="639.50"></text></g><g><title>__wake_up_common_lock (1,072 samples, 0.30%)</title><rect x="72.0064%" y="693" width="0.2959%" height="15" fill="rgb(214,50,23)" fg:x="260851" fg:w="1072"/><text x="72.2564%" y="703.50"></text></g><g><title>btrfs_tree_unlock (40 samples, 0.01%)</title><rect x="72.3023%" y="693" width="0.0110%" height="15" fill="rgb(210,62,9)" fg:x="261923" fg:w="40"/><text x="72.5523%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (59 samples, 0.02%)</title><rect x="72.3136%" y="693" width="0.0163%" height="15" fill="rgb(210,104,37)" fg:x="261964" fg:w="59"/><text x="72.5636%" y="703.50"></text></g><g><title>btrfs_release_path (1,213 samples, 0.33%)</title><rect x="72.0009%" y="709" width="0.3348%" height="15" fill="rgb(232,104,43)" fg:x="260831" fg:w="1213"/><text x="72.2509%" y="719.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (51 samples, 0.01%)</title><rect x="72.3445%" y="677" width="0.0141%" height="15" fill="rgb(244,52,6)" fg:x="262076" fg:w="51"/><text x="72.5945%" y="687.50"></text></g><g><title>fill_stack_inode_item (79 samples, 0.02%)</title><rect x="72.3674%" y="677" width="0.0218%" height="15" fill="rgb(211,174,52)" fg:x="262159" fg:w="79"/><text x="72.6174%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (206 samples, 0.06%)</title><rect x="72.3407%" y="693" width="0.0569%" height="15" fill="rgb(229,48,4)" fg:x="262062" fg:w="206"/><text x="72.5907%" y="703.50"></text></g><g><title>btrfs_update_inode (288 samples, 0.08%)</title><rect x="72.3357%" y="709" width="0.0795%" height="15" fill="rgb(205,155,16)" fg:x="262044" fg:w="288"/><text x="72.5857%" y="719.50"></text></g><g><title>btrfs_update_root_times (64 samples, 0.02%)</title><rect x="72.3975%" y="693" width="0.0177%" height="15" fill="rgb(211,141,53)" fg:x="262268" fg:w="64"/><text x="72.6475%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (37 samples, 0.01%)</title><rect x="72.4050%" y="677" width="0.0102%" height="15" fill="rgb(240,148,11)" fg:x="262295" fg:w="37"/><text x="72.6550%" y="687.50"></text></g><g><title>kmem_cache_alloc (44 samples, 0.01%)</title><rect x="72.4185%" y="709" width="0.0121%" height="15" fill="rgb(214,45,23)" fg:x="262344" fg:w="44"/><text x="72.6685%" y="719.50"></text></g><g><title>__btrfs_unlink_inode (28,108 samples, 7.76%)</title><rect x="64.6824%" y="725" width="7.7590%" height="15" fill="rgb(248,74,26)" fg:x="234319" fg:w="28108"/><text x="64.9324%" y="735.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (39 samples, 0.01%)</title><rect x="72.4307%" y="709" width="0.0108%" height="15" fill="rgb(218,121,16)" fg:x="262388" fg:w="39"/><text x="72.6807%" y="719.50"></text></g><g><title>__queue_work (63 samples, 0.02%)</title><rect x="72.4530%" y="693" width="0.0174%" height="15" fill="rgb(218,10,47)" fg:x="262469" fg:w="63"/><text x="72.7030%" y="703.50"></text></g><g><title>try_to_wake_up (45 samples, 0.01%)</title><rect x="72.4580%" y="677" width="0.0124%" height="15" fill="rgb(227,99,14)" fg:x="262487" fg:w="45"/><text x="72.7080%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (106 samples, 0.03%)</title><rect x="72.4414%" y="725" width="0.0293%" height="15" fill="rgb(229,83,46)" fg:x="262427" fg:w="106"/><text x="72.6914%" y="735.50"></text></g><g><title>queue_work_on (66 samples, 0.02%)</title><rect x="72.4525%" y="709" width="0.0182%" height="15" fill="rgb(228,25,1)" fg:x="262467" fg:w="66"/><text x="72.7025%" y="719.50"></text></g><g><title>__wake_up_common (152 samples, 0.04%)</title><rect x="72.4883%" y="645" width="0.0420%" height="15" fill="rgb(252,190,15)" fg:x="262597" fg:w="152"/><text x="72.7383%" y="655.50"></text></g><g><title>autoremove_wake_function (147 samples, 0.04%)</title><rect x="72.4897%" y="629" width="0.0406%" height="15" fill="rgb(213,103,51)" fg:x="262602" fg:w="147"/><text x="72.7397%" y="639.50"></text></g><g><title>try_to_wake_up (147 samples, 0.04%)</title><rect x="72.4897%" y="613" width="0.0406%" height="15" fill="rgb(220,38,44)" fg:x="262602" fg:w="147"/><text x="72.7397%" y="623.50"></text></g><g><title>__wake_up_common_lock (155 samples, 0.04%)</title><rect x="72.4883%" y="661" width="0.0428%" height="15" fill="rgb(210,45,26)" fg:x="262597" fg:w="155"/><text x="72.7383%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (90 samples, 0.02%)</title><rect x="72.5375%" y="661" width="0.0248%" height="15" fill="rgb(205,95,48)" fg:x="262775" fg:w="90"/><text x="72.7875%" y="671.50"></text></g><g><title>btrfs_free_path (325 samples, 0.09%)</title><rect x="72.4809%" y="693" width="0.0897%" height="15" fill="rgb(225,179,37)" fg:x="262570" fg:w="325"/><text x="72.7309%" y="703.50"></text></g><g><title>btrfs_release_path (313 samples, 0.09%)</title><rect x="72.4842%" y="677" width="0.0864%" height="15" fill="rgb(230,209,3)" fg:x="262582" fg:w="313"/><text x="72.7342%" y="687.50"></text></g><g><title>finish_wait (168 samples, 0.05%)</title><rect x="72.6302%" y="629" width="0.0464%" height="15" fill="rgb(248,12,46)" fg:x="263111" fg:w="168"/><text x="72.8802%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (158 samples, 0.04%)</title><rect x="72.6330%" y="613" width="0.0436%" height="15" fill="rgb(234,18,0)" fg:x="263121" fg:w="158"/><text x="72.8830%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (154 samples, 0.04%)</title><rect x="72.6341%" y="597" width="0.0425%" height="15" fill="rgb(238,197,14)" fg:x="263125" fg:w="154"/><text x="72.8841%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (651 samples, 0.18%)</title><rect x="72.6860%" y="613" width="0.1797%" height="15" fill="rgb(251,162,48)" fg:x="263313" fg:w="651"/><text x="72.9360%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (623 samples, 0.17%)</title><rect x="72.6937%" y="597" width="0.1720%" height="15" fill="rgb(237,73,42)" fg:x="263341" fg:w="623"/><text x="72.9437%" y="607.50"></text></g><g><title>prepare_to_wait_event (694 samples, 0.19%)</title><rect x="72.6766%" y="629" width="0.1916%" height="15" fill="rgb(211,108,8)" fg:x="263279" fg:w="694"/><text x="72.9266%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (243 samples, 0.07%)</title><rect x="72.8682%" y="629" width="0.0671%" height="15" fill="rgb(213,45,22)" fg:x="263973" fg:w="243"/><text x="73.1182%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (134 samples, 0.04%)</title><rect x="72.8983%" y="613" width="0.0370%" height="15" fill="rgb(252,154,5)" fg:x="264082" fg:w="134"/><text x="73.1483%" y="623.50"></text></g><g><title>dequeue_entity (72 samples, 0.02%)</title><rect x="72.9538%" y="581" width="0.0199%" height="15" fill="rgb(221,79,52)" fg:x="264283" fg:w="72"/><text x="73.2038%" y="591.50"></text></g><g><title>dequeue_task_fair (88 samples, 0.02%)</title><rect x="72.9518%" y="597" width="0.0243%" height="15" fill="rgb(229,220,36)" fg:x="264276" fg:w="88"/><text x="73.2018%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.03%)</title><rect x="72.9786%" y="581" width="0.0271%" height="15" fill="rgb(211,17,16)" fg:x="264373" fg:w="98"/><text x="73.2286%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.03%)</title><rect x="72.9792%" y="565" width="0.0265%" height="15" fill="rgb(222,55,31)" fg:x="264375" fg:w="96"/><text x="73.2292%" y="575.50"></text></g><g><title>native_write_msr (96 samples, 0.03%)</title><rect x="72.9792%" y="549" width="0.0265%" height="15" fill="rgb(221,221,31)" fg:x="264375" fg:w="96"/><text x="73.2292%" y="559.50"></text></g><g><title>finish_task_switch (112 samples, 0.03%)</title><rect x="72.9761%" y="597" width="0.0309%" height="15" fill="rgb(227,168,26)" fg:x="264364" fg:w="112"/><text x="73.2261%" y="607.50"></text></g><g><title>psi_task_change (51 samples, 0.01%)</title><rect x="73.0150%" y="597" width="0.0141%" height="15" fill="rgb(224,139,9)" fg:x="264505" fg:w="51"/><text x="73.2650%" y="607.50"></text></g><g><title>psi_group_change (45 samples, 0.01%)</title><rect x="73.0167%" y="581" width="0.0124%" height="15" fill="rgb(254,172,0)" fg:x="264511" fg:w="45"/><text x="73.2667%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (1,518 samples, 0.42%)</title><rect x="72.6178%" y="645" width="0.4190%" height="15" fill="rgb(235,203,1)" fg:x="263066" fg:w="1518"/><text x="72.8678%" y="655.50"></text></g><g><title>schedule (368 samples, 0.10%)</title><rect x="72.9353%" y="629" width="0.1016%" height="15" fill="rgb(216,205,24)" fg:x="264216" fg:w="368"/><text x="73.1853%" y="639.50"></text></g><g><title>__schedule (362 samples, 0.10%)</title><rect x="72.9369%" y="613" width="0.0999%" height="15" fill="rgb(233,24,6)" fg:x="264222" fg:w="362"/><text x="73.1869%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (1,570 samples, 0.43%)</title><rect x="72.6164%" y="661" width="0.4334%" height="15" fill="rgb(244,110,9)" fg:x="263061" fg:w="1570"/><text x="72.8664%" y="671.50"></text></g><g><title>btrfs_root_node (47 samples, 0.01%)</title><rect x="73.0368%" y="645" width="0.0130%" height="15" fill="rgb(239,222,42)" fg:x="264584" fg:w="47"/><text x="73.2868%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (102 samples, 0.03%)</title><rect x="73.0840%" y="629" width="0.0282%" height="15" fill="rgb(218,145,13)" fg:x="264755" fg:w="102"/><text x="73.3340%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (37 samples, 0.01%)</title><rect x="73.1020%" y="613" width="0.0102%" height="15" fill="rgb(207,69,11)" fg:x="264820" fg:w="37"/><text x="73.3520%" y="623.50"></text></g><g><title>prepare_to_wait_event (158 samples, 0.04%)</title><rect x="73.0711%" y="645" width="0.0436%" height="15" fill="rgb(220,223,22)" fg:x="264708" fg:w="158"/><text x="73.3211%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (86 samples, 0.02%)</title><rect x="73.1147%" y="645" width="0.0237%" height="15" fill="rgb(245,102,5)" fg:x="264866" fg:w="86"/><text x="73.3647%" y="655.50"></text></g><g><title>__perf_event_task_sched_out (46 samples, 0.01%)</title><rect x="73.1575%" y="613" width="0.0127%" height="15" fill="rgb(211,148,2)" fg:x="265021" fg:w="46"/><text x="73.4075%" y="623.50"></text></g><g><title>update_curr (64 samples, 0.02%)</title><rect x="73.1917%" y="581" width="0.0177%" height="15" fill="rgb(241,13,44)" fg:x="265145" fg:w="64"/><text x="73.4417%" y="591.50"></text></g><g><title>dequeue_entity (167 samples, 0.05%)</title><rect x="73.1798%" y="597" width="0.0461%" height="15" fill="rgb(219,137,21)" fg:x="265102" fg:w="167"/><text x="73.4298%" y="607.50"></text></g><g><title>update_load_avg (60 samples, 0.02%)</title><rect x="73.2094%" y="581" width="0.0166%" height="15" fill="rgb(242,206,5)" fg:x="265209" fg:w="60"/><text x="73.4594%" y="591.50"></text></g><g><title>dequeue_task_fair (218 samples, 0.06%)</title><rect x="73.1727%" y="613" width="0.0602%" height="15" fill="rgb(217,114,22)" fg:x="265076" fg:w="218"/><text x="73.4227%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (216 samples, 0.06%)</title><rect x="73.2411%" y="597" width="0.0596%" height="15" fill="rgb(253,206,42)" fg:x="265324" fg:w="216"/><text x="73.4911%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (208 samples, 0.06%)</title><rect x="73.2433%" y="581" width="0.0574%" height="15" fill="rgb(236,102,18)" fg:x="265332" fg:w="208"/><text x="73.4933%" y="591.50"></text></g><g><title>native_write_msr (202 samples, 0.06%)</title><rect x="73.2450%" y="565" width="0.0558%" height="15" fill="rgb(208,59,49)" fg:x="265338" fg:w="202"/><text x="73.4950%" y="575.50"></text></g><g><title>finish_task_switch (254 samples, 0.07%)</title><rect x="73.2328%" y="613" width="0.0701%" height="15" fill="rgb(215,194,28)" fg:x="265294" fg:w="254"/><text x="73.4828%" y="623.50"></text></g><g><title>pick_next_task_fair (48 samples, 0.01%)</title><rect x="73.3030%" y="613" width="0.0133%" height="15" fill="rgb(243,207,11)" fg:x="265548" fg:w="48"/><text x="73.5530%" y="623.50"></text></g><g><title>psi_task_change (160 samples, 0.04%)</title><rect x="73.3248%" y="613" width="0.0442%" height="15" fill="rgb(254,179,35)" fg:x="265627" fg:w="160"/><text x="73.5748%" y="623.50"></text></g><g><title>psi_group_change (134 samples, 0.04%)</title><rect x="73.3319%" y="597" width="0.0370%" height="15" fill="rgb(235,97,3)" fg:x="265653" fg:w="134"/><text x="73.5819%" y="607.50"></text></g><g><title>psi_task_switch (49 samples, 0.01%)</title><rect x="73.3689%" y="613" width="0.0135%" height="15" fill="rgb(215,155,33)" fg:x="265787" fg:w="49"/><text x="73.6189%" y="623.50"></text></g><g><title>__btrfs_tree_lock (1,232 samples, 0.34%)</title><rect x="73.0498%" y="661" width="0.3401%" height="15" fill="rgb(223,128,12)" fg:x="264631" fg:w="1232"/><text x="73.2998%" y="671.50"></text></g><g><title>schedule (911 samples, 0.25%)</title><rect x="73.1384%" y="645" width="0.2515%" height="15" fill="rgb(208,157,18)" fg:x="264952" fg:w="911"/><text x="73.3884%" y="655.50"></text></g><g><title>__schedule (899 samples, 0.25%)</title><rect x="73.1417%" y="629" width="0.2482%" height="15" fill="rgb(249,70,54)" fg:x="264964" fg:w="899"/><text x="73.3917%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (61 samples, 0.02%)</title><rect x="73.3927%" y="661" width="0.0168%" height="15" fill="rgb(244,118,24)" fg:x="265873" fg:w="61"/><text x="73.6427%" y="671.50"></text></g><g><title>leaf_space_used (43 samples, 0.01%)</title><rect x="73.3976%" y="645" width="0.0119%" height="15" fill="rgb(211,54,0)" fg:x="265891" fg:w="43"/><text x="73.6476%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (99 samples, 0.03%)</title><rect x="73.4095%" y="661" width="0.0273%" height="15" fill="rgb(245,137,45)" fg:x="265934" fg:w="99"/><text x="73.6595%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (920 samples, 0.25%)</title><rect x="73.4368%" y="661" width="0.2540%" height="15" fill="rgb(232,154,31)" fg:x="266033" fg:w="920"/><text x="73.6868%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (903 samples, 0.25%)</title><rect x="73.4415%" y="645" width="0.2493%" height="15" fill="rgb(253,6,39)" fg:x="266050" fg:w="903"/><text x="73.6915%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (164 samples, 0.05%)</title><rect x="73.6455%" y="629" width="0.0453%" height="15" fill="rgb(234,183,24)" fg:x="266789" fg:w="164"/><text x="73.8955%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (200 samples, 0.06%)</title><rect x="73.6908%" y="661" width="0.0552%" height="15" fill="rgb(252,84,40)" fg:x="266953" fg:w="200"/><text x="73.9408%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (45 samples, 0.01%)</title><rect x="73.7537%" y="645" width="0.0124%" height="15" fill="rgb(224,65,2)" fg:x="267181" fg:w="45"/><text x="74.0037%" y="655.50"></text></g><g><title>verify_parent_transid (37 samples, 0.01%)</title><rect x="73.7559%" y="629" width="0.0102%" height="15" fill="rgb(229,38,24)" fg:x="267189" fg:w="37"/><text x="74.0059%" y="639.50"></text></g><g><title>__radix_tree_lookup (117 samples, 0.03%)</title><rect x="73.8120%" y="629" width="0.0323%" height="15" fill="rgb(218,131,50)" fg:x="267392" fg:w="117"/><text x="74.0620%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (52 samples, 0.01%)</title><rect x="73.8445%" y="629" width="0.0144%" height="15" fill="rgb(233,106,18)" fg:x="267510" fg:w="52"/><text x="74.0945%" y="639.50"></text></g><g><title>mark_page_accessed (41 samples, 0.01%)</title><rect x="73.8476%" y="613" width="0.0113%" height="15" fill="rgb(220,216,11)" fg:x="267521" fg:w="41"/><text x="74.0976%" y="623.50"></text></g><g><title>find_extent_buffer (290 samples, 0.08%)</title><rect x="73.7800%" y="645" width="0.0801%" height="15" fill="rgb(251,100,45)" fg:x="267276" fg:w="290"/><text x="74.0300%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (454 samples, 0.13%)</title><rect x="73.7460%" y="661" width="0.1253%" height="15" fill="rgb(235,143,32)" fg:x="267153" fg:w="454"/><text x="73.9960%" y="671.50"></text></g><g><title>read_extent_buffer (41 samples, 0.01%)</title><rect x="73.8600%" y="645" width="0.0113%" height="15" fill="rgb(248,124,34)" fg:x="267566" fg:w="41"/><text x="74.1100%" y="655.50"></text></g><g><title>__list_del_entry_valid (54 samples, 0.01%)</title><rect x="73.8981%" y="597" width="0.0149%" height="15" fill="rgb(225,221,4)" fg:x="267704" fg:w="54"/><text x="74.1481%" y="607.50"></text></g><g><title>_raw_spin_lock (161 samples, 0.04%)</title><rect x="73.9644%" y="581" width="0.0444%" height="15" fill="rgb(242,27,43)" fg:x="267944" fg:w="161"/><text x="74.2144%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath (118 samples, 0.03%)</title><rect x="73.9762%" y="565" width="0.0326%" height="15" fill="rgb(227,54,8)" fg:x="267987" fg:w="118"/><text x="74.2262%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (81 samples, 0.02%)</title><rect x="74.0088%" y="581" width="0.0224%" height="15" fill="rgb(253,139,49)" fg:x="268105" fg:w="81"/><text x="74.2588%" y="591.50"></text></g><g><title>available_idle_cpu (94 samples, 0.03%)</title><rect x="74.0880%" y="565" width="0.0259%" height="15" fill="rgb(231,26,43)" fg:x="268392" fg:w="94"/><text x="74.3380%" y="575.50"></text></g><g><title>select_task_rq_fair (442 samples, 0.12%)</title><rect x="74.0331%" y="581" width="0.1220%" height="15" fill="rgb(207,121,39)" fg:x="268193" fg:w="442"/><text x="74.2831%" y="591.50"></text></g><g><title>update_cfs_rq_h_load (73 samples, 0.02%)</title><rect x="74.1349%" y="565" width="0.0202%" height="15" fill="rgb(223,101,35)" fg:x="268562" fg:w="73"/><text x="74.3849%" y="575.50"></text></g><g><title>set_task_cpu (52 samples, 0.01%)</title><rect x="74.1551%" y="581" width="0.0144%" height="15" fill="rgb(232,87,23)" fg:x="268635" fg:w="52"/><text x="74.4051%" y="591.50"></text></g><g><title>update_curr (42 samples, 0.01%)</title><rect x="74.2542%" y="533" width="0.0116%" height="15" fill="rgb(225,180,29)" fg:x="268994" fg:w="42"/><text x="74.5042%" y="543.50"></text></g><g><title>enqueue_entity (376 samples, 0.10%)</title><rect x="74.1993%" y="549" width="0.1038%" height="15" fill="rgb(225,25,17)" fg:x="268795" fg:w="376"/><text x="74.4493%" y="559.50"></text></g><g><title>update_load_avg (135 samples, 0.04%)</title><rect x="74.2658%" y="533" width="0.0373%" height="15" fill="rgb(223,8,52)" fg:x="269036" fg:w="135"/><text x="74.5158%" y="543.50"></text></g><g><title>enqueue_task_fair (514 samples, 0.14%)</title><rect x="74.1791%" y="565" width="0.1419%" height="15" fill="rgb(246,42,21)" fg:x="268722" fg:w="514"/><text x="74.4291%" y="575.50"></text></g><g><title>ttwu_do_activate (1,073 samples, 0.30%)</title><rect x="74.1695%" y="581" width="0.2962%" height="15" fill="rgb(205,64,43)" fg:x="268687" fg:w="1073"/><text x="74.4195%" y="591.50"></text></g><g><title>psi_task_change (524 samples, 0.14%)</title><rect x="74.3210%" y="565" width="0.1446%" height="15" fill="rgb(221,160,13)" fg:x="269236" fg:w="524"/><text x="74.5710%" y="575.50"></text></g><g><title>psi_group_change (474 samples, 0.13%)</title><rect x="74.3348%" y="549" width="0.1308%" height="15" fill="rgb(239,58,35)" fg:x="269286" fg:w="474"/><text x="74.5848%" y="559.50"></text></g><g><title>record_times (74 samples, 0.02%)</title><rect x="74.4452%" y="533" width="0.0204%" height="15" fill="rgb(251,26,40)" fg:x="269686" fg:w="74"/><text x="74.6952%" y="543.50"></text></g><g><title>sched_clock_cpu (48 samples, 0.01%)</title><rect x="74.4524%" y="517" width="0.0133%" height="15" fill="rgb(247,0,4)" fg:x="269712" fg:w="48"/><text x="74.7024%" y="527.50"></text></g><g><title>ttwu_do_wakeup (83 samples, 0.02%)</title><rect x="74.4656%" y="581" width="0.0229%" height="15" fill="rgb(218,130,10)" fg:x="269760" fg:w="83"/><text x="74.7156%" y="591.50"></text></g><g><title>check_preempt_curr (72 samples, 0.02%)</title><rect x="74.4687%" y="565" width="0.0199%" height="15" fill="rgb(239,32,7)" fg:x="269771" fg:w="72"/><text x="74.7187%" y="575.50"></text></g><g><title>ttwu_queue_wakelist (43 samples, 0.01%)</title><rect x="74.4886%" y="581" width="0.0119%" height="15" fill="rgb(210,192,24)" fg:x="269843" fg:w="43"/><text x="74.7386%" y="591.50"></text></g><g><title>__wake_up_common (2,287 samples, 0.63%)</title><rect x="73.8901%" y="629" width="0.6313%" height="15" fill="rgb(226,212,17)" fg:x="267675" fg:w="2287"/><text x="74.1401%" y="639.50"></text></g><g><title>autoremove_wake_function (2,260 samples, 0.62%)</title><rect x="73.8975%" y="613" width="0.6239%" height="15" fill="rgb(219,201,28)" fg:x="267702" fg:w="2260"/><text x="74.1475%" y="623.50"></text></g><g><title>try_to_wake_up (2,204 samples, 0.61%)</title><rect x="73.9130%" y="597" width="0.6084%" height="15" fill="rgb(235,207,41)" fg:x="267758" fg:w="2204"/><text x="74.1630%" y="607.50"></text></g><g><title>update_rq_clock (76 samples, 0.02%)</title><rect x="74.5004%" y="581" width="0.0210%" height="15" fill="rgb(241,95,54)" fg:x="269886" fg:w="76"/><text x="74.7504%" y="591.50"></text></g><g><title>__wake_up_common_lock (2,325 samples, 0.64%)</title><rect x="73.8893%" y="645" width="0.6418%" height="15" fill="rgb(248,12,23)" fg:x="267672" fg:w="2325"/><text x="74.1393%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (43 samples, 0.01%)</title><rect x="74.5358%" y="645" width="0.0119%" height="15" fill="rgb(228,173,4)" fg:x="270014" fg:w="43"/><text x="74.7858%" y="655.50"></text></g><g><title>btrfs_search_slot (7,143 samples, 1.97%)</title><rect x="72.5794%" y="677" width="1.9718%" height="15" fill="rgb(254,99,5)" fg:x="262927" fg:w="7143"/><text x="72.8294%" y="687.50">b..</text></g><g><title>unlock_up (2,456 samples, 0.68%)</title><rect x="73.8733%" y="661" width="0.6780%" height="15" fill="rgb(212,184,17)" fg:x="267614" fg:w="2456"/><text x="74.1233%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (60 samples, 0.02%)</title><rect x="74.5808%" y="661" width="0.0166%" height="15" fill="rgb(252,174,1)" fg:x="270177" fg:w="60"/><text x="74.8308%" y="671.50"></text></g><g><title>leaf_space_used (53 samples, 0.01%)</title><rect x="74.5827%" y="645" width="0.0146%" height="15" fill="rgb(241,118,51)" fg:x="270184" fg:w="53"/><text x="74.8327%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (40 samples, 0.01%)</title><rect x="74.5973%" y="661" width="0.0110%" height="15" fill="rgb(227,94,47)" fg:x="270237" fg:w="40"/><text x="74.8473%" y="671.50"></text></g><g><title>btrfs_set_token_32 (41 samples, 0.01%)</title><rect x="74.6084%" y="661" width="0.0113%" height="15" fill="rgb(229,104,2)" fg:x="270277" fg:w="41"/><text x="74.8584%" y="671.50"></text></g><g><title>memmove_extent_buffer (49 samples, 0.01%)</title><rect x="74.6271%" y="661" width="0.0135%" height="15" fill="rgb(219,28,31)" fg:x="270345" fg:w="49"/><text x="74.8771%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (7,536 samples, 2.08%)</title><rect x="72.5706%" y="693" width="2.0803%" height="15" fill="rgb(233,109,36)" fg:x="262895" fg:w="7536"/><text x="72.8206%" y="703.50">b..</text></g><g><title>setup_items_for_insert (361 samples, 0.10%)</title><rect x="74.5512%" y="677" width="0.0997%" height="15" fill="rgb(246,88,11)" fg:x="270070" fg:w="361"/><text x="74.8012%" y="687.50"></text></g><g><title>write_extent_buffer (37 samples, 0.01%)</title><rect x="74.6407%" y="661" width="0.0102%" height="15" fill="rgb(209,212,17)" fg:x="270394" fg:w="37"/><text x="74.8907%" y="671.50"></text></g><g><title>kmem_cache_alloc (37 samples, 0.01%)</title><rect x="74.6509%" y="693" width="0.0102%" height="15" fill="rgb(243,59,29)" fg:x="270431" fg:w="37"/><text x="74.9009%" y="703.50"></text></g><g><title>btrfs_orphan_add (7,993 samples, 2.21%)</title><rect x="72.4740%" y="725" width="2.2064%" height="15" fill="rgb(244,205,48)" fg:x="262545" fg:w="7993"/><text x="72.7240%" y="735.50">b..</text></g><g><title>btrfs_insert_orphan_item (7,982 samples, 2.20%)</title><rect x="72.4770%" y="709" width="2.2034%" height="15" fill="rgb(227,30,6)" fg:x="262556" fg:w="7982"/><text x="72.7270%" y="719.50">b..</text></g><g><title>kmem_cache_free (70 samples, 0.02%)</title><rect x="74.6611%" y="693" width="0.0193%" height="15" fill="rgb(220,205,48)" fg:x="270468" fg:w="70"/><text x="74.9111%" y="703.50"></text></g><g><title>mutex_lock (55 samples, 0.02%)</title><rect x="74.6821%" y="709" width="0.0152%" height="15" fill="rgb(250,94,14)" fg:x="270544" fg:w="55"/><text x="74.9321%" y="719.50"></text></g><g><title>btrfs_record_unlink_dir (76 samples, 0.02%)</title><rect x="74.6804%" y="725" width="0.0210%" height="15" fill="rgb(216,119,42)" fg:x="270538" fg:w="76"/><text x="74.9304%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (50 samples, 0.01%)</title><rect x="74.7127%" y="693" width="0.0138%" height="15" fill="rgb(232,155,0)" fg:x="270655" fg:w="50"/><text x="74.9627%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (154 samples, 0.04%)</title><rect x="74.7061%" y="709" width="0.0425%" height="15" fill="rgb(212,24,32)" fg:x="270631" fg:w="154"/><text x="74.9561%" y="719.50"></text></g><g><title>btrfs_update_inode (189 samples, 0.05%)</title><rect x="74.7030%" y="725" width="0.0522%" height="15" fill="rgb(216,69,20)" fg:x="270620" fg:w="189"/><text x="74.9530%" y="735.50"></text></g><g><title>drop_nlink (44 samples, 0.01%)</title><rect x="74.7552%" y="725" width="0.0121%" height="15" fill="rgb(229,73,31)" fg:x="270809" fg:w="44"/><text x="75.0052%" y="735.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (78 samples, 0.02%)</title><rect x="74.8240%" y="661" width="0.0215%" height="15" fill="rgb(224,219,20)" fg:x="271058" fg:w="78"/><text x="75.0740%" y="671.50"></text></g><g><title>__reserve_bytes (209 samples, 0.06%)</title><rect x="74.8082%" y="677" width="0.0577%" height="15" fill="rgb(215,146,41)" fg:x="271001" fg:w="209"/><text x="75.0582%" y="687.50"></text></g><g><title>calc_available_free_space.isra.0 (74 samples, 0.02%)</title><rect x="74.8455%" y="661" width="0.0204%" height="15" fill="rgb(244,71,31)" fg:x="271136" fg:w="74"/><text x="75.0955%" y="671.50"></text></g><g><title>btrfs_reduce_alloc_profile (42 samples, 0.01%)</title><rect x="74.8543%" y="645" width="0.0116%" height="15" fill="rgb(224,24,11)" fg:x="271168" fg:w="42"/><text x="75.1043%" y="655.50"></text></g><g><title>btrfs_block_rsv_add (267 samples, 0.07%)</title><rect x="74.7925%" y="709" width="0.0737%" height="15" fill="rgb(229,76,15)" fg:x="270944" fg:w="267"/><text x="75.0425%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (240 samples, 0.07%)</title><rect x="74.7999%" y="693" width="0.0663%" height="15" fill="rgb(209,93,2)" fg:x="270971" fg:w="240"/><text x="75.0499%" y="703.50"></text></g><g><title>join_transaction (37 samples, 0.01%)</title><rect x="74.8687%" y="709" width="0.0102%" height="15" fill="rgb(216,200,50)" fg:x="271220" fg:w="37"/><text x="75.1187%" y="719.50"></text></g><g><title>kmem_cache_alloc (56 samples, 0.02%)</title><rect x="74.8789%" y="709" width="0.0155%" height="15" fill="rgb(211,67,34)" fg:x="271257" fg:w="56"/><text x="75.1289%" y="719.50"></text></g><g><title>btrfs_unlink (37,406 samples, 10.33%)</title><rect x="64.5808%" y="741" width="10.3257%" height="15" fill="rgb(225,87,47)" fg:x="233951" fg:w="37406"/><text x="64.8308%" y="751.50">btrfs_unlink</text></g><g><title>start_transaction (504 samples, 0.14%)</title><rect x="74.7674%" y="725" width="0.1391%" height="15" fill="rgb(217,185,16)" fg:x="270853" fg:w="504"/><text x="75.0174%" y="735.50"></text></g><g><title>wait_current_trans (44 samples, 0.01%)</title><rect x="74.8943%" y="709" width="0.0121%" height="15" fill="rgb(205,0,0)" fg:x="271313" fg:w="44"/><text x="75.1443%" y="719.50"></text></g><g><title>__srcu_read_lock (40 samples, 0.01%)</title><rect x="74.9316%" y="693" width="0.0110%" height="15" fill="rgb(207,116,45)" fg:x="271448" fg:w="40"/><text x="75.1816%" y="703.50"></text></g><g><title>dentry_unlink_inode (120 samples, 0.03%)</title><rect x="74.9128%" y="741" width="0.0331%" height="15" fill="rgb(221,156,26)" fg:x="271380" fg:w="120"/><text x="75.1628%" y="751.50"></text></g><g><title>fsnotify_destroy_marks (70 samples, 0.02%)</title><rect x="74.9266%" y="725" width="0.0193%" height="15" fill="rgb(213,140,4)" fg:x="271430" fg:w="70"/><text x="75.1766%" y="735.50"></text></g><g><title>fsnotify_grab_connector (59 samples, 0.02%)</title><rect x="74.9297%" y="709" width="0.0163%" height="15" fill="rgb(231,224,15)" fg:x="271441" fg:w="59"/><text x="75.1797%" y="719.50"></text></g><g><title>down_write (37 samples, 0.01%)</title><rect x="74.9460%" y="741" width="0.0102%" height="15" fill="rgb(244,76,20)" fg:x="271500" fg:w="37"/><text x="75.1960%" y="751.50"></text></g><g><title>fsnotify (75 samples, 0.02%)</title><rect x="74.9562%" y="741" width="0.0207%" height="15" fill="rgb(238,117,7)" fg:x="271537" fg:w="75"/><text x="75.2062%" y="751.50"></text></g><g><title>inode_permission.part.0 (43 samples, 0.01%)</title><rect x="74.9934%" y="725" width="0.0119%" height="15" fill="rgb(235,1,10)" fg:x="271672" fg:w="43"/><text x="75.2434%" y="735.50"></text></g><g><title>may_delete (52 samples, 0.01%)</title><rect x="74.9915%" y="741" width="0.0144%" height="15" fill="rgb(216,165,6)" fg:x="271665" fg:w="52"/><text x="75.2415%" y="751.50"></text></g><g><title>do_unlinkat (131,380 samples, 36.27%)</title><rect x="38.7458%" y="773" width="36.2667%" height="15" fill="rgb(246,91,35)" fg:x="140361" fg:w="131380"/><text x="38.9958%" y="783.50">do_unlinkat</text></g><g><title>vfs_unlink (37,838 samples, 10.44%)</title><rect x="64.5675%" y="757" width="10.4450%" height="15" fill="rgb(228,96,24)" fg:x="233903" fg:w="37838"/><text x="64.8175%" y="767.50">vfs_unlink</text></g><g><title>do_syscall_64 (142,673 samples, 39.38%)</title><rect x="35.6329%" y="789" width="39.3840%" height="15" fill="rgb(254,217,53)" fg:x="129084" fg:w="142673"/><text x="35.8829%" y="799.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (142,813 samples, 39.42%)</title><rect x="35.6285%" y="805" width="39.4227%" height="15" fill="rgb(209,60,0)" fg:x="129068" fg:w="142813"/><text x="35.8785%" y="815.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (124 samples, 0.03%)</title><rect x="75.0169%" y="789" width="0.0342%" height="15" fill="rgb(250,93,26)" fg:x="271757" fg:w="124"/><text x="75.2669%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (113 samples, 0.03%)</title><rect x="75.0199%" y="773" width="0.0312%" height="15" fill="rgb(211,9,40)" fg:x="271768" fg:w="113"/><text x="75.2699%" y="783.50"></text></g><g><title>switch_fpu_return (99 samples, 0.03%)</title><rect x="75.0238%" y="757" width="0.0273%" height="15" fill="rgb(242,57,20)" fg:x="271782" fg:w="99"/><text x="75.2738%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (67 samples, 0.02%)</title><rect x="75.0326%" y="741" width="0.0185%" height="15" fill="rgb(248,85,48)" fg:x="271814" fg:w="67"/><text x="75.2826%" y="751.50"></text></g><g><title>__GI_unlinkat (143,214 samples, 39.53%)</title><rect x="35.5302%" y="821" width="39.5334%" height="15" fill="rgb(212,117,2)" fg:x="128712" fg:w="143214"/><text x="35.7802%" y="831.50">__GI_unlinkat</text></g><g><title>__closedir (45 samples, 0.01%)</title><rect x="75.0669%" y="821" width="0.0124%" height="15" fill="rgb(243,19,3)" fg:x="271938" fg:w="45"/><text x="75.3169%" y="831.50"></text></g><g><title>__GI___fxstat (42 samples, 0.01%)</title><rect x="75.0942%" y="805" width="0.0116%" height="15" fill="rgb(232,217,24)" fg:x="272037" fg:w="42"/><text x="75.3442%" y="815.50"></text></g><g><title>__GI___libc_malloc (45 samples, 0.01%)</title><rect x="75.1080%" y="789" width="0.0124%" height="15" fill="rgb(224,175,40)" fg:x="272087" fg:w="45"/><text x="75.3580%" y="799.50"></text></g><g><title>_int_malloc (39 samples, 0.01%)</title><rect x="75.1097%" y="773" width="0.0108%" height="15" fill="rgb(212,162,32)" fg:x="272093" fg:w="39"/><text x="75.3597%" y="783.50"></text></g><g><title>__fdopendir (117 samples, 0.03%)</title><rect x="75.0890%" y="821" width="0.0323%" height="15" fill="rgb(215,9,4)" fg:x="272018" fg:w="117"/><text x="75.3390%" y="831.50"></text></g><g><title>__alloc_dir (56 samples, 0.02%)</title><rect x="75.1058%" y="805" width="0.0155%" height="15" fill="rgb(242,42,7)" fg:x="272079" fg:w="56"/><text x="75.3558%" y="815.50"></text></g><g><title>__libc_open64 (44 samples, 0.01%)</title><rect x="75.1213%" y="821" width="0.0121%" height="15" fill="rgb(242,184,45)" fg:x="272135" fg:w="44"/><text x="75.3713%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="75.1215%" y="805" width="0.0119%" height="15" fill="rgb(228,111,51)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="815.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="75.1215%" y="789" width="0.0119%" height="15" fill="rgb(236,147,17)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="799.50"></text></g><g><title>__x64_sys_openat (43 samples, 0.01%)</title><rect x="75.1215%" y="773" width="0.0119%" height="15" fill="rgb(210,75,22)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="783.50"></text></g><g><title>do_sys_openat2 (43 samples, 0.01%)</title><rect x="75.1215%" y="757" width="0.0119%" height="15" fill="rgb(217,159,45)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="767.50"></text></g><g><title>do_filp_open (43 samples, 0.01%)</title><rect x="75.1215%" y="741" width="0.0119%" height="15" fill="rgb(245,165,53)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="751.50"></text></g><g><title>path_openat (43 samples, 0.01%)</title><rect x="75.1215%" y="725" width="0.0119%" height="15" fill="rgb(251,190,50)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="735.50"></text></g><g><title>__alloc_file (46 samples, 0.01%)</title><rect x="75.1486%" y="693" width="0.0127%" height="15" fill="rgb(208,203,29)" fg:x="272234" fg:w="46"/><text x="75.3986%" y="703.50"></text></g><g><title>alloc_empty_file (50 samples, 0.01%)</title><rect x="75.1478%" y="709" width="0.0138%" height="15" fill="rgb(207,209,35)" fg:x="272231" fg:w="50"/><text x="75.3978%" y="719.50"></text></g><g><title>do_dentry_open (72 samples, 0.02%)</title><rect x="75.1638%" y="709" width="0.0199%" height="15" fill="rgb(230,144,49)" fg:x="272289" fg:w="72"/><text x="75.4138%" y="719.50"></text></g><g><title>do_filp_open (182 samples, 0.05%)</title><rect x="75.1450%" y="741" width="0.0502%" height="15" fill="rgb(229,31,6)" fg:x="272221" fg:w="182"/><text x="75.3950%" y="751.50"></text></g><g><title>path_openat (181 samples, 0.05%)</title><rect x="75.1453%" y="725" width="0.0500%" height="15" fill="rgb(251,129,24)" fg:x="272222" fg:w="181"/><text x="75.3953%" y="735.50"></text></g><g><title>__x64_sys_openat (236 samples, 0.07%)</title><rect x="75.1392%" y="773" width="0.0651%" height="15" fill="rgb(235,105,15)" fg:x="272200" fg:w="236"/><text x="75.3892%" y="783.50"></text></g><g><title>do_sys_openat2 (233 samples, 0.06%)</title><rect x="75.1400%" y="757" width="0.0643%" height="15" fill="rgb(216,52,43)" fg:x="272203" fg:w="233"/><text x="75.3900%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.07%)</title><rect x="75.1375%" y="805" width="0.0671%" height="15" fill="rgb(238,144,41)" fg:x="272194" fg:w="243"/><text x="75.3875%" y="815.50"></text></g><g><title>do_syscall_64 (241 samples, 0.07%)</title><rect x="75.1381%" y="789" width="0.0665%" height="15" fill="rgb(243,63,9)" fg:x="272196" fg:w="241"/><text x="75.3881%" y="799.50"></text></g><g><title>__libc_openat64 (259 samples, 0.07%)</title><rect x="75.1334%" y="821" width="0.0715%" height="15" fill="rgb(246,208,1)" fg:x="272179" fg:w="259"/><text x="75.3834%" y="831.50"></text></g><g><title>d_lru_add (105 samples, 0.03%)</title><rect x="75.2684%" y="741" width="0.0290%" height="15" fill="rgb(233,182,18)" fg:x="272668" fg:w="105"/><text x="75.5184%" y="751.50"></text></g><g><title>list_lru_add (101 samples, 0.03%)</title><rect x="75.2695%" y="725" width="0.0279%" height="15" fill="rgb(242,224,8)" fg:x="272672" fg:w="101"/><text x="75.5195%" y="735.50"></text></g><g><title>dput (178 samples, 0.05%)</title><rect x="75.2562%" y="757" width="0.0491%" height="15" fill="rgb(243,54,37)" fg:x="272624" fg:w="178"/><text x="75.5062%" y="767.50"></text></g><g><title>free_extent_buffer.part.0 (48 samples, 0.01%)</title><rect x="75.3286%" y="661" width="0.0133%" height="15" fill="rgb(233,192,12)" fg:x="272886" fg:w="48"/><text x="75.5786%" y="671.50"></text></g><g><title>btrfs_free_path (86 samples, 0.02%)</title><rect x="75.3217%" y="693" width="0.0237%" height="15" fill="rgb(251,192,53)" fg:x="272861" fg:w="86"/><text x="75.5717%" y="703.50"></text></g><g><title>btrfs_release_path (77 samples, 0.02%)</title><rect x="75.3241%" y="677" width="0.0213%" height="15" fill="rgb(246,141,26)" fg:x="272870" fg:w="77"/><text x="75.5741%" y="687.50"></text></g><g><title>finish_wait (187 samples, 0.05%)</title><rect x="75.3909%" y="629" width="0.0516%" height="15" fill="rgb(239,195,19)" fg:x="273112" fg:w="187"/><text x="75.6409%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (169 samples, 0.05%)</title><rect x="75.3959%" y="613" width="0.0467%" height="15" fill="rgb(241,16,39)" fg:x="273130" fg:w="169"/><text x="75.6459%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.04%)</title><rect x="75.3976%" y="597" width="0.0450%" height="15" fill="rgb(223,13,53)" fg:x="273136" fg:w="163"/><text x="75.6476%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (693 samples, 0.19%)</title><rect x="75.4544%" y="613" width="0.1913%" height="15" fill="rgb(214,227,0)" fg:x="273342" fg:w="693"/><text x="75.7044%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (677 samples, 0.19%)</title><rect x="75.4589%" y="597" width="0.1869%" height="15" fill="rgb(228,103,26)" fg:x="273358" fg:w="677"/><text x="75.7089%" y="607.50"></text></g><g><title>prepare_to_wait_event (751 samples, 0.21%)</title><rect x="75.4426%" y="629" width="0.2073%" height="15" fill="rgb(254,177,53)" fg:x="273299" fg:w="751"/><text x="75.6926%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (182 samples, 0.05%)</title><rect x="75.6499%" y="629" width="0.0502%" height="15" fill="rgb(208,201,34)" fg:x="274050" fg:w="182"/><text x="75.8999%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (121 samples, 0.03%)</title><rect x="75.6667%" y="613" width="0.0334%" height="15" fill="rgb(212,39,5)" fg:x="274111" fg:w="121"/><text x="75.9167%" y="623.50"></text></g><g><title>update_curr (44 samples, 0.01%)</title><rect x="75.7241%" y="565" width="0.0121%" height="15" fill="rgb(246,117,3)" fg:x="274319" fg:w="44"/><text x="75.9741%" y="575.50"></text></g><g><title>dequeue_entity (98 samples, 0.03%)</title><rect x="75.7178%" y="581" width="0.0271%" height="15" fill="rgb(244,118,39)" fg:x="274296" fg:w="98"/><text x="75.9678%" y="591.50"></text></g><g><title>dequeue_task_fair (118 samples, 0.03%)</title><rect x="75.7128%" y="597" width="0.0326%" height="15" fill="rgb(241,64,10)" fg:x="274278" fg:w="118"/><text x="75.9628%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (95 samples, 0.03%)</title><rect x="75.7476%" y="581" width="0.0262%" height="15" fill="rgb(229,39,44)" fg:x="274404" fg:w="95"/><text x="75.9976%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (91 samples, 0.03%)</title><rect x="75.7487%" y="565" width="0.0251%" height="15" fill="rgb(230,226,3)" fg:x="274408" fg:w="91"/><text x="75.9987%" y="575.50"></text></g><g><title>native_write_msr (90 samples, 0.02%)</title><rect x="75.7490%" y="549" width="0.0248%" height="15" fill="rgb(222,13,42)" fg:x="274409" fg:w="90"/><text x="75.9990%" y="559.50"></text></g><g><title>finish_task_switch (105 samples, 0.03%)</title><rect x="75.7454%" y="597" width="0.0290%" height="15" fill="rgb(247,180,54)" fg:x="274396" fg:w="105"/><text x="75.9954%" y="607.50"></text></g><g><title>psi_task_change (72 samples, 0.02%)</title><rect x="75.7835%" y="597" width="0.0199%" height="15" fill="rgb(205,96,16)" fg:x="274534" fg:w="72"/><text x="76.0335%" y="607.50"></text></g><g><title>psi_group_change (63 samples, 0.02%)</title><rect x="75.7860%" y="581" width="0.0174%" height="15" fill="rgb(205,100,21)" fg:x="274543" fg:w="63"/><text x="76.0360%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (1,564 samples, 0.43%)</title><rect x="75.3774%" y="645" width="0.4317%" height="15" fill="rgb(248,51,4)" fg:x="273063" fg:w="1564"/><text x="75.6274%" y="655.50"></text></g><g><title>schedule (395 samples, 0.11%)</title><rect x="75.7001%" y="629" width="0.1090%" height="15" fill="rgb(217,197,30)" fg:x="274232" fg:w="395"/><text x="75.9501%" y="639.50"></text></g><g><title>__schedule (387 samples, 0.11%)</title><rect x="75.7023%" y="613" width="0.1068%" height="15" fill="rgb(240,179,40)" fg:x="274240" fg:w="387"/><text x="75.9523%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (1,617 samples, 0.45%)</title><rect x="75.3741%" y="661" width="0.4464%" height="15" fill="rgb(212,185,35)" fg:x="273051" fg:w="1617"/><text x="75.6241%" y="671.50"></text></g><g><title>btrfs_root_node (41 samples, 0.01%)</title><rect x="75.8092%" y="645" width="0.0113%" height="15" fill="rgb(251,222,31)" fg:x="274627" fg:w="41"/><text x="76.0592%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (37 samples, 0.01%)</title><rect x="75.8437%" y="629" width="0.0102%" height="15" fill="rgb(208,140,36)" fg:x="274752" fg:w="37"/><text x="76.0937%" y="639.50"></text></g><g><title>prepare_to_wait_event (69 samples, 0.02%)</title><rect x="75.8370%" y="645" width="0.0190%" height="15" fill="rgb(220,148,1)" fg:x="274728" fg:w="69"/><text x="76.0870%" y="655.50"></text></g><g><title>dequeue_entity (64 samples, 0.02%)</title><rect x="75.8740%" y="597" width="0.0177%" height="15" fill="rgb(254,4,28)" fg:x="274862" fg:w="64"/><text x="76.1240%" y="607.50"></text></g><g><title>dequeue_task_fair (78 samples, 0.02%)</title><rect x="75.8721%" y="613" width="0.0215%" height="15" fill="rgb(222,185,44)" fg:x="274855" fg:w="78"/><text x="76.1221%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="75.8958%" y="597" width="0.0202%" height="15" fill="rgb(215,74,39)" fg:x="274941" fg:w="73"/><text x="76.1458%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.02%)</title><rect x="75.8964%" y="581" width="0.0196%" height="15" fill="rgb(247,86,4)" fg:x="274943" fg:w="71"/><text x="76.1464%" y="591.50"></text></g><g><title>native_write_msr (70 samples, 0.02%)</title><rect x="75.8967%" y="565" width="0.0193%" height="15" fill="rgb(231,105,32)" fg:x="274944" fg:w="70"/><text x="76.1467%" y="575.50"></text></g><g><title>finish_task_switch (82 samples, 0.02%)</title><rect x="75.8936%" y="613" width="0.0226%" height="15" fill="rgb(222,65,35)" fg:x="274933" fg:w="82"/><text x="76.1436%" y="623.50"></text></g><g><title>psi_task_change (53 samples, 0.01%)</title><rect x="75.9226%" y="613" width="0.0146%" height="15" fill="rgb(218,145,35)" fg:x="275038" fg:w="53"/><text x="76.1726%" y="623.50"></text></g><g><title>psi_group_change (46 samples, 0.01%)</title><rect x="75.9245%" y="597" width="0.0127%" height="15" fill="rgb(208,7,15)" fg:x="275045" fg:w="46"/><text x="76.1745%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (445 samples, 0.12%)</title><rect x="75.8205%" y="661" width="0.1228%" height="15" fill="rgb(209,83,13)" fg:x="274668" fg:w="445"/><text x="76.0705%" y="671.50"></text></g><g><title>schedule (295 samples, 0.08%)</title><rect x="75.8619%" y="645" width="0.0814%" height="15" fill="rgb(218,3,10)" fg:x="274818" fg:w="295"/><text x="76.1119%" y="655.50"></text></g><g><title>__schedule (291 samples, 0.08%)</title><rect x="75.8630%" y="629" width="0.0803%" height="15" fill="rgb(211,219,4)" fg:x="274822" fg:w="291"/><text x="76.1130%" y="639.50"></text></g><g><title>select_task_rq_fair (130 samples, 0.04%)</title><rect x="75.9723%" y="597" width="0.0359%" height="15" fill="rgb(228,194,12)" fg:x="275218" fg:w="130"/><text x="76.2223%" y="607.50"></text></g><g><title>enqueue_entity (75 samples, 0.02%)</title><rect x="76.0176%" y="565" width="0.0207%" height="15" fill="rgb(210,175,7)" fg:x="275382" fg:w="75"/><text x="76.2676%" y="575.50"></text></g><g><title>enqueue_task_fair (114 samples, 0.03%)</title><rect x="76.0118%" y="581" width="0.0315%" height="15" fill="rgb(243,132,6)" fg:x="275361" fg:w="114"/><text x="76.2618%" y="591.50"></text></g><g><title>ttwu_do_activate (251 samples, 0.07%)</title><rect x="76.0101%" y="597" width="0.0693%" height="15" fill="rgb(207,72,18)" fg:x="275355" fg:w="251"/><text x="76.2601%" y="607.50"></text></g><g><title>psi_task_change (130 samples, 0.04%)</title><rect x="76.0435%" y="581" width="0.0359%" height="15" fill="rgb(236,1,18)" fg:x="275476" fg:w="130"/><text x="76.2935%" y="591.50"></text></g><g><title>psi_group_change (112 samples, 0.03%)</title><rect x="76.0485%" y="565" width="0.0309%" height="15" fill="rgb(227,0,18)" fg:x="275494" fg:w="112"/><text x="76.2985%" y="575.50"></text></g><g><title>__wake_up_common (536 samples, 0.15%)</title><rect x="75.9447%" y="645" width="0.1480%" height="15" fill="rgb(247,37,5)" fg:x="275118" fg:w="536"/><text x="76.1947%" y="655.50"></text></g><g><title>autoremove_wake_function (531 samples, 0.15%)</title><rect x="75.9461%" y="629" width="0.1466%" height="15" fill="rgb(237,179,24)" fg:x="275123" fg:w="531"/><text x="76.1961%" y="639.50"></text></g><g><title>try_to_wake_up (521 samples, 0.14%)</title><rect x="75.9488%" y="613" width="0.1438%" height="15" fill="rgb(226,53,20)" fg:x="275133" fg:w="521"/><text x="76.1988%" y="623.50"></text></g><g><title>__wake_up_common_lock (545 samples, 0.15%)</title><rect x="75.9436%" y="661" width="0.1504%" height="15" fill="rgb(247,75,7)" fg:x="275114" fg:w="545"/><text x="76.1936%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (59 samples, 0.02%)</title><rect x="76.0979%" y="661" width="0.0163%" height="15" fill="rgb(233,96,12)" fg:x="275673" fg:w="59"/><text x="76.3479%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_read (38 samples, 0.01%)</title><rect x="76.1037%" y="645" width="0.0105%" height="15" fill="rgb(224,125,0)" fg:x="275694" fg:w="38"/><text x="76.3537%" y="655.50"></text></g><g><title>btrfs_tree_read_lock_atomic (178 samples, 0.05%)</title><rect x="76.1142%" y="661" width="0.0491%" height="15" fill="rgb(224,92,25)" fg:x="275732" fg:w="178"/><text x="76.3642%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (152 samples, 0.04%)</title><rect x="76.1214%" y="645" width="0.0420%" height="15" fill="rgb(224,42,24)" fg:x="275758" fg:w="152"/><text x="76.3714%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (69 samples, 0.02%)</title><rect x="76.1443%" y="629" width="0.0190%" height="15" fill="rgb(234,132,49)" fg:x="275841" fg:w="69"/><text x="76.3943%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (152 samples, 0.04%)</title><rect x="76.1744%" y="661" width="0.0420%" height="15" fill="rgb(248,100,35)" fg:x="275950" fg:w="152"/><text x="76.4244%" y="671.50"></text></g><g><title>btrfs_get_64 (41 samples, 0.01%)</title><rect x="76.2307%" y="645" width="0.0113%" height="15" fill="rgb(239,94,40)" fg:x="276154" fg:w="41"/><text x="76.4807%" y="655.50"></text></g><g><title>__radix_tree_lookup (119 samples, 0.03%)</title><rect x="76.2597%" y="629" width="0.0328%" height="15" fill="rgb(235,139,28)" fg:x="276259" fg:w="119"/><text x="76.5097%" y="639.50"></text></g><g><title>find_extent_buffer (197 samples, 0.05%)</title><rect x="76.2450%" y="645" width="0.0544%" height="15" fill="rgb(217,144,7)" fg:x="276206" fg:w="197"/><text x="76.4950%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (333 samples, 0.09%)</title><rect x="76.2163%" y="661" width="0.0919%" height="15" fill="rgb(227,55,4)" fg:x="276102" fg:w="333"/><text x="76.4663%" y="671.50"></text></g><g><title>btrfs_search_slot (3,496 samples, 0.97%)</title><rect x="75.3495%" y="677" width="0.9651%" height="15" fill="rgb(252,82,54)" fg:x="272962" fg:w="3496"/><text x="75.5995%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (3,537 samples, 0.98%)</title><rect x="75.3454%" y="693" width="0.9764%" height="15" fill="rgb(245,172,4)" fg:x="272947" fg:w="3537"/><text x="75.5954%" y="703.50"></text></g><g><title>btrfs_lookup (3,700 samples, 1.02%)</title><rect x="75.3131%" y="725" width="1.0214%" height="15" fill="rgb(207,26,27)" fg:x="272830" fg:w="3700"/><text x="75.5631%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (3,696 samples, 1.02%)</title><rect x="75.3142%" y="709" width="1.0203%" height="15" fill="rgb(252,98,18)" fg:x="272834" fg:w="3696"/><text x="75.5642%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (80 samples, 0.02%)</title><rect x="76.3557%" y="677" width="0.0221%" height="15" fill="rgb(244,8,26)" fg:x="276607" fg:w="80"/><text x="76.6057%" y="687.50"></text></g><g><title>kmem_cache_alloc (207 samples, 0.06%)</title><rect x="76.3444%" y="693" width="0.0571%" height="15" fill="rgb(237,173,45)" fg:x="276566" fg:w="207"/><text x="76.5944%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (75 samples, 0.02%)</title><rect x="76.3808%" y="677" width="0.0207%" height="15" fill="rgb(208,213,49)" fg:x="276698" fg:w="75"/><text x="76.6308%" y="687.50"></text></g><g><title>__d_alloc (248 samples, 0.07%)</title><rect x="76.3347%" y="709" width="0.0685%" height="15" fill="rgb(212,122,37)" fg:x="276531" fg:w="248"/><text x="76.5847%" y="719.50"></text></g><g><title>d_alloc (258 samples, 0.07%)</title><rect x="76.3345%" y="725" width="0.0712%" height="15" fill="rgb(213,80,17)" fg:x="276530" fg:w="258"/><text x="76.5845%" y="735.50"></text></g><g><title>__lookup_hash (4,064 samples, 1.12%)</title><rect x="75.3112%" y="741" width="1.1218%" height="15" fill="rgb(206,210,43)" fg:x="272823" fg:w="4064"/><text x="75.5612%" y="751.50"></text></g><g><title>lookup_dcache (65 samples, 0.02%)</title><rect x="76.4151%" y="725" width="0.0179%" height="15" fill="rgb(229,214,3)" fg:x="276822" fg:w="65"/><text x="76.6651%" y="735.50"></text></g><g><title>d_lookup (62 samples, 0.02%)</title><rect x="76.4159%" y="709" width="0.0171%" height="15" fill="rgb(235,213,29)" fg:x="276825" fg:w="62"/><text x="76.6659%" y="719.50"></text></g><g><title>__d_lookup (54 samples, 0.01%)</title><rect x="76.4181%" y="693" width="0.0149%" height="15" fill="rgb(248,135,26)" fg:x="276833" fg:w="54"/><text x="76.6681%" y="703.50"></text></g><g><title>complete_walk (60 samples, 0.02%)</title><rect x="76.4405%" y="709" width="0.0166%" height="15" fill="rgb(242,188,12)" fg:x="276914" fg:w="60"/><text x="76.6905%" y="719.50"></text></g><g><title>try_to_unlazy (57 samples, 0.02%)</title><rect x="76.4413%" y="693" width="0.0157%" height="15" fill="rgb(245,38,12)" fg:x="276917" fg:w="57"/><text x="76.6913%" y="703.50"></text></g><g><title>inode_permission.part.0 (225 samples, 0.06%)</title><rect x="76.5017%" y="693" width="0.0621%" height="15" fill="rgb(218,42,13)" fg:x="277136" fg:w="225"/><text x="76.7517%" y="703.50"></text></g><g><title>generic_permission (62 samples, 0.02%)</title><rect x="76.5467%" y="677" width="0.0171%" height="15" fill="rgb(238,132,49)" fg:x="277299" fg:w="62"/><text x="76.7967%" y="687.50"></text></g><g><title>lookup_fast (375 samples, 0.10%)</title><rect x="76.5846%" y="677" width="0.1035%" height="15" fill="rgb(209,196,19)" fg:x="277436" fg:w="375"/><text x="76.8346%" y="687.50"></text></g><g><title>__d_lookup_rcu (331 samples, 0.09%)</title><rect x="76.5967%" y="661" width="0.0914%" height="15" fill="rgb(244,131,22)" fg:x="277480" fg:w="331"/><text x="76.8467%" y="671.50"></text></g><g><title>link_path_walk.part.0 (905 samples, 0.25%)</title><rect x="76.4570%" y="709" width="0.2498%" height="15" fill="rgb(223,18,34)" fg:x="276974" fg:w="905"/><text x="76.7070%" y="719.50"></text></g><g><title>walk_component (504 samples, 0.14%)</title><rect x="76.5677%" y="693" width="0.1391%" height="15" fill="rgb(252,124,54)" fg:x="277375" fg:w="504"/><text x="76.8177%" y="703.50"></text></g><g><title>step_into (68 samples, 0.02%)</title><rect x="76.6881%" y="677" width="0.0188%" height="15" fill="rgb(229,106,42)" fg:x="277811" fg:w="68"/><text x="76.9381%" y="687.50"></text></g><g><title>path_init (49 samples, 0.01%)</title><rect x="76.7068%" y="709" width="0.0135%" height="15" fill="rgb(221,129,1)" fg:x="277879" fg:w="49"/><text x="76.9568%" y="719.50"></text></g><g><title>filename_parentat (1,057 samples, 0.29%)</title><rect x="76.4355%" y="741" width="0.2918%" height="15" fill="rgb(229,74,15)" fg:x="276896" fg:w="1057"/><text x="76.6855%" y="751.50"></text></g><g><title>path_parentat (1,045 samples, 0.29%)</title><rect x="76.4388%" y="725" width="0.2885%" height="15" fill="rgb(210,206,50)" fg:x="276908" fg:w="1045"/><text x="76.6888%" y="735.50"></text></g><g><title>filename_create (5,218 samples, 1.44%)</title><rect x="75.3054%" y="757" width="1.4404%" height="15" fill="rgb(251,114,31)" fg:x="272802" fg:w="5218"/><text x="75.5554%" y="767.50"></text></g><g><title>memset_erms (115 samples, 0.03%)</title><rect x="76.7654%" y="725" width="0.0317%" height="15" fill="rgb(215,225,28)" fg:x="278091" fg:w="115"/><text x="77.0154%" y="735.50"></text></g><g><title>kmem_cache_alloc (189 samples, 0.05%)</title><rect x="76.7499%" y="741" width="0.0522%" height="15" fill="rgb(237,109,14)" fg:x="278035" fg:w="189"/><text x="76.9999%" y="751.50"></text></g><g><title>getname_flags.part.0 (394 samples, 0.11%)</title><rect x="76.7466%" y="757" width="0.1088%" height="15" fill="rgb(230,13,37)" fg:x="278023" fg:w="394"/><text x="76.9966%" y="767.50"></text></g><g><title>strncpy_from_user (193 samples, 0.05%)</title><rect x="76.8021%" y="741" width="0.0533%" height="15" fill="rgb(231,40,28)" fg:x="278224" fg:w="193"/><text x="77.0521%" y="751.50"></text></g><g><title>__check_object_size (95 samples, 0.03%)</title><rect x="76.8291%" y="725" width="0.0262%" height="15" fill="rgb(231,202,18)" fg:x="278322" fg:w="95"/><text x="77.0791%" y="735.50"></text></g><g><title>apparmor_path_symlink (39 samples, 0.01%)</title><rect x="76.8711%" y="741" width="0.0108%" height="15" fill="rgb(225,33,18)" fg:x="278474" fg:w="39"/><text x="77.1211%" y="751.50"></text></g><g><title>security_path_symlink (96 samples, 0.03%)</title><rect x="76.8678%" y="757" width="0.0265%" height="15" fill="rgb(223,64,47)" fg:x="278462" fg:w="96"/><text x="77.1178%" y="767.50"></text></g><g><title>tomoyo_path_symlink (45 samples, 0.01%)</title><rect x="76.8819%" y="741" width="0.0124%" height="15" fill="rgb(234,114,13)" fg:x="278513" fg:w="45"/><text x="77.1319%" y="751.50"></text></g><g><title>tomoyo_path_perm (43 samples, 0.01%)</title><rect x="76.8824%" y="725" width="0.0119%" height="15" fill="rgb(248,56,40)" fg:x="278515" fg:w="43"/><text x="77.1324%" y="735.50"></text></g><g><title>btrfs_trans_release_metadata (61 samples, 0.02%)</title><rect x="76.9376%" y="709" width="0.0168%" height="15" fill="rgb(221,194,21)" fg:x="278715" fg:w="61"/><text x="77.1876%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (57 samples, 0.02%)</title><rect x="76.9387%" y="693" width="0.0157%" height="15" fill="rgb(242,108,46)" fg:x="278719" fg:w="57"/><text x="77.1887%" y="703.50"></text></g><g><title>__btrfs_end_transaction (156 samples, 0.04%)</title><rect x="76.9189%" y="725" width="0.0431%" height="15" fill="rgb(220,106,10)" fg:x="278647" fg:w="156"/><text x="77.1689%" y="735.50"></text></g><g><title>btrfs_comp_cpu_keys (51 samples, 0.01%)</title><rect x="76.9876%" y="661" width="0.0141%" height="15" fill="rgb(211,88,4)" fg:x="278896" fg:w="51"/><text x="77.2376%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (85 samples, 0.02%)</title><rect x="76.9829%" y="677" width="0.0235%" height="15" fill="rgb(214,95,34)" fg:x="278879" fg:w="85"/><text x="77.2329%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (45 samples, 0.01%)</title><rect x="77.0064%" y="677" width="0.0124%" height="15" fill="rgb(250,160,33)" fg:x="278964" fg:w="45"/><text x="77.2564%" y="687.50"></text></g><g><title>__kmalloc (97 samples, 0.03%)</title><rect x="77.0188%" y="677" width="0.0268%" height="15" fill="rgb(225,29,10)" fg:x="279009" fg:w="97"/><text x="77.2688%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (48 samples, 0.01%)</title><rect x="77.0538%" y="677" width="0.0133%" height="15" fill="rgb(224,28,30)" fg:x="279136" fg:w="48"/><text x="77.3038%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (40 samples, 0.01%)</title><rect x="77.0560%" y="661" width="0.0110%" height="15" fill="rgb(231,77,4)" fg:x="279144" fg:w="40"/><text x="77.3060%" y="671.50"></text></g><g><title>_raw_spin_lock (37 samples, 0.01%)</title><rect x="77.0569%" y="645" width="0.0102%" height="15" fill="rgb(209,63,21)" fg:x="279147" fg:w="37"/><text x="77.3069%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (365 samples, 0.10%)</title><rect x="76.9768%" y="693" width="0.1008%" height="15" fill="rgb(226,22,11)" fg:x="278857" fg:w="365"/><text x="77.2268%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (45 samples, 0.01%)</title><rect x="77.0864%" y="677" width="0.0124%" height="15" fill="rgb(216,82,30)" fg:x="279254" fg:w="45"/><text x="77.3364%" y="687.50"></text></g><g><title>btrfs_release_path (74 samples, 0.02%)</title><rect x="77.0823%" y="693" width="0.0204%" height="15" fill="rgb(246,227,38)" fg:x="279239" fg:w="74"/><text x="77.3323%" y="703.50"></text></g><g><title>finish_wait (144 samples, 0.04%)</title><rect x="77.1590%" y="613" width="0.0398%" height="15" fill="rgb(251,203,53)" fg:x="279517" fg:w="144"/><text x="77.4090%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (142 samples, 0.04%)</title><rect x="77.1596%" y="597" width="0.0392%" height="15" fill="rgb(254,101,1)" fg:x="279519" fg:w="142"/><text x="77.4096%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (135 samples, 0.04%)</title><rect x="77.1615%" y="581" width="0.0373%" height="15" fill="rgb(241,180,5)" fg:x="279526" fg:w="135"/><text x="77.4115%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (581 samples, 0.16%)</title><rect x="77.2079%" y="597" width="0.1604%" height="15" fill="rgb(218,168,4)" fg:x="279694" fg:w="581"/><text x="77.4579%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (567 samples, 0.16%)</title><rect x="77.2117%" y="581" width="0.1565%" height="15" fill="rgb(224,223,32)" fg:x="279708" fg:w="567"/><text x="77.4617%" y="591.50"></text></g><g><title>prepare_to_wait_event (617 samples, 0.17%)</title><rect x="77.1988%" y="613" width="0.1703%" height="15" fill="rgb(236,106,22)" fg:x="279661" fg:w="617"/><text x="77.4488%" y="623.50"></text></g><g><title>queued_read_lock_slowpath (204 samples, 0.06%)</title><rect x="77.3691%" y="613" width="0.0563%" height="15" fill="rgb(206,121,5)" fg:x="280278" fg:w="204"/><text x="77.6191%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (126 samples, 0.03%)</title><rect x="77.3906%" y="597" width="0.0348%" height="15" fill="rgb(233,87,28)" fg:x="280356" fg:w="126"/><text x="77.6406%" y="607.50"></text></g><g><title>dequeue_entity (68 samples, 0.02%)</title><rect x="77.4406%" y="565" width="0.0188%" height="15" fill="rgb(236,137,17)" fg:x="280537" fg:w="68"/><text x="77.6906%" y="575.50"></text></g><g><title>dequeue_task_fair (81 samples, 0.02%)</title><rect x="77.4392%" y="581" width="0.0224%" height="15" fill="rgb(209,183,38)" fg:x="280532" fg:w="81"/><text x="77.6892%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="77.4662%" y="565" width="0.0202%" height="15" fill="rgb(206,162,44)" fg:x="280630" fg:w="73"/><text x="77.7162%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.02%)</title><rect x="77.4679%" y="549" width="0.0185%" height="15" fill="rgb(237,70,39)" fg:x="280636" fg:w="67"/><text x="77.7179%" y="559.50"></text></g><g><title>native_write_msr (64 samples, 0.02%)</title><rect x="77.4687%" y="533" width="0.0177%" height="15" fill="rgb(212,176,5)" fg:x="280639" fg:w="64"/><text x="77.7187%" y="543.50"></text></g><g><title>finish_task_switch (93 samples, 0.03%)</title><rect x="77.4616%" y="581" width="0.0257%" height="15" fill="rgb(232,95,16)" fg:x="280613" fg:w="93"/><text x="77.7116%" y="591.50"></text></g><g><title>psi_task_change (52 samples, 0.01%)</title><rect x="77.4947%" y="581" width="0.0144%" height="15" fill="rgb(219,115,35)" fg:x="280733" fg:w="52"/><text x="77.7447%" y="591.50"></text></g><g><title>psi_group_change (46 samples, 0.01%)</title><rect x="77.4963%" y="565" width="0.0127%" height="15" fill="rgb(251,67,27)" fg:x="280739" fg:w="46"/><text x="77.7463%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (1,332 samples, 0.37%)</title><rect x="77.1477%" y="629" width="0.3677%" height="15" fill="rgb(222,95,40)" fg:x="279476" fg:w="1332"/><text x="77.3977%" y="639.50"></text></g><g><title>schedule (326 samples, 0.09%)</title><rect x="77.4254%" y="613" width="0.0900%" height="15" fill="rgb(250,35,16)" fg:x="280482" fg:w="326"/><text x="77.6754%" y="623.50"></text></g><g><title>__schedule (317 samples, 0.09%)</title><rect x="77.4279%" y="597" width="0.0875%" height="15" fill="rgb(224,86,44)" fg:x="280491" fg:w="317"/><text x="77.6779%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (1,360 samples, 0.38%)</title><rect x="77.1463%" y="645" width="0.3754%" height="15" fill="rgb(237,53,53)" fg:x="279471" fg:w="1360"/><text x="77.3963%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (40 samples, 0.01%)</title><rect x="77.5347%" y="613" width="0.0110%" height="15" fill="rgb(208,171,33)" fg:x="280878" fg:w="40"/><text x="77.7847%" y="623.50"></text></g><g><title>prepare_to_wait_event (53 samples, 0.01%)</title><rect x="77.5317%" y="629" width="0.0146%" height="15" fill="rgb(222,64,27)" fg:x="280867" fg:w="53"/><text x="77.7817%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (37 samples, 0.01%)</title><rect x="77.5463%" y="629" width="0.0102%" height="15" fill="rgb(221,121,35)" fg:x="280920" fg:w="37"/><text x="77.7963%" y="639.50"></text></g><g><title>dequeue_entity (49 samples, 0.01%)</title><rect x="77.5667%" y="581" width="0.0135%" height="15" fill="rgb(228,137,42)" fg:x="280994" fg:w="49"/><text x="77.8167%" y="591.50"></text></g><g><title>dequeue_task_fair (57 samples, 0.02%)</title><rect x="77.5648%" y="597" width="0.0157%" height="15" fill="rgb(227,54,21)" fg:x="280987" fg:w="57"/><text x="77.8148%" y="607.50"></text></g><g><title>psi_task_change (43 samples, 0.01%)</title><rect x="77.5957%" y="597" width="0.0119%" height="15" fill="rgb(240,168,33)" fg:x="281099" fg:w="43"/><text x="77.8457%" y="607.50"></text></g><g><title>__btrfs_tree_lock (324 samples, 0.09%)</title><rect x="77.5217%" y="645" width="0.0894%" height="15" fill="rgb(243,159,6)" fg:x="280831" fg:w="324"/><text x="77.7717%" y="655.50"></text></g><g><title>schedule (198 samples, 0.05%)</title><rect x="77.5565%" y="629" width="0.0547%" height="15" fill="rgb(205,211,41)" fg:x="280957" fg:w="198"/><text x="77.8065%" y="639.50"></text></g><g><title>__schedule (196 samples, 0.05%)</title><rect x="77.5571%" y="613" width="0.0541%" height="15" fill="rgb(253,30,1)" fg:x="280959" fg:w="196"/><text x="77.8071%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (38 samples, 0.01%)</title><rect x="77.6142%" y="645" width="0.0105%" height="15" fill="rgb(226,80,18)" fg:x="281166" fg:w="38"/><text x="77.8642%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (471 samples, 0.13%)</title><rect x="77.6288%" y="645" width="0.1300%" height="15" fill="rgb(253,156,46)" fg:x="281219" fg:w="471"/><text x="77.8788%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (454 samples, 0.13%)</title><rect x="77.6335%" y="629" width="0.1253%" height="15" fill="rgb(248,87,27)" fg:x="281236" fg:w="454"/><text x="77.8835%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (92 samples, 0.03%)</title><rect x="77.7335%" y="613" width="0.0254%" height="15" fill="rgb(227,122,2)" fg:x="281598" fg:w="92"/><text x="77.9835%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (129 samples, 0.04%)</title><rect x="77.7589%" y="645" width="0.0356%" height="15" fill="rgb(229,94,39)" fg:x="281690" fg:w="129"/><text x="78.0089%" y="655.50"></text></g><g><title>__radix_tree_lookup (79 samples, 0.02%)</title><rect x="77.8234%" y="613" width="0.0218%" height="15" fill="rgb(225,173,31)" fg:x="281924" fg:w="79"/><text x="78.0734%" y="623.50"></text></g><g><title>find_extent_buffer (143 samples, 0.04%)</title><rect x="77.8149%" y="629" width="0.0395%" height="15" fill="rgb(239,176,30)" fg:x="281893" fg:w="143"/><text x="78.0649%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (240 samples, 0.07%)</title><rect x="77.7945%" y="645" width="0.0663%" height="15" fill="rgb(212,104,21)" fg:x="281819" fg:w="240"/><text x="78.0445%" y="655.50"></text></g><g><title>__push_leaf_left (44 samples, 0.01%)</title><rect x="77.8734%" y="613" width="0.0121%" height="15" fill="rgb(240,209,40)" fg:x="282105" fg:w="44"/><text x="78.1234%" y="623.50"></text></g><g><title>push_leaf_left (54 samples, 0.01%)</title><rect x="77.8729%" y="629" width="0.0149%" height="15" fill="rgb(234,195,5)" fg:x="282103" fg:w="54"/><text x="78.1229%" y="639.50"></text></g><g><title>__push_leaf_right (76 samples, 0.02%)</title><rect x="77.8886%" y="613" width="0.0210%" height="15" fill="rgb(238,213,1)" fg:x="282160" fg:w="76"/><text x="78.1386%" y="623.50"></text></g><g><title>split_leaf (191 samples, 0.05%)</title><rect x="77.8607%" y="645" width="0.0527%" height="15" fill="rgb(235,182,54)" fg:x="282059" fg:w="191"/><text x="78.1107%" y="655.50"></text></g><g><title>push_leaf_right (93 samples, 0.03%)</title><rect x="77.8878%" y="629" width="0.0257%" height="15" fill="rgb(229,50,46)" fg:x="282157" fg:w="93"/><text x="78.1378%" y="639.50"></text></g><g><title>select_task_rq_fair (83 samples, 0.02%)</title><rect x="77.9488%" y="565" width="0.0229%" height="15" fill="rgb(219,145,13)" fg:x="282378" fg:w="83"/><text x="78.1988%" y="575.50"></text></g><g><title>enqueue_entity (73 samples, 0.02%)</title><rect x="77.9783%" y="533" width="0.0202%" height="15" fill="rgb(220,226,10)" fg:x="282485" fg:w="73"/><text x="78.2283%" y="543.50"></text></g><g><title>enqueue_task_fair (99 samples, 0.03%)</title><rect x="77.9747%" y="549" width="0.0273%" height="15" fill="rgb(248,47,30)" fg:x="282472" fg:w="99"/><text x="78.2247%" y="559.50"></text></g><g><title>ttwu_do_activate (194 samples, 0.05%)</title><rect x="77.9728%" y="565" width="0.0536%" height="15" fill="rgb(231,209,44)" fg:x="282465" fg:w="194"/><text x="78.2228%" y="575.50"></text></g><g><title>psi_task_change (88 samples, 0.02%)</title><rect x="78.0020%" y="549" width="0.0243%" height="15" fill="rgb(209,80,30)" fg:x="282571" fg:w="88"/><text x="78.2520%" y="559.50"></text></g><g><title>psi_group_change (77 samples, 0.02%)</title><rect x="78.0051%" y="533" width="0.0213%" height="15" fill="rgb(232,9,14)" fg:x="282582" fg:w="77"/><text x="78.2551%" y="543.50"></text></g><g><title>__wake_up_common (407 samples, 0.11%)</title><rect x="77.9225%" y="613" width="0.1123%" height="15" fill="rgb(243,91,43)" fg:x="282283" fg:w="407"/><text x="78.1725%" y="623.50"></text></g><g><title>autoremove_wake_function (402 samples, 0.11%)</title><rect x="77.9239%" y="597" width="0.1110%" height="15" fill="rgb(231,90,52)" fg:x="282288" fg:w="402"/><text x="78.1739%" y="607.50"></text></g><g><title>try_to_wake_up (389 samples, 0.11%)</title><rect x="77.9275%" y="581" width="0.1074%" height="15" fill="rgb(253,192,44)" fg:x="282301" fg:w="389"/><text x="78.1775%" y="591.50"></text></g><g><title>__wake_up_common_lock (415 samples, 0.11%)</title><rect x="77.9217%" y="629" width="0.1146%" height="15" fill="rgb(241,66,31)" fg:x="282280" fg:w="415"/><text x="78.1717%" y="639.50"></text></g><g><title>btrfs_search_slot (3,329 samples, 0.92%)</title><rect x="77.1281%" y="661" width="0.9190%" height="15" fill="rgb(235,81,37)" fg:x="279405" fg:w="3329"/><text x="77.3781%" y="671.50"></text></g><g><title>unlock_up (484 samples, 0.13%)</title><rect x="77.9134%" y="645" width="0.1336%" height="15" fill="rgb(223,221,9)" fg:x="282250" fg:w="484"/><text x="78.1634%" y="655.50"></text></g><g><title>btrfs_get_token_32 (378 samples, 0.10%)</title><rect x="78.0711%" y="645" width="0.1043%" height="15" fill="rgb(242,180,7)" fg:x="282821" fg:w="378"/><text x="78.3211%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (46 samples, 0.01%)</title><rect x="78.1627%" y="629" width="0.0127%" height="15" fill="rgb(243,78,19)" fg:x="283153" fg:w="46"/><text x="78.4127%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (38 samples, 0.01%)</title><rect x="78.1754%" y="645" width="0.0105%" height="15" fill="rgb(233,23,17)" fg:x="283199" fg:w="38"/><text x="78.4254%" y="655.50"></text></g><g><title>btrfs_set_token_32 (304 samples, 0.08%)</title><rect x="78.1922%" y="645" width="0.0839%" height="15" fill="rgb(252,122,45)" fg:x="283260" fg:w="304"/><text x="78.4422%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (42 samples, 0.01%)</title><rect x="78.2646%" y="629" width="0.0116%" height="15" fill="rgb(247,108,20)" fg:x="283522" fg:w="42"/><text x="78.5146%" y="639.50"></text></g><g><title>memcpy_extent_buffer (144 samples, 0.04%)</title><rect x="78.2820%" y="645" width="0.0398%" height="15" fill="rgb(235,84,21)" fg:x="283585" fg:w="144"/><text x="78.5320%" y="655.50"></text></g><g><title>memmove (112 samples, 0.03%)</title><rect x="78.2908%" y="629" width="0.0309%" height="15" fill="rgb(247,129,10)" fg:x="283617" fg:w="112"/><text x="78.5408%" y="639.50"></text></g><g><title>memmove_extent_buffer (128 samples, 0.04%)</title><rect x="78.3217%" y="645" width="0.0353%" height="15" fill="rgb(208,173,14)" fg:x="283729" fg:w="128"/><text x="78.5717%" y="655.50"></text></g><g><title>memmove (88 samples, 0.02%)</title><rect x="78.3327%" y="629" width="0.0243%" height="15" fill="rgb(236,31,38)" fg:x="283769" fg:w="88"/><text x="78.5827%" y="639.50"></text></g><g><title>insert_with_overflow (4,501 samples, 1.24%)</title><rect x="77.1176%" y="693" width="1.2425%" height="15" fill="rgb(232,65,17)" fg:x="279367" fg:w="4501"/><text x="77.3676%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (4,466 samples, 1.23%)</title><rect x="77.1273%" y="677" width="1.2328%" height="15" fill="rgb(224,45,49)" fg:x="279402" fg:w="4466"/><text x="77.3773%" y="687.50"></text></g><g><title>setup_items_for_insert (1,134 samples, 0.31%)</title><rect x="78.0470%" y="661" width="0.3130%" height="15" fill="rgb(225,2,53)" fg:x="282734" fg:w="1134"/><text x="78.2970%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (5,130 samples, 1.42%)</title><rect x="76.9699%" y="709" width="1.4161%" height="15" fill="rgb(248,210,53)" fg:x="278832" fg:w="5130"/><text x="77.2199%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (94 samples, 0.03%)</title><rect x="78.3927%" y="693" width="0.0259%" height="15" fill="rgb(211,1,30)" fg:x="283986" fg:w="94"/><text x="78.6427%" y="703.50"></text></g><g><title>btrfs_update_inode (155 samples, 0.04%)</title><rect x="78.3860%" y="709" width="0.0428%" height="15" fill="rgb(224,96,15)" fg:x="283962" fg:w="155"/><text x="78.6360%" y="719.50"></text></g><g><title>btrfs_update_root_times (37 samples, 0.01%)</title><rect x="78.4186%" y="693" width="0.0102%" height="15" fill="rgb(252,45,11)" fg:x="284080" fg:w="37"/><text x="78.6686%" y="703.50"></text></g><g><title>btrfs_add_link (5,323 samples, 1.47%)</title><rect x="76.9619%" y="725" width="1.4694%" height="15" fill="rgb(220,125,38)" fg:x="278803" fg:w="5323"/><text x="77.2119%" y="735.50"></text></g><g><title>ttwu_do_activate (39 samples, 0.01%)</title><rect x="78.4633%" y="661" width="0.0108%" height="15" fill="rgb(243,161,33)" fg:x="284242" fg:w="39"/><text x="78.7133%" y="671.50"></text></g><g><title>__queue_work (125 samples, 0.03%)</title><rect x="78.4434%" y="693" width="0.0345%" height="15" fill="rgb(248,197,34)" fg:x="284170" fg:w="125"/><text x="78.6934%" y="703.50"></text></g><g><title>try_to_wake_up (92 samples, 0.03%)</title><rect x="78.4526%" y="677" width="0.0254%" height="15" fill="rgb(228,165,23)" fg:x="284203" fg:w="92"/><text x="78.7026%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (168 samples, 0.05%)</title><rect x="78.4318%" y="725" width="0.0464%" height="15" fill="rgb(236,94,38)" fg:x="284128" fg:w="168"/><text x="78.6818%" y="735.50"></text></g><g><title>queue_work_on (127 samples, 0.04%)</title><rect x="78.4432%" y="709" width="0.0351%" height="15" fill="rgb(220,13,23)" fg:x="284169" fg:w="127"/><text x="78.6932%" y="719.50"></text></g><g><title>btrfs_find_free_ino (42 samples, 0.01%)</title><rect x="78.4785%" y="725" width="0.0116%" height="15" fill="rgb(234,26,39)" fg:x="284297" fg:w="42"/><text x="78.7285%" y="735.50"></text></g><g><title>__wake_up_common (138 samples, 0.04%)</title><rect x="78.4940%" y="677" width="0.0381%" height="15" fill="rgb(205,117,44)" fg:x="284353" fg:w="138"/><text x="78.7440%" y="687.50"></text></g><g><title>autoremove_wake_function (136 samples, 0.04%)</title><rect x="78.4945%" y="661" width="0.0375%" height="15" fill="rgb(250,42,2)" fg:x="284355" fg:w="136"/><text x="78.7445%" y="671.50"></text></g><g><title>try_to_wake_up (136 samples, 0.04%)</title><rect x="78.4945%" y="645" width="0.0375%" height="15" fill="rgb(223,83,14)" fg:x="284355" fg:w="136"/><text x="78.7445%" y="655.50"></text></g><g><title>__wake_up_common_lock (141 samples, 0.04%)</title><rect x="78.4934%" y="693" width="0.0389%" height="15" fill="rgb(241,147,50)" fg:x="284351" fg:w="141"/><text x="78.7434%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (41 samples, 0.01%)</title><rect x="78.5362%" y="693" width="0.0113%" height="15" fill="rgb(218,90,6)" fg:x="284506" fg:w="41"/><text x="78.7862%" y="703.50"></text></g><g><title>btrfs_free_path (224 samples, 0.06%)</title><rect x="78.4901%" y="725" width="0.0618%" height="15" fill="rgb(210,191,5)" fg:x="284339" fg:w="224"/><text x="78.7401%" y="735.50"></text></g><g><title>btrfs_release_path (222 samples, 0.06%)</title><rect x="78.4906%" y="709" width="0.0613%" height="15" fill="rgb(225,139,19)" fg:x="284341" fg:w="222"/><text x="78.7406%" y="719.50"></text></g><g><title>finish_wait (140 samples, 0.04%)</title><rect x="78.5958%" y="661" width="0.0386%" height="15" fill="rgb(210,1,33)" fg:x="284722" fg:w="140"/><text x="78.8458%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (134 samples, 0.04%)</title><rect x="78.5975%" y="645" width="0.0370%" height="15" fill="rgb(213,50,3)" fg:x="284728" fg:w="134"/><text x="78.8475%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (129 samples, 0.04%)</title><rect x="78.5989%" y="629" width="0.0356%" height="15" fill="rgb(234,227,4)" fg:x="284733" fg:w="129"/><text x="78.8489%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (535 samples, 0.15%)</title><rect x="78.6441%" y="645" width="0.1477%" height="15" fill="rgb(246,63,5)" fg:x="284897" fg:w="535"/><text x="78.8941%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (524 samples, 0.14%)</title><rect x="78.6472%" y="629" width="0.1446%" height="15" fill="rgb(245,136,27)" fg:x="284908" fg:w="524"/><text x="78.8972%" y="639.50"></text></g><g><title>prepare_to_wait_event (578 samples, 0.16%)</title><rect x="78.6345%" y="661" width="0.1596%" height="15" fill="rgb(247,199,27)" fg:x="284862" fg:w="578"/><text x="78.8845%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (240 samples, 0.07%)</title><rect x="78.7940%" y="661" width="0.0663%" height="15" fill="rgb(252,158,49)" fg:x="285440" fg:w="240"/><text x="79.0440%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (150 samples, 0.04%)</title><rect x="78.8189%" y="645" width="0.0414%" height="15" fill="rgb(254,73,1)" fg:x="285530" fg:w="150"/><text x="79.0689%" y="655.50"></text></g><g><title>dequeue_entity (71 samples, 0.02%)</title><rect x="78.8741%" y="613" width="0.0196%" height="15" fill="rgb(248,93,19)" fg:x="285730" fg:w="71"/><text x="79.1241%" y="623.50"></text></g><g><title>dequeue_task_fair (92 samples, 0.03%)</title><rect x="78.8708%" y="629" width="0.0254%" height="15" fill="rgb(206,67,5)" fg:x="285718" fg:w="92"/><text x="79.1208%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.02%)</title><rect x="78.8995%" y="613" width="0.0182%" height="15" fill="rgb(209,210,4)" fg:x="285822" fg:w="66"/><text x="79.1495%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.02%)</title><rect x="78.8997%" y="597" width="0.0179%" height="15" fill="rgb(214,185,36)" fg:x="285823" fg:w="65"/><text x="79.1497%" y="607.50"></text></g><g><title>native_write_msr (65 samples, 0.02%)</title><rect x="78.8997%" y="581" width="0.0179%" height="15" fill="rgb(233,191,26)" fg:x="285823" fg:w="65"/><text x="79.1497%" y="591.50"></text></g><g><title>finish_task_switch (79 samples, 0.02%)</title><rect x="78.8962%" y="629" width="0.0218%" height="15" fill="rgb(248,94,17)" fg:x="285810" fg:w="79"/><text x="79.1462%" y="639.50"></text></g><g><title>psi_task_change (58 samples, 0.02%)</title><rect x="78.9279%" y="629" width="0.0160%" height="15" fill="rgb(250,64,4)" fg:x="285925" fg:w="58"/><text x="79.1779%" y="639.50"></text></g><g><title>psi_group_change (53 samples, 0.01%)</title><rect x="78.9293%" y="613" width="0.0146%" height="15" fill="rgb(218,41,53)" fg:x="285930" fg:w="53"/><text x="79.1793%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (1,327 samples, 0.37%)</title><rect x="78.5842%" y="677" width="0.3663%" height="15" fill="rgb(251,176,28)" fg:x="284680" fg:w="1327"/><text x="78.8342%" y="687.50"></text></g><g><title>schedule (327 samples, 0.09%)</title><rect x="78.8603%" y="661" width="0.0903%" height="15" fill="rgb(247,22,9)" fg:x="285680" fg:w="327"/><text x="79.1103%" y="671.50"></text></g><g><title>__schedule (322 samples, 0.09%)</title><rect x="78.8616%" y="645" width="0.0889%" height="15" fill="rgb(218,201,14)" fg:x="285685" fg:w="322"/><text x="79.1116%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (1,360 samples, 0.38%)</title><rect x="78.5823%" y="693" width="0.3754%" height="15" fill="rgb(218,94,10)" fg:x="284673" fg:w="1360"/><text x="78.8323%" y="703.50"></text></g><g><title>_raw_spin_lock_irqsave (41 samples, 0.01%)</title><rect x="78.9726%" y="661" width="0.0113%" height="15" fill="rgb(222,183,52)" fg:x="286087" fg:w="41"/><text x="79.2226%" y="671.50"></text></g><g><title>prepare_to_wait_event (64 samples, 0.02%)</title><rect x="78.9685%" y="677" width="0.0177%" height="15" fill="rgb(242,140,25)" fg:x="286072" fg:w="64"/><text x="79.2185%" y="687.50"></text></g><g><title>dequeue_entity (50 samples, 0.01%)</title><rect x="79.0066%" y="629" width="0.0138%" height="15" fill="rgb(235,197,38)" fg:x="286210" fg:w="50"/><text x="79.2566%" y="639.50"></text></g><g><title>dequeue_task_fair (61 samples, 0.02%)</title><rect x="79.0044%" y="645" width="0.0168%" height="15" fill="rgb(237,136,15)" fg:x="286202" fg:w="61"/><text x="79.2544%" y="655.50"></text></g><g><title>finish_task_switch (66 samples, 0.02%)</title><rect x="79.0212%" y="645" width="0.0182%" height="15" fill="rgb(223,44,49)" fg:x="286263" fg:w="66"/><text x="79.2712%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.01%)</title><rect x="79.0248%" y="629" width="0.0146%" height="15" fill="rgb(227,71,15)" fg:x="286276" fg:w="53"/><text x="79.2748%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.01%)</title><rect x="79.0256%" y="613" width="0.0138%" height="15" fill="rgb(225,153,20)" fg:x="286279" fg:w="50"/><text x="79.2756%" y="623.50"></text></g><g><title>native_write_msr (50 samples, 0.01%)</title><rect x="79.0256%" y="597" width="0.0138%" height="15" fill="rgb(210,190,26)" fg:x="286279" fg:w="50"/><text x="79.2756%" y="607.50"></text></g><g><title>psi_task_change (39 samples, 0.01%)</title><rect x="79.0472%" y="645" width="0.0108%" height="15" fill="rgb(223,147,5)" fg:x="286357" fg:w="39"/><text x="79.2972%" y="655.50"></text></g><g><title>__btrfs_tree_lock (381 samples, 0.11%)</title><rect x="78.9577%" y="693" width="0.1052%" height="15" fill="rgb(207,14,23)" fg:x="286033" fg:w="381"/><text x="79.2077%" y="703.50"></text></g><g><title>schedule (242 samples, 0.07%)</title><rect x="78.9961%" y="677" width="0.0668%" height="15" fill="rgb(211,195,53)" fg:x="286172" fg:w="242"/><text x="79.2461%" y="687.50"></text></g><g><title>__schedule (239 samples, 0.07%)</title><rect x="78.9969%" y="661" width="0.0660%" height="15" fill="rgb(237,75,46)" fg:x="286175" fg:w="239"/><text x="79.2469%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (48 samples, 0.01%)</title><rect x="79.0703%" y="693" width="0.0133%" height="15" fill="rgb(254,55,14)" fg:x="286441" fg:w="48"/><text x="79.3203%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (675 samples, 0.19%)</title><rect x="79.0839%" y="693" width="0.1863%" height="15" fill="rgb(230,185,30)" fg:x="286490" fg:w="675"/><text x="79.3339%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (652 samples, 0.18%)</title><rect x="79.0902%" y="677" width="0.1800%" height="15" fill="rgb(220,14,11)" fg:x="286513" fg:w="652"/><text x="79.3402%" y="687.50"></text></g><g><title>native_queued_spin_lock_slowpath (156 samples, 0.04%)</title><rect x="79.2271%" y="661" width="0.0431%" height="15" fill="rgb(215,169,44)" fg:x="287009" fg:w="156"/><text x="79.4771%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (127 samples, 0.04%)</title><rect x="79.2702%" y="693" width="0.0351%" height="15" fill="rgb(253,203,20)" fg:x="287165" fg:w="127"/><text x="79.5202%" y="703.50"></text></g><g><title>__radix_tree_lookup (56 samples, 0.02%)</title><rect x="79.3370%" y="661" width="0.0155%" height="15" fill="rgb(229,225,17)" fg:x="287407" fg:w="56"/><text x="79.5870%" y="671.50"></text></g><g><title>find_extent_buffer (131 samples, 0.04%)</title><rect x="79.3249%" y="677" width="0.0362%" height="15" fill="rgb(236,76,26)" fg:x="287363" fg:w="131"/><text x="79.5749%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (230 samples, 0.06%)</title><rect x="79.3053%" y="693" width="0.0635%" height="15" fill="rgb(234,15,30)" fg:x="287292" fg:w="230"/><text x="79.5553%" y="703.50"></text></g><g><title>alloc_tree_block_no_bg_flush (76 samples, 0.02%)</title><rect x="79.3693%" y="677" width="0.0210%" height="15" fill="rgb(211,113,48)" fg:x="287524" fg:w="76"/><text x="79.6193%" y="687.50"></text></g><g><title>btrfs_alloc_tree_block (76 samples, 0.02%)</title><rect x="79.3693%" y="661" width="0.0210%" height="15" fill="rgb(221,31,36)" fg:x="287524" fg:w="76"/><text x="79.6193%" y="671.50"></text></g><g><title>__push_leaf_left (40 samples, 0.01%)</title><rect x="79.3975%" y="661" width="0.0110%" height="15" fill="rgb(215,118,52)" fg:x="287626" fg:w="40"/><text x="79.6475%" y="671.50"></text></g><g><title>push_leaf_left (50 samples, 0.01%)</title><rect x="79.3972%" y="677" width="0.0138%" height="15" fill="rgb(241,151,27)" fg:x="287625" fg:w="50"/><text x="79.6472%" y="687.50"></text></g><g><title>split_leaf (155 samples, 0.04%)</title><rect x="79.3687%" y="693" width="0.0428%" height="15" fill="rgb(253,51,3)" fg:x="287522" fg:w="155"/><text x="79.6187%" y="703.50"></text></g><g><title>select_task_rq_fair (100 samples, 0.03%)</title><rect x="79.4518%" y="613" width="0.0276%" height="15" fill="rgb(216,201,24)" fg:x="287823" fg:w="100"/><text x="79.7018%" y="623.50"></text></g><g><title>enqueue_entity (73 samples, 0.02%)</title><rect x="79.4888%" y="581" width="0.0202%" height="15" fill="rgb(231,107,4)" fg:x="287957" fg:w="73"/><text x="79.7388%" y="591.50"></text></g><g><title>enqueue_task_fair (102 samples, 0.03%)</title><rect x="79.4847%" y="597" width="0.0282%" height="15" fill="rgb(243,97,54)" fg:x="287942" fg:w="102"/><text x="79.7347%" y="607.50"></text></g><g><title>ttwu_do_activate (203 samples, 0.06%)</title><rect x="79.4833%" y="613" width="0.0560%" height="15" fill="rgb(221,32,51)" fg:x="287937" fg:w="203"/><text x="79.7333%" y="623.50"></text></g><g><title>psi_task_change (96 samples, 0.03%)</title><rect x="79.5128%" y="597" width="0.0265%" height="15" fill="rgb(218,171,35)" fg:x="288044" fg:w="96"/><text x="79.7628%" y="607.50"></text></g><g><title>psi_group_change (82 samples, 0.02%)</title><rect x="79.5167%" y="581" width="0.0226%" height="15" fill="rgb(214,20,53)" fg:x="288058" fg:w="82"/><text x="79.7667%" y="591.50"></text></g><g><title>__wake_up_common (495 samples, 0.14%)</title><rect x="79.4184%" y="661" width="0.1366%" height="15" fill="rgb(239,9,52)" fg:x="287702" fg:w="495"/><text x="79.6684%" y="671.50"></text></g><g><title>autoremove_wake_function (488 samples, 0.13%)</title><rect x="79.4204%" y="645" width="0.1347%" height="15" fill="rgb(215,114,45)" fg:x="287709" fg:w="488"/><text x="79.6704%" y="655.50"></text></g><g><title>try_to_wake_up (480 samples, 0.13%)</title><rect x="79.4226%" y="629" width="0.1325%" height="15" fill="rgb(208,118,9)" fg:x="287717" fg:w="480"/><text x="79.6726%" y="639.50"></text></g><g><title>__wake_up_common_lock (502 samples, 0.14%)</title><rect x="79.4176%" y="677" width="0.1386%" height="15" fill="rgb(235,7,39)" fg:x="287699" fg:w="502"/><text x="79.6676%" y="687.50"></text></g><g><title>btrfs_search_slot (3,628 samples, 1.00%)</title><rect x="78.5635%" y="709" width="1.0015%" height="15" fill="rgb(243,225,15)" fg:x="284605" fg:w="3628"/><text x="78.8135%" y="719.50"></text></g><g><title>unlock_up (556 samples, 0.15%)</title><rect x="79.4115%" y="693" width="0.1535%" height="15" fill="rgb(225,216,18)" fg:x="287677" fg:w="556"/><text x="79.6615%" y="703.50"></text></g><g><title>btrfs_get_token_32 (102 samples, 0.03%)</title><rect x="79.5838%" y="693" width="0.0282%" height="15" fill="rgb(233,36,38)" fg:x="288301" fg:w="102"/><text x="79.8338%" y="703.50"></text></g><g><title>btrfs_set_token_32 (135 samples, 0.04%)</title><rect x="79.6252%" y="693" width="0.0373%" height="15" fill="rgb(239,88,23)" fg:x="288451" fg:w="135"/><text x="79.8752%" y="703.50"></text></g><g><title>memmove_extent_buffer (38 samples, 0.01%)</title><rect x="79.6702%" y="693" width="0.0105%" height="15" fill="rgb(219,181,35)" fg:x="288614" fg:w="38"/><text x="79.9202%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (4,074 samples, 1.12%)</title><rect x="78.5616%" y="725" width="1.1246%" height="15" fill="rgb(215,18,46)" fg:x="284598" fg:w="4074"/><text x="78.8116%" y="735.50"></text></g><g><title>setup_items_for_insert (439 samples, 0.12%)</title><rect x="79.5650%" y="709" width="0.1212%" height="15" fill="rgb(241,38,11)" fg:x="288233" fg:w="439"/><text x="79.8150%" y="719.50"></text></g><g><title>free_extent_buffer.part.0 (65 samples, 0.02%)</title><rect x="79.7116%" y="677" width="0.0179%" height="15" fill="rgb(248,169,45)" fg:x="288764" fg:w="65"/><text x="79.9616%" y="687.50"></text></g><g><title>btrfs_free_path (91 samples, 0.03%)</title><rect x="79.7074%" y="709" width="0.0251%" height="15" fill="rgb(239,50,49)" fg:x="288749" fg:w="91"/><text x="79.9574%" y="719.50"></text></g><g><title>btrfs_release_path (90 samples, 0.02%)</title><rect x="79.7077%" y="693" width="0.0248%" height="15" fill="rgb(231,96,31)" fg:x="288750" fg:w="90"/><text x="79.9577%" y="703.50"></text></g><g><title>finish_wait (151 samples, 0.04%)</title><rect x="79.7720%" y="645" width="0.0417%" height="15" fill="rgb(224,193,37)" fg:x="288983" fg:w="151"/><text x="80.0220%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (143 samples, 0.04%)</title><rect x="79.7743%" y="629" width="0.0395%" height="15" fill="rgb(227,153,50)" fg:x="288991" fg:w="143"/><text x="80.0243%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (138 samples, 0.04%)</title><rect x="79.7756%" y="613" width="0.0381%" height="15" fill="rgb(249,228,3)" fg:x="288996" fg:w="138"/><text x="80.0256%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (571 samples, 0.16%)</title><rect x="79.8228%" y="629" width="0.1576%" height="15" fill="rgb(219,164,43)" fg:x="289167" fg:w="571"/><text x="80.0728%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (543 samples, 0.15%)</title><rect x="79.8306%" y="613" width="0.1499%" height="15" fill="rgb(216,45,41)" fg:x="289195" fg:w="543"/><text x="80.0806%" y="623.50"></text></g><g><title>prepare_to_wait_event (610 samples, 0.17%)</title><rect x="79.8140%" y="645" width="0.1684%" height="15" fill="rgb(210,226,51)" fg:x="289135" fg:w="610"/><text x="80.0640%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (268 samples, 0.07%)</title><rect x="79.9824%" y="645" width="0.0740%" height="15" fill="rgb(209,117,49)" fg:x="289745" fg:w="268"/><text x="80.2324%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (164 samples, 0.05%)</title><rect x="80.0111%" y="629" width="0.0453%" height="15" fill="rgb(206,196,24)" fg:x="289849" fg:w="164"/><text x="80.2611%" y="639.50"></text></g><g><title>dequeue_entity (63 samples, 0.02%)</title><rect x="80.0707%" y="597" width="0.0174%" height="15" fill="rgb(253,218,3)" fg:x="290065" fg:w="63"/><text x="80.3207%" y="607.50"></text></g><g><title>dequeue_task_fair (78 samples, 0.02%)</title><rect x="80.0677%" y="613" width="0.0215%" height="15" fill="rgb(252,166,2)" fg:x="290054" fg:w="78"/><text x="80.3177%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.02%)</title><rect x="80.0936%" y="597" width="0.0182%" height="15" fill="rgb(236,218,26)" fg:x="290148" fg:w="66"/><text x="80.3436%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.02%)</title><rect x="80.0939%" y="581" width="0.0179%" height="15" fill="rgb(254,84,19)" fg:x="290149" fg:w="65"/><text x="80.3439%" y="591.50"></text></g><g><title>native_write_msr (64 samples, 0.02%)</title><rect x="80.0942%" y="565" width="0.0177%" height="15" fill="rgb(219,137,29)" fg:x="290150" fg:w="64"/><text x="80.3442%" y="575.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="80.0892%" y="613" width="0.0229%" height="15" fill="rgb(227,47,52)" fg:x="290132" fg:w="83"/><text x="80.3392%" y="623.50"></text></g><g><title>psi_task_change (70 samples, 0.02%)</title><rect x="80.1212%" y="613" width="0.0193%" height="15" fill="rgb(229,167,24)" fg:x="290248" fg:w="70"/><text x="80.3712%" y="623.50"></text></g><g><title>psi_group_change (63 samples, 0.02%)</title><rect x="80.1232%" y="597" width="0.0174%" height="15" fill="rgb(233,164,1)" fg:x="290255" fg:w="63"/><text x="80.3732%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (1,391 samples, 0.38%)</title><rect x="79.7638%" y="661" width="0.3840%" height="15" fill="rgb(218,88,48)" fg:x="288953" fg:w="1391"/><text x="80.0138%" y="671.50"></text></g><g><title>schedule (331 samples, 0.09%)</title><rect x="80.0564%" y="645" width="0.0914%" height="15" fill="rgb(226,214,24)" fg:x="290013" fg:w="331"/><text x="80.3064%" y="655.50"></text></g><g><title>__schedule (326 samples, 0.09%)</title><rect x="80.0577%" y="629" width="0.0900%" height="15" fill="rgb(233,29,12)" fg:x="290018" fg:w="326"/><text x="80.3077%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (1,434 samples, 0.40%)</title><rect x="79.7618%" y="677" width="0.3958%" height="15" fill="rgb(219,120,34)" fg:x="288946" fg:w="1434"/><text x="80.0118%" y="687.50"></text></g><g><title>prepare_to_wait_event (46 samples, 0.01%)</title><rect x="80.1709%" y="661" width="0.0127%" height="15" fill="rgb(226,78,44)" fg:x="290428" fg:w="46"/><text x="80.4209%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (49 samples, 0.01%)</title><rect x="80.1836%" y="661" width="0.0135%" height="15" fill="rgb(240,15,48)" fg:x="290474" fg:w="49"/><text x="80.4336%" y="671.50"></text></g><g><title>dequeue_entity (60 samples, 0.02%)</title><rect x="80.2074%" y="613" width="0.0166%" height="15" fill="rgb(253,176,7)" fg:x="290560" fg:w="60"/><text x="80.4574%" y="623.50"></text></g><g><title>dequeue_task_fair (68 samples, 0.02%)</title><rect x="80.2060%" y="629" width="0.0188%" height="15" fill="rgb(206,166,28)" fg:x="290555" fg:w="68"/><text x="80.4560%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.02%)</title><rect x="80.2267%" y="613" width="0.0193%" height="15" fill="rgb(241,53,51)" fg:x="290630" fg:w="70"/><text x="80.4767%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.02%)</title><rect x="80.2270%" y="597" width="0.0190%" height="15" fill="rgb(249,112,30)" fg:x="290631" fg:w="69"/><text x="80.4770%" y="607.50"></text></g><g><title>native_write_msr (67 samples, 0.02%)</title><rect x="80.2275%" y="581" width="0.0185%" height="15" fill="rgb(217,85,30)" fg:x="290633" fg:w="67"/><text x="80.4775%" y="591.50"></text></g><g><title>finish_task_switch (79 samples, 0.02%)</title><rect x="80.2248%" y="629" width="0.0218%" height="15" fill="rgb(233,49,7)" fg:x="290623" fg:w="79"/><text x="80.4748%" y="639.50"></text></g><g><title>psi_task_change (42 samples, 0.01%)</title><rect x="80.2529%" y="629" width="0.0116%" height="15" fill="rgb(234,109,9)" fg:x="290725" fg:w="42"/><text x="80.5029%" y="639.50"></text></g><g><title>psi_group_change (37 samples, 0.01%)</title><rect x="80.2543%" y="613" width="0.0102%" height="15" fill="rgb(253,95,22)" fg:x="290730" fg:w="37"/><text x="80.5043%" y="623.50"></text></g><g><title>__btrfs_tree_lock (408 samples, 0.11%)</title><rect x="80.1577%" y="677" width="0.1126%" height="15" fill="rgb(233,176,25)" fg:x="290380" fg:w="408"/><text x="80.4077%" y="687.50"></text></g><g><title>schedule (265 samples, 0.07%)</title><rect x="80.1972%" y="661" width="0.0732%" height="15" fill="rgb(236,33,39)" fg:x="290523" fg:w="265"/><text x="80.4472%" y="671.50"></text></g><g><title>__schedule (263 samples, 0.07%)</title><rect x="80.1977%" y="645" width="0.0726%" height="15" fill="rgb(223,226,42)" fg:x="290525" fg:w="263"/><text x="80.4477%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (563 samples, 0.16%)</title><rect x="80.2860%" y="677" width="0.1554%" height="15" fill="rgb(216,99,33)" fg:x="290845" fg:w="563"/><text x="80.5360%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (547 samples, 0.15%)</title><rect x="80.2905%" y="661" width="0.1510%" height="15" fill="rgb(235,84,23)" fg:x="290861" fg:w="547"/><text x="80.5405%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (161 samples, 0.04%)</title><rect x="80.3970%" y="645" width="0.0444%" height="15" fill="rgb(232,2,27)" fg:x="291247" fg:w="161"/><text x="80.6470%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (125 samples, 0.03%)</title><rect x="80.4414%" y="677" width="0.0345%" height="15" fill="rgb(241,23,22)" fg:x="291408" fg:w="125"/><text x="80.6914%" y="687.50"></text></g><g><title>__radix_tree_lookup (70 samples, 0.02%)</title><rect x="80.5116%" y="645" width="0.0193%" height="15" fill="rgb(211,73,27)" fg:x="291662" fg:w="70"/><text x="80.7616%" y="655.50"></text></g><g><title>find_extent_buffer (175 samples, 0.05%)</title><rect x="80.4939%" y="661" width="0.0483%" height="15" fill="rgb(235,109,49)" fg:x="291598" fg:w="175"/><text x="80.7439%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (41 samples, 0.01%)</title><rect x="80.5309%" y="645" width="0.0113%" height="15" fill="rgb(230,99,29)" fg:x="291732" fg:w="41"/><text x="80.7809%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (259 samples, 0.07%)</title><rect x="80.4760%" y="677" width="0.0715%" height="15" fill="rgb(245,199,7)" fg:x="291533" fg:w="259"/><text x="80.7260%" y="687.50"></text></g><g><title>alloc_tree_block_no_bg_flush (79 samples, 0.02%)</title><rect x="80.5477%" y="661" width="0.0218%" height="15" fill="rgb(217,179,10)" fg:x="291793" fg:w="79"/><text x="80.7977%" y="671.50"></text></g><g><title>btrfs_alloc_tree_block (78 samples, 0.02%)</title><rect x="80.5480%" y="645" width="0.0215%" height="15" fill="rgb(254,99,47)" fg:x="291794" fg:w="78"/><text x="80.7980%" y="655.50"></text></g><g><title>__push_leaf_left (48 samples, 0.01%)</title><rect x="80.5789%" y="645" width="0.0133%" height="15" fill="rgb(251,121,7)" fg:x="291906" fg:w="48"/><text x="80.8289%" y="655.50"></text></g><g><title>push_leaf_left (58 samples, 0.02%)</title><rect x="80.5784%" y="661" width="0.0160%" height="15" fill="rgb(250,177,26)" fg:x="291904" fg:w="58"/><text x="80.8284%" y="671.50"></text></g><g><title>split_leaf (172 samples, 0.05%)</title><rect x="80.5475%" y="677" width="0.0475%" height="15" fill="rgb(232,88,15)" fg:x="291792" fg:w="172"/><text x="80.7975%" y="687.50"></text></g><g><title>select_task_rq_fair (88 samples, 0.02%)</title><rect x="80.6421%" y="597" width="0.0243%" height="15" fill="rgb(251,54,54)" fg:x="292135" fg:w="88"/><text x="80.8921%" y="607.50"></text></g><g><title>enqueue_entity (94 samples, 0.03%)</title><rect x="80.6772%" y="565" width="0.0259%" height="15" fill="rgb(208,177,15)" fg:x="292262" fg:w="94"/><text x="80.9272%" y="575.50"></text></g><g><title>enqueue_task_fair (138 samples, 0.04%)</title><rect x="80.6697%" y="581" width="0.0381%" height="15" fill="rgb(205,97,32)" fg:x="292235" fg:w="138"/><text x="80.9197%" y="591.50"></text></g><g><title>ttwu_do_activate (236 samples, 0.07%)</title><rect x="80.6692%" y="597" width="0.0651%" height="15" fill="rgb(217,192,13)" fg:x="292233" fg:w="236"/><text x="80.9192%" y="607.50"></text></g><g><title>psi_task_change (96 samples, 0.03%)</title><rect x="80.7078%" y="581" width="0.0265%" height="15" fill="rgb(215,163,41)" fg:x="292373" fg:w="96"/><text x="80.9578%" y="591.50"></text></g><g><title>psi_group_change (88 samples, 0.02%)</title><rect x="80.7100%" y="565" width="0.0243%" height="15" fill="rgb(246,83,29)" fg:x="292381" fg:w="88"/><text x="80.9600%" y="575.50"></text></g><g><title>__wake_up_common (537 samples, 0.15%)</title><rect x="80.6035%" y="645" width="0.1482%" height="15" fill="rgb(219,2,45)" fg:x="291995" fg:w="537"/><text x="80.8535%" y="655.50"></text></g><g><title>autoremove_wake_function (529 samples, 0.15%)</title><rect x="80.6057%" y="629" width="0.1460%" height="15" fill="rgb(242,215,33)" fg:x="292003" fg:w="529"/><text x="80.8557%" y="639.50"></text></g><g><title>try_to_wake_up (517 samples, 0.14%)</title><rect x="80.6090%" y="613" width="0.1427%" height="15" fill="rgb(217,1,6)" fg:x="292015" fg:w="517"/><text x="80.8590%" y="623.50"></text></g><g><title>__wake_up_common_lock (547 samples, 0.15%)</title><rect x="80.6029%" y="661" width="0.1510%" height="15" fill="rgb(207,85,52)" fg:x="291993" fg:w="547"/><text x="80.8529%" y="671.50"></text></g><g><title>btrfs_search_slot (3,698 samples, 1.02%)</title><rect x="79.7406%" y="693" width="1.0208%" height="15" fill="rgb(231,171,19)" fg:x="288869" fg:w="3698"/><text x="79.9906%" y="703.50"></text></g><g><title>unlock_up (603 samples, 0.17%)</title><rect x="80.5949%" y="677" width="0.1665%" height="15" fill="rgb(207,128,4)" fg:x="291964" fg:w="603"/><text x="80.8449%" y="687.50"></text></g><g><title>btrfs_get_token_32 (138 samples, 0.04%)</title><rect x="80.7835%" y="677" width="0.0381%" height="15" fill="rgb(219,208,4)" fg:x="292647" fg:w="138"/><text x="81.0335%" y="687.50"></text></g><g><title>btrfs_set_token_32 (124 samples, 0.03%)</title><rect x="80.8381%" y="677" width="0.0342%" height="15" fill="rgb(235,161,42)" fg:x="292845" fg:w="124"/><text x="81.0881%" y="687.50"></text></g><g><title>memmove_extent_buffer (64 samples, 0.02%)</title><rect x="80.8762%" y="677" width="0.0177%" height="15" fill="rgb(247,218,18)" fg:x="292983" fg:w="64"/><text x="81.1262%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (4,219 samples, 1.16%)</title><rect x="79.7392%" y="709" width="1.1646%" height="15" fill="rgb(232,114,51)" fg:x="288864" fg:w="4219"/><text x="79.9892%" y="719.50"></text></g><g><title>setup_items_for_insert (516 samples, 0.14%)</title><rect x="80.7614%" y="693" width="0.1424%" height="15" fill="rgb(222,95,3)" fg:x="292567" fg:w="516"/><text x="81.0114%" y="703.50"></text></g><g><title>btrfs_set_token_32 (55 samples, 0.02%)</title><rect x="80.9375%" y="693" width="0.0152%" height="15" fill="rgb(240,65,29)" fg:x="293205" fg:w="55"/><text x="81.1875%" y="703.50"></text></g><g><title>btrfs_set_token_64 (90 samples, 0.02%)</title><rect x="80.9527%" y="693" width="0.0248%" height="15" fill="rgb(249,209,20)" fg:x="293260" fg:w="90"/><text x="81.2027%" y="703.50"></text></g><g><title>fill_inode_item (205 samples, 0.06%)</title><rect x="80.9298%" y="709" width="0.0566%" height="15" fill="rgb(241,48,37)" fg:x="293177" fg:w="205"/><text x="81.1798%" y="719.50"></text></g><g><title>inode_tree_add (298 samples, 0.08%)</title><rect x="80.9969%" y="709" width="0.0823%" height="15" fill="rgb(230,140,42)" fg:x="293420" fg:w="298"/><text x="81.2469%" y="719.50"></text></g><g><title>rb_insert_color (39 samples, 0.01%)</title><rect x="81.0683%" y="693" width="0.0108%" height="15" fill="rgb(230,176,45)" fg:x="293679" fg:w="39"/><text x="81.3183%" y="703.50"></text></g><g><title>insert_inode_locked4 (74 samples, 0.02%)</title><rect x="81.0791%" y="709" width="0.0204%" height="15" fill="rgb(245,112,21)" fg:x="293718" fg:w="74"/><text x="81.3291%" y="719.50"></text></g><g><title>inode_insert5 (74 samples, 0.02%)</title><rect x="81.0791%" y="693" width="0.0204%" height="15" fill="rgb(207,183,35)" fg:x="293718" fg:w="74"/><text x="81.3291%" y="703.50"></text></g><g><title>find_inode (42 samples, 0.01%)</title><rect x="81.0879%" y="677" width="0.0116%" height="15" fill="rgb(227,44,33)" fg:x="293750" fg:w="42"/><text x="81.3379%" y="687.50"></text></g><g><title>memcg_slab_post_alloc_hook (62 samples, 0.02%)</title><rect x="81.1639%" y="645" width="0.0171%" height="15" fill="rgb(246,120,21)" fg:x="294025" fg:w="62"/><text x="81.4139%" y="655.50"></text></g><g><title>btrfs_alloc_inode (259 samples, 0.07%)</title><rect x="81.1318%" y="677" width="0.0715%" height="15" fill="rgb(235,57,52)" fg:x="293909" fg:w="259"/><text x="81.3818%" y="687.50"></text></g><g><title>kmem_cache_alloc (191 samples, 0.05%)</title><rect x="81.1506%" y="661" width="0.0527%" height="15" fill="rgb(238,84,10)" fg:x="293977" fg:w="191"/><text x="81.4006%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (81 samples, 0.02%)</title><rect x="81.1810%" y="645" width="0.0224%" height="15" fill="rgb(251,200,32)" fg:x="294087" fg:w="81"/><text x="81.4310%" y="655.50"></text></g><g><title>obj_cgroup_charge (40 samples, 0.01%)</title><rect x="81.1923%" y="629" width="0.0110%" height="15" fill="rgb(247,159,13)" fg:x="294128" fg:w="40"/><text x="81.4423%" y="639.50"></text></g><g><title>alloc_inode (357 samples, 0.10%)</title><rect x="81.1285%" y="693" width="0.0985%" height="15" fill="rgb(238,64,4)" fg:x="293897" fg:w="357"/><text x="81.3785%" y="703.50"></text></g><g><title>inode_init_always (86 samples, 0.02%)</title><rect x="81.2033%" y="677" width="0.0237%" height="15" fill="rgb(221,131,51)" fg:x="294168" fg:w="86"/><text x="81.4533%" y="687.50"></text></g><g><title>new_inode (398 samples, 0.11%)</title><rect x="81.1211%" y="709" width="0.1099%" height="15" fill="rgb(242,5,29)" fg:x="293870" fg:w="398"/><text x="81.3711%" y="719.50"></text></g><g><title>btrfs_new_inode (5,601 samples, 1.55%)</title><rect x="79.6909%" y="725" width="1.5461%" height="15" fill="rgb(214,130,32)" fg:x="288689" fg:w="5601"/><text x="79.9409%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (50 samples, 0.01%)</title><rect x="81.2632%" y="693" width="0.0138%" height="15" fill="rgb(244,210,16)" fg:x="294385" fg:w="50"/><text x="81.5132%" y="703.50"></text></g><g><title>__radix_tree_lookup (71 samples, 0.02%)</title><rect x="81.3008%" y="661" width="0.0196%" height="15" fill="rgb(234,48,26)" fg:x="294521" fg:w="71"/><text x="81.5508%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (85 samples, 0.02%)</title><rect x="81.2997%" y="677" width="0.0235%" height="15" fill="rgb(231,82,38)" fg:x="294517" fg:w="85"/><text x="81.5497%" y="687.50"></text></g><g><title>kmem_cache_alloc (72 samples, 0.02%)</title><rect x="81.3231%" y="677" width="0.0199%" height="15" fill="rgb(254,128,41)" fg:x="294602" fg:w="72"/><text x="81.5731%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (239 samples, 0.07%)</title><rect x="81.2864%" y="693" width="0.0660%" height="15" fill="rgb(212,73,49)" fg:x="294469" fg:w="239"/><text x="81.5364%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (391 samples, 0.11%)</title><rect x="81.2544%" y="709" width="0.1079%" height="15" fill="rgb(205,62,54)" fg:x="294353" fg:w="391"/><text x="81.5044%" y="719.50"></text></g><g><title>btrfs_update_inode (440 samples, 0.12%)</title><rect x="81.2486%" y="725" width="0.1215%" height="15" fill="rgb(228,0,8)" fg:x="294332" fg:w="440"/><text x="81.4986%" y="735.50"></text></g><g><title>d_instantiate_new (81 samples, 0.02%)</title><rect x="81.3723%" y="725" width="0.0224%" height="15" fill="rgb(251,28,17)" fg:x="294780" fg:w="81"/><text x="81.6223%" y="735.50"></text></g><g><title>kmem_cache_alloc (49 samples, 0.01%)</title><rect x="81.3963%" y="725" width="0.0135%" height="15" fill="rgb(238,105,27)" fg:x="294867" fg:w="49"/><text x="81.6463%" y="735.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (63 samples, 0.02%)</title><rect x="81.4697%" y="661" width="0.0174%" height="15" fill="rgb(237,216,33)" fg:x="295133" fg:w="63"/><text x="81.7197%" y="671.50"></text></g><g><title>btrfs_block_rsv_add (210 samples, 0.06%)</title><rect x="81.4432%" y="709" width="0.0580%" height="15" fill="rgb(229,228,25)" fg:x="295037" fg:w="210"/><text x="81.6932%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (195 samples, 0.05%)</title><rect x="81.4474%" y="693" width="0.0538%" height="15" fill="rgb(233,75,23)" fg:x="295052" fg:w="195"/><text x="81.6974%" y="703.50"></text></g><g><title>__reserve_bytes (170 samples, 0.05%)</title><rect x="81.4543%" y="677" width="0.0469%" height="15" fill="rgb(231,207,16)" fg:x="295077" fg:w="170"/><text x="81.7043%" y="687.50"></text></g><g><title>calc_available_free_space.isra.0 (51 samples, 0.01%)</title><rect x="81.4871%" y="661" width="0.0141%" height="15" fill="rgb(231,191,45)" fg:x="295196" fg:w="51"/><text x="81.7371%" y="671.50"></text></g><g><title>join_transaction (41 samples, 0.01%)</title><rect x="81.5020%" y="709" width="0.0113%" height="15" fill="rgb(224,133,17)" fg:x="295250" fg:w="41"/><text x="81.7520%" y="719.50"></text></g><g><title>start_transaction (390 samples, 0.11%)</title><rect x="81.4217%" y="725" width="0.1077%" height="15" fill="rgb(209,178,27)" fg:x="294959" fg:w="390"/><text x="81.6717%" y="735.50"></text></g><g><title>strlen (116 samples, 0.03%)</title><rect x="81.5293%" y="725" width="0.0320%" height="15" fill="rgb(218,37,11)" fg:x="295349" fg:w="116"/><text x="81.7793%" y="735.50"></text></g><g><title>btrfs_symlink (16,887 samples, 4.66%)</title><rect x="76.9059%" y="741" width="4.6616%" height="15" fill="rgb(251,226,25)" fg:x="278600" fg:w="16887"/><text x="77.1559%" y="751.50">btrfs..</text></g><g><title>do_symlinkat (22,959 samples, 6.34%)</title><rect x="75.2449%" y="773" width="6.3377%" height="15" fill="rgb(209,222,27)" fg:x="272583" fg:w="22959"/><text x="75.4949%" y="783.50">do_symli..</text></g><g><title>vfs_symlink (16,971 samples, 4.68%)</title><rect x="76.8979%" y="757" width="4.6847%" height="15" fill="rgb(238,22,21)" fg:x="278571" fg:w="16971"/><text x="77.1479%" y="767.50">vfs_s..</text></g><g><title>do_syscall_64 (22,986 samples, 6.35%)</title><rect x="75.2416%" y="789" width="6.3451%" height="15" fill="rgb(233,161,25)" fg:x="272571" fg:w="22986"/><text x="75.4916%" y="799.50">do_sysca..</text></g><g><title>entry_SYSCALL_64_after_hwframe (23,042 samples, 6.36%)</title><rect x="75.2386%" y="805" width="6.3606%" height="15" fill="rgb(226,122,53)" fg:x="272560" fg:w="23042"/><text x="75.4886%" y="815.50">entry_SY..</text></g><g><title>syscall_exit_to_user_mode (45 samples, 0.01%)</title><rect x="81.5868%" y="789" width="0.0124%" height="15" fill="rgb(220,123,17)" fg:x="295557" fg:w="45"/><text x="81.8368%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (42 samples, 0.01%)</title><rect x="81.5876%" y="773" width="0.0116%" height="15" fill="rgb(230,224,35)" fg:x="295560" fg:w="42"/><text x="81.8376%" y="783.50"></text></g><g><title>__symlink (23,138 samples, 6.39%)</title><rect x="75.2187%" y="821" width="6.3871%" height="15" fill="rgb(246,83,8)" fg:x="272488" fg:w="23138"/><text x="75.4687%" y="831.50">__symlink</text></g><g><title>_int_free (53 samples, 0.01%)</title><rect x="81.6058%" y="821" width="0.0146%" height="15" fill="rgb(230,214,17)" fg:x="295626" fg:w="53"/><text x="81.8558%" y="831.50"></text></g><g><title>jni_ExceptionOccurred (42 samples, 0.01%)</title><rect x="81.6279%" y="821" width="0.0116%" height="15" fill="rgb(222,97,18)" fg:x="295706" fg:w="42"/><text x="81.8779%" y="831.50"></text></g><g><title>check_bounds (45 samples, 0.01%)</title><rect x="81.6624%" y="805" width="0.0124%" height="15" fill="rgb(206,79,1)" fg:x="295831" fg:w="45"/><text x="81.9124%" y="815.50"></text></g><g><title>jni_GetByteArrayRegion (144 samples, 0.04%)</title><rect x="81.6395%" y="821" width="0.0398%" height="15" fill="rgb(214,121,34)" fg:x="295748" fg:w="144"/><text x="81.8895%" y="831.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (45 samples, 0.01%)</title><rect x="81.6861%" y="805" width="0.0124%" height="15" fill="rgb(249,199,46)" fg:x="295917" fg:w="45"/><text x="81.9361%" y="815.50"></text></g><g><title>jni_GetObjectField (152 samples, 0.04%)</title><rect x="81.6792%" y="821" width="0.0420%" height="15" fill="rgb(214,222,46)" fg:x="295892" fg:w="152"/><text x="81.9292%" y="831.50"></text></g><g><title>jni_GetStringLength (95 samples, 0.03%)</title><rect x="81.7212%" y="821" width="0.0262%" height="15" fill="rgb(248,168,30)" fg:x="296044" fg:w="95"/><text x="81.9712%" y="831.50"></text></g><g><title>jni_NewObjectV (83 samples, 0.02%)</title><rect x="81.7480%" y="821" width="0.0229%" height="15" fill="rgb(226,14,28)" fg:x="296141" fg:w="83"/><text x="81.9980%" y="831.50"></text></g><g><title>__GI___libc_malloc (47 samples, 0.01%)</title><rect x="81.7877%" y="805" width="0.0130%" height="15" fill="rgb(253,123,1)" fg:x="296285" fg:w="47"/><text x="82.0377%" y="815.50"></text></g><g><title>operator new (62 samples, 0.02%)</title><rect x="81.7877%" y="821" width="0.0171%" height="15" fill="rgb(225,24,42)" fg:x="296285" fg:w="62"/><text x="82.0377%" y="831.50"></text></g><g><title>btrfs_lock_root_node (63 samples, 0.02%)</title><rect x="81.8291%" y="661" width="0.0174%" height="15" fill="rgb(216,161,37)" fg:x="296435" fg:w="63"/><text x="82.0791%" y="671.50"></text></g><g><title>__btrfs_tree_lock (63 samples, 0.02%)</title><rect x="81.8291%" y="645" width="0.0174%" height="15" fill="rgb(251,164,26)" fg:x="296435" fg:w="63"/><text x="82.0791%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (119 samples, 0.03%)</title><rect x="81.8178%" y="693" width="0.0328%" height="15" fill="rgb(219,177,3)" fg:x="296394" fg:w="119"/><text x="82.0678%" y="703.50"></text></g><g><title>btrfs_search_slot (113 samples, 0.03%)</title><rect x="81.8195%" y="677" width="0.0312%" height="15" fill="rgb(222,65,0)" fg:x="296400" fg:w="113"/><text x="82.0695%" y="687.50"></text></g><g><title>btrfs_lock_root_node (41 samples, 0.01%)</title><rect x="81.8559%" y="661" width="0.0113%" height="15" fill="rgb(223,69,54)" fg:x="296532" fg:w="41"/><text x="82.1059%" y="671.50"></text></g><g><title>__btrfs_tree_lock (41 samples, 0.01%)</title><rect x="81.8559%" y="645" width="0.0113%" height="15" fill="rgb(235,30,27)" fg:x="296532" fg:w="41"/><text x="82.1059%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (67 samples, 0.02%)</title><rect x="81.8531%" y="693" width="0.0185%" height="15" fill="rgb(220,183,50)" fg:x="296522" fg:w="67"/><text x="82.1031%" y="703.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.02%)</title><rect x="81.8531%" y="677" width="0.0185%" height="15" fill="rgb(248,198,15)" fg:x="296522" fg:w="67"/><text x="82.1031%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (201 samples, 0.06%)</title><rect x="81.8173%" y="709" width="0.0555%" height="15" fill="rgb(222,211,4)" fg:x="296392" fg:w="201"/><text x="82.0673%" y="719.50"></text></g><g><title>btrfs_rename2 (289 samples, 0.08%)</title><rect x="81.8167%" y="725" width="0.0798%" height="15" fill="rgb(214,102,34)" fg:x="296390" fg:w="289"/><text x="82.0667%" y="735.50"></text></g><g><title>do_syscall_64 (303 samples, 0.08%)</title><rect x="81.8134%" y="789" width="0.0836%" height="15" fill="rgb(245,92,5)" fg:x="296378" fg:w="303"/><text x="82.0634%" y="799.50"></text></g><g><title>__x64_sys_rename (303 samples, 0.08%)</title><rect x="81.8134%" y="773" width="0.0836%" height="15" fill="rgb(252,72,51)" fg:x="296378" fg:w="303"/><text x="82.0634%" y="783.50"></text></g><g><title>do_renameat2 (303 samples, 0.08%)</title><rect x="81.8134%" y="757" width="0.0836%" height="15" fill="rgb(252,208,19)" fg:x="296378" fg:w="303"/><text x="82.0634%" y="767.50"></text></g><g><title>vfs_rename (291 samples, 0.08%)</title><rect x="81.8167%" y="741" width="0.0803%" height="15" fill="rgb(211,69,7)" fg:x="296390" fg:w="291"/><text x="82.0667%" y="751.50"></text></g><g><title>rename (306 samples, 0.08%)</title><rect x="81.8128%" y="821" width="0.0845%" height="15" fill="rgb(211,27,16)" fg:x="296376" fg:w="306"/><text x="82.0628%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (304 samples, 0.08%)</title><rect x="81.8134%" y="805" width="0.0839%" height="15" fill="rgb(219,216,14)" fg:x="296378" fg:w="304"/><text x="82.0634%" y="815.50"></text></g><g><title>operator new (59 samples, 0.02%)</title><rect x="81.8992%" y="805" width="0.0163%" height="15" fill="rgb(219,71,8)" fg:x="296689" fg:w="59"/><text x="82.1492%" y="815.50"></text></g><g><title>__GI___libc_malloc (59 samples, 0.02%)</title><rect x="81.8992%" y="789" width="0.0163%" height="15" fill="rgb(223,170,53)" fg:x="296689" fg:w="59"/><text x="82.1492%" y="799.50"></text></g><g><title>[libunix_jni.so] (172,829 samples, 47.71%)</title><rect x="34.2077%" y="837" width="47.7084%" height="15" fill="rgb(246,21,26)" fg:x="123921" fg:w="172829"/><text x="34.4577%" y="847.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (64 samples, 0.02%)</title><rect x="81.8984%" y="821" width="0.0177%" height="15" fill="rgb(248,20,46)" fg:x="296686" fg:w="64"/><text x="82.1484%" y="831.50"></text></g><g><title>ConstantPool::klass_at_impl (52 samples, 0.01%)</title><rect x="97.9291%" y="805" width="0.0144%" height="15" fill="rgb(252,94,11)" fg:x="354759" fg:w="52"/><text x="98.1791%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (49 samples, 0.01%)</title><rect x="97.9299%" y="789" width="0.0135%" height="15" fill="rgb(236,163,8)" fg:x="354762" fg:w="49"/><text x="98.1799%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (47 samples, 0.01%)</title><rect x="97.9305%" y="773" width="0.0130%" height="15" fill="rgb(217,221,45)" fg:x="354764" fg:w="47"/><text x="98.1805%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (71 samples, 0.02%)</title><rect x="97.9451%" y="789" width="0.0196%" height="15" fill="rgb(238,38,17)" fg:x="354817" fg:w="71"/><text x="98.1951%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (133 samples, 0.04%)</title><rect x="97.9291%" y="821" width="0.0367%" height="15" fill="rgb(242,210,23)" fg:x="354759" fg:w="133"/><text x="98.1791%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (78 samples, 0.02%)</title><rect x="97.9443%" y="805" width="0.0215%" height="15" fill="rgb(250,86,53)" fg:x="354814" fg:w="78"/><text x="98.1943%" y="815.50"></text></g><g><title>ObjArrayAllocator::initialize (39 samples, 0.01%)</title><rect x="97.9904%" y="757" width="0.0108%" height="15" fill="rgb(223,168,25)" fg:x="354981" fg:w="39"/><text x="98.2404%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (68 samples, 0.02%)</title><rect x="97.9843%" y="789" width="0.0188%" height="15" fill="rgb(251,189,4)" fg:x="354959" fg:w="68"/><text x="98.2343%" y="799.50"></text></g><g><title>MemAllocator::allocate (66 samples, 0.02%)</title><rect x="97.9849%" y="773" width="0.0182%" height="15" fill="rgb(245,19,28)" fg:x="354961" fg:w="66"/><text x="98.2349%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (115 samples, 0.03%)</title><rect x="97.9774%" y="805" width="0.0317%" height="15" fill="rgb(207,10,34)" fg:x="354934" fg:w="115"/><text x="98.2274%" y="815.50"></text></g><g><title>InterpreterRuntime::anewarray (165 samples, 0.05%)</title><rect x="97.9658%" y="821" width="0.0455%" height="15" fill="rgb(235,153,31)" fg:x="354892" fg:w="165"/><text x="98.2158%" y="831.50"></text></g><g><title>TieredThresholdPolicy::call_event (46 samples, 0.01%)</title><rect x="98.0619%" y="757" width="0.0127%" height="15" fill="rgb(228,72,37)" fg:x="355240" fg:w="46"/><text x="98.3119%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (39 samples, 0.01%)</title><rect x="98.0782%" y="709" width="0.0108%" height="15" fill="rgb(215,15,16)" fg:x="355299" fg:w="39"/><text x="98.3282%" y="719.50"></text></g><g><title>CompileBroker::compile_method (55 samples, 0.02%)</title><rect x="98.0749%" y="725" width="0.0152%" height="15" fill="rgb(250,119,29)" fg:x="355287" fg:w="55"/><text x="98.3249%" y="735.50"></text></g><g><title>TieredThresholdPolicy::compile (57 samples, 0.02%)</title><rect x="98.0746%" y="757" width="0.0157%" height="15" fill="rgb(214,59,1)" fg:x="355286" fg:w="57"/><text x="98.3246%" y="767.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (56 samples, 0.02%)</title><rect x="98.0749%" y="741" width="0.0155%" height="15" fill="rgb(223,109,25)" fg:x="355287" fg:w="56"/><text x="98.3249%" y="751.50"></text></g><g><title>TieredThresholdPolicy::event (166 samples, 0.05%)</title><rect x="98.0448%" y="789" width="0.0458%" height="15" fill="rgb(230,198,22)" fg:x="355178" fg:w="166"/><text x="98.2948%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (144 samples, 0.04%)</title><rect x="98.0509%" y="773" width="0.0398%" height="15" fill="rgb(245,184,46)" fg:x="355200" fg:w="144"/><text x="98.3009%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (219 samples, 0.06%)</title><rect x="98.0307%" y="805" width="0.0605%" height="15" fill="rgb(253,73,16)" fg:x="355127" fg:w="219"/><text x="98.2807%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (223 samples, 0.06%)</title><rect x="98.0299%" y="821" width="0.0616%" height="15" fill="rgb(206,94,45)" fg:x="355124" fg:w="223"/><text x="98.2799%" y="831.50"></text></g><g><title>InterpreterRuntime::ldc (72 samples, 0.02%)</title><rect x="98.0914%" y="821" width="0.0199%" height="15" fill="rgb(236,83,27)" fg:x="355347" fg:w="72"/><text x="98.3414%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (40 samples, 0.01%)</title><rect x="98.1323%" y="805" width="0.0110%" height="15" fill="rgb(220,196,8)" fg:x="355495" fg:w="40"/><text x="98.3823%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (59 samples, 0.02%)</title><rect x="98.1723%" y="773" width="0.0163%" height="15" fill="rgb(254,185,14)" fg:x="355640" fg:w="59"/><text x="98.4223%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (47 samples, 0.01%)</title><rect x="98.1886%" y="773" width="0.0130%" height="15" fill="rgb(226,50,22)" fg:x="355699" fg:w="47"/><text x="98.4386%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (42 samples, 0.01%)</title><rect x="98.2035%" y="741" width="0.0116%" height="15" fill="rgb(253,147,0)" fg:x="355753" fg:w="42"/><text x="98.4535%" y="751.50"></text></g><g><title>InstanceKlass::initialize_impl (52 samples, 0.01%)</title><rect x="98.2030%" y="757" width="0.0144%" height="15" fill="rgb(252,46,33)" fg:x="355751" fg:w="52"/><text x="98.4530%" y="767.50"></text></g><g><title>LinkResolver::resolve_static_call (85 samples, 0.02%)</title><rect x="98.2016%" y="773" width="0.0235%" height="15" fill="rgb(242,22,54)" fg:x="355746" fg:w="85"/><text x="98.4516%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (248 samples, 0.07%)</title><rect x="98.1596%" y="789" width="0.0685%" height="15" fill="rgb(223,178,32)" fg:x="355594" fg:w="248"/><text x="98.4096%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (328 samples, 0.09%)</title><rect x="98.1433%" y="805" width="0.0905%" height="15" fill="rgb(214,106,53)" fg:x="355535" fg:w="328"/><text x="98.3933%" y="815.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (51 samples, 0.01%)</title><rect x="98.2344%" y="757" width="0.0141%" height="15" fill="rgb(232,65,50)" fg:x="355865" fg:w="51"/><text x="98.4844%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (82 samples, 0.02%)</title><rect x="98.2339%" y="805" width="0.0226%" height="15" fill="rgb(231,110,28)" fg:x="355863" fg:w="82"/><text x="98.4839%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (80 samples, 0.02%)</title><rect x="98.2344%" y="789" width="0.0221%" height="15" fill="rgb(216,71,40)" fg:x="355865" fg:w="80"/><text x="98.4844%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (80 samples, 0.02%)</title><rect x="98.2344%" y="773" width="0.0221%" height="15" fill="rgb(229,89,53)" fg:x="355865" fg:w="80"/><text x="98.4844%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (460 samples, 0.13%)</title><rect x="98.1312%" y="821" width="0.1270%" height="15" fill="rgb(210,124,14)" fg:x="355491" fg:w="460"/><text x="98.3812%" y="831.50"></text></g><g><title>JVM_Clone (57 samples, 0.02%)</title><rect x="98.2678%" y="821" width="0.0157%" height="15" fill="rgb(236,213,6)" fg:x="355986" fg:w="57"/><text x="98.5178%" y="831.50"></text></g><g><title>JVM_IHashCode (40 samples, 0.01%)</title><rect x="98.3222%" y="821" width="0.0110%" height="15" fill="rgb(228,41,5)" fg:x="356183" fg:w="40"/><text x="98.5722%" y="831.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (39 samples, 0.01%)</title><rect x="98.3225%" y="805" width="0.0108%" height="15" fill="rgb(221,167,25)" fg:x="356184" fg:w="39"/><text x="98.5725%" y="815.50"></text></g><g><title>ObjectMonitor::wait (40 samples, 0.01%)</title><rect x="98.3597%" y="789" width="0.0110%" height="15" fill="rgb(228,144,37)" fg:x="356319" fg:w="40"/><text x="98.6097%" y="799.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.01%)</title><rect x="98.3606%" y="773" width="0.0102%" height="15" fill="rgb(227,189,38)" fg:x="356322" fg:w="37"/><text x="98.6106%" y="783.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.01%)</title><rect x="98.3606%" y="757" width="0.0102%" height="15" fill="rgb(218,8,2)" fg:x="356322" fg:w="37"/><text x="98.6106%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.01%)</title><rect x="98.3606%" y="741" width="0.0102%" height="15" fill="rgb(209,61,28)" fg:x="356322" fg:w="37"/><text x="98.6106%" y="751.50"></text></g><g><title>ObjectSynchronizer::wait (49 samples, 0.01%)</title><rect x="98.3589%" y="805" width="0.0135%" height="15" fill="rgb(233,140,39)" fg:x="356316" fg:w="49"/><text x="98.6089%" y="815.50"></text></g><g><title>JVM_MonitorWait (52 samples, 0.01%)</title><rect x="98.3584%" y="821" width="0.0144%" height="15" fill="rgb(251,66,48)" fg:x="356314" fg:w="52"/><text x="98.6084%" y="831.50"></text></g><g><title>Java_java_io_UnixFileSystem_getBooleanAttributes0 (38 samples, 0.01%)</title><rect x="98.3868%" y="821" width="0.0105%" height="15" fill="rgb(210,44,45)" fg:x="356417" fg:w="38"/><text x="98.6368%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (341 samples, 0.09%)</title><rect x="98.4050%" y="693" width="0.0941%" height="15" fill="rgb(214,136,46)" fg:x="356483" fg:w="341"/><text x="98.6550%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (297 samples, 0.08%)</title><rect x="98.4172%" y="677" width="0.0820%" height="15" fill="rgb(207,130,50)" fg:x="356527" fg:w="297"/><text x="98.6672%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (351 samples, 0.10%)</title><rect x="98.4034%" y="709" width="0.0969%" height="15" fill="rgb(228,102,49)" fg:x="356477" fg:w="351"/><text x="98.6534%" y="719.50"></text></g><g><title>ClassFileParser::parse_method (80 samples, 0.02%)</title><rect x="98.5036%" y="693" width="0.0221%" height="15" fill="rgb(253,55,1)" fg:x="356840" fg:w="80"/><text x="98.7536%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (82 samples, 0.02%)</title><rect x="98.5036%" y="709" width="0.0226%" height="15" fill="rgb(238,222,9)" fg:x="356840" fg:w="82"/><text x="98.7536%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (455 samples, 0.13%)</title><rect x="98.4020%" y="725" width="0.1256%" height="15" fill="rgb(246,99,6)" fg:x="356472" fg:w="455"/><text x="98.6520%" y="735.50"></text></g><g><title>ClassFileParser::ClassFileParser (458 samples, 0.13%)</title><rect x="98.4017%" y="741" width="0.1264%" height="15" fill="rgb(219,110,26)" fg:x="356471" fg:w="458"/><text x="98.6517%" y="751.50"></text></g><g><title>DefaultMethods::generate_default_methods (50 samples, 0.01%)</title><rect x="98.5290%" y="709" width="0.0138%" height="15" fill="rgb(239,160,33)" fg:x="356932" fg:w="50"/><text x="98.7790%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (77 samples, 0.02%)</title><rect x="98.5281%" y="725" width="0.0213%" height="15" fill="rgb(220,202,23)" fg:x="356929" fg:w="77"/><text x="98.7781%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (86 samples, 0.02%)</title><rect x="98.5281%" y="741" width="0.0237%" height="15" fill="rgb(208,80,26)" fg:x="356929" fg:w="86"/><text x="98.7781%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (571 samples, 0.16%)</title><rect x="98.4014%" y="757" width="0.1576%" height="15" fill="rgb(243,85,7)" fg:x="356470" fg:w="571"/><text x="98.6514%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (590 samples, 0.16%)</title><rect x="98.4009%" y="773" width="0.1629%" height="15" fill="rgb(228,77,47)" fg:x="356468" fg:w="590"/><text x="98.6509%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (603 samples, 0.17%)</title><rect x="98.3976%" y="805" width="0.1665%" height="15" fill="rgb(212,226,8)" fg:x="356456" fg:w="603"/><text x="98.6476%" y="815.50"></text></g><g><title>jvm_define_class_common (602 samples, 0.17%)</title><rect x="98.3978%" y="789" width="0.1662%" height="15" fill="rgb(241,120,54)" fg:x="356457" fg:w="602"/><text x="98.6478%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (629 samples, 0.17%)</title><rect x="98.3973%" y="821" width="0.1736%" height="15" fill="rgb(226,80,16)" fg:x="356455" fg:w="629"/><text x="98.6473%" y="831.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (63 samples, 0.02%)</title><rect x="98.5861%" y="821" width="0.0174%" height="15" fill="rgb(240,76,13)" fg:x="357139" fg:w="63"/><text x="98.8361%" y="831.50"></text></g><g><title>os_getParentPidAndTimings (63 samples, 0.02%)</title><rect x="98.5861%" y="805" width="0.0174%" height="15" fill="rgb(252,74,8)" fg:x="357139" fg:w="63"/><text x="98.8361%" y="815.50"></text></g><g><title>copy_process (57 samples, 0.02%)</title><rect x="98.6201%" y="709" width="0.0157%" height="15" fill="rgb(244,155,2)" fg:x="357262" fg:w="57"/><text x="98.8701%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.03%)</title><rect x="98.6195%" y="773" width="0.0271%" height="15" fill="rgb(215,81,35)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="783.50"></text></g><g><title>do_syscall_64 (98 samples, 0.03%)</title><rect x="98.6195%" y="757" width="0.0271%" height="15" fill="rgb(206,55,2)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="767.50"></text></g><g><title>__x64_sys_vfork (98 samples, 0.03%)</title><rect x="98.6195%" y="741" width="0.0271%" height="15" fill="rgb(231,2,34)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="751.50"></text></g><g><title>kernel_clone (98 samples, 0.03%)</title><rect x="98.6195%" y="725" width="0.0271%" height="15" fill="rgb(242,176,48)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.06%)</title><rect x="98.6504%" y="725" width="0.0563%" height="15" fill="rgb(249,31,36)" fg:x="357372" fg:w="204"/><text x="98.9004%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (202 samples, 0.06%)</title><rect x="98.6510%" y="709" width="0.0558%" height="15" fill="rgb(205,18,17)" fg:x="357374" fg:w="202"/><text x="98.9010%" y="719.50"></text></g><g><title>native_write_msr (201 samples, 0.06%)</title><rect x="98.6512%" y="693" width="0.0555%" height="15" fill="rgb(254,130,5)" fg:x="357375" fg:w="201"/><text x="98.9012%" y="703.50"></text></g><g><title>schedule_tail (213 samples, 0.06%)</title><rect x="98.6485%" y="757" width="0.0588%" height="15" fill="rgb(229,42,45)" fg:x="357365" fg:w="213"/><text x="98.8985%" y="767.50"></text></g><g><title>finish_task_switch (211 samples, 0.06%)</title><rect x="98.6490%" y="741" width="0.0582%" height="15" fill="rgb(245,95,25)" fg:x="357367" fg:w="211"/><text x="98.8990%" y="751.50"></text></g><g><title>__libc_vfork (326 samples, 0.09%)</title><rect x="98.6181%" y="789" width="0.0900%" height="15" fill="rgb(249,193,38)" fg:x="357255" fg:w="326"/><text x="98.8681%" y="799.50"></text></g><g><title>ret_from_fork (223 samples, 0.06%)</title><rect x="98.6466%" y="773" width="0.0616%" height="15" fill="rgb(241,140,43)" fg:x="357358" fg:w="223"/><text x="98.8966%" y="783.50"></text></g><g><title>bprm_execve (112 samples, 0.03%)</title><rect x="98.7134%" y="677" width="0.0309%" height="15" fill="rgb(245,78,48)" fg:x="357600" fg:w="112"/><text x="98.9634%" y="687.50"></text></g><g><title>JDK_execvpe (165 samples, 0.05%)</title><rect x="98.7084%" y="773" width="0.0455%" height="15" fill="rgb(214,92,39)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="783.50"></text></g><g><title>__GI_execve (165 samples, 0.05%)</title><rect x="98.7084%" y="757" width="0.0455%" height="15" fill="rgb(211,189,14)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (165 samples, 0.05%)</title><rect x="98.7084%" y="741" width="0.0455%" height="15" fill="rgb(218,7,24)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="751.50"></text></g><g><title>do_syscall_64 (165 samples, 0.05%)</title><rect x="98.7084%" y="725" width="0.0455%" height="15" fill="rgb(224,200,49)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="735.50"></text></g><g><title>__x64_sys_execve (165 samples, 0.05%)</title><rect x="98.7084%" y="709" width="0.0455%" height="15" fill="rgb(218,210,14)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="719.50"></text></g><g><title>do_execveat_common (165 samples, 0.05%)</title><rect x="98.7084%" y="693" width="0.0455%" height="15" fill="rgb(234,142,31)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="703.50"></text></g><g><title>proc_fill_cache (75 samples, 0.02%)</title><rect x="98.7636%" y="645" width="0.0207%" height="15" fill="rgb(227,165,2)" fg:x="357782" fg:w="75"/><text x="99.0136%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="98.7617%" y="725" width="0.0243%" height="15" fill="rgb(232,44,46)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="735.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="98.7617%" y="709" width="0.0243%" height="15" fill="rgb(236,149,47)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (88 samples, 0.02%)</title><rect x="98.7617%" y="693" width="0.0243%" height="15" fill="rgb(227,45,31)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="703.50"></text></g><g><title>iterate_dir (88 samples, 0.02%)</title><rect x="98.7617%" y="677" width="0.0243%" height="15" fill="rgb(240,176,51)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="687.50"></text></g><g><title>proc_readfd_common (88 samples, 0.02%)</title><rect x="98.7617%" y="661" width="0.0243%" height="15" fill="rgb(249,146,41)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="671.50"></text></g><g><title>__GI___readdir64 (91 samples, 0.03%)</title><rect x="98.7611%" y="757" width="0.0251%" height="15" fill="rgb(213,208,4)" fg:x="357773" fg:w="91"/><text x="99.0111%" y="767.50"></text></g><g><title>__GI___getdents64 (90 samples, 0.02%)</title><rect x="98.7614%" y="741" width="0.0248%" height="15" fill="rgb(245,84,36)" fg:x="357774" fg:w="90"/><text x="99.0114%" y="751.50"></text></g><g><title>__close (37 samples, 0.01%)</title><rect x="98.7862%" y="757" width="0.0102%" height="15" fill="rgb(254,84,18)" fg:x="357864" fg:w="37"/><text x="99.0362%" y="767.50"></text></g><g><title>closeDescriptors (160 samples, 0.04%)</title><rect x="98.7597%" y="773" width="0.0442%" height="15" fill="rgb(225,38,54)" fg:x="357768" fg:w="160"/><text x="99.0097%" y="783.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (742 samples, 0.20%)</title><rect x="98.6035%" y="821" width="0.2048%" height="15" fill="rgb(246,50,30)" fg:x="357202" fg:w="742"/><text x="98.8535%" y="831.50"></text></g><g><title>vforkChild (691 samples, 0.19%)</title><rect x="98.6176%" y="805" width="0.1907%" height="15" fill="rgb(246,148,9)" fg:x="357253" fg:w="691"/><text x="98.8676%" y="815.50"></text></g><g><title>childProcess (363 samples, 0.10%)</title><rect x="98.7081%" y="789" width="0.1002%" height="15" fill="rgb(223,75,4)" fg:x="357581" fg:w="363"/><text x="98.9581%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (39 samples, 0.01%)</title><rect x="98.8423%" y="805" width="0.0108%" height="15" fill="rgb(239,148,41)" fg:x="358067" fg:w="39"/><text x="99.0923%" y="815.50"></text></g><g><title>Runtime1::counter_overflow (75 samples, 0.02%)</title><rect x="98.8376%" y="821" width="0.0207%" height="15" fill="rgb(205,195,3)" fg:x="358050" fg:w="75"/><text x="99.0876%" y="831.50"></text></g><g><title>ObjectMonitor::enter (50 samples, 0.01%)</title><rect x="98.8768%" y="805" width="0.0138%" height="15" fill="rgb(254,161,1)" fg:x="358192" fg:w="50"/><text x="99.1268%" y="815.50"></text></g><g><title>os::PlatformEvent::park (46 samples, 0.01%)</title><rect x="98.8779%" y="789" width="0.0127%" height="15" fill="rgb(211,229,8)" fg:x="358196" fg:w="46"/><text x="99.1279%" y="799.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (59 samples, 0.02%)</title><rect x="98.8765%" y="821" width="0.0163%" height="15" fill="rgb(220,97,9)" fg:x="358191" fg:w="59"/><text x="99.1265%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (52 samples, 0.01%)</title><rect x="98.9190%" y="773" width="0.0144%" height="15" fill="rgb(240,218,8)" fg:x="358345" fg:w="52"/><text x="99.1690%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (52 samples, 0.01%)</title><rect x="98.9190%" y="757" width="0.0144%" height="15" fill="rgb(250,44,0)" fg:x="358345" fg:w="52"/><text x="99.1690%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (75 samples, 0.02%)</title><rect x="98.9190%" y="789" width="0.0207%" height="15" fill="rgb(236,41,53)" fg:x="358345" fg:w="75"/><text x="99.1690%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (115 samples, 0.03%)</title><rect x="98.9107%" y="805" width="0.0317%" height="15" fill="rgb(218,227,13)" fg:x="358315" fg:w="115"/><text x="99.1607%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (118 samples, 0.03%)</title><rect x="98.9102%" y="821" width="0.0326%" height="15" fill="rgb(217,94,32)" fg:x="358313" fg:w="118"/><text x="99.1602%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (136 samples, 0.04%)</title><rect x="98.9612%" y="597" width="0.0375%" height="15" fill="rgb(213,217,12)" fg:x="358498" fg:w="136"/><text x="99.2112%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (135 samples, 0.04%)</title><rect x="98.9615%" y="581" width="0.0373%" height="15" fill="rgb(229,13,46)" fg:x="358499" fg:w="135"/><text x="99.2115%" y="591.50"></text></g><g><title>native_write_msr (133 samples, 0.04%)</title><rect x="98.9621%" y="565" width="0.0367%" height="15" fill="rgb(243,139,5)" fg:x="358501" fg:w="133"/><text x="99.2121%" y="575.50"></text></g><g><title>finish_task_switch (146 samples, 0.04%)</title><rect x="98.9601%" y="613" width="0.0403%" height="15" fill="rgb(249,38,45)" fg:x="358494" fg:w="146"/><text x="99.2101%" y="623.50"></text></g><g><title>futex_wait_queue_me (166 samples, 0.05%)</title><rect x="98.9577%" y="661" width="0.0458%" height="15" fill="rgb(216,70,11)" fg:x="358485" fg:w="166"/><text x="99.2077%" y="671.50"></text></g><g><title>schedule (165 samples, 0.05%)</title><rect x="98.9579%" y="645" width="0.0455%" height="15" fill="rgb(253,101,25)" fg:x="358486" fg:w="165"/><text x="99.2079%" y="655.50"></text></g><g><title>__schedule (164 samples, 0.05%)</title><rect x="98.9582%" y="629" width="0.0453%" height="15" fill="rgb(207,197,30)" fg:x="358487" fg:w="164"/><text x="99.2082%" y="639.50"></text></g><g><title>do_syscall_64 (170 samples, 0.05%)</title><rect x="98.9568%" y="725" width="0.0469%" height="15" fill="rgb(238,87,13)" fg:x="358482" fg:w="170"/><text x="99.2068%" y="735.50"></text></g><g><title>__x64_sys_futex (170 samples, 0.05%)</title><rect x="98.9568%" y="709" width="0.0469%" height="15" fill="rgb(215,155,8)" fg:x="358482" fg:w="170"/><text x="99.2068%" y="719.50"></text></g><g><title>do_futex (169 samples, 0.05%)</title><rect x="98.9571%" y="693" width="0.0467%" height="15" fill="rgb(239,166,38)" fg:x="358483" fg:w="169"/><text x="99.2071%" y="703.50"></text></g><g><title>futex_wait (169 samples, 0.05%)</title><rect x="98.9571%" y="677" width="0.0467%" height="15" fill="rgb(240,194,35)" fg:x="358483" fg:w="169"/><text x="99.2071%" y="687.50"></text></g><g><title>__pthread_cond_wait (180 samples, 0.05%)</title><rect x="98.9554%" y="789" width="0.0497%" height="15" fill="rgb(219,10,44)" fg:x="358477" fg:w="180"/><text x="99.2054%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (180 samples, 0.05%)</title><rect x="98.9554%" y="773" width="0.0497%" height="15" fill="rgb(251,220,35)" fg:x="358477" fg:w="180"/><text x="99.2054%" y="783.50"></text></g><g><title>futex_wait_cancelable (179 samples, 0.05%)</title><rect x="98.9557%" y="757" width="0.0494%" height="15" fill="rgb(218,117,13)" fg:x="358478" fg:w="179"/><text x="99.2057%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (175 samples, 0.05%)</title><rect x="98.9568%" y="741" width="0.0483%" height="15" fill="rgb(221,213,40)" fg:x="358482" fg:w="175"/><text x="99.2068%" y="751.50"></text></g><g><title>Unsafe_Park (204 samples, 0.06%)</title><rect x="98.9502%" y="821" width="0.0563%" height="15" fill="rgb(251,224,35)" fg:x="358458" fg:w="204"/><text x="99.2002%" y="831.50"></text></g><g><title>Parker::park (199 samples, 0.05%)</title><rect x="98.9516%" y="805" width="0.0549%" height="15" fill="rgb(241,33,39)" fg:x="358463" fg:w="199"/><text x="99.2016%" y="815.50"></text></g><g><title>ttwu_do_activate (54 samples, 0.01%)</title><rect x="99.0300%" y="661" width="0.0149%" height="15" fill="rgb(222,74,17)" fg:x="358747" fg:w="54"/><text x="99.2800%" y="671.50"></text></g><g><title>__x64_sys_futex (112 samples, 0.03%)</title><rect x="99.0162%" y="741" width="0.0309%" height="15" fill="rgb(225,103,0)" fg:x="358697" fg:w="112"/><text x="99.2662%" y="751.50"></text></g><g><title>do_futex (111 samples, 0.03%)</title><rect x="99.0165%" y="725" width="0.0306%" height="15" fill="rgb(240,0,12)" fg:x="358698" fg:w="111"/><text x="99.2665%" y="735.50"></text></g><g><title>futex_wake (110 samples, 0.03%)</title><rect x="99.0167%" y="709" width="0.0304%" height="15" fill="rgb(233,213,37)" fg:x="358699" fg:w="110"/><text x="99.2667%" y="719.50"></text></g><g><title>wake_up_q (92 samples, 0.03%)</title><rect x="99.0217%" y="693" width="0.0254%" height="15" fill="rgb(225,84,52)" fg:x="358717" fg:w="92"/><text x="99.2717%" y="703.50"></text></g><g><title>try_to_wake_up (91 samples, 0.03%)</title><rect x="99.0220%" y="677" width="0.0251%" height="15" fill="rgb(247,160,51)" fg:x="358718" fg:w="91"/><text x="99.2720%" y="687.50"></text></g><g><title>do_syscall_64 (116 samples, 0.03%)</title><rect x="99.0156%" y="757" width="0.0320%" height="15" fill="rgb(244,60,51)" fg:x="358695" fg:w="116"/><text x="99.2656%" y="767.50"></text></g><g><title>__pthread_cond_signal (127 samples, 0.04%)</title><rect x="99.0142%" y="805" width="0.0351%" height="15" fill="rgb(233,114,7)" fg:x="358690" fg:w="127"/><text x="99.2642%" y="815.50"></text></g><g><title>futex_wake (123 samples, 0.03%)</title><rect x="99.0154%" y="789" width="0.0340%" height="15" fill="rgb(246,136,16)" fg:x="358694" fg:w="123"/><text x="99.2654%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.03%)</title><rect x="99.0156%" y="773" width="0.0337%" height="15" fill="rgb(243,114,45)" fg:x="358695" fg:w="122"/><text x="99.2656%" y="783.50"></text></g><g><title>Unsafe_Unpark (152 samples, 0.04%)</title><rect x="99.0087%" y="821" width="0.0420%" height="15" fill="rgb(247,183,43)" fg:x="358670" fg:w="152"/><text x="99.2587%" y="831.50"></text></g><g><title>kernel_init_free_pages (46 samples, 0.01%)</title><rect x="99.0995%" y="693" width="0.0127%" height="15" fill="rgb(251,210,42)" fg:x="358999" fg:w="46"/><text x="99.3495%" y="703.50"></text></g><g><title>clear_page_erms (44 samples, 0.01%)</title><rect x="99.1001%" y="677" width="0.0121%" height="15" fill="rgb(221,88,35)" fg:x="359001" fg:w="44"/><text x="99.3501%" y="687.50"></text></g><g><title>get_page_from_freelist (84 samples, 0.02%)</title><rect x="99.0893%" y="725" width="0.0232%" height="15" fill="rgb(242,21,20)" fg:x="358962" fg:w="84"/><text x="99.3393%" y="735.50"></text></g><g><title>prep_new_page (49 samples, 0.01%)</title><rect x="99.0990%" y="709" width="0.0135%" height="15" fill="rgb(233,226,36)" fg:x="358997" fg:w="49"/><text x="99.3490%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (100 samples, 0.03%)</title><rect x="99.0860%" y="741" width="0.0276%" height="15" fill="rgb(243,189,34)" fg:x="358950" fg:w="100"/><text x="99.3360%" y="751.50"></text></g><g><title>alloc_pages_vma (109 samples, 0.03%)</title><rect x="99.0846%" y="757" width="0.0301%" height="15" fill="rgb(207,145,50)" fg:x="358945" fg:w="109"/><text x="99.3346%" y="767.50"></text></g><g><title>handle_mm_fault (246 samples, 0.07%)</title><rect x="99.0708%" y="773" width="0.0679%" height="15" fill="rgb(242,1,50)" fg:x="358895" fg:w="246"/><text x="99.3208%" y="783.50"></text></g><g><title>exc_page_fault (277 samples, 0.08%)</title><rect x="99.0639%" y="805" width="0.0765%" height="15" fill="rgb(231,65,32)" fg:x="358870" fg:w="277"/><text x="99.3139%" y="815.50"></text></g><g><title>do_user_addr_fault (273 samples, 0.08%)</title><rect x="99.0650%" y="789" width="0.0754%" height="15" fill="rgb(208,68,49)" fg:x="358874" fg:w="273"/><text x="99.3150%" y="799.50"></text></g><g><title>asm_exc_page_fault (285 samples, 0.08%)</title><rect x="99.0634%" y="821" width="0.0787%" height="15" fill="rgb(253,54,49)" fg:x="358868" fg:w="285"/><text x="99.3134%" y="831.50"></text></g><g><title>tick_sched_handle (46 samples, 0.01%)</title><rect x="99.1498%" y="725" width="0.0127%" height="15" fill="rgb(245,186,24)" fg:x="359181" fg:w="46"/><text x="99.3998%" y="735.50"></text></g><g><title>update_process_times (46 samples, 0.01%)</title><rect x="99.1498%" y="709" width="0.0127%" height="15" fill="rgb(209,2,41)" fg:x="359181" fg:w="46"/><text x="99.3998%" y="719.50"></text></g><g><title>tick_sched_timer (50 samples, 0.01%)</title><rect x="99.1495%" y="741" width="0.0138%" height="15" fill="rgb(242,208,54)" fg:x="359180" fg:w="50"/><text x="99.3995%" y="751.50"></text></g><g><title>__hrtimer_run_queues (65 samples, 0.02%)</title><rect x="99.1459%" y="757" width="0.0179%" height="15" fill="rgb(225,9,51)" fg:x="359167" fg:w="65"/><text x="99.3959%" y="767.50"></text></g><g><title>__sysvec_apic_timer_interrupt (76 samples, 0.02%)</title><rect x="99.1445%" y="789" width="0.0210%" height="15" fill="rgb(207,207,25)" fg:x="359162" fg:w="76"/><text x="99.3945%" y="799.50"></text></g><g><title>hrtimer_interrupt (75 samples, 0.02%)</title><rect x="99.1448%" y="773" width="0.0207%" height="15" fill="rgb(253,96,18)" fg:x="359163" fg:w="75"/><text x="99.3948%" y="783.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (117 samples, 0.03%)</title><rect x="99.1421%" y="821" width="0.0323%" height="15" fill="rgb(252,215,20)" fg:x="359153" fg:w="117"/><text x="99.3921%" y="831.50"></text></g><g><title>sysvec_apic_timer_interrupt (108 samples, 0.03%)</title><rect x="99.1445%" y="805" width="0.0298%" height="15" fill="rgb(245,227,26)" fg:x="359162" fg:w="108"/><text x="99.3945%" y="815.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="99.1744%" y="773" width="0.0108%" height="15" fill="rgb(241,208,0)" fg:x="359270" fg:w="39"/><text x="99.4244%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="99.1744%" y="757" width="0.0108%" height="15" fill="rgb(224,130,10)" fg:x="359270" fg:w="39"/><text x="99.4244%" y="767.50"></text></g><g><title>irqentry_exit_to_user_mode (40 samples, 0.01%)</title><rect x="99.1744%" y="805" width="0.0110%" height="15" fill="rgb(237,29,0)" fg:x="359270" fg:w="40"/><text x="99.4244%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.01%)</title><rect x="99.1744%" y="789" width="0.0110%" height="15" fill="rgb(219,27,41)" fg:x="359270" fg:w="40"/><text x="99.4244%" y="799.50"></text></g><g><title>asm_sysvec_reschedule_ipi (42 samples, 0.01%)</title><rect x="99.1744%" y="821" width="0.0116%" height="15" fill="rgb(245,101,19)" fg:x="359270" fg:w="42"/><text x="99.4244%" y="831.50"></text></g><g><title>__sysvec_thermal (38 samples, 0.01%)</title><rect x="99.1862%" y="789" width="0.0105%" height="15" fill="rgb(243,44,37)" fg:x="359313" fg:w="38"/><text x="99.4362%" y="799.50"></text></g><g><title>intel_thermal_interrupt (38 samples, 0.01%)</title><rect x="99.1862%" y="773" width="0.0105%" height="15" fill="rgb(228,213,43)" fg:x="359313" fg:w="38"/><text x="99.4362%" y="783.50"></text></g><g><title>asm_sysvec_thermal (41 samples, 0.01%)</title><rect x="99.1859%" y="821" width="0.0113%" height="15" fill="rgb(219,163,21)" fg:x="359312" fg:w="41"/><text x="99.4359%" y="831.50"></text></g><g><title>sysvec_thermal (41 samples, 0.01%)</title><rect x="99.1859%" y="805" width="0.0113%" height="15" fill="rgb(234,86,24)" fg:x="359312" fg:w="41"/><text x="99.4359%" y="815.50"></text></g><g><title>error_entry (38 samples, 0.01%)</title><rect x="99.1992%" y="821" width="0.0105%" height="15" fill="rgb(225,10,24)" fg:x="359360" fg:w="38"/><text x="99.4492%" y="831.50"></text></g><g><title>btrfs_create (65 samples, 0.02%)</title><rect x="99.2334%" y="693" width="0.0179%" height="15" fill="rgb(218,109,7)" fg:x="359484" fg:w="65"/><text x="99.4834%" y="703.50"></text></g><g><title>do_filp_open (115 samples, 0.03%)</title><rect x="99.2274%" y="725" width="0.0317%" height="15" fill="rgb(210,20,26)" fg:x="359462" fg:w="115"/><text x="99.4774%" y="735.50"></text></g><g><title>path_openat (114 samples, 0.03%)</title><rect x="99.2276%" y="709" width="0.0315%" height="15" fill="rgb(216,18,1)" fg:x="359463" fg:w="114"/><text x="99.4776%" y="719.50"></text></g><g><title>do_syscall_64 (132 samples, 0.04%)</title><rect x="99.2249%" y="773" width="0.0364%" height="15" fill="rgb(206,163,23)" fg:x="359453" fg:w="132"/><text x="99.4749%" y="783.50"></text></g><g><title>__x64_sys_openat (132 samples, 0.04%)</title><rect x="99.2249%" y="757" width="0.0364%" height="15" fill="rgb(229,150,31)" fg:x="359453" fg:w="132"/><text x="99.4749%" y="767.50"></text></g><g><title>do_sys_openat2 (132 samples, 0.04%)</title><rect x="99.2249%" y="741" width="0.0364%" height="15" fill="rgb(231,10,5)" fg:x="359453" fg:w="132"/><text x="99.4749%" y="751.50"></text></g><g><title>__libc_open64 (136 samples, 0.04%)</title><rect x="99.2240%" y="805" width="0.0375%" height="15" fill="rgb(250,40,50)" fg:x="359450" fg:w="136"/><text x="99.4740%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.04%)</title><rect x="99.2249%" y="789" width="0.0367%" height="15" fill="rgb(217,119,7)" fg:x="359453" fg:w="133"/><text x="99.4749%" y="799.50"></text></g><g><title>fileOpen (171 samples, 0.05%)</title><rect x="99.2166%" y="821" width="0.0472%" height="15" fill="rgb(245,214,40)" fg:x="359423" fg:w="171"/><text x="99.4666%" y="831.50"></text></g><g><title>[perf-985085.map] (62,923 samples, 17.37%)</title><rect x="81.9161%" y="837" width="17.3695%" height="15" fill="rgb(216,187,1)" fg:x="296750" fg:w="62923"/><text x="82.1661%" y="847.50">[perf-985085.map]</text></g><g><title>LinkResolver::resolve_method_statically (48 samples, 0.01%)</title><rect x="99.3320%" y="773" width="0.0133%" height="15" fill="rgb(237,146,21)" fg:x="359841" fg:w="48"/><text x="99.5820%" y="783.50"></text></g><g><title>Bytecode_invoke::static_target (50 samples, 0.01%)</title><rect x="99.3317%" y="789" width="0.0138%" height="15" fill="rgb(210,174,47)" fg:x="359840" fg:w="50"/><text x="99.5817%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (42 samples, 0.01%)</title><rect x="99.3463%" y="789" width="0.0116%" height="15" fill="rgb(218,111,39)" fg:x="359893" fg:w="42"/><text x="99.5963%" y="799.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (167 samples, 0.05%)</title><rect x="99.3314%" y="805" width="0.0461%" height="15" fill="rgb(224,95,19)" fg:x="359839" fg:w="167"/><text x="99.5814%" y="815.50"></text></g><g><title>frame::sender (53 samples, 0.01%)</title><rect x="99.3629%" y="789" width="0.0146%" height="15" fill="rgb(234,15,38)" fg:x="359953" fg:w="53"/><text x="99.6129%" y="799.50"></text></g><g><title>OopMapSet::update_register_map (50 samples, 0.01%)</title><rect x="99.3637%" y="773" width="0.0138%" height="15" fill="rgb(246,56,12)" fg:x="359956" fg:w="50"/><text x="99.6137%" y="783.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (257 samples, 0.07%)</title><rect x="99.3140%" y="821" width="0.0709%" height="15" fill="rgb(247,16,17)" fg:x="359776" fg:w="257"/><text x="99.5640%" y="831.50"></text></g><g><title>Monitor::lock_without_safepoint_check (40 samples, 0.01%)</title><rect x="99.3852%" y="789" width="0.0110%" height="15" fill="rgb(215,151,11)" fg:x="360034" fg:w="40"/><text x="99.6352%" y="799.50"></text></g><g><title>Monitor::ILock (40 samples, 0.01%)</title><rect x="99.3852%" y="773" width="0.0110%" height="15" fill="rgb(225,16,24)" fg:x="360034" fg:w="40"/><text x="99.6352%" y="783.50"></text></g><g><title>SafepointSynchronize::block (49 samples, 0.01%)</title><rect x="99.3852%" y="805" width="0.0135%" height="15" fill="rgb(217,117,5)" fg:x="360034" fg:w="49"/><text x="99.6352%" y="815.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (50 samples, 0.01%)</title><rect x="99.3852%" y="821" width="0.0138%" height="15" fill="rgb(246,187,53)" fg:x="360034" fg:w="50"/><text x="99.6352%" y="831.50"></text></g><g><title>__fget_light (42 samples, 0.01%)</title><rect x="99.4407%" y="693" width="0.0116%" height="15" fill="rgb(241,71,40)" fg:x="360235" fg:w="42"/><text x="99.6907%" y="703.50"></text></g><g><title>__fdget_pos (59 samples, 0.02%)</title><rect x="99.4388%" y="709" width="0.0163%" height="15" fill="rgb(231,67,39)" fg:x="360228" fg:w="59"/><text x="99.6888%" y="719.50"></text></g><g><title>copy_page_to_iter (617 samples, 0.17%)</title><rect x="99.4940%" y="661" width="0.1703%" height="15" fill="rgb(222,120,24)" fg:x="360428" fg:w="617"/><text x="99.7440%" y="671.50"></text></g><g><title>copy_user_enhanced_fast_string (569 samples, 0.16%)</title><rect x="99.5073%" y="645" width="0.1571%" height="15" fill="rgb(248,3,3)" fg:x="360476" fg:w="569"/><text x="99.7573%" y="655.50"></text></g><g><title>pagecache_get_page (141 samples, 0.04%)</title><rect x="99.6693%" y="661" width="0.0389%" height="15" fill="rgb(228,218,5)" fg:x="361063" fg:w="141"/><text x="99.9193%" y="671.50"></text></g><g><title>find_get_entry (125 samples, 0.03%)</title><rect x="99.6737%" y="645" width="0.0345%" height="15" fill="rgb(212,202,43)" fg:x="361079" fg:w="125"/><text x="99.9237%" y="655.50"></text></g><g><title>xas_load (61 samples, 0.02%)</title><rect x="99.6914%" y="629" width="0.0168%" height="15" fill="rgb(235,183,2)" fg:x="361143" fg:w="61"/><text x="99.9414%" y="639.50"></text></g><g><title>touch_atime (45 samples, 0.01%)</title><rect x="99.7082%" y="661" width="0.0124%" height="15" fill="rgb(230,165,10)" fg:x="361204" fg:w="45"/><text x="99.9582%" y="671.50"></text></g><g><title>generic_file_buffered_read (884 samples, 0.24%)</title><rect x="99.4772%" y="677" width="0.2440%" height="15" fill="rgb(219,54,40)" fg:x="360367" fg:w="884"/><text x="99.7272%" y="687.50"></text></g><g><title>new_sync_read (903 samples, 0.25%)</title><rect x="99.4730%" y="693" width="0.2493%" height="15" fill="rgb(244,73,9)" fg:x="360352" fg:w="903"/><text x="99.7230%" y="703.50"></text></g><g><title>ksys_read (1,103 samples, 0.30%)</title><rect x="99.4358%" y="725" width="0.3045%" height="15" fill="rgb(212,32,45)" fg:x="360217" fg:w="1103"/><text x="99.6858%" y="735.50"></text></g><g><title>vfs_read (1,020 samples, 0.28%)</title><rect x="99.4587%" y="709" width="0.2816%" height="15" fill="rgb(205,58,31)" fg:x="360300" fg:w="1020"/><text x="99.7087%" y="719.50"></text></g><g><title>security_file_permission (58 samples, 0.02%)</title><rect x="99.7242%" y="693" width="0.0160%" height="15" fill="rgb(250,120,43)" fg:x="361262" fg:w="58"/><text x="99.9742%" y="703.50"></text></g><g><title>apparmor_file_permission (49 samples, 0.01%)</title><rect x="99.7267%" y="677" width="0.0135%" height="15" fill="rgb(235,13,10)" fg:x="361271" fg:w="49"/><text x="99.9767%" y="687.50"></text></g><g><title>do_syscall_64 (1,110 samples, 0.31%)</title><rect x="99.4358%" y="741" width="0.3064%" height="15" fill="rgb(232,219,31)" fg:x="360217" fg:w="1110"/><text x="99.6858%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,135 samples, 0.31%)</title><rect x="99.4338%" y="757" width="0.3133%" height="15" fill="rgb(218,157,51)" fg:x="360210" fg:w="1135"/><text x="99.6838%" y="767.50"></text></g><g><title>__libc_read (1,201 samples, 0.33%)</title><rect x="99.4181%" y="773" width="0.3315%" height="15" fill="rgb(211,91,52)" fg:x="360153" fg:w="1201"/><text x="99.6681%" y="783.50"></text></g><g><title>__libc_read (1,203 samples, 0.33%)</title><rect x="99.4178%" y="789" width="0.3321%" height="15" fill="rgb(240,173,1)" fg:x="360152" fg:w="1203"/><text x="99.6678%" y="799.50"></text></g><g><title>handleRead (1,213 samples, 0.33%)</title><rect x="99.4173%" y="805" width="0.3348%" height="15" fill="rgb(248,20,47)" fg:x="360150" fg:w="1213"/><text x="99.6673%" y="815.50"></text></g><g><title>jni_GetArrayLength (38 samples, 0.01%)</title><rect x="99.7521%" y="805" width="0.0105%" height="15" fill="rgb(217,221,40)" fg:x="361363" fg:w="38"/><text x="100.0021%" y="815.50"></text></g><g><title>jni_GetObjectField (148 samples, 0.04%)</title><rect x="99.7626%" y="805" width="0.0409%" height="15" fill="rgb(226,149,51)" fg:x="361401" fg:w="148"/><text x="100.0126%" y="815.50"></text></g><g><title>[libc-2.31.so] (183 samples, 0.05%)</title><rect x="99.8195%" y="789" width="0.0505%" height="15" fill="rgb(252,193,7)" fg:x="361607" fg:w="183"/><text x="100.0695%" y="799.50"></text></g><g><title>readBytes (1,695 samples, 0.47%)</title><rect x="99.4090%" y="821" width="0.4679%" height="15" fill="rgb(205,123,0)" fg:x="360120" fg:w="1695"/><text x="99.6590%" y="831.50"></text></g><g><title>jni_SetByteArrayRegion (266 samples, 0.07%)</title><rect x="99.8035%" y="805" width="0.0734%" height="15" fill="rgb(233,173,25)" fg:x="361549" fg:w="266"/><text x="100.0535%" y="815.50"></text></g><g><title>[unknown] (2,161 samples, 0.60%)</title><rect x="99.2856%" y="837" width="0.5965%" height="15" fill="rgb(216,63,32)" fg:x="359673" fg:w="2161"/><text x="99.5356%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.02%)</title><rect x="99.8854%" y="773" width="0.0157%" height="15" fill="rgb(209,56,45)" fg:x="361846" fg:w="57"/><text x="100.1354%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.02%)</title><rect x="99.8857%" y="757" width="0.0155%" height="15" fill="rgb(226,111,49)" fg:x="361847" fg:w="56"/><text x="100.1357%" y="767.50"></text></g><g><title>native_write_msr (56 samples, 0.02%)</title><rect x="99.8857%" y="741" width="0.0155%" height="15" fill="rgb(244,181,21)" fg:x="361847" fg:w="56"/><text x="100.1357%" y="751.50"></text></g><g><title>schedule_tail (59 samples, 0.02%)</title><rect x="99.8852%" y="805" width="0.0163%" height="15" fill="rgb(222,126,15)" fg:x="361845" fg:w="59"/><text x="100.1352%" y="815.50"></text></g><g><title>finish_task_switch (59 samples, 0.02%)</title><rect x="99.8852%" y="789" width="0.0163%" height="15" fill="rgb(222,95,17)" fg:x="361845" fg:w="59"/><text x="100.1352%" y="799.50"></text></g><g><title>ret_from_fork (62 samples, 0.02%)</title><rect x="99.8849%" y="821" width="0.0171%" height="15" fill="rgb(254,46,5)" fg:x="361844" fg:w="62"/><text x="100.1349%" y="831.50"></text></g><g><title>__GI___clone (117 samples, 0.03%)</title><rect x="99.8821%" y="837" width="0.0323%" height="15" fill="rgb(236,216,35)" fg:x="361834" fg:w="117"/><text x="100.1321%" y="847.50"></text></g><g><title>start_thread (45 samples, 0.01%)</title><rect x="99.9020%" y="821" width="0.0124%" height="15" fill="rgb(217,187,26)" fg:x="361906" fg:w="45"/><text x="100.1520%" y="831.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.02%)</title><rect x="99.9230%" y="837" width="0.0152%" height="15" fill="rgb(207,192,25)" fg:x="361982" fg:w="55"/><text x="100.1730%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="99.9404%" y="837" width="0.0110%" height="15" fill="rgb(253,135,27)" fg:x="362045" fg:w="40"/><text x="100.1904%" y="847.50"></text></g><g><title>skyframe-evalua (238,929 samples, 65.95%)</title><rect x="34.0089%" y="853" width="65.9549%" height="15" fill="rgb(211,122,29)" fg:x="123201" fg:w="238929"/><text x="34.2589%" y="863.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (39 samples, 0.01%)</title><rect x="99.9771%" y="597" width="0.0108%" height="15" fill="rgb(233,162,40)" fg:x="362178" fg:w="39"/><text x="100.2271%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="99.9771%" y="581" width="0.0108%" height="15" fill="rgb(222,184,47)" fg:x="362178" fg:w="39"/><text x="100.2271%" y="591.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="99.9771%" y="565" width="0.0108%" height="15" fill="rgb(249,99,23)" fg:x="362178" fg:w="39"/><text x="100.2271%" y="575.50"></text></g><g><title>finish_task_switch (43 samples, 0.01%)</title><rect x="99.9771%" y="613" width="0.0119%" height="15" fill="rgb(214,60,12)" fg:x="362178" fg:w="43"/><text x="100.2271%" y="623.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="99.9763%" y="725" width="0.0133%" height="15" fill="rgb(250,229,36)" fg:x="362175" fg:w="48"/><text x="100.2263%" y="735.50"></text></g><g><title>__x64_sys_futex (47 samples, 0.01%)</title><rect x="99.9765%" y="709" width="0.0130%" height="15" fill="rgb(232,195,10)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="719.50"></text></g><g><title>do_futex (47 samples, 0.01%)</title><rect x="99.9765%" y="693" width="0.0130%" height="15" fill="rgb(205,213,31)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="703.50"></text></g><g><title>futex_wait (47 samples, 0.01%)</title><rect x="99.9765%" y="677" width="0.0130%" height="15" fill="rgb(237,43,8)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="687.50"></text></g><g><title>futex_wait_queue_me (47 samples, 0.01%)</title><rect x="99.9765%" y="661" width="0.0130%" height="15" fill="rgb(216,208,3)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="671.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="99.9765%" y="645" width="0.0130%" height="15" fill="rgb(228,179,44)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="655.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="99.9765%" y="629" width="0.0130%" height="15" fill="rgb(230,192,27)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="639.50"></text></g><g><title>__pthread_cond_wait (49 samples, 0.01%)</title><rect x="99.9763%" y="789" width="0.0135%" height="15" fill="rgb(251,30,38)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (49 samples, 0.01%)</title><rect x="99.9763%" y="773" width="0.0135%" height="15" fill="rgb(246,55,52)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="783.50"></text></g><g><title>futex_wait_cancelable (49 samples, 0.01%)</title><rect x="99.9763%" y="757" width="0.0135%" height="15" fill="rgb(249,79,26)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="99.9763%" y="741" width="0.0135%" height="15" fill="rgb(220,202,16)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="751.50"></text></g><g><title>Parker::park (52 samples, 0.01%)</title><rect x="99.9757%" y="805" width="0.0144%" height="15" fill="rgb(250,170,23)" fg:x="362173" fg:w="52"/><text x="100.2257%" y="815.50"></text></g><g><title>Unsafe_Park (58 samples, 0.02%)</title><rect x="99.9757%" y="821" width="0.0160%" height="15" fill="rgb(230,7,37)" fg:x="362173" fg:w="58"/><text x="100.2257%" y="831.50"></text></g><g><title>[perf-985085.map] (106 samples, 0.03%)</title><rect x="99.9644%" y="837" width="0.0293%" height="15" fill="rgb(213,71,1)" fg:x="362132" fg:w="106"/><text x="100.2144%" y="847.50"></text></g><g><title>skyframe-invali (128 samples, 0.04%)</title><rect x="99.9638%" y="853" width="0.0353%" height="15" fill="rgb(227,87,39)" fg:x="362130" fg:w="128"/><text x="100.2138%" y="863.50"></text></g><g><title>all (362,261 samples, 100%)</title><rect x="0.0000%" y="869" width="100.0000%" height="15" fill="rgb(210,41,29)" fg:x="0" fg:w="362261"/><text x="0.2500%" y="879.50"></text></g></svg></svg> |