test-zig-cc/results/zigcc-j1.svg
2022-12-11 15:19:38 +02:00

491 lines
812 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="902" onload="init(evt)" viewBox="0 0 1200 902" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="902" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="885.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="885.00"> </text><svg id="frames" x="10" width="1180" total_samples="520381"><g><title>_dl_update_slotinfo (101 samples, 0.02%)</title><rect x="0.1647%" y="805" width="0.0194%" height="15" fill="rgb(227,0,7)" fg:x="857" fg:w="101"/><text x="0.4147%" y="815.50"></text></g><g><title>[anon] (1,057 samples, 0.20%)</title><rect x="0.0142%" y="821" width="0.2031%" height="15" fill="rgb(217,0,24)" fg:x="74" fg:w="1057"/><text x="0.2642%" y="831.50"></text></g><g><title>[perf-261576.map] (153 samples, 0.03%)</title><rect x="0.2173%" y="821" width="0.0294%" height="15" fill="rgb(221,193,54)" fg:x="1131" fg:w="153"/><text x="0.4673%" y="831.50"></text></g><g><title>[unknown] (94 samples, 0.02%)</title><rect x="0.2467%" y="821" width="0.0181%" height="15" fill="rgb(248,212,6)" fg:x="1284" fg:w="94"/><text x="0.4967%" y="831.50"></text></g><g><title>CompileTask::print (110 samples, 0.02%)</title><rect x="0.2896%" y="709" width="0.0211%" height="15" fill="rgb(208,68,35)" fg:x="1507" fg:w="110"/><text x="0.5396%" y="719.50"></text></g><g><title>outputStream::print (63 samples, 0.01%)</title><rect x="0.2986%" y="693" width="0.0121%" height="15" fill="rgb(232,128,0)" fg:x="1554" fg:w="63"/><text x="0.5486%" y="703.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (61 samples, 0.01%)</title><rect x="0.2990%" y="677" width="0.0117%" height="15" fill="rgb(207,160,47)" fg:x="1556" fg:w="61"/><text x="0.5490%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (92 samples, 0.02%)</title><rect x="0.3288%" y="581" width="0.0177%" height="15" fill="rgb(228,23,34)" fg:x="1711" fg:w="92"/><text x="0.5788%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (140 samples, 0.03%)</title><rect x="0.3275%" y="613" width="0.0269%" height="15" fill="rgb(218,30,26)" fg:x="1704" fg:w="140"/><text x="0.5775%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (138 samples, 0.03%)</title><rect x="0.3278%" y="597" width="0.0265%" height="15" fill="rgb(220,122,19)" fg:x="1706" fg:w="138"/><text x="0.5778%" y="607.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (296 samples, 0.06%)</title><rect x="0.3177%" y="629" width="0.0569%" height="15" fill="rgb(250,228,42)" fg:x="1653" fg:w="296"/><text x="0.5677%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (75 samples, 0.01%)</title><rect x="0.3753%" y="597" width="0.0144%" height="15" fill="rgb(240,193,28)" fg:x="1953" fg:w="75"/><text x="0.6253%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (71 samples, 0.01%)</title><rect x="0.3761%" y="581" width="0.0136%" height="15" fill="rgb(216,20,37)" fg:x="1957" fg:w="71"/><text x="0.6261%" y="591.50"></text></g><g><title>BlockListBuilder::set_leaders (104 samples, 0.02%)</title><rect x="0.3936%" y="581" width="0.0200%" height="15" fill="rgb(206,188,39)" fg:x="2048" fg:w="104"/><text x="0.6436%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (76 samples, 0.01%)</title><rect x="0.3989%" y="565" width="0.0146%" height="15" fill="rgb(217,207,13)" fg:x="2076" fg:w="76"/><text x="0.6489%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (73 samples, 0.01%)</title><rect x="0.3995%" y="549" width="0.0140%" height="15" fill="rgb(231,73,38)" fg:x="2079" fg:w="73"/><text x="0.6495%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (116 samples, 0.02%)</title><rect x="0.3914%" y="597" width="0.0223%" height="15" fill="rgb(225,20,46)" fg:x="2037" fg:w="116"/><text x="0.6414%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (61 samples, 0.01%)</title><rect x="0.4512%" y="501" width="0.0117%" height="15" fill="rgb(210,31,41)" fg:x="2348" fg:w="61"/><text x="0.7012%" y="511.50"></text></g><g><title>ciField::ciField (91 samples, 0.02%)</title><rect x="0.4487%" y="517" width="0.0175%" height="15" fill="rgb(221,200,47)" fg:x="2335" fg:w="91"/><text x="0.6987%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (103 samples, 0.02%)</title><rect x="0.4472%" y="533" width="0.0198%" height="15" fill="rgb(226,26,5)" fg:x="2327" fg:w="103"/><text x="0.6972%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (115 samples, 0.02%)</title><rect x="0.4466%" y="549" width="0.0221%" height="15" fill="rgb(249,33,26)" fg:x="2324" fg:w="115"/><text x="0.6966%" y="559.50"></text></g><g><title>GraphBuilder::access_field (166 samples, 0.03%)</title><rect x="0.4385%" y="565" width="0.0319%" height="15" fill="rgb(235,183,28)" fg:x="2282" fg:w="166"/><text x="0.6885%" y="575.50"></text></g><g><title>ciField::ciField (66 samples, 0.01%)</title><rect x="0.5267%" y="437" width="0.0127%" height="15" fill="rgb(221,5,38)" fg:x="2741" fg:w="66"/><text x="0.7767%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (71 samples, 0.01%)</title><rect x="0.5260%" y="453" width="0.0136%" height="15" fill="rgb(247,18,42)" fg:x="2737" fg:w="71"/><text x="0.7760%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (79 samples, 0.02%)</title><rect x="0.5260%" y="469" width="0.0152%" height="15" fill="rgb(241,131,45)" fg:x="2737" fg:w="79"/><text x="0.7760%" y="479.50"></text></g><g><title>GraphBuilder::access_field (108 samples, 0.02%)</title><rect x="0.5217%" y="485" width="0.0208%" height="15" fill="rgb(249,31,29)" fg:x="2715" fg:w="108"/><text x="0.7717%" y="495.50"></text></g><g><title>GraphBuilder::access_field (63 samples, 0.01%)</title><rect x="0.5715%" y="405" width="0.0121%" height="15" fill="rgb(225,111,53)" fg:x="2974" fg:w="63"/><text x="0.8215%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (72 samples, 0.01%)</title><rect x="0.6074%" y="277" width="0.0138%" height="15" fill="rgb(238,160,17)" fg:x="3161" fg:w="72"/><text x="0.8574%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (71 samples, 0.01%)</title><rect x="0.6076%" y="261" width="0.0136%" height="15" fill="rgb(214,148,48)" fg:x="3162" fg:w="71"/><text x="0.8576%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (112 samples, 0.02%)</title><rect x="0.6063%" y="293" width="0.0215%" height="15" fill="rgb(232,36,49)" fg:x="3155" fg:w="112"/><text x="0.8563%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (121 samples, 0.02%)</title><rect x="0.6063%" y="309" width="0.0233%" height="15" fill="rgb(209,103,24)" fg:x="3155" fg:w="121"/><text x="0.8563%" y="319.50"></text></g><g><title>GraphBuilder::invoke (168 samples, 0.03%)</title><rect x="0.6055%" y="325" width="0.0323%" height="15" fill="rgb(229,88,8)" fg:x="3151" fg:w="168"/><text x="0.8555%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (245 samples, 0.05%)</title><rect x="0.5940%" y="357" width="0.0471%" height="15" fill="rgb(213,181,19)" fg:x="3091" fg:w="245"/><text x="0.8440%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (242 samples, 0.05%)</title><rect x="0.5946%" y="341" width="0.0465%" height="15" fill="rgb(254,191,54)" fg:x="3094" fg:w="242"/><text x="0.8446%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (321 samples, 0.06%)</title><rect x="0.5925%" y="373" width="0.0617%" height="15" fill="rgb(241,83,37)" fg:x="3083" fg:w="321"/><text x="0.8425%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (360 samples, 0.07%)</title><rect x="0.5911%" y="389" width="0.0692%" height="15" fill="rgb(233,36,39)" fg:x="3076" fg:w="360"/><text x="0.8411%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (89 samples, 0.02%)</title><rect x="0.6626%" y="389" width="0.0171%" height="15" fill="rgb(226,3,54)" fg:x="3448" fg:w="89"/><text x="0.9126%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (81 samples, 0.02%)</title><rect x="0.6641%" y="373" width="0.0156%" height="15" fill="rgb(245,192,40)" fg:x="3456" fg:w="81"/><text x="0.9141%" y="383.50"></text></g><g><title>GraphBuilder::invoke (497 samples, 0.10%)</title><rect x="0.5869%" y="405" width="0.0955%" height="15" fill="rgb(238,167,29)" fg:x="3054" fg:w="497"/><text x="0.8369%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (655 samples, 0.13%)</title><rect x="0.5630%" y="437" width="0.1259%" height="15" fill="rgb(232,182,51)" fg:x="2930" fg:w="655"/><text x="0.8130%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (650 samples, 0.12%)</title><rect x="0.5640%" y="421" width="0.1249%" height="15" fill="rgb(231,60,39)" fg:x="2935" fg:w="650"/><text x="0.8140%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (58 samples, 0.01%)</title><rect x="0.6903%" y="421" width="0.0111%" height="15" fill="rgb(208,69,12)" fg:x="3592" fg:w="58"/><text x="0.9403%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (86 samples, 0.02%)</title><rect x="0.6899%" y="437" width="0.0165%" height="15" fill="rgb(235,93,37)" fg:x="3590" fg:w="86"/><text x="0.9399%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (53 samples, 0.01%)</title><rect x="0.7079%" y="437" width="0.0102%" height="15" fill="rgb(213,116,39)" fg:x="3684" fg:w="53"/><text x="0.9579%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (832 samples, 0.16%)</title><rect x="0.5584%" y="453" width="0.1599%" height="15" fill="rgb(222,207,29)" fg:x="2906" fg:w="832"/><text x="0.8084%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (868 samples, 0.17%)</title><rect x="0.5579%" y="469" width="0.1668%" height="15" fill="rgb(206,96,30)" fg:x="2903" fg:w="868"/><text x="0.8079%" y="479.50"></text></g><g><title>ciMethod::ciMethod (64 samples, 0.01%)</title><rect x="0.7498%" y="405" width="0.0123%" height="15" fill="rgb(218,138,4)" fg:x="3902" fg:w="64"/><text x="0.9998%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (80 samples, 0.02%)</title><rect x="0.7470%" y="437" width="0.0154%" height="15" fill="rgb(250,191,14)" fg:x="3887" fg:w="80"/><text x="0.9970%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (69 samples, 0.01%)</title><rect x="0.7491%" y="421" width="0.0133%" height="15" fill="rgb(239,60,40)" fg:x="3898" fg:w="69"/><text x="0.9991%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (162 samples, 0.03%)</title><rect x="0.7327%" y="453" width="0.0311%" height="15" fill="rgb(206,27,48)" fg:x="3813" fg:w="162"/><text x="0.9827%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (181 samples, 0.03%)</title><rect x="0.7293%" y="469" width="0.0348%" height="15" fill="rgb(225,35,8)" fg:x="3795" fg:w="181"/><text x="0.9793%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,154 samples, 0.22%)</title><rect x="0.5486%" y="485" width="0.2218%" height="15" fill="rgb(250,213,24)" fg:x="2855" fg:w="1154"/><text x="0.7986%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,430 samples, 0.27%)</title><rect x="0.5069%" y="517" width="0.2748%" height="15" fill="rgb(247,123,22)" fg:x="2638" fg:w="1430"/><text x="0.7569%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,421 samples, 0.27%)</title><rect x="0.5087%" y="501" width="0.2731%" height="15" fill="rgb(231,138,38)" fg:x="2647" fg:w="1421"/><text x="0.7587%" y="511.50"></text></g><g><title>BlockListBuilder::set_leaders (59 samples, 0.01%)</title><rect x="0.7879%" y="485" width="0.0113%" height="15" fill="rgb(231,145,46)" fg:x="4100" fg:w="59"/><text x="1.0379%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (78 samples, 0.01%)</title><rect x="0.7850%" y="501" width="0.0150%" height="15" fill="rgb(251,118,11)" fg:x="4085" fg:w="78"/><text x="1.0350%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (130 samples, 0.02%)</title><rect x="0.7842%" y="517" width="0.0250%" height="15" fill="rgb(217,147,25)" fg:x="4081" fg:w="130"/><text x="1.0342%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (124 samples, 0.02%)</title><rect x="0.8111%" y="517" width="0.0238%" height="15" fill="rgb(247,81,37)" fg:x="4221" fg:w="124"/><text x="1.0611%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (111 samples, 0.02%)</title><rect x="0.8136%" y="501" width="0.0213%" height="15" fill="rgb(209,12,38)" fg:x="4234" fg:w="111"/><text x="1.0636%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (1,765 samples, 0.34%)</title><rect x="0.4979%" y="533" width="0.3392%" height="15" fill="rgb(227,1,9)" fg:x="2591" fg:w="1765"/><text x="0.7479%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (1,787 samples, 0.34%)</title><rect x="0.4952%" y="549" width="0.3434%" height="15" fill="rgb(248,47,43)" fg:x="2577" fg:w="1787"/><text x="0.7452%" y="559.50"></text></g><g><title>ciEnv::lookup_method (63 samples, 0.01%)</title><rect x="0.8553%" y="517" width="0.0121%" height="15" fill="rgb(221,10,30)" fg:x="4451" fg:w="63"/><text x="1.1053%" y="527.50"></text></g><g><title>ciSignature::ciSignature (92 samples, 0.02%)</title><rect x="0.8753%" y="469" width="0.0177%" height="15" fill="rgb(210,229,1)" fg:x="4555" fg:w="92"/><text x="1.1253%" y="479.50"></text></g><g><title>ciMethod::ciMethod (112 samples, 0.02%)</title><rect x="0.8717%" y="485" width="0.0215%" height="15" fill="rgb(222,148,37)" fg:x="4536" fg:w="112"/><text x="1.1217%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (138 samples, 0.03%)</title><rect x="0.8674%" y="517" width="0.0265%" height="15" fill="rgb(234,67,33)" fg:x="4514" fg:w="138"/><text x="1.1174%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (123 samples, 0.02%)</title><rect x="0.8703%" y="501" width="0.0236%" height="15" fill="rgb(247,98,35)" fg:x="4529" fg:w="123"/><text x="1.1203%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (226 samples, 0.04%)</title><rect x="0.8517%" y="533" width="0.0434%" height="15" fill="rgb(247,138,52)" fg:x="4432" fg:w="226"/><text x="1.1017%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (251 samples, 0.05%)</title><rect x="0.8475%" y="549" width="0.0482%" height="15" fill="rgb(213,79,30)" fg:x="4410" fg:w="251"/><text x="1.0975%" y="559.50"></text></g><g><title>GraphBuilder::invoke (2,210 samples, 0.42%)</title><rect x="0.4821%" y="565" width="0.4247%" height="15" fill="rgb(246,177,23)" fg:x="2509" fg:w="2210"/><text x="0.7321%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,593 samples, 0.50%)</title><rect x="0.4216%" y="581" width="0.4983%" height="15" fill="rgb(230,62,27)" fg:x="2194" fg:w="2593"/><text x="0.6716%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,632 samples, 0.51%)</title><rect x="0.4166%" y="597" width="0.5058%" height="15" fill="rgb(216,154,8)" fg:x="2168" fg:w="2632"/><text x="0.6666%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (2,880 samples, 0.55%)</title><rect x="0.3747%" y="613" width="0.5534%" height="15" fill="rgb(244,35,45)" fg:x="1950" fg:w="2880"/><text x="0.6247%" y="623.50"></text></g><g><title>IR::IR (2,893 samples, 0.56%)</title><rect x="0.3745%" y="629" width="0.5559%" height="15" fill="rgb(251,115,12)" fg:x="1949" fg:w="2893"/><text x="0.6245%" y="639.50"></text></g><g><title>IR::compute_code (57 samples, 0.01%)</title><rect x="0.9305%" y="629" width="0.0110%" height="15" fill="rgb(240,54,50)" fg:x="4842" fg:w="57"/><text x="1.1805%" y="639.50"></text></g><g><title>UseCountComputer::block_do (64 samples, 0.01%)</title><rect x="0.9418%" y="597" width="0.0123%" height="15" fill="rgb(233,84,52)" fg:x="4901" fg:w="64"/><text x="1.1918%" y="607.50"></text></g><g><title>BlockList::iterate_backward (66 samples, 0.01%)</title><rect x="0.9416%" y="613" width="0.0127%" height="15" fill="rgb(207,117,47)" fg:x="4900" fg:w="66"/><text x="1.1916%" y="623.50"></text></g><g><title>IR::compute_use_counts (92 samples, 0.02%)</title><rect x="0.9414%" y="629" width="0.0177%" height="15" fill="rgb(249,43,39)" fg:x="4899" fg:w="92"/><text x="1.1914%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (129 samples, 0.02%)</title><rect x="0.9637%" y="597" width="0.0248%" height="15" fill="rgb(209,38,44)" fg:x="5015" fg:w="129"/><text x="1.2137%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (157 samples, 0.03%)</title><rect x="0.9591%" y="629" width="0.0302%" height="15" fill="rgb(236,212,23)" fg:x="4991" fg:w="157"/><text x="1.2091%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (156 samples, 0.03%)</title><rect x="0.9593%" y="613" width="0.0300%" height="15" fill="rgb(242,79,21)" fg:x="4992" fg:w="156"/><text x="1.2093%" y="623.50"></text></g><g><title>Compilation::build_hir (3,616 samples, 0.69%)</title><rect x="0.3167%" y="645" width="0.6949%" height="15" fill="rgb(211,96,35)" fg:x="1648" fg:w="3616"/><text x="0.5667%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (64 samples, 0.01%)</title><rect x="1.0360%" y="581" width="0.0123%" height="15" fill="rgb(253,215,40)" fg:x="5391" fg:w="64"/><text x="1.2860%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (64 samples, 0.01%)</title><rect x="1.0360%" y="565" width="0.0123%" height="15" fill="rgb(211,81,21)" fg:x="5391" fg:w="64"/><text x="1.2860%" y="575.50"></text></g><g><title>LIR_Assembler::call (71 samples, 0.01%)</title><rect x="1.0356%" y="597" width="0.0136%" height="15" fill="rgb(208,190,38)" fg:x="5389" fg:w="71"/><text x="1.2856%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (118 samples, 0.02%)</title><rect x="1.0298%" y="613" width="0.0227%" height="15" fill="rgb(235,213,38)" fg:x="5359" fg:w="118"/><text x="1.2798%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (121 samples, 0.02%)</title><rect x="1.0588%" y="613" width="0.0233%" height="15" fill="rgb(237,122,38)" fg:x="5510" fg:w="121"/><text x="1.3088%" y="623.50"></text></g><g><title>LIR_Assembler::emit_profile_call (59 samples, 0.01%)</title><rect x="1.0857%" y="613" width="0.0113%" height="15" fill="rgb(244,218,35)" fg:x="5650" fg:w="59"/><text x="1.3357%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (550 samples, 0.11%)</title><rect x="1.0148%" y="629" width="0.1057%" height="15" fill="rgb(240,68,47)" fg:x="5281" fg:w="550"/><text x="1.2648%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (99 samples, 0.02%)</title><rect x="1.1326%" y="597" width="0.0190%" height="15" fill="rgb(210,16,53)" fg:x="5894" fg:w="99"/><text x="1.3826%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (96 samples, 0.02%)</title><rect x="1.1332%" y="581" width="0.0184%" height="15" fill="rgb(235,124,12)" fg:x="5897" fg:w="96"/><text x="1.3832%" y="591.50"></text></g><g><title>CounterOverflowStub::emit_code (126 samples, 0.02%)</title><rect x="1.1315%" y="613" width="0.0242%" height="15" fill="rgb(224,169,11)" fg:x="5888" fg:w="126"/><text x="1.3815%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (280 samples, 0.05%)</title><rect x="1.1290%" y="629" width="0.0538%" height="15" fill="rgb(250,166,2)" fg:x="5875" fg:w="280"/><text x="1.3790%" y="639.50"></text></g><g><title>Compilation::emit_code_body (904 samples, 0.17%)</title><rect x="1.0116%" y="645" width="0.1737%" height="15" fill="rgb(242,216,29)" fg:x="5264" fg:w="904"/><text x="1.2616%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (72 samples, 0.01%)</title><rect x="1.1970%" y="597" width="0.0138%" height="15" fill="rgb(230,116,27)" fg:x="6229" fg:w="72"/><text x="1.4470%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (173 samples, 0.03%)</title><rect x="1.2143%" y="581" width="0.0332%" height="15" fill="rgb(228,99,48)" fg:x="6319" fg:w="173"/><text x="1.4643%" y="591.50"></text></g><g><title>PhiResolverState::reset (118 samples, 0.02%)</title><rect x="1.2249%" y="565" width="0.0227%" height="15" fill="rgb(253,11,6)" fg:x="6374" fg:w="118"/><text x="1.4749%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (194 samples, 0.04%)</title><rect x="1.2120%" y="597" width="0.0373%" height="15" fill="rgb(247,143,39)" fg:x="6307" fg:w="194"/><text x="1.4620%" y="607.50"></text></g><g><title>LIRGenerator::do_Invoke (83 samples, 0.02%)</title><rect x="1.2598%" y="597" width="0.0159%" height="15" fill="rgb(236,97,10)" fg:x="6556" fg:w="83"/><text x="1.5098%" y="607.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (82 samples, 0.02%)</title><rect x="1.2929%" y="597" width="0.0158%" height="15" fill="rgb(233,208,19)" fg:x="6728" fg:w="82"/><text x="1.5429%" y="607.50"></text></g><g><title>LIRGenerator::block_do (689 samples, 0.13%)</title><rect x="1.1870%" y="613" width="0.1324%" height="15" fill="rgb(216,164,2)" fg:x="6177" fg:w="689"/><text x="1.4370%" y="623.50"></text></g><g><title>BlockList::iterate_forward (699 samples, 0.13%)</title><rect x="1.1857%" y="629" width="0.1343%" height="15" fill="rgb(220,129,5)" fg:x="6170" fg:w="699"/><text x="1.4357%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (133 samples, 0.03%)</title><rect x="1.3417%" y="581" width="0.0256%" height="15" fill="rgb(242,17,10)" fg:x="6982" fg:w="133"/><text x="1.5917%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (80 samples, 0.02%)</title><rect x="1.3876%" y="549" width="0.0154%" height="15" fill="rgb(242,107,0)" fg:x="7221" fg:w="80"/><text x="1.6376%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (109 samples, 0.02%)</title><rect x="1.4063%" y="549" width="0.0209%" height="15" fill="rgb(251,28,31)" fg:x="7318" fg:w="109"/><text x="1.6563%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (71 samples, 0.01%)</title><rect x="1.4272%" y="549" width="0.0136%" height="15" fill="rgb(233,223,10)" fg:x="7427" fg:w="71"/><text x="1.6772%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (358 samples, 0.07%)</title><rect x="1.3730%" y="565" width="0.0688%" height="15" fill="rgb(215,21,27)" fg:x="7145" fg:w="358"/><text x="1.6230%" y="575.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (53 samples, 0.01%)</title><rect x="1.4495%" y="549" width="0.0102%" height="15" fill="rgb(232,23,21)" fg:x="7543" fg:w="53"/><text x="1.6995%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (117 samples, 0.02%)</title><rect x="1.4418%" y="565" width="0.0225%" height="15" fill="rgb(244,5,23)" fg:x="7503" fg:w="117"/><text x="1.6918%" y="575.50"></text></g><g><title>LinearScanWalker::activate_current (579 samples, 0.11%)</title><rect x="1.3673%" y="581" width="0.1113%" height="15" fill="rgb(226,81,46)" fg:x="7115" fg:w="579"/><text x="1.6173%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (749 samples, 0.14%)</title><rect x="1.3348%" y="597" width="0.1439%" height="15" fill="rgb(247,70,30)" fg:x="6946" fg:w="749"/><text x="1.5848%" y="607.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (53 samples, 0.01%)</title><rect x="1.4787%" y="597" width="0.0102%" height="15" fill="rgb(212,68,19)" fg:x="7695" fg:w="53"/><text x="1.7287%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (825 samples, 0.16%)</title><rect x="1.3309%" y="613" width="0.1585%" height="15" fill="rgb(240,187,13)" fg:x="6926" fg:w="825"/><text x="1.5809%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (66 samples, 0.01%)</title><rect x="1.5104%" y="581" width="0.0127%" height="15" fill="rgb(223,113,26)" fg:x="7860" fg:w="66"/><text x="1.7604%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (57 samples, 0.01%)</title><rect x="1.5233%" y="581" width="0.0110%" height="15" fill="rgb(206,192,2)" fg:x="7927" fg:w="57"/><text x="1.7733%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (63 samples, 0.01%)</title><rect x="1.5416%" y="565" width="0.0121%" height="15" fill="rgb(241,108,4)" fg:x="8022" fg:w="63"/><text x="1.7916%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (121 samples, 0.02%)</title><rect x="1.5343%" y="581" width="0.0233%" height="15" fill="rgb(247,173,49)" fg:x="7984" fg:w="121"/><text x="1.7843%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (82 samples, 0.02%)</title><rect x="1.5656%" y="549" width="0.0158%" height="15" fill="rgb(224,114,35)" fg:x="8147" fg:w="82"/><text x="1.8156%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (145 samples, 0.03%)</title><rect x="1.5608%" y="565" width="0.0279%" height="15" fill="rgb(245,159,27)" fg:x="8122" fg:w="145"/><text x="1.8108%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (516 samples, 0.10%)</title><rect x="1.4897%" y="597" width="0.0992%" height="15" fill="rgb(245,172,44)" fg:x="7752" fg:w="516"/><text x="1.7397%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (163 samples, 0.03%)</title><rect x="1.5575%" y="581" width="0.0313%" height="15" fill="rgb(236,23,11)" fg:x="8105" fg:w="163"/><text x="1.8075%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (537 samples, 0.10%)</title><rect x="1.4895%" y="613" width="0.1032%" height="15" fill="rgb(205,117,38)" fg:x="7751" fg:w="537"/><text x="1.7395%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (67 samples, 0.01%)</title><rect x="1.6348%" y="597" width="0.0129%" height="15" fill="rgb(237,72,25)" fg:x="8507" fg:w="67"/><text x="1.8848%" y="607.50"></text></g><g><title>LinearScan::add_temp (88 samples, 0.02%)</title><rect x="1.6596%" y="597" width="0.0169%" height="15" fill="rgb(244,70,9)" fg:x="8636" fg:w="88"/><text x="1.9096%" y="607.50"></text></g><g><title>Interval::Interval (61 samples, 0.01%)</title><rect x="1.6941%" y="565" width="0.0117%" height="15" fill="rgb(217,125,39)" fg:x="8816" fg:w="61"/><text x="1.9441%" y="575.50"></text></g><g><title>LinearScan::create_interval (81 samples, 0.02%)</title><rect x="1.6913%" y="581" width="0.0156%" height="15" fill="rgb(235,36,10)" fg:x="8801" fg:w="81"/><text x="1.9413%" y="591.50"></text></g><g><title>LinearScan::add_use (159 samples, 0.03%)</title><rect x="1.6765%" y="597" width="0.0306%" height="15" fill="rgb(251,123,47)" fg:x="8724" fg:w="159"/><text x="1.9265%" y="607.50"></text></g><g><title>LinearScan::build_intervals (649 samples, 0.12%)</title><rect x="1.5927%" y="613" width="0.1247%" height="15" fill="rgb(221,13,13)" fg:x="8288" fg:w="649"/><text x="1.8427%" y="623.50"></text></g><g><title>LinearScan::compute_global_live_sets (56 samples, 0.01%)</title><rect x="1.7174%" y="613" width="0.0108%" height="15" fill="rgb(238,131,9)" fg:x="8937" fg:w="56"/><text x="1.9674%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (82 samples, 0.02%)</title><rect x="1.7499%" y="597" width="0.0158%" height="15" fill="rgb(211,50,8)" fg:x="9106" fg:w="82"/><text x="1.9999%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (248 samples, 0.05%)</title><rect x="1.7282%" y="613" width="0.0477%" height="15" fill="rgb(245,182,24)" fg:x="8993" fg:w="248"/><text x="1.9782%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (55 samples, 0.01%)</title><rect x="1.7758%" y="613" width="0.0106%" height="15" fill="rgb(242,14,37)" fg:x="9241" fg:w="55"/><text x="2.0258%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (69 samples, 0.01%)</title><rect x="1.7995%" y="597" width="0.0133%" height="15" fill="rgb(246,228,12)" fg:x="9364" fg:w="69"/><text x="2.0495%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (116 samples, 0.02%)</title><rect x="1.7931%" y="613" width="0.0223%" height="15" fill="rgb(213,55,15)" fg:x="9331" fg:w="116"/><text x="2.0431%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (2,668 samples, 0.51%)</title><rect x="1.3252%" y="629" width="0.5127%" height="15" fill="rgb(209,9,3)" fg:x="6896" fg:w="2668"/><text x="1.5752%" y="639.50"></text></g><g><title>Compilation::emit_lir (3,398 samples, 0.65%)</title><rect x="1.1853%" y="645" width="0.6530%" height="15" fill="rgb(230,59,30)" fg:x="6168" fg:w="3398"/><text x="1.4353%" y="655.50"></text></g><g><title>Compilation::compile_java_method (8,038 samples, 1.54%)</title><rect x="0.3157%" y="661" width="1.5446%" height="15" fill="rgb(209,121,21)" fg:x="1643" fg:w="8038"/><text x="0.5657%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (89 samples, 0.02%)</title><rect x="1.8433%" y="645" width="0.0171%" height="15" fill="rgb(220,109,13)" fg:x="9592" fg:w="89"/><text x="2.0933%" y="655.50"></text></g><g><title>ciMethod::ensure_method_data (86 samples, 0.02%)</title><rect x="1.8438%" y="629" width="0.0165%" height="15" fill="rgb(232,18,1)" fg:x="9595" fg:w="86"/><text x="2.0938%" y="639.50"></text></g><g><title>CodeBuffer::finalize_oop_references (68 samples, 0.01%)</title><rect x="1.8809%" y="629" width="0.0131%" height="15" fill="rgb(215,41,42)" fg:x="9788" fg:w="68"/><text x="2.1309%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (123 samples, 0.02%)</title><rect x="1.9130%" y="597" width="0.0236%" height="15" fill="rgb(224,123,36)" fg:x="9955" fg:w="123"/><text x="2.1630%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (136 samples, 0.03%)</title><rect x="1.9124%" y="613" width="0.0261%" height="15" fill="rgb(240,125,3)" fg:x="9952" fg:w="136"/><text x="2.1624%" y="623.50"></text></g><g><title>nmethod::nmethod (282 samples, 0.05%)</title><rect x="1.9113%" y="629" width="0.0542%" height="15" fill="rgb(205,98,50)" fg:x="9946" fg:w="282"/><text x="2.1613%" y="639.50"></text></g><g><title>nmethod::new_nmethod (448 samples, 0.09%)</title><rect x="1.8796%" y="645" width="0.0861%" height="15" fill="rgb(205,185,37)" fg:x="9781" fg:w="448"/><text x="2.1296%" y="655.50"></text></g><g><title>ciEnv::register_method (510 samples, 0.10%)</title><rect x="1.8681%" y="661" width="0.0980%" height="15" fill="rgb(238,207,15)" fg:x="9721" fg:w="510"/><text x="2.1181%" y="671.50"></text></g><g><title>Compilation::compile_method (8,596 samples, 1.65%)</title><rect x="0.3148%" y="677" width="1.6519%" height="15" fill="rgb(213,199,42)" fg:x="1638" fg:w="8596"/><text x="0.5648%" y="687.50"></text></g><g><title>Compilation::Compilation (8,606 samples, 1.65%)</title><rect x="0.3138%" y="693" width="1.6538%" height="15" fill="rgb(235,201,11)" fg:x="1633" fg:w="8606"/><text x="0.5638%" y="703.50"></text></g><g><title>Compiler::compile_method (8,622 samples, 1.66%)</title><rect x="0.3109%" y="709" width="1.6569%" height="15" fill="rgb(207,46,11)" fg:x="1618" fg:w="8622"/><text x="0.5609%" y="719.50"></text></g><g><title>ciEnv::ciEnv (93 samples, 0.02%)</title><rect x="1.9737%" y="709" width="0.0179%" height="15" fill="rgb(241,35,35)" fg:x="10271" fg:w="93"/><text x="2.2237%" y="719.50"></text></g><g><title>ciSignature::ciSignature (72 samples, 0.01%)</title><rect x="1.9953%" y="645" width="0.0138%" height="15" fill="rgb(243,32,47)" fg:x="10383" fg:w="72"/><text x="2.2453%" y="655.50"></text></g><g><title>ciMethod::ciMethod (83 samples, 0.02%)</title><rect x="1.9933%" y="661" width="0.0159%" height="15" fill="rgb(247,202,23)" fg:x="10373" fg:w="83"/><text x="2.2433%" y="671.50"></text></g><g><title>ciEnv::get_method_from_handle (104 samples, 0.02%)</title><rect x="1.9916%" y="709" width="0.0200%" height="15" fill="rgb(219,102,11)" fg:x="10364" fg:w="104"/><text x="2.2416%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (102 samples, 0.02%)</title><rect x="1.9920%" y="693" width="0.0196%" height="15" fill="rgb(243,110,44)" fg:x="10366" fg:w="102"/><text x="2.2420%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (98 samples, 0.02%)</title><rect x="1.9928%" y="677" width="0.0188%" height="15" fill="rgb(222,74,54)" fg:x="10370" fg:w="98"/><text x="2.2428%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,107 samples, 1.75%)</title><rect x="0.2679%" y="725" width="1.7501%" height="15" fill="rgb(216,99,12)" fg:x="1394" fg:w="9107"/><text x="0.5179%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="2.0349%" y="469" width="0.0119%" height="15" fill="rgb(226,22,26)" fg:x="10589" fg:w="62"/><text x="2.2849%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="2.0349%" y="453" width="0.0119%" height="15" fill="rgb(217,163,10)" fg:x="10589" fg:w="62"/><text x="2.2849%" y="463.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="2.0349%" y="437" width="0.0119%" height="15" fill="rgb(213,25,53)" fg:x="10589" fg:w="62"/><text x="2.2849%" y="447.50"></text></g><g><title>finish_task_switch (66 samples, 0.01%)</title><rect x="2.0347%" y="485" width="0.0127%" height="15" fill="rgb(252,105,26)" fg:x="10588" fg:w="66"/><text x="2.2847%" y="495.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.02%)</title><rect x="2.0314%" y="533" width="0.0177%" height="15" fill="rgb(220,39,43)" fg:x="10571" fg:w="92"/><text x="2.2814%" y="543.50"></text></g><g><title>schedule (86 samples, 0.02%)</title><rect x="2.0325%" y="517" width="0.0165%" height="15" fill="rgb(229,68,48)" fg:x="10577" fg:w="86"/><text x="2.2825%" y="527.50"></text></g><g><title>__schedule (86 samples, 0.02%)</title><rect x="2.0325%" y="501" width="0.0165%" height="15" fill="rgb(252,8,32)" fg:x="10577" fg:w="86"/><text x="2.2825%" y="511.50"></text></g><g><title>do_futex (104 samples, 0.02%)</title><rect x="2.0306%" y="565" width="0.0200%" height="15" fill="rgb(223,20,43)" fg:x="10567" fg:w="104"/><text x="2.2806%" y="575.50"></text></g><g><title>futex_wait (104 samples, 0.02%)</title><rect x="2.0306%" y="549" width="0.0200%" height="15" fill="rgb(229,81,49)" fg:x="10567" fg:w="104"/><text x="2.2806%" y="559.50"></text></g><g><title>do_syscall_64 (106 samples, 0.02%)</title><rect x="2.0304%" y="597" width="0.0204%" height="15" fill="rgb(236,28,36)" fg:x="10566" fg:w="106"/><text x="2.2804%" y="607.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.02%)</title><rect x="2.0306%" y="581" width="0.0202%" height="15" fill="rgb(249,185,26)" fg:x="10567" fg:w="105"/><text x="2.2806%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (118 samples, 0.02%)</title><rect x="2.0285%" y="661" width="0.0227%" height="15" fill="rgb(249,174,33)" fg:x="10556" fg:w="118"/><text x="2.2785%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (117 samples, 0.02%)</title><rect x="2.0287%" y="645" width="0.0225%" height="15" fill="rgb(233,201,37)" fg:x="10557" fg:w="117"/><text x="2.2787%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (114 samples, 0.02%)</title><rect x="2.0293%" y="629" width="0.0219%" height="15" fill="rgb(221,78,26)" fg:x="10560" fg:w="114"/><text x="2.2793%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (108 samples, 0.02%)</title><rect x="2.0304%" y="613" width="0.0208%" height="15" fill="rgb(250,127,30)" fg:x="10566" fg:w="108"/><text x="2.2804%" y="623.50"></text></g><g><title>Monitor::IWait (126 samples, 0.02%)</title><rect x="2.0276%" y="693" width="0.0242%" height="15" fill="rgb(230,49,44)" fg:x="10551" fg:w="126"/><text x="2.2776%" y="703.50"></text></g><g><title>os::PlatformEvent::park (122 samples, 0.02%)</title><rect x="2.0283%" y="677" width="0.0234%" height="15" fill="rgb(229,67,23)" fg:x="10555" fg:w="122"/><text x="2.2783%" y="687.50"></text></g><g><title>Monitor::wait (133 samples, 0.03%)</title><rect x="2.0268%" y="709" width="0.0256%" height="15" fill="rgb(249,83,47)" fg:x="10547" fg:w="133"/><text x="2.2768%" y="719.50"></text></g><g><title>CompileQueue::get (211 samples, 0.04%)</title><rect x="2.0233%" y="725" width="0.0405%" height="15" fill="rgb(215,43,3)" fg:x="10529" fg:w="211"/><text x="2.2733%" y="735.50"></text></g><g><title>Thread::call_run (9,358 samples, 1.80%)</title><rect x="0.2677%" y="773" width="1.7983%" height="15" fill="rgb(238,154,13)" fg:x="1393" fg:w="9358"/><text x="0.5177%" y="783.50">T..</text></g><g><title>JavaThread::thread_main_inner (9,358 samples, 1.80%)</title><rect x="0.2677%" y="757" width="1.7983%" height="15" fill="rgb(219,56,2)" fg:x="1393" fg:w="9358"/><text x="0.5177%" y="767.50">J..</text></g><g><title>CompileBroker::compiler_thread_loop (9,358 samples, 1.80%)</title><rect x="0.2677%" y="741" width="1.7983%" height="15" fill="rgb(233,0,4)" fg:x="1393" fg:w="9358"/><text x="0.5177%" y="751.50">C..</text></g><g><title>__GI___clone (9,372 samples, 1.80%)</title><rect x="0.2654%" y="821" width="1.8010%" height="15" fill="rgb(235,30,7)" fg:x="1381" fg:w="9372"/><text x="0.5154%" y="831.50">_..</text></g><g><title>start_thread (9,360 samples, 1.80%)</title><rect x="0.2677%" y="805" width="1.7987%" height="15" fill="rgb(250,79,13)" fg:x="1393" fg:w="9360"/><text x="0.5177%" y="815.50">s..</text></g><g><title>thread_native_entry (9,360 samples, 1.80%)</title><rect x="0.2677%" y="789" width="1.7987%" height="15" fill="rgb(211,146,34)" fg:x="1393" fg:w="9360"/><text x="0.5177%" y="799.50">t..</text></g><g><title>C1_CompilerThre (10,761 samples, 2.07%)</title><rect x="0.0056%" y="837" width="2.0679%" height="15" fill="rgb(228,22,38)" fg:x="29" fg:w="10761"/><text x="0.2556%" y="847.50">C..</text></g><g><title>PhaseIdealLoop::build_loop_early (69 samples, 0.01%)</title><rect x="2.1121%" y="821" width="0.0133%" height="15" fill="rgb(235,168,5)" fg:x="10991" fg:w="69"/><text x="2.3621%" y="831.50"></text></g><g><title>ProjNode::pinned (67 samples, 0.01%)</title><rect x="2.1125%" y="805" width="0.0129%" height="15" fill="rgb(221,155,16)" fg:x="10993" fg:w="67"/><text x="2.3625%" y="815.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.01%)</title><rect x="2.3392%" y="805" width="0.0127%" height="15" fill="rgb(215,215,53)" fg:x="12173" fg:w="66"/><text x="2.5892%" y="815.50"></text></g><g><title>Node::is_CFG (60 samples, 0.01%)</title><rect x="2.3638%" y="805" width="0.0115%" height="15" fill="rgb(223,4,10)" fg:x="12301" fg:w="60"/><text x="2.6138%" y="815.50"></text></g><g><title>_dl_update_slotinfo (232 samples, 0.04%)</title><rect x="2.5614%" y="805" width="0.0446%" height="15" fill="rgb(234,103,6)" fg:x="13329" fg:w="232"/><text x="2.8114%" y="815.50"></text></g><g><title>update_get_addr (73 samples, 0.01%)</title><rect x="2.6967%" y="805" width="0.0140%" height="15" fill="rgb(227,97,0)" fg:x="14033" fg:w="73"/><text x="2.9467%" y="815.50"></text></g><g><title>[anon] (3,024 samples, 0.58%)</title><rect x="2.1304%" y="821" width="0.5811%" height="15" fill="rgb(234,150,53)" fg:x="11086" fg:w="3024"/><text x="2.3804%" y="831.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (58 samples, 0.01%)</title><rect x="2.7391%" y="549" width="0.0111%" height="15" fill="rgb(228,201,54)" fg:x="14254" fg:w="58"/><text x="2.9891%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (57 samples, 0.01%)</title><rect x="2.7393%" y="533" width="0.0110%" height="15" fill="rgb(222,22,37)" fg:x="14255" fg:w="57"/><text x="2.9893%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (56 samples, 0.01%)</title><rect x="2.7395%" y="517" width="0.0108%" height="15" fill="rgb(237,53,32)" fg:x="14256" fg:w="56"/><text x="2.9895%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (110 samples, 0.02%)</title><rect x="2.7305%" y="565" width="0.0211%" height="15" fill="rgb(233,25,53)" fg:x="14209" fg:w="110"/><text x="2.9805%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (120 samples, 0.02%)</title><rect x="2.7288%" y="597" width="0.0231%" height="15" fill="rgb(210,40,34)" fg:x="14200" fg:w="120"/><text x="2.9788%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (120 samples, 0.02%)</title><rect x="2.7288%" y="581" width="0.0231%" height="15" fill="rgb(241,220,44)" fg:x="14200" fg:w="120"/><text x="2.9788%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (124 samples, 0.02%)</title><rect x="2.7286%" y="661" width="0.0238%" height="15" fill="rgb(235,28,35)" fg:x="14199" fg:w="124"/><text x="2.9786%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (123 samples, 0.02%)</title><rect x="2.7288%" y="645" width="0.0236%" height="15" fill="rgb(210,56,17)" fg:x="14200" fg:w="123"/><text x="2.9788%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (123 samples, 0.02%)</title><rect x="2.7288%" y="629" width="0.0236%" height="15" fill="rgb(224,130,29)" fg:x="14200" fg:w="123"/><text x="2.9788%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (123 samples, 0.02%)</title><rect x="2.7288%" y="613" width="0.0236%" height="15" fill="rgb(235,212,8)" fg:x="14200" fg:w="123"/><text x="2.9788%" y="623.50"></text></g><g><title>Compile::call_generator (155 samples, 0.03%)</title><rect x="2.7232%" y="677" width="0.0298%" height="15" fill="rgb(223,33,50)" fg:x="14171" fg:w="155"/><text x="2.9732%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (69 samples, 0.01%)</title><rect x="2.7745%" y="469" width="0.0133%" height="15" fill="rgb(219,149,13)" fg:x="14438" fg:w="69"/><text x="3.0245%" y="479.50"></text></g><g><title>ciTypeFlow::df_flow_types (83 samples, 0.02%)</title><rect x="2.7720%" y="501" width="0.0159%" height="15" fill="rgb(250,156,29)" fg:x="14425" fg:w="83"/><text x="3.0220%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (78 samples, 0.01%)</title><rect x="2.7730%" y="485" width="0.0150%" height="15" fill="rgb(216,193,19)" fg:x="14430" fg:w="78"/><text x="3.0230%" y="495.50"></text></g><g><title>ciTypeFlow::do_flow (94 samples, 0.02%)</title><rect x="2.7716%" y="533" width="0.0181%" height="15" fill="rgb(216,135,14)" fg:x="14423" fg:w="94"/><text x="3.0216%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (94 samples, 0.02%)</title><rect x="2.7716%" y="517" width="0.0181%" height="15" fill="rgb(241,47,5)" fg:x="14423" fg:w="94"/><text x="3.0216%" y="527.50"></text></g><g><title>ciMethod::get_flow_analysis (98 samples, 0.02%)</title><rect x="2.7710%" y="549" width="0.0188%" height="15" fill="rgb(233,42,35)" fg:x="14420" fg:w="98"/><text x="3.0210%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (118 samples, 0.02%)</title><rect x="2.7676%" y="565" width="0.0227%" height="15" fill="rgb(231,13,6)" fg:x="14402" fg:w="118"/><text x="3.0176%" y="575.50"></text></g><g><title>Compile::call_generator (142 samples, 0.03%)</title><rect x="2.7649%" y="581" width="0.0273%" height="15" fill="rgb(207,181,40)" fg:x="14388" fg:w="142"/><text x="3.0149%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (53 samples, 0.01%)</title><rect x="2.8256%" y="469" width="0.0102%" height="15" fill="rgb(254,173,49)" fg:x="14704" fg:w="53"/><text x="3.0756%" y="479.50"></text></g><g><title>Compile::call_generator (67 samples, 0.01%)</title><rect x="2.8233%" y="485" width="0.0129%" height="15" fill="rgb(221,1,38)" fg:x="14692" fg:w="67"/><text x="3.0733%" y="495.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.01%)</title><rect x="2.8691%" y="389" width="0.0131%" height="15" fill="rgb(206,124,46)" fg:x="14930" fg:w="68"/><text x="3.1191%" y="399.50"></text></g><g><title>Parse::Parse (68 samples, 0.01%)</title><rect x="2.8691%" y="373" width="0.0131%" height="15" fill="rgb(249,21,11)" fg:x="14930" fg:w="68"/><text x="3.1191%" y="383.50"></text></g><g><title>Parse::do_call (164 samples, 0.03%)</title><rect x="2.8566%" y="405" width="0.0315%" height="15" fill="rgb(222,201,40)" fg:x="14865" fg:w="164"/><text x="3.1066%" y="415.50"></text></g><g><title>Parse::do_one_block (306 samples, 0.06%)</title><rect x="2.8506%" y="437" width="0.0588%" height="15" fill="rgb(235,61,29)" fg:x="14834" fg:w="306"/><text x="3.1006%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (299 samples, 0.06%)</title><rect x="2.8519%" y="421" width="0.0575%" height="15" fill="rgb(219,207,3)" fg:x="14841" fg:w="299"/><text x="3.1019%" y="431.50"></text></g><g><title>Parse::do_all_blocks (316 samples, 0.06%)</title><rect x="2.8502%" y="453" width="0.0607%" height="15" fill="rgb(222,56,46)" fg:x="14832" fg:w="316"/><text x="3.1002%" y="463.50"></text></g><g><title>ParseGenerator::generate (366 samples, 0.07%)</title><rect x="2.8446%" y="485" width="0.0703%" height="15" fill="rgb(239,76,54)" fg:x="14803" fg:w="366"/><text x="3.0946%" y="495.50"></text></g><g><title>Parse::Parse (364 samples, 0.07%)</title><rect x="2.8450%" y="469" width="0.0699%" height="15" fill="rgb(231,124,27)" fg:x="14805" fg:w="364"/><text x="3.0950%" y="479.50"></text></g><g><title>Parse::do_call (556 samples, 0.11%)</title><rect x="2.8225%" y="501" width="0.1068%" height="15" fill="rgb(249,195,6)" fg:x="14688" fg:w="556"/><text x="3.0725%" y="511.50"></text></g><g><title>Parse::do_field_access (100 samples, 0.02%)</title><rect x="2.9307%" y="501" width="0.0192%" height="15" fill="rgb(237,174,47)" fg:x="15251" fg:w="100"/><text x="3.1807%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (776 samples, 0.15%)</title><rect x="2.8143%" y="517" width="0.1491%" height="15" fill="rgb(206,201,31)" fg:x="14645" fg:w="776"/><text x="3.0643%" y="527.50"></text></g><g><title>Parse::do_one_block (788 samples, 0.15%)</title><rect x="2.8122%" y="533" width="0.1514%" height="15" fill="rgb(231,57,52)" fg:x="14634" fg:w="788"/><text x="3.0622%" y="543.50"></text></g><g><title>Parse::do_all_blocks (804 samples, 0.15%)</title><rect x="2.8114%" y="549" width="0.1545%" height="15" fill="rgb(248,177,22)" fg:x="14630" fg:w="804"/><text x="3.0614%" y="559.50"></text></g><g><title>ParseGenerator::generate (876 samples, 0.17%)</title><rect x="2.8051%" y="581" width="0.1683%" height="15" fill="rgb(215,211,37)" fg:x="14597" fg:w="876"/><text x="3.0551%" y="591.50"></text></g><g><title>Parse::Parse (875 samples, 0.17%)</title><rect x="2.8053%" y="565" width="0.1681%" height="15" fill="rgb(241,128,51)" fg:x="14598" fg:w="875"/><text x="3.0553%" y="575.50"></text></g><g><title>Parse::do_call (62 samples, 0.01%)</title><rect x="2.9782%" y="485" width="0.0119%" height="15" fill="rgb(227,165,31)" fg:x="15498" fg:w="62"/><text x="3.2282%" y="495.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.02%)</title><rect x="2.9767%" y="517" width="0.0163%" height="15" fill="rgb(228,167,24)" fg:x="15490" fg:w="85"/><text x="3.2267%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.02%)</title><rect x="2.9772%" y="501" width="0.0158%" height="15" fill="rgb(228,143,12)" fg:x="15493" fg:w="82"/><text x="3.2272%" y="511.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="2.9765%" y="533" width="0.0167%" height="15" fill="rgb(249,149,8)" fg:x="15489" fg:w="87"/><text x="3.2265%" y="543.50"></text></g><g><title>ParseGenerator::generate (95 samples, 0.02%)</title><rect x="2.9759%" y="565" width="0.0183%" height="15" fill="rgb(243,35,44)" fg:x="15486" fg:w="95"/><text x="3.2259%" y="575.50"></text></g><g><title>Parse::Parse (95 samples, 0.02%)</title><rect x="2.9759%" y="549" width="0.0183%" height="15" fill="rgb(246,89,9)" fg:x="15486" fg:w="95"/><text x="3.2259%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (124 samples, 0.02%)</title><rect x="2.9734%" y="581" width="0.0238%" height="15" fill="rgb(233,213,13)" fg:x="15473" fg:w="124"/><text x="3.2234%" y="591.50"></text></g><g><title>Parse::do_call (1,237 samples, 0.24%)</title><rect x="2.7649%" y="597" width="0.2377%" height="15" fill="rgb(233,141,41)" fg:x="14388" fg:w="1237"/><text x="3.0149%" y="607.50"></text></g><g><title>Parse::do_put_xxx (55 samples, 0.01%)</title><rect x="3.0139%" y="581" width="0.0106%" height="15" fill="rgb(239,167,4)" fg:x="15684" fg:w="55"/><text x="3.2639%" y="591.50"></text></g><g><title>Parse::do_field_access (103 samples, 0.02%)</title><rect x="3.0051%" y="597" width="0.0198%" height="15" fill="rgb(209,217,16)" fg:x="15638" fg:w="103"/><text x="3.2551%" y="607.50"></text></g><g><title>Parse::do_all_blocks (1,448 samples, 0.28%)</title><rect x="2.7562%" y="645" width="0.2783%" height="15" fill="rgb(219,88,35)" fg:x="14343" fg:w="1448"/><text x="3.0062%" y="655.50"></text></g><g><title>Parse::do_one_block (1,448 samples, 0.28%)</title><rect x="2.7562%" y="629" width="0.2783%" height="15" fill="rgb(220,193,23)" fg:x="14343" fg:w="1448"/><text x="3.0062%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,438 samples, 0.28%)</title><rect x="2.7582%" y="613" width="0.2763%" height="15" fill="rgb(230,90,52)" fg:x="14353" fg:w="1438"/><text x="3.0082%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,466 samples, 0.28%)</title><rect x="2.7536%" y="677" width="0.2817%" height="15" fill="rgb(252,106,19)" fg:x="14329" fg:w="1466"/><text x="3.0036%" y="687.50"></text></g><g><title>Parse::Parse (1,466 samples, 0.28%)</title><rect x="2.7536%" y="661" width="0.2817%" height="15" fill="rgb(206,74,20)" fg:x="14329" fg:w="1466"/><text x="3.0036%" y="671.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.01%)</title><rect x="3.0551%" y="421" width="0.0144%" height="15" fill="rgb(230,138,44)" fg:x="15898" fg:w="75"/><text x="3.3051%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (73 samples, 0.01%)</title><rect x="3.0555%" y="405" width="0.0140%" height="15" fill="rgb(235,182,43)" fg:x="15900" fg:w="73"/><text x="3.3055%" y="415.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.01%)</title><rect x="3.0551%" y="437" width="0.0148%" height="15" fill="rgb(242,16,51)" fg:x="15898" fg:w="77"/><text x="3.3051%" y="447.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.02%)</title><rect x="3.0547%" y="469" width="0.0161%" height="15" fill="rgb(248,9,4)" fg:x="15896" fg:w="84"/><text x="3.3047%" y="479.50"></text></g><g><title>Parse::Parse (84 samples, 0.02%)</title><rect x="3.0547%" y="453" width="0.0161%" height="15" fill="rgb(210,31,22)" fg:x="15896" fg:w="84"/><text x="3.3047%" y="463.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="3.0503%" y="485" width="0.0231%" height="15" fill="rgb(239,54,39)" fg:x="15873" fg:w="120"/><text x="3.3003%" y="495.50"></text></g><g><title>Parse::do_one_block (170 samples, 0.03%)</title><rect x="3.0476%" y="517" width="0.0327%" height="15" fill="rgb(230,99,41)" fg:x="15859" fg:w="170"/><text x="3.2976%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (169 samples, 0.03%)</title><rect x="3.0478%" y="501" width="0.0325%" height="15" fill="rgb(253,106,12)" fg:x="15860" fg:w="169"/><text x="3.2978%" y="511.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.03%)</title><rect x="3.0472%" y="533" width="0.0332%" height="15" fill="rgb(213,46,41)" fg:x="15857" fg:w="173"/><text x="3.2972%" y="543.50"></text></g><g><title>ParseGenerator::generate (186 samples, 0.04%)</title><rect x="3.0462%" y="565" width="0.0357%" height="15" fill="rgb(215,133,35)" fg:x="15852" fg:w="186"/><text x="3.2962%" y="575.50"></text></g><g><title>Parse::Parse (186 samples, 0.04%)</title><rect x="3.0462%" y="549" width="0.0357%" height="15" fill="rgb(213,28,5)" fg:x="15852" fg:w="186"/><text x="3.2962%" y="559.50"></text></g><g><title>Parse::do_call (256 samples, 0.05%)</title><rect x="3.0378%" y="581" width="0.0492%" height="15" fill="rgb(215,77,49)" fg:x="15808" fg:w="256"/><text x="3.2878%" y="591.50"></text></g><g><title>Parse::do_one_block (301 samples, 0.06%)</title><rect x="3.0360%" y="613" width="0.0578%" height="15" fill="rgb(248,100,22)" fg:x="15799" fg:w="301"/><text x="3.2860%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (298 samples, 0.06%)</title><rect x="3.0366%" y="597" width="0.0573%" height="15" fill="rgb(208,67,9)" fg:x="15802" fg:w="298"/><text x="3.2866%" y="607.50"></text></g><g><title>Parse::do_all_blocks (302 samples, 0.06%)</title><rect x="3.0360%" y="629" width="0.0580%" height="15" fill="rgb(219,133,21)" fg:x="15799" fg:w="302"/><text x="3.2860%" y="639.50"></text></g><g><title>ParseGenerator::generate (306 samples, 0.06%)</title><rect x="3.0357%" y="661" width="0.0588%" height="15" fill="rgb(246,46,29)" fg:x="15797" fg:w="306"/><text x="3.2857%" y="671.50"></text></g><g><title>Parse::Parse (306 samples, 0.06%)</title><rect x="3.0357%" y="645" width="0.0588%" height="15" fill="rgb(246,185,52)" fg:x="15797" fg:w="306"/><text x="3.2857%" y="655.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="3.0947%" y="645" width="0.0110%" height="15" fill="rgb(252,136,11)" fg:x="16104" fg:w="57"/><text x="3.3447%" y="655.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="3.0947%" y="629" width="0.0110%" height="15" fill="rgb(219,138,53)" fg:x="16104" fg:w="57"/><text x="3.3447%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.01%)</title><rect x="3.0945%" y="661" width="0.0113%" height="15" fill="rgb(211,51,23)" fg:x="16103" fg:w="59"/><text x="3.3445%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (368 samples, 0.07%)</title><rect x="3.0353%" y="677" width="0.0707%" height="15" fill="rgb(247,221,28)" fg:x="15795" fg:w="368"/><text x="3.2853%" y="687.50"></text></g><g><title>Parse::do_call (2,008 samples, 0.39%)</title><rect x="2.7232%" y="693" width="0.3859%" height="15" fill="rgb(251,222,45)" fg:x="14171" fg:w="2008"/><text x="2.9732%" y="703.50"></text></g><g><title>C2Compiler::compile_method (2,047 samples, 0.39%)</title><rect x="2.7174%" y="805" width="0.3934%" height="15" fill="rgb(217,162,53)" fg:x="14141" fg:w="2047"/><text x="2.9674%" y="815.50"></text></g><g><title>Compile::Compile (2,047 samples, 0.39%)</title><rect x="2.7174%" y="789" width="0.3934%" height="15" fill="rgb(229,93,14)" fg:x="14141" fg:w="2047"/><text x="2.9674%" y="799.50"></text></g><g><title>ParseGenerator::generate (2,017 samples, 0.39%)</title><rect x="2.7232%" y="773" width="0.3876%" height="15" fill="rgb(209,67,49)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="783.50"></text></g><g><title>Parse::Parse (2,017 samples, 0.39%)</title><rect x="2.7232%" y="757" width="0.3876%" height="15" fill="rgb(213,87,29)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="767.50"></text></g><g><title>Parse::do_all_blocks (2,017 samples, 0.39%)</title><rect x="2.7232%" y="741" width="0.3876%" height="15" fill="rgb(205,151,52)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="751.50"></text></g><g><title>Parse::do_one_block (2,017 samples, 0.39%)</title><rect x="2.7232%" y="725" width="0.3876%" height="15" fill="rgb(253,215,39)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (2,017 samples, 0.39%)</title><rect x="2.7232%" y="709" width="0.3876%" height="15" fill="rgb(221,220,41)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="719.50"></text></g><g><title>Compile::Output (53 samples, 0.01%)</title><rect x="3.1114%" y="789" width="0.0102%" height="15" fill="rgb(218,133,21)" fg:x="16191" fg:w="53"/><text x="3.3614%" y="799.50"></text></g><g><title>Compile::init_buffer (53 samples, 0.01%)</title><rect x="3.1114%" y="773" width="0.0102%" height="15" fill="rgb(221,193,43)" fg:x="16191" fg:w="53"/><text x="3.3614%" y="783.50"></text></g><g><title>PhaseCFG::schedule_late (57 samples, 0.01%)</title><rect x="3.1256%" y="757" width="0.0110%" height="15" fill="rgb(240,128,52)" fg:x="16265" fg:w="57"/><text x="3.3756%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (57 samples, 0.01%)</title><rect x="3.1256%" y="741" width="0.0110%" height="15" fill="rgb(253,114,12)" fg:x="16265" fg:w="57"/><text x="3.3756%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (167 samples, 0.03%)</title><rect x="3.1365%" y="757" width="0.0321%" height="15" fill="rgb(215,223,47)" fg:x="16322" fg:w="167"/><text x="3.3865%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (167 samples, 0.03%)</title><rect x="3.1365%" y="741" width="0.0321%" height="15" fill="rgb(248,225,23)" fg:x="16322" fg:w="167"/><text x="3.3865%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (228 samples, 0.04%)</title><rect x="3.1252%" y="789" width="0.0438%" height="15" fill="rgb(250,108,0)" fg:x="16263" fg:w="228"/><text x="3.3752%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (228 samples, 0.04%)</title><rect x="3.1252%" y="773" width="0.0438%" height="15" fill="rgb(228,208,7)" fg:x="16263" fg:w="228"/><text x="3.3752%" y="783.50"></text></g><g><title>PhaseChaitin::Split (61 samples, 0.01%)</title><rect x="3.1690%" y="773" width="0.0117%" height="15" fill="rgb(244,45,10)" fg:x="16491" fg:w="61"/><text x="3.4190%" y="783.50"></text></g><g><title>Compile::Code_Gen (375 samples, 0.07%)</title><rect x="3.1114%" y="805" width="0.0721%" height="15" fill="rgb(207,125,25)" fg:x="16191" fg:w="375"/><text x="3.3614%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (75 samples, 0.01%)</title><rect x="3.1690%" y="789" width="0.0144%" height="15" fill="rgb(210,195,18)" fg:x="16491" fg:w="75"/><text x="3.4190%" y="799.50"></text></g><g><title>OopFlow::build_oop_map (118 samples, 0.02%)</title><rect x="3.2836%" y="725" width="0.0227%" height="15" fill="rgb(249,80,12)" fg:x="17087" fg:w="118"/><text x="3.5336%" y="735.50"></text></g><g><title>OopFlow::compute_reach (197 samples, 0.04%)</title><rect x="3.2686%" y="741" width="0.0379%" height="15" fill="rgb(221,65,9)" fg:x="17009" fg:w="197"/><text x="3.5186%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (719 samples, 0.14%)</title><rect x="3.1863%" y="757" width="0.1382%" height="15" fill="rgb(235,49,36)" fg:x="16581" fg:w="719"/><text x="3.4363%" y="767.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (78 samples, 0.01%)</title><rect x="3.3095%" y="741" width="0.0150%" height="15" fill="rgb(225,32,20)" fg:x="17222" fg:w="78"/><text x="3.5595%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (178 samples, 0.03%)</title><rect x="3.3572%" y="725" width="0.0342%" height="15" fill="rgb(215,141,46)" fg:x="17470" fg:w="178"/><text x="3.6072%" y="735.50"></text></g><g><title>Compile::shorten_branches (328 samples, 0.06%)</title><rect x="3.3328%" y="741" width="0.0630%" height="15" fill="rgb(250,160,47)" fg:x="17343" fg:w="328"/><text x="3.5828%" y="751.50"></text></g><g><title>Compile::init_buffer (374 samples, 0.07%)</title><rect x="3.3245%" y="757" width="0.0719%" height="15" fill="rgb(216,222,40)" fg:x="17300" fg:w="374"/><text x="3.5745%" y="767.50"></text></g><g><title>Compile::Output (1,106 samples, 0.21%)</title><rect x="3.1840%" y="773" width="0.2125%" height="15" fill="rgb(234,217,39)" fg:x="16569" fg:w="1106"/><text x="3.4340%" y="783.50"></text></g><g><title>Compile::Process_OopMap_Node (208 samples, 0.04%)</title><rect x="3.4252%" y="757" width="0.0400%" height="15" fill="rgb(207,178,40)" fg:x="17824" fg:w="208"/><text x="3.6752%" y="767.50"></text></g><g><title>Compile::valid_bundle_info (56 samples, 0.01%)</title><rect x="3.4659%" y="757" width="0.0108%" height="15" fill="rgb(221,136,13)" fg:x="18036" fg:w="56"/><text x="3.7159%" y="767.50"></text></g><g><title>Compile::fill_buffer (528 samples, 0.10%)</title><rect x="3.3965%" y="773" width="0.1015%" height="15" fill="rgb(249,199,10)" fg:x="17675" fg:w="528"/><text x="3.6465%" y="783.50"></text></g><g><title>Matcher::find_shared (336 samples, 0.06%)</title><rect x="3.5132%" y="757" width="0.0646%" height="15" fill="rgb(249,222,13)" fg:x="18282" fg:w="336"/><text x="3.7632%" y="767.50"></text></g><g><title>Arena::contains (464 samples, 0.09%)</title><rect x="3.6469%" y="741" width="0.0892%" height="15" fill="rgb(244,185,38)" fg:x="18978" fg:w="464"/><text x="3.8969%" y="751.50"></text></g><g><title>Matcher::match_tree (102 samples, 0.02%)</title><rect x="3.7503%" y="725" width="0.0196%" height="15" fill="rgb(236,202,9)" fg:x="19516" fg:w="102"/><text x="4.0003%" y="735.50"></text></g><g><title>Matcher::match_sfpt (151 samples, 0.03%)</title><rect x="3.7446%" y="741" width="0.0290%" height="15" fill="rgb(250,229,37)" fg:x="19486" fg:w="151"/><text x="3.9946%" y="751.50"></text></g><g><title>Matcher::Label_Root (94 samples, 0.02%)</title><rect x="3.8397%" y="693" width="0.0181%" height="15" fill="rgb(206,174,23)" fg:x="19981" fg:w="94"/><text x="4.0897%" y="703.50"></text></g><g><title>State::DFA (65 samples, 0.01%)</title><rect x="3.8585%" y="693" width="0.0125%" height="15" fill="rgb(211,33,43)" fg:x="20079" fg:w="65"/><text x="4.1085%" y="703.50"></text></g><g><title>Matcher::Label_Root (238 samples, 0.05%)</title><rect x="3.8266%" y="709" width="0.0457%" height="15" fill="rgb(245,58,50)" fg:x="19913" fg:w="238"/><text x="4.0766%" y="719.50"></text></g><g><title>Matcher::Label_Root (381 samples, 0.07%)</title><rect x="3.8118%" y="725" width="0.0732%" height="15" fill="rgb(244,68,36)" fg:x="19836" fg:w="381"/><text x="4.0618%" y="735.50"></text></g><g><title>Matcher::ReduceInst (81 samples, 0.02%)</title><rect x="3.8921%" y="693" width="0.0156%" height="15" fill="rgb(232,229,15)" fg:x="20254" fg:w="81"/><text x="4.1421%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (148 samples, 0.03%)</title><rect x="3.8897%" y="709" width="0.0284%" height="15" fill="rgb(254,30,23)" fg:x="20241" fg:w="148"/><text x="4.1397%" y="719.50"></text></g><g><title>Matcher::ReduceInst (280 samples, 0.05%)</title><rect x="3.8850%" y="725" width="0.0538%" height="15" fill="rgb(235,160,14)" fg:x="20217" fg:w="280"/><text x="4.1350%" y="735.50"></text></g><g><title>Matcher::match_tree (867 samples, 0.17%)</title><rect x="3.7736%" y="741" width="0.1666%" height="15" fill="rgb(212,155,44)" fg:x="19637" fg:w="867"/><text x="4.0236%" y="751.50"></text></g><g><title>Node::clone (84 samples, 0.02%)</title><rect x="3.9412%" y="741" width="0.0161%" height="15" fill="rgb(226,2,50)" fg:x="20509" fg:w="84"/><text x="4.1912%" y="751.50"></text></g><g><title>Matcher::xform (2,002 samples, 0.38%)</title><rect x="3.5801%" y="757" width="0.3847%" height="15" fill="rgb(234,177,6)" fg:x="18630" fg:w="2002"/><text x="3.8301%" y="767.50"></text></g><g><title>Matcher::match (2,432 samples, 0.47%)</title><rect x="3.4992%" y="773" width="0.4673%" height="15" fill="rgb(217,24,9)" fg:x="18209" fg:w="2432"/><text x="3.7492%" y="783.50"></text></g><g><title>PhaseBlockLayout::find_edges (64 samples, 0.01%)</title><rect x="3.9669%" y="757" width="0.0123%" height="15" fill="rgb(220,13,46)" fg:x="20643" fg:w="64"/><text x="4.2169%" y="767.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (148 samples, 0.03%)</title><rect x="3.9665%" y="773" width="0.0284%" height="15" fill="rgb(239,221,27)" fg:x="20641" fg:w="148"/><text x="4.2165%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (136 samples, 0.03%)</title><rect x="3.9953%" y="757" width="0.0261%" height="15" fill="rgb(222,198,25)" fg:x="20791" fg:w="136"/><text x="4.2453%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (139 samples, 0.03%)</title><rect x="3.9950%" y="773" width="0.0267%" height="15" fill="rgb(211,99,13)" fg:x="20789" fg:w="139"/><text x="4.2450%" y="783.50"></text></g><g><title>PhaseCFG::build_dominator_tree (87 samples, 0.02%)</title><rect x="4.0217%" y="757" width="0.0167%" height="15" fill="rgb(232,111,31)" fg:x="20928" fg:w="87"/><text x="4.2717%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (56 samples, 0.01%)</title><rect x="4.0384%" y="757" width="0.0108%" height="15" fill="rgb(245,82,37)" fg:x="21015" fg:w="56"/><text x="4.2884%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (53 samples, 0.01%)</title><rect x="4.1156%" y="741" width="0.0102%" height="15" fill="rgb(227,149,46)" fg:x="21417" fg:w="53"/><text x="4.3656%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (230 samples, 0.04%)</title><rect x="4.1535%" y="725" width="0.0442%" height="15" fill="rgb(218,36,50)" fg:x="21614" fg:w="230"/><text x="4.4035%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (117 samples, 0.02%)</title><rect x="4.1977%" y="725" width="0.0225%" height="15" fill="rgb(226,80,48)" fg:x="21844" fg:w="117"/><text x="4.4477%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (136 samples, 0.03%)</title><rect x="4.2202%" y="725" width="0.0261%" height="15" fill="rgb(238,224,15)" fg:x="21961" fg:w="136"/><text x="4.4702%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (67 samples, 0.01%)</title><rect x="4.2463%" y="725" width="0.0129%" height="15" fill="rgb(241,136,10)" fg:x="22097" fg:w="67"/><text x="4.4963%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (663 samples, 0.13%)</title><rect x="4.1333%" y="741" width="0.1274%" height="15" fill="rgb(208,32,45)" fg:x="21509" fg:w="663"/><text x="4.3833%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (55 samples, 0.01%)</title><rect x="4.3111%" y="725" width="0.0106%" height="15" fill="rgb(207,135,9)" fg:x="22434" fg:w="55"/><text x="4.5611%" y="735.50"></text></g><g><title>PhaseCFG::select (106 samples, 0.02%)</title><rect x="4.3278%" y="725" width="0.0204%" height="15" fill="rgb(206,86,44)" fg:x="22521" fg:w="106"/><text x="4.5778%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (549 samples, 0.11%)</title><rect x="4.2607%" y="741" width="0.1055%" height="15" fill="rgb(245,177,15)" fg:x="22172" fg:w="549"/><text x="4.5107%" y="751.50"></text></g><g><title>RegMask::Size (91 samples, 0.02%)</title><rect x="4.4210%" y="725" width="0.0175%" height="15" fill="rgb(206,64,50)" fg:x="23006" fg:w="91"/><text x="4.6710%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (403 samples, 0.08%)</title><rect x="4.3724%" y="741" width="0.0774%" height="15" fill="rgb(234,36,40)" fg:x="22753" fg:w="403"/><text x="4.6224%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (88 samples, 0.02%)</title><rect x="4.4498%" y="741" width="0.0169%" height="15" fill="rgb(213,64,8)" fg:x="23156" fg:w="88"/><text x="4.6998%" y="751.50"></text></g><g><title>IndexSet::initialize (105 samples, 0.02%)</title><rect x="4.4777%" y="725" width="0.0202%" height="15" fill="rgb(210,75,36)" fg:x="23301" fg:w="105"/><text x="4.7277%" y="735.50"></text></g><g><title>PhaseIFG::init (202 samples, 0.04%)</title><rect x="4.4667%" y="741" width="0.0388%" height="15" fill="rgb(229,88,21)" fg:x="23244" fg:w="202"/><text x="4.7167%" y="751.50"></text></g><g><title>IndexSet::initialize (62 samples, 0.01%)</title><rect x="4.5501%" y="725" width="0.0119%" height="15" fill="rgb(252,204,47)" fg:x="23678" fg:w="62"/><text x="4.8001%" y="735.50"></text></g><g><title>PhaseLive::add_livein (161 samples, 0.03%)</title><rect x="4.5620%" y="725" width="0.0309%" height="15" fill="rgb(208,77,27)" fg:x="23740" fg:w="161"/><text x="4.8120%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (61 samples, 0.01%)</title><rect x="4.5813%" y="709" width="0.0117%" height="15" fill="rgb(221,76,26)" fg:x="23840" fg:w="61"/><text x="4.8313%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (53 samples, 0.01%)</title><rect x="4.6272%" y="709" width="0.0102%" height="15" fill="rgb(225,139,18)" fg:x="24079" fg:w="53"/><text x="4.8772%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (86 samples, 0.02%)</title><rect x="4.6414%" y="709" width="0.0165%" height="15" fill="rgb(230,137,11)" fg:x="24153" fg:w="86"/><text x="4.8914%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (340 samples, 0.07%)</title><rect x="4.5930%" y="725" width="0.0653%" height="15" fill="rgb(212,28,1)" fg:x="23901" fg:w="340"/><text x="4.8430%" y="735.50"></text></g><g><title>PhaseLive::compute (799 samples, 0.15%)</title><rect x="4.5055%" y="741" width="0.1535%" height="15" fill="rgb(248,164,17)" fg:x="23446" fg:w="799"/><text x="4.7555%" y="751.50"></text></g><g><title>PhaseCFG::global_code_motion (3,200 samples, 0.61%)</title><rect x="4.0491%" y="757" width="0.6149%" height="15" fill="rgb(222,171,42)" fg:x="21071" fg:w="3200"/><text x="4.2991%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,344 samples, 0.64%)</title><rect x="4.0217%" y="773" width="0.6426%" height="15" fill="rgb(243,84,45)" fg:x="20928" fg:w="3344"/><text x="4.2717%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (67 samples, 0.01%)</title><rect x="4.6673%" y="773" width="0.0129%" height="15" fill="rgb(252,49,23)" fg:x="24288" fg:w="67"/><text x="4.9173%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (936 samples, 0.18%)</title><rect x="4.7077%" y="757" width="0.1799%" height="15" fill="rgb(215,19,7)" fg:x="24498" fg:w="936"/><text x="4.9577%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (274 samples, 0.05%)</title><rect x="5.0002%" y="741" width="0.0527%" height="15" fill="rgb(238,81,41)" fg:x="26020" fg:w="274"/><text x="5.2502%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (158 samples, 0.03%)</title><rect x="5.0528%" y="741" width="0.0304%" height="15" fill="rgb(210,199,37)" fg:x="26294" fg:w="158"/><text x="5.3028%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (75 samples, 0.01%)</title><rect x="5.1541%" y="725" width="0.0144%" height="15" fill="rgb(244,192,49)" fg:x="26821" fg:w="75"/><text x="5.4041%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (356 samples, 0.07%)</title><rect x="5.1685%" y="725" width="0.0684%" height="15" fill="rgb(226,211,11)" fg:x="26896" fg:w="356"/><text x="5.4185%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (809 samples, 0.16%)</title><rect x="5.0855%" y="741" width="0.1555%" height="15" fill="rgb(236,162,54)" fg:x="26464" fg:w="809"/><text x="5.3355%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (132 samples, 0.03%)</title><rect x="5.2410%" y="741" width="0.0254%" height="15" fill="rgb(220,229,9)" fg:x="27273" fg:w="132"/><text x="5.4910%" y="751.50"></text></g><g><title>PhaseChaitin::Select (1,981 samples, 0.38%)</title><rect x="4.8876%" y="757" width="0.3807%" height="15" fill="rgb(250,87,22)" fg:x="25434" fg:w="1981"/><text x="5.1376%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (325 samples, 0.06%)</title><rect x="5.3186%" y="741" width="0.0625%" height="15" fill="rgb(239,43,17)" fg:x="27677" fg:w="325"/><text x="5.5686%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (64 samples, 0.01%)</title><rect x="5.4622%" y="725" width="0.0123%" height="15" fill="rgb(231,177,25)" fg:x="28424" fg:w="64"/><text x="5.7122%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,465 samples, 0.28%)</title><rect x="5.2683%" y="757" width="0.2815%" height="15" fill="rgb(219,179,1)" fg:x="27415" fg:w="1465"/><text x="5.5183%" y="767.50"></text></g><g><title>PhaseIFG::remove_node (878 samples, 0.17%)</title><rect x="5.3811%" y="741" width="0.1687%" height="15" fill="rgb(238,219,53)" fg:x="28002" fg:w="878"/><text x="5.6311%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (392 samples, 0.08%)</title><rect x="5.4745%" y="725" width="0.0753%" height="15" fill="rgb(232,167,36)" fg:x="28488" fg:w="392"/><text x="5.7245%" y="735.50"></text></g><g><title>MachNode::rematerialize (142 samples, 0.03%)</title><rect x="5.9822%" y="741" width="0.0273%" height="15" fill="rgb(244,19,51)" fg:x="31130" fg:w="142"/><text x="6.2322%" y="751.50"></text></g><g><title>Node::rematerialize (114 samples, 0.02%)</title><rect x="6.0154%" y="741" width="0.0219%" height="15" fill="rgb(224,6,22)" fg:x="31303" fg:w="114"/><text x="6.2654%" y="751.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (76 samples, 0.01%)</title><rect x="6.0713%" y="725" width="0.0146%" height="15" fill="rgb(224,145,5)" fg:x="31594" fg:w="76"/><text x="6.3213%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (145 samples, 0.03%)</title><rect x="6.0621%" y="741" width="0.0279%" height="15" fill="rgb(234,130,49)" fg:x="31546" fg:w="145"/><text x="6.3121%" y="751.50"></text></g><g><title>PhaseChaitin::Split (2,888 samples, 0.55%)</title><rect x="5.5498%" y="757" width="0.5550%" height="15" fill="rgb(254,6,2)" fg:x="28880" fg:w="2888"/><text x="5.7998%" y="767.50"></text></g><g><title>IndexSet::IndexSet (281 samples, 0.05%)</title><rect x="6.2685%" y="741" width="0.0540%" height="15" fill="rgb(208,96,46)" fg:x="32620" fg:w="281"/><text x="6.5185%" y="751.50"></text></g><g><title>MachNode::rematerialize (73 samples, 0.01%)</title><rect x="6.3244%" y="741" width="0.0140%" height="15" fill="rgb(239,3,39)" fg:x="32911" fg:w="73"/><text x="6.5744%" y="751.50"></text></g><g><title>MachNode::rematerialize (101 samples, 0.02%)</title><rect x="6.4328%" y="725" width="0.0194%" height="15" fill="rgb(233,210,1)" fg:x="33475" fg:w="101"/><text x="6.6828%" y="735.50"></text></g><g><title>RegMask::is_UP (62 samples, 0.01%)</title><rect x="6.4678%" y="709" width="0.0119%" height="15" fill="rgb(244,137,37)" fg:x="33657" fg:w="62"/><text x="6.7178%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (132 samples, 0.03%)</title><rect x="6.4545%" y="725" width="0.0254%" height="15" fill="rgb(240,136,2)" fg:x="33588" fg:w="132"/><text x="6.7045%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (730 samples, 0.14%)</title><rect x="6.3415%" y="741" width="0.1403%" height="15" fill="rgb(239,18,37)" fg:x="33000" fg:w="730"/><text x="6.5915%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (136 samples, 0.03%)</title><rect x="6.5435%" y="725" width="0.0261%" height="15" fill="rgb(218,185,22)" fg:x="34051" fg:w="136"/><text x="6.7935%" y="735.50"></text></g><g><title>RegMask::is_UP (79 samples, 0.02%)</title><rect x="6.5696%" y="725" width="0.0152%" height="15" fill="rgb(225,218,4)" fg:x="34187" fg:w="79"/><text x="6.8196%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (460 samples, 0.09%)</title><rect x="6.4968%" y="741" width="0.0884%" height="15" fill="rgb(230,182,32)" fg:x="33808" fg:w="460"/><text x="6.7468%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (129 samples, 0.02%)</title><rect x="6.9403%" y="725" width="0.0248%" height="15" fill="rgb(242,56,43)" fg:x="36116" fg:w="129"/><text x="7.1903%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (717 samples, 0.14%)</title><rect x="6.9659%" y="725" width="0.1378%" height="15" fill="rgb(233,99,24)" fg:x="36249" fg:w="717"/><text x="7.2159%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,702 samples, 0.52%)</title><rect x="6.5852%" y="741" width="0.5192%" height="15" fill="rgb(234,209,42)" fg:x="34268" fg:w="2702"/><text x="6.8352%" y="751.50"></text></g><g><title>PhaseChaitin::lower_pressure (95 samples, 0.02%)</title><rect x="7.1044%" y="741" width="0.0183%" height="15" fill="rgb(227,7,12)" fg:x="36970" fg:w="95"/><text x="7.3544%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (173 samples, 0.03%)</title><rect x="7.2099%" y="725" width="0.0332%" height="15" fill="rgb(245,203,43)" fg:x="37519" fg:w="173"/><text x="7.4599%" y="735.50"></text></g><g><title>RegMask::Size (303 samples, 0.06%)</title><rect x="7.2432%" y="725" width="0.0582%" height="15" fill="rgb(238,205,33)" fg:x="37692" fg:w="303"/><text x="7.4932%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (594 samples, 0.11%)</title><rect x="7.3014%" y="725" width="0.1141%" height="15" fill="rgb(231,56,7)" fg:x="37995" fg:w="594"/><text x="7.5514%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,535 samples, 0.29%)</title><rect x="7.1227%" y="741" width="0.2950%" height="15" fill="rgb(244,186,29)" fg:x="37065" fg:w="1535"/><text x="7.3727%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (6,915 samples, 1.33%)</title><rect x="6.1048%" y="757" width="1.3288%" height="15" fill="rgb(234,111,31)" fg:x="31768" fg:w="6915"/><text x="6.3548%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (58 samples, 0.01%)</title><rect x="7.5064%" y="725" width="0.0111%" height="15" fill="rgb(241,149,10)" fg:x="39062" fg:w="58"/><text x="7.7564%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (308 samples, 0.06%)</title><rect x="7.4586%" y="741" width="0.0592%" height="15" fill="rgb(249,206,44)" fg:x="38813" fg:w="308"/><text x="7.7086%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (441 samples, 0.08%)</title><rect x="7.4336%" y="757" width="0.0847%" height="15" fill="rgb(251,153,30)" fg:x="38683" fg:w="441"/><text x="7.6836%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (125 samples, 0.02%)</title><rect x="7.5183%" y="757" width="0.0240%" height="15" fill="rgb(239,152,38)" fg:x="39124" fg:w="125"/><text x="7.7683%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (83 samples, 0.02%)</title><rect x="7.5485%" y="757" width="0.0159%" height="15" fill="rgb(249,139,47)" fg:x="39281" fg:w="83"/><text x="7.7985%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (59 samples, 0.01%)</title><rect x="7.5645%" y="757" width="0.0113%" height="15" fill="rgb(244,64,35)" fg:x="39364" fg:w="59"/><text x="7.8145%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (77 samples, 0.01%)</title><rect x="7.9040%" y="741" width="0.0148%" height="15" fill="rgb(216,46,15)" fg:x="41131" fg:w="77"/><text x="8.1540%" y="751.50"></text></g><g><title>MachNode::ideal_reg (74 samples, 0.01%)</title><rect x="7.9196%" y="741" width="0.0142%" height="15" fill="rgb(250,74,19)" fg:x="41212" fg:w="74"/><text x="8.1696%" y="751.50"></text></g><g><title>MachNode::in_RegMask (59 samples, 0.01%)</title><rect x="7.9338%" y="741" width="0.0113%" height="15" fill="rgb(249,42,33)" fg:x="41286" fg:w="59"/><text x="8.1838%" y="751.50"></text></g><g><title>RegMask::Size (1,056 samples, 0.20%)</title><rect x="7.9651%" y="741" width="0.2029%" height="15" fill="rgb(242,149,17)" fg:x="41449" fg:w="1056"/><text x="8.2151%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (172 samples, 0.03%)</title><rect x="8.1681%" y="741" width="0.0331%" height="15" fill="rgb(244,29,21)" fg:x="42505" fg:w="172"/><text x="8.4181%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (108 samples, 0.02%)</title><rect x="8.2011%" y="741" width="0.0208%" height="15" fill="rgb(220,130,37)" fg:x="42677" fg:w="108"/><text x="8.4511%" y="751.50"></text></g><g><title>RegMask::is_bound1 (135 samples, 0.03%)</title><rect x="8.2219%" y="741" width="0.0259%" height="15" fill="rgb(211,67,2)" fg:x="42785" fg:w="135"/><text x="8.4719%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (73 samples, 0.01%)</title><rect x="8.2478%" y="741" width="0.0140%" height="15" fill="rgb(235,68,52)" fg:x="42920" fg:w="73"/><text x="8.4978%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,696 samples, 0.71%)</title><rect x="7.5758%" y="757" width="0.7102%" height="15" fill="rgb(246,142,3)" fg:x="39423" fg:w="3696"/><text x="7.8258%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (472 samples, 0.09%)</title><rect x="8.2860%" y="757" width="0.0907%" height="15" fill="rgb(241,25,7)" fg:x="43119" fg:w="472"/><text x="8.5360%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (88 samples, 0.02%)</title><rect x="9.0122%" y="725" width="0.0169%" height="15" fill="rgb(242,119,39)" fg:x="46898" fg:w="88"/><text x="9.2622%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (1,812 samples, 0.35%)</title><rect x="8.6890%" y="741" width="0.3482%" height="15" fill="rgb(241,98,45)" fg:x="45216" fg:w="1812"/><text x="8.9390%" y="751.50"></text></g><g><title>[libc-2.31.so] (65 samples, 0.01%)</title><rect x="9.0472%" y="741" width="0.0125%" height="15" fill="rgb(254,28,30)" fg:x="47080" fg:w="65"/><text x="9.2972%" y="751.50"></text></g><g><title>find_lowest_bit (312 samples, 0.06%)</title><rect x="9.0620%" y="741" width="0.0600%" height="15" fill="rgb(241,142,54)" fg:x="47157" fg:w="312"/><text x="9.3120%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,885 samples, 0.75%)</title><rect x="8.3767%" y="757" width="0.7466%" height="15" fill="rgb(222,85,15)" fg:x="43591" fg:w="3885"/><text x="8.6267%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (171 samples, 0.03%)</title><rect x="9.1233%" y="757" width="0.0329%" height="15" fill="rgb(210,85,47)" fg:x="47476" fg:w="171"/><text x="9.3733%" y="767.50"></text></g><g><title>PhaseCoalesce::combine_these_two (74 samples, 0.01%)</title><rect x="9.1752%" y="725" width="0.0142%" height="15" fill="rgb(224,206,25)" fg:x="47746" fg:w="74"/><text x="9.4252%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (166 samples, 0.03%)</title><rect x="9.1579%" y="741" width="0.0319%" height="15" fill="rgb(243,201,19)" fg:x="47656" fg:w="166"/><text x="9.4079%" y="751.50"></text></g><g><title>PhaseCFG::is_uncommon (117 samples, 0.02%)</title><rect x="9.2004%" y="725" width="0.0225%" height="15" fill="rgb(236,59,4)" fg:x="47877" fg:w="117"/><text x="9.4504%" y="735.50"></text></g><g><title>IndexSet::lrg_union (357 samples, 0.07%)</title><rect x="9.2304%" y="709" width="0.0686%" height="15" fill="rgb(254,179,45)" fg:x="48033" fg:w="357"/><text x="9.4804%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (428 samples, 0.08%)</title><rect x="9.3016%" y="709" width="0.0822%" height="15" fill="rgb(226,14,10)" fg:x="48404" fg:w="428"/><text x="9.5516%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (110 samples, 0.02%)</title><rect x="9.3839%" y="709" width="0.0211%" height="15" fill="rgb(244,27,41)" fg:x="48832" fg:w="110"/><text x="9.6339%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (967 samples, 0.19%)</title><rect x="9.2229%" y="725" width="0.1858%" height="15" fill="rgb(235,35,32)" fg:x="47994" fg:w="967"/><text x="9.4729%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,315 samples, 0.25%)</title><rect x="9.1562%" y="757" width="0.2527%" height="15" fill="rgb(218,68,31)" fg:x="47647" fg:w="1315"/><text x="9.4062%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,140 samples, 0.22%)</title><rect x="9.1898%" y="741" width="0.2191%" height="15" fill="rgb(207,120,37)" fg:x="47822" fg:w="1140"/><text x="9.4398%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (913 samples, 0.18%)</title><rect x="9.4089%" y="757" width="0.1754%" height="15" fill="rgb(227,98,0)" fg:x="48962" fg:w="913"/><text x="9.6589%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (474 samples, 0.09%)</title><rect x="9.4932%" y="741" width="0.0911%" height="15" fill="rgb(207,7,3)" fg:x="49401" fg:w="474"/><text x="9.7432%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (79 samples, 0.02%)</title><rect x="9.6531%" y="741" width="0.0152%" height="15" fill="rgb(206,98,19)" fg:x="50233" fg:w="79"/><text x="9.9031%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (846 samples, 0.16%)</title><rect x="9.5843%" y="757" width="0.1626%" height="15" fill="rgb(217,5,26)" fg:x="49875" fg:w="846"/><text x="9.8343%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (409 samples, 0.08%)</title><rect x="9.6683%" y="741" width="0.0786%" height="15" fill="rgb(235,190,38)" fg:x="50312" fg:w="409"/><text x="9.9183%" y="751.50"></text></g><g><title>IndexSet::initialize (187 samples, 0.04%)</title><rect x="9.7684%" y="741" width="0.0359%" height="15" fill="rgb(247,86,24)" fg:x="50833" fg:w="187"/><text x="10.0184%" y="751.50"></text></g><g><title>PhaseIFG::init (365 samples, 0.07%)</title><rect x="9.7469%" y="757" width="0.0701%" height="15" fill="rgb(205,101,16)" fg:x="50721" fg:w="365"/><text x="9.9969%" y="767.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.01%)</title><rect x="9.8044%" y="741" width="0.0127%" height="15" fill="rgb(246,168,33)" fg:x="51020" fg:w="66"/><text x="10.0544%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (64 samples, 0.01%)</title><rect x="10.0417%" y="741" width="0.0123%" height="15" fill="rgb(231,114,1)" fg:x="52255" fg:w="64"/><text x="10.2917%" y="751.50"></text></g><g><title>IndexSet::free_block (54 samples, 0.01%)</title><rect x="10.0540%" y="741" width="0.0104%" height="15" fill="rgb(207,184,53)" fg:x="52319" fg:w="54"/><text x="10.3040%" y="751.50"></text></g><g><title>IndexSet::initialize (99 samples, 0.02%)</title><rect x="10.0644%" y="741" width="0.0190%" height="15" fill="rgb(224,95,51)" fg:x="52373" fg:w="99"/><text x="10.3144%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (191 samples, 0.04%)</title><rect x="10.2093%" y="725" width="0.0367%" height="15" fill="rgb(212,188,45)" fg:x="53127" fg:w="191"/><text x="10.4593%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (279 samples, 0.05%)</title><rect x="10.2548%" y="725" width="0.0536%" height="15" fill="rgb(223,154,38)" fg:x="53364" fg:w="279"/><text x="10.5048%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,195 samples, 0.23%)</title><rect x="10.0836%" y="741" width="0.2296%" height="15" fill="rgb(251,22,52)" fg:x="52473" fg:w="1195"/><text x="10.3336%" y="751.50"></text></g><g><title>PhaseLive::compute (2,593 samples, 0.50%)</title><rect x="9.8172%" y="757" width="0.4983%" height="15" fill="rgb(229,209,22)" fg:x="51087" fg:w="2593"/><text x="10.0672%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (29,417 samples, 5.65%)</title><rect x="4.6845%" y="773" width="5.6530%" height="15" fill="rgb(234,138,34)" fg:x="24377" fg:w="29417"/><text x="4.9345%" y="783.50">PhaseCh..</text></g><g><title>Compile::Code_Gen (37,291 samples, 7.17%)</title><rect x="3.1834%" y="789" width="7.1661%" height="15" fill="rgb(212,95,11)" fg:x="16566" fg:w="37291"/><text x="3.4334%" y="799.50">Compile::C..</text></g><g><title>PhasePeephole::do_transform (59 samples, 0.01%)</title><rect x="10.3382%" y="773" width="0.0113%" height="15" fill="rgb(240,179,47)" fg:x="53798" fg:w="59"/><text x="10.5882%" y="783.50"></text></g><g><title>Parse::do_call (70 samples, 0.01%)</title><rect x="10.3866%" y="133" width="0.0135%" height="15" fill="rgb(240,163,11)" fg:x="54050" fg:w="70"/><text x="10.6366%" y="143.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.02%)</title><rect x="10.3849%" y="165" width="0.0244%" height="15" fill="rgb(236,37,12)" fg:x="54041" fg:w="127"/><text x="10.6349%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (125 samples, 0.02%)</title><rect x="10.3853%" y="149" width="0.0240%" height="15" fill="rgb(232,164,16)" fg:x="54043" fg:w="125"/><text x="10.6353%" y="159.50"></text></g><g><title>Parse::do_all_blocks (129 samples, 0.02%)</title><rect x="10.3849%" y="181" width="0.0248%" height="15" fill="rgb(244,205,15)" fg:x="54041" fg:w="129"/><text x="10.6349%" y="191.50"></text></g><g><title>ParseGenerator::generate (151 samples, 0.03%)</title><rect x="10.3820%" y="213" width="0.0290%" height="15" fill="rgb(223,117,47)" fg:x="54026" fg:w="151"/><text x="10.6320%" y="223.50"></text></g><g><title>Parse::Parse (151 samples, 0.03%)</title><rect x="10.3820%" y="197" width="0.0290%" height="15" fill="rgb(244,107,35)" fg:x="54026" fg:w="151"/><text x="10.6320%" y="207.50"></text></g><g><title>Parse::do_call (214 samples, 0.04%)</title><rect x="10.3757%" y="229" width="0.0411%" height="15" fill="rgb(205,140,8)" fg:x="53993" fg:w="214"/><text x="10.6257%" y="239.50"></text></g><g><title>Parse::do_all_blocks (280 samples, 0.05%)</title><rect x="10.3737%" y="277" width="0.0538%" height="15" fill="rgb(228,84,46)" fg:x="53983" fg:w="280"/><text x="10.6237%" y="287.50"></text></g><g><title>Parse::do_one_block (280 samples, 0.05%)</title><rect x="10.3737%" y="261" width="0.0538%" height="15" fill="rgb(254,188,9)" fg:x="53983" fg:w="280"/><text x="10.6237%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (278 samples, 0.05%)</title><rect x="10.3741%" y="245" width="0.0534%" height="15" fill="rgb(206,112,54)" fg:x="53985" fg:w="278"/><text x="10.6241%" y="255.50"></text></g><g><title>ParseGenerator::generate (301 samples, 0.06%)</title><rect x="10.3712%" y="309" width="0.0578%" height="15" fill="rgb(216,84,49)" fg:x="53970" fg:w="301"/><text x="10.6212%" y="319.50"></text></g><g><title>Parse::Parse (300 samples, 0.06%)</title><rect x="10.3714%" y="293" width="0.0577%" height="15" fill="rgb(214,194,35)" fg:x="53971" fg:w="300"/><text x="10.6214%" y="303.50"></text></g><g><title>Parse::do_call (385 samples, 0.07%)</title><rect x="10.3622%" y="325" width="0.0740%" height="15" fill="rgb(249,28,3)" fg:x="53923" fg:w="385"/><text x="10.6122%" y="335.50"></text></g><g><title>Parse::do_all_blocks (452 samples, 0.09%)</title><rect x="10.3611%" y="373" width="0.0869%" height="15" fill="rgb(222,56,52)" fg:x="53917" fg:w="452"/><text x="10.6111%" y="383.50"></text></g><g><title>Parse::do_one_block (452 samples, 0.09%)</title><rect x="10.3611%" y="357" width="0.0869%" height="15" fill="rgb(245,217,50)" fg:x="53917" fg:w="452"/><text x="10.6111%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (452 samples, 0.09%)</title><rect x="10.3611%" y="341" width="0.0869%" height="15" fill="rgb(213,201,24)" fg:x="53917" fg:w="452"/><text x="10.6111%" y="351.50"></text></g><g><title>ParseGenerator::generate (459 samples, 0.09%)</title><rect x="10.3599%" y="405" width="0.0882%" height="15" fill="rgb(248,116,28)" fg:x="53911" fg:w="459"/><text x="10.6099%" y="415.50"></text></g><g><title>Parse::Parse (459 samples, 0.09%)</title><rect x="10.3599%" y="389" width="0.0882%" height="15" fill="rgb(219,72,43)" fg:x="53911" fg:w="459"/><text x="10.6099%" y="399.50"></text></g><g><title>PredictedCallGenerator::generate (60 samples, 0.01%)</title><rect x="10.4481%" y="405" width="0.0115%" height="15" fill="rgb(209,138,14)" fg:x="54370" fg:w="60"/><text x="10.6981%" y="415.50"></text></g><g><title>Parse::do_call (548 samples, 0.11%)</title><rect x="10.3547%" y="421" width="0.1053%" height="15" fill="rgb(222,18,33)" fg:x="53884" fg:w="548"/><text x="10.6047%" y="431.50"></text></g><g><title>ParseGenerator::generate (555 samples, 0.11%)</title><rect x="10.3545%" y="501" width="0.1067%" height="15" fill="rgb(213,199,7)" fg:x="53883" fg:w="555"/><text x="10.6045%" y="511.50"></text></g><g><title>Parse::Parse (555 samples, 0.11%)</title><rect x="10.3545%" y="485" width="0.1067%" height="15" fill="rgb(250,110,10)" fg:x="53883" fg:w="555"/><text x="10.6045%" y="495.50"></text></g><g><title>Parse::do_all_blocks (554 samples, 0.11%)</title><rect x="10.3547%" y="469" width="0.1065%" height="15" fill="rgb(248,123,6)" fg:x="53884" fg:w="554"/><text x="10.6047%" y="479.50"></text></g><g><title>Parse::do_one_block (554 samples, 0.11%)</title><rect x="10.3547%" y="453" width="0.1065%" height="15" fill="rgb(206,91,31)" fg:x="53884" fg:w="554"/><text x="10.6047%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (554 samples, 0.11%)</title><rect x="10.3547%" y="437" width="0.1065%" height="15" fill="rgb(211,154,13)" fg:x="53884" fg:w="554"/><text x="10.6047%" y="447.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="10.4631%" y="309" width="0.0121%" height="15" fill="rgb(225,148,7)" fg:x="54448" fg:w="63"/><text x="10.7131%" y="319.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.02%)</title><rect x="10.4625%" y="341" width="0.0156%" height="15" fill="rgb(220,160,43)" fg:x="54445" fg:w="81"/><text x="10.7125%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="10.4627%" y="325" width="0.0154%" height="15" fill="rgb(213,52,39)" fg:x="54446" fg:w="80"/><text x="10.7127%" y="335.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.02%)</title><rect x="10.4623%" y="389" width="0.0159%" height="15" fill="rgb(243,137,7)" fg:x="54444" fg:w="83"/><text x="10.7123%" y="399.50"></text></g><g><title>Parse::Parse (83 samples, 0.02%)</title><rect x="10.4623%" y="373" width="0.0159%" height="15" fill="rgb(230,79,13)" fg:x="54444" fg:w="83"/><text x="10.7123%" y="383.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="10.4625%" y="357" width="0.0158%" height="15" fill="rgb(247,105,23)" fg:x="54445" fg:w="82"/><text x="10.7125%" y="367.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="10.4612%" y="405" width="0.0179%" height="15" fill="rgb(223,179,41)" fg:x="54438" fg:w="93"/><text x="10.7112%" y="415.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="10.4612%" y="485" width="0.0181%" height="15" fill="rgb(218,9,34)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="495.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="10.4612%" y="469" width="0.0181%" height="15" fill="rgb(222,106,8)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="479.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="10.4612%" y="453" width="0.0181%" height="15" fill="rgb(211,220,0)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="463.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="10.4612%" y="437" width="0.0181%" height="15" fill="rgb(229,52,16)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="10.4612%" y="421" width="0.0181%" height="15" fill="rgb(212,155,18)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="431.50"></text></g><g><title>Parse::do_call (678 samples, 0.13%)</title><rect x="10.3511%" y="517" width="0.1303%" height="15" fill="rgb(242,21,14)" fg:x="53865" fg:w="678"/><text x="10.6011%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (105 samples, 0.02%)</title><rect x="10.4612%" y="501" width="0.0202%" height="15" fill="rgb(222,19,48)" fg:x="54438" fg:w="105"/><text x="10.7112%" y="511.50"></text></g><g><title>ParseGenerator::generate (680 samples, 0.13%)</title><rect x="10.3509%" y="597" width="0.1307%" height="15" fill="rgb(232,45,27)" fg:x="53864" fg:w="680"/><text x="10.6009%" y="607.50"></text></g><g><title>Parse::Parse (680 samples, 0.13%)</title><rect x="10.3509%" y="581" width="0.1307%" height="15" fill="rgb(249,103,42)" fg:x="53864" fg:w="680"/><text x="10.6009%" y="591.50"></text></g><g><title>Parse::do_all_blocks (679 samples, 0.13%)</title><rect x="10.3511%" y="565" width="0.1305%" height="15" fill="rgb(246,81,33)" fg:x="53865" fg:w="679"/><text x="10.6011%" y="575.50"></text></g><g><title>Parse::do_one_block (679 samples, 0.13%)</title><rect x="10.3511%" y="549" width="0.1305%" height="15" fill="rgb(252,33,42)" fg:x="53865" fg:w="679"/><text x="10.6011%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (679 samples, 0.13%)</title><rect x="10.3511%" y="533" width="0.1305%" height="15" fill="rgb(209,212,41)" fg:x="53865" fg:w="679"/><text x="10.6011%" y="543.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.01%)</title><rect x="10.4837%" y="389" width="0.0125%" height="15" fill="rgb(207,154,6)" fg:x="54555" fg:w="65"/><text x="10.7337%" y="399.50"></text></g><g><title>Parse::Parse (65 samples, 0.01%)</title><rect x="10.4837%" y="373" width="0.0125%" height="15" fill="rgb(223,64,47)" fg:x="54555" fg:w="65"/><text x="10.7337%" y="383.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.01%)</title><rect x="10.4840%" y="357" width="0.0121%" height="15" fill="rgb(211,161,38)" fg:x="54557" fg:w="63"/><text x="10.7340%" y="367.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.01%)</title><rect x="10.4840%" y="341" width="0.0121%" height="15" fill="rgb(219,138,40)" fg:x="54557" fg:w="63"/><text x="10.7340%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.01%)</title><rect x="10.4840%" y="325" width="0.0121%" height="15" fill="rgb(241,228,46)" fg:x="54557" fg:w="63"/><text x="10.7340%" y="335.50"></text></g><g><title>Parse::do_call (98 samples, 0.02%)</title><rect x="10.4821%" y="405" width="0.0188%" height="15" fill="rgb(223,209,38)" fg:x="54547" fg:w="98"/><text x="10.7321%" y="415.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="10.4821%" y="485" width="0.0198%" height="15" fill="rgb(236,164,45)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="495.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="10.4821%" y="469" width="0.0198%" height="15" fill="rgb(231,15,5)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="479.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="10.4821%" y="453" width="0.0198%" height="15" fill="rgb(252,35,15)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="463.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="10.4821%" y="437" width="0.0198%" height="15" fill="rgb(248,181,18)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="10.4821%" y="421" width="0.0198%" height="15" fill="rgb(233,39,42)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="431.50"></text></g><g><title>ParseGenerator::generate (114 samples, 0.02%)</title><rect x="10.4816%" y="581" width="0.0219%" height="15" fill="rgb(238,110,33)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="591.50"></text></g><g><title>Parse::Parse (114 samples, 0.02%)</title><rect x="10.4816%" y="565" width="0.0219%" height="15" fill="rgb(233,195,10)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="575.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.02%)</title><rect x="10.4816%" y="549" width="0.0219%" height="15" fill="rgb(254,105,3)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="559.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.02%)</title><rect x="10.4816%" y="533" width="0.0219%" height="15" fill="rgb(221,225,9)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (114 samples, 0.02%)</title><rect x="10.4816%" y="517" width="0.0219%" height="15" fill="rgb(224,227,45)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="527.50"></text></g><g><title>Parse::do_call (114 samples, 0.02%)</title><rect x="10.4816%" y="501" width="0.0219%" height="15" fill="rgb(229,198,43)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="511.50"></text></g><g><title>ParseGenerator::generate (820 samples, 0.16%)</title><rect x="10.3505%" y="693" width="0.1576%" height="15" fill="rgb(206,209,35)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="703.50"></text></g><g><title>Parse::Parse (820 samples, 0.16%)</title><rect x="10.3505%" y="677" width="0.1576%" height="15" fill="rgb(245,195,53)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="687.50"></text></g><g><title>Parse::do_all_blocks (820 samples, 0.16%)</title><rect x="10.3505%" y="661" width="0.1576%" height="15" fill="rgb(240,92,26)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="671.50"></text></g><g><title>Parse::do_one_block (820 samples, 0.16%)</title><rect x="10.3505%" y="645" width="0.1576%" height="15" fill="rgb(207,40,23)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (820 samples, 0.16%)</title><rect x="10.3505%" y="629" width="0.1576%" height="15" fill="rgb(223,111,35)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="639.50"></text></g><g><title>Parse::do_call (820 samples, 0.16%)</title><rect x="10.3505%" y="613" width="0.1576%" height="15" fill="rgb(229,147,28)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (138 samples, 0.03%)</title><rect x="10.4816%" y="597" width="0.0265%" height="15" fill="rgb(211,29,28)" fg:x="54544" fg:w="138"/><text x="10.7316%" y="607.50"></text></g><g><title>Parse::do_call (67 samples, 0.01%)</title><rect x="10.5150%" y="309" width="0.0129%" height="15" fill="rgb(228,72,33)" fg:x="54718" fg:w="67"/><text x="10.7650%" y="319.50"></text></g><g><title>ParseGenerator::generate (98 samples, 0.02%)</title><rect x="10.5129%" y="389" width="0.0188%" height="15" fill="rgb(205,214,31)" fg:x="54707" fg:w="98"/><text x="10.7629%" y="399.50"></text></g><g><title>Parse::Parse (98 samples, 0.02%)</title><rect x="10.5129%" y="373" width="0.0188%" height="15" fill="rgb(224,111,15)" fg:x="54707" fg:w="98"/><text x="10.7629%" y="383.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="10.5133%" y="357" width="0.0184%" height="15" fill="rgb(253,21,26)" fg:x="54709" fg:w="96"/><text x="10.7633%" y="367.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="10.5133%" y="341" width="0.0184%" height="15" fill="rgb(245,139,43)" fg:x="54709" fg:w="96"/><text x="10.7633%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="10.5133%" y="325" width="0.0184%" height="15" fill="rgb(252,170,7)" fg:x="54709" fg:w="96"/><text x="10.7633%" y="335.50"></text></g><g><title>Parse::do_call (135 samples, 0.03%)</title><rect x="10.5111%" y="405" width="0.0259%" height="15" fill="rgb(231,118,14)" fg:x="54698" fg:w="135"/><text x="10.7611%" y="415.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="10.5110%" y="485" width="0.0275%" height="15" fill="rgb(238,83,0)" fg:x="54697" fg:w="143"/><text x="10.7610%" y="495.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="10.5110%" y="469" width="0.0275%" height="15" fill="rgb(221,39,39)" fg:x="54697" fg:w="143"/><text x="10.7610%" y="479.50"></text></g><g><title>Parse::do_all_blocks (142 samples, 0.03%)</title><rect x="10.5111%" y="453" width="0.0273%" height="15" fill="rgb(222,119,46)" fg:x="54698" fg:w="142"/><text x="10.7611%" y="463.50"></text></g><g><title>Parse::do_one_block (142 samples, 0.03%)</title><rect x="10.5111%" y="437" width="0.0273%" height="15" fill="rgb(222,165,49)" fg:x="54698" fg:w="142"/><text x="10.7611%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (142 samples, 0.03%)</title><rect x="10.5111%" y="421" width="0.0273%" height="15" fill="rgb(219,113,52)" fg:x="54698" fg:w="142"/><text x="10.7611%" y="431.50"></text></g><g><title>ParseGenerator::generate (160 samples, 0.03%)</title><rect x="10.5083%" y="581" width="0.0307%" height="15" fill="rgb(214,7,15)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="591.50"></text></g><g><title>Parse::Parse (160 samples, 0.03%)</title><rect x="10.5083%" y="565" width="0.0307%" height="15" fill="rgb(235,32,4)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="575.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.03%)</title><rect x="10.5083%" y="549" width="0.0307%" height="15" fill="rgb(238,90,54)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="559.50"></text></g><g><title>Parse::do_one_block (160 samples, 0.03%)</title><rect x="10.5083%" y="533" width="0.0307%" height="15" fill="rgb(213,208,19)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (160 samples, 0.03%)</title><rect x="10.5083%" y="517" width="0.0307%" height="15" fill="rgb(233,156,4)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="527.50"></text></g><g><title>Parse::do_call (160 samples, 0.03%)</title><rect x="10.5083%" y="501" width="0.0307%" height="15" fill="rgb(207,194,5)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="511.50"></text></g><g><title>ParseGenerator::generate (203 samples, 0.04%)</title><rect x="10.5081%" y="677" width="0.0390%" height="15" fill="rgb(206,111,30)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="687.50"></text></g><g><title>Parse::Parse (203 samples, 0.04%)</title><rect x="10.5081%" y="661" width="0.0390%" height="15" fill="rgb(243,70,54)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="671.50"></text></g><g><title>Parse::do_all_blocks (203 samples, 0.04%)</title><rect x="10.5081%" y="645" width="0.0390%" height="15" fill="rgb(242,28,8)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="655.50"></text></g><g><title>Parse::do_one_block (203 samples, 0.04%)</title><rect x="10.5081%" y="629" width="0.0390%" height="15" fill="rgb(219,106,18)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (203 samples, 0.04%)</title><rect x="10.5081%" y="613" width="0.0390%" height="15" fill="rgb(244,222,10)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="623.50"></text></g><g><title>Parse::do_call (203 samples, 0.04%)</title><rect x="10.5081%" y="597" width="0.0390%" height="15" fill="rgb(236,179,52)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,065 samples, 0.20%)</title><rect x="10.3505%" y="789" width="0.2047%" height="15" fill="rgb(213,23,39)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="799.50"></text></g><g><title>Parse::Parse (1,065 samples, 0.20%)</title><rect x="10.3505%" y="773" width="0.2047%" height="15" fill="rgb(238,48,10)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,065 samples, 0.20%)</title><rect x="10.3505%" y="757" width="0.2047%" height="15" fill="rgb(251,196,23)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="767.50"></text></g><g><title>Parse::do_one_block (1,065 samples, 0.20%)</title><rect x="10.3505%" y="741" width="0.2047%" height="15" fill="rgb(250,152,24)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,065 samples, 0.20%)</title><rect x="10.3505%" y="725" width="0.2047%" height="15" fill="rgb(209,150,17)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="735.50"></text></g><g><title>Parse::do_call (1,065 samples, 0.20%)</title><rect x="10.3505%" y="709" width="0.2047%" height="15" fill="rgb(234,202,34)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (245 samples, 0.05%)</title><rect x="10.5081%" y="693" width="0.0471%" height="15" fill="rgb(253,148,53)" fg:x="54682" fg:w="245"/><text x="10.7581%" y="703.50"></text></g><g><title>Compile::Compile (38,362 samples, 7.37%)</title><rect x="3.1834%" y="805" width="7.3719%" height="15" fill="rgb(218,129,16)" fg:x="16566" fg:w="38362"/><text x="3.4334%" y="815.50">Compile::C..</text></g><g><title>Compile::final_graph_reshaping_impl (99 samples, 0.02%)</title><rect x="10.5836%" y="757" width="0.0190%" height="15" fill="rgb(216,85,19)" fg:x="55075" fg:w="99"/><text x="10.8336%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (267 samples, 0.05%)</title><rect x="10.5557%" y="789" width="0.0513%" height="15" fill="rgb(235,228,7)" fg:x="54930" fg:w="267"/><text x="10.8057%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping_walk (260 samples, 0.05%)</title><rect x="10.5571%" y="773" width="0.0500%" height="15" fill="rgb(245,175,0)" fg:x="54937" fg:w="260"/><text x="10.8071%" y="783.50"></text></g><g><title>Compile::inline_incrementally_one (88 samples, 0.02%)</title><rect x="10.6070%" y="773" width="0.0169%" height="15" fill="rgb(208,168,36)" fg:x="55197" fg:w="88"/><text x="10.8570%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (76 samples, 0.01%)</title><rect x="10.6093%" y="757" width="0.0146%" height="15" fill="rgb(246,171,24)" fg:x="55209" fg:w="76"/><text x="10.8593%" y="767.50"></text></g><g><title>Compile::inline_incrementally (89 samples, 0.02%)</title><rect x="10.6070%" y="789" width="0.0171%" height="15" fill="rgb(215,142,24)" fg:x="55197" fg:w="89"/><text x="10.8570%" y="799.50"></text></g><g><title>Compile::remove_speculative_types (218 samples, 0.04%)</title><rect x="10.6263%" y="789" width="0.0419%" height="15" fill="rgb(250,187,7)" fg:x="55297" fg:w="218"/><text x="10.8763%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (92 samples, 0.02%)</title><rect x="10.6962%" y="757" width="0.0177%" height="15" fill="rgb(228,66,33)" fg:x="55661" fg:w="92"/><text x="10.9462%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (87 samples, 0.02%)</title><rect x="10.7143%" y="757" width="0.0167%" height="15" fill="rgb(234,215,21)" fg:x="55755" fg:w="87"/><text x="10.9643%" y="767.50"></text></g><g><title>ConnectionGraph::find_inst_mem (59 samples, 0.01%)</title><rect x="10.7358%" y="741" width="0.0113%" height="15" fill="rgb(222,191,20)" fg:x="55867" fg:w="59"/><text x="10.9858%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (86 samples, 0.02%)</title><rect x="10.7339%" y="757" width="0.0165%" height="15" fill="rgb(245,79,54)" fg:x="55857" fg:w="86"/><text x="10.9839%" y="767.50"></text></g><g><title>ConnectionGraph::compute_escape (432 samples, 0.08%)</title><rect x="10.6683%" y="773" width="0.0830%" height="15" fill="rgb(240,10,37)" fg:x="55516" fg:w="432"/><text x="10.9183%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (434 samples, 0.08%)</title><rect x="10.6681%" y="789" width="0.0834%" height="15" fill="rgb(214,192,32)" fg:x="55515" fg:w="434"/><text x="10.9181%" y="799.50"></text></g><g><title>PhaseCCP::analyze (670 samples, 0.13%)</title><rect x="10.7517%" y="789" width="0.1288%" height="15" fill="rgb(209,36,54)" fg:x="55950" fg:w="670"/><text x="11.0017%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (106 samples, 0.02%)</title><rect x="10.8989%" y="757" width="0.0204%" height="15" fill="rgb(220,10,11)" fg:x="56716" fg:w="106"/><text x="11.1489%" y="767.50"></text></g><g><title>PhaseCCP::do_transform (203 samples, 0.04%)</title><rect x="10.8805%" y="789" width="0.0390%" height="15" fill="rgb(221,106,17)" fg:x="56620" fg:w="203"/><text x="11.1305%" y="799.50"></text></g><g><title>PhaseCCP::transform (203 samples, 0.04%)</title><rect x="10.8805%" y="773" width="0.0390%" height="15" fill="rgb(251,142,44)" fg:x="56620" fg:w="203"/><text x="11.1305%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (53 samples, 0.01%)</title><rect x="10.9429%" y="693" width="0.0102%" height="15" fill="rgb(238,13,15)" fg:x="56945" fg:w="53"/><text x="11.1929%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (64 samples, 0.01%)</title><rect x="10.9424%" y="709" width="0.0123%" height="15" fill="rgb(208,107,27)" fg:x="56942" fg:w="64"/><text x="11.1924%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (86 samples, 0.02%)</title><rect x="10.9424%" y="725" width="0.0165%" height="15" fill="rgb(205,136,37)" fg:x="56942" fg:w="86"/><text x="11.1924%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (135 samples, 0.03%)</title><rect x="10.9424%" y="741" width="0.0259%" height="15" fill="rgb(250,205,27)" fg:x="56942" fg:w="135"/><text x="11.1924%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (176 samples, 0.03%)</title><rect x="10.9416%" y="757" width="0.0338%" height="15" fill="rgb(210,80,43)" fg:x="56938" fg:w="176"/><text x="11.1916%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (194 samples, 0.04%)</title><rect x="10.9406%" y="773" width="0.0373%" height="15" fill="rgb(247,160,36)" fg:x="56933" fg:w="194"/><text x="11.1906%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (54 samples, 0.01%)</title><rect x="10.9783%" y="757" width="0.0104%" height="15" fill="rgb(234,13,49)" fg:x="57129" fg:w="54"/><text x="11.2283%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (188 samples, 0.04%)</title><rect x="10.9779%" y="773" width="0.0361%" height="15" fill="rgb(234,122,0)" fg:x="57127" fg:w="188"/><text x="11.2279%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (132 samples, 0.03%)</title><rect x="10.9887%" y="757" width="0.0254%" height="15" fill="rgb(207,146,38)" fg:x="57183" fg:w="132"/><text x="11.2387%" y="767.50"></text></g><g><title>NTarjan::DFS (277 samples, 0.05%)</title><rect x="11.1489%" y="757" width="0.0532%" height="15" fill="rgb(207,177,25)" fg:x="58017" fg:w="277"/><text x="11.3989%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,002 samples, 0.19%)</title><rect x="11.0219%" y="773" width="0.1926%" height="15" fill="rgb(211,178,42)" fg:x="57356" fg:w="1002"/><text x="11.2719%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (144 samples, 0.03%)</title><rect x="11.4443%" y="725" width="0.0277%" height="15" fill="rgb(230,69,54)" fg:x="59554" fg:w="144"/><text x="11.6943%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (369 samples, 0.07%)</title><rect x="11.4015%" y="757" width="0.0709%" height="15" fill="rgb(214,135,41)" fg:x="59331" fg:w="369"/><text x="11.6515%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (326 samples, 0.06%)</title><rect x="11.4097%" y="741" width="0.0626%" height="15" fill="rgb(237,67,25)" fg:x="59374" fg:w="326"/><text x="11.6597%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,412 samples, 0.27%)</title><rect x="11.2145%" y="773" width="0.2713%" height="15" fill="rgb(222,189,50)" fg:x="58358" fg:w="1412"/><text x="11.4645%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (62 samples, 0.01%)</title><rect x="11.7985%" y="741" width="0.0119%" height="15" fill="rgb(245,148,34)" fg:x="61397" fg:w="62"/><text x="12.0485%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.01%)</title><rect x="11.8104%" y="741" width="0.0104%" height="15" fill="rgb(222,29,6)" fg:x="61459" fg:w="54"/><text x="12.0604%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (59 samples, 0.01%)</title><rect x="11.9059%" y="693" width="0.0113%" height="15" fill="rgb(221,189,43)" fg:x="61956" fg:w="59"/><text x="12.1559%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (213 samples, 0.04%)</title><rect x="11.8944%" y="709" width="0.0409%" height="15" fill="rgb(207,36,27)" fg:x="61896" fg:w="213"/><text x="12.1444%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (94 samples, 0.02%)</title><rect x="11.9172%" y="693" width="0.0181%" height="15" fill="rgb(217,90,24)" fg:x="62015" fg:w="94"/><text x="12.1672%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (324 samples, 0.06%)</title><rect x="11.8792%" y="725" width="0.0623%" height="15" fill="rgb(224,66,35)" fg:x="61817" fg:w="324"/><text x="12.1292%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (116 samples, 0.02%)</title><rect x="11.9418%" y="725" width="0.0223%" height="15" fill="rgb(221,13,50)" fg:x="62143" fg:w="116"/><text x="12.1918%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (338 samples, 0.06%)</title><rect x="12.1480%" y="709" width="0.0650%" height="15" fill="rgb(236,68,49)" fg:x="63216" fg:w="338"/><text x="12.3980%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,278 samples, 0.25%)</title><rect x="11.9680%" y="725" width="0.2456%" height="15" fill="rgb(229,146,28)" fg:x="62279" fg:w="1278"/><text x="12.2180%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,060 samples, 0.40%)</title><rect x="11.8208%" y="741" width="0.3959%" height="15" fill="rgb(225,31,38)" fg:x="61513" fg:w="2060"/><text x="12.0708%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (2,807 samples, 0.54%)</title><rect x="11.6916%" y="757" width="0.5394%" height="15" fill="rgb(250,208,3)" fg:x="60841" fg:w="2807"/><text x="11.9416%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (3,896 samples, 0.75%)</title><rect x="11.4858%" y="773" width="0.7487%" height="15" fill="rgb(246,54,23)" fg:x="59770" fg:w="3896"/><text x="11.7358%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (185 samples, 0.04%)</title><rect x="12.3346%" y="757" width="0.0356%" height="15" fill="rgb(243,76,11)" fg:x="64187" fg:w="185"/><text x="12.5846%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (714 samples, 0.14%)</title><rect x="12.2353%" y="773" width="0.1372%" height="15" fill="rgb(245,21,50)" fg:x="63670" fg:w="714"/><text x="12.4853%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (88 samples, 0.02%)</title><rect x="12.4559%" y="757" width="0.0169%" height="15" fill="rgb(228,9,43)" fg:x="64818" fg:w="88"/><text x="12.7059%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (219 samples, 0.04%)</title><rect x="12.4737%" y="757" width="0.0421%" height="15" fill="rgb(208,100,47)" fg:x="64911" fg:w="219"/><text x="12.7237%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (74 samples, 0.01%)</title><rect x="12.5598%" y="741" width="0.0142%" height="15" fill="rgb(232,26,8)" fg:x="65359" fg:w="74"/><text x="12.8098%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (135 samples, 0.03%)</title><rect x="12.5748%" y="741" width="0.0259%" height="15" fill="rgb(216,166,38)" fg:x="65437" fg:w="135"/><text x="12.8248%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (136 samples, 0.03%)</title><rect x="12.6008%" y="741" width="0.0261%" height="15" fill="rgb(251,202,51)" fg:x="65572" fg:w="136"/><text x="12.8508%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (614 samples, 0.12%)</title><rect x="12.5158%" y="757" width="0.1180%" height="15" fill="rgb(254,216,34)" fg:x="65130" fg:w="614"/><text x="12.7658%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,323 samples, 0.25%)</title><rect x="12.3800%" y="773" width="0.2542%" height="15" fill="rgb(251,32,27)" fg:x="64423" fg:w="1323"/><text x="12.6300%" y="783.50"></text></g><g><title>LoadNode::Ideal (76 samples, 0.01%)</title><rect x="12.7093%" y="741" width="0.0146%" height="15" fill="rgb(208,127,28)" fg:x="66137" fg:w="76"/><text x="12.9593%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (101 samples, 0.02%)</title><rect x="12.7357%" y="741" width="0.0194%" height="15" fill="rgb(224,137,22)" fg:x="66274" fg:w="101"/><text x="12.9857%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (92 samples, 0.02%)</title><rect x="12.7653%" y="741" width="0.0177%" height="15" fill="rgb(254,70,32)" fg:x="66428" fg:w="92"/><text x="13.0153%" y="751.50"></text></g><g><title>PhiNode::Ideal (54 samples, 0.01%)</title><rect x="12.7831%" y="741" width="0.0104%" height="15" fill="rgb(229,75,37)" fg:x="66521" fg:w="54"/><text x="13.0331%" y="751.50"></text></g><g><title>RegionNode::Ideal (168 samples, 0.03%)</title><rect x="12.8035%" y="741" width="0.0323%" height="15" fill="rgb(252,64,23)" fg:x="66627" fg:w="168"/><text x="13.0535%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (81 samples, 0.02%)</title><rect x="12.8202%" y="725" width="0.0156%" height="15" fill="rgb(232,162,48)" fg:x="66714" fg:w="81"/><text x="13.0702%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (1,106 samples, 0.21%)</title><rect x="12.6407%" y="757" width="0.2125%" height="15" fill="rgb(246,160,12)" fg:x="65780" fg:w="1106"/><text x="12.8907%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (1,143 samples, 0.22%)</title><rect x="12.6344%" y="773" width="0.2196%" height="15" fill="rgb(247,166,0)" fg:x="65747" fg:w="1143"/><text x="12.8844%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (10,143 samples, 1.95%)</title><rect x="10.9228%" y="789" width="1.9491%" height="15" fill="rgb(249,219,21)" fg:x="56840" fg:w="10143"/><text x="11.1728%" y="799.50">P..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (108 samples, 0.02%)</title><rect x="12.8719%" y="789" width="0.0208%" height="15" fill="rgb(205,209,3)" fg:x="66983" fg:w="108"/><text x="13.1219%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (58 samples, 0.01%)</title><rect x="12.8815%" y="773" width="0.0111%" height="15" fill="rgb(243,44,1)" fg:x="67033" fg:w="58"/><text x="13.1315%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.01%)</title><rect x="12.9832%" y="725" width="0.0144%" height="15" fill="rgb(206,159,16)" fg:x="67562" fg:w="75"/><text x="13.2332%" y="735.50"></text></g><g><title>Unique_Node_List::remove (65 samples, 0.01%)</title><rect x="12.9851%" y="709" width="0.0125%" height="15" fill="rgb(244,77,30)" fg:x="67572" fg:w="65"/><text x="13.2351%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (92 samples, 0.02%)</title><rect x="12.9805%" y="741" width="0.0177%" height="15" fill="rgb(218,69,12)" fg:x="67548" fg:w="92"/><text x="13.2305%" y="751.50"></text></g><g><title>IfNode::Ideal (298 samples, 0.06%)</title><rect x="12.9565%" y="757" width="0.0573%" height="15" fill="rgb(212,87,7)" fg:x="67423" fg:w="298"/><text x="13.2065%" y="767.50"></text></g><g><title>split_if (74 samples, 0.01%)</title><rect x="12.9995%" y="741" width="0.0142%" height="15" fill="rgb(245,114,25)" fg:x="67647" fg:w="74"/><text x="13.2495%" y="751.50"></text></g><g><title>MemNode::find_previous_store (61 samples, 0.01%)</title><rect x="13.0378%" y="741" width="0.0117%" height="15" fill="rgb(210,61,42)" fg:x="67846" fg:w="61"/><text x="13.2878%" y="751.50"></text></g><g><title>LoadNode::Ideal (152 samples, 0.03%)</title><rect x="13.0205%" y="757" width="0.0292%" height="15" fill="rgb(211,52,33)" fg:x="67756" fg:w="152"/><text x="13.2705%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (157 samples, 0.03%)</title><rect x="13.0710%" y="757" width="0.0302%" height="15" fill="rgb(234,58,33)" fg:x="68019" fg:w="157"/><text x="13.3210%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (60 samples, 0.01%)</title><rect x="13.1267%" y="741" width="0.0115%" height="15" fill="rgb(220,115,36)" fg:x="68309" fg:w="60"/><text x="13.3767%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (170 samples, 0.03%)</title><rect x="13.1108%" y="757" width="0.0327%" height="15" fill="rgb(243,153,54)" fg:x="68226" fg:w="170"/><text x="13.3608%" y="767.50"></text></g><g><title>PhiNode::Ideal (103 samples, 0.02%)</title><rect x="13.1436%" y="757" width="0.0198%" height="15" fill="rgb(251,47,18)" fg:x="68397" fg:w="103"/><text x="13.3936%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (99 samples, 0.02%)</title><rect x="13.1974%" y="725" width="0.0190%" height="15" fill="rgb(242,102,42)" fg:x="68677" fg:w="99"/><text x="13.4474%" y="735.50"></text></g><g><title>Unique_Node_List::remove (86 samples, 0.02%)</title><rect x="13.1999%" y="709" width="0.0165%" height="15" fill="rgb(234,31,38)" fg:x="68690" fg:w="86"/><text x="13.4499%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (120 samples, 0.02%)</title><rect x="13.1946%" y="741" width="0.0231%" height="15" fill="rgb(221,117,51)" fg:x="68662" fg:w="120"/><text x="13.4446%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (81 samples, 0.02%)</title><rect x="13.2232%" y="741" width="0.0156%" height="15" fill="rgb(212,20,18)" fg:x="68811" fg:w="81"/><text x="13.4732%" y="751.50"></text></g><g><title>RegionNode::Ideal (308 samples, 0.06%)</title><rect x="13.1807%" y="757" width="0.0592%" height="15" fill="rgb(245,133,36)" fg:x="68590" fg:w="308"/><text x="13.4307%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="13.2430%" y="517" width="0.0117%" height="15" fill="rgb(212,6,19)" fg:x="68914" fg:w="61"/><text x="13.4930%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="13.2430%" y="533" width="0.0131%" height="15" fill="rgb(218,1,36)" fg:x="68914" fg:w="68"/><text x="13.4930%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (73 samples, 0.01%)</title><rect x="13.2430%" y="549" width="0.0140%" height="15" fill="rgb(246,84,54)" fg:x="68914" fg:w="73"/><text x="13.4930%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (82 samples, 0.02%)</title><rect x="13.2430%" y="565" width="0.0158%" height="15" fill="rgb(242,110,6)" fg:x="68914" fg:w="82"/><text x="13.4930%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (91 samples, 0.02%)</title><rect x="13.2430%" y="581" width="0.0175%" height="15" fill="rgb(214,47,5)" fg:x="68914" fg:w="91"/><text x="13.4930%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (100 samples, 0.02%)</title><rect x="13.2430%" y="597" width="0.0192%" height="15" fill="rgb(218,159,25)" fg:x="68914" fg:w="100"/><text x="13.4930%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (110 samples, 0.02%)</title><rect x="13.2430%" y="613" width="0.0211%" height="15" fill="rgb(215,211,28)" fg:x="68914" fg:w="110"/><text x="13.4930%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (119 samples, 0.02%)</title><rect x="13.2430%" y="629" width="0.0229%" height="15" fill="rgb(238,59,32)" fg:x="68914" fg:w="119"/><text x="13.4930%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (130 samples, 0.02%)</title><rect x="13.2428%" y="645" width="0.0250%" height="15" fill="rgb(226,82,3)" fg:x="68913" fg:w="130"/><text x="13.4928%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (141 samples, 0.03%)</title><rect x="13.2428%" y="661" width="0.0271%" height="15" fill="rgb(240,164,32)" fg:x="68913" fg:w="141"/><text x="13.4928%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.03%)</title><rect x="13.2428%" y="677" width="0.0288%" height="15" fill="rgb(232,46,7)" fg:x="68913" fg:w="150"/><text x="13.4928%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (159 samples, 0.03%)</title><rect x="13.2428%" y="693" width="0.0306%" height="15" fill="rgb(229,129,53)" fg:x="68913" fg:w="159"/><text x="13.4928%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (175 samples, 0.03%)</title><rect x="13.2428%" y="709" width="0.0336%" height="15" fill="rgb(234,188,29)" fg:x="68913" fg:w="175"/><text x="13.4928%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (178 samples, 0.03%)</title><rect x="13.2428%" y="741" width="0.0342%" height="15" fill="rgb(246,141,4)" fg:x="68913" fg:w="178"/><text x="13.4928%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (178 samples, 0.03%)</title><rect x="13.2428%" y="725" width="0.0342%" height="15" fill="rgb(229,23,39)" fg:x="68913" fg:w="178"/><text x="13.4928%" y="735.50"></text></g><g><title>StoreNode::Ideal (207 samples, 0.04%)</title><rect x="13.2426%" y="757" width="0.0398%" height="15" fill="rgb(206,12,3)" fg:x="68912" fg:w="207"/><text x="13.4926%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (1,997 samples, 0.38%)</title><rect x="12.9071%" y="773" width="0.3838%" height="15" fill="rgb(252,226,20)" fg:x="67166" fg:w="1997"/><text x="13.1571%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (2,087 samples, 0.40%)</title><rect x="12.8927%" y="789" width="0.4011%" height="15" fill="rgb(216,123,35)" fg:x="67091" fg:w="2087"/><text x="13.1427%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (221 samples, 0.04%)</title><rect x="13.3008%" y="757" width="0.0425%" height="15" fill="rgb(212,68,40)" fg:x="69215" fg:w="221"/><text x="13.5508%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (233 samples, 0.04%)</title><rect x="13.2989%" y="773" width="0.0448%" height="15" fill="rgb(254,125,32)" fg:x="69205" fg:w="233"/><text x="13.5489%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (75 samples, 0.01%)</title><rect x="13.3450%" y="773" width="0.0144%" height="15" fill="rgb(253,97,22)" fg:x="69445" fg:w="75"/><text x="13.5950%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (348 samples, 0.07%)</title><rect x="13.2983%" y="789" width="0.0669%" height="15" fill="rgb(241,101,14)" fg:x="69202" fg:w="348"/><text x="13.5483%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (64 samples, 0.01%)</title><rect x="13.3692%" y="757" width="0.0123%" height="15" fill="rgb(238,103,29)" fg:x="69571" fg:w="64"/><text x="13.6192%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (135 samples, 0.03%)</title><rect x="13.3669%" y="773" width="0.0259%" height="15" fill="rgb(233,195,47)" fg:x="69559" fg:w="135"/><text x="13.6169%" y="783.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (146 samples, 0.03%)</title><rect x="13.3652%" y="789" width="0.0281%" height="15" fill="rgb(246,218,30)" fg:x="69550" fg:w="146"/><text x="13.6152%" y="799.50"></text></g><g><title>Compile::Optimize (14,777 samples, 2.84%)</title><rect x="10.5553%" y="805" width="2.8397%" height="15" fill="rgb(219,145,47)" fg:x="54928" fg:w="14777"/><text x="10.8053%" y="815.50">Co..</text></g><g><title>Parse::do_one_block (134 samples, 0.03%)</title><rect x="13.3985%" y="693" width="0.0258%" height="15" fill="rgb(243,12,26)" fg:x="69723" fg:w="134"/><text x="13.6485%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.02%)</title><rect x="13.4006%" y="677" width="0.0236%" height="15" fill="rgb(214,87,16)" fg:x="69734" fg:w="123"/><text x="13.6506%" y="687.50"></text></g><g><title>Parse::do_all_blocks (139 samples, 0.03%)</title><rect x="13.3985%" y="709" width="0.0267%" height="15" fill="rgb(208,99,42)" fg:x="69723" fg:w="139"/><text x="13.6485%" y="719.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.03%)</title><rect x="13.3985%" y="741" width="0.0271%" height="15" fill="rgb(253,99,2)" fg:x="69723" fg:w="141"/><text x="13.6485%" y="751.50"></text></g><g><title>Parse::Parse (141 samples, 0.03%)</title><rect x="13.3985%" y="725" width="0.0271%" height="15" fill="rgb(220,168,23)" fg:x="69723" fg:w="141"/><text x="13.6485%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (167 samples, 0.03%)</title><rect x="13.3963%" y="805" width="0.0321%" height="15" fill="rgb(242,38,24)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (167 samples, 0.03%)</title><rect x="13.3963%" y="789" width="0.0321%" height="15" fill="rgb(225,182,9)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="799.50"></text></g><g><title>C2Compiler::compile_method (167 samples, 0.03%)</title><rect x="13.3963%" y="773" width="0.0321%" height="15" fill="rgb(243,178,37)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="783.50"></text></g><g><title>Compile::Compile (167 samples, 0.03%)</title><rect x="13.3963%" y="757" width="0.0321%" height="15" fill="rgb(232,139,19)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="767.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (53 samples, 0.01%)</title><rect x="13.4348%" y="629" width="0.0102%" height="15" fill="rgb(225,201,24)" fg:x="69912" fg:w="53"/><text x="13.6848%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.01%)</title><rect x="13.4348%" y="613" width="0.0102%" height="15" fill="rgb(221,47,46)" fg:x="69912" fg:w="53"/><text x="13.6848%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (89 samples, 0.02%)</title><rect x="13.4284%" y="677" width="0.0171%" height="15" fill="rgb(249,23,13)" fg:x="69879" fg:w="89"/><text x="13.6784%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (89 samples, 0.02%)</title><rect x="13.4284%" y="661" width="0.0171%" height="15" fill="rgb(219,9,5)" fg:x="69879" fg:w="89"/><text x="13.6784%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (89 samples, 0.02%)</title><rect x="13.4284%" y="645" width="0.0171%" height="15" fill="rgb(254,171,16)" fg:x="69879" fg:w="89"/><text x="13.6784%" y="655.50"></text></g><g><title>CallGenerator::for_inline (92 samples, 0.02%)</title><rect x="13.4284%" y="757" width="0.0177%" height="15" fill="rgb(230,171,20)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (92 samples, 0.02%)</title><rect x="13.4284%" y="741" width="0.0177%" height="15" fill="rgb(210,71,41)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (92 samples, 0.02%)</title><rect x="13.4284%" y="725" width="0.0177%" height="15" fill="rgb(206,173,20)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (92 samples, 0.02%)</title><rect x="13.4284%" y="709" width="0.0177%" height="15" fill="rgb(233,88,34)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (92 samples, 0.02%)</title><rect x="13.4284%" y="693" width="0.0177%" height="15" fill="rgb(223,209,46)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="703.50"></text></g><g><title>Compile::call_generator (55 samples, 0.01%)</title><rect x="13.4536%" y="661" width="0.0106%" height="15" fill="rgb(250,43,18)" fg:x="70010" fg:w="55"/><text x="13.7036%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.02%)</title><rect x="13.4859%" y="597" width="0.0190%" height="15" fill="rgb(208,13,10)" fg:x="70178" fg:w="99"/><text x="13.7359%" y="607.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="13.4840%" y="613" width="0.0211%" height="15" fill="rgb(212,200,36)" fg:x="70168" fg:w="110"/><text x="13.7340%" y="623.50"></text></g><g><title>Parse::do_all_blocks (119 samples, 0.02%)</title><rect x="13.4834%" y="629" width="0.0229%" height="15" fill="rgb(225,90,30)" fg:x="70165" fg:w="119"/><text x="13.7334%" y="639.50"></text></g><g><title>ParseGenerator::generate (178 samples, 0.03%)</title><rect x="13.4770%" y="661" width="0.0342%" height="15" fill="rgb(236,182,39)" fg:x="70132" fg:w="178"/><text x="13.7270%" y="671.50"></text></g><g><title>Parse::Parse (177 samples, 0.03%)</title><rect x="13.4772%" y="645" width="0.0340%" height="15" fill="rgb(212,144,35)" fg:x="70133" fg:w="177"/><text x="13.7272%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (61 samples, 0.01%)</title><rect x="13.5113%" y="661" width="0.0117%" height="15" fill="rgb(228,63,44)" fg:x="70310" fg:w="61"/><text x="13.7613%" y="671.50"></text></g><g><title>Parse::do_call (389 samples, 0.07%)</title><rect x="13.4536%" y="677" width="0.0748%" height="15" fill="rgb(228,109,6)" fg:x="70010" fg:w="389"/><text x="13.7036%" y="687.50"></text></g><g><title>Parse::do_field_access (88 samples, 0.02%)</title><rect x="13.5305%" y="677" width="0.0169%" height="15" fill="rgb(238,117,24)" fg:x="70410" fg:w="88"/><text x="13.7805%" y="687.50"></text></g><g><title>Parse::do_one_block (569 samples, 0.11%)</title><rect x="13.4476%" y="709" width="0.1093%" height="15" fill="rgb(242,26,26)" fg:x="69979" fg:w="569"/><text x="13.6976%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (564 samples, 0.11%)</title><rect x="13.4486%" y="693" width="0.1084%" height="15" fill="rgb(221,92,48)" fg:x="69984" fg:w="564"/><text x="13.6986%" y="703.50"></text></g><g><title>Parse::do_all_blocks (572 samples, 0.11%)</title><rect x="13.4475%" y="725" width="0.1099%" height="15" fill="rgb(209,209,32)" fg:x="69978" fg:w="572"/><text x="13.6975%" y="735.50"></text></g><g><title>ParseGenerator::generate (580 samples, 0.11%)</title><rect x="13.4475%" y="757" width="0.1115%" height="15" fill="rgb(221,70,22)" fg:x="69978" fg:w="580"/><text x="13.6975%" y="767.50"></text></g><g><title>Parse::Parse (580 samples, 0.11%)</title><rect x="13.4475%" y="741" width="0.1115%" height="15" fill="rgb(248,145,5)" fg:x="69978" fg:w="580"/><text x="13.6975%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (704 samples, 0.14%)</title><rect x="13.4284%" y="805" width="0.1353%" height="15" fill="rgb(226,116,26)" fg:x="69879" fg:w="704"/><text x="13.6784%" y="815.50"></text></g><g><title>C2Compiler::compile_method (704 samples, 0.14%)</title><rect x="13.4284%" y="789" width="0.1353%" height="15" fill="rgb(244,5,17)" fg:x="69879" fg:w="704"/><text x="13.6784%" y="799.50"></text></g><g><title>Compile::Compile (704 samples, 0.14%)</title><rect x="13.4284%" y="773" width="0.1353%" height="15" fill="rgb(252,159,33)" fg:x="69879" fg:w="704"/><text x="13.6784%" y="783.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="13.5739%" y="677" width="0.0104%" height="15" fill="rgb(206,71,0)" fg:x="70636" fg:w="54"/><text x="13.8239%" y="687.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.01%)</title><rect x="13.5735%" y="693" width="0.0119%" height="15" fill="rgb(233,118,54)" fg:x="70634" fg:w="62"/><text x="13.8235%" y="703.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="13.5731%" y="725" width="0.0136%" height="15" fill="rgb(234,83,48)" fg:x="70632" fg:w="71"/><text x="13.8231%" y="735.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="13.5731%" y="709" width="0.0136%" height="15" fill="rgb(228,3,54)" fg:x="70632" fg:w="71"/><text x="13.8231%" y="719.50"></text></g><g><title>JavaThread::thread_main_inner (95 samples, 0.02%)</title><rect x="13.5706%" y="805" width="0.0183%" height="15" fill="rgb(226,155,13)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (95 samples, 0.02%)</title><rect x="13.5706%" y="789" width="0.0183%" height="15" fill="rgb(241,28,37)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (95 samples, 0.02%)</title><rect x="13.5706%" y="773" width="0.0183%" height="15" fill="rgb(233,93,10)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="783.50"></text></g><g><title>C2Compiler::compile_method (95 samples, 0.02%)</title><rect x="13.5706%" y="757" width="0.0183%" height="15" fill="rgb(225,113,19)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="767.50"></text></g><g><title>Compile::Compile (95 samples, 0.02%)</title><rect x="13.5706%" y="741" width="0.0183%" height="15" fill="rgb(241,2,18)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="751.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="13.6085%" y="693" width="0.0110%" height="15" fill="rgb(228,207,21)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="703.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="13.6085%" y="677" width="0.0110%" height="15" fill="rgb(213,211,35)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="687.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="13.6085%" y="661" width="0.0110%" height="15" fill="rgb(209,83,10)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="671.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.01%)</title><rect x="13.6085%" y="645" width="0.0110%" height="15" fill="rgb(209,164,1)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.01%)</title><rect x="13.6085%" y="629" width="0.0110%" height="15" fill="rgb(213,184,43)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="639.50"></text></g><g><title>Parse::do_call (57 samples, 0.01%)</title><rect x="13.6085%" y="613" width="0.0110%" height="15" fill="rgb(231,61,34)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="623.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="13.6085%" y="789" width="0.0135%" height="15" fill="rgb(235,75,3)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="799.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="13.6085%" y="773" width="0.0135%" height="15" fill="rgb(220,106,47)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="783.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.01%)</title><rect x="13.6085%" y="757" width="0.0135%" height="15" fill="rgb(210,196,33)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="767.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.01%)</title><rect x="13.6085%" y="741" width="0.0135%" height="15" fill="rgb(229,154,42)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.01%)</title><rect x="13.6085%" y="725" width="0.0135%" height="15" fill="rgb(228,114,26)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="735.50"></text></g><g><title>Parse::do_call (70 samples, 0.01%)</title><rect x="13.6085%" y="709" width="0.0135%" height="15" fill="rgb(208,144,1)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="719.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="13.6085%" y="805" width="0.0158%" height="15" fill="rgb(239,112,37)" fg:x="70816" fg:w="82"/><text x="13.8585%" y="815.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.01%)</title><rect x="13.6396%" y="229" width="0.0102%" height="15" fill="rgb(210,96,50)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="239.50"></text></g><g><title>Parse::Parse (53 samples, 0.01%)</title><rect x="13.6396%" y="213" width="0.0102%" height="15" fill="rgb(222,178,2)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="223.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="13.6396%" y="197" width="0.0102%" height="15" fill="rgb(226,74,18)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="207.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="13.6396%" y="181" width="0.0102%" height="15" fill="rgb(225,67,54)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="13.6396%" y="165" width="0.0102%" height="15" fill="rgb(251,92,32)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="175.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="13.6389%" y="325" width="0.0129%" height="15" fill="rgb(228,149,22)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="335.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="13.6389%" y="309" width="0.0129%" height="15" fill="rgb(243,54,13)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="319.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.01%)</title><rect x="13.6389%" y="293" width="0.0129%" height="15" fill="rgb(243,180,28)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="303.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.01%)</title><rect x="13.6389%" y="277" width="0.0129%" height="15" fill="rgb(208,167,24)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.01%)</title><rect x="13.6389%" y="261" width="0.0129%" height="15" fill="rgb(245,73,45)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="271.50"></text></g><g><title>Parse::do_call (67 samples, 0.01%)</title><rect x="13.6389%" y="245" width="0.0129%" height="15" fill="rgb(237,203,48)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="255.50"></text></g><g><title>ParseGenerator::generate (78 samples, 0.01%)</title><rect x="13.6381%" y="421" width="0.0150%" height="15" fill="rgb(211,197,16)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="431.50"></text></g><g><title>Parse::Parse (78 samples, 0.01%)</title><rect x="13.6381%" y="405" width="0.0150%" height="15" fill="rgb(243,99,51)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="415.50"></text></g><g><title>Parse::do_all_blocks (78 samples, 0.01%)</title><rect x="13.6381%" y="389" width="0.0150%" height="15" fill="rgb(215,123,29)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="399.50"></text></g><g><title>Parse::do_one_block (78 samples, 0.01%)</title><rect x="13.6381%" y="373" width="0.0150%" height="15" fill="rgb(239,186,37)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (78 samples, 0.01%)</title><rect x="13.6381%" y="357" width="0.0150%" height="15" fill="rgb(252,136,39)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="367.50"></text></g><g><title>Parse::do_call (78 samples, 0.01%)</title><rect x="13.6381%" y="341" width="0.0150%" height="15" fill="rgb(223,213,32)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="351.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="13.6381%" y="517" width="0.0198%" height="15" fill="rgb(233,115,5)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="527.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="13.6381%" y="501" width="0.0198%" height="15" fill="rgb(207,226,44)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="511.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="13.6381%" y="485" width="0.0198%" height="15" fill="rgb(208,126,0)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="495.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="13.6381%" y="469" width="0.0198%" height="15" fill="rgb(244,66,21)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="13.6381%" y="453" width="0.0198%" height="15" fill="rgb(222,97,12)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="463.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="13.6381%" y="437" width="0.0198%" height="15" fill="rgb(219,213,19)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="447.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.02%)</title><rect x="13.6381%" y="613" width="0.0233%" height="15" fill="rgb(252,169,30)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="623.50"></text></g><g><title>Parse::Parse (121 samples, 0.02%)</title><rect x="13.6381%" y="597" width="0.0233%" height="15" fill="rgb(206,32,51)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="607.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.02%)</title><rect x="13.6381%" y="581" width="0.0233%" height="15" fill="rgb(250,172,42)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="591.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.02%)</title><rect x="13.6381%" y="565" width="0.0233%" height="15" fill="rgb(209,34,43)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.02%)</title><rect x="13.6381%" y="549" width="0.0233%" height="15" fill="rgb(223,11,35)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="559.50"></text></g><g><title>Parse::do_call (121 samples, 0.02%)</title><rect x="13.6381%" y="533" width="0.0233%" height="15" fill="rgb(251,219,26)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="543.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.03%)</title><rect x="13.6381%" y="709" width="0.0288%" height="15" fill="rgb(231,119,3)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="719.50"></text></g><g><title>Parse::Parse (150 samples, 0.03%)</title><rect x="13.6381%" y="693" width="0.0288%" height="15" fill="rgb(216,97,11)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="703.50"></text></g><g><title>Parse::do_all_blocks (150 samples, 0.03%)</title><rect x="13.6381%" y="677" width="0.0288%" height="15" fill="rgb(223,59,9)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="687.50"></text></g><g><title>Parse::do_one_block (150 samples, 0.03%)</title><rect x="13.6381%" y="661" width="0.0288%" height="15" fill="rgb(233,93,31)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.03%)</title><rect x="13.6381%" y="645" width="0.0288%" height="15" fill="rgb(239,81,33)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="655.50"></text></g><g><title>Parse::do_call (150 samples, 0.03%)</title><rect x="13.6381%" y="629" width="0.0288%" height="15" fill="rgb(213,120,34)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="639.50"></text></g><g><title>ParseGenerator::generate (196 samples, 0.04%)</title><rect x="13.6379%" y="805" width="0.0377%" height="15" fill="rgb(243,49,53)" fg:x="70969" fg:w="196"/><text x="13.8879%" y="815.50"></text></g><g><title>Parse::Parse (195 samples, 0.04%)</title><rect x="13.6381%" y="789" width="0.0375%" height="15" fill="rgb(247,216,33)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="799.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.04%)</title><rect x="13.6381%" y="773" width="0.0375%" height="15" fill="rgb(226,26,14)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="783.50"></text></g><g><title>Parse::do_one_block (195 samples, 0.04%)</title><rect x="13.6381%" y="757" width="0.0375%" height="15" fill="rgb(215,49,53)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (195 samples, 0.04%)</title><rect x="13.6381%" y="741" width="0.0375%" height="15" fill="rgb(245,162,40)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="751.50"></text></g><g><title>Parse::do_call (195 samples, 0.04%)</title><rect x="13.6381%" y="725" width="0.0375%" height="15" fill="rgb(229,68,17)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="735.50"></text></g><g><title>Thread::call_run (75 samples, 0.01%)</title><rect x="13.6840%" y="805" width="0.0144%" height="15" fill="rgb(213,182,10)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (75 samples, 0.01%)</title><rect x="13.6840%" y="789" width="0.0144%" height="15" fill="rgb(245,125,30)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (75 samples, 0.01%)</title><rect x="13.6840%" y="773" width="0.0144%" height="15" fill="rgb(232,202,2)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (75 samples, 0.01%)</title><rect x="13.6840%" y="757" width="0.0144%" height="15" fill="rgb(237,140,51)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="767.50"></text></g><g><title>C2Compiler::compile_method (75 samples, 0.01%)</title><rect x="13.6840%" y="741" width="0.0144%" height="15" fill="rgb(236,157,25)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="751.50"></text></g><g><title>Compile::Compile (75 samples, 0.01%)</title><rect x="13.6840%" y="725" width="0.0144%" height="15" fill="rgb(219,209,0)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="735.50"></text></g><g><title>start_thread (64 samples, 0.01%)</title><rect x="13.7130%" y="805" width="0.0123%" height="15" fill="rgb(240,116,54)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="815.50"></text></g><g><title>thread_native_entry (64 samples, 0.01%)</title><rect x="13.7130%" y="789" width="0.0123%" height="15" fill="rgb(216,10,36)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="799.50"></text></g><g><title>Thread::call_run (64 samples, 0.01%)</title><rect x="13.7130%" y="773" width="0.0123%" height="15" fill="rgb(222,72,44)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (64 samples, 0.01%)</title><rect x="13.7130%" y="757" width="0.0123%" height="15" fill="rgb(232,159,9)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (64 samples, 0.01%)</title><rect x="13.7130%" y="741" width="0.0123%" height="15" fill="rgb(210,39,32)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (64 samples, 0.01%)</title><rect x="13.7130%" y="725" width="0.0123%" height="15" fill="rgb(216,194,45)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="735.50"></text></g><g><title>C2Compiler::compile_method (64 samples, 0.01%)</title><rect x="13.7130%" y="709" width="0.0123%" height="15" fill="rgb(218,18,35)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="719.50"></text></g><g><title>Compile::Compile (64 samples, 0.01%)</title><rect x="13.7130%" y="693" width="0.0123%" height="15" fill="rgb(207,83,51)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="703.50"></text></g><g><title>[unknown] (57,305 samples, 11.01%)</title><rect x="2.7172%" y="821" width="11.0121%" height="15" fill="rgb(225,63,43)" fg:x="14140" fg:w="57305"/><text x="2.9672%" y="831.50">[unknown]</text></g><g><title>Dict::Insert (59 samples, 0.01%)</title><rect x="13.7501%" y="645" width="0.0113%" height="15" fill="rgb(207,57,36)" fg:x="71553" fg:w="59"/><text x="14.0001%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (76 samples, 0.01%)</title><rect x="13.7497%" y="677" width="0.0146%" height="15" fill="rgb(216,99,33)" fg:x="71551" fg:w="76"/><text x="13.9997%" y="687.50"></text></g><g><title>Type::Initialize (76 samples, 0.01%)</title><rect x="13.7497%" y="661" width="0.0146%" height="15" fill="rgb(225,42,16)" fg:x="71551" fg:w="76"/><text x="13.9997%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (175 samples, 0.03%)</title><rect x="13.7724%" y="661" width="0.0336%" height="15" fill="rgb(220,201,45)" fg:x="71669" fg:w="175"/><text x="14.0224%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (177 samples, 0.03%)</title><rect x="13.8060%" y="661" width="0.0340%" height="15" fill="rgb(225,33,4)" fg:x="71844" fg:w="177"/><text x="14.0560%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (433 samples, 0.08%)</title><rect x="13.7661%" y="677" width="0.0832%" height="15" fill="rgb(224,33,50)" fg:x="71636" fg:w="433"/><text x="14.0161%" y="687.50"></text></g><g><title>C2Compiler::compile_method (645 samples, 0.12%)</title><rect x="13.7369%" y="709" width="0.1239%" height="15" fill="rgb(246,198,51)" fg:x="71484" fg:w="645"/><text x="13.9869%" y="719.50"></text></g><g><title>Compile::Compile (641 samples, 0.12%)</title><rect x="13.7376%" y="693" width="0.1232%" height="15" fill="rgb(205,22,4)" fg:x="71488" fg:w="641"/><text x="13.9876%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (775 samples, 0.15%)</title><rect x="13.7357%" y="725" width="0.1489%" height="15" fill="rgb(206,3,8)" fg:x="71478" fg:w="775"/><text x="13.9857%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (109 samples, 0.02%)</title><rect x="13.9021%" y="469" width="0.0209%" height="15" fill="rgb(251,23,15)" fg:x="72344" fg:w="109"/><text x="14.1521%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.02%)</title><rect x="13.9023%" y="453" width="0.0208%" height="15" fill="rgb(252,88,28)" fg:x="72345" fg:w="108"/><text x="14.1523%" y="463.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="13.9023%" y="437" width="0.0208%" height="15" fill="rgb(212,127,14)" fg:x="72345" fg:w="108"/><text x="14.1523%" y="447.50"></text></g><g><title>finish_task_switch (116 samples, 0.02%)</title><rect x="13.9015%" y="485" width="0.0223%" height="15" fill="rgb(247,145,37)" fg:x="72341" fg:w="116"/><text x="14.1515%" y="495.50"></text></g><g><title>futex_wait_queue_me (150 samples, 0.03%)</title><rect x="13.8975%" y="533" width="0.0288%" height="15" fill="rgb(209,117,53)" fg:x="72320" fg:w="150"/><text x="14.1475%" y="543.50"></text></g><g><title>schedule (146 samples, 0.03%)</title><rect x="13.8983%" y="517" width="0.0281%" height="15" fill="rgb(212,90,42)" fg:x="72324" fg:w="146"/><text x="14.1483%" y="527.50"></text></g><g><title>__schedule (144 samples, 0.03%)</title><rect x="13.8987%" y="501" width="0.0277%" height="15" fill="rgb(218,164,37)" fg:x="72326" fg:w="144"/><text x="14.1487%" y="511.50"></text></g><g><title>do_syscall_64 (166 samples, 0.03%)</title><rect x="13.8969%" y="597" width="0.0319%" height="15" fill="rgb(246,65,34)" fg:x="72317" fg:w="166"/><text x="14.1469%" y="607.50"></text></g><g><title>__x64_sys_futex (166 samples, 0.03%)</title><rect x="13.8969%" y="581" width="0.0319%" height="15" fill="rgb(231,100,33)" fg:x="72317" fg:w="166"/><text x="14.1469%" y="591.50"></text></g><g><title>do_futex (164 samples, 0.03%)</title><rect x="13.8973%" y="565" width="0.0315%" height="15" fill="rgb(228,126,14)" fg:x="72319" fg:w="164"/><text x="14.1473%" y="575.50"></text></g><g><title>futex_wait (164 samples, 0.03%)</title><rect x="13.8973%" y="549" width="0.0315%" height="15" fill="rgb(215,173,21)" fg:x="72319" fg:w="164"/><text x="14.1473%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (170 samples, 0.03%)</title><rect x="13.8967%" y="613" width="0.0327%" height="15" fill="rgb(210,6,40)" fg:x="72316" fg:w="170"/><text x="14.1467%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (177 samples, 0.03%)</title><rect x="13.8958%" y="661" width="0.0340%" height="15" fill="rgb(212,48,18)" fg:x="72311" fg:w="177"/><text x="14.1458%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (177 samples, 0.03%)</title><rect x="13.8958%" y="645" width="0.0340%" height="15" fill="rgb(230,214,11)" fg:x="72311" fg:w="177"/><text x="14.1458%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (174 samples, 0.03%)</title><rect x="13.8964%" y="629" width="0.0334%" height="15" fill="rgb(254,105,39)" fg:x="72314" fg:w="174"/><text x="14.1464%" y="639.50"></text></g><g><title>Monitor::wait (228 samples, 0.04%)</title><rect x="13.8891%" y="709" width="0.0438%" height="15" fill="rgb(245,158,5)" fg:x="72276" fg:w="228"/><text x="14.1391%" y="719.50"></text></g><g><title>Monitor::IWait (222 samples, 0.04%)</title><rect x="13.8902%" y="693" width="0.0427%" height="15" fill="rgb(249,208,11)" fg:x="72282" fg:w="222"/><text x="14.1402%" y="703.50"></text></g><g><title>os::PlatformEvent::park (198 samples, 0.04%)</title><rect x="13.8948%" y="677" width="0.0380%" height="15" fill="rgb(210,39,28)" fg:x="72306" fg:w="198"/><text x="14.1448%" y="687.50"></text></g><g><title>CompileQueue::get (265 samples, 0.05%)</title><rect x="13.8869%" y="725" width="0.0509%" height="15" fill="rgb(211,56,53)" fg:x="72265" fg:w="265"/><text x="14.1369%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,059 samples, 0.20%)</title><rect x="13.7351%" y="741" width="0.2035%" height="15" fill="rgb(226,201,30)" fg:x="71475" fg:w="1059"/><text x="13.9851%" y="751.50"></text></g><g><title>__GI___clone (1,079 samples, 0.21%)</title><rect x="13.7319%" y="821" width="0.2073%" height="15" fill="rgb(239,101,34)" fg:x="71458" fg:w="1079"/><text x="13.9819%" y="831.50"></text></g><g><title>start_thread (1,065 samples, 0.20%)</title><rect x="13.7346%" y="805" width="0.2047%" height="15" fill="rgb(226,209,5)" fg:x="71472" fg:w="1065"/><text x="13.9846%" y="815.50"></text></g><g><title>thread_native_entry (1,064 samples, 0.20%)</title><rect x="13.7347%" y="789" width="0.2045%" height="15" fill="rgb(250,105,47)" fg:x="71473" fg:w="1064"/><text x="13.9847%" y="799.50"></text></g><g><title>Thread::call_run (1,064 samples, 0.20%)</title><rect x="13.7347%" y="773" width="0.2045%" height="15" fill="rgb(230,72,3)" fg:x="71473" fg:w="1064"/><text x="13.9847%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,062 samples, 0.20%)</title><rect x="13.7351%" y="757" width="0.2041%" height="15" fill="rgb(232,218,39)" fg:x="71475" fg:w="1062"/><text x="13.9851%" y="767.50"></text></g><g><title>C2_CompilerThre (61,860 samples, 11.89%)</title><rect x="2.0735%" y="837" width="11.8874%" height="15" fill="rgb(248,166,6)" fg:x="10790" fg:w="61860"/><text x="2.3235%" y="847.50">C2_CompilerThre</text></g><g><title>[perf-261576.map] (88 samples, 0.02%)</title><rect x="13.9615%" y="821" width="0.0169%" height="15" fill="rgb(247,89,20)" fg:x="72653" fg:w="88"/><text x="14.2115%" y="831.50"></text></g><g><title>Command-Accumul (128 samples, 0.02%)</title><rect x="13.9609%" y="837" width="0.0246%" height="15" fill="rgb(248,130,54)" fg:x="72650" fg:w="128"/><text x="14.2109%" y="847.50"></text></g><g><title>update_curr (53 samples, 0.01%)</title><rect x="14.3768%" y="565" width="0.0102%" height="15" fill="rgb(234,196,4)" fg:x="74814" fg:w="53"/><text x="14.6268%" y="575.50"></text></g><g><title>dequeue_entity (121 samples, 0.02%)</title><rect x="14.3695%" y="581" width="0.0233%" height="15" fill="rgb(250,143,31)" fg:x="74776" fg:w="121"/><text x="14.6195%" y="591.50"></text></g><g><title>dequeue_task_fair (137 samples, 0.03%)</title><rect x="14.3666%" y="597" width="0.0263%" height="15" fill="rgb(211,110,34)" fg:x="74761" fg:w="137"/><text x="14.6166%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.01%)</title><rect x="14.3945%" y="581" width="0.0148%" height="15" fill="rgb(215,124,48)" fg:x="74906" fg:w="77"/><text x="14.6445%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.01%)</title><rect x="14.3954%" y="565" width="0.0138%" height="15" fill="rgb(216,46,13)" fg:x="74911" fg:w="72"/><text x="14.6454%" y="575.50"></text></g><g><title>native_write_msr (71 samples, 0.01%)</title><rect x="14.3956%" y="549" width="0.0136%" height="15" fill="rgb(205,184,25)" fg:x="74912" fg:w="71"/><text x="14.6456%" y="559.50"></text></g><g><title>finish_task_switch (90 samples, 0.02%)</title><rect x="14.3929%" y="597" width="0.0173%" height="15" fill="rgb(228,1,10)" fg:x="74898" fg:w="90"/><text x="14.6429%" y="607.50"></text></g><g><title>psi_task_change (81 samples, 0.02%)</title><rect x="14.4215%" y="597" width="0.0156%" height="15" fill="rgb(213,116,27)" fg:x="75047" fg:w="81"/><text x="14.6715%" y="607.50"></text></g><g><title>psi_group_change (59 samples, 0.01%)</title><rect x="14.4258%" y="581" width="0.0113%" height="15" fill="rgb(241,95,50)" fg:x="75069" fg:w="59"/><text x="14.6758%" y="591.50"></text></g><g><title>futex_wait_queue_me (550 samples, 0.11%)</title><rect x="14.3366%" y="645" width="0.1057%" height="15" fill="rgb(238,48,32)" fg:x="74605" fg:w="550"/><text x="14.5866%" y="655.50"></text></g><g><title>schedule (467 samples, 0.09%)</title><rect x="14.3526%" y="629" width="0.0897%" height="15" fill="rgb(235,113,49)" fg:x="74688" fg:w="467"/><text x="14.6026%" y="639.50"></text></g><g><title>__schedule (453 samples, 0.09%)</title><rect x="14.3553%" y="613" width="0.0871%" height="15" fill="rgb(205,127,43)" fg:x="74702" fg:w="453"/><text x="14.6053%" y="623.50"></text></g><g><title>do_futex (687 samples, 0.13%)</title><rect x="14.3295%" y="677" width="0.1320%" height="15" fill="rgb(250,162,2)" fg:x="74568" fg:w="687"/><text x="14.5795%" y="687.50"></text></g><g><title>futex_wait (673 samples, 0.13%)</title><rect x="14.3322%" y="661" width="0.1293%" height="15" fill="rgb(220,13,41)" fg:x="74582" fg:w="673"/><text x="14.5822%" y="671.50"></text></g><g><title>do_syscall_64 (712 samples, 0.14%)</title><rect x="14.3274%" y="709" width="0.1368%" height="15" fill="rgb(249,221,25)" fg:x="74557" fg:w="712"/><text x="14.5774%" y="719.50"></text></g><g><title>__x64_sys_futex (709 samples, 0.14%)</title><rect x="14.3280%" y="693" width="0.1362%" height="15" fill="rgb(215,208,19)" fg:x="74560" fg:w="709"/><text x="14.5780%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (736 samples, 0.14%)</title><rect x="14.3253%" y="725" width="0.1414%" height="15" fill="rgb(236,175,2)" fg:x="74546" fg:w="736"/><text x="14.5753%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (815 samples, 0.16%)</title><rect x="14.3111%" y="773" width="0.1566%" height="15" fill="rgb(241,52,2)" fg:x="74472" fg:w="815"/><text x="14.5611%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (813 samples, 0.16%)</title><rect x="14.3114%" y="757" width="0.1562%" height="15" fill="rgb(248,140,14)" fg:x="74474" fg:w="813"/><text x="14.5614%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (779 samples, 0.15%)</title><rect x="14.3180%" y="741" width="0.1497%" height="15" fill="rgb(253,22,42)" fg:x="74508" fg:w="779"/><text x="14.5680%" y="751.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="14.4740%" y="741" width="0.0113%" height="15" fill="rgb(234,61,47)" fg:x="75320" fg:w="59"/><text x="14.7240%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="14.4740%" y="757" width="0.0121%" height="15" fill="rgb(208,226,15)" fg:x="75320" fg:w="63"/><text x="14.7240%" y="767.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (87 samples, 0.02%)</title><rect x="14.4706%" y="773" width="0.0167%" height="15" fill="rgb(217,221,4)" fg:x="75302" fg:w="87"/><text x="14.7206%" y="783.50"></text></g><g><title>Parker::park (1,031 samples, 0.20%)</title><rect x="14.2959%" y="789" width="0.1981%" height="15" fill="rgb(212,174,34)" fg:x="74393" fg:w="1031"/><text x="14.5459%" y="799.50"></text></g><g><title>Unsafe_Park (1,069 samples, 0.21%)</title><rect x="14.2915%" y="805" width="0.2054%" height="15" fill="rgb(253,83,4)" fg:x="74370" fg:w="1069"/><text x="14.5415%" y="815.50"></text></g><g><title>[perf-261576.map] (2,631 samples, 0.51%)</title><rect x="13.9967%" y="821" width="0.5056%" height="15" fill="rgb(250,195,49)" fg:x="72836" fg:w="2631"/><text x="14.2467%" y="831.50"></text></g><g><title>ForkJoinPool.co (2,713 samples, 0.52%)</title><rect x="13.9897%" y="837" width="0.5213%" height="15" fill="rgb(241,192,25)" fg:x="72800" fg:w="2713"/><text x="14.2397%" y="847.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (115 samples, 0.02%)</title><rect x="14.5307%" y="725" width="0.0221%" height="15" fill="rgb(208,124,10)" fg:x="75615" fg:w="115"/><text x="14.7807%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (114 samples, 0.02%)</title><rect x="14.5309%" y="709" width="0.0219%" height="15" fill="rgb(222,33,0)" fg:x="75616" fg:w="114"/><text x="14.7809%" y="719.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (124 samples, 0.02%)</title><rect x="14.5307%" y="741" width="0.0238%" height="15" fill="rgb(234,209,28)" fg:x="75615" fg:w="124"/><text x="14.7807%" y="751.50"></text></g><g><title>G1_Refine#0 (139 samples, 0.03%)</title><rect x="14.5292%" y="837" width="0.0267%" height="15" fill="rgb(224,11,23)" fg:x="75607" fg:w="139"/><text x="14.7792%" y="847.50"></text></g><g><title>__GI___clone (131 samples, 0.03%)</title><rect x="14.5307%" y="821" width="0.0252%" height="15" fill="rgb(232,99,1)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="831.50"></text></g><g><title>start_thread (131 samples, 0.03%)</title><rect x="14.5307%" y="805" width="0.0252%" height="15" fill="rgb(237,95,45)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="815.50"></text></g><g><title>thread_native_entry (131 samples, 0.03%)</title><rect x="14.5307%" y="789" width="0.0252%" height="15" fill="rgb(208,109,11)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="799.50"></text></g><g><title>Thread::call_run (131 samples, 0.03%)</title><rect x="14.5307%" y="773" width="0.0252%" height="15" fill="rgb(216,190,48)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (131 samples, 0.03%)</title><rect x="14.5307%" y="757" width="0.0252%" height="15" fill="rgb(251,171,36)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="767.50"></text></g><g><title>G1CollectionSet::iterate (65 samples, 0.01%)</title><rect x="14.5588%" y="725" width="0.0125%" height="15" fill="rgb(230,62,22)" fg:x="75761" fg:w="65"/><text x="14.8088%" y="735.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (65 samples, 0.01%)</title><rect x="14.5588%" y="709" width="0.0125%" height="15" fill="rgb(225,114,35)" fg:x="75761" fg:w="65"/><text x="14.8088%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (101 samples, 0.02%)</title><rect x="14.5588%" y="741" width="0.0194%" height="15" fill="rgb(215,118,42)" fg:x="75761" fg:w="101"/><text x="14.8088%" y="751.50"></text></g><g><title>G1_Young_RemSet (111 samples, 0.02%)</title><rect x="14.5588%" y="837" width="0.0213%" height="15" fill="rgb(243,119,21)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="847.50"></text></g><g><title>__GI___clone (111 samples, 0.02%)</title><rect x="14.5588%" y="821" width="0.0213%" height="15" fill="rgb(252,177,53)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="831.50"></text></g><g><title>start_thread (111 samples, 0.02%)</title><rect x="14.5588%" y="805" width="0.0213%" height="15" fill="rgb(237,209,29)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="815.50"></text></g><g><title>thread_native_entry (111 samples, 0.02%)</title><rect x="14.5588%" y="789" width="0.0213%" height="15" fill="rgb(212,65,23)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="799.50"></text></g><g><title>Thread::call_run (111 samples, 0.02%)</title><rect x="14.5588%" y="773" width="0.0213%" height="15" fill="rgb(230,222,46)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (111 samples, 0.02%)</title><rect x="14.5588%" y="757" width="0.0213%" height="15" fill="rgb(215,135,32)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="767.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (69 samples, 0.01%)</title><rect x="14.6366%" y="677" width="0.0133%" height="15" fill="rgb(246,101,22)" fg:x="76166" fg:w="69"/><text x="14.8866%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (197 samples, 0.04%)</title><rect x="14.6179%" y="693" width="0.0379%" height="15" fill="rgb(206,107,13)" fg:x="76069" fg:w="197"/><text x="14.8679%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (350 samples, 0.07%)</title><rect x="14.5901%" y="709" width="0.0673%" height="15" fill="rgb(250,100,44)" fg:x="75924" fg:w="350"/><text x="14.8401%" y="719.50"></text></g><g><title>SpinPause (89 samples, 0.02%)</title><rect x="14.6587%" y="709" width="0.0171%" height="15" fill="rgb(231,147,38)" fg:x="76281" fg:w="89"/><text x="14.9087%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (468 samples, 0.09%)</title><rect x="14.5870%" y="725" width="0.0899%" height="15" fill="rgb(229,8,40)" fg:x="75908" fg:w="468"/><text x="14.8370%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (150 samples, 0.03%)</title><rect x="14.6848%" y="629" width="0.0288%" height="15" fill="rgb(221,135,30)" fg:x="76417" fg:w="150"/><text x="14.9348%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (122 samples, 0.02%)</title><rect x="14.6902%" y="613" width="0.0234%" height="15" fill="rgb(249,193,18)" fg:x="76445" fg:w="122"/><text x="14.9402%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (202 samples, 0.04%)</title><rect x="14.6769%" y="645" width="0.0388%" height="15" fill="rgb(209,133,39)" fg:x="76376" fg:w="202"/><text x="14.9269%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (228 samples, 0.04%)</title><rect x="14.6769%" y="693" width="0.0438%" height="15" fill="rgb(232,100,14)" fg:x="76376" fg:w="228"/><text x="14.9269%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (228 samples, 0.04%)</title><rect x="14.6769%" y="677" width="0.0438%" height="15" fill="rgb(224,185,1)" fg:x="76376" fg:w="228"/><text x="14.9269%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (228 samples, 0.04%)</title><rect x="14.6769%" y="661" width="0.0438%" height="15" fill="rgb(223,139,8)" fg:x="76376" fg:w="228"/><text x="14.9269%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (231 samples, 0.04%)</title><rect x="14.6769%" y="725" width="0.0444%" height="15" fill="rgb(232,213,38)" fg:x="76376" fg:w="231"/><text x="14.9269%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (231 samples, 0.04%)</title><rect x="14.6769%" y="709" width="0.0444%" height="15" fill="rgb(207,94,22)" fg:x="76376" fg:w="231"/><text x="14.9269%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (53 samples, 0.01%)</title><rect x="14.7213%" y="725" width="0.0102%" height="15" fill="rgb(219,183,54)" fg:x="76607" fg:w="53"/><text x="14.9713%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (53 samples, 0.01%)</title><rect x="14.7213%" y="709" width="0.0102%" height="15" fill="rgb(216,185,54)" fg:x="76607" fg:w="53"/><text x="14.9713%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (53 samples, 0.01%)</title><rect x="14.7213%" y="693" width="0.0102%" height="15" fill="rgb(254,217,39)" fg:x="76607" fg:w="53"/><text x="14.9713%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (58 samples, 0.01%)</title><rect x="14.7567%" y="629" width="0.0111%" height="15" fill="rgb(240,178,23)" fg:x="76791" fg:w="58"/><text x="15.0067%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="14.7569%" y="613" width="0.0110%" height="15" fill="rgb(218,11,47)" fg:x="76792" fg:w="57"/><text x="15.0069%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (195 samples, 0.04%)</title><rect x="14.7315%" y="709" width="0.0375%" height="15" fill="rgb(218,51,51)" fg:x="76660" fg:w="195"/><text x="14.9815%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (145 samples, 0.03%)</title><rect x="14.7411%" y="693" width="0.0279%" height="15" fill="rgb(238,126,27)" fg:x="76710" fg:w="145"/><text x="14.9911%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (145 samples, 0.03%)</title><rect x="14.7411%" y="677" width="0.0279%" height="15" fill="rgb(249,202,22)" fg:x="76710" fg:w="145"/><text x="14.9911%" y="687.50"></text></g><g><title>JavaThread::oops_do (145 samples, 0.03%)</title><rect x="14.7411%" y="661" width="0.0279%" height="15" fill="rgb(254,195,49)" fg:x="76710" fg:w="145"/><text x="14.9911%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (65 samples, 0.01%)</title><rect x="14.7565%" y="645" width="0.0125%" height="15" fill="rgb(208,123,14)" fg:x="76790" fg:w="65"/><text x="15.0065%" y="655.50"></text></g><g><title>G1ParTask::work (967 samples, 0.19%)</title><rect x="14.5870%" y="741" width="0.1858%" height="15" fill="rgb(224,200,8)" fg:x="75908" fg:w="967"/><text x="14.8370%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (215 samples, 0.04%)</title><rect x="14.7315%" y="725" width="0.0413%" height="15" fill="rgb(217,61,36)" fg:x="76660" fg:w="215"/><text x="14.9815%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (54 samples, 0.01%)</title><rect x="14.7736%" y="741" width="0.0104%" height="15" fill="rgb(206,35,45)" fg:x="76879" fg:w="54"/><text x="15.0236%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.01%)</title><rect x="14.7905%" y="517" width="0.0138%" height="15" fill="rgb(217,65,33)" fg:x="76967" fg:w="72"/><text x="15.0405%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.01%)</title><rect x="14.7907%" y="501" width="0.0136%" height="15" fill="rgb(222,158,48)" fg:x="76968" fg:w="71"/><text x="15.0407%" y="511.50"></text></g><g><title>native_write_msr (71 samples, 0.01%)</title><rect x="14.7907%" y="485" width="0.0136%" height="15" fill="rgb(254,2,54)" fg:x="76968" fg:w="71"/><text x="15.0407%" y="495.50"></text></g><g><title>finish_task_switch (78 samples, 0.01%)</title><rect x="14.7897%" y="533" width="0.0150%" height="15" fill="rgb(250,143,38)" fg:x="76963" fg:w="78"/><text x="15.0397%" y="543.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="14.7884%" y="645" width="0.0181%" height="15" fill="rgb(248,25,0)" fg:x="76956" fg:w="94"/><text x="15.0384%" y="655.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.02%)</title><rect x="14.7884%" y="629" width="0.0181%" height="15" fill="rgb(206,152,27)" fg:x="76956" fg:w="94"/><text x="15.0384%" y="639.50"></text></g><g><title>do_futex (93 samples, 0.02%)</title><rect x="14.7886%" y="613" width="0.0179%" height="15" fill="rgb(240,77,30)" fg:x="76957" fg:w="93"/><text x="15.0386%" y="623.50"></text></g><g><title>futex_wait (93 samples, 0.02%)</title><rect x="14.7886%" y="597" width="0.0179%" height="15" fill="rgb(231,5,3)" fg:x="76957" fg:w="93"/><text x="15.0386%" y="607.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.02%)</title><rect x="14.7888%" y="581" width="0.0177%" height="15" fill="rgb(207,226,32)" fg:x="76958" fg:w="92"/><text x="15.0388%" y="591.50"></text></g><g><title>schedule (92 samples, 0.02%)</title><rect x="14.7888%" y="565" width="0.0177%" height="15" fill="rgb(222,207,47)" fg:x="76958" fg:w="92"/><text x="15.0388%" y="575.50"></text></g><g><title>__schedule (92 samples, 0.02%)</title><rect x="14.7888%" y="549" width="0.0177%" height="15" fill="rgb(229,115,45)" fg:x="76958" fg:w="92"/><text x="15.0388%" y="559.50"></text></g><g><title>GC_Thread#0 (1,180 samples, 0.23%)</title><rect x="14.5801%" y="837" width="0.2268%" height="15" fill="rgb(224,191,6)" fg:x="75872" fg:w="1180"/><text x="14.8301%" y="847.50"></text></g><g><title>__GI___clone (1,153 samples, 0.22%)</title><rect x="14.5853%" y="821" width="0.2216%" height="15" fill="rgb(230,227,24)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="831.50"></text></g><g><title>start_thread (1,153 samples, 0.22%)</title><rect x="14.5853%" y="805" width="0.2216%" height="15" fill="rgb(228,80,19)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="815.50"></text></g><g><title>thread_native_entry (1,153 samples, 0.22%)</title><rect x="14.5853%" y="789" width="0.2216%" height="15" fill="rgb(247,229,0)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="799.50"></text></g><g><title>Thread::call_run (1,153 samples, 0.22%)</title><rect x="14.5853%" y="773" width="0.2216%" height="15" fill="rgb(237,194,15)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="783.50"></text></g><g><title>GangWorker::loop (1,153 samples, 0.22%)</title><rect x="14.5853%" y="757" width="0.2216%" height="15" fill="rgb(219,203,20)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (98 samples, 0.02%)</title><rect x="14.7880%" y="741" width="0.0188%" height="15" fill="rgb(234,128,8)" fg:x="76954" fg:w="98"/><text x="15.0380%" y="751.50"></text></g><g><title>PosixSemaphore::wait (98 samples, 0.02%)</title><rect x="14.7880%" y="725" width="0.0188%" height="15" fill="rgb(248,202,8)" fg:x="76954" fg:w="98"/><text x="15.0380%" y="735.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.02%)</title><rect x="14.7882%" y="709" width="0.0186%" height="15" fill="rgb(206,104,37)" fg:x="76955" fg:w="97"/><text x="15.0382%" y="719.50"></text></g><g><title>do_futex_wait (97 samples, 0.02%)</title><rect x="14.7882%" y="693" width="0.0186%" height="15" fill="rgb(223,8,27)" fg:x="76955" fg:w="97"/><text x="15.0382%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.02%)</title><rect x="14.7882%" y="677" width="0.0186%" height="15" fill="rgb(216,217,28)" fg:x="76955" fg:w="97"/><text x="15.0382%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.02%)</title><rect x="14.7884%" y="661" width="0.0184%" height="15" fill="rgb(249,199,1)" fg:x="76956" fg:w="96"/><text x="15.0384%" y="671.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (55 samples, 0.01%)</title><rect x="14.8651%" y="677" width="0.0106%" height="15" fill="rgb(240,85,17)" fg:x="77355" fg:w="55"/><text x="15.1151%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (184 samples, 0.04%)</title><rect x="14.8457%" y="693" width="0.0354%" height="15" fill="rgb(206,108,45)" fg:x="77254" fg:w="184"/><text x="15.0957%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (349 samples, 0.07%)</title><rect x="14.8155%" y="709" width="0.0671%" height="15" fill="rgb(245,210,41)" fg:x="77097" fg:w="349"/><text x="15.0655%" y="719.50"></text></g><g><title>SpinPause (67 samples, 0.01%)</title><rect x="14.8841%" y="709" width="0.0129%" height="15" fill="rgb(206,13,37)" fg:x="77454" fg:w="67"/><text x="15.1341%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (452 samples, 0.09%)</title><rect x="14.8116%" y="725" width="0.0869%" height="15" fill="rgb(250,61,18)" fg:x="77077" fg:w="452"/><text x="15.0616%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (189 samples, 0.04%)</title><rect x="14.9070%" y="629" width="0.0363%" height="15" fill="rgb(235,172,48)" fg:x="77573" fg:w="189"/><text x="15.1570%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (148 samples, 0.03%)</title><rect x="14.9148%" y="613" width="0.0284%" height="15" fill="rgb(249,201,17)" fg:x="77614" fg:w="148"/><text x="15.1648%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (238 samples, 0.05%)</title><rect x="14.8993%" y="645" width="0.0457%" height="15" fill="rgb(219,208,6)" fg:x="77533" fg:w="238"/><text x="15.1493%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (263 samples, 0.05%)</title><rect x="14.8987%" y="693" width="0.0505%" height="15" fill="rgb(248,31,23)" fg:x="77530" fg:w="263"/><text x="15.1487%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (263 samples, 0.05%)</title><rect x="14.8987%" y="677" width="0.0505%" height="15" fill="rgb(245,15,42)" fg:x="77530" fg:w="263"/><text x="15.1487%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (263 samples, 0.05%)</title><rect x="14.8987%" y="661" width="0.0505%" height="15" fill="rgb(222,217,39)" fg:x="77530" fg:w="263"/><text x="15.1487%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (265 samples, 0.05%)</title><rect x="14.8987%" y="725" width="0.0509%" height="15" fill="rgb(210,219,27)" fg:x="77530" fg:w="265"/><text x="15.1487%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (265 samples, 0.05%)</title><rect x="14.8987%" y="709" width="0.0509%" height="15" fill="rgb(252,166,36)" fg:x="77530" fg:w="265"/><text x="15.1487%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (68 samples, 0.01%)</title><rect x="14.9496%" y="725" width="0.0131%" height="15" fill="rgb(245,132,34)" fg:x="77795" fg:w="68"/><text x="15.1996%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (68 samples, 0.01%)</title><rect x="14.9496%" y="709" width="0.0131%" height="15" fill="rgb(236,54,3)" fg:x="77795" fg:w="68"/><text x="15.1996%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (68 samples, 0.01%)</title><rect x="14.9496%" y="693" width="0.0131%" height="15" fill="rgb(241,173,43)" fg:x="77795" fg:w="68"/><text x="15.1996%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.01%)</title><rect x="14.9811%" y="629" width="0.0125%" height="15" fill="rgb(215,190,9)" fg:x="77959" fg:w="65"/><text x="15.2311%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="14.9834%" y="613" width="0.0102%" height="15" fill="rgb(242,101,16)" fg:x="77971" fg:w="53"/><text x="15.2334%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (69 samples, 0.01%)</title><rect x="14.9809%" y="645" width="0.0133%" height="15" fill="rgb(223,190,21)" fg:x="77958" fg:w="69"/><text x="15.2309%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (164 samples, 0.03%)</title><rect x="14.9631%" y="709" width="0.0315%" height="15" fill="rgb(215,228,25)" fg:x="77865" fg:w="164"/><text x="15.2131%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (117 samples, 0.02%)</title><rect x="14.9721%" y="693" width="0.0225%" height="15" fill="rgb(225,36,22)" fg:x="77912" fg:w="117"/><text x="15.2221%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (117 samples, 0.02%)</title><rect x="14.9721%" y="677" width="0.0225%" height="15" fill="rgb(251,106,46)" fg:x="77912" fg:w="117"/><text x="15.2221%" y="687.50"></text></g><g><title>JavaThread::oops_do (116 samples, 0.02%)</title><rect x="14.9723%" y="661" width="0.0223%" height="15" fill="rgb(208,90,1)" fg:x="77913" fg:w="116"/><text x="15.2223%" y="671.50"></text></g><g><title>G1ParTask::work (962 samples, 0.18%)</title><rect x="14.8116%" y="741" width="0.1849%" height="15" fill="rgb(243,10,4)" fg:x="77077" fg:w="962"/><text x="15.0616%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.03%)</title><rect x="14.9627%" y="725" width="0.0338%" height="15" fill="rgb(212,137,27)" fg:x="77863" fg:w="176"/><text x="15.2127%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (59 samples, 0.01%)</title><rect x="14.9990%" y="741" width="0.0113%" height="15" fill="rgb(231,220,49)" fg:x="78052" fg:w="59"/><text x="15.2490%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="15.0184%" y="517" width="0.0133%" height="15" fill="rgb(237,96,20)" fg:x="78153" fg:w="69"/><text x="15.2684%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="15.0184%" y="501" width="0.0133%" height="15" fill="rgb(239,229,30)" fg:x="78153" fg:w="69"/><text x="15.2684%" y="511.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="15.0184%" y="485" width="0.0133%" height="15" fill="rgb(219,65,33)" fg:x="78153" fg:w="69"/><text x="15.2684%" y="495.50"></text></g><g><title>finish_task_switch (76 samples, 0.01%)</title><rect x="15.0178%" y="533" width="0.0146%" height="15" fill="rgb(243,134,7)" fg:x="78150" fg:w="76"/><text x="15.2678%" y="543.50"></text></g><g><title>futex_wait_queue_me (86 samples, 0.02%)</title><rect x="15.0165%" y="581" width="0.0165%" height="15" fill="rgb(216,177,54)" fg:x="78143" fg:w="86"/><text x="15.2665%" y="591.50"></text></g><g><title>schedule (84 samples, 0.02%)</title><rect x="15.0169%" y="565" width="0.0161%" height="15" fill="rgb(211,160,20)" fg:x="78145" fg:w="84"/><text x="15.2669%" y="575.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="15.0171%" y="549" width="0.0159%" height="15" fill="rgb(239,85,39)" fg:x="78146" fg:w="83"/><text x="15.2671%" y="559.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="15.0165%" y="645" width="0.0167%" height="15" fill="rgb(232,125,22)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="655.50"></text></g><g><title>__x64_sys_futex (87 samples, 0.02%)</title><rect x="15.0165%" y="629" width="0.0167%" height="15" fill="rgb(244,57,34)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="639.50"></text></g><g><title>do_futex (87 samples, 0.02%)</title><rect x="15.0165%" y="613" width="0.0167%" height="15" fill="rgb(214,203,32)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="623.50"></text></g><g><title>futex_wait (87 samples, 0.02%)</title><rect x="15.0165%" y="597" width="0.0167%" height="15" fill="rgb(207,58,43)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="607.50"></text></g><g><title>__new_sem_wait_slow (89 samples, 0.02%)</title><rect x="15.0163%" y="709" width="0.0171%" height="15" fill="rgb(215,193,15)" fg:x="78142" fg:w="89"/><text x="15.2663%" y="719.50"></text></g><g><title>do_futex_wait (89 samples, 0.02%)</title><rect x="15.0163%" y="693" width="0.0171%" height="15" fill="rgb(232,15,44)" fg:x="78142" fg:w="89"/><text x="15.2663%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (89 samples, 0.02%)</title><rect x="15.0163%" y="677" width="0.0171%" height="15" fill="rgb(212,3,48)" fg:x="78142" fg:w="89"/><text x="15.2663%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="15.0165%" y="661" width="0.0169%" height="15" fill="rgb(218,128,7)" fg:x="78143" fg:w="88"/><text x="15.2665%" y="671.50"></text></g><g><title>__GI___clone (1,164 samples, 0.22%)</title><rect x="14.8099%" y="821" width="0.2237%" height="15" fill="rgb(226,216,39)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="831.50"></text></g><g><title>start_thread (1,164 samples, 0.22%)</title><rect x="14.8099%" y="805" width="0.2237%" height="15" fill="rgb(243,47,51)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="815.50"></text></g><g><title>thread_native_entry (1,164 samples, 0.22%)</title><rect x="14.8099%" y="789" width="0.2237%" height="15" fill="rgb(241,183,40)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="799.50"></text></g><g><title>Thread::call_run (1,164 samples, 0.22%)</title><rect x="14.8099%" y="773" width="0.2237%" height="15" fill="rgb(231,217,32)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="783.50"></text></g><g><title>GangWorker::loop (1,164 samples, 0.22%)</title><rect x="14.8099%" y="757" width="0.2237%" height="15" fill="rgb(229,61,38)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (90 samples, 0.02%)</title><rect x="15.0163%" y="741" width="0.0173%" height="15" fill="rgb(225,210,5)" fg:x="78142" fg:w="90"/><text x="15.2663%" y="751.50"></text></g><g><title>PosixSemaphore::wait (90 samples, 0.02%)</title><rect x="15.0163%" y="725" width="0.0173%" height="15" fill="rgb(231,79,45)" fg:x="78142" fg:w="90"/><text x="15.2663%" y="735.50"></text></g><g><title>GC_Thread#1 (1,181 samples, 0.23%)</title><rect x="14.8068%" y="837" width="0.2269%" height="15" fill="rgb(224,100,7)" fg:x="77052" fg:w="1181"/><text x="15.0568%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (155 samples, 0.03%)</title><rect x="15.0722%" y="693" width="0.0298%" height="15" fill="rgb(241,198,18)" fg:x="78433" fg:w="155"/><text x="15.3222%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (318 samples, 0.06%)</title><rect x="15.0419%" y="709" width="0.0611%" height="15" fill="rgb(252,97,53)" fg:x="78275" fg:w="318"/><text x="15.2919%" y="719.50"></text></g><g><title>SpinPause (87 samples, 0.02%)</title><rect x="15.1032%" y="709" width="0.0167%" height="15" fill="rgb(220,88,7)" fg:x="78594" fg:w="87"/><text x="15.3532%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (430 samples, 0.08%)</title><rect x="15.0390%" y="725" width="0.0826%" height="15" fill="rgb(213,176,14)" fg:x="78260" fg:w="430"/><text x="15.2890%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (176 samples, 0.03%)</title><rect x="15.1280%" y="629" width="0.0338%" height="15" fill="rgb(246,73,7)" fg:x="78723" fg:w="176"/><text x="15.3780%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (131 samples, 0.03%)</title><rect x="15.1366%" y="613" width="0.0252%" height="15" fill="rgb(245,64,36)" fg:x="78768" fg:w="131"/><text x="15.3866%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (231 samples, 0.04%)</title><rect x="15.1216%" y="645" width="0.0444%" height="15" fill="rgb(245,80,10)" fg:x="78690" fg:w="231"/><text x="15.3716%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (265 samples, 0.05%)</title><rect x="15.1216%" y="661" width="0.0509%" height="15" fill="rgb(232,107,50)" fg:x="78690" fg:w="265"/><text x="15.3716%" y="671.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (266 samples, 0.05%)</title><rect x="15.1216%" y="693" width="0.0511%" height="15" fill="rgb(253,3,0)" fg:x="78690" fg:w="266"/><text x="15.3716%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (266 samples, 0.05%)</title><rect x="15.1216%" y="677" width="0.0511%" height="15" fill="rgb(212,99,53)" fg:x="78690" fg:w="266"/><text x="15.3716%" y="687.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (287 samples, 0.06%)</title><rect x="15.1216%" y="725" width="0.0552%" height="15" fill="rgb(249,111,54)" fg:x="78690" fg:w="287"/><text x="15.3716%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (287 samples, 0.06%)</title><rect x="15.1216%" y="709" width="0.0552%" height="15" fill="rgb(249,55,30)" fg:x="78690" fg:w="287"/><text x="15.3716%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (53 samples, 0.01%)</title><rect x="15.1768%" y="661" width="0.0102%" height="15" fill="rgb(237,47,42)" fg:x="78977" fg:w="53"/><text x="15.4268%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (54 samples, 0.01%)</title><rect x="15.1768%" y="677" width="0.0104%" height="15" fill="rgb(211,20,18)" fg:x="78977" fg:w="54"/><text x="15.4268%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (75 samples, 0.01%)</title><rect x="15.1768%" y="725" width="0.0144%" height="15" fill="rgb(231,203,46)" fg:x="78977" fg:w="75"/><text x="15.4268%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (75 samples, 0.01%)</title><rect x="15.1768%" y="709" width="0.0144%" height="15" fill="rgb(237,142,3)" fg:x="78977" fg:w="75"/><text x="15.4268%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (75 samples, 0.01%)</title><rect x="15.1768%" y="693" width="0.0144%" height="15" fill="rgb(241,107,1)" fg:x="78977" fg:w="75"/><text x="15.4268%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (65 samples, 0.01%)</title><rect x="15.1912%" y="693" width="0.0125%" height="15" fill="rgb(229,83,13)" fg:x="79052" fg:w="65"/><text x="15.4412%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (64 samples, 0.01%)</title><rect x="15.1914%" y="677" width="0.0123%" height="15" fill="rgb(241,91,40)" fg:x="79053" fg:w="64"/><text x="15.4414%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (64 samples, 0.01%)</title><rect x="15.1914%" y="661" width="0.0123%" height="15" fill="rgb(225,3,45)" fg:x="79053" fg:w="64"/><text x="15.4414%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (110 samples, 0.02%)</title><rect x="15.1912%" y="709" width="0.0211%" height="15" fill="rgb(244,223,14)" fg:x="79052" fg:w="110"/><text x="15.4412%" y="719.50"></text></g><g><title>G1ParTask::work (931 samples, 0.18%)</title><rect x="15.0388%" y="741" width="0.1789%" height="15" fill="rgb(224,124,37)" fg:x="78259" fg:w="931"/><text x="15.2888%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (138 samples, 0.03%)</title><rect x="15.1912%" y="725" width="0.0265%" height="15" fill="rgb(251,171,30)" fg:x="79052" fg:w="138"/><text x="15.4412%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (63 samples, 0.01%)</title><rect x="15.2204%" y="741" width="0.0121%" height="15" fill="rgb(236,46,54)" fg:x="79204" fg:w="63"/><text x="15.4704%" y="751.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="15.2381%" y="645" width="0.0104%" height="15" fill="rgb(245,213,5)" fg:x="79296" fg:w="54"/><text x="15.4881%" y="655.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.01%)</title><rect x="15.2383%" y="629" width="0.0102%" height="15" fill="rgb(230,144,27)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="639.50"></text></g><g><title>do_futex (53 samples, 0.01%)</title><rect x="15.2383%" y="613" width="0.0102%" height="15" fill="rgb(220,86,6)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="623.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="15.2383%" y="597" width="0.0102%" height="15" fill="rgb(240,20,13)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="607.50"></text></g><g><title>futex_wait_queue_me (53 samples, 0.01%)</title><rect x="15.2383%" y="581" width="0.0102%" height="15" fill="rgb(217,89,34)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="591.50"></text></g><g><title>GC_Thread#2 (1,118 samples, 0.21%)</title><rect x="15.0338%" y="837" width="0.2148%" height="15" fill="rgb(229,13,5)" fg:x="78233" fg:w="1118"/><text x="15.2838%" y="847.50"></text></g><g><title>__GI___clone (1,100 samples, 0.21%)</title><rect x="15.0373%" y="821" width="0.2114%" height="15" fill="rgb(244,67,35)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="831.50"></text></g><g><title>start_thread (1,100 samples, 0.21%)</title><rect x="15.0373%" y="805" width="0.2114%" height="15" fill="rgb(221,40,2)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="815.50"></text></g><g><title>thread_native_entry (1,100 samples, 0.21%)</title><rect x="15.0373%" y="789" width="0.2114%" height="15" fill="rgb(237,157,21)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="799.50"></text></g><g><title>Thread::call_run (1,100 samples, 0.21%)</title><rect x="15.0373%" y="773" width="0.2114%" height="15" fill="rgb(222,94,11)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="783.50"></text></g><g><title>GangWorker::loop (1,100 samples, 0.21%)</title><rect x="15.0373%" y="757" width="0.2114%" height="15" fill="rgb(249,113,6)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (58 samples, 0.01%)</title><rect x="15.2375%" y="741" width="0.0111%" height="15" fill="rgb(238,137,36)" fg:x="79293" fg:w="58"/><text x="15.4875%" y="751.50"></text></g><g><title>PosixSemaphore::wait (58 samples, 0.01%)</title><rect x="15.2375%" y="725" width="0.0111%" height="15" fill="rgb(210,102,26)" fg:x="79293" fg:w="58"/><text x="15.4875%" y="735.50"></text></g><g><title>__new_sem_wait_slow (58 samples, 0.01%)</title><rect x="15.2375%" y="709" width="0.0111%" height="15" fill="rgb(218,30,30)" fg:x="79293" fg:w="58"/><text x="15.4875%" y="719.50"></text></g><g><title>do_futex_wait (57 samples, 0.01%)</title><rect x="15.2377%" y="693" width="0.0110%" height="15" fill="rgb(214,67,26)" fg:x="79294" fg:w="57"/><text x="15.4877%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (57 samples, 0.01%)</title><rect x="15.2377%" y="677" width="0.0110%" height="15" fill="rgb(251,9,53)" fg:x="79294" fg:w="57"/><text x="15.4877%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="15.2381%" y="661" width="0.0106%" height="15" fill="rgb(228,204,25)" fg:x="79296" fg:w="55"/><text x="15.4881%" y="671.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (57 samples, 0.01%)</title><rect x="15.3063%" y="677" width="0.0110%" height="15" fill="rgb(207,153,8)" fg:x="79651" fg:w="57"/><text x="15.5563%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (195 samples, 0.04%)</title><rect x="15.2867%" y="693" width="0.0375%" height="15" fill="rgb(242,9,16)" fg:x="79549" fg:w="195"/><text x="15.5367%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (351 samples, 0.07%)</title><rect x="15.2573%" y="709" width="0.0675%" height="15" fill="rgb(217,211,10)" fg:x="79396" fg:w="351"/><text x="15.5073%" y="719.50"></text></g><g><title>SpinPause (85 samples, 0.02%)</title><rect x="15.3263%" y="709" width="0.0163%" height="15" fill="rgb(219,228,52)" fg:x="79755" fg:w="85"/><text x="15.5763%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (473 samples, 0.09%)</title><rect x="15.2542%" y="725" width="0.0909%" height="15" fill="rgb(231,92,29)" fg:x="79380" fg:w="473"/><text x="15.5042%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (181 samples, 0.03%)</title><rect x="15.3543%" y="629" width="0.0348%" height="15" fill="rgb(232,8,23)" fg:x="79901" fg:w="181"/><text x="15.6043%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (143 samples, 0.03%)</title><rect x="15.3616%" y="613" width="0.0275%" height="15" fill="rgb(216,211,34)" fg:x="79939" fg:w="143"/><text x="15.6116%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (249 samples, 0.05%)</title><rect x="15.3453%" y="645" width="0.0478%" height="15" fill="rgb(236,151,0)" fg:x="79854" fg:w="249"/><text x="15.5953%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (278 samples, 0.05%)</title><rect x="15.3451%" y="693" width="0.0534%" height="15" fill="rgb(209,168,3)" fg:x="79853" fg:w="278"/><text x="15.5951%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (278 samples, 0.05%)</title><rect x="15.3451%" y="677" width="0.0534%" height="15" fill="rgb(208,129,28)" fg:x="79853" fg:w="278"/><text x="15.5951%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (277 samples, 0.05%)</title><rect x="15.3453%" y="661" width="0.0532%" height="15" fill="rgb(229,78,22)" fg:x="79854" fg:w="277"/><text x="15.5953%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (289 samples, 0.06%)</title><rect x="15.3451%" y="725" width="0.0555%" height="15" fill="rgb(228,187,13)" fg:x="79853" fg:w="289"/><text x="15.5951%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (289 samples, 0.06%)</title><rect x="15.3451%" y="709" width="0.0555%" height="15" fill="rgb(240,119,24)" fg:x="79853" fg:w="289"/><text x="15.5951%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (71 samples, 0.01%)</title><rect x="15.4006%" y="725" width="0.0136%" height="15" fill="rgb(209,194,42)" fg:x="80142" fg:w="71"/><text x="15.6506%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (71 samples, 0.01%)</title><rect x="15.4006%" y="709" width="0.0136%" height="15" fill="rgb(247,200,46)" fg:x="80142" fg:w="71"/><text x="15.6506%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (71 samples, 0.01%)</title><rect x="15.4006%" y="693" width="0.0136%" height="15" fill="rgb(218,76,16)" fg:x="80142" fg:w="71"/><text x="15.6506%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (88 samples, 0.02%)</title><rect x="15.4208%" y="597" width="0.0169%" height="15" fill="rgb(225,21,48)" fg:x="80247" fg:w="88"/><text x="15.6708%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (63 samples, 0.01%)</title><rect x="15.4256%" y="581" width="0.0121%" height="15" fill="rgb(239,223,50)" fg:x="80272" fg:w="63"/><text x="15.6756%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (112 samples, 0.02%)</title><rect x="15.4172%" y="629" width="0.0215%" height="15" fill="rgb(244,45,21)" fg:x="80228" fg:w="112"/><text x="15.6672%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (107 samples, 0.02%)</title><rect x="15.4181%" y="613" width="0.0206%" height="15" fill="rgb(232,33,43)" fg:x="80233" fg:w="107"/><text x="15.6681%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (116 samples, 0.02%)</title><rect x="15.4172%" y="645" width="0.0223%" height="15" fill="rgb(209,8,3)" fg:x="80228" fg:w="116"/><text x="15.6672%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (129 samples, 0.02%)</title><rect x="15.4149%" y="709" width="0.0248%" height="15" fill="rgb(214,25,53)" fg:x="80216" fg:w="129"/><text x="15.6649%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (129 samples, 0.02%)</title><rect x="15.4149%" y="693" width="0.0248%" height="15" fill="rgb(254,186,54)" fg:x="80216" fg:w="129"/><text x="15.6649%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (129 samples, 0.02%)</title><rect x="15.4149%" y="677" width="0.0248%" height="15" fill="rgb(208,174,49)" fg:x="80216" fg:w="129"/><text x="15.6649%" y="687.50"></text></g><g><title>JavaThread::oops_do (128 samples, 0.02%)</title><rect x="15.4151%" y="661" width="0.0246%" height="15" fill="rgb(233,191,51)" fg:x="80217" fg:w="128"/><text x="15.6651%" y="671.50"></text></g><g><title>G1ParTask::work (999 samples, 0.19%)</title><rect x="15.2542%" y="741" width="0.1920%" height="15" fill="rgb(222,134,10)" fg:x="79380" fg:w="999"/><text x="15.5042%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (166 samples, 0.03%)</title><rect x="15.4143%" y="725" width="0.0319%" height="15" fill="rgb(230,226,20)" fg:x="80213" fg:w="166"/><text x="15.6643%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (55 samples, 0.01%)</title><rect x="15.4481%" y="741" width="0.0106%" height="15" fill="rgb(251,111,25)" fg:x="80389" fg:w="55"/><text x="15.6981%" y="751.50"></text></g><g><title>__GI___clone (1,147 samples, 0.22%)</title><rect x="15.2536%" y="821" width="0.2204%" height="15" fill="rgb(224,40,46)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="831.50"></text></g><g><title>start_thread (1,147 samples, 0.22%)</title><rect x="15.2536%" y="805" width="0.2204%" height="15" fill="rgb(236,108,47)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="815.50"></text></g><g><title>thread_native_entry (1,147 samples, 0.22%)</title><rect x="15.2536%" y="789" width="0.2204%" height="15" fill="rgb(234,93,0)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="799.50"></text></g><g><title>Thread::call_run (1,147 samples, 0.22%)</title><rect x="15.2536%" y="773" width="0.2204%" height="15" fill="rgb(224,213,32)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="783.50"></text></g><g><title>GangWorker::loop (1,147 samples, 0.22%)</title><rect x="15.2536%" y="757" width="0.2204%" height="15" fill="rgb(251,11,48)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.01%)</title><rect x="15.4639%" y="741" width="0.0102%" height="15" fill="rgb(236,173,5)" fg:x="80471" fg:w="53"/><text x="15.7139%" y="751.50"></text></g><g><title>GC_Thread#3 (1,175 samples, 0.23%)</title><rect x="15.2486%" y="837" width="0.2258%" height="15" fill="rgb(230,95,12)" fg:x="79351" fg:w="1175"/><text x="15.4986%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (64 samples, 0.01%)</title><rect x="15.5344%" y="677" width="0.0123%" height="15" fill="rgb(232,209,1)" fg:x="80838" fg:w="64"/><text x="15.7844%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (192 samples, 0.04%)</title><rect x="15.5157%" y="693" width="0.0369%" height="15" fill="rgb(232,6,1)" fg:x="80741" fg:w="192"/><text x="15.7657%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (363 samples, 0.07%)</title><rect x="15.4844%" y="709" width="0.0698%" height="15" fill="rgb(210,224,50)" fg:x="80578" fg:w="363"/><text x="15.7344%" y="719.50"></text></g><g><title>SpinPause (77 samples, 0.01%)</title><rect x="15.5563%" y="709" width="0.0148%" height="15" fill="rgb(228,127,35)" fg:x="80952" fg:w="77"/><text x="15.8063%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (473 samples, 0.09%)</title><rect x="15.4817%" y="725" width="0.0909%" height="15" fill="rgb(245,102,45)" fg:x="80564" fg:w="473"/><text x="15.7317%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (114 samples, 0.02%)</title><rect x="15.5867%" y="613" width="0.0219%" height="15" fill="rgb(214,1,49)" fg:x="81110" fg:w="114"/><text x="15.8367%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (158 samples, 0.03%)</title><rect x="15.5784%" y="629" width="0.0304%" height="15" fill="rgb(226,163,40)" fg:x="81067" fg:w="158"/><text x="15.8284%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (201 samples, 0.04%)</title><rect x="15.5732%" y="645" width="0.0386%" height="15" fill="rgb(239,212,28)" fg:x="81040" fg:w="201"/><text x="15.8232%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (223 samples, 0.04%)</title><rect x="15.5728%" y="693" width="0.0429%" height="15" fill="rgb(220,20,13)" fg:x="81038" fg:w="223"/><text x="15.8228%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (223 samples, 0.04%)</title><rect x="15.5728%" y="677" width="0.0429%" height="15" fill="rgb(210,164,35)" fg:x="81038" fg:w="223"/><text x="15.8228%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (223 samples, 0.04%)</title><rect x="15.5728%" y="661" width="0.0429%" height="15" fill="rgb(248,109,41)" fg:x="81038" fg:w="223"/><text x="15.8228%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (229 samples, 0.04%)</title><rect x="15.5728%" y="725" width="0.0440%" height="15" fill="rgb(238,23,50)" fg:x="81038" fg:w="229"/><text x="15.8228%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (229 samples, 0.04%)</title><rect x="15.5728%" y="709" width="0.0440%" height="15" fill="rgb(211,48,49)" fg:x="81038" fg:w="229"/><text x="15.8228%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (55 samples, 0.01%)</title><rect x="15.6170%" y="677" width="0.0106%" height="15" fill="rgb(223,36,21)" fg:x="81268" fg:w="55"/><text x="15.8670%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (61 samples, 0.01%)</title><rect x="15.6168%" y="725" width="0.0117%" height="15" fill="rgb(207,123,46)" fg:x="81267" fg:w="61"/><text x="15.8668%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (61 samples, 0.01%)</title><rect x="15.6168%" y="709" width="0.0117%" height="15" fill="rgb(240,218,32)" fg:x="81267" fg:w="61"/><text x="15.8668%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (61 samples, 0.01%)</title><rect x="15.6168%" y="693" width="0.0117%" height="15" fill="rgb(252,5,43)" fg:x="81267" fg:w="61"/><text x="15.8668%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (156 samples, 0.03%)</title><rect x="15.6416%" y="629" width="0.0300%" height="15" fill="rgb(252,84,19)" fg:x="81396" fg:w="156"/><text x="15.8916%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (121 samples, 0.02%)</title><rect x="15.6483%" y="613" width="0.0233%" height="15" fill="rgb(243,152,39)" fg:x="81431" fg:w="121"/><text x="15.8983%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (223 samples, 0.04%)</title><rect x="15.6291%" y="693" width="0.0429%" height="15" fill="rgb(234,160,15)" fg:x="81331" fg:w="223"/><text x="15.8791%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (215 samples, 0.04%)</title><rect x="15.6307%" y="677" width="0.0413%" height="15" fill="rgb(237,34,20)" fg:x="81339" fg:w="215"/><text x="15.8807%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (215 samples, 0.04%)</title><rect x="15.6307%" y="661" width="0.0413%" height="15" fill="rgb(229,97,13)" fg:x="81339" fg:w="215"/><text x="15.8807%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (190 samples, 0.04%)</title><rect x="15.6355%" y="645" width="0.0365%" height="15" fill="rgb(234,71,50)" fg:x="81364" fg:w="190"/><text x="15.8855%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (267 samples, 0.05%)</title><rect x="15.6291%" y="709" width="0.0513%" height="15" fill="rgb(253,155,4)" fg:x="81331" fg:w="267"/><text x="15.8791%" y="719.50"></text></g><g><title>G1ParTask::work (1,037 samples, 0.20%)</title><rect x="15.4817%" y="741" width="0.1993%" height="15" fill="rgb(222,185,37)" fg:x="80564" fg:w="1037"/><text x="15.7317%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (273 samples, 0.05%)</title><rect x="15.6285%" y="725" width="0.0525%" height="15" fill="rgb(251,177,13)" fg:x="81328" fg:w="273"/><text x="15.8785%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="15.6835%" y="741" width="0.0117%" height="15" fill="rgb(250,179,40)" fg:x="81614" fg:w="61"/><text x="15.9335%" y="751.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="15.7012%" y="645" width="0.0110%" height="15" fill="rgb(242,44,2)" fg:x="81706" fg:w="57"/><text x="15.9512%" y="655.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.01%)</title><rect x="15.7012%" y="629" width="0.0110%" height="15" fill="rgb(216,177,13)" fg:x="81706" fg:w="57"/><text x="15.9512%" y="639.50"></text></g><g><title>do_futex (57 samples, 0.01%)</title><rect x="15.7012%" y="613" width="0.0110%" height="15" fill="rgb(216,106,43)" fg:x="81706" fg:w="57"/><text x="15.9512%" y="623.50"></text></g><g><title>futex_wait (55 samples, 0.01%)</title><rect x="15.7016%" y="597" width="0.0106%" height="15" fill="rgb(216,183,2)" fg:x="81708" fg:w="55"/><text x="15.9516%" y="607.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.01%)</title><rect x="15.7018%" y="581" width="0.0104%" height="15" fill="rgb(249,75,3)" fg:x="81709" fg:w="54"/><text x="15.9518%" y="591.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="15.7018%" y="565" width="0.0104%" height="15" fill="rgb(219,67,39)" fg:x="81709" fg:w="54"/><text x="15.9518%" y="575.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="15.7018%" y="549" width="0.0104%" height="15" fill="rgb(253,228,2)" fg:x="81709" fg:w="54"/><text x="15.9518%" y="559.50"></text></g><g><title>GC_Thread#4 (1,238 samples, 0.24%)</title><rect x="15.4744%" y="837" width="0.2379%" height="15" fill="rgb(235,138,27)" fg:x="80526" fg:w="1238"/><text x="15.7244%" y="847.50"></text></g><g><title>__GI___clone (1,212 samples, 0.23%)</title><rect x="15.4794%" y="821" width="0.2329%" height="15" fill="rgb(236,97,51)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="831.50"></text></g><g><title>start_thread (1,212 samples, 0.23%)</title><rect x="15.4794%" y="805" width="0.2329%" height="15" fill="rgb(240,80,30)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="815.50"></text></g><g><title>thread_native_entry (1,212 samples, 0.23%)</title><rect x="15.4794%" y="789" width="0.2329%" height="15" fill="rgb(230,178,19)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="799.50"></text></g><g><title>Thread::call_run (1,212 samples, 0.23%)</title><rect x="15.4794%" y="773" width="0.2329%" height="15" fill="rgb(210,190,27)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="783.50"></text></g><g><title>GangWorker::loop (1,212 samples, 0.23%)</title><rect x="15.4794%" y="757" width="0.2329%" height="15" fill="rgb(222,107,31)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (60 samples, 0.01%)</title><rect x="15.7008%" y="741" width="0.0115%" height="15" fill="rgb(216,127,34)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="751.50"></text></g><g><title>PosixSemaphore::wait (60 samples, 0.01%)</title><rect x="15.7008%" y="725" width="0.0115%" height="15" fill="rgb(234,116,52)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="735.50"></text></g><g><title>__new_sem_wait_slow (60 samples, 0.01%)</title><rect x="15.7008%" y="709" width="0.0115%" height="15" fill="rgb(222,124,15)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="719.50"></text></g><g><title>do_futex_wait (60 samples, 0.01%)</title><rect x="15.7008%" y="693" width="0.0115%" height="15" fill="rgb(231,179,28)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.01%)</title><rect x="15.7008%" y="677" width="0.0115%" height="15" fill="rgb(226,93,45)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="15.7012%" y="661" width="0.0111%" height="15" fill="rgb(215,8,51)" fg:x="81706" fg:w="58"/><text x="15.9512%" y="671.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (72 samples, 0.01%)</title><rect x="15.7661%" y="677" width="0.0138%" height="15" fill="rgb(223,106,5)" fg:x="82044" fg:w="72"/><text x="16.0161%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (196 samples, 0.04%)</title><rect x="15.7500%" y="693" width="0.0377%" height="15" fill="rgb(250,191,5)" fg:x="81960" fg:w="196"/><text x="16.0000%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (337 samples, 0.06%)</title><rect x="15.7237%" y="709" width="0.0648%" height="15" fill="rgb(242,132,44)" fg:x="81823" fg:w="337"/><text x="15.9737%" y="719.50"></text></g><g><title>SpinPause (108 samples, 0.02%)</title><rect x="15.7900%" y="709" width="0.0208%" height="15" fill="rgb(251,152,29)" fg:x="82168" fg:w="108"/><text x="16.0400%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (483 samples, 0.09%)</title><rect x="15.7196%" y="725" width="0.0928%" height="15" fill="rgb(218,179,5)" fg:x="81802" fg:w="483"/><text x="15.9696%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (195 samples, 0.04%)</title><rect x="15.8196%" y="629" width="0.0375%" height="15" fill="rgb(227,67,19)" fg:x="82322" fg:w="195"/><text x="16.0696%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (151 samples, 0.03%)</title><rect x="15.8280%" y="613" width="0.0290%" height="15" fill="rgb(233,119,31)" fg:x="82366" fg:w="151"/><text x="16.0780%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (247 samples, 0.05%)</title><rect x="15.8128%" y="645" width="0.0475%" height="15" fill="rgb(241,120,22)" fg:x="82287" fg:w="247"/><text x="16.0628%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (292 samples, 0.06%)</title><rect x="15.8126%" y="693" width="0.0561%" height="15" fill="rgb(224,102,30)" fg:x="82286" fg:w="292"/><text x="16.0626%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (292 samples, 0.06%)</title><rect x="15.8126%" y="677" width="0.0561%" height="15" fill="rgb(210,164,37)" fg:x="82286" fg:w="292"/><text x="16.0626%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (292 samples, 0.06%)</title><rect x="15.8126%" y="661" width="0.0561%" height="15" fill="rgb(226,191,16)" fg:x="82286" fg:w="292"/><text x="16.0626%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (298 samples, 0.06%)</title><rect x="15.8126%" y="725" width="0.0573%" height="15" fill="rgb(214,40,45)" fg:x="82286" fg:w="298"/><text x="16.0626%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (298 samples, 0.06%)</title><rect x="15.8126%" y="709" width="0.0573%" height="15" fill="rgb(244,29,26)" fg:x="82286" fg:w="298"/><text x="16.0626%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="15.8699%" y="725" width="0.0110%" height="15" fill="rgb(216,16,5)" fg:x="82584" fg:w="57"/><text x="16.1199%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="15.8699%" y="709" width="0.0110%" height="15" fill="rgb(249,76,35)" fg:x="82584" fg:w="57"/><text x="16.1199%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="15.8699%" y="693" width="0.0110%" height="15" fill="rgb(207,11,44)" fg:x="82584" fg:w="57"/><text x="16.1199%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (56 samples, 0.01%)</title><rect x="15.8841%" y="629" width="0.0108%" height="15" fill="rgb(228,190,49)" fg:x="82658" fg:w="56"/><text x="16.1341%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (68 samples, 0.01%)</title><rect x="15.8824%" y="709" width="0.0131%" height="15" fill="rgb(214,173,12)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (68 samples, 0.01%)</title><rect x="15.8824%" y="693" width="0.0131%" height="15" fill="rgb(218,26,35)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (68 samples, 0.01%)</title><rect x="15.8824%" y="677" width="0.0131%" height="15" fill="rgb(220,200,19)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="687.50"></text></g><g><title>JavaThread::oops_do (68 samples, 0.01%)</title><rect x="15.8824%" y="661" width="0.0131%" height="15" fill="rgb(239,95,49)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (59 samples, 0.01%)</title><rect x="15.8841%" y="645" width="0.0113%" height="15" fill="rgb(235,85,53)" fg:x="82658" fg:w="59"/><text x="16.1341%" y="655.50"></text></g><g><title>G1ParTask::work (952 samples, 0.18%)</title><rect x="15.7196%" y="741" width="0.1829%" height="15" fill="rgb(233,133,31)" fg:x="81802" fg:w="952"/><text x="15.9696%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (113 samples, 0.02%)</title><rect x="15.8809%" y="725" width="0.0217%" height="15" fill="rgb(218,25,20)" fg:x="82641" fg:w="113"/><text x="16.1309%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="15.9033%" y="741" width="0.0117%" height="15" fill="rgb(252,210,38)" fg:x="82758" fg:w="61"/><text x="16.1533%" y="751.50"></text></g><g><title>__GI___clone (1,104 samples, 0.21%)</title><rect x="15.7173%" y="821" width="0.2122%" height="15" fill="rgb(242,134,21)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="831.50"></text></g><g><title>start_thread (1,104 samples, 0.21%)</title><rect x="15.7173%" y="805" width="0.2122%" height="15" fill="rgb(213,28,48)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="815.50"></text></g><g><title>thread_native_entry (1,104 samples, 0.21%)</title><rect x="15.7173%" y="789" width="0.2122%" height="15" fill="rgb(250,196,2)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="799.50"></text></g><g><title>Thread::call_run (1,104 samples, 0.21%)</title><rect x="15.7173%" y="773" width="0.2122%" height="15" fill="rgb(227,5,17)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="783.50"></text></g><g><title>GangWorker::loop (1,104 samples, 0.21%)</title><rect x="15.7173%" y="757" width="0.2122%" height="15" fill="rgb(221,226,24)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (54 samples, 0.01%)</title><rect x="15.9191%" y="741" width="0.0104%" height="15" fill="rgb(211,5,48)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="751.50"></text></g><g><title>PosixSemaphore::wait (54 samples, 0.01%)</title><rect x="15.9191%" y="725" width="0.0104%" height="15" fill="rgb(219,150,6)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="735.50"></text></g><g><title>__new_sem_wait_slow (54 samples, 0.01%)</title><rect x="15.9191%" y="709" width="0.0104%" height="15" fill="rgb(251,46,16)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="719.50"></text></g><g><title>do_futex_wait (54 samples, 0.01%)</title><rect x="15.9191%" y="693" width="0.0104%" height="15" fill="rgb(220,204,40)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (54 samples, 0.01%)</title><rect x="15.9191%" y="677" width="0.0104%" height="15" fill="rgb(211,85,2)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="687.50"></text></g><g><title>GC_Thread#5 (1,131 samples, 0.22%)</title><rect x="15.7123%" y="837" width="0.2173%" height="15" fill="rgb(229,17,7)" fg:x="81764" fg:w="1131"/><text x="15.9623%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (163 samples, 0.03%)</title><rect x="15.9641%" y="693" width="0.0313%" height="15" fill="rgb(239,72,28)" fg:x="83074" fg:w="163"/><text x="16.2141%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (306 samples, 0.06%)</title><rect x="15.9377%" y="709" width="0.0588%" height="15" fill="rgb(230,47,54)" fg:x="82937" fg:w="306"/><text x="16.1877%" y="719.50"></text></g><g><title>SpinPause (71 samples, 0.01%)</title><rect x="15.9985%" y="709" width="0.0136%" height="15" fill="rgb(214,50,8)" fg:x="83253" fg:w="71"/><text x="16.2485%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (408 samples, 0.08%)</title><rect x="15.9339%" y="725" width="0.0784%" height="15" fill="rgb(216,198,43)" fg:x="82917" fg:w="408"/><text x="16.1839%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (138 samples, 0.03%)</title><rect x="16.0177%" y="629" width="0.0265%" height="15" fill="rgb(234,20,35)" fg:x="83353" fg:w="138"/><text x="16.2677%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (97 samples, 0.02%)</title><rect x="16.0256%" y="613" width="0.0186%" height="15" fill="rgb(254,45,19)" fg:x="83394" fg:w="97"/><text x="16.2756%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (173 samples, 0.03%)</title><rect x="16.0125%" y="645" width="0.0332%" height="15" fill="rgb(219,14,44)" fg:x="83326" fg:w="173"/><text x="16.2625%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (200 samples, 0.04%)</title><rect x="16.0123%" y="693" width="0.0384%" height="15" fill="rgb(217,220,26)" fg:x="83325" fg:w="200"/><text x="16.2623%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (200 samples, 0.04%)</title><rect x="16.0123%" y="677" width="0.0384%" height="15" fill="rgb(213,158,28)" fg:x="83325" fg:w="200"/><text x="16.2623%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (200 samples, 0.04%)</title><rect x="16.0123%" y="661" width="0.0384%" height="15" fill="rgb(252,51,52)" fg:x="83325" fg:w="200"/><text x="16.2623%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (204 samples, 0.04%)</title><rect x="16.0123%" y="725" width="0.0392%" height="15" fill="rgb(246,89,16)" fg:x="83325" fg:w="204"/><text x="16.2623%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (204 samples, 0.04%)</title><rect x="16.0123%" y="709" width="0.0392%" height="15" fill="rgb(216,158,49)" fg:x="83325" fg:w="204"/><text x="16.2623%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (64 samples, 0.01%)</title><rect x="16.0515%" y="725" width="0.0123%" height="15" fill="rgb(236,107,19)" fg:x="83529" fg:w="64"/><text x="16.3015%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (64 samples, 0.01%)</title><rect x="16.0515%" y="709" width="0.0123%" height="15" fill="rgb(228,185,30)" fg:x="83529" fg:w="64"/><text x="16.3015%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (64 samples, 0.01%)</title><rect x="16.0515%" y="693" width="0.0123%" height="15" fill="rgb(246,134,8)" fg:x="83529" fg:w="64"/><text x="16.3015%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (64 samples, 0.01%)</title><rect x="16.0638%" y="693" width="0.0123%" height="15" fill="rgb(214,143,50)" fg:x="83593" fg:w="64"/><text x="16.3138%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (63 samples, 0.01%)</title><rect x="16.0640%" y="677" width="0.0121%" height="15" fill="rgb(228,75,8)" fg:x="83594" fg:w="63"/><text x="16.3140%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (63 samples, 0.01%)</title><rect x="16.0640%" y="661" width="0.0121%" height="15" fill="rgb(207,175,4)" fg:x="83594" fg:w="63"/><text x="16.3140%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (61 samples, 0.01%)</title><rect x="16.0644%" y="645" width="0.0117%" height="15" fill="rgb(205,108,24)" fg:x="83596" fg:w="61"/><text x="16.3144%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (194 samples, 0.04%)</title><rect x="16.0638%" y="709" width="0.0373%" height="15" fill="rgb(244,120,49)" fg:x="83593" fg:w="194"/><text x="16.3138%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (130 samples, 0.02%)</title><rect x="16.0761%" y="693" width="0.0250%" height="15" fill="rgb(223,47,38)" fg:x="83657" fg:w="130"/><text x="16.3261%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (130 samples, 0.02%)</title><rect x="16.0761%" y="677" width="0.0250%" height="15" fill="rgb(229,179,11)" fg:x="83657" fg:w="130"/><text x="16.3261%" y="687.50"></text></g><g><title>JavaThread::oops_do (125 samples, 0.02%)</title><rect x="16.0771%" y="661" width="0.0240%" height="15" fill="rgb(231,122,1)" fg:x="83662" fg:w="125"/><text x="16.3271%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (74 samples, 0.01%)</title><rect x="16.0869%" y="645" width="0.0142%" height="15" fill="rgb(245,119,9)" fg:x="83713" fg:w="74"/><text x="16.3369%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (73 samples, 0.01%)</title><rect x="16.0871%" y="629" width="0.0140%" height="15" fill="rgb(241,163,25)" fg:x="83714" fg:w="73"/><text x="16.3371%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="16.0888%" y="613" width="0.0123%" height="15" fill="rgb(217,214,3)" fg:x="83723" fg:w="64"/><text x="16.3388%" y="623.50"></text></g><g><title>G1ParTask::work (893 samples, 0.17%)</title><rect x="15.9337%" y="741" width="0.1716%" height="15" fill="rgb(240,86,28)" fg:x="82916" fg:w="893"/><text x="16.1837%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (216 samples, 0.04%)</title><rect x="16.0638%" y="725" width="0.0415%" height="15" fill="rgb(215,47,9)" fg:x="83593" fg:w="216"/><text x="16.3138%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="16.1055%" y="741" width="0.0117%" height="15" fill="rgb(252,25,45)" fg:x="83810" fg:w="61"/><text x="16.3555%" y="751.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="16.1220%" y="645" width="0.0104%" height="15" fill="rgb(251,164,9)" fg:x="83896" fg:w="54"/><text x="16.3720%" y="655.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.01%)</title><rect x="16.1220%" y="629" width="0.0104%" height="15" fill="rgb(233,194,0)" fg:x="83896" fg:w="54"/><text x="16.3720%" y="639.50"></text></g><g><title>do_futex (53 samples, 0.01%)</title><rect x="16.1222%" y="613" width="0.0102%" height="15" fill="rgb(249,111,24)" fg:x="83897" fg:w="53"/><text x="16.3722%" y="623.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="16.1222%" y="597" width="0.0102%" height="15" fill="rgb(250,223,3)" fg:x="83897" fg:w="53"/><text x="16.3722%" y="607.50"></text></g><g><title>__GI___clone (1,043 samples, 0.20%)</title><rect x="15.9324%" y="821" width="0.2004%" height="15" fill="rgb(236,178,37)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="831.50"></text></g><g><title>start_thread (1,043 samples, 0.20%)</title><rect x="15.9324%" y="805" width="0.2004%" height="15" fill="rgb(241,158,50)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="815.50"></text></g><g><title>thread_native_entry (1,043 samples, 0.20%)</title><rect x="15.9324%" y="789" width="0.2004%" height="15" fill="rgb(213,121,41)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="799.50"></text></g><g><title>Thread::call_run (1,043 samples, 0.20%)</title><rect x="15.9324%" y="773" width="0.2004%" height="15" fill="rgb(240,92,3)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="783.50"></text></g><g><title>GangWorker::loop (1,043 samples, 0.20%)</title><rect x="15.9324%" y="757" width="0.2004%" height="15" fill="rgb(205,123,3)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (59 samples, 0.01%)</title><rect x="16.1215%" y="741" width="0.0113%" height="15" fill="rgb(205,97,47)" fg:x="83893" fg:w="59"/><text x="16.3715%" y="751.50"></text></g><g><title>PosixSemaphore::wait (59 samples, 0.01%)</title><rect x="16.1215%" y="725" width="0.0113%" height="15" fill="rgb(247,152,14)" fg:x="83893" fg:w="59"/><text x="16.3715%" y="735.50"></text></g><g><title>__new_sem_wait_slow (58 samples, 0.01%)</title><rect x="16.1216%" y="709" width="0.0111%" height="15" fill="rgb(248,195,53)" fg:x="83894" fg:w="58"/><text x="16.3716%" y="719.50"></text></g><g><title>do_futex_wait (58 samples, 0.01%)</title><rect x="16.1216%" y="693" width="0.0111%" height="15" fill="rgb(226,201,16)" fg:x="83894" fg:w="58"/><text x="16.3716%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (58 samples, 0.01%)</title><rect x="16.1216%" y="677" width="0.0111%" height="15" fill="rgb(205,98,0)" fg:x="83894" fg:w="58"/><text x="16.3716%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="16.1220%" y="661" width="0.0108%" height="15" fill="rgb(214,191,48)" fg:x="83896" fg:w="56"/><text x="16.3720%" y="671.50"></text></g><g><title>GC_Thread#6 (1,104 samples, 0.21%)</title><rect x="15.9297%" y="837" width="0.2122%" height="15" fill="rgb(237,112,39)" fg:x="82895" fg:w="1104"/><text x="16.1797%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (61 samples, 0.01%)</title><rect x="16.1985%" y="677" width="0.0117%" height="15" fill="rgb(247,203,27)" fg:x="84294" fg:w="61"/><text x="16.4485%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (172 samples, 0.03%)</title><rect x="16.1833%" y="693" width="0.0331%" height="15" fill="rgb(235,124,28)" fg:x="84215" fg:w="172"/><text x="16.4333%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (340 samples, 0.07%)</title><rect x="16.1524%" y="709" width="0.0653%" height="15" fill="rgb(208,207,46)" fg:x="84054" fg:w="340"/><text x="16.4024%" y="719.50"></text></g><g><title>SpinPause (106 samples, 0.02%)</title><rect x="16.2197%" y="709" width="0.0204%" height="15" fill="rgb(234,176,4)" fg:x="84404" fg:w="106"/><text x="16.4697%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (479 samples, 0.09%)</title><rect x="16.1489%" y="725" width="0.0920%" height="15" fill="rgb(230,133,28)" fg:x="84036" fg:w="479"/><text x="16.3989%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (192 samples, 0.04%)</title><rect x="16.2498%" y="629" width="0.0369%" height="15" fill="rgb(211,137,40)" fg:x="84561" fg:w="192"/><text x="16.4998%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (150 samples, 0.03%)</title><rect x="16.2579%" y="613" width="0.0288%" height="15" fill="rgb(254,35,13)" fg:x="84603" fg:w="150"/><text x="16.5079%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (250 samples, 0.05%)</title><rect x="16.2416%" y="645" width="0.0480%" height="15" fill="rgb(225,49,51)" fg:x="84518" fg:w="250"/><text x="16.4916%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (284 samples, 0.05%)</title><rect x="16.2412%" y="693" width="0.0546%" height="15" fill="rgb(251,10,15)" fg:x="84516" fg:w="284"/><text x="16.4912%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (284 samples, 0.05%)</title><rect x="16.2412%" y="677" width="0.0546%" height="15" fill="rgb(228,207,15)" fg:x="84516" fg:w="284"/><text x="16.4912%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (283 samples, 0.05%)</title><rect x="16.2414%" y="661" width="0.0544%" height="15" fill="rgb(241,99,19)" fg:x="84517" fg:w="283"/><text x="16.4914%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (293 samples, 0.06%)</title><rect x="16.2412%" y="725" width="0.0563%" height="15" fill="rgb(207,104,49)" fg:x="84516" fg:w="293"/><text x="16.4912%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (293 samples, 0.06%)</title><rect x="16.2412%" y="709" width="0.0563%" height="15" fill="rgb(234,99,18)" fg:x="84516" fg:w="293"/><text x="16.4912%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (56 samples, 0.01%)</title><rect x="16.2977%" y="677" width="0.0108%" height="15" fill="rgb(213,191,49)" fg:x="84810" fg:w="56"/><text x="16.5477%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (54 samples, 0.01%)</title><rect x="16.2981%" y="661" width="0.0104%" height="15" fill="rgb(210,226,19)" fg:x="84812" fg:w="54"/><text x="16.5481%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (66 samples, 0.01%)</title><rect x="16.2975%" y="725" width="0.0127%" height="15" fill="rgb(229,97,18)" fg:x="84809" fg:w="66"/><text x="16.5475%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (66 samples, 0.01%)</title><rect x="16.2975%" y="709" width="0.0127%" height="15" fill="rgb(211,167,15)" fg:x="84809" fg:w="66"/><text x="16.5475%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (66 samples, 0.01%)</title><rect x="16.2975%" y="693" width="0.0127%" height="15" fill="rgb(210,169,34)" fg:x="84809" fg:w="66"/><text x="16.5475%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (58 samples, 0.01%)</title><rect x="16.3104%" y="693" width="0.0111%" height="15" fill="rgb(241,121,31)" fg:x="84876" fg:w="58"/><text x="16.5604%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (57 samples, 0.01%)</title><rect x="16.3105%" y="677" width="0.0110%" height="15" fill="rgb(232,40,11)" fg:x="84877" fg:w="57"/><text x="16.5605%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (57 samples, 0.01%)</title><rect x="16.3105%" y="661" width="0.0110%" height="15" fill="rgb(205,86,26)" fg:x="84877" fg:w="57"/><text x="16.5605%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (110 samples, 0.02%)</title><rect x="16.3104%" y="709" width="0.0211%" height="15" fill="rgb(231,126,28)" fg:x="84876" fg:w="110"/><text x="16.5604%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (125 samples, 0.02%)</title><rect x="16.3102%" y="725" width="0.0240%" height="15" fill="rgb(219,221,18)" fg:x="84875" fg:w="125"/><text x="16.5602%" y="735.50"></text></g><g><title>G1ParTask::work (965 samples, 0.19%)</title><rect x="16.1489%" y="741" width="0.1854%" height="15" fill="rgb(211,40,0)" fg:x="84036" fg:w="965"/><text x="16.3989%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (53 samples, 0.01%)</title><rect x="16.3355%" y="741" width="0.0102%" height="15" fill="rgb(239,85,43)" fg:x="85007" fg:w="53"/><text x="16.5855%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="16.3528%" y="517" width="0.0110%" height="15" fill="rgb(231,55,21)" fg:x="85097" fg:w="57"/><text x="16.6028%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="16.3530%" y="501" width="0.0108%" height="15" fill="rgb(225,184,43)" fg:x="85098" fg:w="56"/><text x="16.6030%" y="511.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="16.3530%" y="485" width="0.0108%" height="15" fill="rgb(251,158,41)" fg:x="85098" fg:w="56"/><text x="16.6030%" y="495.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="16.3524%" y="533" width="0.0115%" height="15" fill="rgb(234,159,37)" fg:x="85095" fg:w="60"/><text x="16.6024%" y="543.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="16.3513%" y="645" width="0.0135%" height="15" fill="rgb(216,204,22)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="655.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.01%)</title><rect x="16.3513%" y="629" width="0.0135%" height="15" fill="rgb(214,17,3)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="639.50"></text></g><g><title>do_futex (70 samples, 0.01%)</title><rect x="16.3513%" y="613" width="0.0135%" height="15" fill="rgb(212,111,17)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="623.50"></text></g><g><title>futex_wait (70 samples, 0.01%)</title><rect x="16.3513%" y="597" width="0.0135%" height="15" fill="rgb(221,157,24)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="607.50"></text></g><g><title>futex_wait_queue_me (70 samples, 0.01%)</title><rect x="16.3513%" y="581" width="0.0135%" height="15" fill="rgb(252,16,13)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="591.50"></text></g><g><title>schedule (70 samples, 0.01%)</title><rect x="16.3513%" y="565" width="0.0135%" height="15" fill="rgb(221,62,2)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="575.50"></text></g><g><title>__schedule (70 samples, 0.01%)</title><rect x="16.3513%" y="549" width="0.0135%" height="15" fill="rgb(247,87,22)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="16.3513%" y="661" width="0.0138%" height="15" fill="rgb(215,73,9)" fg:x="85089" fg:w="72"/><text x="16.6013%" y="671.50"></text></g><g><title>GC_Thread#7 (1,163 samples, 0.22%)</title><rect x="16.1418%" y="837" width="0.2235%" height="15" fill="rgb(207,175,33)" fg:x="83999" fg:w="1163"/><text x="16.3918%" y="847.50"></text></g><g><title>__GI___clone (1,141 samples, 0.22%)</title><rect x="16.1461%" y="821" width="0.2193%" height="15" fill="rgb(243,129,54)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="831.50"></text></g><g><title>start_thread (1,141 samples, 0.22%)</title><rect x="16.1461%" y="805" width="0.2193%" height="15" fill="rgb(227,119,45)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="815.50"></text></g><g><title>thread_native_entry (1,141 samples, 0.22%)</title><rect x="16.1461%" y="789" width="0.2193%" height="15" fill="rgb(205,109,36)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="799.50"></text></g><g><title>Thread::call_run (1,141 samples, 0.22%)</title><rect x="16.1461%" y="773" width="0.2193%" height="15" fill="rgb(205,6,39)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="783.50"></text></g><g><title>GangWorker::loop (1,141 samples, 0.22%)</title><rect x="16.1461%" y="757" width="0.2193%" height="15" fill="rgb(221,32,16)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (77 samples, 0.01%)</title><rect x="16.3505%" y="741" width="0.0148%" height="15" fill="rgb(228,144,50)" fg:x="85085" fg:w="77"/><text x="16.6005%" y="751.50"></text></g><g><title>PosixSemaphore::wait (77 samples, 0.01%)</title><rect x="16.3505%" y="725" width="0.0148%" height="15" fill="rgb(229,201,53)" fg:x="85085" fg:w="77"/><text x="16.6005%" y="735.50"></text></g><g><title>__new_sem_wait_slow (76 samples, 0.01%)</title><rect x="16.3507%" y="709" width="0.0146%" height="15" fill="rgb(249,153,27)" fg:x="85086" fg:w="76"/><text x="16.6007%" y="719.50"></text></g><g><title>do_futex_wait (74 samples, 0.01%)</title><rect x="16.3511%" y="693" width="0.0142%" height="15" fill="rgb(227,106,25)" fg:x="85088" fg:w="74"/><text x="16.6011%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (74 samples, 0.01%)</title><rect x="16.3511%" y="677" width="0.0142%" height="15" fill="rgb(230,65,29)" fg:x="85088" fg:w="74"/><text x="16.6011%" y="687.50"></text></g><g><title>[perf-261576.map] (115 samples, 0.02%)</title><rect x="16.3740%" y="821" width="0.0221%" height="15" fill="rgb(221,57,46)" fg:x="85207" fg:w="115"/><text x="16.6240%" y="831.50"></text></g><g><title>Service_Thread (137 samples, 0.03%)</title><rect x="16.3738%" y="837" width="0.0263%" height="15" fill="rgb(229,161,17)" fg:x="85206" fg:w="137"/><text x="16.6238%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.03%)</title><rect x="16.4422%" y="485" width="0.0315%" height="15" fill="rgb(222,213,11)" fg:x="85562" fg:w="164"/><text x="16.6922%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (160 samples, 0.03%)</title><rect x="16.4430%" y="469" width="0.0307%" height="15" fill="rgb(235,35,13)" fg:x="85566" fg:w="160"/><text x="16.6930%" y="479.50"></text></g><g><title>native_write_msr (159 samples, 0.03%)</title><rect x="16.4431%" y="453" width="0.0306%" height="15" fill="rgb(233,158,34)" fg:x="85567" fg:w="159"/><text x="16.6931%" y="463.50"></text></g><g><title>finish_task_switch (174 samples, 0.03%)</title><rect x="16.4405%" y="501" width="0.0334%" height="15" fill="rgb(215,151,48)" fg:x="85553" fg:w="174"/><text x="16.6905%" y="511.50"></text></g><g><title>futex_wait_queue_me (293 samples, 0.06%)</title><rect x="16.4251%" y="549" width="0.0563%" height="15" fill="rgb(229,84,14)" fg:x="85473" fg:w="293"/><text x="16.6751%" y="559.50"></text></g><g><title>schedule (268 samples, 0.05%)</title><rect x="16.4299%" y="533" width="0.0515%" height="15" fill="rgb(229,68,14)" fg:x="85498" fg:w="268"/><text x="16.6799%" y="543.50"></text></g><g><title>__schedule (266 samples, 0.05%)</title><rect x="16.4303%" y="517" width="0.0511%" height="15" fill="rgb(243,106,26)" fg:x="85500" fg:w="266"/><text x="16.6803%" y="527.50"></text></g><g><title>do_futex (322 samples, 0.06%)</title><rect x="16.4241%" y="581" width="0.0619%" height="15" fill="rgb(206,45,38)" fg:x="85468" fg:w="322"/><text x="16.6741%" y="591.50"></text></g><g><title>futex_wait (322 samples, 0.06%)</title><rect x="16.4241%" y="565" width="0.0619%" height="15" fill="rgb(226,6,15)" fg:x="85468" fg:w="322"/><text x="16.6741%" y="575.50"></text></g><g><title>do_syscall_64 (334 samples, 0.06%)</title><rect x="16.4226%" y="613" width="0.0642%" height="15" fill="rgb(232,22,54)" fg:x="85460" fg:w="334"/><text x="16.6726%" y="623.50"></text></g><g><title>__x64_sys_futex (333 samples, 0.06%)</title><rect x="16.4228%" y="597" width="0.0640%" height="15" fill="rgb(229,222,32)" fg:x="85461" fg:w="333"/><text x="16.6728%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (343 samples, 0.07%)</title><rect x="16.4226%" y="629" width="0.0659%" height="15" fill="rgb(228,62,29)" fg:x="85460" fg:w="343"/><text x="16.6726%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (368 samples, 0.07%)</title><rect x="16.4182%" y="677" width="0.0707%" height="15" fill="rgb(251,103,34)" fg:x="85437" fg:w="368"/><text x="16.6682%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (367 samples, 0.07%)</title><rect x="16.4184%" y="661" width="0.0705%" height="15" fill="rgb(233,12,30)" fg:x="85438" fg:w="367"/><text x="16.6684%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (357 samples, 0.07%)</title><rect x="16.4203%" y="645" width="0.0686%" height="15" fill="rgb(238,52,0)" fg:x="85448" fg:w="357"/><text x="16.6703%" y="655.50"></text></g><g><title>Monitor::wait (441 samples, 0.08%)</title><rect x="16.4122%" y="725" width="0.0847%" height="15" fill="rgb(223,98,5)" fg:x="85406" fg:w="441"/><text x="16.6622%" y="735.50"></text></g><g><title>Monitor::IWait (436 samples, 0.08%)</title><rect x="16.4132%" y="709" width="0.0838%" height="15" fill="rgb(228,75,37)" fg:x="85411" fg:w="436"/><text x="16.6632%" y="719.50"></text></g><g><title>os::PlatformEvent::park (422 samples, 0.08%)</title><rect x="16.4159%" y="693" width="0.0811%" height="15" fill="rgb(205,115,49)" fg:x="85425" fg:w="422"/><text x="16.6659%" y="703.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (56 samples, 0.01%)</title><rect x="16.5023%" y="677" width="0.0108%" height="15" fill="rgb(250,154,43)" fg:x="85875" fg:w="56"/><text x="16.7523%" y="687.50"></text></g><g><title>NMethodSweeper::process_compiled_method (67 samples, 0.01%)</title><rect x="16.5021%" y="693" width="0.0129%" height="15" fill="rgb(226,43,29)" fg:x="85874" fg:w="67"/><text x="16.7521%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (95 samples, 0.02%)</title><rect x="16.4970%" y="725" width="0.0183%" height="15" fill="rgb(249,228,39)" fg:x="85847" fg:w="95"/><text x="16.7470%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (78 samples, 0.01%)</title><rect x="16.5002%" y="709" width="0.0150%" height="15" fill="rgb(216,79,43)" fg:x="85864" fg:w="78"/><text x="16.7502%" y="719.50"></text></g><g><title>__GI___clone (579 samples, 0.11%)</title><rect x="16.4066%" y="821" width="0.1113%" height="15" fill="rgb(228,95,12)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="831.50"></text></g><g><title>start_thread (579 samples, 0.11%)</title><rect x="16.4066%" y="805" width="0.1113%" height="15" fill="rgb(249,221,15)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="815.50"></text></g><g><title>thread_native_entry (579 samples, 0.11%)</title><rect x="16.4066%" y="789" width="0.1113%" height="15" fill="rgb(233,34,13)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="799.50"></text></g><g><title>Thread::call_run (579 samples, 0.11%)</title><rect x="16.4066%" y="773" width="0.1113%" height="15" fill="rgb(214,103,39)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (579 samples, 0.11%)</title><rect x="16.4066%" y="757" width="0.1113%" height="15" fill="rgb(251,126,39)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (579 samples, 0.11%)</title><rect x="16.4066%" y="741" width="0.1113%" height="15" fill="rgb(214,216,36)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="751.50"></text></g><g><title>Sweeper_thread (620 samples, 0.12%)</title><rect x="16.4018%" y="837" width="0.1191%" height="15" fill="rgb(220,221,8)" fg:x="85352" fg:w="620"/><text x="16.6518%" y="847.50"></text></g><g><title>get_cpu_load (62 samples, 0.01%)</title><rect x="16.6057%" y="805" width="0.0119%" height="15" fill="rgb(240,216,3)" fg:x="86413" fg:w="62"/><text x="16.8557%" y="815.50"></text></g><g><title>get_cpuload_internal (62 samples, 0.01%)</title><rect x="16.6057%" y="789" width="0.0119%" height="15" fill="rgb(232,218,17)" fg:x="86413" fg:w="62"/><text x="16.8557%" y="799.50"></text></g><g><title>get_totalticks (60 samples, 0.01%)</title><rect x="16.6061%" y="773" width="0.0115%" height="15" fill="rgb(229,163,45)" fg:x="86415" fg:w="60"/><text x="16.8561%" y="783.50"></text></g><g><title>[perf-261576.map] (494 samples, 0.09%)</title><rect x="16.5254%" y="821" width="0.0949%" height="15" fill="rgb(231,110,42)" fg:x="85995" fg:w="494"/><text x="16.7754%" y="831.50"></text></g><g><title>Thread-0 (550 samples, 0.11%)</title><rect x="16.5210%" y="837" width="0.1057%" height="15" fill="rgb(208,170,48)" fg:x="85972" fg:w="550"/><text x="16.7710%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="16.6409%" y="485" width="0.0111%" height="15" fill="rgb(239,116,25)" fg:x="86596" fg:w="58"/><text x="16.8909%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.01%)</title><rect x="16.6411%" y="469" width="0.0110%" height="15" fill="rgb(219,200,50)" fg:x="86597" fg:w="57"/><text x="16.8911%" y="479.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="16.6411%" y="453" width="0.0110%" height="15" fill="rgb(245,200,0)" fg:x="86597" fg:w="57"/><text x="16.8911%" y="463.50"></text></g><g><title>finish_task_switch (63 samples, 0.01%)</title><rect x="16.6403%" y="501" width="0.0121%" height="15" fill="rgb(245,119,33)" fg:x="86593" fg:w="63"/><text x="16.8903%" y="511.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="16.6376%" y="613" width="0.0163%" height="15" fill="rgb(231,125,12)" fg:x="86579" fg:w="85"/><text x="16.8876%" y="623.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="16.6376%" y="597" width="0.0163%" height="15" fill="rgb(216,96,41)" fg:x="86579" fg:w="85"/><text x="16.8876%" y="607.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="16.6376%" y="581" width="0.0163%" height="15" fill="rgb(248,43,45)" fg:x="86579" fg:w="85"/><text x="16.8876%" y="591.50"></text></g><g><title>futex_wait (83 samples, 0.02%)</title><rect x="16.6380%" y="565" width="0.0159%" height="15" fill="rgb(217,222,7)" fg:x="86581" fg:w="83"/><text x="16.8880%" y="575.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="16.6384%" y="549" width="0.0156%" height="15" fill="rgb(233,28,6)" fg:x="86583" fg:w="81"/><text x="16.8884%" y="559.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="16.6393%" y="533" width="0.0146%" height="15" fill="rgb(231,218,15)" fg:x="86588" fg:w="76"/><text x="16.8893%" y="543.50"></text></g><g><title>__schedule (76 samples, 0.01%)</title><rect x="16.6393%" y="517" width="0.0146%" height="15" fill="rgb(226,171,48)" fg:x="86588" fg:w="76"/><text x="16.8893%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (101 samples, 0.02%)</title><rect x="16.6353%" y="677" width="0.0194%" height="15" fill="rgb(235,201,9)" fg:x="86567" fg:w="101"/><text x="16.8853%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (101 samples, 0.02%)</title><rect x="16.6353%" y="661" width="0.0194%" height="15" fill="rgb(217,80,15)" fg:x="86567" fg:w="101"/><text x="16.8853%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (95 samples, 0.02%)</title><rect x="16.6365%" y="645" width="0.0183%" height="15" fill="rgb(219,152,8)" fg:x="86573" fg:w="95"/><text x="16.8865%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="16.6376%" y="629" width="0.0171%" height="15" fill="rgb(243,107,38)" fg:x="86579" fg:w="89"/><text x="16.8876%" y="639.50"></text></g><g><title>Monitor::wait (113 samples, 0.02%)</title><rect x="16.6340%" y="725" width="0.0217%" height="15" fill="rgb(231,17,5)" fg:x="86560" fg:w="113"/><text x="16.8840%" y="735.50"></text></g><g><title>Monitor::IWait (111 samples, 0.02%)</title><rect x="16.6344%" y="709" width="0.0213%" height="15" fill="rgb(209,25,54)" fg:x="86562" fg:w="111"/><text x="16.8844%" y="719.50"></text></g><g><title>os::PlatformEvent::park (108 samples, 0.02%)</title><rect x="16.6349%" y="693" width="0.0208%" height="15" fill="rgb(219,0,2)" fg:x="86565" fg:w="108"/><text x="16.8849%" y="703.50"></text></g><g><title>__GI___clone (143 samples, 0.03%)</title><rect x="16.6292%" y="821" width="0.0275%" height="15" fill="rgb(246,9,5)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="831.50"></text></g><g><title>start_thread (143 samples, 0.03%)</title><rect x="16.6292%" y="805" width="0.0275%" height="15" fill="rgb(226,159,4)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="815.50"></text></g><g><title>thread_native_entry (143 samples, 0.03%)</title><rect x="16.6292%" y="789" width="0.0275%" height="15" fill="rgb(219,175,34)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="799.50"></text></g><g><title>Thread::call_run (143 samples, 0.03%)</title><rect x="16.6292%" y="773" width="0.0275%" height="15" fill="rgb(236,10,46)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="783.50"></text></g><g><title>WatcherThread::run (143 samples, 0.03%)</title><rect x="16.6292%" y="757" width="0.0275%" height="15" fill="rgb(240,211,16)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="767.50"></text></g><g><title>WatcherThread::sleep (118 samples, 0.02%)</title><rect x="16.6340%" y="741" width="0.0227%" height="15" fill="rgb(205,3,43)" fg:x="86560" fg:w="118"/><text x="16.8840%" y="751.50"></text></g><g><title>VM_Periodic_Tas (157 samples, 0.03%)</title><rect x="16.6267%" y="837" width="0.0302%" height="15" fill="rgb(245,7,22)" fg:x="86522" fg:w="157"/><text x="16.8767%" y="847.50"></text></g><g><title>[unknown] (53 samples, 0.01%)</title><rect x="16.6609%" y="821" width="0.0102%" height="15" fill="rgb(239,132,32)" fg:x="86700" fg:w="53"/><text x="16.9109%" y="831.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="16.6814%" y="549" width="0.0110%" height="15" fill="rgb(228,202,34)" fg:x="86807" fg:w="57"/><text x="16.9314%" y="559.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="16.6820%" y="533" width="0.0104%" height="15" fill="rgb(254,200,22)" fg:x="86810" fg:w="54"/><text x="16.9320%" y="543.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="16.6820%" y="517" width="0.0104%" height="15" fill="rgb(219,10,39)" fg:x="86810" fg:w="54"/><text x="16.9320%" y="527.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="16.6812%" y="613" width="0.0115%" height="15" fill="rgb(226,210,39)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="623.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.01%)</title><rect x="16.6812%" y="597" width="0.0115%" height="15" fill="rgb(208,219,16)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="607.50"></text></g><g><title>do_futex (60 samples, 0.01%)</title><rect x="16.6812%" y="581" width="0.0115%" height="15" fill="rgb(216,158,51)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="591.50"></text></g><g><title>futex_wait (60 samples, 0.01%)</title><rect x="16.6812%" y="565" width="0.0115%" height="15" fill="rgb(233,14,44)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (62 samples, 0.01%)</title><rect x="16.6810%" y="677" width="0.0119%" height="15" fill="rgb(237,97,39)" fg:x="86805" fg:w="62"/><text x="16.9310%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (62 samples, 0.01%)</title><rect x="16.6810%" y="661" width="0.0119%" height="15" fill="rgb(218,198,43)" fg:x="86805" fg:w="62"/><text x="16.9310%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.01%)</title><rect x="16.6810%" y="645" width="0.0119%" height="15" fill="rgb(231,104,20)" fg:x="86805" fg:w="62"/><text x="16.9310%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="16.6812%" y="629" width="0.0117%" height="15" fill="rgb(254,36,13)" fg:x="86806" fg:w="61"/><text x="16.9312%" y="639.50"></text></g><g><title>Monitor::wait (69 samples, 0.01%)</title><rect x="16.6807%" y="725" width="0.0133%" height="15" fill="rgb(248,14,50)" fg:x="86803" fg:w="69"/><text x="16.9307%" y="735.50"></text></g><g><title>Monitor::IWait (68 samples, 0.01%)</title><rect x="16.6809%" y="709" width="0.0131%" height="15" fill="rgb(217,107,29)" fg:x="86804" fg:w="68"/><text x="16.9309%" y="719.50"></text></g><g><title>os::PlatformEvent::park (67 samples, 0.01%)</title><rect x="16.6810%" y="693" width="0.0129%" height="15" fill="rgb(251,169,33)" fg:x="86805" fg:w="67"/><text x="16.9310%" y="703.50"></text></g><g><title>WorkGang::run_task (59 samples, 0.01%)</title><rect x="16.7154%" y="693" width="0.0113%" height="15" fill="rgb(217,108,32)" fg:x="86984" fg:w="59"/><text x="16.9654%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (59 samples, 0.01%)</title><rect x="16.7154%" y="677" width="0.0113%" height="15" fill="rgb(219,66,42)" fg:x="86984" fg:w="59"/><text x="16.9654%" y="687.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (62 samples, 0.01%)</title><rect x="16.7151%" y="709" width="0.0119%" height="15" fill="rgb(206,180,7)" fg:x="86982" fg:w="62"/><text x="16.9651%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (204 samples, 0.04%)</title><rect x="16.6939%" y="725" width="0.0392%" height="15" fill="rgb(208,226,31)" fg:x="86872" fg:w="204"/><text x="16.9439%" y="735.50"></text></g><g><title>VMThread::evaluate_operation (133 samples, 0.03%)</title><rect x="16.7360%" y="725" width="0.0256%" height="15" fill="rgb(218,26,49)" fg:x="87091" fg:w="133"/><text x="16.9860%" y="735.50"></text></g><g><title>VM_Operation::evaluate (132 samples, 0.03%)</title><rect x="16.7362%" y="709" width="0.0254%" height="15" fill="rgb(233,197,48)" fg:x="87092" fg:w="132"/><text x="16.9862%" y="719.50"></text></g><g><title>Thread::call_run (437 samples, 0.08%)</title><rect x="16.6791%" y="773" width="0.0840%" height="15" fill="rgb(252,181,51)" fg:x="86795" fg:w="437"/><text x="16.9291%" y="783.50"></text></g><g><title>VMThread::run (437 samples, 0.08%)</title><rect x="16.6791%" y="757" width="0.0840%" height="15" fill="rgb(253,90,19)" fg:x="86795" fg:w="437"/><text x="16.9291%" y="767.50"></text></g><g><title>VMThread::loop (437 samples, 0.08%)</title><rect x="16.6791%" y="741" width="0.0840%" height="15" fill="rgb(215,171,30)" fg:x="86795" fg:w="437"/><text x="16.9291%" y="751.50"></text></g><g><title>__GI___clone (486 samples, 0.09%)</title><rect x="16.6711%" y="821" width="0.0934%" height="15" fill="rgb(214,222,9)" fg:x="86753" fg:w="486"/><text x="16.9211%" y="831.50"></text></g><g><title>start_thread (444 samples, 0.09%)</title><rect x="16.6791%" y="805" width="0.0853%" height="15" fill="rgb(223,3,22)" fg:x="86795" fg:w="444"/><text x="16.9291%" y="815.50"></text></g><g><title>thread_native_entry (444 samples, 0.09%)</title><rect x="16.6791%" y="789" width="0.0853%" height="15" fill="rgb(225,196,46)" fg:x="86795" fg:w="444"/><text x="16.9291%" y="799.50"></text></g><g><title>VM_Thread (564 samples, 0.11%)</title><rect x="16.6568%" y="837" width="0.1084%" height="15" fill="rgb(209,110,37)" fg:x="86679" fg:w="564"/><text x="16.9068%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (64 samples, 0.01%)</title><rect x="16.8300%" y="741" width="0.0123%" height="15" fill="rgb(249,89,12)" fg:x="87580" fg:w="64"/><text x="17.0800%" y="751.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="16.8311%" y="725" width="0.0111%" height="15" fill="rgb(226,27,33)" fg:x="87586" fg:w="58"/><text x="17.0811%" y="735.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="16.8311%" y="709" width="0.0111%" height="15" fill="rgb(213,82,22)" fg:x="87586" fg:w="58"/><text x="17.0811%" y="719.50"></text></g><g><title>__x64_sys_epoll_pwait (79 samples, 0.02%)</title><rect x="16.8273%" y="773" width="0.0152%" height="15" fill="rgb(248,140,0)" fg:x="87566" fg:w="79"/><text x="17.0773%" y="783.50"></text></g><g><title>do_epoll_wait (78 samples, 0.01%)</title><rect x="16.8275%" y="757" width="0.0150%" height="15" fill="rgb(228,106,3)" fg:x="87567" fg:w="78"/><text x="17.0775%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (107 samples, 0.02%)</title><rect x="16.8488%" y="661" width="0.0206%" height="15" fill="rgb(209,23,37)" fg:x="87678" fg:w="107"/><text x="17.0988%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (104 samples, 0.02%)</title><rect x="16.8494%" y="645" width="0.0200%" height="15" fill="rgb(241,93,50)" fg:x="87681" fg:w="104"/><text x="17.0994%" y="655.50"></text></g><g><title>native_write_msr (104 samples, 0.02%)</title><rect x="16.8494%" y="629" width="0.0200%" height="15" fill="rgb(253,46,43)" fg:x="87681" fg:w="104"/><text x="17.0994%" y="639.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="16.8482%" y="677" width="0.0215%" height="15" fill="rgb(226,206,43)" fg:x="87675" fg:w="112"/><text x="17.0982%" y="687.50"></text></g><g><title>futex_wait_queue_me (146 samples, 0.03%)</title><rect x="16.8444%" y="725" width="0.0281%" height="15" fill="rgb(217,54,7)" fg:x="87655" fg:w="146"/><text x="17.0944%" y="735.50"></text></g><g><title>schedule (142 samples, 0.03%)</title><rect x="16.8452%" y="709" width="0.0273%" height="15" fill="rgb(223,5,52)" fg:x="87659" fg:w="142"/><text x="17.0952%" y="719.50"></text></g><g><title>__schedule (142 samples, 0.03%)</title><rect x="16.8452%" y="693" width="0.0273%" height="15" fill="rgb(206,52,46)" fg:x="87659" fg:w="142"/><text x="17.0952%" y="703.50"></text></g><g><title>futex_wait (152 samples, 0.03%)</title><rect x="16.8438%" y="741" width="0.0292%" height="15" fill="rgb(253,136,11)" fg:x="87652" fg:w="152"/><text x="17.0938%" y="751.50"></text></g><g><title>__x64_sys_futex (182 samples, 0.03%)</title><rect x="16.8427%" y="773" width="0.0350%" height="15" fill="rgb(208,106,33)" fg:x="87646" fg:w="182"/><text x="17.0927%" y="783.50"></text></g><g><title>do_futex (179 samples, 0.03%)</title><rect x="16.8432%" y="757" width="0.0344%" height="15" fill="rgb(206,54,4)" fg:x="87649" fg:w="179"/><text x="17.0932%" y="767.50"></text></g><g><title>do_syscall_64 (375 samples, 0.07%)</title><rect x="16.8248%" y="789" width="0.0721%" height="15" fill="rgb(213,3,15)" fg:x="87553" fg:w="375"/><text x="17.0748%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (384 samples, 0.07%)</title><rect x="16.8248%" y="805" width="0.0738%" height="15" fill="rgb(252,211,39)" fg:x="87553" fg:w="384"/><text x="17.0748%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (694 samples, 0.13%)</title><rect x="16.7723%" y="821" width="0.1334%" height="15" fill="rgb(223,6,36)" fg:x="87280" fg:w="694"/><text x="17.0223%" y="831.50"></text></g><g><title>bazel (730 samples, 0.14%)</title><rect x="16.7706%" y="837" width="0.1403%" height="15" fill="rgb(252,169,45)" fg:x="87271" fg:w="730"/><text x="17.0206%" y="847.50"></text></g><g><title>elf_machine_rela (63 samples, 0.01%)</title><rect x="16.9213%" y="709" width="0.0121%" height="15" fill="rgb(212,48,26)" fg:x="88055" fg:w="63"/><text x="17.1713%" y="719.50"></text></g><g><title>_dl_relocate_object (67 samples, 0.01%)</title><rect x="16.9207%" y="741" width="0.0129%" height="15" fill="rgb(251,102,48)" fg:x="88052" fg:w="67"/><text x="17.1707%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (65 samples, 0.01%)</title><rect x="16.9211%" y="725" width="0.0125%" height="15" fill="rgb(243,208,16)" fg:x="88054" fg:w="65"/><text x="17.1711%" y="735.50"></text></g><g><title>[ld-2.31.so] (84 samples, 0.02%)</title><rect x="16.9176%" y="757" width="0.0161%" height="15" fill="rgb(219,96,24)" fg:x="88036" fg:w="84"/><text x="17.1676%" y="767.50"></text></g><g><title>_start (99 samples, 0.02%)</title><rect x="16.9149%" y="821" width="0.0190%" height="15" fill="rgb(219,33,29)" fg:x="88022" fg:w="99"/><text x="17.1649%" y="831.50"></text></g><g><title>_dl_start (85 samples, 0.02%)</title><rect x="16.9176%" y="805" width="0.0163%" height="15" fill="rgb(223,176,5)" fg:x="88036" fg:w="85"/><text x="17.1676%" y="815.50"></text></g><g><title>_dl_start_final (85 samples, 0.02%)</title><rect x="16.9176%" y="789" width="0.0163%" height="15" fill="rgb(228,140,14)" fg:x="88036" fg:w="85"/><text x="17.1676%" y="799.50"></text></g><g><title>_dl_sysdep_start (85 samples, 0.02%)</title><rect x="16.9176%" y="773" width="0.0163%" height="15" fill="rgb(217,179,31)" fg:x="88036" fg:w="85"/><text x="17.1676%" y="783.50"></text></g><g><title>build-runfiles (146 samples, 0.03%)</title><rect x="16.9109%" y="837" width="0.0281%" height="15" fill="rgb(230,9,30)" fg:x="88001" fg:w="146"/><text x="17.1609%" y="847.50"></text></g><g><title>[dash] (120 samples, 0.02%)</title><rect x="16.9783%" y="501" width="0.0231%" height="15" fill="rgb(230,136,20)" fg:x="88352" fg:w="120"/><text x="17.2283%" y="511.50"></text></g><g><title>alloc_bprm (72 samples, 0.01%)</title><rect x="17.0220%" y="421" width="0.0138%" height="15" fill="rgb(215,210,22)" fg:x="88579" fg:w="72"/><text x="17.2720%" y="431.50"></text></g><g><title>do_open_execat (75 samples, 0.01%)</title><rect x="17.0381%" y="405" width="0.0144%" height="15" fill="rgb(218,43,5)" fg:x="88663" fg:w="75"/><text x="17.2881%" y="415.50"></text></g><g><title>do_filp_open (75 samples, 0.01%)</title><rect x="17.0381%" y="389" width="0.0144%" height="15" fill="rgb(216,11,5)" fg:x="88663" fg:w="75"/><text x="17.2881%" y="399.50"></text></g><g><title>path_openat (73 samples, 0.01%)</title><rect x="17.0385%" y="373" width="0.0140%" height="15" fill="rgb(209,82,29)" fg:x="88665" fg:w="73"/><text x="17.2885%" y="383.50"></text></g><g><title>load_elf_binary (63 samples, 0.01%)</title><rect x="17.0533%" y="405" width="0.0121%" height="15" fill="rgb(244,115,12)" fg:x="88742" fg:w="63"/><text x="17.3033%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (208 samples, 0.04%)</title><rect x="17.0767%" y="325" width="0.0400%" height="15" fill="rgb(222,82,18)" fg:x="88864" fg:w="208"/><text x="17.3267%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (206 samples, 0.04%)</title><rect x="17.0771%" y="309" width="0.0396%" height="15" fill="rgb(249,227,8)" fg:x="88866" fg:w="206"/><text x="17.3271%" y="319.50"></text></g><g><title>native_write_msr (205 samples, 0.04%)</title><rect x="17.0773%" y="293" width="0.0394%" height="15" fill="rgb(253,141,45)" fg:x="88867" fg:w="205"/><text x="17.3273%" y="303.50"></text></g><g><title>_cond_resched (219 samples, 0.04%)</title><rect x="17.0756%" y="373" width="0.0421%" height="15" fill="rgb(234,184,4)" fg:x="88858" fg:w="219"/><text x="17.3256%" y="383.50"></text></g><g><title>__schedule (219 samples, 0.04%)</title><rect x="17.0756%" y="357" width="0.0421%" height="15" fill="rgb(218,194,23)" fg:x="88858" fg:w="219"/><text x="17.3256%" y="367.50"></text></g><g><title>finish_task_switch (219 samples, 0.04%)</title><rect x="17.0756%" y="341" width="0.0421%" height="15" fill="rgb(235,66,41)" fg:x="88858" fg:w="219"/><text x="17.3256%" y="351.50"></text></g><g><title>sched_exec (250 samples, 0.05%)</title><rect x="17.0700%" y="405" width="0.0480%" height="15" fill="rgb(245,217,1)" fg:x="88829" fg:w="250"/><text x="17.3200%" y="415.50"></text></g><g><title>stop_one_cpu (221 samples, 0.04%)</title><rect x="17.0756%" y="389" width="0.0425%" height="15" fill="rgb(229,91,1)" fg:x="88858" fg:w="221"/><text x="17.3256%" y="399.50"></text></g><g><title>security_bprm_check (71 samples, 0.01%)</title><rect x="17.1180%" y="405" width="0.0136%" height="15" fill="rgb(207,101,30)" fg:x="89079" fg:w="71"/><text x="17.3680%" y="415.50"></text></g><g><title>tomoyo_bprm_check_security (71 samples, 0.01%)</title><rect x="17.1180%" y="389" width="0.0136%" height="15" fill="rgb(223,82,49)" fg:x="89079" fg:w="71"/><text x="17.3680%" y="399.50"></text></g><g><title>tomoyo_find_next_domain (70 samples, 0.01%)</title><rect x="17.1182%" y="373" width="0.0135%" height="15" fill="rgb(218,167,17)" fg:x="89080" fg:w="70"/><text x="17.3682%" y="383.50"></text></g><g><title>security_bprm_creds_for_exec (75 samples, 0.01%)</title><rect x="17.1317%" y="405" width="0.0144%" height="15" fill="rgb(208,103,14)" fg:x="89150" fg:w="75"/><text x="17.3817%" y="415.50"></text></g><g><title>apparmor_bprm_creds_for_exec (73 samples, 0.01%)</title><rect x="17.1321%" y="389" width="0.0140%" height="15" fill="rgb(238,20,8)" fg:x="89152" fg:w="73"/><text x="17.3821%" y="399.50"></text></g><g><title>profile_transition (69 samples, 0.01%)</title><rect x="17.1328%" y="373" width="0.0133%" height="15" fill="rgb(218,80,54)" fg:x="89156" fg:w="69"/><text x="17.3828%" y="383.50"></text></g><g><title>find_attach (61 samples, 0.01%)</title><rect x="17.1344%" y="357" width="0.0117%" height="15" fill="rgb(240,144,17)" fg:x="89164" fg:w="61"/><text x="17.3844%" y="367.50"></text></g><g><title>bprm_execve (575 samples, 0.11%)</title><rect x="17.0358%" y="421" width="0.1105%" height="15" fill="rgb(245,27,50)" fg:x="88651" fg:w="575"/><text x="17.2858%" y="431.50"></text></g><g><title>__get_user_pages_remote (91 samples, 0.02%)</title><rect x="17.1471%" y="389" width="0.0175%" height="15" fill="rgb(251,51,7)" fg:x="89230" fg:w="91"/><text x="17.3971%" y="399.50"></text></g><g><title>__get_user_pages (90 samples, 0.02%)</title><rect x="17.1472%" y="373" width="0.0173%" height="15" fill="rgb(245,217,29)" fg:x="89231" fg:w="90"/><text x="17.3972%" y="383.50"></text></g><g><title>handle_mm_fault (75 samples, 0.01%)</title><rect x="17.1501%" y="357" width="0.0144%" height="15" fill="rgb(221,176,29)" fg:x="89246" fg:w="75"/><text x="17.4001%" y="367.50"></text></g><g><title>copy_string_kernel (96 samples, 0.02%)</title><rect x="17.1463%" y="421" width="0.0184%" height="15" fill="rgb(212,180,24)" fg:x="89226" fg:w="96"/><text x="17.3963%" y="431.50"></text></g><g><title>get_arg_page (92 samples, 0.02%)</title><rect x="17.1471%" y="405" width="0.0177%" height="15" fill="rgb(254,24,2)" fg:x="89230" fg:w="92"/><text x="17.3971%" y="415.50"></text></g><g><title>do_execveat_common (806 samples, 0.15%)</title><rect x="17.0218%" y="437" width="0.1549%" height="15" fill="rgb(230,100,2)" fg:x="88578" fg:w="806"/><text x="17.2718%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (822 samples, 0.16%)</title><rect x="17.0218%" y="485" width="0.1580%" height="15" fill="rgb(219,142,25)" fg:x="88578" fg:w="822"/><text x="17.2718%" y="495.50"></text></g><g><title>do_syscall_64 (822 samples, 0.16%)</title><rect x="17.0218%" y="469" width="0.1580%" height="15" fill="rgb(240,73,43)" fg:x="88578" fg:w="822"/><text x="17.2718%" y="479.50"></text></g><g><title>__x64_sys_execve (822 samples, 0.16%)</title><rect x="17.0218%" y="453" width="0.1580%" height="15" fill="rgb(214,114,15)" fg:x="88578" fg:w="822"/><text x="17.2718%" y="463.50"></text></g><g><title>__GI_execve (824 samples, 0.16%)</title><rect x="17.0216%" y="501" width="0.1583%" height="15" fill="rgb(207,130,4)" fg:x="88577" fg:w="824"/><text x="17.2716%" y="511.50"></text></g><g><title>[dash] (1,128 samples, 0.22%)</title><rect x="16.9733%" y="517" width="0.2168%" height="15" fill="rgb(221,25,40)" fg:x="88326" fg:w="1128"/><text x="17.2233%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (1,285 samples, 0.25%)</title><rect x="17.2103%" y="389" width="0.2469%" height="15" fill="rgb(241,184,7)" fg:x="89559" fg:w="1285"/><text x="17.4603%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,252 samples, 0.24%)</title><rect x="17.2166%" y="373" width="0.2406%" height="15" fill="rgb(235,159,4)" fg:x="89592" fg:w="1252"/><text x="17.4666%" y="383.50"></text></g><g><title>native_write_msr (1,241 samples, 0.24%)</title><rect x="17.2187%" y="357" width="0.2385%" height="15" fill="rgb(214,87,48)" fg:x="89603" fg:w="1241"/><text x="17.4687%" y="367.50"></text></g><g><title>finish_task_switch (1,345 samples, 0.26%)</title><rect x="17.2057%" y="405" width="0.2585%" height="15" fill="rgb(246,198,24)" fg:x="89535" fg:w="1345"/><text x="17.4557%" y="415.50"></text></g><g><title>schedule (1,365 samples, 0.26%)</title><rect x="17.2032%" y="437" width="0.2623%" height="15" fill="rgb(209,66,40)" fg:x="89522" fg:w="1365"/><text x="17.4532%" y="447.50"></text></g><g><title>__schedule (1,364 samples, 0.26%)</title><rect x="17.2034%" y="421" width="0.2621%" height="15" fill="rgb(233,147,39)" fg:x="89523" fg:w="1364"/><text x="17.4534%" y="431.50"></text></g><g><title>release_task (99 samples, 0.02%)</title><rect x="17.4680%" y="421" width="0.0190%" height="15" fill="rgb(231,145,52)" fg:x="90900" fg:w="99"/><text x="17.7180%" y="431.50"></text></g><g><title>do_wait (1,488 samples, 0.29%)</title><rect x="17.2018%" y="453" width="0.2859%" height="15" fill="rgb(206,20,26)" fg:x="89515" fg:w="1488"/><text x="17.4518%" y="463.50"></text></g><g><title>wait_consider_task (116 samples, 0.02%)</title><rect x="17.4655%" y="437" width="0.0223%" height="15" fill="rgb(238,220,4)" fg:x="90887" fg:w="116"/><text x="17.7155%" y="447.50"></text></g><g><title>do_syscall_64 (1,500 samples, 0.29%)</title><rect x="17.1997%" y="485" width="0.2883%" height="15" fill="rgb(252,195,42)" fg:x="89504" fg:w="1500"/><text x="17.4497%" y="495.50"></text></g><g><title>kernel_wait4 (1,491 samples, 0.29%)</title><rect x="17.2014%" y="469" width="0.2865%" height="15" fill="rgb(209,10,6)" fg:x="89513" fg:w="1491"/><text x="17.4514%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,539 samples, 0.30%)</title><rect x="17.1995%" y="501" width="0.2957%" height="15" fill="rgb(229,3,52)" fg:x="89503" fg:w="1539"/><text x="17.4495%" y="511.50"></text></g><g><title>__GI___wait4 (1,559 samples, 0.30%)</title><rect x="17.1980%" y="517" width="0.2996%" height="15" fill="rgb(253,49,37)" fg:x="89495" fg:w="1559"/><text x="17.4480%" y="527.50"></text></g><g><title>[dash] (2,848 samples, 0.55%)</title><rect x="16.9697%" y="533" width="0.5473%" height="15" fill="rgb(240,103,49)" fg:x="88307" fg:w="2848"/><text x="17.2197%" y="543.50"></text></g><g><title>[dash] (2,980 samples, 0.57%)</title><rect x="16.9639%" y="549" width="0.5727%" height="15" fill="rgb(250,182,30)" fg:x="88277" fg:w="2980"/><text x="17.2139%" y="559.50"></text></g><g><title>filemap_map_pages (76 samples, 0.01%)</title><rect x="17.5642%" y="453" width="0.0146%" height="15" fill="rgb(248,8,30)" fg:x="91401" fg:w="76"/><text x="17.8142%" y="463.50"></text></g><g><title>asm_exc_page_fault (106 samples, 0.02%)</title><rect x="17.5614%" y="517" width="0.0204%" height="15" fill="rgb(237,120,30)" fg:x="91386" fg:w="106"/><text x="17.8114%" y="527.50"></text></g><g><title>exc_page_fault (106 samples, 0.02%)</title><rect x="17.5614%" y="501" width="0.0204%" height="15" fill="rgb(221,146,34)" fg:x="91386" fg:w="106"/><text x="17.8114%" y="511.50"></text></g><g><title>do_user_addr_fault (105 samples, 0.02%)</title><rect x="17.5616%" y="485" width="0.0202%" height="15" fill="rgb(242,55,13)" fg:x="91387" fg:w="105"/><text x="17.8116%" y="495.50"></text></g><g><title>handle_mm_fault (97 samples, 0.02%)</title><rect x="17.5631%" y="469" width="0.0186%" height="15" fill="rgb(242,112,31)" fg:x="91395" fg:w="97"/><text x="17.8131%" y="479.50"></text></g><g><title>__run_fork_handlers (123 samples, 0.02%)</title><rect x="17.5604%" y="533" width="0.0236%" height="15" fill="rgb(249,192,27)" fg:x="91381" fg:w="123"/><text x="17.8104%" y="543.50"></text></g><g><title>alloc_set_pte (66 samples, 0.01%)</title><rect x="17.6509%" y="437" width="0.0127%" height="15" fill="rgb(208,204,44)" fg:x="91852" fg:w="66"/><text x="17.9009%" y="447.50"></text></g><g><title>filemap_map_pages (286 samples, 0.05%)</title><rect x="17.6236%" y="453" width="0.0550%" height="15" fill="rgb(208,93,54)" fg:x="91710" fg:w="286"/><text x="17.8736%" y="463.50"></text></g><g><title>__alloc_pages_nodemask (88 samples, 0.02%)</title><rect x="17.6801%" y="437" width="0.0169%" height="15" fill="rgb(242,1,31)" fg:x="92004" fg:w="88"/><text x="17.9301%" y="447.50"></text></g><g><title>handle_mm_fault (457 samples, 0.09%)</title><rect x="17.6125%" y="469" width="0.0878%" height="15" fill="rgb(241,83,25)" fg:x="91652" fg:w="457"/><text x="17.8625%" y="479.50"></text></g><g><title>pte_alloc_one (111 samples, 0.02%)</title><rect x="17.6790%" y="453" width="0.0213%" height="15" fill="rgb(205,169,50)" fg:x="91998" fg:w="111"/><text x="17.9290%" y="463.50"></text></g><g><title>exc_page_fault (527 samples, 0.10%)</title><rect x="17.5994%" y="501" width="0.1013%" height="15" fill="rgb(239,186,37)" fg:x="91584" fg:w="527"/><text x="17.8494%" y="511.50"></text></g><g><title>do_user_addr_fault (525 samples, 0.10%)</title><rect x="17.5998%" y="485" width="0.1009%" height="15" fill="rgb(205,221,10)" fg:x="91586" fg:w="525"/><text x="17.8498%" y="495.50"></text></g><g><title>asm_exc_page_fault (537 samples, 0.10%)</title><rect x="17.5981%" y="517" width="0.1032%" height="15" fill="rgb(218,196,15)" fg:x="91577" fg:w="537"/><text x="17.8481%" y="527.50"></text></g><g><title>anon_vma_fork (59 samples, 0.01%)</title><rect x="17.7284%" y="421" width="0.0113%" height="15" fill="rgb(218,196,35)" fg:x="92255" fg:w="59"/><text x="17.9784%" y="431.50"></text></g><g><title>dup_mm (197 samples, 0.04%)</title><rect x="17.7234%" y="437" width="0.0379%" height="15" fill="rgb(233,63,24)" fg:x="92229" fg:w="197"/><text x="17.9734%" y="447.50"></text></g><g><title>perf_try_init_event (65 samples, 0.01%)</title><rect x="17.7916%" y="373" width="0.0125%" height="15" fill="rgb(225,8,4)" fg:x="92584" fg:w="65"/><text x="18.0416%" y="383.50"></text></g><g><title>x86_pmu_event_init (64 samples, 0.01%)</title><rect x="17.7918%" y="357" width="0.0123%" height="15" fill="rgb(234,105,35)" fg:x="92585" fg:w="64"/><text x="18.0418%" y="367.50"></text></g><g><title>perf_event_alloc (134 samples, 0.03%)</title><rect x="17.7787%" y="389" width="0.0258%" height="15" fill="rgb(236,21,32)" fg:x="92517" fg:w="134"/><text x="18.0287%" y="399.50"></text></g><g><title>inherit_task_group.isra.0 (168 samples, 0.03%)</title><rect x="17.7724%" y="421" width="0.0323%" height="15" fill="rgb(228,109,6)" fg:x="92484" fg:w="168"/><text x="18.0224%" y="431.50"></text></g><g><title>inherit_event.constprop.0 (162 samples, 0.03%)</title><rect x="17.7735%" y="405" width="0.0311%" height="15" fill="rgb(229,215,31)" fg:x="92490" fg:w="162"/><text x="18.0235%" y="415.50"></text></g><g><title>perf_event_init_task (188 samples, 0.04%)</title><rect x="17.7710%" y="437" width="0.0361%" height="15" fill="rgb(221,52,54)" fg:x="92477" fg:w="188"/><text x="18.0210%" y="447.50"></text></g><g><title>copy_process (563 samples, 0.11%)</title><rect x="17.7015%" y="453" width="0.1082%" height="15" fill="rgb(252,129,43)" fg:x="92115" fg:w="563"/><text x="17.9515%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (570 samples, 0.11%)</title><rect x="17.7013%" y="517" width="0.1095%" height="15" fill="rgb(248,183,27)" fg:x="92114" fg:w="570"/><text x="17.9513%" y="527.50"></text></g><g><title>do_syscall_64 (570 samples, 0.11%)</title><rect x="17.7013%" y="501" width="0.1095%" height="15" fill="rgb(250,0,22)" fg:x="92114" fg:w="570"/><text x="17.9513%" y="511.50"></text></g><g><title>__do_sys_clone (569 samples, 0.11%)</title><rect x="17.7015%" y="485" width="0.1093%" height="15" fill="rgb(213,166,10)" fg:x="92115" fg:w="569"/><text x="17.9515%" y="495.50"></text></g><g><title>kernel_clone (569 samples, 0.11%)</title><rect x="17.7015%" y="469" width="0.1093%" height="15" fill="rgb(207,163,36)" fg:x="92115" fg:w="569"/><text x="17.9515%" y="479.50"></text></g><g><title>find_vma (62 samples, 0.01%)</title><rect x="17.8583%" y="421" width="0.0119%" height="15" fill="rgb(208,122,22)" fg:x="92931" fg:w="62"/><text x="18.1083%" y="431.50"></text></g><g><title>do_wp_page (83 samples, 0.02%)</title><rect x="17.8948%" y="405" width="0.0159%" height="15" fill="rgb(207,104,49)" fg:x="93121" fg:w="83"/><text x="18.1448%" y="415.50"></text></g><g><title>handle_mm_fault (352 samples, 0.07%)</title><rect x="17.8702%" y="421" width="0.0676%" height="15" fill="rgb(248,211,50)" fg:x="92993" fg:w="352"/><text x="18.1202%" y="431.50"></text></g><g><title>wp_page_copy (132 samples, 0.03%)</title><rect x="17.9125%" y="405" width="0.0254%" height="15" fill="rgb(217,13,45)" fg:x="93213" fg:w="132"/><text x="18.1625%" y="415.50"></text></g><g><title>exc_page_fault (450 samples, 0.09%)</title><rect x="17.8533%" y="453" width="0.0865%" height="15" fill="rgb(211,216,49)" fg:x="92905" fg:w="450"/><text x="18.1033%" y="463.50"></text></g><g><title>do_user_addr_fault (449 samples, 0.09%)</title><rect x="17.8535%" y="437" width="0.0863%" height="15" fill="rgb(221,58,53)" fg:x="92906" fg:w="449"/><text x="18.1035%" y="447.50"></text></g><g><title>asm_exc_page_fault (532 samples, 0.10%)</title><rect x="17.8379%" y="469" width="0.1022%" height="15" fill="rgb(220,112,41)" fg:x="92825" fg:w="532"/><text x="18.0879%" y="479.50"></text></g><g><title>__put_user_nocheck_4 (579 samples, 0.11%)</title><rect x="17.8294%" y="485" width="0.1113%" height="15" fill="rgb(236,38,28)" fg:x="92781" fg:w="579"/><text x="18.0794%" y="495.50"></text></g><g><title>__mmdrop (101 samples, 0.02%)</title><rect x="18.0162%" y="469" width="0.0194%" height="15" fill="rgb(227,195,22)" fg:x="93753" fg:w="101"/><text x="18.2662%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (13,786 samples, 2.65%)</title><rect x="18.0356%" y="469" width="2.6492%" height="15" fill="rgb(214,55,33)" fg:x="93854" fg:w="13786"/><text x="18.2856%" y="479.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,372 samples, 2.57%)</title><rect x="18.1152%" y="453" width="2.5697%" height="15" fill="rgb(248,80,13)" fg:x="94268" fg:w="13372"/><text x="18.3652%" y="463.50">__..</text></g><g><title>native_write_msr (13,277 samples, 2.55%)</title><rect x="18.1334%" y="437" width="2.5514%" height="15" fill="rgb(238,52,6)" fg:x="94363" fg:w="13277"/><text x="18.3834%" y="447.50">na..</text></g><g><title>enqueue_task_fair (110 samples, 0.02%)</title><rect x="20.7102%" y="245" width="0.0211%" height="15" fill="rgb(224,198,47)" fg:x="107772" fg:w="110"/><text x="20.9602%" y="255.50"></text></g><g><title>enqueue_entity (87 samples, 0.02%)</title><rect x="20.7146%" y="229" width="0.0167%" height="15" fill="rgb(233,171,20)" fg:x="107795" fg:w="87"/><text x="20.9646%" y="239.50"></text></g><g><title>ttwu_do_activate (134 samples, 0.03%)</title><rect x="20.7098%" y="261" width="0.0258%" height="15" fill="rgb(241,30,25)" fg:x="107770" fg:w="134"/><text x="20.9598%" y="271.50"></text></g><g><title>__wake_up_common (166 samples, 0.03%)</title><rect x="20.7075%" y="309" width="0.0319%" height="15" fill="rgb(207,171,38)" fg:x="107758" fg:w="166"/><text x="20.9575%" y="319.50"></text></g><g><title>pollwake (163 samples, 0.03%)</title><rect x="20.7081%" y="293" width="0.0313%" height="15" fill="rgb(234,70,1)" fg:x="107761" fg:w="163"/><text x="20.9581%" y="303.50"></text></g><g><title>try_to_wake_up (163 samples, 0.03%)</title><rect x="20.7081%" y="277" width="0.0313%" height="15" fill="rgb(232,178,18)" fg:x="107761" fg:w="163"/><text x="20.9581%" y="287.50"></text></g><g><title>irq_work_run (178 samples, 0.03%)</title><rect x="20.7056%" y="405" width="0.0342%" height="15" fill="rgb(241,78,40)" fg:x="107748" fg:w="178"/><text x="20.9556%" y="415.50"></text></g><g><title>irq_work_run_list (178 samples, 0.03%)</title><rect x="20.7056%" y="389" width="0.0342%" height="15" fill="rgb(222,35,25)" fg:x="107748" fg:w="178"/><text x="20.9556%" y="399.50"></text></g><g><title>irq_work_single (178 samples, 0.03%)</title><rect x="20.7056%" y="373" width="0.0342%" height="15" fill="rgb(207,92,16)" fg:x="107748" fg:w="178"/><text x="20.9556%" y="383.50"></text></g><g><title>perf_pending_event (176 samples, 0.03%)</title><rect x="20.7060%" y="357" width="0.0338%" height="15" fill="rgb(216,59,51)" fg:x="107750" fg:w="176"/><text x="20.9560%" y="367.50"></text></g><g><title>perf_event_wakeup (173 samples, 0.03%)</title><rect x="20.7066%" y="341" width="0.0332%" height="15" fill="rgb(213,80,28)" fg:x="107753" fg:w="173"/><text x="20.9566%" y="351.50"></text></g><g><title>__wake_up_common_lock (171 samples, 0.03%)</title><rect x="20.7069%" y="325" width="0.0329%" height="15" fill="rgb(220,93,7)" fg:x="107755" fg:w="171"/><text x="20.9569%" y="335.50"></text></g><g><title>asm_call_sysvec_on_stack (187 samples, 0.04%)</title><rect x="20.7041%" y="437" width="0.0359%" height="15" fill="rgb(225,24,44)" fg:x="107740" fg:w="187"/><text x="20.9541%" y="447.50"></text></g><g><title>__sysvec_irq_work (180 samples, 0.03%)</title><rect x="20.7054%" y="421" width="0.0346%" height="15" fill="rgb(243,74,40)" fg:x="107747" fg:w="180"/><text x="20.9554%" y="431.50"></text></g><g><title>asm_sysvec_irq_work (287 samples, 0.06%)</title><rect x="20.6868%" y="469" width="0.0552%" height="15" fill="rgb(228,39,7)" fg:x="107650" fg:w="287"/><text x="20.9368%" y="479.50"></text></g><g><title>sysvec_irq_work (200 samples, 0.04%)</title><rect x="20.7035%" y="453" width="0.0384%" height="15" fill="rgb(227,79,8)" fg:x="107737" fg:w="200"/><text x="20.9535%" y="463.50"></text></g><g><title>schedule_tail (15,198 samples, 2.92%)</title><rect x="17.8260%" y="501" width="2.9206%" height="15" fill="rgb(236,58,11)" fg:x="92763" fg:w="15198"/><text x="18.0760%" y="511.50">sc..</text></g><g><title>finish_task_switch (14,560 samples, 2.80%)</title><rect x="17.9486%" y="485" width="2.7979%" height="15" fill="rgb(249,63,35)" fg:x="93401" fg:w="14560"/><text x="18.1986%" y="495.50">fi..</text></g><g><title>arch_fork (16,521 samples, 3.17%)</title><rect x="17.5840%" y="533" width="3.1748%" height="15" fill="rgb(252,114,16)" fg:x="91504" fg:w="16521"/><text x="17.8340%" y="543.50">arc..</text></g><g><title>ret_from_fork (15,305 samples, 2.94%)</title><rect x="17.8177%" y="517" width="2.9411%" height="15" fill="rgb(254,151,24)" fg:x="92720" fg:w="15305"/><text x="18.0677%" y="527.50">re..</text></g><g><title>syscall_exit_to_user_mode (64 samples, 0.01%)</title><rect x="20.7465%" y="501" width="0.0123%" height="15" fill="rgb(253,54,39)" fg:x="107961" fg:w="64"/><text x="20.9965%" y="511.50"></text></g><g><title>exit_to_user_mode_prepare (63 samples, 0.01%)</title><rect x="20.7467%" y="485" width="0.0121%" height="15" fill="rgb(243,25,45)" fg:x="107962" fg:w="63"/><text x="20.9967%" y="495.50"></text></g><g><title>switch_fpu_return (58 samples, 0.01%)</title><rect x="20.7477%" y="469" width="0.0111%" height="15" fill="rgb(234,134,9)" fg:x="107967" fg:w="58"/><text x="20.9977%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (62 samples, 0.01%)</title><rect x="20.7796%" y="437" width="0.0119%" height="15" fill="rgb(227,166,31)" fg:x="108133" fg:w="62"/><text x="21.0296%" y="447.50"></text></g><g><title>alloc_pages_vma (67 samples, 0.01%)</title><rect x="20.7790%" y="453" width="0.0129%" height="15" fill="rgb(245,143,41)" fg:x="108130" fg:w="67"/><text x="21.0290%" y="463.50"></text></g><g><title>handle_mm_fault (243 samples, 0.05%)</title><rect x="20.7669%" y="485" width="0.0467%" height="15" fill="rgb(238,181,32)" fg:x="108067" fg:w="243"/><text x="21.0169%" y="495.50"></text></g><g><title>wp_page_copy (185 samples, 0.04%)</title><rect x="20.7780%" y="469" width="0.0356%" height="15" fill="rgb(224,113,18)" fg:x="108125" fg:w="185"/><text x="21.0280%" y="479.50"></text></g><g><title>do_user_addr_fault (282 samples, 0.05%)</title><rect x="20.7600%" y="501" width="0.0542%" height="15" fill="rgb(240,229,28)" fg:x="108031" fg:w="282"/><text x="21.0100%" y="511.50"></text></g><g><title>exc_page_fault (288 samples, 0.06%)</title><rect x="20.7590%" y="517" width="0.0553%" height="15" fill="rgb(250,185,3)" fg:x="108026" fg:w="288"/><text x="21.0090%" y="527.50"></text></g><g><title>asm_exc_page_fault (290 samples, 0.06%)</title><rect x="20.7588%" y="533" width="0.0557%" height="15" fill="rgb(212,59,25)" fg:x="108025" fg:w="290"/><text x="21.0088%" y="543.50"></text></g><g><title>__libc_fork (17,062 samples, 3.28%)</title><rect x="17.5406%" y="549" width="3.2788%" height="15" fill="rgb(221,87,20)" fg:x="91278" fg:w="17062"/><text x="17.7906%" y="559.50">__l..</text></g><g><title>filemap_map_pages (76 samples, 0.01%)</title><rect x="20.8242%" y="485" width="0.0146%" height="15" fill="rgb(213,74,28)" fg:x="108365" fg:w="76"/><text x="21.0742%" y="495.50"></text></g><g><title>handle_mm_fault (85 samples, 0.02%)</title><rect x="20.8226%" y="501" width="0.0163%" height="15" fill="rgb(224,132,34)" fg:x="108357" fg:w="85"/><text x="21.0726%" y="511.50"></text></g><g><title>asm_exc_page_fault (97 samples, 0.02%)</title><rect x="20.8205%" y="549" width="0.0186%" height="15" fill="rgb(222,101,24)" fg:x="108346" fg:w="97"/><text x="21.0705%" y="559.50"></text></g><g><title>exc_page_fault (97 samples, 0.02%)</title><rect x="20.8205%" y="533" width="0.0186%" height="15" fill="rgb(254,142,4)" fg:x="108346" fg:w="97"/><text x="21.0705%" y="543.50"></text></g><g><title>do_user_addr_fault (97 samples, 0.02%)</title><rect x="20.8205%" y="517" width="0.0186%" height="15" fill="rgb(230,229,49)" fg:x="108346" fg:w="97"/><text x="21.0705%" y="527.50"></text></g><g><title>[dash] (20,199 samples, 3.88%)</title><rect x="16.9597%" y="565" width="3.8816%" height="15" fill="rgb(238,70,47)" fg:x="88255" fg:w="20199"/><text x="17.2097%" y="575.50">[das..</text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="20.8472%" y="533" width="0.0209%" height="15" fill="rgb(231,160,17)" fg:x="108485" fg:w="109"/><text x="21.0972%" y="543.50"></text></g><g><title>__x64_sys_pipe (109 samples, 0.02%)</title><rect x="20.8472%" y="517" width="0.0209%" height="15" fill="rgb(218,68,53)" fg:x="108485" fg:w="109"/><text x="21.0972%" y="527.50"></text></g><g><title>do_pipe2 (108 samples, 0.02%)</title><rect x="20.8474%" y="501" width="0.0208%" height="15" fill="rgb(236,111,10)" fg:x="108486" fg:w="108"/><text x="21.0974%" y="511.50"></text></g><g><title>create_pipe_files (95 samples, 0.02%)</title><rect x="20.8499%" y="485" width="0.0183%" height="15" fill="rgb(224,34,41)" fg:x="108499" fg:w="95"/><text x="21.0999%" y="495.50"></text></g><g><title>__GI_pipe (114 samples, 0.02%)</title><rect x="20.8465%" y="565" width="0.0219%" height="15" fill="rgb(241,118,19)" fg:x="108481" fg:w="114"/><text x="21.0965%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.02%)</title><rect x="20.8472%" y="549" width="0.0211%" height="15" fill="rgb(238,129,25)" fg:x="108485" fg:w="110"/><text x="21.0972%" y="559.50"></text></g><g><title>[dash] (20,345 samples, 3.91%)</title><rect x="16.9591%" y="581" width="3.9096%" height="15" fill="rgb(238,22,31)" fg:x="88252" fg:w="20345"/><text x="17.2091%" y="591.50">[das..</text></g><g><title>[dash] (20,422 samples, 3.92%)</title><rect x="16.9558%" y="597" width="3.9244%" height="15" fill="rgb(222,174,48)" fg:x="88235" fg:w="20422"/><text x="17.2058%" y="607.50">[das..</text></g><g><title>[dash] (20,508 samples, 3.94%)</title><rect x="16.9539%" y="613" width="3.9410%" height="15" fill="rgb(206,152,40)" fg:x="88225" fg:w="20508"/><text x="17.2039%" y="623.50">[das..</text></g><g><title>[dash] (20,605 samples, 3.96%)</title><rect x="16.9522%" y="629" width="3.9596%" height="15" fill="rgb(218,99,54)" fg:x="88216" fg:w="20605"/><text x="17.2022%" y="639.50">[das..</text></g><g><title>filemap_map_pages (68 samples, 0.01%)</title><rect x="20.9325%" y="533" width="0.0131%" height="15" fill="rgb(220,174,26)" fg:x="108929" fg:w="68"/><text x="21.1825%" y="543.50"></text></g><g><title>do_user_addr_fault (118 samples, 0.02%)</title><rect x="20.9266%" y="565" width="0.0227%" height="15" fill="rgb(245,116,9)" fg:x="108898" fg:w="118"/><text x="21.1766%" y="575.50"></text></g><g><title>handle_mm_fault (100 samples, 0.02%)</title><rect x="20.9300%" y="549" width="0.0192%" height="15" fill="rgb(209,72,35)" fg:x="108916" fg:w="100"/><text x="21.1800%" y="559.50"></text></g><g><title>exc_page_fault (120 samples, 0.02%)</title><rect x="20.9266%" y="581" width="0.0231%" height="15" fill="rgb(226,126,21)" fg:x="108898" fg:w="120"/><text x="21.1766%" y="591.50"></text></g><g><title>asm_exc_page_fault (125 samples, 0.02%)</title><rect x="20.9262%" y="597" width="0.0240%" height="15" fill="rgb(227,192,1)" fg:x="108896" fg:w="125"/><text x="21.1762%" y="607.50"></text></g><g><title>dup_mm (120 samples, 0.02%)</title><rect x="20.9612%" y="517" width="0.0231%" height="15" fill="rgb(237,180,29)" fg:x="109078" fg:w="120"/><text x="21.2112%" y="527.50"></text></g><g><title>inherit_task_group.isra.0 (54 samples, 0.01%)</title><rect x="20.9906%" y="501" width="0.0104%" height="15" fill="rgb(230,197,35)" fg:x="109231" fg:w="54"/><text x="21.2406%" y="511.50"></text></g><g><title>perf_event_init_task (59 samples, 0.01%)</title><rect x="20.9902%" y="517" width="0.0113%" height="15" fill="rgb(246,193,31)" fg:x="109229" fg:w="59"/><text x="21.2402%" y="527.50"></text></g><g><title>copy_process (276 samples, 0.05%)</title><rect x="20.9502%" y="533" width="0.0530%" height="15" fill="rgb(241,36,4)" fg:x="109021" fg:w="276"/><text x="21.2002%" y="543.50"></text></g><g><title>do_syscall_64 (289 samples, 0.06%)</title><rect x="20.9502%" y="581" width="0.0555%" height="15" fill="rgb(241,130,17)" fg:x="109021" fg:w="289"/><text x="21.2002%" y="591.50"></text></g><g><title>__do_sys_clone (289 samples, 0.06%)</title><rect x="20.9502%" y="565" width="0.0555%" height="15" fill="rgb(206,137,32)" fg:x="109021" fg:w="289"/><text x="21.2002%" y="575.50"></text></g><g><title>kernel_clone (289 samples, 0.06%)</title><rect x="20.9502%" y="549" width="0.0555%" height="15" fill="rgb(237,228,51)" fg:x="109021" fg:w="289"/><text x="21.2002%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.06%)</title><rect x="20.9502%" y="597" width="0.0557%" height="15" fill="rgb(243,6,42)" fg:x="109021" fg:w="290"/><text x="21.2002%" y="607.50"></text></g><g><title>alloc_pages_vma (141 samples, 0.03%)</title><rect x="21.0530%" y="469" width="0.0271%" height="15" fill="rgb(251,74,28)" fg:x="109556" fg:w="141"/><text x="21.3030%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (126 samples, 0.02%)</title><rect x="21.0559%" y="453" width="0.0242%" height="15" fill="rgb(218,20,49)" fg:x="109571" fg:w="126"/><text x="21.3059%" y="463.50"></text></g><g><title>get_page_from_freelist (94 samples, 0.02%)</title><rect x="21.0621%" y="437" width="0.0181%" height="15" fill="rgb(238,28,14)" fg:x="109603" fg:w="94"/><text x="21.3121%" y="447.50"></text></g><g><title>handle_mm_fault (449 samples, 0.09%)</title><rect x="21.0315%" y="501" width="0.0863%" height="15" fill="rgb(229,40,46)" fg:x="109444" fg:w="449"/><text x="21.2815%" y="511.50"></text></g><g><title>wp_page_copy (364 samples, 0.07%)</title><rect x="21.0478%" y="485" width="0.0699%" height="15" fill="rgb(244,195,20)" fg:x="109529" fg:w="364"/><text x="21.2978%" y="495.50"></text></g><g><title>do_user_addr_fault (486 samples, 0.09%)</title><rect x="21.0248%" y="517" width="0.0934%" height="15" fill="rgb(253,56,35)" fg:x="109409" fg:w="486"/><text x="21.2748%" y="527.50"></text></g><g><title>exc_page_fault (487 samples, 0.09%)</title><rect x="21.0248%" y="533" width="0.0936%" height="15" fill="rgb(210,149,44)" fg:x="109409" fg:w="487"/><text x="21.2748%" y="543.50"></text></g><g><title>asm_exc_page_fault (526 samples, 0.10%)</title><rect x="21.0177%" y="549" width="0.1011%" height="15" fill="rgb(240,135,12)" fg:x="109372" fg:w="526"/><text x="21.2677%" y="559.50"></text></g><g><title>__put_user_nocheck_4 (550 samples, 0.11%)</title><rect x="21.0142%" y="565" width="0.1057%" height="15" fill="rgb(251,24,50)" fg:x="109354" fg:w="550"/><text x="21.2642%" y="575.50"></text></g><g><title>__mmdrop (126 samples, 0.02%)</title><rect x="21.1637%" y="549" width="0.0242%" height="15" fill="rgb(243,200,47)" fg:x="110132" fg:w="126"/><text x="21.4137%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (6,656 samples, 1.28%)</title><rect x="21.1879%" y="549" width="1.2791%" height="15" fill="rgb(224,166,26)" fg:x="110258" fg:w="6656"/><text x="21.4379%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,408 samples, 1.23%)</title><rect x="21.2356%" y="533" width="1.2314%" height="15" fill="rgb(233,0,47)" fg:x="110506" fg:w="6408"/><text x="21.4856%" y="543.50"></text></g><g><title>native_write_msr (6,358 samples, 1.22%)</title><rect x="21.2452%" y="517" width="1.2218%" height="15" fill="rgb(253,80,5)" fg:x="110556" fg:w="6358"/><text x="21.4952%" y="527.50"></text></g><g><title>enqueue_task_fair (86 samples, 0.02%)</title><rect x="22.4887%" y="325" width="0.0165%" height="15" fill="rgb(214,133,25)" fg:x="117027" fg:w="86"/><text x="22.7387%" y="335.50"></text></g><g><title>enqueue_entity (57 samples, 0.01%)</title><rect x="22.4943%" y="309" width="0.0110%" height="15" fill="rgb(209,27,14)" fg:x="117056" fg:w="57"/><text x="22.7443%" y="319.50"></text></g><g><title>ttwu_do_activate (92 samples, 0.02%)</title><rect x="22.4887%" y="341" width="0.0177%" height="15" fill="rgb(219,102,51)" fg:x="117027" fg:w="92"/><text x="22.7387%" y="351.50"></text></g><g><title>__wake_up_common_lock (117 samples, 0.02%)</title><rect x="22.4872%" y="405" width="0.0225%" height="15" fill="rgb(237,18,16)" fg:x="117019" fg:w="117"/><text x="22.7372%" y="415.50"></text></g><g><title>__wake_up_common (116 samples, 0.02%)</title><rect x="22.4874%" y="389" width="0.0223%" height="15" fill="rgb(241,85,17)" fg:x="117020" fg:w="116"/><text x="22.7374%" y="399.50"></text></g><g><title>pollwake (111 samples, 0.02%)</title><rect x="22.4883%" y="373" width="0.0213%" height="15" fill="rgb(236,90,42)" fg:x="117025" fg:w="111"/><text x="22.7383%" y="383.50"></text></g><g><title>try_to_wake_up (110 samples, 0.02%)</title><rect x="22.4885%" y="357" width="0.0211%" height="15" fill="rgb(249,57,21)" fg:x="117026" fg:w="110"/><text x="22.7385%" y="367.50"></text></g><g><title>irq_work_run (122 samples, 0.02%)</title><rect x="22.4864%" y="485" width="0.0234%" height="15" fill="rgb(243,12,36)" fg:x="117015" fg:w="122"/><text x="22.7364%" y="495.50"></text></g><g><title>irq_work_run_list (122 samples, 0.02%)</title><rect x="22.4864%" y="469" width="0.0234%" height="15" fill="rgb(253,128,47)" fg:x="117015" fg:w="122"/><text x="22.7364%" y="479.50"></text></g><g><title>irq_work_single (122 samples, 0.02%)</title><rect x="22.4864%" y="453" width="0.0234%" height="15" fill="rgb(207,33,20)" fg:x="117015" fg:w="122"/><text x="22.7364%" y="463.50"></text></g><g><title>perf_pending_event (121 samples, 0.02%)</title><rect x="22.4866%" y="437" width="0.0233%" height="15" fill="rgb(233,215,35)" fg:x="117016" fg:w="121"/><text x="22.7366%" y="447.50"></text></g><g><title>perf_event_wakeup (118 samples, 0.02%)</title><rect x="22.4872%" y="421" width="0.0227%" height="15" fill="rgb(249,188,52)" fg:x="117019" fg:w="118"/><text x="22.7372%" y="431.50"></text></g><g><title>asm_call_sysvec_on_stack (127 samples, 0.02%)</title><rect x="22.4862%" y="517" width="0.0244%" height="15" fill="rgb(225,12,32)" fg:x="117014" fg:w="127"/><text x="22.7362%" y="527.50"></text></g><g><title>__sysvec_irq_work (127 samples, 0.02%)</title><rect x="22.4862%" y="501" width="0.0244%" height="15" fill="rgb(247,98,14)" fg:x="117014" fg:w="127"/><text x="22.7362%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (223 samples, 0.04%)</title><rect x="22.4687%" y="549" width="0.0429%" height="15" fill="rgb(247,219,48)" fg:x="116923" fg:w="223"/><text x="22.7187%" y="559.50"></text></g><g><title>sysvec_irq_work (133 samples, 0.03%)</title><rect x="22.4860%" y="533" width="0.0256%" height="15" fill="rgb(253,60,48)" fg:x="117013" fg:w="133"/><text x="22.7360%" y="543.50"></text></g><g><title>schedule_tail (7,836 samples, 1.51%)</title><rect x="21.0127%" y="581" width="1.5058%" height="15" fill="rgb(245,15,52)" fg:x="109346" fg:w="7836"/><text x="21.2627%" y="591.50"></text></g><g><title>finish_task_switch (7,265 samples, 1.40%)</title><rect x="21.1224%" y="565" width="1.3961%" height="15" fill="rgb(220,133,28)" fg:x="109917" fg:w="7265"/><text x="21.3724%" y="575.50"></text></g><g><title>ret_from_fork (7,878 samples, 1.51%)</title><rect x="21.0094%" y="597" width="1.5139%" height="15" fill="rgb(217,180,4)" fg:x="109329" fg:w="7878"/><text x="21.2594%" y="607.50"></text></g><g><title>arch_fork (8,340 samples, 1.60%)</title><rect x="20.9210%" y="613" width="1.6027%" height="15" fill="rgb(251,24,1)" fg:x="108869" fg:w="8340"/><text x="21.1710%" y="623.50"></text></g><g><title>__libc_fork (8,440 samples, 1.62%)</title><rect x="20.9120%" y="629" width="1.6219%" height="15" fill="rgb(212,185,49)" fg:x="108822" fg:w="8440"/><text x="21.1620%" y="639.50"></text></g><g><title>[dash] (29,069 samples, 5.59%)</title><rect x="16.9508%" y="645" width="5.5861%" height="15" fill="rgb(215,175,22)" fg:x="88209" fg:w="29069"/><text x="17.2008%" y="655.50">[dash]</text></g><g><title>[dash] (29,127 samples, 5.60%)</title><rect x="16.9501%" y="661" width="5.5972%" height="15" fill="rgb(250,205,14)" fg:x="88205" fg:w="29127"/><text x="17.2001%" y="671.50">[dash]</text></g><g><title>__perf_event_task_sched_in (732 samples, 0.14%)</title><rect x="22.5681%" y="501" width="0.1407%" height="15" fill="rgb(225,211,22)" fg:x="117440" fg:w="732"/><text x="22.8181%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (720 samples, 0.14%)</title><rect x="22.5704%" y="485" width="0.1384%" height="15" fill="rgb(251,179,42)" fg:x="117452" fg:w="720"/><text x="22.8204%" y="495.50"></text></g><g><title>native_write_msr (716 samples, 0.14%)</title><rect x="22.5712%" y="469" width="0.1376%" height="15" fill="rgb(208,216,51)" fg:x="117456" fg:w="716"/><text x="22.8212%" y="479.50"></text></g><g><title>finish_task_switch (778 samples, 0.15%)</title><rect x="22.5650%" y="517" width="0.1495%" height="15" fill="rgb(235,36,11)" fg:x="117424" fg:w="778"/><text x="22.8150%" y="527.50"></text></g><g><title>schedule (796 samples, 0.15%)</title><rect x="22.5631%" y="549" width="0.1530%" height="15" fill="rgb(213,189,28)" fg:x="117414" fg:w="796"/><text x="22.8131%" y="559.50"></text></g><g><title>__schedule (795 samples, 0.15%)</title><rect x="22.5633%" y="533" width="0.1528%" height="15" fill="rgb(227,203,42)" fg:x="117415" fg:w="795"/><text x="22.8133%" y="543.50"></text></g><g><title>new_sync_read (833 samples, 0.16%)</title><rect x="22.5590%" y="581" width="0.1601%" height="15" fill="rgb(244,72,36)" fg:x="117393" fg:w="833"/><text x="22.8090%" y="591.50"></text></g><g><title>pipe_read (832 samples, 0.16%)</title><rect x="22.5592%" y="565" width="0.1599%" height="15" fill="rgb(213,53,17)" fg:x="117394" fg:w="832"/><text x="22.8092%" y="575.50"></text></g><g><title>do_syscall_64 (851 samples, 0.16%)</title><rect x="22.5565%" y="629" width="0.1635%" height="15" fill="rgb(207,167,3)" fg:x="117380" fg:w="851"/><text x="22.8065%" y="639.50"></text></g><g><title>ksys_read (849 samples, 0.16%)</title><rect x="22.5569%" y="613" width="0.1631%" height="15" fill="rgb(216,98,30)" fg:x="117382" fg:w="849"/><text x="22.8069%" y="623.50"></text></g><g><title>vfs_read (844 samples, 0.16%)</title><rect x="22.5579%" y="597" width="0.1622%" height="15" fill="rgb(236,123,15)" fg:x="117387" fg:w="844"/><text x="22.8079%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (884 samples, 0.17%)</title><rect x="22.5565%" y="645" width="0.1699%" height="15" fill="rgb(248,81,50)" fg:x="117380" fg:w="884"/><text x="22.8065%" y="655.50"></text></g><g><title>__GI___libc_read (903 samples, 0.17%)</title><rect x="22.5558%" y="661" width="0.1735%" height="15" fill="rgb(214,120,4)" fg:x="117376" fg:w="903"/><text x="22.8058%" y="671.50"></text></g><g><title>[dash] (30,124 samples, 5.79%)</title><rect x="16.9466%" y="677" width="5.7888%" height="15" fill="rgb(208,179,34)" fg:x="88187" fg:w="30124"/><text x="17.1966%" y="687.50">[dash]</text></g><g><title>[dash] (30,133 samples, 5.79%)</title><rect x="16.9464%" y="693" width="5.7906%" height="15" fill="rgb(227,140,7)" fg:x="88186" fg:w="30133"/><text x="17.1964%" y="703.50">[dash]</text></g><g><title>[dash] (30,147 samples, 5.79%)</title><rect x="16.9451%" y="709" width="5.7933%" height="15" fill="rgb(214,22,6)" fg:x="88179" fg:w="30147"/><text x="17.1951%" y="719.50">[dash]</text></g><g><title>[dash] (30,152 samples, 5.79%)</title><rect x="16.9445%" y="725" width="5.7942%" height="15" fill="rgb(207,137,27)" fg:x="88176" fg:w="30152"/><text x="17.1945%" y="735.50">[dash]</text></g><g><title>[dash] (30,162 samples, 5.80%)</title><rect x="16.9443%" y="741" width="5.7961%" height="15" fill="rgb(210,8,46)" fg:x="88175" fg:w="30162"/><text x="17.1943%" y="751.50">[dash]</text></g><g><title>[dash] (30,165 samples, 5.80%)</title><rect x="16.9441%" y="757" width="5.7967%" height="15" fill="rgb(240,16,54)" fg:x="88174" fg:w="30165"/><text x="17.1941%" y="767.50">[dash]</text></g><g><title>[dash] (30,198 samples, 5.80%)</title><rect x="16.9441%" y="773" width="5.8031%" height="15" fill="rgb(211,209,29)" fg:x="88174" fg:w="30198"/><text x="17.1941%" y="783.50">[dash]</text></g><g><title>[dash] (30,212 samples, 5.81%)</title><rect x="16.9428%" y="821" width="5.8057%" height="15" fill="rgb(226,228,24)" fg:x="88167" fg:w="30212"/><text x="17.1928%" y="831.50">[dash]</text></g><g><title>__libc_start_main (30,206 samples, 5.80%)</title><rect x="16.9439%" y="805" width="5.8046%" height="15" fill="rgb(222,84,9)" fg:x="88173" fg:w="30206"/><text x="17.1939%" y="815.50">__libc_..</text></g><g><title>[dash] (30,206 samples, 5.80%)</title><rect x="16.9439%" y="789" width="5.8046%" height="15" fill="rgb(234,203,30)" fg:x="88173" fg:w="30206"/><text x="17.1939%" y="799.50">[dash]</text></g><g><title>asm_exc_page_fault (408 samples, 0.08%)</title><rect x="22.7610%" y="821" width="0.0784%" height="15" fill="rgb(238,109,14)" fg:x="118444" fg:w="408"/><text x="23.0110%" y="831.50"></text></g><g><title>mmput (88 samples, 0.02%)</title><rect x="22.8404%" y="709" width="0.0169%" height="15" fill="rgb(233,206,34)" fg:x="118857" fg:w="88"/><text x="23.0904%" y="719.50"></text></g><g><title>exit_mmap (87 samples, 0.02%)</title><rect x="22.8406%" y="693" width="0.0167%" height="15" fill="rgb(220,167,47)" fg:x="118858" fg:w="87"/><text x="23.0906%" y="703.50"></text></g><g><title>begin_new_exec (96 samples, 0.02%)</title><rect x="22.8398%" y="725" width="0.0184%" height="15" fill="rgb(238,105,10)" fg:x="118854" fg:w="96"/><text x="23.0898%" y="735.50"></text></g><g><title>__x64_sys_execve (101 samples, 0.02%)</title><rect x="22.8398%" y="789" width="0.0194%" height="15" fill="rgb(213,227,17)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="799.50"></text></g><g><title>do_execveat_common (101 samples, 0.02%)</title><rect x="22.8398%" y="773" width="0.0194%" height="15" fill="rgb(217,132,38)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="783.50"></text></g><g><title>bprm_execve (101 samples, 0.02%)</title><rect x="22.8398%" y="757" width="0.0194%" height="15" fill="rgb(242,146,4)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="767.50"></text></g><g><title>load_elf_binary (101 samples, 0.02%)</title><rect x="22.8398%" y="741" width="0.0194%" height="15" fill="rgb(212,61,9)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="751.50"></text></g><g><title>unlink_anon_vmas (94 samples, 0.02%)</title><rect x="22.8640%" y="693" width="0.0181%" height="15" fill="rgb(247,126,22)" fg:x="118980" fg:w="94"/><text x="23.1140%" y="703.50"></text></g><g><title>free_pgtables (127 samples, 0.02%)</title><rect x="22.8615%" y="709" width="0.0244%" height="15" fill="rgb(220,196,2)" fg:x="118967" fg:w="127"/><text x="23.1115%" y="719.50"></text></g><g><title>tlb_finish_mmu (63 samples, 0.01%)</title><rect x="22.8957%" y="709" width="0.0121%" height="15" fill="rgb(208,46,4)" fg:x="119145" fg:w="63"/><text x="23.1457%" y="719.50"></text></g><g><title>page_remove_rmap (59 samples, 0.01%)</title><rect x="22.9342%" y="677" width="0.0113%" height="15" fill="rgb(252,104,46)" fg:x="119345" fg:w="59"/><text x="23.1842%" y="687.50"></text></g><g><title>unmap_page_range (203 samples, 0.04%)</title><rect x="22.9082%" y="693" width="0.0390%" height="15" fill="rgb(237,152,48)" fg:x="119210" fg:w="203"/><text x="23.1582%" y="703.50"></text></g><g><title>exit_mmap (460 samples, 0.09%)</title><rect x="22.8609%" y="725" width="0.0884%" height="15" fill="rgb(221,59,37)" fg:x="118964" fg:w="460"/><text x="23.1109%" y="735.50"></text></g><g><title>unmap_vmas (216 samples, 0.04%)</title><rect x="22.9078%" y="709" width="0.0415%" height="15" fill="rgb(209,202,51)" fg:x="119208" fg:w="216"/><text x="23.1578%" y="719.50"></text></g><g><title>mmput (462 samples, 0.09%)</title><rect x="22.8609%" y="741" width="0.0888%" height="15" fill="rgb(228,81,30)" fg:x="118964" fg:w="462"/><text x="23.1109%" y="751.50"></text></g><g><title>__x64_sys_exit_group (492 samples, 0.09%)</title><rect x="22.8592%" y="789" width="0.0945%" height="15" fill="rgb(227,42,39)" fg:x="118955" fg:w="492"/><text x="23.1092%" y="799.50"></text></g><g><title>do_group_exit (492 samples, 0.09%)</title><rect x="22.8592%" y="773" width="0.0945%" height="15" fill="rgb(221,26,2)" fg:x="118955" fg:w="492"/><text x="23.1092%" y="783.50"></text></g><g><title>do_exit (492 samples, 0.09%)</title><rect x="22.8592%" y="757" width="0.0945%" height="15" fill="rgb(254,61,31)" fg:x="118955" fg:w="492"/><text x="23.1092%" y="767.50"></text></g><g><title>do_syscall_64 (602 samples, 0.12%)</title><rect x="22.8396%" y="805" width="0.1157%" height="15" fill="rgb(222,173,38)" fg:x="118853" fg:w="602"/><text x="23.0896%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (605 samples, 0.12%)</title><rect x="22.8394%" y="821" width="0.1163%" height="15" fill="rgb(218,50,12)" fg:x="118852" fg:w="605"/><text x="23.0894%" y="831.50"></text></g><g><title>c++ (31,381 samples, 6.03%)</title><rect x="16.9389%" y="837" width="6.0304%" height="15" fill="rgb(223,88,40)" fg:x="88147" fg:w="31381"/><text x="17.1889%" y="847.50">c++</text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="22.9564%" y="821" width="0.0129%" height="15" fill="rgb(237,54,19)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="831.50"></text></g><g><title>schedule_tail (67 samples, 0.01%)</title><rect x="22.9564%" y="805" width="0.0129%" height="15" fill="rgb(251,129,25)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="815.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="22.9564%" y="789" width="0.0129%" height="15" fill="rgb(238,97,19)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="22.9564%" y="773" width="0.0129%" height="15" fill="rgb(240,169,18)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="22.9564%" y="757" width="0.0129%" height="15" fill="rgb(230,187,49)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="767.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="22.9564%" y="741" width="0.0129%" height="15" fill="rgb(209,44,26)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="751.50"></text></g><g><title>[perf-261576.map] (81 samples, 0.02%)</title><rect x="22.9711%" y="821" width="0.0156%" height="15" fill="rgb(244,0,6)" fg:x="119537" fg:w="81"/><text x="23.2211%" y="831.50"></text></g><g><title>cli-update-thre (95 samples, 0.02%)</title><rect x="22.9693%" y="837" width="0.0183%" height="15" fill="rgb(248,18,21)" fg:x="119528" fg:w="95"/><text x="23.2193%" y="847.50"></text></g><g><title>[perf-261576.map] (460 samples, 0.09%)</title><rect x="22.9887%" y="821" width="0.0884%" height="15" fill="rgb(245,180,19)" fg:x="119629" fg:w="460"/><text x="23.2387%" y="831.50"></text></g><g><title>find-action-loo (541 samples, 0.10%)</title><rect x="22.9876%" y="837" width="0.1040%" height="15" fill="rgb(252,118,36)" fg:x="119623" fg:w="541"/><text x="23.2376%" y="847.50"></text></g><g><title>[perf-261576.map] (54 samples, 0.01%)</title><rect x="23.0925%" y="821" width="0.0104%" height="15" fill="rgb(210,224,19)" fg:x="120169" fg:w="54"/><text x="23.3425%" y="831.50"></text></g><g><title>globbing_pool-0 (77 samples, 0.01%)</title><rect x="23.0915%" y="837" width="0.0148%" height="15" fill="rgb(218,30,24)" fg:x="120164" fg:w="77"/><text x="23.3415%" y="847.50"></text></g><g><title>JVM_StartThread (78 samples, 0.01%)</title><rect x="23.1450%" y="805" width="0.0150%" height="15" fill="rgb(219,75,50)" fg:x="120442" fg:w="78"/><text x="23.3950%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="23.1634%" y="581" width="0.0192%" height="15" fill="rgb(234,72,50)" fg:x="120538" fg:w="100"/><text x="23.4134%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.02%)</title><rect x="23.1634%" y="565" width="0.0192%" height="15" fill="rgb(219,100,48)" fg:x="120538" fg:w="100"/><text x="23.4134%" y="575.50"></text></g><g><title>native_write_msr (99 samples, 0.02%)</title><rect x="23.1636%" y="549" width="0.0190%" height="15" fill="rgb(253,5,41)" fg:x="120539" fg:w="99"/><text x="23.4136%" y="559.50"></text></g><g><title>do_syscall_64 (115 samples, 0.02%)</title><rect x="23.1619%" y="709" width="0.0221%" height="15" fill="rgb(247,181,11)" fg:x="120530" fg:w="115"/><text x="23.4119%" y="719.50"></text></g><g><title>__x64_sys_futex (114 samples, 0.02%)</title><rect x="23.1621%" y="693" width="0.0219%" height="15" fill="rgb(222,223,25)" fg:x="120531" fg:w="114"/><text x="23.4121%" y="703.50"></text></g><g><title>do_futex (114 samples, 0.02%)</title><rect x="23.1621%" y="677" width="0.0219%" height="15" fill="rgb(214,198,28)" fg:x="120531" fg:w="114"/><text x="23.4121%" y="687.50"></text></g><g><title>futex_wait (114 samples, 0.02%)</title><rect x="23.1621%" y="661" width="0.0219%" height="15" fill="rgb(230,46,43)" fg:x="120531" fg:w="114"/><text x="23.4121%" y="671.50"></text></g><g><title>futex_wait_queue_me (113 samples, 0.02%)</title><rect x="23.1623%" y="645" width="0.0217%" height="15" fill="rgb(233,65,53)" fg:x="120532" fg:w="113"/><text x="23.4123%" y="655.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="23.1628%" y="629" width="0.0211%" height="15" fill="rgb(221,121,27)" fg:x="120535" fg:w="110"/><text x="23.4128%" y="639.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="23.1628%" y="613" width="0.0211%" height="15" fill="rgb(247,70,47)" fg:x="120535" fg:w="110"/><text x="23.4128%" y="623.50"></text></g><g><title>finish_task_switch (109 samples, 0.02%)</title><rect x="23.1630%" y="597" width="0.0209%" height="15" fill="rgb(228,85,35)" fg:x="120536" fg:w="109"/><text x="23.4130%" y="607.50"></text></g><g><title>Unsafe_Park (128 samples, 0.02%)</title><rect x="23.1601%" y="805" width="0.0246%" height="15" fill="rgb(209,50,18)" fg:x="120521" fg:w="128"/><text x="23.4101%" y="815.50"></text></g><g><title>Parker::park (128 samples, 0.02%)</title><rect x="23.1601%" y="789" width="0.0246%" height="15" fill="rgb(250,19,35)" fg:x="120521" fg:w="128"/><text x="23.4101%" y="799.50"></text></g><g><title>__pthread_cond_wait (119 samples, 0.02%)</title><rect x="23.1619%" y="773" width="0.0229%" height="15" fill="rgb(253,107,29)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (119 samples, 0.02%)</title><rect x="23.1619%" y="757" width="0.0229%" height="15" fill="rgb(252,179,29)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="767.50"></text></g><g><title>futex_wait_cancelable (119 samples, 0.02%)</title><rect x="23.1619%" y="741" width="0.0229%" height="15" fill="rgb(238,194,6)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119 samples, 0.02%)</title><rect x="23.1619%" y="725" width="0.0229%" height="15" fill="rgb(238,164,29)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="735.50"></text></g><g><title>[perf-261576.map] (388 samples, 0.07%)</title><rect x="23.1117%" y="821" width="0.0746%" height="15" fill="rgb(224,25,9)" fg:x="120269" fg:w="388"/><text x="23.3617%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.02%)</title><rect x="23.1874%" y="757" width="0.0161%" height="15" fill="rgb(244,153,23)" fg:x="120663" fg:w="84"/><text x="23.4374%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.02%)</title><rect x="23.1878%" y="741" width="0.0158%" height="15" fill="rgb(212,203,14)" fg:x="120665" fg:w="82"/><text x="23.4378%" y="751.50"></text></g><g><title>native_write_msr (82 samples, 0.02%)</title><rect x="23.1878%" y="725" width="0.0158%" height="15" fill="rgb(220,164,20)" fg:x="120665" fg:w="82"/><text x="23.4378%" y="735.50"></text></g><g><title>schedule_tail (86 samples, 0.02%)</title><rect x="23.1872%" y="789" width="0.0165%" height="15" fill="rgb(222,203,48)" fg:x="120662" fg:w="86"/><text x="23.4372%" y="799.50"></text></g><g><title>finish_task_switch (85 samples, 0.02%)</title><rect x="23.1874%" y="773" width="0.0163%" height="15" fill="rgb(215,159,22)" fg:x="120663" fg:w="85"/><text x="23.4374%" y="783.50"></text></g><g><title>ret_from_fork (87 samples, 0.02%)</title><rect x="23.1872%" y="805" width="0.0167%" height="15" fill="rgb(216,183,47)" fg:x="120662" fg:w="87"/><text x="23.4372%" y="815.50"></text></g><g><title>__GI___clone (131 samples, 0.03%)</title><rect x="23.1870%" y="821" width="0.0252%" height="15" fill="rgb(229,195,25)" fg:x="120661" fg:w="131"/><text x="23.4370%" y="831.50"></text></g><g><title>globbing_pool-1 (553 samples, 0.11%)</title><rect x="23.1063%" y="837" width="0.1063%" height="15" fill="rgb(224,132,51)" fg:x="120241" fg:w="553"/><text x="23.3563%" y="847.50"></text></g><g><title>JVM_StartThread (64 samples, 0.01%)</title><rect x="23.2464%" y="805" width="0.0123%" height="15" fill="rgb(240,63,7)" fg:x="120970" fg:w="64"/><text x="23.4964%" y="815.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="23.2593%" y="709" width="0.0108%" height="15" fill="rgb(249,182,41)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="719.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="23.2593%" y="693" width="0.0108%" height="15" fill="rgb(243,47,26)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="703.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="23.2593%" y="677" width="0.0108%" height="15" fill="rgb(233,48,2)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="687.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="23.2593%" y="661" width="0.0108%" height="15" fill="rgb(244,165,34)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="671.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="23.2593%" y="645" width="0.0108%" height="15" fill="rgb(207,89,7)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="655.50"></text></g><g><title>schedule (56 samples, 0.01%)</title><rect x="23.2593%" y="629" width="0.0108%" height="15" fill="rgb(244,117,36)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="639.50"></text></g><g><title>__schedule (56 samples, 0.01%)</title><rect x="23.2593%" y="613" width="0.0108%" height="15" fill="rgb(226,144,34)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="623.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="23.2597%" y="597" width="0.0104%" height="15" fill="rgb(213,23,19)" fg:x="121039" fg:w="54"/><text x="23.5097%" y="607.50"></text></g><g><title>Unsafe_Park (59 samples, 0.01%)</title><rect x="23.2589%" y="805" width="0.0113%" height="15" fill="rgb(217,75,12)" fg:x="121035" fg:w="59"/><text x="23.5089%" y="815.50"></text></g><g><title>Parker::park (59 samples, 0.01%)</title><rect x="23.2589%" y="789" width="0.0113%" height="15" fill="rgb(224,159,17)" fg:x="121035" fg:w="59"/><text x="23.5089%" y="799.50"></text></g><g><title>__pthread_cond_wait (58 samples, 0.01%)</title><rect x="23.2591%" y="773" width="0.0111%" height="15" fill="rgb(217,118,1)" fg:x="121036" fg:w="58"/><text x="23.5091%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.01%)</title><rect x="23.2591%" y="757" width="0.0111%" height="15" fill="rgb(232,180,48)" fg:x="121036" fg:w="58"/><text x="23.5091%" y="767.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="23.2591%" y="741" width="0.0111%" height="15" fill="rgb(230,27,33)" fg:x="121036" fg:w="58"/><text x="23.5091%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="23.2593%" y="725" width="0.0110%" height="15" fill="rgb(205,31,21)" fg:x="121037" fg:w="57"/><text x="23.5093%" y="735.50"></text></g><g><title>[perf-261576.map] (267 samples, 0.05%)</title><rect x="23.2197%" y="821" width="0.0513%" height="15" fill="rgb(253,59,4)" fg:x="120831" fg:w="267"/><text x="23.4697%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="23.2728%" y="757" width="0.0113%" height="15" fill="rgb(224,201,9)" fg:x="121107" fg:w="59"/><text x="23.5228%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="23.2728%" y="741" width="0.0113%" height="15" fill="rgb(229,206,30)" fg:x="121107" fg:w="59"/><text x="23.5228%" y="751.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="23.2728%" y="725" width="0.0113%" height="15" fill="rgb(212,67,47)" fg:x="121107" fg:w="59"/><text x="23.5228%" y="735.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="23.2726%" y="789" width="0.0117%" height="15" fill="rgb(211,96,50)" fg:x="121106" fg:w="61"/><text x="23.5226%" y="799.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="23.2726%" y="773" width="0.0117%" height="15" fill="rgb(252,114,18)" fg:x="121106" fg:w="61"/><text x="23.5226%" y="783.50"></text></g><g><title>ret_from_fork (62 samples, 0.01%)</title><rect x="23.2726%" y="805" width="0.0119%" height="15" fill="rgb(223,58,37)" fg:x="121106" fg:w="62"/><text x="23.5226%" y="815.50"></text></g><g><title>__GI___clone (113 samples, 0.02%)</title><rect x="23.2712%" y="821" width="0.0217%" height="15" fill="rgb(237,70,4)" fg:x="121099" fg:w="113"/><text x="23.5212%" y="831.50"></text></g><g><title>globbing_pool-2 (419 samples, 0.08%)</title><rect x="23.2126%" y="837" width="0.0805%" height="15" fill="rgb(244,85,46)" fg:x="120794" fg:w="419"/><text x="23.4626%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="23.3120%" y="549" width="0.0108%" height="15" fill="rgb(223,39,52)" fg:x="121311" fg:w="56"/><text x="23.5620%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="23.3122%" y="533" width="0.0106%" height="15" fill="rgb(218,200,14)" fg:x="121312" fg:w="55"/><text x="23.5622%" y="543.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="23.3122%" y="517" width="0.0106%" height="15" fill="rgb(208,171,16)" fg:x="121312" fg:w="55"/><text x="23.5622%" y="527.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="23.3118%" y="677" width="0.0111%" height="15" fill="rgb(234,200,18)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="687.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="23.3118%" y="661" width="0.0111%" height="15" fill="rgb(228,45,11)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="671.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="23.3118%" y="645" width="0.0111%" height="15" fill="rgb(237,182,11)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="655.50"></text></g><g><title>futex_wait (58 samples, 0.01%)</title><rect x="23.3118%" y="629" width="0.0111%" height="15" fill="rgb(241,175,49)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="639.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.01%)</title><rect x="23.3118%" y="613" width="0.0111%" height="15" fill="rgb(247,38,35)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="623.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="23.3118%" y="597" width="0.0111%" height="15" fill="rgb(228,39,49)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="607.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="23.3118%" y="581" width="0.0111%" height="15" fill="rgb(226,101,26)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="591.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="23.3118%" y="565" width="0.0111%" height="15" fill="rgb(206,141,19)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="23.3118%" y="693" width="0.0113%" height="15" fill="rgb(211,200,13)" fg:x="121310" fg:w="59"/><text x="23.5618%" y="703.50"></text></g><g><title>__pthread_cond_wait (61 samples, 0.01%)</title><rect x="23.3116%" y="741" width="0.0117%" height="15" fill="rgb(241,121,6)" fg:x="121309" fg:w="61"/><text x="23.5616%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (61 samples, 0.01%)</title><rect x="23.3116%" y="725" width="0.0117%" height="15" fill="rgb(234,221,29)" fg:x="121309" fg:w="61"/><text x="23.5616%" y="735.50"></text></g><g><title>futex_wait_cancelable (61 samples, 0.01%)</title><rect x="23.3116%" y="709" width="0.0117%" height="15" fill="rgb(229,136,5)" fg:x="121309" fg:w="61"/><text x="23.5616%" y="719.50"></text></g><g><title>Monitor::lock (64 samples, 0.01%)</title><rect x="23.3116%" y="789" width="0.0123%" height="15" fill="rgb(238,36,11)" fg:x="121309" fg:w="64"/><text x="23.5616%" y="799.50"></text></g><g><title>Monitor::ILock (64 samples, 0.01%)</title><rect x="23.3116%" y="773" width="0.0123%" height="15" fill="rgb(251,55,41)" fg:x="121309" fg:w="64"/><text x="23.5616%" y="783.50"></text></g><g><title>os::PlatformEvent::park (64 samples, 0.01%)</title><rect x="23.3116%" y="757" width="0.0123%" height="15" fill="rgb(242,34,40)" fg:x="121309" fg:w="64"/><text x="23.5616%" y="767.50"></text></g><g><title>JVM_StartThread (75 samples, 0.01%)</title><rect x="23.3112%" y="805" width="0.0144%" height="15" fill="rgb(215,42,17)" fg:x="121307" fg:w="75"/><text x="23.5612%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.02%)</title><rect x="23.3266%" y="581" width="0.0169%" height="15" fill="rgb(207,44,46)" fg:x="121387" fg:w="88"/><text x="23.5766%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (88 samples, 0.02%)</title><rect x="23.3266%" y="565" width="0.0169%" height="15" fill="rgb(211,206,28)" fg:x="121387" fg:w="88"/><text x="23.5766%" y="575.50"></text></g><g><title>native_write_msr (88 samples, 0.02%)</title><rect x="23.3266%" y="549" width="0.0169%" height="15" fill="rgb(237,167,16)" fg:x="121387" fg:w="88"/><text x="23.5766%" y="559.50"></text></g><g><title>do_syscall_64 (98 samples, 0.02%)</title><rect x="23.3258%" y="709" width="0.0188%" height="15" fill="rgb(233,66,6)" fg:x="121383" fg:w="98"/><text x="23.5758%" y="719.50"></text></g><g><title>__x64_sys_futex (97 samples, 0.02%)</title><rect x="23.3260%" y="693" width="0.0186%" height="15" fill="rgb(246,123,29)" fg:x="121384" fg:w="97"/><text x="23.5760%" y="703.50"></text></g><g><title>do_futex (97 samples, 0.02%)</title><rect x="23.3260%" y="677" width="0.0186%" height="15" fill="rgb(209,62,40)" fg:x="121384" fg:w="97"/><text x="23.5760%" y="687.50"></text></g><g><title>futex_wait (97 samples, 0.02%)</title><rect x="23.3260%" y="661" width="0.0186%" height="15" fill="rgb(218,4,25)" fg:x="121384" fg:w="97"/><text x="23.5760%" y="671.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.02%)</title><rect x="23.3262%" y="645" width="0.0184%" height="15" fill="rgb(253,91,49)" fg:x="121385" fg:w="96"/><text x="23.5762%" y="655.50"></text></g><g><title>schedule (96 samples, 0.02%)</title><rect x="23.3262%" y="629" width="0.0184%" height="15" fill="rgb(228,155,29)" fg:x="121385" fg:w="96"/><text x="23.5762%" y="639.50"></text></g><g><title>__schedule (96 samples, 0.02%)</title><rect x="23.3262%" y="613" width="0.0184%" height="15" fill="rgb(243,57,37)" fg:x="121385" fg:w="96"/><text x="23.5762%" y="623.50"></text></g><g><title>finish_task_switch (94 samples, 0.02%)</title><rect x="23.3266%" y="597" width="0.0181%" height="15" fill="rgb(244,167,17)" fg:x="121387" fg:w="94"/><text x="23.5766%" y="607.50"></text></g><g><title>__pthread_cond_wait (105 samples, 0.02%)</title><rect x="23.3256%" y="773" width="0.0202%" height="15" fill="rgb(207,181,38)" fg:x="121382" fg:w="105"/><text x="23.5756%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (105 samples, 0.02%)</title><rect x="23.3256%" y="757" width="0.0202%" height="15" fill="rgb(211,8,23)" fg:x="121382" fg:w="105"/><text x="23.5756%" y="767.50"></text></g><g><title>futex_wait_cancelable (105 samples, 0.02%)</title><rect x="23.3256%" y="741" width="0.0202%" height="15" fill="rgb(235,11,44)" fg:x="121382" fg:w="105"/><text x="23.5756%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="23.3258%" y="725" width="0.0200%" height="15" fill="rgb(248,18,52)" fg:x="121383" fg:w="104"/><text x="23.5758%" y="735.50"></text></g><g><title>Unsafe_Park (107 samples, 0.02%)</title><rect x="23.3256%" y="805" width="0.0206%" height="15" fill="rgb(208,4,7)" fg:x="121382" fg:w="107"/><text x="23.5756%" y="815.50"></text></g><g><title>Parker::park (107 samples, 0.02%)</title><rect x="23.3256%" y="789" width="0.0206%" height="15" fill="rgb(240,17,39)" fg:x="121382" fg:w="107"/><text x="23.5756%" y="799.50"></text></g><g><title>[perf-261576.map] (257 samples, 0.05%)</title><rect x="23.2972%" y="821" width="0.0494%" height="15" fill="rgb(207,170,3)" fg:x="121234" fg:w="257"/><text x="23.5472%" y="831.50"></text></g><g><title>globbing_pool-3 (358 samples, 0.07%)</title><rect x="23.2931%" y="837" width="0.0688%" height="15" fill="rgb(236,100,52)" fg:x="121213" fg:w="358"/><text x="23.5431%" y="847.50"></text></g><g><title>__GI___clone (72 samples, 0.01%)</title><rect x="23.3481%" y="821" width="0.0138%" height="15" fill="rgb(246,78,51)" fg:x="121499" fg:w="72"/><text x="23.5981%" y="831.50"></text></g><g><title>[perf-261576.map] (167 samples, 0.03%)</title><rect x="23.3660%" y="821" width="0.0321%" height="15" fill="rgb(211,17,15)" fg:x="121592" fg:w="167"/><text x="23.6160%" y="831.50"></text></g><g><title>globbing_pool-4 (224 samples, 0.04%)</title><rect x="23.3619%" y="837" width="0.0430%" height="15" fill="rgb(209,59,46)" fg:x="121571" fg:w="224"/><text x="23.6119%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="23.4296%" y="581" width="0.0133%" height="15" fill="rgb(210,92,25)" fg:x="121923" fg:w="69"/><text x="23.6796%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="23.4296%" y="565" width="0.0133%" height="15" fill="rgb(238,174,52)" fg:x="121923" fg:w="69"/><text x="23.6796%" y="575.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="23.4296%" y="549" width="0.0133%" height="15" fill="rgb(230,73,7)" fg:x="121923" fg:w="69"/><text x="23.6796%" y="559.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="23.4294%" y="597" width="0.0144%" height="15" fill="rgb(243,124,40)" fg:x="121922" fg:w="75"/><text x="23.6794%" y="607.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="23.4288%" y="709" width="0.0154%" height="15" fill="rgb(244,170,11)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="719.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.02%)</title><rect x="23.4288%" y="693" width="0.0154%" height="15" fill="rgb(207,114,54)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="703.50"></text></g><g><title>do_futex (80 samples, 0.02%)</title><rect x="23.4288%" y="677" width="0.0154%" height="15" fill="rgb(205,42,20)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="687.50"></text></g><g><title>futex_wait (80 samples, 0.02%)</title><rect x="23.4288%" y="661" width="0.0154%" height="15" fill="rgb(230,30,28)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="671.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.01%)</title><rect x="23.4292%" y="645" width="0.0150%" height="15" fill="rgb(205,73,54)" fg:x="121921" fg:w="78"/><text x="23.6792%" y="655.50"></text></g><g><title>schedule (77 samples, 0.01%)</title><rect x="23.4294%" y="629" width="0.0148%" height="15" fill="rgb(254,227,23)" fg:x="121922" fg:w="77"/><text x="23.6794%" y="639.50"></text></g><g><title>__schedule (77 samples, 0.01%)</title><rect x="23.4294%" y="613" width="0.0148%" height="15" fill="rgb(228,202,34)" fg:x="121922" fg:w="77"/><text x="23.6794%" y="623.50"></text></g><g><title>__pthread_cond_wait (82 samples, 0.02%)</title><rect x="23.4286%" y="773" width="0.0158%" height="15" fill="rgb(222,225,37)" fg:x="121918" fg:w="82"/><text x="23.6786%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (82 samples, 0.02%)</title><rect x="23.4286%" y="757" width="0.0158%" height="15" fill="rgb(221,14,54)" fg:x="121918" fg:w="82"/><text x="23.6786%" y="767.50"></text></g><g><title>futex_wait_cancelable (82 samples, 0.02%)</title><rect x="23.4286%" y="741" width="0.0158%" height="15" fill="rgb(254,102,2)" fg:x="121918" fg:w="82"/><text x="23.6786%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="23.4288%" y="725" width="0.0156%" height="15" fill="rgb(232,104,17)" fg:x="121919" fg:w="81"/><text x="23.6788%" y="735.50"></text></g><g><title>Parker::park (83 samples, 0.02%)</title><rect x="23.4286%" y="789" width="0.0159%" height="15" fill="rgb(250,220,14)" fg:x="121918" fg:w="83"/><text x="23.6786%" y="799.50"></text></g><g><title>Unsafe_Park (84 samples, 0.02%)</title><rect x="23.4286%" y="805" width="0.0161%" height="15" fill="rgb(241,158,9)" fg:x="121918" fg:w="84"/><text x="23.6786%" y="815.50"></text></g><g><title>[perf-261576.map] (189 samples, 0.04%)</title><rect x="23.4090%" y="821" width="0.0363%" height="15" fill="rgb(246,9,43)" fg:x="121816" fg:w="189"/><text x="23.6590%" y="831.50"></text></g><g><title>globbing_pool-5 (256 samples, 0.05%)</title><rect x="23.4050%" y="837" width="0.0492%" height="15" fill="rgb(206,73,33)" fg:x="121795" fg:w="256"/><text x="23.6550%" y="847.50"></text></g><g><title>Unsafe_Park (57 samples, 0.01%)</title><rect x="23.4868%" y="805" width="0.0110%" height="15" fill="rgb(222,79,8)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="815.50"></text></g><g><title>Parker::park (57 samples, 0.01%)</title><rect x="23.4868%" y="789" width="0.0110%" height="15" fill="rgb(234,8,54)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="799.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.01%)</title><rect x="23.4868%" y="773" width="0.0110%" height="15" fill="rgb(209,134,38)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.01%)</title><rect x="23.4868%" y="757" width="0.0110%" height="15" fill="rgb(230,127,29)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="767.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.01%)</title><rect x="23.4870%" y="741" width="0.0108%" height="15" fill="rgb(242,44,41)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="23.4870%" y="725" width="0.0108%" height="15" fill="rgb(222,56,43)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="23.4870%" y="709" width="0.0108%" height="15" fill="rgb(238,39,47)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="719.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="23.4870%" y="693" width="0.0108%" height="15" fill="rgb(226,79,43)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="703.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="23.4870%" y="677" width="0.0108%" height="15" fill="rgb(242,105,53)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="687.50"></text></g><g><title>futex_wait (54 samples, 0.01%)</title><rect x="23.4874%" y="661" width="0.0104%" height="15" fill="rgb(251,132,46)" fg:x="122224" fg:w="54"/><text x="23.7374%" y="671.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.01%)</title><rect x="23.4874%" y="645" width="0.0104%" height="15" fill="rgb(231,77,14)" fg:x="122224" fg:w="54"/><text x="23.7374%" y="655.50"></text></g><g><title>schedule (53 samples, 0.01%)</title><rect x="23.4876%" y="629" width="0.0102%" height="15" fill="rgb(240,135,9)" fg:x="122225" fg:w="53"/><text x="23.7376%" y="639.50"></text></g><g><title>__schedule (53 samples, 0.01%)</title><rect x="23.4876%" y="613" width="0.0102%" height="15" fill="rgb(248,109,14)" fg:x="122225" fg:w="53"/><text x="23.7376%" y="623.50"></text></g><g><title>[perf-261576.map] (193 samples, 0.04%)</title><rect x="23.4630%" y="821" width="0.0371%" height="15" fill="rgb(227,146,52)" fg:x="122097" fg:w="193"/><text x="23.7130%" y="831.50"></text></g><g><title>globbing_pool-6 (272 samples, 0.05%)</title><rect x="23.4542%" y="837" width="0.0523%" height="15" fill="rgb(232,54,3)" fg:x="122051" fg:w="272"/><text x="23.7042%" y="847.50"></text></g><g><title>[perf-261576.map] (142 samples, 0.03%)</title><rect x="23.5084%" y="821" width="0.0273%" height="15" fill="rgb(229,201,43)" fg:x="122333" fg:w="142"/><text x="23.7584%" y="831.50"></text></g><g><title>globbing_pool-7 (195 samples, 0.04%)</title><rect x="23.5064%" y="837" width="0.0375%" height="15" fill="rgb(252,161,33)" fg:x="122323" fg:w="195"/><text x="23.7564%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="23.5550%" y="581" width="0.0135%" height="15" fill="rgb(226,146,40)" fg:x="122576" fg:w="70"/><text x="23.8050%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="23.5552%" y="565" width="0.0133%" height="15" fill="rgb(219,47,25)" fg:x="122577" fg:w="69"/><text x="23.8052%" y="575.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="23.5552%" y="549" width="0.0133%" height="15" fill="rgb(250,135,13)" fg:x="122577" fg:w="69"/><text x="23.8052%" y="559.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="23.5549%" y="597" width="0.0144%" height="15" fill="rgb(219,229,18)" fg:x="122575" fg:w="75"/><text x="23.8049%" y="607.50"></text></g><g><title>do_syscall_64 (77 samples, 0.01%)</title><rect x="23.5547%" y="709" width="0.0148%" height="15" fill="rgb(217,152,27)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="719.50"></text></g><g><title>__x64_sys_futex (77 samples, 0.01%)</title><rect x="23.5547%" y="693" width="0.0148%" height="15" fill="rgb(225,71,47)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="703.50"></text></g><g><title>do_futex (77 samples, 0.01%)</title><rect x="23.5547%" y="677" width="0.0148%" height="15" fill="rgb(220,139,14)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="687.50"></text></g><g><title>futex_wait (77 samples, 0.01%)</title><rect x="23.5547%" y="661" width="0.0148%" height="15" fill="rgb(247,54,32)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="671.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.01%)</title><rect x="23.5549%" y="645" width="0.0146%" height="15" fill="rgb(252,131,39)" fg:x="122575" fg:w="76"/><text x="23.8049%" y="655.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="23.5549%" y="629" width="0.0146%" height="15" fill="rgb(210,108,39)" fg:x="122575" fg:w="76"/><text x="23.8049%" y="639.50"></text></g><g><title>__schedule (76 samples, 0.01%)</title><rect x="23.5549%" y="613" width="0.0146%" height="15" fill="rgb(205,23,29)" fg:x="122575" fg:w="76"/><text x="23.8049%" y="623.50"></text></g><g><title>Unsafe_Park (80 samples, 0.02%)</title><rect x="23.5547%" y="805" width="0.0154%" height="15" fill="rgb(246,139,46)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="815.50"></text></g><g><title>Parker::park (80 samples, 0.02%)</title><rect x="23.5547%" y="789" width="0.0154%" height="15" fill="rgb(250,81,26)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="799.50"></text></g><g><title>__pthread_cond_wait (80 samples, 0.02%)</title><rect x="23.5547%" y="773" width="0.0154%" height="15" fill="rgb(214,104,7)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (80 samples, 0.02%)</title><rect x="23.5547%" y="757" width="0.0154%" height="15" fill="rgb(233,189,8)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="767.50"></text></g><g><title>futex_wait_cancelable (80 samples, 0.02%)</title><rect x="23.5547%" y="741" width="0.0154%" height="15" fill="rgb(228,141,17)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="23.5547%" y="725" width="0.0154%" height="15" fill="rgb(247,157,1)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="735.50"></text></g><g><title>[perf-261576.map] (132 samples, 0.03%)</title><rect x="23.5451%" y="821" width="0.0254%" height="15" fill="rgb(249,225,5)" fg:x="122524" fg:w="132"/><text x="23.7951%" y="831.50"></text></g><g><title>globbing_pool-8 (175 samples, 0.03%)</title><rect x="23.5439%" y="837" width="0.0336%" height="15" fill="rgb(242,55,13)" fg:x="122518" fg:w="175"/><text x="23.7939%" y="847.50"></text></g><g><title>[perf-261576.map] (57 samples, 0.01%)</title><rect x="23.5777%" y="821" width="0.0110%" height="15" fill="rgb(230,49,50)" fg:x="122694" fg:w="57"/><text x="23.8277%" y="831.50"></text></g><g><title>globbing_pool-9 (73 samples, 0.01%)</title><rect x="23.5775%" y="837" width="0.0140%" height="15" fill="rgb(241,111,38)" fg:x="122693" fg:w="73"/><text x="23.8275%" y="847.50"></text></g><g><title>[anon] (180 samples, 0.03%)</title><rect x="23.5946%" y="821" width="0.0346%" height="15" fill="rgb(252,155,4)" fg:x="122782" fg:w="180"/><text x="23.8446%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (64 samples, 0.01%)</title><rect x="23.9788%" y="693" width="0.0123%" height="15" fill="rgb(212,69,32)" fg:x="124781" fg:w="64"/><text x="24.2288%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (64 samples, 0.01%)</title><rect x="23.9788%" y="677" width="0.0123%" height="15" fill="rgb(243,107,47)" fg:x="124781" fg:w="64"/><text x="24.2288%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.02%)</title><rect x="23.9788%" y="709" width="0.0198%" height="15" fill="rgb(247,130,12)" fg:x="124781" fg:w="103"/><text x="24.2288%" y="719.50"></text></g><g><title>ClassLoader::load_class (118 samples, 0.02%)</title><rect x="23.9761%" y="725" width="0.0227%" height="15" fill="rgb(233,74,16)" fg:x="124767" fg:w="118"/><text x="24.2261%" y="735.50"></text></g><g><title>ConstantPool::klass_at_impl (140 samples, 0.03%)</title><rect x="23.9747%" y="789" width="0.0269%" height="15" fill="rgb(208,58,18)" fg:x="124760" fg:w="140"/><text x="24.2247%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (140 samples, 0.03%)</title><rect x="23.9747%" y="773" width="0.0269%" height="15" fill="rgb(242,225,1)" fg:x="124760" fg:w="140"/><text x="24.2247%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (139 samples, 0.03%)</title><rect x="23.9749%" y="757" width="0.0267%" height="15" fill="rgb(249,39,40)" fg:x="124761" fg:w="139"/><text x="24.2249%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (133 samples, 0.03%)</title><rect x="23.9761%" y="741" width="0.0256%" height="15" fill="rgb(207,72,44)" fg:x="124767" fg:w="133"/><text x="24.2261%" y="751.50"></text></g><g><title>Rewriter::rewrite (56 samples, 0.01%)</title><rect x="24.0101%" y="757" width="0.0108%" height="15" fill="rgb(215,193,12)" fg:x="124944" fg:w="56"/><text x="24.2601%" y="767.50"></text></g><g><title>Rewriter::Rewriter (56 samples, 0.01%)</title><rect x="24.0101%" y="741" width="0.0108%" height="15" fill="rgb(248,41,39)" fg:x="124944" fg:w="56"/><text x="24.2601%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (114 samples, 0.02%)</title><rect x="24.0024%" y="773" width="0.0219%" height="15" fill="rgb(253,85,4)" fg:x="124904" fg:w="114"/><text x="24.2524%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (261 samples, 0.05%)</title><rect x="23.9745%" y="805" width="0.0502%" height="15" fill="rgb(243,70,31)" fg:x="124759" fg:w="261"/><text x="24.2245%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (116 samples, 0.02%)</title><rect x="24.0024%" y="789" width="0.0223%" height="15" fill="rgb(253,195,26)" fg:x="124904" fg:w="116"/><text x="24.2524%" y="799.50"></text></g><g><title>LinkResolver::resolve_field_access (80 samples, 0.02%)</title><rect x="24.0528%" y="773" width="0.0154%" height="15" fill="rgb(243,42,11)" fg:x="125166" fg:w="80"/><text x="24.3028%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (92 samples, 0.02%)</title><rect x="24.0510%" y="789" width="0.0177%" height="15" fill="rgb(239,66,17)" fg:x="125157" fg:w="92"/><text x="24.3010%" y="799.50"></text></g><g><title>SystemDictionary::load_instance_class (53 samples, 0.01%)</title><rect x="24.0785%" y="709" width="0.0102%" height="15" fill="rgb(217,132,21)" fg:x="125300" fg:w="53"/><text x="24.3285%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (67 samples, 0.01%)</title><rect x="24.0760%" y="757" width="0.0129%" height="15" fill="rgb(252,202,21)" fg:x="125287" fg:w="67"/><text x="24.3260%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (65 samples, 0.01%)</title><rect x="24.0764%" y="741" width="0.0125%" height="15" fill="rgb(233,98,36)" fg:x="125289" fg:w="65"/><text x="24.3264%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (64 samples, 0.01%)</title><rect x="24.0766%" y="725" width="0.0123%" height="15" fill="rgb(216,153,54)" fg:x="125290" fg:w="64"/><text x="24.3266%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (74 samples, 0.01%)</title><rect x="24.1010%" y="741" width="0.0142%" height="15" fill="rgb(250,99,7)" fg:x="125417" fg:w="74"/><text x="24.3510%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (70 samples, 0.01%)</title><rect x="24.1018%" y="725" width="0.0135%" height="15" fill="rgb(207,56,50)" fg:x="125421" fg:w="70"/><text x="24.3518%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (90 samples, 0.02%)</title><rect x="24.1006%" y="757" width="0.0173%" height="15" fill="rgb(244,61,34)" fg:x="125415" fg:w="90"/><text x="24.3506%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (230 samples, 0.04%)</title><rect x="24.0749%" y="773" width="0.0442%" height="15" fill="rgb(241,50,38)" fg:x="125281" fg:w="230"/><text x="24.3249%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (274 samples, 0.05%)</title><rect x="24.0687%" y="789" width="0.0527%" height="15" fill="rgb(212,166,30)" fg:x="125249" fg:w="274"/><text x="24.3187%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (420 samples, 0.08%)</title><rect x="24.0501%" y="805" width="0.0807%" height="15" fill="rgb(249,127,32)" fg:x="125152" fg:w="420"/><text x="24.3001%" y="815.50"></text></g><g><title>SymbolTable::add (54 samples, 0.01%)</title><rect x="24.1944%" y="661" width="0.0104%" height="15" fill="rgb(209,103,0)" fg:x="125903" fg:w="54"/><text x="24.4444%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (462 samples, 0.09%)</title><rect x="24.1890%" y="677" width="0.0888%" height="15" fill="rgb(238,209,51)" fg:x="125875" fg:w="462"/><text x="24.4390%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (380 samples, 0.07%)</title><rect x="24.2048%" y="661" width="0.0730%" height="15" fill="rgb(237,56,23)" fg:x="125957" fg:w="380"/><text x="24.4548%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (481 samples, 0.09%)</title><rect x="24.1863%" y="693" width="0.0924%" height="15" fill="rgb(215,153,46)" fg:x="125861" fg:w="481"/><text x="24.4363%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (121 samples, 0.02%)</title><rect x="24.2824%" y="677" width="0.0233%" height="15" fill="rgb(224,49,31)" fg:x="126361" fg:w="121"/><text x="24.5324%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (125 samples, 0.02%)</title><rect x="24.2820%" y="693" width="0.0240%" height="15" fill="rgb(250,18,42)" fg:x="126359" fg:w="125"/><text x="24.5320%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (651 samples, 0.13%)</title><rect x="24.1844%" y="709" width="0.1251%" height="15" fill="rgb(215,176,39)" fg:x="125851" fg:w="651"/><text x="24.4344%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (653 samples, 0.13%)</title><rect x="24.1842%" y="725" width="0.1255%" height="15" fill="rgb(223,77,29)" fg:x="125850" fg:w="653"/><text x="24.4342%" y="735.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (60 samples, 0.01%)</title><rect x="24.3145%" y="677" width="0.0115%" height="15" fill="rgb(234,94,52)" fg:x="126528" fg:w="60"/><text x="24.5645%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (96 samples, 0.02%)</title><rect x="24.3103%" y="693" width="0.0184%" height="15" fill="rgb(220,154,50)" fg:x="126506" fg:w="96"/><text x="24.5603%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (118 samples, 0.02%)</title><rect x="24.3097%" y="709" width="0.0227%" height="15" fill="rgb(212,11,10)" fg:x="126503" fg:w="118"/><text x="24.5597%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (125 samples, 0.02%)</title><rect x="24.3097%" y="725" width="0.0240%" height="15" fill="rgb(205,166,19)" fg:x="126503" fg:w="125"/><text x="24.5597%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (817 samples, 0.16%)</title><rect x="24.1842%" y="741" width="0.1570%" height="15" fill="rgb(244,198,16)" fg:x="125850" fg:w="817"/><text x="24.4342%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (854 samples, 0.16%)</title><rect x="24.1840%" y="757" width="0.1641%" height="15" fill="rgb(219,69,12)" fg:x="125849" fg:w="854"/><text x="24.4340%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (861 samples, 0.17%)</title><rect x="24.1829%" y="789" width="0.1655%" height="15" fill="rgb(245,30,7)" fg:x="125843" fg:w="861"/><text x="24.4329%" y="799.50"></text></g><g><title>jvm_define_class_common (861 samples, 0.17%)</title><rect x="24.1829%" y="773" width="0.1655%" height="15" fill="rgb(218,221,48)" fg:x="125843" fg:w="861"/><text x="24.4329%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (886 samples, 0.17%)</title><rect x="24.1827%" y="805" width="0.1703%" height="15" fill="rgb(216,66,15)" fg:x="125842" fg:w="886"/><text x="24.4327%" y="815.50"></text></g><g><title>JVM_FindClassFromBootLoader (53 samples, 0.01%)</title><rect x="24.3529%" y="789" width="0.0102%" height="15" fill="rgb(226,122,50)" fg:x="126728" fg:w="53"/><text x="24.6029%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (62 samples, 0.01%)</title><rect x="24.3529%" y="805" width="0.0119%" height="15" fill="rgb(239,156,16)" fg:x="126728" fg:w="62"/><text x="24.6029%" y="815.50"></text></g><g><title>[perf-261576.map] (3,993 samples, 0.77%)</title><rect x="23.6336%" y="821" width="0.7673%" height="15" fill="rgb(224,27,38)" fg:x="122985" fg:w="3993"/><text x="23.8836%" y="831.50"></text></g><g><title>[unknown] (145 samples, 0.03%)</title><rect x="24.4010%" y="821" width="0.0279%" height="15" fill="rgb(224,39,27)" fg:x="126978" fg:w="145"/><text x="24.6510%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (280 samples, 0.05%)</title><rect x="24.4327%" y="757" width="0.0538%" height="15" fill="rgb(215,92,29)" fg:x="127143" fg:w="280"/><text x="24.6827%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (277 samples, 0.05%)</title><rect x="24.4333%" y="741" width="0.0532%" height="15" fill="rgb(207,159,16)" fg:x="127146" fg:w="277"/><text x="24.6833%" y="751.50"></text></g><g><title>native_write_msr (276 samples, 0.05%)</title><rect x="24.4334%" y="725" width="0.0530%" height="15" fill="rgb(238,163,47)" fg:x="127147" fg:w="276"/><text x="24.6834%" y="735.50"></text></g><g><title>schedule_tail (284 samples, 0.05%)</title><rect x="24.4323%" y="789" width="0.0546%" height="15" fill="rgb(219,91,49)" fg:x="127141" fg:w="284"/><text x="24.6823%" y="799.50"></text></g><g><title>finish_task_switch (284 samples, 0.05%)</title><rect x="24.4323%" y="773" width="0.0546%" height="15" fill="rgb(227,167,31)" fg:x="127141" fg:w="284"/><text x="24.6823%" y="783.50"></text></g><g><title>ret_from_fork (291 samples, 0.06%)</title><rect x="24.4313%" y="805" width="0.0559%" height="15" fill="rgb(234,80,54)" fg:x="127136" fg:w="291"/><text x="24.6813%" y="815.50"></text></g><g><title>JavaMain (54 samples, 0.01%)</title><rect x="24.4876%" y="789" width="0.0104%" height="15" fill="rgb(212,114,2)" fg:x="127429" fg:w="54"/><text x="24.7376%" y="799.50"></text></g><g><title>__GI___clone (443 samples, 0.09%)</title><rect x="24.4292%" y="821" width="0.0851%" height="15" fill="rgb(234,50,24)" fg:x="127125" fg:w="443"/><text x="24.6792%" y="831.50"></text></g><g><title>start_thread (141 samples, 0.03%)</title><rect x="24.4873%" y="805" width="0.0271%" height="15" fill="rgb(221,68,8)" fg:x="127427" fg:w="141"/><text x="24.7373%" y="815.50"></text></g><g><title>thread_native_entry (78 samples, 0.01%)</title><rect x="24.4994%" y="789" width="0.0150%" height="15" fill="rgb(254,180,31)" fg:x="127490" fg:w="78"/><text x="24.7494%" y="799.50"></text></g><g><title>java (4,828 samples, 0.93%)</title><rect x="23.5916%" y="837" width="0.9278%" height="15" fill="rgb(247,130,50)" fg:x="122766" fg:w="4828"/><text x="23.8416%" y="847.50"></text></g><g><title>[bash] (75 samples, 0.01%)</title><rect x="24.5284%" y="805" width="0.0144%" height="15" fill="rgb(211,109,4)" fg:x="127641" fg:w="75"/><text x="24.7784%" y="815.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="24.5318%" y="789" width="0.0110%" height="15" fill="rgb(238,50,21)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="799.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="24.5318%" y="773" width="0.0110%" height="15" fill="rgb(225,57,45)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="783.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="24.5318%" y="757" width="0.0110%" height="15" fill="rgb(209,196,50)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="767.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="24.5318%" y="741" width="0.0110%" height="15" fill="rgb(242,140,13)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="751.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="24.5318%" y="725" width="0.0110%" height="15" fill="rgb(217,111,7)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="735.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="24.5318%" y="709" width="0.0110%" height="15" fill="rgb(253,193,51)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="719.50"></text></g><g><title>execute_command (54 samples, 0.01%)</title><rect x="24.5461%" y="773" width="0.0104%" height="15" fill="rgb(252,70,29)" fg:x="127733" fg:w="54"/><text x="24.7961%" y="783.50"></text></g><g><title>execute_command_internal (54 samples, 0.01%)</title><rect x="24.5461%" y="757" width="0.0104%" height="15" fill="rgb(232,127,12)" fg:x="127733" fg:w="54"/><text x="24.7961%" y="767.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="24.5461%" y="789" width="0.0123%" height="15" fill="rgb(211,180,21)" fg:x="127733" fg:w="64"/><text x="24.7961%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (74 samples, 0.01%)</title><rect x="24.5620%" y="69" width="0.0142%" height="15" fill="rgb(229,72,13)" fg:x="127816" fg:w="74"/><text x="24.8120%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (73 samples, 0.01%)</title><rect x="24.5622%" y="53" width="0.0140%" height="15" fill="rgb(240,211,49)" fg:x="127817" fg:w="73"/><text x="24.8122%" y="63.50"></text></g><g><title>native_write_msr (73 samples, 0.01%)</title><rect x="24.5622%" y="37" width="0.0140%" height="15" fill="rgb(219,149,40)" fg:x="127817" fg:w="73"/><text x="24.8122%" y="47.50"></text></g><g><title>ret_from_fork (78 samples, 0.01%)</title><rect x="24.5614%" y="117" width="0.0150%" height="15" fill="rgb(210,127,46)" fg:x="127813" fg:w="78"/><text x="24.8114%" y="127.50"></text></g><g><title>schedule_tail (78 samples, 0.01%)</title><rect x="24.5614%" y="101" width="0.0150%" height="15" fill="rgb(220,106,7)" fg:x="127813" fg:w="78"/><text x="24.8114%" y="111.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="24.5620%" y="85" width="0.0144%" height="15" fill="rgb(249,31,22)" fg:x="127816" fg:w="75"/><text x="24.8120%" y="95.50"></text></g><g><title>arch_fork (86 samples, 0.02%)</title><rect x="24.5601%" y="133" width="0.0165%" height="15" fill="rgb(253,1,49)" fg:x="127806" fg:w="86"/><text x="24.8101%" y="143.50"></text></g><g><title>make_child (92 samples, 0.02%)</title><rect x="24.5599%" y="165" width="0.0177%" height="15" fill="rgb(227,144,33)" fg:x="127805" fg:w="92"/><text x="24.8099%" y="175.50"></text></g><g><title>__libc_fork (92 samples, 0.02%)</title><rect x="24.5599%" y="149" width="0.0177%" height="15" fill="rgb(249,163,44)" fg:x="127805" fg:w="92"/><text x="24.8099%" y="159.50"></text></g><g><title>parse_and_execute (100 samples, 0.02%)</title><rect x="24.5589%" y="245" width="0.0192%" height="15" fill="rgb(234,15,39)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="255.50"></text></g><g><title>execute_command_internal (100 samples, 0.02%)</title><rect x="24.5589%" y="229" width="0.0192%" height="15" fill="rgb(207,66,16)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="239.50"></text></g><g><title>[bash] (100 samples, 0.02%)</title><rect x="24.5589%" y="213" width="0.0192%" height="15" fill="rgb(233,112,24)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="223.50"></text></g><g><title>[bash] (100 samples, 0.02%)</title><rect x="24.5589%" y="197" width="0.0192%" height="15" fill="rgb(230,90,22)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="207.50"></text></g><g><title>execute_command_internal (100 samples, 0.02%)</title><rect x="24.5589%" y="181" width="0.0192%" height="15" fill="rgb(229,61,13)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="191.50"></text></g><g><title>execute_command_internal (168 samples, 0.03%)</title><rect x="24.5461%" y="805" width="0.0323%" height="15" fill="rgb(225,57,24)" fg:x="127733" fg:w="168"/><text x="24.7961%" y="815.50"></text></g><g><title>execute_command_internal (104 samples, 0.02%)</title><rect x="24.5584%" y="789" width="0.0200%" height="15" fill="rgb(208,169,48)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="799.50"></text></g><g><title>[bash] (104 samples, 0.02%)</title><rect x="24.5584%" y="773" width="0.0200%" height="15" fill="rgb(244,218,51)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="783.50"></text></g><g><title>execute_command (104 samples, 0.02%)</title><rect x="24.5584%" y="757" width="0.0200%" height="15" fill="rgb(214,148,10)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="767.50"></text></g><g><title>execute_command_internal (104 samples, 0.02%)</title><rect x="24.5584%" y="741" width="0.0200%" height="15" fill="rgb(225,174,27)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="751.50"></text></g><g><title>[bash] (104 samples, 0.02%)</title><rect x="24.5584%" y="725" width="0.0200%" height="15" fill="rgb(230,96,26)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="735.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="709" width="0.0194%" height="15" fill="rgb(232,10,30)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="719.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="693" width="0.0194%" height="15" fill="rgb(222,8,50)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="703.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="677" width="0.0194%" height="15" fill="rgb(213,81,27)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="687.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="661" width="0.0194%" height="15" fill="rgb(245,50,10)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="671.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="645" width="0.0194%" height="15" fill="rgb(216,100,18)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="655.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="629" width="0.0194%" height="15" fill="rgb(236,147,54)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="639.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="613" width="0.0194%" height="15" fill="rgb(205,143,26)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="623.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="597" width="0.0194%" height="15" fill="rgb(236,26,9)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="607.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="581" width="0.0194%" height="15" fill="rgb(221,165,53)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="591.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="565" width="0.0194%" height="15" fill="rgb(214,110,17)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="575.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="549" width="0.0194%" height="15" fill="rgb(237,197,12)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="559.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="533" width="0.0194%" height="15" fill="rgb(205,84,17)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="543.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="517" width="0.0194%" height="15" fill="rgb(237,18,45)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="527.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="501" width="0.0194%" height="15" fill="rgb(221,87,14)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="511.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="485" width="0.0194%" height="15" fill="rgb(238,186,15)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="495.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="469" width="0.0194%" height="15" fill="rgb(208,115,11)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="479.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="453" width="0.0194%" height="15" fill="rgb(254,175,0)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="463.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="437" width="0.0194%" height="15" fill="rgb(227,24,42)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="447.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="421" width="0.0194%" height="15" fill="rgb(223,211,37)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="431.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="405" width="0.0194%" height="15" fill="rgb(235,49,27)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="415.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="389" width="0.0194%" height="15" fill="rgb(254,97,51)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="399.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="373" width="0.0194%" height="15" fill="rgb(249,51,40)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="383.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="357" width="0.0194%" height="15" fill="rgb(210,128,45)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="367.50"></text></g><g><title>expand_words (101 samples, 0.02%)</title><rect x="24.5589%" y="341" width="0.0194%" height="15" fill="rgb(224,137,50)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="351.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="325" width="0.0194%" height="15" fill="rgb(242,15,9)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="335.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="309" width="0.0194%" height="15" fill="rgb(233,187,41)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="319.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="293" width="0.0194%" height="15" fill="rgb(227,2,29)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="303.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="277" width="0.0194%" height="15" fill="rgb(222,70,3)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="287.50"></text></g><g><title>command_substitute (101 samples, 0.02%)</title><rect x="24.5589%" y="261" width="0.0194%" height="15" fill="rgb(213,11,42)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="271.50"></text></g><g><title>[unknown] (296 samples, 0.06%)</title><rect x="24.5284%" y="821" width="0.0569%" height="15" fill="rgb(225,150,9)" fg:x="127641" fg:w="296"/><text x="24.7784%" y="831.50"></text></g><g><title>arch_fork (54 samples, 0.01%)</title><rect x="24.5939%" y="645" width="0.0104%" height="15" fill="rgb(230,162,45)" fg:x="127982" fg:w="54"/><text x="24.8439%" y="655.50"></text></g><g><title>__libc_fork (57 samples, 0.01%)</title><rect x="24.5939%" y="661" width="0.0110%" height="15" fill="rgb(222,14,52)" fg:x="127982" fg:w="57"/><text x="24.8439%" y="671.50"></text></g><g><title>make_child (59 samples, 0.01%)</title><rect x="24.5939%" y="677" width="0.0113%" height="15" fill="rgb(254,198,14)" fg:x="127982" fg:w="59"/><text x="24.8439%" y="687.50"></text></g><g><title>execute_command (87 samples, 0.02%)</title><rect x="24.5903%" y="709" width="0.0167%" height="15" fill="rgb(220,217,30)" fg:x="127963" fg:w="87"/><text x="24.8403%" y="719.50"></text></g><g><title>execute_command_internal (87 samples, 0.02%)</title><rect x="24.5903%" y="693" width="0.0167%" height="15" fill="rgb(215,146,41)" fg:x="127963" fg:w="87"/><text x="24.8403%" y="703.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="24.5897%" y="725" width="0.0213%" height="15" fill="rgb(217,27,36)" fg:x="127960" fg:w="111"/><text x="24.8397%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="24.6360%" y="549" width="0.0123%" height="15" fill="rgb(219,218,39)" fg:x="128201" fg:w="64"/><text x="24.8860%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="24.6360%" y="533" width="0.0123%" height="15" fill="rgb(219,4,42)" fg:x="128201" fg:w="64"/><text x="24.8860%" y="543.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="24.6362%" y="517" width="0.0121%" height="15" fill="rgb(249,119,36)" fg:x="128202" fg:w="63"/><text x="24.8862%" y="527.50"></text></g><g><title>arch_fork (81 samples, 0.02%)</title><rect x="24.6331%" y="613" width="0.0156%" height="15" fill="rgb(209,23,33)" fg:x="128186" fg:w="81"/><text x="24.8831%" y="623.50"></text></g><g><title>ret_from_fork (74 samples, 0.01%)</title><rect x="24.6345%" y="597" width="0.0142%" height="15" fill="rgb(211,10,0)" fg:x="128193" fg:w="74"/><text x="24.8845%" y="607.50"></text></g><g><title>schedule_tail (74 samples, 0.01%)</title><rect x="24.6345%" y="581" width="0.0142%" height="15" fill="rgb(208,99,37)" fg:x="128193" fg:w="74"/><text x="24.8845%" y="591.50"></text></g><g><title>finish_task_switch (66 samples, 0.01%)</title><rect x="24.6360%" y="565" width="0.0127%" height="15" fill="rgb(213,132,31)" fg:x="128201" fg:w="66"/><text x="24.8860%" y="575.50"></text></g><g><title>__libc_fork (82 samples, 0.02%)</title><rect x="24.6331%" y="629" width="0.0158%" height="15" fill="rgb(243,129,40)" fg:x="128186" fg:w="82"/><text x="24.8831%" y="639.50"></text></g><g><title>make_child (85 samples, 0.02%)</title><rect x="24.6331%" y="645" width="0.0163%" height="15" fill="rgb(210,66,33)" fg:x="128186" fg:w="85"/><text x="24.8831%" y="655.50"></text></g><g><title>parse_and_execute (69 samples, 0.01%)</title><rect x="24.6494%" y="645" width="0.0133%" height="15" fill="rgb(209,189,4)" fg:x="128271" fg:w="69"/><text x="24.8994%" y="655.50"></text></g><g><title>execute_command_internal (68 samples, 0.01%)</title><rect x="24.6496%" y="629" width="0.0131%" height="15" fill="rgb(214,107,37)" fg:x="128272" fg:w="68"/><text x="24.8996%" y="639.50"></text></g><g><title>expand_word_leave_quoted (188 samples, 0.04%)</title><rect x="24.6325%" y="693" width="0.0361%" height="15" fill="rgb(245,88,54)" fg:x="128183" fg:w="188"/><text x="24.8825%" y="703.50"></text></g><g><title>[bash] (188 samples, 0.04%)</title><rect x="24.6325%" y="677" width="0.0361%" height="15" fill="rgb(205,146,20)" fg:x="128183" fg:w="188"/><text x="24.8825%" y="687.50"></text></g><g><title>command_substitute (188 samples, 0.04%)</title><rect x="24.6325%" y="661" width="0.0361%" height="15" fill="rgb(220,161,25)" fg:x="128183" fg:w="188"/><text x="24.8825%" y="671.50"></text></g><g><title>execute_command (208 samples, 0.04%)</title><rect x="24.6296%" y="725" width="0.0400%" height="15" fill="rgb(215,152,15)" fg:x="128168" fg:w="208"/><text x="24.8796%" y="735.50"></text></g><g><title>execute_command_internal (207 samples, 0.04%)</title><rect x="24.6298%" y="709" width="0.0398%" height="15" fill="rgb(233,192,44)" fg:x="128169" fg:w="207"/><text x="24.8798%" y="719.50"></text></g><g><title>arch_fork (56 samples, 0.01%)</title><rect x="24.6723%" y="597" width="0.0108%" height="15" fill="rgb(240,170,46)" fg:x="128390" fg:w="56"/><text x="24.9223%" y="607.50"></text></g><g><title>__libc_fork (59 samples, 0.01%)</title><rect x="24.6721%" y="613" width="0.0113%" height="15" fill="rgb(207,104,33)" fg:x="128389" fg:w="59"/><text x="24.9221%" y="623.50"></text></g><g><title>make_child (60 samples, 0.01%)</title><rect x="24.6721%" y="629" width="0.0115%" height="15" fill="rgb(219,21,39)" fg:x="128389" fg:w="60"/><text x="24.9221%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.02%)</title><rect x="24.6896%" y="453" width="0.0213%" height="15" fill="rgb(214,133,29)" fg:x="128480" fg:w="111"/><text x="24.9396%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (110 samples, 0.02%)</title><rect x="24.6898%" y="437" width="0.0211%" height="15" fill="rgb(226,93,6)" fg:x="128481" fg:w="110"/><text x="24.9398%" y="447.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="24.6902%" y="421" width="0.0208%" height="15" fill="rgb(252,222,34)" fg:x="128483" fg:w="108"/><text x="24.9402%" y="431.50"></text></g><g><title>schedule_tail (120 samples, 0.02%)</title><rect x="24.6883%" y="485" width="0.0231%" height="15" fill="rgb(252,92,48)" fg:x="128473" fg:w="120"/><text x="24.9383%" y="495.50"></text></g><g><title>finish_task_switch (116 samples, 0.02%)</title><rect x="24.6890%" y="469" width="0.0223%" height="15" fill="rgb(245,223,24)" fg:x="128477" fg:w="116"/><text x="24.9390%" y="479.50"></text></g><g><title>arch_fork (127 samples, 0.02%)</title><rect x="24.6871%" y="517" width="0.0244%" height="15" fill="rgb(205,176,3)" fg:x="128467" fg:w="127"/><text x="24.9371%" y="527.50"></text></g><g><title>ret_from_fork (121 samples, 0.02%)</title><rect x="24.6883%" y="501" width="0.0233%" height="15" fill="rgb(235,151,15)" fg:x="128473" fg:w="121"/><text x="24.9383%" y="511.50"></text></g><g><title>__libc_fork (135 samples, 0.03%)</title><rect x="24.6867%" y="533" width="0.0259%" height="15" fill="rgb(237,209,11)" fg:x="128465" fg:w="135"/><text x="24.9367%" y="543.50"></text></g><g><title>make_child (138 samples, 0.03%)</title><rect x="24.6867%" y="549" width="0.0265%" height="15" fill="rgb(243,227,24)" fg:x="128465" fg:w="138"/><text x="24.9367%" y="559.50"></text></g><g><title>parse_and_execute (176 samples, 0.03%)</title><rect x="24.6836%" y="629" width="0.0338%" height="15" fill="rgb(239,193,16)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="639.50"></text></g><g><title>execute_command_internal (176 samples, 0.03%)</title><rect x="24.6836%" y="613" width="0.0338%" height="15" fill="rgb(231,27,9)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="623.50"></text></g><g><title>[bash] (176 samples, 0.03%)</title><rect x="24.6836%" y="597" width="0.0338%" height="15" fill="rgb(219,169,10)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="607.50"></text></g><g><title>[bash] (176 samples, 0.03%)</title><rect x="24.6836%" y="581" width="0.0338%" height="15" fill="rgb(244,229,43)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="591.50"></text></g><g><title>execute_command_internal (176 samples, 0.03%)</title><rect x="24.6836%" y="565" width="0.0338%" height="15" fill="rgb(254,38,20)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="575.50"></text></g><g><title>[bash] (255 samples, 0.05%)</title><rect x="24.6702%" y="661" width="0.0490%" height="15" fill="rgb(250,47,30)" fg:x="128379" fg:w="255"/><text x="24.9202%" y="671.50"></text></g><g><title>command_substitute (251 samples, 0.05%)</title><rect x="24.6710%" y="645" width="0.0482%" height="15" fill="rgb(224,124,36)" fg:x="128383" fg:w="251"/><text x="24.9210%" y="655.50"></text></g><g><title>[bash] (260 samples, 0.05%)</title><rect x="24.6698%" y="693" width="0.0500%" height="15" fill="rgb(246,68,51)" fg:x="128377" fg:w="260"/><text x="24.9198%" y="703.50"></text></g><g><title>[bash] (258 samples, 0.05%)</title><rect x="24.6702%" y="677" width="0.0496%" height="15" fill="rgb(253,43,49)" fg:x="128379" fg:w="258"/><text x="24.9202%" y="687.50"></text></g><g><title>expand_words (263 samples, 0.05%)</title><rect x="24.6696%" y="725" width="0.0505%" height="15" fill="rgb(219,54,36)" fg:x="128376" fg:w="263"/><text x="24.9196%" y="735.50"></text></g><g><title>[bash] (263 samples, 0.05%)</title><rect x="24.6696%" y="709" width="0.0505%" height="15" fill="rgb(227,133,34)" fg:x="128376" fg:w="263"/><text x="24.9196%" y="719.50"></text></g><g><title>execute_command (681 samples, 0.13%)</title><rect x="24.5897%" y="757" width="0.1309%" height="15" fill="rgb(247,227,15)" fg:x="127960" fg:w="681"/><text x="24.8397%" y="767.50"></text></g><g><title>execute_command_internal (681 samples, 0.13%)</title><rect x="24.5897%" y="741" width="0.1309%" height="15" fill="rgb(229,96,14)" fg:x="127960" fg:w="681"/><text x="24.8397%" y="751.50"></text></g><g><title>[bash] (162 samples, 0.03%)</title><rect x="24.7409%" y="693" width="0.0311%" height="15" fill="rgb(220,79,17)" fg:x="128747" fg:w="162"/><text x="24.9909%" y="703.50"></text></g><g><title>[bash] (280 samples, 0.05%)</title><rect x="24.7288%" y="709" width="0.0538%" height="15" fill="rgb(205,131,53)" fg:x="128684" fg:w="280"/><text x="24.9788%" y="719.50"></text></g><g><title>parse_command (343 samples, 0.07%)</title><rect x="24.7207%" y="741" width="0.0659%" height="15" fill="rgb(209,50,29)" fg:x="128642" fg:w="343"/><text x="24.9707%" y="751.50"></text></g><g><title>yyparse (343 samples, 0.07%)</title><rect x="24.7207%" y="725" width="0.0659%" height="15" fill="rgb(245,86,46)" fg:x="128642" fg:w="343"/><text x="24.9707%" y="735.50"></text></g><g><title>reader_loop (1,042 samples, 0.20%)</title><rect x="24.5866%" y="773" width="0.2002%" height="15" fill="rgb(235,66,46)" fg:x="127944" fg:w="1042"/><text x="24.8366%" y="783.50"></text></g><g><title>read_command (345 samples, 0.07%)</title><rect x="24.7205%" y="757" width="0.0663%" height="15" fill="rgb(232,148,31)" fg:x="128641" fg:w="345"/><text x="24.9705%" y="767.50"></text></g><g><title>__libc_start_main (1,053 samples, 0.20%)</title><rect x="24.5854%" y="805" width="0.2024%" height="15" fill="rgb(217,149,8)" fg:x="127938" fg:w="1053"/><text x="24.8354%" y="815.50"></text></g><g><title>main (1,053 samples, 0.20%)</title><rect x="24.5854%" y="789" width="0.2024%" height="15" fill="rgb(209,183,11)" fg:x="127938" fg:w="1053"/><text x="24.8354%" y="799.50"></text></g><g><title>_start (1,067 samples, 0.21%)</title><rect x="24.5854%" y="821" width="0.2050%" height="15" fill="rgb(208,55,20)" fg:x="127938" fg:w="1067"/><text x="24.8354%" y="831.50"></text></g><g><title>libtool (1,467 samples, 0.28%)</title><rect x="24.5193%" y="837" width="0.2819%" height="15" fill="rgb(218,39,14)" fg:x="127594" fg:w="1467"/><text x="24.7693%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.02%)</title><rect x="24.8355%" y="661" width="0.0169%" height="15" fill="rgb(216,169,33)" fg:x="129239" fg:w="88"/><text x="25.0855%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (88 samples, 0.02%)</title><rect x="24.8355%" y="645" width="0.0169%" height="15" fill="rgb(233,80,24)" fg:x="129239" fg:w="88"/><text x="25.0855%" y="655.50"></text></g><g><title>native_write_msr (88 samples, 0.02%)</title><rect x="24.8355%" y="629" width="0.0169%" height="15" fill="rgb(213,179,31)" fg:x="129239" fg:w="88"/><text x="25.0855%" y="639.50"></text></g><g><title>finish_task_switch (92 samples, 0.02%)</title><rect x="24.8353%" y="677" width="0.0177%" height="15" fill="rgb(209,19,5)" fg:x="129238" fg:w="92"/><text x="25.0853%" y="687.50"></text></g><g><title>schedule (93 samples, 0.02%)</title><rect x="24.8353%" y="709" width="0.0179%" height="15" fill="rgb(219,18,35)" fg:x="129238" fg:w="93"/><text x="25.0853%" y="719.50"></text></g><g><title>__schedule (93 samples, 0.02%)</title><rect x="24.8353%" y="693" width="0.0179%" height="15" fill="rgb(209,169,16)" fg:x="129238" fg:w="93"/><text x="25.0853%" y="703.50"></text></g><g><title>__GI___wait4 (115 samples, 0.02%)</title><rect x="24.8343%" y="789" width="0.0221%" height="15" fill="rgb(245,90,51)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="24.8343%" y="773" width="0.0221%" height="15" fill="rgb(220,99,45)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="783.50"></text></g><g><title>do_syscall_64 (115 samples, 0.02%)</title><rect x="24.8343%" y="757" width="0.0221%" height="15" fill="rgb(249,89,25)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="767.50"></text></g><g><title>kernel_wait4 (115 samples, 0.02%)</title><rect x="24.8343%" y="741" width="0.0221%" height="15" fill="rgb(239,193,0)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="751.50"></text></g><g><title>do_wait (114 samples, 0.02%)</title><rect x="24.8345%" y="725" width="0.0219%" height="15" fill="rgb(231,126,1)" fg:x="129234" fg:w="114"/><text x="25.0845%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (426 samples, 0.08%)</title><rect x="24.8823%" y="709" width="0.0819%" height="15" fill="rgb(243,166,3)" fg:x="129483" fg:w="426"/><text x="25.1323%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (425 samples, 0.08%)</title><rect x="24.8825%" y="693" width="0.0817%" height="15" fill="rgb(223,22,34)" fg:x="129484" fg:w="425"/><text x="25.1325%" y="703.50"></text></g><g><title>native_write_msr (425 samples, 0.08%)</title><rect x="24.8825%" y="677" width="0.0817%" height="15" fill="rgb(251,52,51)" fg:x="129484" fg:w="425"/><text x="25.1325%" y="687.50"></text></g><g><title>arch_fork (535 samples, 0.10%)</title><rect x="24.8649%" y="773" width="0.1028%" height="15" fill="rgb(221,165,28)" fg:x="129392" fg:w="535"/><text x="25.1149%" y="783.50"></text></g><g><title>ret_from_fork (485 samples, 0.09%)</title><rect x="24.8745%" y="757" width="0.0932%" height="15" fill="rgb(218,121,47)" fg:x="129442" fg:w="485"/><text x="25.1245%" y="767.50"></text></g><g><title>schedule_tail (484 samples, 0.09%)</title><rect x="24.8747%" y="741" width="0.0930%" height="15" fill="rgb(209,120,9)" fg:x="129443" fg:w="484"/><text x="25.1247%" y="751.50"></text></g><g><title>finish_task_switch (446 samples, 0.09%)</title><rect x="24.8820%" y="725" width="0.0857%" height="15" fill="rgb(236,68,12)" fg:x="129481" fg:w="446"/><text x="25.1320%" y="735.50"></text></g><g><title>__libc_fork (552 samples, 0.11%)</title><rect x="24.8635%" y="789" width="0.1061%" height="15" fill="rgb(225,194,26)" fg:x="129385" fg:w="552"/><text x="25.1135%" y="799.50"></text></g><g><title>Pid1Main (918 samples, 0.18%)</title><rect x="24.8134%" y="805" width="0.1764%" height="15" fill="rgb(231,84,39)" fg:x="129124" fg:w="918"/><text x="25.0634%" y="815.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.01%)</title><rect x="24.9898%" y="805" width="0.0108%" height="15" fill="rgb(210,11,45)" fg:x="130042" fg:w="56"/><text x="25.2398%" y="815.50"></text></g><g><title>exc_page_fault (56 samples, 0.01%)</title><rect x="24.9898%" y="789" width="0.0108%" height="15" fill="rgb(224,54,52)" fg:x="130042" fg:w="56"/><text x="25.2398%" y="799.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="24.9898%" y="773" width="0.0108%" height="15" fill="rgb(238,102,14)" fg:x="130042" fg:w="56"/><text x="25.2398%" y="783.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="24.9903%" y="757" width="0.0102%" height="15" fill="rgb(243,160,52)" fg:x="130045" fg:w="53"/><text x="25.2403%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (453 samples, 0.09%)</title><rect x="25.0063%" y="757" width="0.0871%" height="15" fill="rgb(216,114,19)" fg:x="130128" fg:w="453"/><text x="25.2563%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (453 samples, 0.09%)</title><rect x="25.0063%" y="741" width="0.0871%" height="15" fill="rgb(244,166,37)" fg:x="130128" fg:w="453"/><text x="25.2563%" y="751.50"></text></g><g><title>native_write_msr (453 samples, 0.09%)</title><rect x="25.0063%" y="725" width="0.0871%" height="15" fill="rgb(246,29,44)" fg:x="130128" fg:w="453"/><text x="25.2563%" y="735.50"></text></g><g><title>schedule_tail (478 samples, 0.09%)</title><rect x="25.0055%" y="789" width="0.0919%" height="15" fill="rgb(215,56,53)" fg:x="130124" fg:w="478"/><text x="25.2555%" y="799.50"></text></g><g><title>finish_task_switch (478 samples, 0.09%)</title><rect x="25.0055%" y="773" width="0.0919%" height="15" fill="rgb(217,60,2)" fg:x="130124" fg:w="478"/><text x="25.2555%" y="783.50"></text></g><g><title>__GI___clone (1,484 samples, 0.29%)</title><rect x="24.8132%" y="821" width="0.2852%" height="15" fill="rgb(207,26,24)" fg:x="129123" fg:w="1484"/><text x="25.0632%" y="831.50"></text></g><g><title>ret_from_fork (509 samples, 0.10%)</title><rect x="25.0005%" y="805" width="0.0978%" height="15" fill="rgb(252,210,15)" fg:x="130098" fg:w="509"/><text x="25.2505%" y="815.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.01%)</title><rect x="25.1072%" y="773" width="0.0127%" height="15" fill="rgb(253,209,26)" fg:x="130653" fg:w="66"/><text x="25.3572%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="25.1208%" y="629" width="0.0121%" height="15" fill="rgb(238,170,14)" fg:x="130724" fg:w="63"/><text x="25.3708%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.01%)</title><rect x="25.1208%" y="613" width="0.0121%" height="15" fill="rgb(216,178,15)" fg:x="130724" fg:w="63"/><text x="25.3708%" y="623.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="25.1208%" y="597" width="0.0121%" height="15" fill="rgb(250,197,2)" fg:x="130724" fg:w="63"/><text x="25.3708%" y="607.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="25.1208%" y="645" width="0.0129%" height="15" fill="rgb(212,70,42)" fg:x="130724" fg:w="67"/><text x="25.3708%" y="655.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="25.1206%" y="677" width="0.0133%" height="15" fill="rgb(227,213,9)" fg:x="130723" fg:w="69"/><text x="25.3706%" y="687.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="25.1208%" y="661" width="0.0131%" height="15" fill="rgb(245,99,25)" fg:x="130724" fg:w="68"/><text x="25.3708%" y="671.50"></text></g><g><title>do_wait (82 samples, 0.02%)</title><rect x="25.1202%" y="693" width="0.0158%" height="15" fill="rgb(250,82,29)" fg:x="130721" fg:w="82"/><text x="25.3702%" y="703.50"></text></g><g><title>__GI___wait4 (84 samples, 0.02%)</title><rect x="25.1201%" y="773" width="0.0161%" height="15" fill="rgb(241,226,54)" fg:x="130720" fg:w="84"/><text x="25.3701%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="25.1202%" y="757" width="0.0159%" height="15" fill="rgb(221,99,41)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="767.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="25.1202%" y="741" width="0.0159%" height="15" fill="rgb(213,90,21)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="751.50"></text></g><g><title>__do_sys_wait4 (83 samples, 0.02%)</title><rect x="25.1202%" y="725" width="0.0159%" height="15" fill="rgb(205,208,24)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="735.50"></text></g><g><title>kernel_wait4 (83 samples, 0.02%)</title><rect x="25.1202%" y="709" width="0.0159%" height="15" fill="rgb(246,31,12)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="719.50"></text></g><g><title>__libc_start_main (225 samples, 0.04%)</title><rect x="25.1016%" y="805" width="0.0432%" height="15" fill="rgb(213,154,6)" fg:x="130624" fg:w="225"/><text x="25.3516%" y="815.50"></text></g><g><title>main (201 samples, 0.04%)</title><rect x="25.1062%" y="789" width="0.0386%" height="15" fill="rgb(222,163,29)" fg:x="130648" fg:w="201"/><text x="25.3562%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (124 samples, 0.02%)</title><rect x="25.1623%" y="693" width="0.0238%" height="15" fill="rgb(227,201,8)" fg:x="130940" fg:w="124"/><text x="25.4123%" y="703.50"></text></g><g><title>do_lookup_x (79 samples, 0.02%)</title><rect x="25.1710%" y="677" width="0.0152%" height="15" fill="rgb(233,9,32)" fg:x="130985" fg:w="79"/><text x="25.4210%" y="687.50"></text></g><g><title>elf_machine_rela (156 samples, 0.03%)</title><rect x="25.1564%" y="709" width="0.0300%" height="15" fill="rgb(217,54,24)" fg:x="130909" fg:w="156"/><text x="25.4064%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (170 samples, 0.03%)</title><rect x="25.1548%" y="725" width="0.0327%" height="15" fill="rgb(235,192,0)" fg:x="130901" fg:w="170"/><text x="25.4048%" y="735.50"></text></g><g><title>_dl_relocate_object (174 samples, 0.03%)</title><rect x="25.1543%" y="741" width="0.0334%" height="15" fill="rgb(235,45,9)" fg:x="130898" fg:w="174"/><text x="25.4043%" y="751.50"></text></g><g><title>[ld-2.31.so] (228 samples, 0.04%)</title><rect x="25.1448%" y="757" width="0.0438%" height="15" fill="rgb(246,42,40)" fg:x="130849" fg:w="228"/><text x="25.3948%" y="767.50"></text></g><g><title>_start (455 samples, 0.09%)</title><rect x="25.1016%" y="821" width="0.0874%" height="15" fill="rgb(248,111,24)" fg:x="130624" fg:w="455"/><text x="25.3516%" y="831.50"></text></g><g><title>_dl_start (230 samples, 0.04%)</title><rect x="25.1448%" y="805" width="0.0442%" height="15" fill="rgb(249,65,22)" fg:x="130849" fg:w="230"/><text x="25.3948%" y="815.50"></text></g><g><title>_dl_start_final (230 samples, 0.04%)</title><rect x="25.1448%" y="789" width="0.0442%" height="15" fill="rgb(238,111,51)" fg:x="130849" fg:w="230"/><text x="25.3948%" y="799.50"></text></g><g><title>_dl_sysdep_start (230 samples, 0.04%)</title><rect x="25.1448%" y="773" width="0.0442%" height="15" fill="rgb(250,118,22)" fg:x="130849" fg:w="230"/><text x="25.3948%" y="783.50"></text></g><g><title>asm_exc_page_fault (94 samples, 0.02%)</title><rect x="25.1890%" y="821" width="0.0181%" height="15" fill="rgb(234,84,26)" fg:x="131079" fg:w="94"/><text x="25.4390%" y="831.50"></text></g><g><title>__x64_sys_exit (65 samples, 0.01%)</title><rect x="25.2156%" y="789" width="0.0125%" height="15" fill="rgb(243,172,12)" fg:x="131217" fg:w="65"/><text x="25.4656%" y="799.50"></text></g><g><title>do_exit (65 samples, 0.01%)</title><rect x="25.2156%" y="773" width="0.0125%" height="15" fill="rgb(236,150,49)" fg:x="131217" fg:w="65"/><text x="25.4656%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="25.2071%" y="821" width="0.0275%" height="15" fill="rgb(225,197,26)" fg:x="131173" fg:w="143"/><text x="25.4571%" y="831.50"></text></g><g><title>do_syscall_64 (142 samples, 0.03%)</title><rect x="25.2073%" y="805" width="0.0273%" height="15" fill="rgb(214,17,42)" fg:x="131174" fg:w="142"/><text x="25.4573%" y="815.50"></text></g><g><title>linux-sandbox (2,262 samples, 0.43%)</title><rect x="24.8013%" y="837" width="0.4347%" height="15" fill="rgb(224,165,40)" fg:x="129061" fg:w="2262"/><text x="25.0513%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.02%)</title><rect x="25.2457%" y="661" width="0.0173%" height="15" fill="rgb(246,100,4)" fg:x="131374" fg:w="90"/><text x="25.4957%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (89 samples, 0.02%)</title><rect x="25.2459%" y="645" width="0.0171%" height="15" fill="rgb(222,103,0)" fg:x="131375" fg:w="89"/><text x="25.4959%" y="655.50"></text></g><g><title>native_write_msr (89 samples, 0.02%)</title><rect x="25.2459%" y="629" width="0.0171%" height="15" fill="rgb(227,189,26)" fg:x="131375" fg:w="89"/><text x="25.4959%" y="639.50"></text></g><g><title>schedule_tail (107 samples, 0.02%)</title><rect x="25.2429%" y="693" width="0.0206%" height="15" fill="rgb(214,202,17)" fg:x="131359" fg:w="107"/><text x="25.4929%" y="703.50"></text></g><g><title>finish_task_switch (95 samples, 0.02%)</title><rect x="25.2452%" y="677" width="0.0183%" height="15" fill="rgb(229,111,3)" fg:x="131371" fg:w="95"/><text x="25.4952%" y="687.50"></text></g><g><title>arch_fork (115 samples, 0.02%)</title><rect x="25.2415%" y="725" width="0.0221%" height="15" fill="rgb(229,172,15)" fg:x="131352" fg:w="115"/><text x="25.4915%" y="735.50"></text></g><g><title>ret_from_fork (108 samples, 0.02%)</title><rect x="25.2429%" y="709" width="0.0208%" height="15" fill="rgb(230,224,35)" fg:x="131359" fg:w="108"/><text x="25.4929%" y="719.50"></text></g><g><title>__libc_fork (118 samples, 0.02%)</title><rect x="25.2411%" y="741" width="0.0227%" height="15" fill="rgb(251,141,6)" fg:x="131350" fg:w="118"/><text x="25.4911%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (130 samples, 0.02%)</title><rect x="25.2390%" y="773" width="0.0250%" height="15" fill="rgb(225,208,6)" fg:x="131339" fg:w="130"/><text x="25.4890%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (130 samples, 0.02%)</title><rect x="25.2390%" y="757" width="0.0250%" height="15" fill="rgb(246,181,16)" fg:x="131339" fg:w="130"/><text x="25.4890%" y="767.50"></text></g><g><title>__libc_start_main (160 samples, 0.03%)</title><rect x="25.2386%" y="805" width="0.0307%" height="15" fill="rgb(227,129,36)" fg:x="131337" fg:w="160"/><text x="25.4886%" y="815.50"></text></g><g><title>main (158 samples, 0.03%)</title><rect x="25.2390%" y="789" width="0.0304%" height="15" fill="rgb(248,117,24)" fg:x="131339" fg:w="158"/><text x="25.4890%" y="799.50"></text></g><g><title>_start (193 samples, 0.04%)</title><rect x="25.2386%" y="821" width="0.0371%" height="15" fill="rgb(214,185,35)" fg:x="131337" fg:w="193"/><text x="25.4886%" y="831.50"></text></g><g><title>process-wrapper (220 samples, 0.04%)</title><rect x="25.2371%" y="837" width="0.0423%" height="15" fill="rgb(236,150,34)" fg:x="131329" fg:w="220"/><text x="25.4871%" y="847.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="25.2899%" y="757" width="0.0115%" height="15" fill="rgb(243,228,27)" fg:x="131604" fg:w="60"/><text x="25.5399%" y="767.50"></text></g><g><title>kernel_wait4 (60 samples, 0.01%)</title><rect x="25.2899%" y="741" width="0.0115%" height="15" fill="rgb(245,77,44)" fg:x="131604" fg:w="60"/><text x="25.5399%" y="751.50"></text></g><g><title>do_wait (60 samples, 0.01%)</title><rect x="25.2899%" y="725" width="0.0115%" height="15" fill="rgb(235,214,42)" fg:x="131604" fg:w="60"/><text x="25.5399%" y="735.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (63 samples, 0.01%)</title><rect x="25.2895%" y="805" width="0.0121%" height="15" fill="rgb(221,74,3)" fg:x="131602" fg:w="63"/><text x="25.5395%" y="815.50"></text></g><g><title>__GI___wait4 (62 samples, 0.01%)</title><rect x="25.2897%" y="789" width="0.0119%" height="15" fill="rgb(206,121,29)" fg:x="131603" fg:w="62"/><text x="25.5397%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="25.2899%" y="773" width="0.0117%" height="15" fill="rgb(249,131,53)" fg:x="131604" fg:w="61"/><text x="25.5399%" y="783.50"></text></g><g><title>[perf-261576.map] (123 samples, 0.02%)</title><rect x="25.2801%" y="821" width="0.0236%" height="15" fill="rgb(236,170,29)" fg:x="131553" fg:w="123"/><text x="25.5301%" y="831.50"></text></g><g><title>process_reaper (129 samples, 0.02%)</title><rect x="25.2794%" y="837" width="0.0248%" height="15" fill="rgb(247,96,15)" fg:x="131549" fg:w="129"/><text x="25.5294%" y="847.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="25.3572%" y="709" width="0.0102%" height="15" fill="rgb(211,210,7)" fg:x="131954" fg:w="53"/><text x="25.6072%" y="719.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.01%)</title><rect x="25.3568%" y="773" width="0.0115%" height="15" fill="rgb(240,88,50)" fg:x="131952" fg:w="60"/><text x="25.6068%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.01%)</title><rect x="25.3568%" y="757" width="0.0115%" height="15" fill="rgb(209,229,26)" fg:x="131952" fg:w="60"/><text x="25.6068%" y="767.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="25.3572%" y="741" width="0.0111%" height="15" fill="rgb(210,68,23)" fg:x="131954" fg:w="58"/><text x="25.6072%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="25.3572%" y="725" width="0.0111%" height="15" fill="rgb(229,180,13)" fg:x="131954" fg:w="58"/><text x="25.6072%" y="735.50"></text></g><g><title>Parker::park (69 samples, 0.01%)</title><rect x="25.3558%" y="789" width="0.0133%" height="15" fill="rgb(236,53,44)" fg:x="131947" fg:w="69"/><text x="25.6058%" y="799.50"></text></g><g><title>[perf-261576.map] (329 samples, 0.06%)</title><rect x="25.3061%" y="821" width="0.0632%" height="15" fill="rgb(244,214,29)" fg:x="131688" fg:w="329"/><text x="25.5561%" y="831.50"></text></g><g><title>Unsafe_Park (72 samples, 0.01%)</title><rect x="25.3555%" y="805" width="0.0138%" height="15" fill="rgb(220,75,29)" fg:x="131945" fg:w="72"/><text x="25.6055%" y="815.50"></text></g><g><title>profile-writer- (346 samples, 0.07%)</title><rect x="25.3042%" y="837" width="0.0665%" height="15" fill="rgb(214,183,37)" fg:x="131678" fg:w="346"/><text x="25.5542%" y="847.50"></text></g><g><title>[python3.9] (59 samples, 0.01%)</title><rect x="25.3829%" y="805" width="0.0113%" height="15" fill="rgb(239,117,29)" fg:x="132088" fg:w="59"/><text x="25.6329%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (104 samples, 0.02%)</title><rect x="25.3958%" y="805" width="0.0200%" height="15" fill="rgb(237,171,35)" fg:x="132155" fg:w="104"/><text x="25.6458%" y="815.50"></text></g><g><title>[unknown] (267 samples, 0.05%)</title><rect x="25.3753%" y="821" width="0.0513%" height="15" fill="rgb(229,178,53)" fg:x="132048" fg:w="267"/><text x="25.6253%" y="831.50"></text></g><g><title>Py_RunMain (55 samples, 0.01%)</title><rect x="25.4268%" y="773" width="0.0106%" height="15" fill="rgb(210,102,19)" fg:x="132316" fg:w="55"/><text x="25.6768%" y="783.50"></text></g><g><title>Py_InitializeFromConfig (65 samples, 0.01%)</title><rect x="25.4373%" y="741" width="0.0125%" height="15" fill="rgb(235,127,22)" fg:x="132371" fg:w="65"/><text x="25.6873%" y="751.50"></text></g><g><title>[python3.9] (65 samples, 0.01%)</title><rect x="25.4373%" y="725" width="0.0125%" height="15" fill="rgb(244,31,31)" fg:x="132371" fg:w="65"/><text x="25.6873%" y="735.50"></text></g><g><title>[python3.9] (65 samples, 0.01%)</title><rect x="25.4373%" y="709" width="0.0125%" height="15" fill="rgb(231,43,21)" fg:x="132371" fg:w="65"/><text x="25.6873%" y="719.50"></text></g><g><title>__libc_start_main (122 samples, 0.02%)</title><rect x="25.4268%" y="805" width="0.0234%" height="15" fill="rgb(217,131,35)" fg:x="132316" fg:w="122"/><text x="25.6768%" y="815.50"></text></g><g><title>Py_BytesMain (122 samples, 0.02%)</title><rect x="25.4268%" y="789" width="0.0234%" height="15" fill="rgb(221,149,4)" fg:x="132316" fg:w="122"/><text x="25.6768%" y="799.50"></text></g><g><title>[python3.9] (67 samples, 0.01%)</title><rect x="25.4373%" y="773" width="0.0129%" height="15" fill="rgb(232,170,28)" fg:x="132371" fg:w="67"/><text x="25.6873%" y="783.50"></text></g><g><title>[python3.9] (67 samples, 0.01%)</title><rect x="25.4373%" y="757" width="0.0129%" height="15" fill="rgb(238,56,10)" fg:x="132371" fg:w="67"/><text x="25.6873%" y="767.50"></text></g><g><title>_start (130 samples, 0.02%)</title><rect x="25.4268%" y="821" width="0.0250%" height="15" fill="rgb(235,196,14)" fg:x="132316" fg:w="130"/><text x="25.6768%" y="831.50"></text></g><g><title>python3 (432 samples, 0.08%)</title><rect x="25.3712%" y="837" width="0.0830%" height="15" fill="rgb(216,45,48)" fg:x="132027" fg:w="432"/><text x="25.6212%" y="847.50"></text></g><g><title>[sed] (54 samples, 0.01%)</title><rect x="25.4623%" y="741" width="0.0104%" height="15" fill="rgb(238,213,17)" fg:x="132501" fg:w="54"/><text x="25.7123%" y="751.50"></text></g><g><title>[sed] (68 samples, 0.01%)</title><rect x="25.4617%" y="757" width="0.0131%" height="15" fill="rgb(212,13,2)" fg:x="132498" fg:w="68"/><text x="25.7117%" y="767.50"></text></g><g><title>[sed] (69 samples, 0.01%)</title><rect x="25.4617%" y="773" width="0.0133%" height="15" fill="rgb(240,114,20)" fg:x="132498" fg:w="69"/><text x="25.7117%" y="783.50"></text></g><g><title>[sed] (77 samples, 0.01%)</title><rect x="25.4617%" y="789" width="0.0148%" height="15" fill="rgb(228,41,40)" fg:x="132498" fg:w="77"/><text x="25.7117%" y="799.50"></text></g><g><title>__libc_start_main (89 samples, 0.02%)</title><rect x="25.4617%" y="805" width="0.0171%" height="15" fill="rgb(244,132,35)" fg:x="132498" fg:w="89"/><text x="25.7117%" y="815.50"></text></g><g><title>[sed] (92 samples, 0.02%)</title><rect x="25.4615%" y="821" width="0.0177%" height="15" fill="rgb(253,189,4)" fg:x="132497" fg:w="92"/><text x="25.7115%" y="831.50"></text></g><g><title>_dl_start_user (58 samples, 0.01%)</title><rect x="25.4834%" y="821" width="0.0111%" height="15" fill="rgb(224,37,19)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="831.50"></text></g><g><title>_dl_init (58 samples, 0.01%)</title><rect x="25.4834%" y="805" width="0.0111%" height="15" fill="rgb(235,223,18)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="815.50"></text></g><g><title>call_init (58 samples, 0.01%)</title><rect x="25.4834%" y="789" width="0.0111%" height="15" fill="rgb(235,163,25)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="799.50"></text></g><g><title>call_init (58 samples, 0.01%)</title><rect x="25.4834%" y="773" width="0.0111%" height="15" fill="rgb(217,145,28)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="783.50"></text></g><g><title>__split_vma (79 samples, 0.02%)</title><rect x="25.5280%" y="501" width="0.0152%" height="15" fill="rgb(223,223,32)" fg:x="132843" fg:w="79"/><text x="25.7780%" y="511.50"></text></g><g><title>__do_munmap (134 samples, 0.03%)</title><rect x="25.5271%" y="517" width="0.0258%" height="15" fill="rgb(227,189,39)" fg:x="132838" fg:w="134"/><text x="25.7771%" y="527.50"></text></g><g><title>perf_event_mmap (73 samples, 0.01%)</title><rect x="25.5528%" y="517" width="0.0140%" height="15" fill="rgb(248,10,22)" fg:x="132972" fg:w="73"/><text x="25.8028%" y="527.50"></text></g><g><title>mmap_region (261 samples, 0.05%)</title><rect x="25.5257%" y="533" width="0.0502%" height="15" fill="rgb(248,46,39)" fg:x="132831" fg:w="261"/><text x="25.7757%" y="543.50"></text></g><g><title>do_mmap (270 samples, 0.05%)</title><rect x="25.5244%" y="549" width="0.0519%" height="15" fill="rgb(248,113,48)" fg:x="132824" fg:w="270"/><text x="25.7744%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (286 samples, 0.05%)</title><rect x="25.5219%" y="581" width="0.0550%" height="15" fill="rgb(245,16,25)" fg:x="132811" fg:w="286"/><text x="25.7719%" y="591.50"></text></g><g><title>vm_mmap_pgoff (274 samples, 0.05%)</title><rect x="25.5242%" y="565" width="0.0527%" height="15" fill="rgb(249,152,16)" fg:x="132823" fg:w="274"/><text x="25.7742%" y="575.50"></text></g><g><title>do_syscall_64 (308 samples, 0.06%)</title><rect x="25.5219%" y="597" width="0.0592%" height="15" fill="rgb(250,16,1)" fg:x="132811" fg:w="308"/><text x="25.7719%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (310 samples, 0.06%)</title><rect x="25.5219%" y="613" width="0.0596%" height="15" fill="rgb(249,138,3)" fg:x="132811" fg:w="310"/><text x="25.7719%" y="623.50"></text></g><g><title>__mmap64 (317 samples, 0.06%)</title><rect x="25.5207%" y="645" width="0.0609%" height="15" fill="rgb(227,71,41)" fg:x="132805" fg:w="317"/><text x="25.7707%" y="655.50"></text></g><g><title>__mmap64 (317 samples, 0.06%)</title><rect x="25.5207%" y="629" width="0.0609%" height="15" fill="rgb(209,184,23)" fg:x="132805" fg:w="317"/><text x="25.7707%" y="639.50"></text></g><g><title>_dl_map_segments (360 samples, 0.07%)</title><rect x="25.5127%" y="661" width="0.0692%" height="15" fill="rgb(223,215,31)" fg:x="132763" fg:w="360"/><text x="25.7627%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (465 samples, 0.09%)</title><rect x="25.5090%" y="677" width="0.0894%" height="15" fill="rgb(210,146,28)" fg:x="132744" fg:w="465"/><text x="25.7590%" y="687.50"></text></g><g><title>do_syscall_64 (77 samples, 0.01%)</title><rect x="25.6041%" y="613" width="0.0148%" height="15" fill="rgb(209,183,41)" fg:x="133239" fg:w="77"/><text x="25.8541%" y="623.50"></text></g><g><title>__x64_sys_openat (77 samples, 0.01%)</title><rect x="25.6041%" y="597" width="0.0148%" height="15" fill="rgb(209,224,45)" fg:x="133239" fg:w="77"/><text x="25.8541%" y="607.50"></text></g><g><title>do_sys_openat2 (76 samples, 0.01%)</title><rect x="25.6043%" y="581" width="0.0146%" height="15" fill="rgb(224,209,51)" fg:x="133240" fg:w="76"/><text x="25.8543%" y="591.50"></text></g><g><title>__GI___open64_nocancel (84 samples, 0.02%)</title><rect x="25.6037%" y="645" width="0.0161%" height="15" fill="rgb(223,17,39)" fg:x="133237" fg:w="84"/><text x="25.8537%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.02%)</title><rect x="25.6041%" y="629" width="0.0158%" height="15" fill="rgb(234,204,37)" fg:x="133239" fg:w="82"/><text x="25.8541%" y="639.50"></text></g><g><title>open_path (115 samples, 0.02%)</title><rect x="25.5991%" y="677" width="0.0221%" height="15" fill="rgb(236,120,5)" fg:x="133213" fg:w="115"/><text x="25.8491%" y="687.50"></text></g><g><title>open_verify (94 samples, 0.02%)</title><rect x="25.6032%" y="661" width="0.0181%" height="15" fill="rgb(248,97,27)" fg:x="133234" fg:w="94"/><text x="25.8532%" y="671.50"></text></g><g><title>_dl_catch_exception (606 samples, 0.12%)</title><rect x="25.5067%" y="725" width="0.1165%" height="15" fill="rgb(240,66,17)" fg:x="132732" fg:w="606"/><text x="25.7567%" y="735.50"></text></g><g><title>openaux (605 samples, 0.12%)</title><rect x="25.5069%" y="709" width="0.1163%" height="15" fill="rgb(210,79,3)" fg:x="132733" fg:w="605"/><text x="25.7569%" y="719.50"></text></g><g><title>_dl_map_object (605 samples, 0.12%)</title><rect x="25.5069%" y="693" width="0.1163%" height="15" fill="rgb(214,176,27)" fg:x="132733" fg:w="605"/><text x="25.7569%" y="703.50"></text></g><g><title>_dl_map_object_deps (640 samples, 0.12%)</title><rect x="25.5052%" y="741" width="0.1230%" height="15" fill="rgb(235,185,3)" fg:x="132724" fg:w="640"/><text x="25.7552%" y="751.50"></text></g><g><title>_dl_check_map_versions (53 samples, 0.01%)</title><rect x="25.6285%" y="693" width="0.0102%" height="15" fill="rgb(227,24,12)" fg:x="133366" fg:w="53"/><text x="25.8785%" y="703.50"></text></g><g><title>_dl_receive_error (54 samples, 0.01%)</title><rect x="25.6285%" y="741" width="0.0104%" height="15" fill="rgb(252,169,48)" fg:x="133366" fg:w="54"/><text x="25.8785%" y="751.50"></text></g><g><title>version_check_doit (54 samples, 0.01%)</title><rect x="25.6285%" y="725" width="0.0104%" height="15" fill="rgb(212,65,1)" fg:x="133366" fg:w="54"/><text x="25.8785%" y="735.50"></text></g><g><title>_dl_check_all_versions (54 samples, 0.01%)</title><rect x="25.6285%" y="709" width="0.0104%" height="15" fill="rgb(242,39,24)" fg:x="133366" fg:w="54"/><text x="25.8785%" y="719.50"></text></g><g><title>__split_vma (61 samples, 0.01%)</title><rect x="25.6408%" y="613" width="0.0117%" height="15" fill="rgb(249,32,23)" fg:x="133430" fg:w="61"/><text x="25.8908%" y="623.50"></text></g><g><title>mprotect_fixup (106 samples, 0.02%)</title><rect x="25.6408%" y="629" width="0.0204%" height="15" fill="rgb(251,195,23)" fg:x="133430" fg:w="106"/><text x="25.8908%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="25.6397%" y="693" width="0.0221%" height="15" fill="rgb(236,174,8)" fg:x="133424" fg:w="115"/><text x="25.8897%" y="703.50"></text></g><g><title>do_syscall_64 (115 samples, 0.02%)</title><rect x="25.6397%" y="677" width="0.0221%" height="15" fill="rgb(220,197,8)" fg:x="133424" fg:w="115"/><text x="25.8897%" y="687.50"></text></g><g><title>__x64_sys_mprotect (115 samples, 0.02%)</title><rect x="25.6397%" y="661" width="0.0221%" height="15" fill="rgb(240,108,37)" fg:x="133424" fg:w="115"/><text x="25.8897%" y="671.50"></text></g><g><title>do_mprotect_pkey (114 samples, 0.02%)</title><rect x="25.6399%" y="645" width="0.0219%" height="15" fill="rgb(232,176,24)" fg:x="133425" fg:w="114"/><text x="25.8899%" y="655.50"></text></g><g><title>_dl_protect_relro (117 samples, 0.02%)</title><rect x="25.6395%" y="725" width="0.0225%" height="15" fill="rgb(243,35,29)" fg:x="133423" fg:w="117"/><text x="25.8895%" y="735.50"></text></g><g><title>__mprotect (116 samples, 0.02%)</title><rect x="25.6397%" y="709" width="0.0223%" height="15" fill="rgb(210,37,18)" fg:x="133424" fg:w="116"/><text x="25.8897%" y="719.50"></text></g><g><title>dl_new_hash (66 samples, 0.01%)</title><rect x="25.6877%" y="677" width="0.0127%" height="15" fill="rgb(224,184,40)" fg:x="133674" fg:w="66"/><text x="25.9377%" y="687.50"></text></g><g><title>check_match (79 samples, 0.02%)</title><rect x="25.7323%" y="661" width="0.0152%" height="15" fill="rgb(236,39,29)" fg:x="133906" fg:w="79"/><text x="25.9823%" y="671.50"></text></g><g><title>strcmp (59 samples, 0.01%)</title><rect x="25.7361%" y="645" width="0.0113%" height="15" fill="rgb(232,48,39)" fg:x="133926" fg:w="59"/><text x="25.9861%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (335 samples, 0.06%)</title><rect x="25.6841%" y="693" width="0.0644%" height="15" fill="rgb(236,34,42)" fg:x="133655" fg:w="335"/><text x="25.9341%" y="703.50"></text></g><g><title>do_lookup_x (250 samples, 0.05%)</title><rect x="25.7004%" y="677" width="0.0480%" height="15" fill="rgb(243,106,37)" fg:x="133740" fg:w="250"/><text x="25.9504%" y="687.50"></text></g><g><title>elf_machine_rela (390 samples, 0.07%)</title><rect x="25.6752%" y="709" width="0.0749%" height="15" fill="rgb(218,96,6)" fg:x="133609" fg:w="390"/><text x="25.9252%" y="719.50"></text></g><g><title>elf_machine_rela_relative (75 samples, 0.01%)</title><rect x="25.7502%" y="709" width="0.0144%" height="15" fill="rgb(235,130,12)" fg:x="133999" fg:w="75"/><text x="26.0002%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (535 samples, 0.10%)</title><rect x="25.6620%" y="725" width="0.1028%" height="15" fill="rgb(231,95,0)" fg:x="133540" fg:w="535"/><text x="25.9120%" y="735.50"></text></g><g><title>_dl_relocate_object (667 samples, 0.13%)</title><rect x="25.6389%" y="741" width="0.1282%" height="15" fill="rgb(228,12,23)" fg:x="133420" fg:w="667"/><text x="25.8889%" y="751.50"></text></g><g><title>[ld-2.31.so] (1,437 samples, 0.28%)</title><rect x="25.4992%" y="757" width="0.2761%" height="15" fill="rgb(216,12,1)" fg:x="132693" fg:w="1437"/><text x="25.7492%" y="767.50"></text></g><g><title>_dl_start_final (1,462 samples, 0.28%)</title><rect x="25.4982%" y="789" width="0.2809%" height="15" fill="rgb(219,59,3)" fg:x="132688" fg:w="1462"/><text x="25.7482%" y="799.50"></text></g><g><title>_dl_sysdep_start (1,461 samples, 0.28%)</title><rect x="25.4984%" y="773" width="0.2808%" height="15" fill="rgb(215,208,46)" fg:x="132689" fg:w="1461"/><text x="25.7484%" y="783.50"></text></g><g><title>_dl_start (1,482 samples, 0.28%)</title><rect x="25.4980%" y="805" width="0.2848%" height="15" fill="rgb(254,224,29)" fg:x="132687" fg:w="1482"/><text x="25.7480%" y="815.50"></text></g><g><title>_start (1,494 samples, 0.29%)</title><rect x="25.4979%" y="821" width="0.2871%" height="15" fill="rgb(232,14,29)" fg:x="132686" fg:w="1494"/><text x="25.7479%" y="831.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.01%)</title><rect x="25.7850%" y="821" width="0.0136%" height="15" fill="rgb(208,45,52)" fg:x="134180" fg:w="71"/><text x="26.0350%" y="831.50"></text></g><g><title>__x64_sys_execve (69 samples, 0.01%)</title><rect x="25.7992%" y="789" width="0.0133%" height="15" fill="rgb(234,191,28)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="799.50"></text></g><g><title>do_execveat_common (69 samples, 0.01%)</title><rect x="25.7992%" y="773" width="0.0133%" height="15" fill="rgb(244,67,43)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="783.50"></text></g><g><title>bprm_execve (69 samples, 0.01%)</title><rect x="25.7992%" y="757" width="0.0133%" height="15" fill="rgb(236,189,24)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="767.50"></text></g><g><title>load_elf_binary (69 samples, 0.01%)</title><rect x="25.7992%" y="741" width="0.0133%" height="15" fill="rgb(239,214,33)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="751.50"></text></g><g><title>remove_vma (60 samples, 0.01%)</title><rect x="25.8245%" y="709" width="0.0115%" height="15" fill="rgb(226,176,41)" fg:x="134386" fg:w="60"/><text x="26.0745%" y="719.50"></text></g><g><title>kmem_cache_free (53 samples, 0.01%)</title><rect x="25.8259%" y="693" width="0.0102%" height="15" fill="rgb(248,47,8)" fg:x="134393" fg:w="53"/><text x="26.0759%" y="703.50"></text></g><g><title>tlb_finish_mmu (61 samples, 0.01%)</title><rect x="25.8361%" y="709" width="0.0117%" height="15" fill="rgb(218,81,44)" fg:x="134446" fg:w="61"/><text x="26.0861%" y="719.50"></text></g><g><title>release_pages (53 samples, 0.01%)</title><rect x="25.8376%" y="693" width="0.0102%" height="15" fill="rgb(213,98,6)" fg:x="134454" fg:w="53"/><text x="26.0876%" y="703.50"></text></g><g><title>mmput (208 samples, 0.04%)</title><rect x="25.8159%" y="741" width="0.0400%" height="15" fill="rgb(222,85,22)" fg:x="134341" fg:w="208"/><text x="26.0659%" y="751.50"></text></g><g><title>exit_mmap (208 samples, 0.04%)</title><rect x="25.8159%" y="725" width="0.0400%" height="15" fill="rgb(239,46,39)" fg:x="134341" fg:w="208"/><text x="26.0659%" y="735.50"></text></g><g><title>__x64_sys_exit_group (285 samples, 0.05%)</title><rect x="25.8124%" y="789" width="0.0548%" height="15" fill="rgb(237,12,29)" fg:x="134323" fg:w="285"/><text x="26.0624%" y="799.50"></text></g><g><title>do_group_exit (285 samples, 0.05%)</title><rect x="25.8124%" y="773" width="0.0548%" height="15" fill="rgb(214,77,8)" fg:x="134323" fg:w="285"/><text x="26.0624%" y="783.50"></text></g><g><title>do_exit (285 samples, 0.05%)</title><rect x="25.8124%" y="757" width="0.0548%" height="15" fill="rgb(217,168,37)" fg:x="134323" fg:w="285"/><text x="26.0624%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (358 samples, 0.07%)</title><rect x="25.7986%" y="821" width="0.0688%" height="15" fill="rgb(221,217,23)" fg:x="134251" fg:w="358"/><text x="26.0486%" y="831.50"></text></g><g><title>do_syscall_64 (355 samples, 0.07%)</title><rect x="25.7992%" y="805" width="0.0682%" height="15" fill="rgb(243,229,36)" fg:x="134254" fg:w="355"/><text x="26.0492%" y="815.50"></text></g><g><title>sed (2,156 samples, 0.41%)</title><rect x="25.4542%" y="837" width="0.4143%" height="15" fill="rgb(251,163,40)" fg:x="132459" fg:w="2156"/><text x="25.7042%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (129 samples, 0.02%)</title><rect x="25.9076%" y="805" width="0.0248%" height="15" fill="rgb(237,222,12)" fg:x="134818" fg:w="129"/><text x="26.1576%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (57 samples, 0.01%)</title><rect x="25.9398%" y="805" width="0.0110%" height="15" fill="rgb(248,132,6)" fg:x="134986" fg:w="57"/><text x="26.1898%" y="815.50"></text></g><g><title>InstanceKlass::initialize (101 samples, 0.02%)</title><rect x="25.9537%" y="805" width="0.0194%" height="15" fill="rgb(227,167,50)" fg:x="135058" fg:w="101"/><text x="26.2037%" y="815.50"></text></g><g><title>JavaThread::can_call_java (89 samples, 0.02%)</title><rect x="26.0050%" y="805" width="0.0171%" height="15" fill="rgb(242,84,37)" fg:x="135325" fg:w="89"/><text x="26.2550%" y="815.50"></text></g><g><title>JavaThread::is_Java_thread (91 samples, 0.02%)</title><rect x="26.0232%" y="805" width="0.0175%" height="15" fill="rgb(212,4,50)" fg:x="135420" fg:w="91"/><text x="26.2732%" y="815.50"></text></g><g><title>_int_free (86 samples, 0.02%)</title><rect x="26.1209%" y="805" width="0.0165%" height="15" fill="rgb(230,228,32)" fg:x="135928" fg:w="86"/><text x="26.3709%" y="815.50"></text></g><g><title>[anon] (1,666 samples, 0.32%)</title><rect x="25.8793%" y="821" width="0.3202%" height="15" fill="rgb(248,217,23)" fg:x="134671" fg:w="1666"/><text x="26.1293%" y="831.50"></text></g><g><title>[libc-2.31.so] (72 samples, 0.01%)</title><rect x="26.7164%" y="805" width="0.0138%" height="15" fill="rgb(238,197,32)" fg:x="139027" fg:w="72"/><text x="26.9664%" y="815.50"></text></g><g><title>__x64_sys_close (66 samples, 0.01%)</title><rect x="26.7345%" y="757" width="0.0127%" height="15" fill="rgb(236,106,1)" fg:x="139121" fg:w="66"/><text x="26.9845%" y="767.50"></text></g><g><title>do_syscall_64 (68 samples, 0.01%)</title><rect x="26.7343%" y="773" width="0.0131%" height="15" fill="rgb(219,228,13)" fg:x="139120" fg:w="68"/><text x="26.9843%" y="783.50"></text></g><g><title>btrfs_release_file (60 samples, 0.01%)</title><rect x="26.7575%" y="709" width="0.0115%" height="15" fill="rgb(238,30,35)" fg:x="139241" fg:w="60"/><text x="27.0075%" y="719.50"></text></g><g><title>kfree (56 samples, 0.01%)</title><rect x="26.7583%" y="693" width="0.0108%" height="15" fill="rgb(236,70,23)" fg:x="139245" fg:w="56"/><text x="27.0083%" y="703.50"></text></g><g><title>__fput (120 samples, 0.02%)</title><rect x="26.7544%" y="725" width="0.0231%" height="15" fill="rgb(249,104,48)" fg:x="139225" fg:w="120"/><text x="27.0044%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (255 samples, 0.05%)</title><rect x="26.7343%" y="789" width="0.0490%" height="15" fill="rgb(254,117,50)" fg:x="139120" fg:w="255"/><text x="26.9843%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (187 samples, 0.04%)</title><rect x="26.7473%" y="773" width="0.0359%" height="15" fill="rgb(223,152,4)" fg:x="139188" fg:w="187"/><text x="26.9973%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (186 samples, 0.04%)</title><rect x="26.7475%" y="757" width="0.0357%" height="15" fill="rgb(245,6,2)" fg:x="139189" fg:w="186"/><text x="26.9975%" y="767.50"></text></g><g><title>task_work_run (163 samples, 0.03%)</title><rect x="26.7519%" y="741" width="0.0313%" height="15" fill="rgb(249,150,24)" fg:x="139212" fg:w="163"/><text x="27.0019%" y="751.50"></text></g><g><title>__GI___close_nocancel (279 samples, 0.05%)</title><rect x="26.7302%" y="805" width="0.0536%" height="15" fill="rgb(228,185,42)" fg:x="139099" fg:w="279"/><text x="26.9802%" y="815.50"></text></g><g><title>__GI___libc_free (520 samples, 0.10%)</title><rect x="26.7838%" y="805" width="0.0999%" height="15" fill="rgb(226,39,33)" fg:x="139378" fg:w="520"/><text x="27.0338%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (167 samples, 0.03%)</title><rect x="26.9072%" y="789" width="0.0321%" height="15" fill="rgb(221,166,19)" fg:x="140020" fg:w="167"/><text x="27.1572%" y="799.50"></text></g><g><title>lockref_put_or_lock (216 samples, 0.04%)</title><rect x="27.0289%" y="709" width="0.0415%" height="15" fill="rgb(209,109,2)" fg:x="140653" fg:w="216"/><text x="27.2789%" y="719.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="27.0508%" y="693" width="0.0196%" height="15" fill="rgb(252,216,26)" fg:x="140767" fg:w="102"/><text x="27.3008%" y="703.50"></text></g><g><title>dput (418 samples, 0.08%)</title><rect x="26.9935%" y="725" width="0.0803%" height="15" fill="rgb(227,173,36)" fg:x="140469" fg:w="418"/><text x="27.2435%" y="735.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="27.1336%" y="645" width="0.0131%" height="15" fill="rgb(209,90,7)" fg:x="141198" fg:w="68"/><text x="27.3836%" y="655.50"></text></g><g><title>__lookup_hash (294 samples, 0.06%)</title><rect x="27.0903%" y="709" width="0.0565%" height="15" fill="rgb(250,194,11)" fg:x="140973" fg:w="294"/><text x="27.3403%" y="719.50"></text></g><g><title>lookup_dcache (284 samples, 0.05%)</title><rect x="27.0923%" y="693" width="0.0546%" height="15" fill="rgb(220,72,50)" fg:x="140983" fg:w="284"/><text x="27.3423%" y="703.50"></text></g><g><title>d_lookup (261 samples, 0.05%)</title><rect x="27.0967%" y="677" width="0.0502%" height="15" fill="rgb(222,106,48)" fg:x="141006" fg:w="261"/><text x="27.3467%" y="687.50"></text></g><g><title>__d_lookup (211 samples, 0.04%)</title><rect x="27.1063%" y="661" width="0.0405%" height="15" fill="rgb(216,220,45)" fg:x="141056" fg:w="211"/><text x="27.3563%" y="671.50"></text></g><g><title>down_write (66 samples, 0.01%)</title><rect x="27.1468%" y="709" width="0.0127%" height="15" fill="rgb(234,112,18)" fg:x="141267" fg:w="66"/><text x="27.3968%" y="719.50"></text></g><g><title>__legitimize_mnt (96 samples, 0.02%)</title><rect x="27.1782%" y="629" width="0.0184%" height="15" fill="rgb(206,179,9)" fg:x="141430" fg:w="96"/><text x="27.4282%" y="639.50"></text></g><g><title>__legitimize_path (153 samples, 0.03%)</title><rect x="27.1764%" y="645" width="0.0294%" height="15" fill="rgb(215,115,40)" fg:x="141421" fg:w="153"/><text x="27.4264%" y="655.50"></text></g><g><title>complete_walk (207 samples, 0.04%)</title><rect x="27.1707%" y="677" width="0.0398%" height="15" fill="rgb(222,69,34)" fg:x="141391" fg:w="207"/><text x="27.4207%" y="687.50"></text></g><g><title>try_to_unlazy (190 samples, 0.04%)</title><rect x="27.1739%" y="661" width="0.0365%" height="15" fill="rgb(209,161,10)" fg:x="141408" fg:w="190"/><text x="27.4239%" y="671.50"></text></g><g><title>btrfs_permission (92 samples, 0.02%)</title><rect x="27.5081%" y="645" width="0.0177%" height="15" fill="rgb(217,6,38)" fg:x="143147" fg:w="92"/><text x="27.7581%" y="655.50"></text></g><g><title>inode_permission.part.0 (982 samples, 0.19%)</title><rect x="27.4009%" y="661" width="0.1887%" height="15" fill="rgb(229,229,48)" fg:x="142589" fg:w="982"/><text x="27.6509%" y="671.50"></text></g><g><title>generic_permission (332 samples, 0.06%)</title><rect x="27.5258%" y="645" width="0.0638%" height="15" fill="rgb(225,21,28)" fg:x="143239" fg:w="332"/><text x="27.7758%" y="655.50"></text></g><g><title>security_inode_permission (129 samples, 0.02%)</title><rect x="27.5896%" y="661" width="0.0248%" height="15" fill="rgb(206,33,13)" fg:x="143571" fg:w="129"/><text x="27.8396%" y="671.50"></text></g><g><title>lookup_fast (1,850 samples, 0.36%)</title><rect x="27.6924%" y="645" width="0.3555%" height="15" fill="rgb(242,178,17)" fg:x="144106" fg:w="1850"/><text x="27.9424%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,383 samples, 0.27%)</title><rect x="27.7821%" y="629" width="0.2658%" height="15" fill="rgb(220,162,5)" fg:x="144573" fg:w="1383"/><text x="28.0321%" y="639.50"></text></g><g><title>link_path_walk.part.0 (4,853 samples, 0.93%)</title><rect x="27.2104%" y="677" width="0.9326%" height="15" fill="rgb(210,33,43)" fg:x="141598" fg:w="4853"/><text x="27.4604%" y="687.50"></text></g><g><title>walk_component (2,751 samples, 0.53%)</title><rect x="27.6144%" y="661" width="0.5287%" height="15" fill="rgb(216,116,54)" fg:x="143700" fg:w="2751"/><text x="27.8644%" y="671.50"></text></g><g><title>step_into (495 samples, 0.10%)</title><rect x="28.0479%" y="645" width="0.0951%" height="15" fill="rgb(249,92,24)" fg:x="145956" fg:w="495"/><text x="28.2979%" y="655.50"></text></g><g><title>path_init (126 samples, 0.02%)</title><rect x="28.1430%" y="677" width="0.0242%" height="15" fill="rgb(231,189,14)" fg:x="146451" fg:w="126"/><text x="28.3930%" y="687.50"></text></g><g><title>nd_jump_root (90 samples, 0.02%)</title><rect x="28.1500%" y="661" width="0.0173%" height="15" fill="rgb(230,8,41)" fg:x="146487" fg:w="90"/><text x="28.4000%" y="671.50"></text></g><g><title>set_root (57 samples, 0.01%)</title><rect x="28.1563%" y="645" width="0.0110%" height="15" fill="rgb(249,7,27)" fg:x="146520" fg:w="57"/><text x="28.4063%" y="655.50"></text></g><g><title>filename_parentat (5,271 samples, 1.01%)</title><rect x="27.1595%" y="709" width="1.0129%" height="15" fill="rgb(232,86,5)" fg:x="141333" fg:w="5271"/><text x="27.4095%" y="719.50"></text></g><g><title>path_parentat (5,225 samples, 1.00%)</title><rect x="27.1684%" y="693" width="1.0041%" height="15" fill="rgb(224,175,18)" fg:x="141379" fg:w="5225"/><text x="27.4184%" y="703.50"></text></g><g><title>kmem_cache_free (194 samples, 0.04%)</title><rect x="28.1724%" y="709" width="0.0373%" height="15" fill="rgb(220,129,12)" fg:x="146604" fg:w="194"/><text x="28.4224%" y="719.50"></text></g><g><title>__mnt_want_write (75 samples, 0.01%)</title><rect x="28.2168%" y="693" width="0.0144%" height="15" fill="rgb(210,19,36)" fg:x="146835" fg:w="75"/><text x="28.4668%" y="703.50"></text></g><g><title>mnt_want_write (128 samples, 0.02%)</title><rect x="28.2097%" y="709" width="0.0246%" height="15" fill="rgb(219,96,14)" fg:x="146798" fg:w="128"/><text x="28.4597%" y="719.50"></text></g><g><title>filename_create (6,049 samples, 1.16%)</title><rect x="27.0738%" y="725" width="1.1624%" height="15" fill="rgb(249,106,1)" fg:x="140887" fg:w="6049"/><text x="27.3238%" y="735.50"></text></g><g><title>kmem_cache_free (143 samples, 0.03%)</title><rect x="28.2458%" y="709" width="0.0275%" height="15" fill="rgb(249,155,20)" fg:x="146986" fg:w="143"/><text x="28.4958%" y="719.50"></text></g><g><title>__legitimize_mnt (68 samples, 0.01%)</title><rect x="28.2916%" y="645" width="0.0131%" height="15" fill="rgb(244,168,9)" fg:x="147224" fg:w="68"/><text x="28.5416%" y="655.50"></text></g><g><title>__legitimize_path (140 samples, 0.03%)</title><rect x="28.2893%" y="661" width="0.0269%" height="15" fill="rgb(216,23,50)" fg:x="147212" fg:w="140"/><text x="28.5393%" y="671.50"></text></g><g><title>lockref_get_not_dead (60 samples, 0.01%)</title><rect x="28.3046%" y="645" width="0.0115%" height="15" fill="rgb(224,219,20)" fg:x="147292" fg:w="60"/><text x="28.5546%" y="655.50"></text></g><g><title>complete_walk (180 samples, 0.03%)</title><rect x="28.2847%" y="693" width="0.0346%" height="15" fill="rgb(222,156,15)" fg:x="147188" fg:w="180"/><text x="28.5347%" y="703.50"></text></g><g><title>try_to_unlazy (171 samples, 0.03%)</title><rect x="28.2864%" y="677" width="0.0329%" height="15" fill="rgb(231,97,17)" fg:x="147197" fg:w="171"/><text x="28.5364%" y="687.50"></text></g><g><title>btrfs_permission (110 samples, 0.02%)</title><rect x="28.7199%" y="661" width="0.0211%" height="15" fill="rgb(218,70,48)" fg:x="149453" fg:w="110"/><text x="28.9699%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,315 samples, 0.25%)</title><rect x="28.5831%" y="677" width="0.2527%" height="15" fill="rgb(212,196,52)" fg:x="148741" fg:w="1315"/><text x="28.8331%" y="687.50"></text></g><g><title>generic_permission (493 samples, 0.09%)</title><rect x="28.7411%" y="661" width="0.0947%" height="15" fill="rgb(243,203,18)" fg:x="149563" fg:w="493"/><text x="28.9911%" y="671.50"></text></g><g><title>security_inode_permission (159 samples, 0.03%)</title><rect x="28.8358%" y="677" width="0.0306%" height="15" fill="rgb(252,125,41)" fg:x="150056" fg:w="159"/><text x="29.0858%" y="687.50"></text></g><g><title>lookup_fast (2,704 samples, 0.52%)</title><rect x="28.9653%" y="661" width="0.5196%" height="15" fill="rgb(223,180,33)" fg:x="150730" fg:w="2704"/><text x="29.2153%" y="671.50"></text></g><g><title>__d_lookup_rcu (2,106 samples, 0.40%)</title><rect x="29.0802%" y="645" width="0.4047%" height="15" fill="rgb(254,159,46)" fg:x="151328" fg:w="2106"/><text x="29.3302%" y="655.50"></text></g><g><title>__lookup_mnt (57 samples, 0.01%)</title><rect x="29.6273%" y="645" width="0.0110%" height="15" fill="rgb(254,38,10)" fg:x="154175" fg:w="57"/><text x="29.8773%" y="655.50"></text></g><g><title>atime_needs_update (113 samples, 0.02%)</title><rect x="29.6387%" y="645" width="0.0217%" height="15" fill="rgb(208,217,32)" fg:x="154234" fg:w="113"/><text x="29.8887%" y="655.50"></text></g><g><title>current_time (92 samples, 0.02%)</title><rect x="29.6427%" y="629" width="0.0177%" height="15" fill="rgb(221,120,13)" fg:x="154255" fg:w="92"/><text x="29.8927%" y="639.50"></text></g><g><title>ktime_get_coarse_real_ts64 (64 samples, 0.01%)</title><rect x="29.6481%" y="613" width="0.0123%" height="15" fill="rgb(246,54,52)" fg:x="154283" fg:w="64"/><text x="29.8981%" y="623.50"></text></g><g><title>page_get_link (235 samples, 0.05%)</title><rect x="29.6663%" y="645" width="0.0452%" height="15" fill="rgb(242,34,25)" fg:x="154378" fg:w="235"/><text x="29.9163%" y="655.50"></text></g><g><title>pagecache_get_page (203 samples, 0.04%)</title><rect x="29.6725%" y="629" width="0.0390%" height="15" fill="rgb(247,209,9)" fg:x="154410" fg:w="203"/><text x="29.9225%" y="639.50"></text></g><g><title>find_get_entry (176 samples, 0.03%)</title><rect x="29.6777%" y="613" width="0.0338%" height="15" fill="rgb(228,71,26)" fg:x="154437" fg:w="176"/><text x="29.9277%" y="623.50"></text></g><g><title>xas_load (81 samples, 0.02%)</title><rect x="29.6959%" y="597" width="0.0156%" height="15" fill="rgb(222,145,49)" fg:x="154532" fg:w="81"/><text x="29.9459%" y="607.50"></text></g><g><title>xas_start (74 samples, 0.01%)</title><rect x="29.6973%" y="581" width="0.0142%" height="15" fill="rgb(218,121,17)" fg:x="154539" fg:w="74"/><text x="29.9473%" y="591.50"></text></g><g><title>link_path_walk.part.0 (7,252 samples, 1.39%)</title><rect x="28.3193%" y="693" width="1.3936%" height="15" fill="rgb(244,50,7)" fg:x="147368" fg:w="7252"/><text x="28.5693%" y="703.50"></text></g><g><title>walk_component (4,405 samples, 0.85%)</title><rect x="28.8663%" y="677" width="0.8465%" height="15" fill="rgb(246,229,37)" fg:x="150215" fg:w="4405"/><text x="29.1163%" y="687.50"></text></g><g><title>step_into (1,145 samples, 0.22%)</title><rect x="29.4928%" y="661" width="0.2200%" height="15" fill="rgb(225,18,5)" fg:x="153475" fg:w="1145"/><text x="29.7428%" y="671.50"></text></g><g><title>path_init (182 samples, 0.03%)</title><rect x="29.7128%" y="693" width="0.0350%" height="15" fill="rgb(213,204,8)" fg:x="154620" fg:w="182"/><text x="29.9628%" y="703.50"></text></g><g><title>nd_jump_root (147 samples, 0.03%)</title><rect x="29.7196%" y="677" width="0.0282%" height="15" fill="rgb(238,103,6)" fg:x="154655" fg:w="147"/><text x="29.9696%" y="687.50"></text></g><g><title>set_root (122 samples, 0.02%)</title><rect x="29.7244%" y="661" width="0.0234%" height="15" fill="rgb(222,25,35)" fg:x="154680" fg:w="122"/><text x="29.9744%" y="671.50"></text></g><g><title>lookup_fast (160 samples, 0.03%)</title><rect x="29.7553%" y="677" width="0.0307%" height="15" fill="rgb(213,203,35)" fg:x="154841" fg:w="160"/><text x="30.0053%" y="687.50"></text></g><g><title>__d_lookup_rcu (127 samples, 0.02%)</title><rect x="29.7617%" y="661" width="0.0244%" height="15" fill="rgb(221,79,53)" fg:x="154874" fg:w="127"/><text x="30.0117%" y="671.50"></text></g><g><title>path_lookupat (7,892 samples, 1.52%)</title><rect x="28.2733%" y="709" width="1.5166%" height="15" fill="rgb(243,200,35)" fg:x="147129" fg:w="7892"/><text x="28.5233%" y="719.50"></text></g><g><title>walk_component (200 samples, 0.04%)</title><rect x="29.7515%" y="693" width="0.0384%" height="15" fill="rgb(248,60,25)" fg:x="154821" fg:w="200"/><text x="30.0015%" y="703.50"></text></g><g><title>filename_lookup (8,090 samples, 1.55%)</title><rect x="28.2362%" y="725" width="1.5546%" height="15" fill="rgb(227,53,46)" fg:x="146936" fg:w="8090"/><text x="28.4862%" y="735.50"></text></g><g><title>getname_flags (58 samples, 0.01%)</title><rect x="29.7909%" y="725" width="0.0111%" height="15" fill="rgb(216,120,32)" fg:x="155026" fg:w="58"/><text x="30.0409%" y="735.50"></text></g><g><title>memset_erms (691 samples, 0.13%)</title><rect x="29.8645%" y="693" width="0.1328%" height="15" fill="rgb(220,134,1)" fg:x="155409" fg:w="691"/><text x="30.1145%" y="703.50"></text></g><g><title>_cond_resched (56 samples, 0.01%)</title><rect x="30.0184%" y="677" width="0.0108%" height="15" fill="rgb(237,168,5)" fg:x="156210" fg:w="56"/><text x="30.2684%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,115 samples, 0.21%)</title><rect x="29.8160%" y="709" width="0.2143%" height="15" fill="rgb(231,100,33)" fg:x="155157" fg:w="1115"/><text x="30.0660%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (172 samples, 0.03%)</title><rect x="29.9973%" y="693" width="0.0331%" height="15" fill="rgb(236,177,47)" fg:x="156100" fg:w="172"/><text x="30.2473%" y="703.50"></text></g><g><title>__check_heap_object (127 samples, 0.02%)</title><rect x="30.1913%" y="677" width="0.0244%" height="15" fill="rgb(235,7,49)" fg:x="157110" fg:w="127"/><text x="30.4413%" y="687.50"></text></g><g><title>__virt_addr_valid (174 samples, 0.03%)</title><rect x="30.2157%" y="677" width="0.0334%" height="15" fill="rgb(232,119,22)" fg:x="157237" fg:w="174"/><text x="30.4657%" y="687.50"></text></g><g><title>__check_object_size (377 samples, 0.07%)</title><rect x="30.1775%" y="693" width="0.0724%" height="15" fill="rgb(254,73,53)" fg:x="157038" fg:w="377"/><text x="30.4275%" y="703.50"></text></g><g><title>getname_flags.part.0 (2,335 samples, 0.45%)</title><rect x="29.8020%" y="725" width="0.4487%" height="15" fill="rgb(251,35,20)" fg:x="155084" fg:w="2335"/><text x="30.0520%" y="735.50"></text></g><g><title>strncpy_from_user (1,147 samples, 0.22%)</title><rect x="30.0303%" y="709" width="0.2204%" height="15" fill="rgb(241,119,20)" fg:x="156272" fg:w="1147"/><text x="30.2803%" y="719.50"></text></g><g><title>btrfs_permission (55 samples, 0.01%)</title><rect x="30.2753%" y="693" width="0.0106%" height="15" fill="rgb(207,102,14)" fg:x="157547" fg:w="55"/><text x="30.5253%" y="703.50"></text></g><g><title>inode_permission.part.0 (107 samples, 0.02%)</title><rect x="30.2694%" y="709" width="0.0206%" height="15" fill="rgb(248,201,50)" fg:x="157516" fg:w="107"/><text x="30.5194%" y="719.50"></text></g><g><title>may_linkat (210 samples, 0.04%)</title><rect x="30.2507%" y="725" width="0.0404%" height="15" fill="rgb(222,185,44)" fg:x="157419" fg:w="210"/><text x="30.5007%" y="735.50"></text></g><g><title>mnt_drop_write (57 samples, 0.01%)</title><rect x="30.2911%" y="725" width="0.0110%" height="15" fill="rgb(218,107,18)" fg:x="157629" fg:w="57"/><text x="30.5411%" y="735.50"></text></g><g><title>mntput_no_expire (58 samples, 0.01%)</title><rect x="30.3030%" y="725" width="0.0111%" height="15" fill="rgb(237,177,39)" fg:x="157691" fg:w="58"/><text x="30.5530%" y="735.50"></text></g><g><title>apparmor_path_link (64 samples, 0.01%)</title><rect x="30.3335%" y="709" width="0.0123%" height="15" fill="rgb(246,69,6)" fg:x="157850" fg:w="64"/><text x="30.5835%" y="719.50"></text></g><g><title>security_path_link (359 samples, 0.07%)</title><rect x="30.3141%" y="725" width="0.0690%" height="15" fill="rgb(234,208,37)" fg:x="157749" fg:w="359"/><text x="30.5641%" y="735.50"></text></g><g><title>tomoyo_path_link (193 samples, 0.04%)</title><rect x="30.3460%" y="709" width="0.0371%" height="15" fill="rgb(225,4,6)" fg:x="157915" fg:w="193"/><text x="30.5960%" y="719.50"></text></g><g><title>tomoyo_path2_perm (181 samples, 0.03%)</title><rect x="30.3483%" y="693" width="0.0348%" height="15" fill="rgb(233,45,0)" fg:x="157927" fg:w="181"/><text x="30.5983%" y="703.50"></text></g><g><title>tomoyo_init_request_info (100 samples, 0.02%)</title><rect x="30.3639%" y="677" width="0.0192%" height="15" fill="rgb(226,136,5)" fg:x="158008" fg:w="100"/><text x="30.6139%" y="687.50"></text></g><g><title>up_write (71 samples, 0.01%)</title><rect x="30.3831%" y="725" width="0.0136%" height="15" fill="rgb(211,91,47)" fg:x="158108" fg:w="71"/><text x="30.6331%" y="735.50"></text></g><g><title>btrfs_put_transaction (57 samples, 0.01%)</title><rect x="30.5636%" y="677" width="0.0110%" height="15" fill="rgb(242,88,51)" fg:x="159047" fg:w="57"/><text x="30.8136%" y="687.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="30.5947%" y="645" width="0.0215%" height="15" fill="rgb(230,91,28)" fg:x="159209" fg:w="112"/><text x="30.8447%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (239 samples, 0.05%)</title><rect x="30.5799%" y="677" width="0.0459%" height="15" fill="rgb(254,186,29)" fg:x="159132" fg:w="239"/><text x="30.8299%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (222 samples, 0.04%)</title><rect x="30.5832%" y="661" width="0.0427%" height="15" fill="rgb(238,6,4)" fg:x="159149" fg:w="222"/><text x="30.8332%" y="671.50"></text></g><g><title>__btrfs_end_transaction (771 samples, 0.15%)</title><rect x="30.5046%" y="693" width="0.1482%" height="15" fill="rgb(221,151,16)" fg:x="158740" fg:w="771"/><text x="30.7546%" y="703.50"></text></g><g><title>kmem_cache_free (140 samples, 0.03%)</title><rect x="30.6258%" y="677" width="0.0269%" height="15" fill="rgb(251,143,52)" fg:x="159371" fg:w="140"/><text x="30.8758%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (243 samples, 0.05%)</title><rect x="30.7661%" y="629" width="0.0467%" height="15" fill="rgb(206,90,15)" fg:x="160101" fg:w="243"/><text x="31.0161%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (605 samples, 0.12%)</title><rect x="30.7240%" y="645" width="0.1163%" height="15" fill="rgb(218,35,8)" fg:x="159882" fg:w="605"/><text x="30.9740%" y="655.50"></text></g><g><title>rb_insert_color (143 samples, 0.03%)</title><rect x="30.8128%" y="629" width="0.0275%" height="15" fill="rgb(239,215,6)" fg:x="160344" fg:w="143"/><text x="31.0628%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (259 samples, 0.05%)</title><rect x="30.8403%" y="645" width="0.0498%" height="15" fill="rgb(245,116,39)" fg:x="160487" fg:w="259"/><text x="31.0903%" y="655.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="30.8797%" y="629" width="0.0104%" height="15" fill="rgb(242,65,28)" fg:x="160692" fg:w="54"/><text x="31.1297%" y="639.50"></text></g><g><title>__slab_alloc (223 samples, 0.04%)</title><rect x="30.9364%" y="629" width="0.0429%" height="15" fill="rgb(252,132,53)" fg:x="160987" fg:w="223"/><text x="31.1864%" y="639.50"></text></g><g><title>___slab_alloc (211 samples, 0.04%)</title><rect x="30.9387%" y="613" width="0.0405%" height="15" fill="rgb(224,159,50)" fg:x="160999" fg:w="211"/><text x="31.1887%" y="623.50"></text></g><g><title>get_partial_node.part.0 (70 samples, 0.01%)</title><rect x="30.9658%" y="597" width="0.0135%" height="15" fill="rgb(224,93,4)" fg:x="161140" fg:w="70"/><text x="31.2158%" y="607.50"></text></g><g><title>memset_erms (78 samples, 0.01%)</title><rect x="30.9921%" y="629" width="0.0150%" height="15" fill="rgb(208,81,34)" fg:x="161277" fg:w="78"/><text x="31.2421%" y="639.50"></text></g><g><title>__kmalloc (652 samples, 0.13%)</title><rect x="30.8901%" y="645" width="0.1253%" height="15" fill="rgb(233,92,54)" fg:x="160746" fg:w="652"/><text x="31.1401%" y="655.50"></text></g><g><title>mutex_spin_on_owner (335 samples, 0.06%)</title><rect x="31.0167%" y="629" width="0.0644%" height="15" fill="rgb(237,21,14)" fg:x="161405" fg:w="335"/><text x="31.2667%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (348 samples, 0.07%)</title><rect x="31.0154%" y="645" width="0.0669%" height="15" fill="rgb(249,128,51)" fg:x="161398" fg:w="348"/><text x="31.2654%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (358 samples, 0.07%)</title><rect x="31.0822%" y="645" width="0.0688%" height="15" fill="rgb(223,129,24)" fg:x="161746" fg:w="358"/><text x="31.3322%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (191 samples, 0.04%)</title><rect x="31.1143%" y="629" width="0.0367%" height="15" fill="rgb(231,168,25)" fg:x="161913" fg:w="191"/><text x="31.3643%" y="639.50"></text></g><g><title>_raw_spin_lock (144 samples, 0.03%)</title><rect x="31.1234%" y="613" width="0.0277%" height="15" fill="rgb(224,39,20)" fg:x="161960" fg:w="144"/><text x="31.3734%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (161 samples, 0.03%)</title><rect x="31.1510%" y="645" width="0.0309%" height="15" fill="rgb(225,152,53)" fg:x="162104" fg:w="161"/><text x="31.4010%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (148 samples, 0.03%)</title><rect x="31.1535%" y="629" width="0.0284%" height="15" fill="rgb(252,17,24)" fg:x="162117" fg:w="148"/><text x="31.4035%" y="639.50"></text></g><g><title>mutex_lock (79 samples, 0.02%)</title><rect x="31.1900%" y="645" width="0.0152%" height="15" fill="rgb(250,114,30)" fg:x="162307" fg:w="79"/><text x="31.4400%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,629 samples, 0.51%)</title><rect x="30.7090%" y="661" width="0.5052%" height="15" fill="rgb(229,5,4)" fg:x="159804" fg:w="2629"/><text x="30.9590%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (164 samples, 0.03%)</title><rect x="31.2142%" y="661" width="0.0315%" height="15" fill="rgb(225,176,49)" fg:x="162433" fg:w="164"/><text x="31.4642%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (109 samples, 0.02%)</title><rect x="31.2248%" y="645" width="0.0209%" height="15" fill="rgb(224,221,49)" fg:x="162488" fg:w="109"/><text x="31.4748%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (222 samples, 0.04%)</title><rect x="31.2583%" y="645" width="0.0427%" height="15" fill="rgb(253,169,27)" fg:x="162662" fg:w="222"/><text x="31.5083%" y="655.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.03%)</title><rect x="31.2675%" y="629" width="0.0334%" height="15" fill="rgb(211,206,16)" fg:x="162710" fg:w="174"/><text x="31.5175%" y="639.50"></text></g><g><title>btrfs_release_path (462 samples, 0.09%)</title><rect x="31.2458%" y="661" width="0.0888%" height="15" fill="rgb(244,87,35)" fg:x="162597" fg:w="462"/><text x="31.4958%" y="671.50"></text></g><g><title>release_extent_buffer (175 samples, 0.03%)</title><rect x="31.3009%" y="645" width="0.0336%" height="15" fill="rgb(246,28,10)" fg:x="162884" fg:w="175"/><text x="31.5509%" y="655.50"></text></g><g><title>btrfs_set_16 (64 samples, 0.01%)</title><rect x="31.3345%" y="661" width="0.0123%" height="15" fill="rgb(229,12,44)" fg:x="163059" fg:w="64"/><text x="31.5845%" y="671.50"></text></g><g><title>crc32c (141 samples, 0.03%)</title><rect x="31.3578%" y="661" width="0.0271%" height="15" fill="rgb(210,145,37)" fg:x="163180" fg:w="141"/><text x="31.6078%" y="671.50"></text></g><g><title>crypto_shash_update (124 samples, 0.02%)</title><rect x="31.3611%" y="645" width="0.0238%" height="15" fill="rgb(227,112,52)" fg:x="163197" fg:w="124"/><text x="31.6111%" y="655.50"></text></g><g><title>btrfs_get_32 (91 samples, 0.02%)</title><rect x="31.3924%" y="645" width="0.0175%" height="15" fill="rgb(238,155,34)" fg:x="163360" fg:w="91"/><text x="31.6424%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (77 samples, 0.01%)</title><rect x="31.4758%" y="597" width="0.0148%" height="15" fill="rgb(239,226,36)" fg:x="163794" fg:w="77"/><text x="31.7258%" y="607.50"></text></g><g><title>_raw_read_lock (55 samples, 0.01%)</title><rect x="31.4800%" y="581" width="0.0106%" height="15" fill="rgb(230,16,23)" fg:x="163816" fg:w="55"/><text x="31.7300%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (166 samples, 0.03%)</title><rect x="31.4733%" y="613" width="0.0319%" height="15" fill="rgb(236,171,36)" fg:x="163781" fg:w="166"/><text x="31.7233%" y="623.50"></text></g><g><title>btrfs_root_node (76 samples, 0.01%)</title><rect x="31.4906%" y="597" width="0.0146%" height="15" fill="rgb(221,22,14)" fg:x="163871" fg:w="76"/><text x="31.7406%" y="607.50"></text></g><g><title>__btrfs_tree_lock (132 samples, 0.03%)</title><rect x="31.5052%" y="613" width="0.0254%" height="15" fill="rgb(242,43,11)" fg:x="163947" fg:w="132"/><text x="31.7552%" y="623.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="31.5094%" y="597" width="0.0211%" height="15" fill="rgb(232,69,23)" fg:x="163969" fg:w="110"/><text x="31.7594%" y="607.50"></text></g><g><title>__schedule (105 samples, 0.02%)</title><rect x="31.5104%" y="581" width="0.0202%" height="15" fill="rgb(216,180,54)" fg:x="163974" fg:w="105"/><text x="31.7604%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (176 samples, 0.03%)</title><rect x="31.5357%" y="613" width="0.0338%" height="15" fill="rgb(216,5,24)" fg:x="164106" fg:w="176"/><text x="31.7857%" y="623.50"></text></g><g><title>leaf_space_used (163 samples, 0.03%)</title><rect x="31.5382%" y="597" width="0.0313%" height="15" fill="rgb(225,89,9)" fg:x="164119" fg:w="163"/><text x="31.7882%" y="607.50"></text></g><g><title>btrfs_get_32 (114 samples, 0.02%)</title><rect x="31.5477%" y="581" width="0.0219%" height="15" fill="rgb(243,75,33)" fg:x="164168" fg:w="114"/><text x="31.7977%" y="591.50"></text></g><g><title>_raw_write_lock (87 samples, 0.02%)</title><rect x="31.5778%" y="597" width="0.0167%" height="15" fill="rgb(247,141,45)" fg:x="164325" fg:w="87"/><text x="31.8278%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (181 samples, 0.03%)</title><rect x="31.5723%" y="613" width="0.0348%" height="15" fill="rgb(232,177,36)" fg:x="164296" fg:w="181"/><text x="31.8223%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (65 samples, 0.01%)</title><rect x="31.5945%" y="597" width="0.0125%" height="15" fill="rgb(219,125,36)" fg:x="164412" fg:w="65"/><text x="31.8445%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,136 samples, 0.22%)</title><rect x="31.6070%" y="613" width="0.2183%" height="15" fill="rgb(227,94,9)" fg:x="164477" fg:w="1136"/><text x="31.8570%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="31.8459%" y="597" width="0.0136%" height="15" fill="rgb(240,34,52)" fg:x="165720" fg:w="71"/><text x="32.0959%" y="607.50"></text></g><g><title>btrfs_get_64 (148 samples, 0.03%)</title><rect x="31.8595%" y="597" width="0.0284%" height="15" fill="rgb(216,45,12)" fg:x="165791" fg:w="148"/><text x="32.1095%" y="607.50"></text></g><g><title>__radix_tree_lookup (552 samples, 0.11%)</title><rect x="31.9406%" y="581" width="0.1061%" height="15" fill="rgb(246,21,19)" fg:x="166213" fg:w="552"/><text x="32.1906%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (291 samples, 0.06%)</title><rect x="32.0469%" y="581" width="0.0559%" height="15" fill="rgb(213,98,42)" fg:x="166766" fg:w="291"/><text x="32.2969%" y="591.50"></text></g><g><title>mark_page_accessed (196 samples, 0.04%)</title><rect x="32.0652%" y="565" width="0.0377%" height="15" fill="rgb(250,136,47)" fg:x="166861" fg:w="196"/><text x="32.3152%" y="575.50"></text></g><g><title>find_extent_buffer (1,064 samples, 0.20%)</title><rect x="31.8997%" y="597" width="0.2045%" height="15" fill="rgb(251,124,27)" fg:x="166000" fg:w="1064"/><text x="32.1497%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,578 samples, 0.30%)</title><rect x="31.8253%" y="613" width="0.3032%" height="15" fill="rgb(229,180,14)" fg:x="165613" fg:w="1578"/><text x="32.0753%" y="623.50"></text></g><g><title>read_extent_buffer (127 samples, 0.02%)</title><rect x="32.1042%" y="597" width="0.0244%" height="15" fill="rgb(245,216,25)" fg:x="167064" fg:w="127"/><text x="32.3542%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (166 samples, 0.03%)</title><rect x="32.1299%" y="597" width="0.0319%" height="15" fill="rgb(251,43,5)" fg:x="167198" fg:w="166"/><text x="32.3799%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (165 samples, 0.03%)</title><rect x="32.1301%" y="581" width="0.0317%" height="15" fill="rgb(250,128,24)" fg:x="167199" fg:w="165"/><text x="32.3801%" y="591.50"></text></g><g><title>copy_for_split (121 samples, 0.02%)</title><rect x="32.1647%" y="597" width="0.0233%" height="15" fill="rgb(217,117,27)" fg:x="167379" fg:w="121"/><text x="32.4147%" y="607.50"></text></g><g><title>btrfs_get_token_32 (108 samples, 0.02%)</title><rect x="32.2049%" y="565" width="0.0208%" height="15" fill="rgb(245,147,4)" fg:x="167588" fg:w="108"/><text x="32.4549%" y="575.50"></text></g><g><title>btrfs_set_token_32 (142 samples, 0.03%)</title><rect x="32.2266%" y="565" width="0.0273%" height="15" fill="rgb(242,201,35)" fg:x="167701" fg:w="142"/><text x="32.4766%" y="575.50"></text></g><g><title>memmove_extent_buffer (79 samples, 0.02%)</title><rect x="32.2641%" y="565" width="0.0152%" height="15" fill="rgb(218,181,1)" fg:x="167896" fg:w="79"/><text x="32.5141%" y="575.50"></text></g><g><title>__push_leaf_left (464 samples, 0.09%)</title><rect x="32.1908%" y="581" width="0.0892%" height="15" fill="rgb(222,6,29)" fg:x="167515" fg:w="464"/><text x="32.4408%" y="591.50"></text></g><g><title>push_leaf_left (521 samples, 0.10%)</title><rect x="32.1881%" y="597" width="0.1001%" height="15" fill="rgb(208,186,3)" fg:x="167501" fg:w="521"/><text x="32.4381%" y="607.50"></text></g><g><title>btrfs_get_token_32 (95 samples, 0.02%)</title><rect x="32.3063%" y="565" width="0.0183%" height="15" fill="rgb(216,36,26)" fg:x="168116" fg:w="95"/><text x="32.5563%" y="575.50"></text></g><g><title>btrfs_set_token_32 (112 samples, 0.02%)</title><rect x="32.3255%" y="565" width="0.0215%" height="15" fill="rgb(248,201,23)" fg:x="168216" fg:w="112"/><text x="32.5755%" y="575.50"></text></g><g><title>__push_leaf_right (389 samples, 0.07%)</title><rect x="32.2923%" y="581" width="0.0748%" height="15" fill="rgb(251,170,31)" fg:x="168043" fg:w="389"/><text x="32.5423%" y="591.50"></text></g><g><title>btrfs_read_node_slot (55 samples, 0.01%)</title><rect x="32.3715%" y="581" width="0.0106%" height="15" fill="rgb(207,110,25)" fg:x="168455" fg:w="55"/><text x="32.6215%" y="591.50"></text></g><g><title>push_leaf_right (496 samples, 0.10%)</title><rect x="32.2883%" y="597" width="0.0953%" height="15" fill="rgb(250,54,15)" fg:x="168022" fg:w="496"/><text x="32.5383%" y="607.50"></text></g><g><title>split_leaf (1,330 samples, 0.26%)</title><rect x="32.1286%" y="613" width="0.2556%" height="15" fill="rgb(227,68,33)" fg:x="167191" fg:w="1330"/><text x="32.3786%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (61 samples, 0.01%)</title><rect x="32.4220%" y="597" width="0.0117%" height="15" fill="rgb(238,34,41)" fg:x="168718" fg:w="61"/><text x="32.6720%" y="607.50"></text></g><g><title>btrfs_search_slot (5,314 samples, 1.02%)</title><rect x="31.4158%" y="629" width="1.0212%" height="15" fill="rgb(220,11,15)" fg:x="163482" fg:w="5314"/><text x="31.6658%" y="639.50"></text></g><g><title>unlock_up (275 samples, 0.05%)</title><rect x="32.3842%" y="613" width="0.0528%" height="15" fill="rgb(246,111,35)" fg:x="168521" fg:w="275"/><text x="32.6342%" y="623.50"></text></g><g><title>btrfs_get_32 (105 samples, 0.02%)</title><rect x="32.5919%" y="613" width="0.0202%" height="15" fill="rgb(209,88,53)" fg:x="169602" fg:w="105"/><text x="32.8419%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,055 samples, 0.59%)</title><rect x="32.6121%" y="613" width="0.5871%" height="15" fill="rgb(231,185,47)" fg:x="169707" fg:w="3055"/><text x="32.8621%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (615 samples, 0.12%)</title><rect x="33.0810%" y="597" width="0.1182%" height="15" fill="rgb(233,154,1)" fg:x="172147" fg:w="615"/><text x="33.3310%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (241 samples, 0.05%)</title><rect x="33.1991%" y="613" width="0.0463%" height="15" fill="rgb(225,15,46)" fg:x="172762" fg:w="241"/><text x="33.4491%" y="623.50"></text></g><g><title>leaf_space_used (223 samples, 0.04%)</title><rect x="33.2026%" y="597" width="0.0429%" height="15" fill="rgb(211,135,41)" fg:x="172780" fg:w="223"/><text x="33.4526%" y="607.50"></text></g><g><title>btrfs_get_32 (158 samples, 0.03%)</title><rect x="33.2151%" y="581" width="0.0304%" height="15" fill="rgb(208,54,0)" fg:x="172845" fg:w="158"/><text x="33.4651%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (135 samples, 0.03%)</title><rect x="33.2454%" y="613" width="0.0259%" height="15" fill="rgb(244,136,14)" fg:x="173003" fg:w="135"/><text x="33.4954%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (94 samples, 0.02%)</title><rect x="33.2533%" y="597" width="0.0181%" height="15" fill="rgb(241,56,14)" fg:x="173044" fg:w="94"/><text x="33.5033%" y="607.50"></text></g><g><title>btrfs_set_token_32 (2,711 samples, 0.52%)</title><rect x="33.2714%" y="613" width="0.5210%" height="15" fill="rgb(205,80,24)" fg:x="173138" fg:w="2711"/><text x="33.5214%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (541 samples, 0.10%)</title><rect x="33.6884%" y="597" width="0.1040%" height="15" fill="rgb(220,57,4)" fg:x="175308" fg:w="541"/><text x="33.9384%" y="607.50"></text></g><g><title>copy_pages (135 samples, 0.03%)</title><rect x="33.8114%" y="597" width="0.0259%" height="15" fill="rgb(226,193,50)" fg:x="175948" fg:w="135"/><text x="34.0614%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,063 samples, 0.20%)</title><rect x="33.7999%" y="613" width="0.2043%" height="15" fill="rgb(231,168,22)" fg:x="175888" fg:w="1063"/><text x="34.0499%" y="623.50"></text></g><g><title>memmove (868 samples, 0.17%)</title><rect x="33.8373%" y="597" width="0.1668%" height="15" fill="rgb(254,215,14)" fg:x="176083" fg:w="868"/><text x="34.0873%" y="607.50"></text></g><g><title>copy_pages (109 samples, 0.02%)</title><rect x="34.0268%" y="597" width="0.0209%" height="15" fill="rgb(211,115,16)" fg:x="177069" fg:w="109"/><text x="34.2768%" y="607.50"></text></g><g><title>memmove_extent_buffer (904 samples, 0.17%)</title><rect x="34.0041%" y="613" width="0.1737%" height="15" fill="rgb(236,210,16)" fg:x="176951" fg:w="904"/><text x="34.2541%" y="623.50"></text></g><g><title>memmove (677 samples, 0.13%)</title><rect x="34.0477%" y="597" width="0.1301%" height="15" fill="rgb(221,94,12)" fg:x="177178" fg:w="677"/><text x="34.2977%" y="607.50"></text></g><g><title>insert_with_overflow (14,632 samples, 2.81%)</title><rect x="31.3849%" y="661" width="2.8118%" height="15" fill="rgb(235,218,49)" fg:x="163321" fg:w="14632"/><text x="31.6349%" y="671.50">in..</text></g><g><title>btrfs_insert_empty_items (14,502 samples, 2.79%)</title><rect x="31.4099%" y="645" width="2.7868%" height="15" fill="rgb(217,114,14)" fg:x="163451" fg:w="14502"/><text x="31.6599%" y="655.50">bt..</text></g><g><title>setup_items_for_insert (9,157 samples, 1.76%)</title><rect x="32.4370%" y="629" width="1.7597%" height="15" fill="rgb(216,145,22)" fg:x="168796" fg:w="9157"/><text x="32.6870%" y="639.50"></text></g><g><title>write_extent_buffer (98 samples, 0.02%)</title><rect x="34.1778%" y="613" width="0.0188%" height="15" fill="rgb(217,112,39)" fg:x="177855" fg:w="98"/><text x="34.4278%" y="623.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="34.2117%" y="645" width="0.0104%" height="15" fill="rgb(225,85,32)" fg:x="178031" fg:w="54"/><text x="34.4617%" y="655.50"></text></g><g><title>kmem_cache_alloc (161 samples, 0.03%)</title><rect x="34.1967%" y="661" width="0.0309%" height="15" fill="rgb(245,209,47)" fg:x="177953" fg:w="161"/><text x="34.4467%" y="671.50"></text></g><g><title>kmem_cache_free (86 samples, 0.02%)</title><rect x="34.2276%" y="661" width="0.0165%" height="15" fill="rgb(218,220,15)" fg:x="178114" fg:w="86"/><text x="34.4776%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (18,756 samples, 3.60%)</title><rect x="30.6856%" y="677" width="3.6043%" height="15" fill="rgb(222,202,31)" fg:x="159682" fg:w="18756"/><text x="30.9356%" y="687.50">btrf..</text></g><g><title>write_extent_buffer (238 samples, 0.05%)</title><rect x="34.2441%" y="661" width="0.0457%" height="15" fill="rgb(243,203,4)" fg:x="178200" fg:w="238"/><text x="34.4941%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (203 samples, 0.04%)</title><rect x="34.3122%" y="629" width="0.0390%" height="15" fill="rgb(237,92,17)" fg:x="178554" fg:w="203"/><text x="34.5622%" y="639.50"></text></g><g><title>_raw_spin_lock (152 samples, 0.03%)</title><rect x="34.3220%" y="613" width="0.0292%" height="15" fill="rgb(231,119,7)" fg:x="178605" fg:w="152"/><text x="34.5720%" y="623.50"></text></g><g><title>btrfs_free_path (417 samples, 0.08%)</title><rect x="34.2995%" y="661" width="0.0801%" height="15" fill="rgb(237,82,41)" fg:x="178488" fg:w="417"/><text x="34.5495%" y="671.50"></text></g><g><title>btrfs_release_path (410 samples, 0.08%)</title><rect x="34.3008%" y="645" width="0.0788%" height="15" fill="rgb(226,81,48)" fg:x="178495" fg:w="410"/><text x="34.5508%" y="655.50"></text></g><g><title>release_extent_buffer (148 samples, 0.03%)</title><rect x="34.3512%" y="629" width="0.0284%" height="15" fill="rgb(234,70,51)" fg:x="178757" fg:w="148"/><text x="34.6012%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (116 samples, 0.02%)</title><rect x="34.4651%" y="613" width="0.0223%" height="15" fill="rgb(251,86,4)" fg:x="179350" fg:w="116"/><text x="34.7151%" y="623.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="34.4740%" y="597" width="0.0135%" height="15" fill="rgb(244,144,28)" fg:x="179396" fg:w="70"/><text x="34.7240%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (236 samples, 0.05%)</title><rect x="34.4626%" y="629" width="0.0454%" height="15" fill="rgb(232,161,39)" fg:x="179337" fg:w="236"/><text x="34.7126%" y="639.50"></text></g><g><title>btrfs_root_node (107 samples, 0.02%)</title><rect x="34.4874%" y="613" width="0.0206%" height="15" fill="rgb(247,34,51)" fg:x="179466" fg:w="107"/><text x="34.7374%" y="623.50"></text></g><g><title>btrfs_bin_search (60 samples, 0.01%)</title><rect x="34.5082%" y="629" width="0.0115%" height="15" fill="rgb(225,132,2)" fg:x="179574" fg:w="60"/><text x="34.7582%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (187 samples, 0.04%)</title><rect x="34.5287%" y="629" width="0.0359%" height="15" fill="rgb(209,159,44)" fg:x="179681" fg:w="187"/><text x="34.7787%" y="639.50"></text></g><g><title>leaf_space_used (152 samples, 0.03%)</title><rect x="34.5355%" y="613" width="0.0292%" height="15" fill="rgb(251,214,1)" fg:x="179716" fg:w="152"/><text x="34.7855%" y="623.50"></text></g><g><title>btrfs_get_32 (103 samples, 0.02%)</title><rect x="34.5449%" y="597" width="0.0198%" height="15" fill="rgb(247,84,47)" fg:x="179765" fg:w="103"/><text x="34.7949%" y="607.50"></text></g><g><title>_raw_write_lock (86 samples, 0.02%)</title><rect x="34.5720%" y="613" width="0.0165%" height="15" fill="rgb(240,111,43)" fg:x="179906" fg:w="86"/><text x="34.8220%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (128 samples, 0.02%)</title><rect x="34.5656%" y="629" width="0.0246%" height="15" fill="rgb(215,214,35)" fg:x="179873" fg:w="128"/><text x="34.8156%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,464 samples, 0.28%)</title><rect x="34.5906%" y="629" width="0.2813%" height="15" fill="rgb(248,207,23)" fg:x="180003" fg:w="1464"/><text x="34.8406%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (180 samples, 0.03%)</title><rect x="34.9037%" y="613" width="0.0346%" height="15" fill="rgb(214,186,4)" fg:x="181632" fg:w="180"/><text x="35.1537%" y="623.50"></text></g><g><title>verify_parent_transid (137 samples, 0.03%)</title><rect x="34.9119%" y="597" width="0.0263%" height="15" fill="rgb(220,133,22)" fg:x="181675" fg:w="137"/><text x="35.1619%" y="607.50"></text></g><g><title>btrfs_get_64 (160 samples, 0.03%)</title><rect x="34.9382%" y="613" width="0.0307%" height="15" fill="rgb(239,134,19)" fg:x="181812" fg:w="160"/><text x="35.1882%" y="623.50"></text></g><g><title>__radix_tree_lookup (821 samples, 0.16%)</title><rect x="35.0566%" y="597" width="0.1578%" height="15" fill="rgb(250,140,9)" fg:x="182428" fg:w="821"/><text x="35.3066%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (362 samples, 0.07%)</title><rect x="35.2144%" y="597" width="0.0696%" height="15" fill="rgb(225,59,14)" fg:x="183249" fg:w="362"/><text x="35.4644%" y="607.50"></text></g><g><title>mark_page_accessed (259 samples, 0.05%)</title><rect x="35.2342%" y="581" width="0.0498%" height="15" fill="rgb(214,152,51)" fg:x="183352" fg:w="259"/><text x="35.4842%" y="591.50"></text></g><g><title>find_extent_buffer (1,590 samples, 0.31%)</title><rect x="34.9799%" y="613" width="0.3055%" height="15" fill="rgb(251,227,43)" fg:x="182029" fg:w="1590"/><text x="35.2299%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,345 samples, 0.45%)</title><rect x="34.8719%" y="629" width="0.4506%" height="15" fill="rgb(241,96,17)" fg:x="181467" fg:w="2345"/><text x="35.1219%" y="639.50"></text></g><g><title>read_extent_buffer (193 samples, 0.04%)</title><rect x="35.2855%" y="613" width="0.0371%" height="15" fill="rgb(234,198,43)" fg:x="183619" fg:w="193"/><text x="35.5355%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (64 samples, 0.01%)</title><rect x="35.3606%" y="613" width="0.0123%" height="15" fill="rgb(220,108,29)" fg:x="184010" fg:w="64"/><text x="35.6106%" y="623.50"></text></g><g><title>btrfs_search_slot (5,150 samples, 0.99%)</title><rect x="34.3898%" y="645" width="0.9897%" height="15" fill="rgb(226,163,33)" fg:x="178958" fg:w="5150"/><text x="34.6398%" y="655.50"></text></g><g><title>unlock_up (294 samples, 0.06%)</title><rect x="35.3230%" y="629" width="0.0565%" height="15" fill="rgb(205,194,45)" fg:x="183814" fg:w="294"/><text x="35.5730%" y="639.50"></text></g><g><title>btrfs_get_32 (117 samples, 0.02%)</title><rect x="35.4903%" y="629" width="0.0225%" height="15" fill="rgb(206,143,44)" fg:x="184685" fg:w="117"/><text x="35.7403%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,235 samples, 0.24%)</title><rect x="35.5128%" y="629" width="0.2373%" height="15" fill="rgb(236,136,36)" fg:x="184802" fg:w="1235"/><text x="35.7628%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (229 samples, 0.04%)</title><rect x="35.7061%" y="613" width="0.0440%" height="15" fill="rgb(249,172,42)" fg:x="185808" fg:w="229"/><text x="35.9561%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (242 samples, 0.05%)</title><rect x="35.7502%" y="629" width="0.0465%" height="15" fill="rgb(216,139,23)" fg:x="186037" fg:w="242"/><text x="36.0002%" y="639.50"></text></g><g><title>leaf_space_used (202 samples, 0.04%)</title><rect x="35.7578%" y="613" width="0.0388%" height="15" fill="rgb(207,166,20)" fg:x="186077" fg:w="202"/><text x="36.0078%" y="623.50"></text></g><g><title>btrfs_get_32 (143 samples, 0.03%)</title><rect x="35.7692%" y="597" width="0.0275%" height="15" fill="rgb(210,209,22)" fg:x="186136" fg:w="143"/><text x="36.0192%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (254 samples, 0.05%)</title><rect x="35.7967%" y="629" width="0.0488%" height="15" fill="rgb(232,118,20)" fg:x="186279" fg:w="254"/><text x="36.0467%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (95 samples, 0.02%)</title><rect x="35.8272%" y="613" width="0.0183%" height="15" fill="rgb(238,113,42)" fg:x="186438" fg:w="95"/><text x="36.0772%" y="623.50"></text></g><g><title>btrfs_set_token_32 (1,103 samples, 0.21%)</title><rect x="35.8455%" y="629" width="0.2120%" height="15" fill="rgb(231,42,5)" fg:x="186533" fg:w="1103"/><text x="36.0955%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (240 samples, 0.05%)</title><rect x="36.0113%" y="613" width="0.0461%" height="15" fill="rgb(243,166,24)" fg:x="187396" fg:w="240"/><text x="36.2613%" y="623.50"></text></g><g><title>copy_pages (143 samples, 0.03%)</title><rect x="36.0818%" y="613" width="0.0275%" height="15" fill="rgb(237,226,12)" fg:x="187763" fg:w="143"/><text x="36.3318%" y="623.50"></text></g><g><title>memcpy_extent_buffer (1,518 samples, 0.29%)</title><rect x="36.0663%" y="629" width="0.2917%" height="15" fill="rgb(229,133,24)" fg:x="187682" fg:w="1518"/><text x="36.3163%" y="639.50"></text></g><g><title>memmove (1,294 samples, 0.25%)</title><rect x="36.1093%" y="613" width="0.2487%" height="15" fill="rgb(238,33,43)" fg:x="187906" fg:w="1294"/><text x="36.3593%" y="623.50"></text></g><g><title>copy_pages (58 samples, 0.01%)</title><rect x="36.3849%" y="613" width="0.0111%" height="15" fill="rgb(227,59,38)" fg:x="189340" fg:w="58"/><text x="36.6349%" y="623.50"></text></g><g><title>memmove_extent_buffer (561 samples, 0.11%)</title><rect x="36.3580%" y="629" width="0.1078%" height="15" fill="rgb(230,97,0)" fg:x="189200" fg:w="561"/><text x="36.6080%" y="639.50"></text></g><g><title>memmove (363 samples, 0.07%)</title><rect x="36.3960%" y="613" width="0.0698%" height="15" fill="rgb(250,173,50)" fg:x="189398" fg:w="363"/><text x="36.6460%" y="623.50"></text></g><g><title>btrfs_insert_empty_items (10,949 samples, 2.10%)</title><rect x="34.3837%" y="661" width="2.1040%" height="15" fill="rgb(240,15,50)" fg:x="178926" fg:w="10949"/><text x="34.6337%" y="671.50">b..</text></g><g><title>setup_items_for_insert (5,767 samples, 1.11%)</title><rect x="35.3795%" y="645" width="1.1082%" height="15" fill="rgb(221,93,22)" fg:x="184108" fg:w="5767"/><text x="35.6295%" y="655.50"></text></g><g><title>write_extent_buffer (114 samples, 0.02%)</title><rect x="36.4658%" y="629" width="0.0219%" height="15" fill="rgb(245,180,53)" fg:x="189761" fg:w="114"/><text x="36.7158%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (162 samples, 0.03%)</title><rect x="36.4877%" y="661" width="0.0311%" height="15" fill="rgb(231,88,51)" fg:x="189875" fg:w="162"/><text x="36.7377%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (103 samples, 0.02%)</title><rect x="36.4990%" y="645" width="0.0198%" height="15" fill="rgb(240,58,21)" fg:x="189934" fg:w="103"/><text x="36.7490%" y="655.50"></text></g><g><title>btrfs_set_64 (62 samples, 0.01%)</title><rect x="36.5288%" y="661" width="0.0119%" height="15" fill="rgb(237,21,10)" fg:x="190089" fg:w="62"/><text x="36.7788%" y="671.50"></text></g><g><title>memset_erms (66 samples, 0.01%)</title><rect x="36.5592%" y="645" width="0.0127%" height="15" fill="rgb(218,43,11)" fg:x="190247" fg:w="66"/><text x="36.8092%" y="655.50"></text></g><g><title>kmem_cache_alloc (193 samples, 0.04%)</title><rect x="36.5407%" y="661" width="0.0371%" height="15" fill="rgb(218,221,29)" fg:x="190151" fg:w="193"/><text x="36.7907%" y="671.50"></text></g><g><title>kmem_cache_free (119 samples, 0.02%)</title><rect x="36.5778%" y="661" width="0.0229%" height="15" fill="rgb(214,118,42)" fg:x="190344" fg:w="119"/><text x="36.8278%" y="671.50"></text></g><g><title>btrfs_insert_inode_ref (12,186 samples, 2.34%)</title><rect x="34.2899%" y="677" width="2.3417%" height="15" fill="rgb(251,200,26)" fg:x="178438" fg:w="12186"/><text x="34.5399%" y="687.50">b..</text></g><g><title>write_extent_buffer (161 samples, 0.03%)</title><rect x="36.6007%" y="661" width="0.0309%" height="15" fill="rgb(237,101,39)" fg:x="190463" fg:w="161"/><text x="36.8507%" y="671.50"></text></g><g><title>mutex_lock (57 samples, 0.01%)</title><rect x="36.6810%" y="629" width="0.0110%" height="15" fill="rgb(251,117,11)" fg:x="190881" fg:w="57"/><text x="36.9310%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (240 samples, 0.05%)</title><rect x="36.6551%" y="645" width="0.0461%" height="15" fill="rgb(216,223,23)" fg:x="190746" fg:w="240"/><text x="36.9051%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (86 samples, 0.02%)</title><rect x="36.7062%" y="645" width="0.0165%" height="15" fill="rgb(251,54,12)" fg:x="191012" fg:w="86"/><text x="36.9562%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (73 samples, 0.01%)</title><rect x="36.7087%" y="629" width="0.0140%" height="15" fill="rgb(254,176,54)" fg:x="191025" fg:w="73"/><text x="36.9587%" y="639.50"></text></g><g><title>inode_get_bytes (80 samples, 0.02%)</title><rect x="36.7310%" y="629" width="0.0154%" height="15" fill="rgb(210,32,8)" fg:x="191141" fg:w="80"/><text x="36.9810%" y="639.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="36.7354%" y="613" width="0.0110%" height="15" fill="rgb(235,52,38)" fg:x="191164" fg:w="57"/><text x="36.9854%" y="623.50"></text></g><g><title>fill_stack_inode_item (156 samples, 0.03%)</title><rect x="36.7227%" y="645" width="0.0300%" height="15" fill="rgb(231,4,44)" fg:x="191098" fg:w="156"/><text x="36.9727%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (657 samples, 0.13%)</title><rect x="36.6466%" y="661" width="0.1263%" height="15" fill="rgb(249,2,32)" fg:x="190702" fg:w="657"/><text x="36.8966%" y="671.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="36.7623%" y="645" width="0.0106%" height="15" fill="rgb(224,65,26)" fg:x="191304" fg:w="55"/><text x="37.0123%" y="655.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="36.7781%" y="645" width="0.0113%" height="15" fill="rgb(250,73,40)" fg:x="191386" fg:w="59"/><text x="37.0281%" y="655.50"></text></g><g><title>btrfs_update_inode (941 samples, 0.18%)</title><rect x="36.6316%" y="677" width="0.1808%" height="15" fill="rgb(253,177,16)" fg:x="190624" fg:w="941"/><text x="36.8816%" y="687.50"></text></g><g><title>btrfs_update_root_times (206 samples, 0.04%)</title><rect x="36.7729%" y="661" width="0.0396%" height="15" fill="rgb(217,32,34)" fg:x="191359" fg:w="206"/><text x="37.0229%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (120 samples, 0.02%)</title><rect x="36.7894%" y="645" width="0.0231%" height="15" fill="rgb(212,7,10)" fg:x="191445" fg:w="120"/><text x="37.0394%" y="655.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="36.8003%" y="629" width="0.0121%" height="15" fill="rgb(245,89,8)" fg:x="191502" fg:w="63"/><text x="37.0503%" y="639.50"></text></g><g><title>btrfs_add_link (32,117 samples, 6.17%)</title><rect x="30.6527%" y="693" width="6.1718%" height="15" fill="rgb(237,16,53)" fg:x="159511" fg:w="32117"/><text x="30.9027%" y="703.50">btrfs_ad..</text></g><g><title>btrfs_balance_delayed_items (62 samples, 0.01%)</title><rect x="36.8290%" y="677" width="0.0119%" height="15" fill="rgb(250,204,30)" fg:x="191651" fg:w="62"/><text x="37.0790%" y="687.50"></text></g><g><title>enqueue_task_fair (59 samples, 0.01%)</title><rect x="36.8682%" y="613" width="0.0113%" height="15" fill="rgb(208,77,27)" fg:x="191855" fg:w="59"/><text x="37.1182%" y="623.50"></text></g><g><title>ttwu_do_activate (101 samples, 0.02%)</title><rect x="36.8668%" y="629" width="0.0194%" height="15" fill="rgb(250,204,28)" fg:x="191848" fg:w="101"/><text x="37.1168%" y="639.50"></text></g><g><title>btrfs_btree_balance_dirty (349 samples, 0.07%)</title><rect x="36.8246%" y="693" width="0.0671%" height="15" fill="rgb(244,63,21)" fg:x="191628" fg:w="349"/><text x="37.0746%" y="703.50"></text></g><g><title>queue_work_on (253 samples, 0.05%)</title><rect x="36.8430%" y="677" width="0.0486%" height="15" fill="rgb(236,85,44)" fg:x="191724" fg:w="253"/><text x="37.0930%" y="687.50"></text></g><g><title>__queue_work (242 samples, 0.05%)</title><rect x="36.8451%" y="661" width="0.0465%" height="15" fill="rgb(215,98,4)" fg:x="191735" fg:w="242"/><text x="37.0951%" y="671.50"></text></g><g><title>try_to_wake_up (186 samples, 0.04%)</title><rect x="36.8559%" y="645" width="0.0357%" height="15" fill="rgb(235,38,11)" fg:x="191791" fg:w="186"/><text x="37.1059%" y="655.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="36.9456%" y="597" width="0.0115%" height="15" fill="rgb(254,186,25)" fg:x="192258" fg:w="60"/><text x="37.1956%" y="607.50"></text></g><g><title>btrfs_iget (188 samples, 0.04%)</title><rect x="36.9372%" y="661" width="0.0361%" height="15" fill="rgb(225,55,31)" fg:x="192214" fg:w="188"/><text x="37.1872%" y="671.50"></text></g><g><title>iget5_locked (180 samples, 0.03%)</title><rect x="36.9387%" y="645" width="0.0346%" height="15" fill="rgb(211,15,21)" fg:x="192222" fg:w="180"/><text x="37.1887%" y="655.50"></text></g><g><title>ilookup5 (178 samples, 0.03%)</title><rect x="36.9391%" y="629" width="0.0342%" height="15" fill="rgb(215,187,41)" fg:x="192224" fg:w="178"/><text x="37.1891%" y="639.50"></text></g><g><title>ilookup5_nowait (163 samples, 0.03%)</title><rect x="36.9420%" y="613" width="0.0313%" height="15" fill="rgb(248,69,32)" fg:x="192239" fg:w="163"/><text x="37.1920%" y="623.50"></text></g><g><title>find_inode (84 samples, 0.02%)</title><rect x="36.9572%" y="597" width="0.0161%" height="15" fill="rgb(252,102,52)" fg:x="192318" fg:w="84"/><text x="37.2072%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (86 samples, 0.02%)</title><rect x="36.9948%" y="597" width="0.0165%" height="15" fill="rgb(253,140,32)" fg:x="192514" fg:w="86"/><text x="37.2448%" y="607.50"></text></g><g><title>__radix_tree_lookup (71 samples, 0.01%)</title><rect x="37.0254%" y="565" width="0.0136%" height="15" fill="rgb(216,56,42)" fg:x="192673" fg:w="71"/><text x="37.2754%" y="575.50"></text></g><g><title>find_extent_buffer (118 samples, 0.02%)</title><rect x="37.0217%" y="581" width="0.0227%" height="15" fill="rgb(216,184,14)" fg:x="192654" fg:w="118"/><text x="37.2717%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (183 samples, 0.04%)</title><rect x="37.0113%" y="597" width="0.0352%" height="15" fill="rgb(237,187,27)" fg:x="192600" fg:w="183"/><text x="37.2613%" y="607.50"></text></g><g><title>btrfs_search_slot (315 samples, 0.06%)</title><rect x="36.9879%" y="613" width="0.0605%" height="15" fill="rgb(219,65,3)" fg:x="192478" fg:w="315"/><text x="37.2379%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (329 samples, 0.06%)</title><rect x="36.9875%" y="629" width="0.0632%" height="15" fill="rgb(245,83,25)" fg:x="192476" fg:w="329"/><text x="37.2375%" y="639.50"></text></g><g><title>btrfs_release_path (57 samples, 0.01%)</title><rect x="37.0507%" y="629" width="0.0110%" height="15" fill="rgb(214,205,45)" fg:x="192805" fg:w="57"/><text x="37.3007%" y="639.50"></text></g><g><title>btrfs_check_ref_name_override (515 samples, 0.10%)</title><rect x="36.9821%" y="645" width="0.0990%" height="15" fill="rgb(241,20,18)" fg:x="192448" fg:w="515"/><text x="37.2321%" y="655.50"></text></g><g><title>btrfs_lookup_inode (71 samples, 0.01%)</title><rect x="37.0874%" y="613" width="0.0136%" height="15" fill="rgb(232,163,23)" fg:x="192996" fg:w="71"/><text x="37.3374%" y="623.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.01%)</title><rect x="37.0876%" y="597" width="0.0135%" height="15" fill="rgb(214,5,46)" fg:x="192997" fg:w="70"/><text x="37.3376%" y="607.50"></text></g><g><title>__btrfs_update_delayed_inode (102 samples, 0.02%)</title><rect x="37.0849%" y="629" width="0.0196%" height="15" fill="rgb(229,78,17)" fg:x="192983" fg:w="102"/><text x="37.3349%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (137 samples, 0.03%)</title><rect x="37.0811%" y="645" width="0.0263%" height="15" fill="rgb(248,89,10)" fg:x="192963" fg:w="137"/><text x="37.3311%" y="655.50"></text></g><g><title>btrfs_lookup_inode (56 samples, 0.01%)</title><rect x="37.1159%" y="613" width="0.0108%" height="15" fill="rgb(248,54,15)" fg:x="193144" fg:w="56"/><text x="37.3659%" y="623.50"></text></g><g><title>btrfs_search_slot (55 samples, 0.01%)</title><rect x="37.1161%" y="597" width="0.0106%" height="15" fill="rgb(223,116,6)" fg:x="193145" fg:w="55"/><text x="37.3661%" y="607.50"></text></g><g><title>__btrfs_update_delayed_inode (71 samples, 0.01%)</title><rect x="37.1151%" y="629" width="0.0136%" height="15" fill="rgb(205,125,38)" fg:x="193140" fg:w="71"/><text x="37.3651%" y="639.50"></text></g><g><title>btrfs_search_slot (82 samples, 0.02%)</title><rect x="37.1347%" y="597" width="0.0158%" height="15" fill="rgb(251,78,38)" fg:x="193242" fg:w="82"/><text x="37.3847%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (187 samples, 0.04%)</title><rect x="37.1345%" y="613" width="0.0359%" height="15" fill="rgb(253,78,28)" fg:x="193241" fg:w="187"/><text x="37.3845%" y="623.50"></text></g><g><title>setup_items_for_insert (104 samples, 0.02%)</title><rect x="37.1505%" y="597" width="0.0200%" height="15" fill="rgb(209,120,3)" fg:x="193324" fg:w="104"/><text x="37.4005%" y="607.50"></text></g><g><title>btrfs_insert_delayed_items (212 samples, 0.04%)</title><rect x="37.1326%" y="629" width="0.0407%" height="15" fill="rgb(238,229,9)" fg:x="193231" fg:w="212"/><text x="37.3826%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_items (365 samples, 0.07%)</title><rect x="37.1074%" y="645" width="0.0701%" height="15" fill="rgb(253,159,18)" fg:x="193100" fg:w="365"/><text x="37.3574%" y="655.50"></text></g><g><title>btrfs_release_path (86 samples, 0.02%)</title><rect x="37.1904%" y="645" width="0.0165%" height="15" fill="rgb(244,42,34)" fg:x="193532" fg:w="86"/><text x="37.4404%" y="655.50"></text></g><g><title>__radix_tree_lookup (80 samples, 0.02%)</title><rect x="37.2410%" y="565" width="0.0154%" height="15" fill="rgb(224,8,7)" fg:x="193795" fg:w="80"/><text x="37.4910%" y="575.50"></text></g><g><title>alloc_extent_buffer (163 samples, 0.03%)</title><rect x="37.2343%" y="597" width="0.0313%" height="15" fill="rgb(210,201,45)" fg:x="193760" fg:w="163"/><text x="37.4843%" y="607.50"></text></g><g><title>find_extent_buffer (155 samples, 0.03%)</title><rect x="37.2358%" y="581" width="0.0298%" height="15" fill="rgb(252,185,21)" fg:x="193768" fg:w="155"/><text x="37.4858%" y="591.50"></text></g><g><title>btrfs_read_node_slot (287 samples, 0.06%)</title><rect x="37.2212%" y="629" width="0.0552%" height="15" fill="rgb(223,131,1)" fg:x="193692" fg:w="287"/><text x="37.4712%" y="639.50"></text></g><g><title>read_tree_block (224 samples, 0.04%)</title><rect x="37.2333%" y="613" width="0.0430%" height="15" fill="rgb(245,141,16)" fg:x="193755" fg:w="224"/><text x="37.4833%" y="623.50"></text></g><g><title>btree_read_extent_buffer_pages (56 samples, 0.01%)</title><rect x="37.2656%" y="597" width="0.0108%" height="15" fill="rgb(229,55,45)" fg:x="193923" fg:w="56"/><text x="37.5156%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.01%)</title><rect x="37.2765%" y="629" width="0.0146%" height="15" fill="rgb(208,92,15)" fg:x="193980" fg:w="76"/><text x="37.5265%" y="639.50"></text></g><g><title>btrfs_set_lock_blocking_read (54 samples, 0.01%)</title><rect x="37.2808%" y="613" width="0.0104%" height="15" fill="rgb(234,185,47)" fg:x="194002" fg:w="54"/><text x="37.5308%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (196 samples, 0.04%)</title><rect x="37.2946%" y="629" width="0.0377%" height="15" fill="rgb(253,104,50)" fg:x="194074" fg:w="196"/><text x="37.5446%" y="639.50"></text></g><g><title>btrfs_search_forward (723 samples, 0.14%)</title><rect x="37.2070%" y="645" width="0.1389%" height="15" fill="rgb(205,70,7)" fg:x="193618" fg:w="723"/><text x="37.4570%" y="655.50"></text></g><g><title>btrfs_search_slot (66 samples, 0.01%)</title><rect x="37.3459%" y="645" width="0.0127%" height="15" fill="rgb(240,178,43)" fg:x="194341" fg:w="66"/><text x="37.5959%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (92 samples, 0.02%)</title><rect x="37.4045%" y="597" width="0.0177%" height="15" fill="rgb(214,112,2)" fg:x="194646" fg:w="92"/><text x="37.6545%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (75 samples, 0.01%)</title><rect x="37.4222%" y="597" width="0.0144%" height="15" fill="rgb(206,46,17)" fg:x="194738" fg:w="75"/><text x="37.6722%" y="607.50"></text></g><g><title>split_leaf (86 samples, 0.02%)</title><rect x="37.4378%" y="597" width="0.0165%" height="15" fill="rgb(225,220,16)" fg:x="194819" fg:w="86"/><text x="37.6878%" y="607.50"></text></g><g><title>btrfs_search_slot (412 samples, 0.08%)</title><rect x="37.3778%" y="613" width="0.0792%" height="15" fill="rgb(238,65,40)" fg:x="194507" fg:w="412"/><text x="37.6278%" y="623.50"></text></g><g><title>btrfs_get_token_32 (365 samples, 0.07%)</title><rect x="37.4860%" y="597" width="0.0701%" height="15" fill="rgb(230,151,21)" fg:x="195070" fg:w="365"/><text x="37.7360%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (95 samples, 0.02%)</title><rect x="37.5379%" y="581" width="0.0183%" height="15" fill="rgb(218,58,49)" fg:x="195340" fg:w="95"/><text x="37.7879%" y="591.50"></text></g><g><title>btrfs_set_token_32 (412 samples, 0.08%)</title><rect x="37.5669%" y="597" width="0.0792%" height="15" fill="rgb(219,179,14)" fg:x="195491" fg:w="412"/><text x="37.8169%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (73 samples, 0.01%)</title><rect x="37.6320%" y="581" width="0.0140%" height="15" fill="rgb(223,72,1)" fg:x="195830" fg:w="73"/><text x="37.8820%" y="591.50"></text></g><g><title>memcpy_extent_buffer (142 samples, 0.03%)</title><rect x="37.6491%" y="597" width="0.0273%" height="15" fill="rgb(238,126,10)" fg:x="195919" fg:w="142"/><text x="37.8991%" y="607.50"></text></g><g><title>memmove (89 samples, 0.02%)</title><rect x="37.6593%" y="581" width="0.0171%" height="15" fill="rgb(224,206,38)" fg:x="195972" fg:w="89"/><text x="37.9093%" y="591.50"></text></g><g><title>memmove_extent_buffer (106 samples, 0.02%)</title><rect x="37.6764%" y="597" width="0.0204%" height="15" fill="rgb(212,201,54)" fg:x="196061" fg:w="106"/><text x="37.9264%" y="607.50"></text></g><g><title>memmove (86 samples, 0.02%)</title><rect x="37.6803%" y="581" width="0.0165%" height="15" fill="rgb(218,154,48)" fg:x="196081" fg:w="86"/><text x="37.9303%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (1,690 samples, 0.32%)</title><rect x="37.3772%" y="629" width="0.3248%" height="15" fill="rgb(232,93,24)" fg:x="194504" fg:w="1690"/><text x="37.6272%" y="639.50"></text></g><g><title>setup_items_for_insert (1,275 samples, 0.25%)</title><rect x="37.4570%" y="613" width="0.2450%" height="15" fill="rgb(245,30,21)" fg:x="194919" fg:w="1275"/><text x="37.7070%" y="623.50"></text></g><g><title>btrfs_set_token_64 (56 samples, 0.01%)</title><rect x="37.7299%" y="613" width="0.0108%" height="15" fill="rgb(242,148,29)" fg:x="196339" fg:w="56"/><text x="37.9799%" y="623.50"></text></g><g><title>fill_inode_item (124 samples, 0.02%)</title><rect x="37.7193%" y="629" width="0.0238%" height="15" fill="rgb(244,153,54)" fg:x="196284" fg:w="124"/><text x="37.9693%" y="639.50"></text></g><g><title>copy_items.isra.0 (2,047 samples, 0.39%)</title><rect x="37.3586%" y="645" width="0.3934%" height="15" fill="rgb(252,87,22)" fg:x="194407" fg:w="2047"/><text x="37.6086%" y="655.50"></text></g><g><title>btrfs_get_token_32 (339 samples, 0.07%)</title><rect x="37.7858%" y="613" width="0.0651%" height="15" fill="rgb(210,51,29)" fg:x="196630" fg:w="339"/><text x="38.0358%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (56 samples, 0.01%)</title><rect x="37.8402%" y="597" width="0.0108%" height="15" fill="rgb(242,136,47)" fg:x="196913" fg:w="56"/><text x="38.0902%" y="607.50"></text></g><g><title>btrfs_set_token_32 (324 samples, 0.06%)</title><rect x="37.8538%" y="613" width="0.0623%" height="15" fill="rgb(238,68,4)" fg:x="196984" fg:w="324"/><text x="38.1038%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (63 samples, 0.01%)</title><rect x="37.9040%" y="597" width="0.0121%" height="15" fill="rgb(242,161,30)" fg:x="197245" fg:w="63"/><text x="38.1540%" y="607.50"></text></g><g><title>memmove_extent_buffer (304 samples, 0.06%)</title><rect x="37.9289%" y="613" width="0.0584%" height="15" fill="rgb(218,58,44)" fg:x="197375" fg:w="304"/><text x="38.1789%" y="623.50"></text></g><g><title>memmove (244 samples, 0.05%)</title><rect x="37.9405%" y="597" width="0.0469%" height="15" fill="rgb(252,125,32)" fg:x="197435" fg:w="244"/><text x="38.1905%" y="607.50"></text></g><g><title>btrfs_del_items (1,214 samples, 0.23%)</title><rect x="37.7545%" y="629" width="0.2333%" height="15" fill="rgb(219,178,0)" fg:x="196467" fg:w="1214"/><text x="38.0045%" y="639.50"></text></g><g><title>btrfs_release_path (64 samples, 0.01%)</title><rect x="37.9877%" y="629" width="0.0123%" height="15" fill="rgb(213,152,7)" fg:x="197681" fg:w="64"/><text x="38.2377%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (126 samples, 0.02%)</title><rect x="38.0258%" y="613" width="0.0242%" height="15" fill="rgb(249,109,34)" fg:x="197879" fg:w="126"/><text x="38.2758%" y="623.50"></text></g><g><title>find_extent_buffer (64 samples, 0.01%)</title><rect x="38.0558%" y="597" width="0.0123%" height="15" fill="rgb(232,96,21)" fg:x="198035" fg:w="64"/><text x="38.3058%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (99 samples, 0.02%)</title><rect x="38.0500%" y="613" width="0.0190%" height="15" fill="rgb(228,27,39)" fg:x="198005" fg:w="99"/><text x="38.3000%" y="623.50"></text></g><g><title>btrfs_search_slot (385 samples, 0.07%)</title><rect x="38.0000%" y="629" width="0.0740%" height="15" fill="rgb(211,182,52)" fg:x="197745" fg:w="385"/><text x="38.2500%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (78 samples, 0.01%)</title><rect x="38.0740%" y="629" width="0.0150%" height="15" fill="rgb(234,178,38)" fg:x="198130" fg:w="78"/><text x="38.3240%" y="639.50"></text></g><g><title>drop_objectid_items (1,776 samples, 0.34%)</title><rect x="37.7520%" y="645" width="0.3413%" height="15" fill="rgb(221,111,3)" fg:x="196454" fg:w="1776"/><text x="38.0020%" y="655.50"></text></g><g><title>btrfs_read_node_slot (61 samples, 0.01%)</title><rect x="38.1716%" y="597" width="0.0117%" height="15" fill="rgb(228,175,21)" fg:x="198638" fg:w="61"/><text x="38.4216%" y="607.50"></text></g><g><title>btrfs_search_forward (159 samples, 0.03%)</title><rect x="38.1676%" y="613" width="0.0306%" height="15" fill="rgb(228,174,43)" fg:x="198617" fg:w="159"/><text x="38.4176%" y="623.50"></text></g><g><title>btrfs_search_slot (120 samples, 0.02%)</title><rect x="38.1982%" y="613" width="0.0231%" height="15" fill="rgb(211,191,0)" fg:x="198776" fg:w="120"/><text x="38.4482%" y="623.50"></text></g><g><title>btrfs_search_slot (85 samples, 0.02%)</title><rect x="38.2228%" y="581" width="0.0163%" height="15" fill="rgb(253,117,3)" fg:x="198904" fg:w="85"/><text x="38.4728%" y="591.50"></text></g><g><title>btrfs_get_token_32 (131 samples, 0.03%)</title><rect x="38.2476%" y="565" width="0.0252%" height="15" fill="rgb(241,127,19)" fg:x="199033" fg:w="131"/><text x="38.4976%" y="575.50"></text></g><g><title>btrfs_set_token_32 (110 samples, 0.02%)</title><rect x="38.2750%" y="565" width="0.0211%" height="15" fill="rgb(218,103,12)" fg:x="199176" fg:w="110"/><text x="38.5250%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (447 samples, 0.09%)</title><rect x="38.2228%" y="597" width="0.0859%" height="15" fill="rgb(236,214,43)" fg:x="198904" fg:w="447"/><text x="38.4728%" y="607.50"></text></g><g><title>setup_items_for_insert (362 samples, 0.07%)</title><rect x="38.2391%" y="581" width="0.0696%" height="15" fill="rgb(244,144,19)" fg:x="198989" fg:w="362"/><text x="38.4891%" y="591.50"></text></g><g><title>insert_dir_log_key (471 samples, 0.09%)</title><rect x="38.2212%" y="613" width="0.0905%" height="15" fill="rgb(246,188,10)" fg:x="198896" fg:w="471"/><text x="38.4712%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (94 samples, 0.02%)</title><rect x="38.4049%" y="581" width="0.0181%" height="15" fill="rgb(212,193,33)" fg:x="199852" fg:w="94"/><text x="38.6549%" y="591.50"></text></g><g><title>memset_erms (144 samples, 0.03%)</title><rect x="38.4249%" y="581" width="0.0277%" height="15" fill="rgb(241,51,29)" fg:x="199956" fg:w="144"/><text x="38.6749%" y="591.50"></text></g><g><title>__kmalloc (685 samples, 0.13%)</title><rect x="38.3448%" y="597" width="0.1316%" height="15" fill="rgb(211,58,19)" fg:x="199539" fg:w="685"/><text x="38.5948%" y="607.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (124 samples, 0.02%)</title><rect x="38.4526%" y="581" width="0.0238%" height="15" fill="rgb(229,111,26)" fg:x="200100" fg:w="124"/><text x="38.7026%" y="591.50"></text></g><g><title>btrfs_get_32 (203 samples, 0.04%)</title><rect x="38.4764%" y="597" width="0.0390%" height="15" fill="rgb(213,115,40)" fg:x="200224" fg:w="203"/><text x="38.7264%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (167 samples, 0.03%)</title><rect x="38.5154%" y="597" width="0.0321%" height="15" fill="rgb(209,56,44)" fg:x="200427" fg:w="167"/><text x="38.7654%" y="607.50"></text></g><g><title>setup_items_for_insert (120 samples, 0.02%)</title><rect x="38.5245%" y="581" width="0.0231%" height="15" fill="rgb(230,108,32)" fg:x="200474" fg:w="120"/><text x="38.7745%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (79 samples, 0.02%)</title><rect x="38.5610%" y="581" width="0.0152%" height="15" fill="rgb(216,165,31)" fg:x="200664" fg:w="79"/><text x="38.8110%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (196 samples, 0.04%)</title><rect x="38.5773%" y="581" width="0.0377%" height="15" fill="rgb(218,122,21)" fg:x="200749" fg:w="196"/><text x="38.8273%" y="591.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.03%)</title><rect x="38.5856%" y="565" width="0.0294%" height="15" fill="rgb(223,224,47)" fg:x="200792" fg:w="153"/><text x="38.8356%" y="575.50"></text></g><g><title>btrfs_release_path (530 samples, 0.10%)</title><rect x="38.5477%" y="597" width="0.1018%" height="15" fill="rgb(238,102,44)" fg:x="200595" fg:w="530"/><text x="38.7977%" y="607.50"></text></g><g><title>release_extent_buffer (180 samples, 0.03%)</title><rect x="38.6150%" y="581" width="0.0346%" height="15" fill="rgb(236,46,40)" fg:x="200945" fg:w="180"/><text x="38.8650%" y="591.50"></text></g><g><title>_raw_read_lock (79 samples, 0.02%)</title><rect x="38.7030%" y="549" width="0.0152%" height="15" fill="rgb(247,202,50)" fg:x="201403" fg:w="79"/><text x="38.9530%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (107 samples, 0.02%)</title><rect x="38.6978%" y="565" width="0.0206%" height="15" fill="rgb(209,99,20)" fg:x="201376" fg:w="107"/><text x="38.9478%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (229 samples, 0.04%)</title><rect x="38.6940%" y="581" width="0.0440%" height="15" fill="rgb(252,27,34)" fg:x="201356" fg:w="229"/><text x="38.9440%" y="591.50"></text></g><g><title>btrfs_root_node (102 samples, 0.02%)</title><rect x="38.7184%" y="565" width="0.0196%" height="15" fill="rgb(215,206,23)" fg:x="201483" fg:w="102"/><text x="38.9684%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (226 samples, 0.04%)</title><rect x="38.7407%" y="581" width="0.0434%" height="15" fill="rgb(212,135,36)" fg:x="201599" fg:w="226"/><text x="38.9907%" y="591.50"></text></g><g><title>btrfs_set_lock_blocking_read (155 samples, 0.03%)</title><rect x="38.7543%" y="565" width="0.0298%" height="15" fill="rgb(240,189,1)" fg:x="201670" fg:w="155"/><text x="39.0043%" y="575.50"></text></g><g><title>btrfs_tree_read_lock_atomic (94 samples, 0.02%)</title><rect x="38.7841%" y="581" width="0.0181%" height="15" fill="rgb(242,56,20)" fg:x="201825" fg:w="94"/><text x="39.0341%" y="591.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="38.7887%" y="565" width="0.0135%" height="15" fill="rgb(247,132,33)" fg:x="201849" fg:w="70"/><text x="39.0387%" y="575.50"></text></g><g><title>btrfs_tree_read_unlock (76 samples, 0.01%)</title><rect x="38.8021%" y="581" width="0.0146%" height="15" fill="rgb(208,149,11)" fg:x="201919" fg:w="76"/><text x="39.0521%" y="591.50"></text></g><g><title>generic_bin_search.constprop.0 (771 samples, 0.15%)</title><rect x="38.8168%" y="581" width="0.1482%" height="15" fill="rgb(211,33,11)" fg:x="201995" fg:w="771"/><text x="39.0668%" y="591.50"></text></g><g><title>btrfs_get_64 (92 samples, 0.02%)</title><rect x="38.9914%" y="565" width="0.0177%" height="15" fill="rgb(221,29,38)" fg:x="202904" fg:w="92"/><text x="39.2414%" y="575.50"></text></g><g><title>__radix_tree_lookup (254 samples, 0.05%)</title><rect x="39.0308%" y="549" width="0.0488%" height="15" fill="rgb(206,182,49)" fg:x="203109" fg:w="254"/><text x="39.2808%" y="559.50"></text></g><g><title>mark_extent_buffer_accessed (184 samples, 0.04%)</title><rect x="39.0796%" y="549" width="0.0354%" height="15" fill="rgb(216,140,1)" fg:x="203363" fg:w="184"/><text x="39.3296%" y="559.50"></text></g><g><title>mark_page_accessed (94 samples, 0.02%)</title><rect x="39.0969%" y="533" width="0.0181%" height="15" fill="rgb(232,57,40)" fg:x="203453" fg:w="94"/><text x="39.3469%" y="543.50"></text></g><g><title>find_extent_buffer (526 samples, 0.10%)</title><rect x="39.0156%" y="565" width="0.1011%" height="15" fill="rgb(224,186,18)" fg:x="203030" fg:w="526"/><text x="39.2656%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (902 samples, 0.17%)</title><rect x="38.9649%" y="581" width="0.1733%" height="15" fill="rgb(215,121,11)" fg:x="202766" fg:w="902"/><text x="39.2149%" y="591.50"></text></g><g><title>read_extent_buffer (112 samples, 0.02%)</title><rect x="39.1167%" y="565" width="0.0215%" height="15" fill="rgb(245,147,10)" fg:x="203556" fg:w="112"/><text x="39.3667%" y="575.50"></text></g><g><title>btrfs_search_slot (2,630 samples, 0.51%)</title><rect x="38.6496%" y="597" width="0.5054%" height="15" fill="rgb(238,153,13)" fg:x="201125" fg:w="2630"/><text x="38.8996%" y="607.50"></text></g><g><title>unlock_up (87 samples, 0.02%)</title><rect x="39.1382%" y="581" width="0.0167%" height="15" fill="rgb(233,108,0)" fg:x="203668" fg:w="87"/><text x="39.3882%" y="591.50"></text></g><g><title>kfree (552 samples, 0.11%)</title><rect x="39.1553%" y="597" width="0.1061%" height="15" fill="rgb(212,157,17)" fg:x="203757" fg:w="552"/><text x="39.4053%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (104 samples, 0.02%)</title><rect x="39.2414%" y="581" width="0.0200%" height="15" fill="rgb(225,213,38)" fg:x="204205" fg:w="104"/><text x="39.4914%" y="591.50"></text></g><g><title>memcmp (335 samples, 0.06%)</title><rect x="39.2614%" y="597" width="0.0644%" height="15" fill="rgb(248,16,11)" fg:x="204309" fg:w="335"/><text x="39.5114%" y="607.50"></text></g><g><title>overwrite_item (5,630 samples, 1.08%)</title><rect x="38.3117%" y="613" width="1.0819%" height="15" fill="rgb(241,33,4)" fg:x="199367" fg:w="5630"/><text x="38.5617%" y="623.50"></text></g><g><title>read_extent_buffer (353 samples, 0.07%)</title><rect x="39.3258%" y="597" width="0.0678%" height="15" fill="rgb(222,26,43)" fg:x="204644" fg:w="353"/><text x="39.5758%" y="607.50"></text></g><g><title>log_directory_changes (6,899 samples, 1.33%)</title><rect x="38.1121%" y="645" width="1.3258%" height="15" fill="rgb(243,29,36)" fg:x="198328" fg:w="6899"/><text x="38.3621%" y="655.50"></text></g><g><title>log_dir_items (6,895 samples, 1.32%)</title><rect x="38.1128%" y="629" width="1.3250%" height="15" fill="rgb(241,9,27)" fg:x="198332" fg:w="6895"/><text x="38.3628%" y="639.50"></text></g><g><title>read_extent_buffer (230 samples, 0.04%)</title><rect x="39.3936%" y="613" width="0.0442%" height="15" fill="rgb(205,117,26)" fg:x="204997" fg:w="230"/><text x="39.6436%" y="623.50"></text></g><g><title>btrfs_log_inode (12,865 samples, 2.47%)</title><rect x="36.9733%" y="661" width="2.4722%" height="15" fill="rgb(209,80,39)" fg:x="192402" fg:w="12865"/><text x="37.2233%" y="671.50">bt..</text></g><g><title>free_extent_buffer.part.0 (93 samples, 0.02%)</title><rect x="39.4607%" y="645" width="0.0179%" height="15" fill="rgb(239,155,6)" fg:x="205346" fg:w="93"/><text x="39.7107%" y="655.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.01%)</title><rect x="39.4640%" y="629" width="0.0146%" height="15" fill="rgb(212,104,12)" fg:x="205363" fg:w="76"/><text x="39.7140%" y="639.50"></text></g><g><title>btrfs_release_path (245 samples, 0.05%)</title><rect x="39.4497%" y="661" width="0.0471%" height="15" fill="rgb(234,204,3)" fg:x="205289" fg:w="245"/><text x="39.6997%" y="671.50"></text></g><g><title>release_extent_buffer (95 samples, 0.02%)</title><rect x="39.4786%" y="645" width="0.0183%" height="15" fill="rgb(251,218,7)" fg:x="205439" fg:w="95"/><text x="39.7286%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (90 samples, 0.02%)</title><rect x="39.5280%" y="645" width="0.0173%" height="15" fill="rgb(221,81,32)" fg:x="205696" fg:w="90"/><text x="39.7780%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (91 samples, 0.02%)</title><rect x="39.5478%" y="645" width="0.0175%" height="15" fill="rgb(214,152,26)" fg:x="205799" fg:w="91"/><text x="39.7978%" y="655.50"></text></g><g><title>btrfs_set_lock_blocking_read (58 samples, 0.01%)</title><rect x="39.5541%" y="629" width="0.0111%" height="15" fill="rgb(223,22,3)" fg:x="205832" fg:w="58"/><text x="39.8041%" y="639.50"></text></g><g><title>_raw_read_lock (57 samples, 0.01%)</title><rect x="39.5668%" y="629" width="0.0110%" height="15" fill="rgb(207,174,7)" fg:x="205898" fg:w="57"/><text x="39.8168%" y="639.50"></text></g><g><title>btrfs_tree_read_lock_atomic (66 samples, 0.01%)</title><rect x="39.5652%" y="645" width="0.0127%" height="15" fill="rgb(224,19,52)" fg:x="205890" fg:w="66"/><text x="39.8152%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (62 samples, 0.01%)</title><rect x="39.5779%" y="645" width="0.0119%" height="15" fill="rgb(228,24,14)" fg:x="205956" fg:w="62"/><text x="39.8279%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (842 samples, 0.16%)</title><rect x="39.5898%" y="645" width="0.1618%" height="15" fill="rgb(230,153,43)" fg:x="206018" fg:w="842"/><text x="39.8398%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (55 samples, 0.01%)</title><rect x="39.7689%" y="629" width="0.0106%" height="15" fill="rgb(231,106,12)" fg:x="206950" fg:w="55"/><text x="40.0189%" y="639.50"></text></g><g><title>btrfs_get_64 (79 samples, 0.02%)</title><rect x="39.7795%" y="629" width="0.0152%" height="15" fill="rgb(215,92,2)" fg:x="207005" fg:w="79"/><text x="40.0295%" y="639.50"></text></g><g><title>btrfs_verify_level_key (91 samples, 0.02%)</title><rect x="39.7964%" y="629" width="0.0175%" height="15" fill="rgb(249,143,25)" fg:x="207093" fg:w="91"/><text x="40.0464%" y="639.50"></text></g><g><title>__radix_tree_lookup (344 samples, 0.07%)</title><rect x="39.8393%" y="613" width="0.0661%" height="15" fill="rgb(252,7,35)" fg:x="207316" fg:w="344"/><text x="40.0893%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (200 samples, 0.04%)</title><rect x="39.9054%" y="613" width="0.0384%" height="15" fill="rgb(216,69,40)" fg:x="207660" fg:w="200"/><text x="40.1554%" y="623.50"></text></g><g><title>mark_page_accessed (128 samples, 0.02%)</title><rect x="39.9192%" y="597" width="0.0246%" height="15" fill="rgb(240,36,33)" fg:x="207732" fg:w="128"/><text x="40.1692%" y="607.50"></text></g><g><title>find_extent_buffer (679 samples, 0.13%)</title><rect x="39.8139%" y="629" width="0.1305%" height="15" fill="rgb(231,128,14)" fg:x="207184" fg:w="679"/><text x="40.0639%" y="639.50"></text></g><g><title>read_extent_buffer (85 samples, 0.02%)</title><rect x="39.9444%" y="629" width="0.0163%" height="15" fill="rgb(245,143,14)" fg:x="207863" fg:w="85"/><text x="40.1944%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,093 samples, 0.21%)</title><rect x="39.7516%" y="645" width="0.2100%" height="15" fill="rgb(222,130,28)" fg:x="206860" fg:w="1093"/><text x="40.0016%" y="655.50"></text></g><g><title>btrfs_search_slot (2,501 samples, 0.48%)</title><rect x="39.4968%" y="661" width="0.4806%" height="15" fill="rgb(212,10,48)" fg:x="205534" fg:w="2501"/><text x="39.7468%" y="671.50"></text></g><g><title>unlock_up (82 samples, 0.02%)</title><rect x="39.9617%" y="645" width="0.0158%" height="15" fill="rgb(254,118,45)" fg:x="207953" fg:w="82"/><text x="40.2117%" y="655.50"></text></g><g><title>check_parent_dirs_for_sync (112 samples, 0.02%)</title><rect x="39.9774%" y="661" width="0.0215%" height="15" fill="rgb(228,6,45)" fg:x="208035" fg:w="112"/><text x="40.2274%" y="671.50"></text></g><g><title>alloc_extent_buffer (70 samples, 0.01%)</title><rect x="40.0568%" y="581" width="0.0135%" height="15" fill="rgb(241,18,35)" fg:x="208448" fg:w="70"/><text x="40.3068%" y="591.50"></text></g><g><title>find_extent_buffer (69 samples, 0.01%)</title><rect x="40.0570%" y="565" width="0.0133%" height="15" fill="rgb(227,214,53)" fg:x="208449" fg:w="69"/><text x="40.3070%" y="575.50"></text></g><g><title>btrfs_read_node_slot (106 samples, 0.02%)</title><rect x="40.0533%" y="613" width="0.0204%" height="15" fill="rgb(224,107,51)" fg:x="208430" fg:w="106"/><text x="40.3033%" y="623.50"></text></g><g><title>read_tree_block (90 samples, 0.02%)</title><rect x="40.0564%" y="597" width="0.0173%" height="15" fill="rgb(248,60,28)" fg:x="208446" fg:w="90"/><text x="40.3064%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (64 samples, 0.01%)</title><rect x="40.0781%" y="613" width="0.0123%" height="15" fill="rgb(249,101,23)" fg:x="208559" fg:w="64"/><text x="40.3281%" y="623.50"></text></g><g><title>btrfs_search_forward (246 samples, 0.05%)</title><rect x="40.0466%" y="629" width="0.0473%" height="15" fill="rgb(228,51,19)" fg:x="208395" fg:w="246"/><text x="40.2966%" y="639.50"></text></g><g><title>btrfs_search_slot (131 samples, 0.03%)</title><rect x="40.0987%" y="597" width="0.0252%" height="15" fill="rgb(213,20,6)" fg:x="208666" fg:w="131"/><text x="40.3487%" y="607.50"></text></g><g><title>btrfs_get_token_32 (128 samples, 0.02%)</title><rect x="40.1333%" y="581" width="0.0246%" height="15" fill="rgb(212,124,10)" fg:x="208846" fg:w="128"/><text x="40.3833%" y="591.50"></text></g><g><title>btrfs_set_token_32 (138 samples, 0.03%)</title><rect x="40.1608%" y="581" width="0.0265%" height="15" fill="rgb(248,3,40)" fg:x="208989" fg:w="138"/><text x="40.4108%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (546 samples, 0.10%)</title><rect x="40.0985%" y="613" width="0.1049%" height="15" fill="rgb(223,178,23)" fg:x="208665" fg:w="546"/><text x="40.3485%" y="623.50"></text></g><g><title>setup_items_for_insert (414 samples, 0.08%)</title><rect x="40.1239%" y="597" width="0.0796%" height="15" fill="rgb(240,132,45)" fg:x="208797" fg:w="414"/><text x="40.3739%" y="607.50"></text></g><g><title>copy_items.isra.0 (647 samples, 0.12%)</title><rect x="40.0939%" y="629" width="0.1243%" height="15" fill="rgb(245,164,36)" fg:x="208641" fg:w="647"/><text x="40.3439%" y="639.50"></text></g><g><title>btrfs_get_token_32 (153 samples, 0.03%)</title><rect x="40.2294%" y="597" width="0.0294%" height="15" fill="rgb(231,188,53)" fg:x="209346" fg:w="153"/><text x="40.4794%" y="607.50"></text></g><g><title>btrfs_set_token_32 (117 samples, 0.02%)</title><rect x="40.2597%" y="597" width="0.0225%" height="15" fill="rgb(237,198,39)" fg:x="209504" fg:w="117"/><text x="40.5097%" y="607.50"></text></g><g><title>btrfs_del_items (439 samples, 0.08%)</title><rect x="40.2194%" y="613" width="0.0844%" height="15" fill="rgb(223,120,35)" fg:x="209294" fg:w="439"/><text x="40.4694%" y="623.50"></text></g><g><title>memmove_extent_buffer (81 samples, 0.02%)</title><rect x="40.2882%" y="597" width="0.0156%" height="15" fill="rgb(253,107,49)" fg:x="209652" fg:w="81"/><text x="40.5382%" y="607.50"></text></g><g><title>memmove (65 samples, 0.01%)</title><rect x="40.2912%" y="581" width="0.0125%" height="15" fill="rgb(216,44,31)" fg:x="209668" fg:w="65"/><text x="40.5412%" y="591.50"></text></g><g><title>btrfs_search_slot (121 samples, 0.02%)</title><rect x="40.3074%" y="613" width="0.0233%" height="15" fill="rgb(253,87,21)" fg:x="209752" fg:w="121"/><text x="40.5574%" y="623.50"></text></g><g><title>drop_objectid_items (614 samples, 0.12%)</title><rect x="40.2182%" y="629" width="0.1180%" height="15" fill="rgb(226,18,2)" fg:x="209288" fg:w="614"/><text x="40.4682%" y="639.50"></text></g><g><title>btrfs_release_path (85 samples, 0.02%)</title><rect x="40.3672%" y="597" width="0.0163%" height="15" fill="rgb(216,8,46)" fg:x="210063" fg:w="85"/><text x="40.6172%" y="607.50"></text></g><g><title>alloc_extent_buffer (59 samples, 0.01%)</title><rect x="40.4021%" y="549" width="0.0113%" height="15" fill="rgb(226,140,39)" fg:x="210245" fg:w="59"/><text x="40.6521%" y="559.50"></text></g><g><title>find_extent_buffer (54 samples, 0.01%)</title><rect x="40.4031%" y="533" width="0.0104%" height="15" fill="rgb(221,194,54)" fg:x="210250" fg:w="54"/><text x="40.6531%" y="543.50"></text></g><g><title>btrfs_read_node_slot (131 samples, 0.03%)</title><rect x="40.3948%" y="581" width="0.0252%" height="15" fill="rgb(213,92,11)" fg:x="210207" fg:w="131"/><text x="40.6448%" y="591.50"></text></g><g><title>read_tree_block (97 samples, 0.02%)</title><rect x="40.4014%" y="565" width="0.0186%" height="15" fill="rgb(229,162,46)" fg:x="210241" fg:w="97"/><text x="40.6514%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (90 samples, 0.02%)</title><rect x="40.4310%" y="581" width="0.0173%" height="15" fill="rgb(214,111,36)" fg:x="210395" fg:w="90"/><text x="40.6810%" y="591.50"></text></g><g><title>btrfs_search_forward (378 samples, 0.07%)</title><rect x="40.3835%" y="597" width="0.0726%" height="15" fill="rgb(207,6,21)" fg:x="210148" fg:w="378"/><text x="40.6335%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (87 samples, 0.02%)</title><rect x="40.4711%" y="581" width="0.0167%" height="15" fill="rgb(213,127,38)" fg:x="210604" fg:w="87"/><text x="40.7211%" y="591.50"></text></g><g><title>find_extent_buffer (57 samples, 0.01%)</title><rect x="40.4953%" y="565" width="0.0110%" height="15" fill="rgb(238,118,32)" fg:x="210730" fg:w="57"/><text x="40.7453%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (107 samples, 0.02%)</title><rect x="40.4878%" y="581" width="0.0206%" height="15" fill="rgb(240,139,39)" fg:x="210691" fg:w="107"/><text x="40.7378%" y="591.50"></text></g><g><title>btrfs_search_slot (288 samples, 0.06%)</title><rect x="40.4561%" y="597" width="0.0553%" height="15" fill="rgb(235,10,37)" fg:x="210526" fg:w="288"/><text x="40.7061%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (58 samples, 0.01%)</title><rect x="40.5386%" y="549" width="0.0111%" height="15" fill="rgb(249,171,38)" fg:x="210955" fg:w="58"/><text x="40.7886%" y="559.50"></text></g><g><title>btrfs_search_slot (199 samples, 0.04%)</title><rect x="40.5130%" y="565" width="0.0382%" height="15" fill="rgb(242,144,32)" fg:x="210822" fg:w="199"/><text x="40.7630%" y="575.50"></text></g><g><title>btrfs_get_token_32 (252 samples, 0.05%)</title><rect x="40.5664%" y="549" width="0.0484%" height="15" fill="rgb(217,117,21)" fg:x="211100" fg:w="252"/><text x="40.8164%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (78 samples, 0.01%)</title><rect x="40.5999%" y="533" width="0.0150%" height="15" fill="rgb(249,87,1)" fg:x="211274" fg:w="78"/><text x="40.8499%" y="543.50"></text></g><g><title>btrfs_set_token_32 (285 samples, 0.05%)</title><rect x="40.6208%" y="549" width="0.0548%" height="15" fill="rgb(248,196,48)" fg:x="211383" fg:w="285"/><text x="40.8708%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (62 samples, 0.01%)</title><rect x="40.6637%" y="533" width="0.0119%" height="15" fill="rgb(251,206,33)" fg:x="211606" fg:w="62"/><text x="40.9137%" y="543.50"></text></g><g><title>memcpy_extent_buffer (67 samples, 0.01%)</title><rect x="40.6760%" y="549" width="0.0129%" height="15" fill="rgb(232,141,28)" fg:x="211670" fg:w="67"/><text x="40.9260%" y="559.50"></text></g><g><title>memmove_extent_buffer (75 samples, 0.01%)</title><rect x="40.6888%" y="549" width="0.0144%" height="15" fill="rgb(209,167,14)" fg:x="211737" fg:w="75"/><text x="40.9388%" y="559.50"></text></g><g><title>memmove (56 samples, 0.01%)</title><rect x="40.6925%" y="533" width="0.0108%" height="15" fill="rgb(225,11,50)" fg:x="211756" fg:w="56"/><text x="40.9425%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (999 samples, 0.19%)</title><rect x="40.5126%" y="581" width="0.1920%" height="15" fill="rgb(209,50,20)" fg:x="210820" fg:w="999"/><text x="40.7626%" y="591.50"></text></g><g><title>setup_items_for_insert (798 samples, 0.15%)</title><rect x="40.5512%" y="565" width="0.1533%" height="15" fill="rgb(212,17,46)" fg:x="211021" fg:w="798"/><text x="40.8012%" y="575.50"></text></g><g><title>insert_dir_log_key (1,047 samples, 0.20%)</title><rect x="40.5115%" y="597" width="0.2012%" height="15" fill="rgb(216,101,39)" fg:x="210814" fg:w="1047"/><text x="40.7615%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (56 samples, 0.01%)</title><rect x="40.7576%" y="565" width="0.0108%" height="15" fill="rgb(212,228,48)" fg:x="212095" fg:w="56"/><text x="41.0076%" y="575.50"></text></g><g><title>memset_erms (77 samples, 0.01%)</title><rect x="40.7688%" y="565" width="0.0148%" height="15" fill="rgb(250,6,50)" fg:x="212153" fg:w="77"/><text x="41.0188%" y="575.50"></text></g><g><title>__kmalloc (342 samples, 0.07%)</title><rect x="40.7286%" y="581" width="0.0657%" height="15" fill="rgb(250,160,48)" fg:x="211944" fg:w="342"/><text x="40.9786%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (56 samples, 0.01%)</title><rect x="40.7836%" y="565" width="0.0108%" height="15" fill="rgb(244,216,33)" fg:x="212230" fg:w="56"/><text x="41.0336%" y="575.50"></text></g><g><title>btrfs_get_32 (106 samples, 0.02%)</title><rect x="40.7943%" y="581" width="0.0204%" height="15" fill="rgb(207,157,5)" fg:x="212286" fg:w="106"/><text x="41.0443%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (153 samples, 0.03%)</title><rect x="40.8147%" y="581" width="0.0294%" height="15" fill="rgb(228,199,8)" fg:x="212392" fg:w="153"/><text x="41.0647%" y="591.50"></text></g><g><title>setup_items_for_insert (117 samples, 0.02%)</title><rect x="40.8216%" y="565" width="0.0225%" height="15" fill="rgb(227,80,20)" fg:x="212428" fg:w="117"/><text x="41.0716%" y="575.50"></text></g><g><title>free_extent_buffer.part.0 (102 samples, 0.02%)</title><rect x="40.8593%" y="565" width="0.0196%" height="15" fill="rgb(222,9,33)" fg:x="212624" fg:w="102"/><text x="41.1093%" y="575.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="40.8629%" y="549" width="0.0159%" height="15" fill="rgb(239,44,28)" fg:x="212643" fg:w="83"/><text x="41.1129%" y="559.50"></text></g><g><title>btrfs_release_path (274 samples, 0.05%)</title><rect x="40.8447%" y="581" width="0.0527%" height="15" fill="rgb(249,187,43)" fg:x="212548" fg:w="274"/><text x="41.0947%" y="591.50"></text></g><g><title>release_extent_buffer (96 samples, 0.02%)</title><rect x="40.8789%" y="565" width="0.0184%" height="15" fill="rgb(216,141,28)" fg:x="212726" fg:w="96"/><text x="41.1289%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (104 samples, 0.02%)</title><rect x="40.9246%" y="565" width="0.0200%" height="15" fill="rgb(230,154,53)" fg:x="212964" fg:w="104"/><text x="41.1746%" y="575.50"></text></g><g><title>btrfs_root_node (55 samples, 0.01%)</title><rect x="40.9340%" y="549" width="0.0106%" height="15" fill="rgb(227,82,4)" fg:x="213013" fg:w="55"/><text x="41.1840%" y="559.50"></text></g><g><title>btrfs_set_path_blocking (108 samples, 0.02%)</title><rect x="40.9471%" y="565" width="0.0208%" height="15" fill="rgb(220,107,16)" fg:x="213081" fg:w="108"/><text x="41.1971%" y="575.50"></text></g><g><title>btrfs_set_lock_blocking_read (69 samples, 0.01%)</title><rect x="40.9546%" y="549" width="0.0133%" height="15" fill="rgb(207,187,2)" fg:x="213120" fg:w="69"/><text x="41.2046%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (458 samples, 0.09%)</title><rect x="40.9840%" y="565" width="0.0880%" height="15" fill="rgb(210,162,52)" fg:x="213273" fg:w="458"/><text x="41.2340%" y="575.50"></text></g><g><title>__radix_tree_lookup (133 samples, 0.03%)</title><rect x="41.1033%" y="533" width="0.0256%" height="15" fill="rgb(217,216,49)" fg:x="213894" fg:w="133"/><text x="41.3533%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (103 samples, 0.02%)</title><rect x="41.1289%" y="533" width="0.0198%" height="15" fill="rgb(218,146,49)" fg:x="214027" fg:w="103"/><text x="41.3789%" y="543.50"></text></g><g><title>mark_page_accessed (61 samples, 0.01%)</title><rect x="41.1370%" y="517" width="0.0117%" height="15" fill="rgb(216,55,40)" fg:x="214069" fg:w="61"/><text x="41.3870%" y="527.50"></text></g><g><title>find_extent_buffer (301 samples, 0.06%)</title><rect x="41.0914%" y="549" width="0.0578%" height="15" fill="rgb(208,196,21)" fg:x="213832" fg:w="301"/><text x="41.3414%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (454 samples, 0.09%)</title><rect x="41.0720%" y="565" width="0.0872%" height="15" fill="rgb(242,117,42)" fg:x="213731" fg:w="454"/><text x="41.3220%" y="575.50"></text></g><g><title>btrfs_search_slot (1,430 samples, 0.27%)</title><rect x="40.8973%" y="581" width="0.2748%" height="15" fill="rgb(210,11,23)" fg:x="212822" fg:w="1430"/><text x="41.1473%" y="591.50"></text></g><g><title>unlock_up (67 samples, 0.01%)</title><rect x="41.1593%" y="565" width="0.0129%" height="15" fill="rgb(217,110,2)" fg:x="214185" fg:w="67"/><text x="41.4093%" y="575.50"></text></g><g><title>kfree (284 samples, 0.05%)</title><rect x="41.1725%" y="581" width="0.0546%" height="15" fill="rgb(229,77,54)" fg:x="214254" fg:w="284"/><text x="41.4225%" y="591.50"></text></g><g><title>memcmp (165 samples, 0.03%)</title><rect x="41.2271%" y="581" width="0.0317%" height="15" fill="rgb(218,53,16)" fg:x="214538" fg:w="165"/><text x="41.4771%" y="591.50"></text></g><g><title>overwrite_item (3,037 samples, 0.58%)</title><rect x="40.7127%" y="597" width="0.5836%" height="15" fill="rgb(215,38,13)" fg:x="211861" fg:w="3037"/><text x="40.9627%" y="607.50"></text></g><g><title>read_extent_buffer (195 samples, 0.04%)</title><rect x="41.2588%" y="581" width="0.0375%" height="15" fill="rgb(235,42,18)" fg:x="214703" fg:w="195"/><text x="41.5088%" y="591.50"></text></g><g><title>log_directory_changes (5,103 samples, 0.98%)</title><rect x="40.3414%" y="629" width="0.9806%" height="15" fill="rgb(219,66,54)" fg:x="209929" fg:w="5103"/><text x="40.5914%" y="639.50"></text></g><g><title>log_dir_items (5,099 samples, 0.98%)</title><rect x="40.3422%" y="613" width="0.9799%" height="15" fill="rgb(222,205,4)" fg:x="209933" fg:w="5099"/><text x="40.5922%" y="623.50"></text></g><g><title>read_extent_buffer (134 samples, 0.03%)</title><rect x="41.2963%" y="597" width="0.0258%" height="15" fill="rgb(227,213,46)" fg:x="214898" fg:w="134"/><text x="41.5463%" y="607.50"></text></g><g><title>btrfs_log_inode (6,779 samples, 1.30%)</title><rect x="40.0224%" y="645" width="1.3027%" height="15" fill="rgb(250,145,42)" fg:x="208269" fg:w="6779"/><text x="40.2724%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (66 samples, 0.01%)</title><rect x="41.3455%" y="629" width="0.0127%" height="15" fill="rgb(219,15,2)" fg:x="215154" fg:w="66"/><text x="41.5955%" y="639.50"></text></g><g><title>btrfs_search_forward (164 samples, 0.03%)</title><rect x="41.3293%" y="645" width="0.0315%" height="15" fill="rgb(231,181,52)" fg:x="215070" fg:w="164"/><text x="41.5793%" y="655.50"></text></g><g><title>log_new_dir_dentries (7,124 samples, 1.37%)</title><rect x="40.0017%" y="661" width="1.3690%" height="15" fill="rgb(235,1,42)" fg:x="208161" fg:w="7124"/><text x="40.2517%" y="671.50"></text></g><g><title>btrfs_log_new_name (23,370 samples, 4.49%)</title><rect x="36.8926%" y="693" width="4.4909%" height="15" fill="rgb(249,88,27)" fg:x="191982" fg:w="23370"/><text x="37.1426%" y="703.50">btrfs..</text></g><g><title>btrfs_log_inode_parent (23,306 samples, 4.48%)</title><rect x="36.9049%" y="677" width="4.4786%" height="15" fill="rgb(235,145,16)" fg:x="192046" fg:w="23306"/><text x="37.1549%" y="687.50">btrfs..</text></g><g><title>read_extent_buffer (60 samples, 0.01%)</title><rect x="41.3720%" y="661" width="0.0115%" height="15" fill="rgb(237,114,19)" fg:x="215292" fg:w="60"/><text x="41.6220%" y="671.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="41.4756%" y="645" width="0.0110%" height="15" fill="rgb(238,51,50)" fg:x="215831" fg:w="57"/><text x="41.7256%" y="655.50"></text></g><g><title>mutex_lock (61 samples, 0.01%)</title><rect x="41.4865%" y="645" width="0.0117%" height="15" fill="rgb(205,194,25)" fg:x="215888" fg:w="61"/><text x="41.7365%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (392 samples, 0.08%)</title><rect x="41.4300%" y="661" width="0.0753%" height="15" fill="rgb(215,203,17)" fg:x="215594" fg:w="392"/><text x="41.6800%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (141 samples, 0.03%)</title><rect x="41.5054%" y="661" width="0.0271%" height="15" fill="rgb(233,112,49)" fg:x="215986" fg:w="141"/><text x="41.7554%" y="671.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="41.5102%" y="645" width="0.0223%" height="15" fill="rgb(241,130,26)" fg:x="216011" fg:w="116"/><text x="41.7602%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (476 samples, 0.09%)</title><rect x="41.5325%" y="661" width="0.0915%" height="15" fill="rgb(252,223,19)" fg:x="216127" fg:w="476"/><text x="41.7825%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (465 samples, 0.09%)</title><rect x="41.5346%" y="645" width="0.0894%" height="15" fill="rgb(211,95,25)" fg:x="216138" fg:w="465"/><text x="41.7846%" y="655.50"></text></g><g><title>inode_get_bytes (71 samples, 0.01%)</title><rect x="41.6297%" y="645" width="0.0136%" height="15" fill="rgb(251,182,27)" fg:x="216633" fg:w="71"/><text x="41.8797%" y="655.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="41.6316%" y="629" width="0.0117%" height="15" fill="rgb(238,24,4)" fg:x="216643" fg:w="61"/><text x="41.8816%" y="639.50"></text></g><g><title>fill_stack_inode_item (160 samples, 0.03%)</title><rect x="41.6239%" y="661" width="0.0307%" height="15" fill="rgb(224,220,25)" fg:x="216603" fg:w="160"/><text x="41.8739%" y="671.50"></text></g><g><title>map_id_up (59 samples, 0.01%)</title><rect x="41.6433%" y="645" width="0.0113%" height="15" fill="rgb(239,133,26)" fg:x="216704" fg:w="59"/><text x="41.8933%" y="655.50"></text></g><g><title>mutex_lock (93 samples, 0.02%)</title><rect x="41.6547%" y="661" width="0.0179%" height="15" fill="rgb(211,94,48)" fg:x="216763" fg:w="93"/><text x="41.9047%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (1,480 samples, 0.28%)</title><rect x="41.3972%" y="677" width="0.2844%" height="15" fill="rgb(239,87,6)" fg:x="215423" fg:w="1480"/><text x="41.6472%" y="687.50"></text></g><g><title>btrfs_update_inode (1,717 samples, 0.33%)</title><rect x="41.3839%" y="693" width="0.3300%" height="15" fill="rgb(227,62,0)" fg:x="215354" fg:w="1717"/><text x="41.6339%" y="703.50"></text></g><g><title>btrfs_update_root_times (168 samples, 0.03%)</title><rect x="41.6816%" y="677" width="0.0323%" height="15" fill="rgb(211,226,4)" fg:x="216903" fg:w="168"/><text x="41.9316%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (108 samples, 0.02%)</title><rect x="41.6931%" y="661" width="0.0208%" height="15" fill="rgb(253,38,52)" fg:x="216963" fg:w="108"/><text x="41.9431%" y="671.50"></text></g><g><title>read_tsc (64 samples, 0.01%)</title><rect x="41.7016%" y="645" width="0.0123%" height="15" fill="rgb(229,126,40)" fg:x="217007" fg:w="64"/><text x="41.9516%" y="655.50"></text></g><g><title>__d_instantiate (137 samples, 0.03%)</title><rect x="41.7227%" y="677" width="0.0263%" height="15" fill="rgb(229,165,44)" fg:x="217117" fg:w="137"/><text x="41.9727%" y="687.50"></text></g><g><title>d_instantiate (212 samples, 0.04%)</title><rect x="41.7194%" y="693" width="0.0407%" height="15" fill="rgb(247,95,47)" fg:x="217100" fg:w="212"/><text x="41.9694%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="41.8453%" y="661" width="0.0117%" height="15" fill="rgb(216,140,30)" fg:x="217755" fg:w="61"/><text x="42.0953%" y="671.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="41.8893%" y="629" width="0.0206%" height="15" fill="rgb(246,214,8)" fg:x="217984" fg:w="107"/><text x="42.1393%" y="639.50"></text></g><g><title>_raw_spin_lock (93 samples, 0.02%)</title><rect x="41.9929%" y="597" width="0.0179%" height="15" fill="rgb(227,224,15)" fg:x="218523" fg:w="93"/><text x="42.2429%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (526 samples, 0.10%)</title><rect x="41.9099%" y="629" width="0.1011%" height="15" fill="rgb(233,175,4)" fg:x="218091" fg:w="526"/><text x="42.1599%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (235 samples, 0.05%)</title><rect x="41.9658%" y="613" width="0.0452%" height="15" fill="rgb(221,66,45)" fg:x="218382" fg:w="235"/><text x="42.2158%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (1,179 samples, 0.23%)</title><rect x="41.8382%" y="677" width="0.2266%" height="15" fill="rgb(221,178,18)" fg:x="217718" fg:w="1179"/><text x="42.0882%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,081 samples, 0.21%)</title><rect x="41.8570%" y="661" width="0.2077%" height="15" fill="rgb(213,81,29)" fg:x="217816" fg:w="1081"/><text x="42.1070%" y="671.50"></text></g><g><title>__reserve_bytes (1,021 samples, 0.20%)</title><rect x="41.8686%" y="645" width="0.1962%" height="15" fill="rgb(220,89,49)" fg:x="217876" fg:w="1021"/><text x="42.1186%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (280 samples, 0.05%)</title><rect x="42.0109%" y="629" width="0.0538%" height="15" fill="rgb(227,60,33)" fg:x="218617" fg:w="280"/><text x="42.2609%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (171 samples, 0.03%)</title><rect x="42.0319%" y="613" width="0.0329%" height="15" fill="rgb(205,113,12)" fg:x="218726" fg:w="171"/><text x="42.2819%" y="623.50"></text></g><g><title>join_transaction (248 samples, 0.05%)</title><rect x="42.0669%" y="677" width="0.0477%" height="15" fill="rgb(211,32,1)" fg:x="218908" fg:w="248"/><text x="42.3169%" y="687.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="42.1009%" y="661" width="0.0136%" height="15" fill="rgb(246,2,12)" fg:x="219085" fg:w="71"/><text x="42.3509%" y="671.50"></text></g><g><title>kmem_cache_alloc (213 samples, 0.04%)</title><rect x="42.1145%" y="677" width="0.0409%" height="15" fill="rgb(243,37,27)" fg:x="219156" fg:w="213"/><text x="42.3645%" y="687.50"></text></g><g><title>btrfs_link (61,109 samples, 11.74%)</title><rect x="30.4381%" y="709" width="11.7431%" height="15" fill="rgb(248,211,31)" fg:x="158394" fg:w="61109"/><text x="30.6881%" y="719.50">btrfs_link</text></g><g><title>start_transaction (2,140 samples, 0.41%)</title><rect x="41.7700%" y="693" width="0.4112%" height="15" fill="rgb(242,146,47)" fg:x="217363" fg:w="2140"/><text x="42.0200%" y="703.50"></text></g><g><title>wait_current_trans (134 samples, 0.03%)</title><rect x="42.1555%" y="677" width="0.0258%" height="15" fill="rgb(206,70,20)" fg:x="219369" fg:w="134"/><text x="42.4055%" y="687.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="42.1624%" y="661" width="0.0188%" height="15" fill="rgb(215,10,51)" fg:x="219405" fg:w="98"/><text x="42.4124%" y="671.50"></text></g><g><title>down_write (78 samples, 0.01%)</title><rect x="42.1812%" y="709" width="0.0150%" height="15" fill="rgb(243,178,53)" fg:x="219503" fg:w="78"/><text x="42.4312%" y="719.50"></text></g><g><title>fsnotify (126 samples, 0.02%)</title><rect x="42.1975%" y="709" width="0.0242%" height="15" fill="rgb(233,221,20)" fg:x="219588" fg:w="126"/><text x="42.4475%" y="719.50"></text></g><g><title>btrfs_permission (87 samples, 0.02%)</title><rect x="42.2258%" y="693" width="0.0167%" height="15" fill="rgb(218,95,35)" fg:x="219735" fg:w="87"/><text x="42.4758%" y="703.50"></text></g><g><title>inode_permission.part.0 (123 samples, 0.02%)</title><rect x="42.2218%" y="709" width="0.0236%" height="15" fill="rgb(229,13,5)" fg:x="219714" fg:w="123"/><text x="42.4718%" y="719.50"></text></g><g><title>__x64_sys_link (79,616 samples, 15.30%)</title><rect x="26.9708%" y="757" width="15.2996%" height="15" fill="rgb(252,164,30)" fg:x="140351" fg:w="79616"/><text x="27.2208%" y="767.50">__x64_sys_link</text></g><g><title>do_linkat (79,602 samples, 15.30%)</title><rect x="26.9735%" y="741" width="15.2969%" height="15" fill="rgb(232,68,36)" fg:x="140365" fg:w="79602"/><text x="27.2235%" y="751.50">do_linkat</text></g><g><title>vfs_link (61,788 samples, 11.87%)</title><rect x="30.3968%" y="725" width="11.8736%" height="15" fill="rgb(219,59,54)" fg:x="158179" fg:w="61788"/><text x="30.6468%" y="735.50">vfs_link</text></g><g><title>up_write (55 samples, 0.01%)</title><rect x="42.2598%" y="709" width="0.0106%" height="15" fill="rgb(250,92,33)" fg:x="219912" fg:w="55"/><text x="42.5098%" y="719.50"></text></g><g><title>do_syscall_64 (79,690 samples, 15.31%)</title><rect x="26.9591%" y="773" width="15.3138%" height="15" fill="rgb(229,162,54)" fg:x="140290" fg:w="79690"/><text x="27.2091%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (79,881 samples, 15.35%)</title><rect x="26.9393%" y="789" width="15.3505%" height="15" fill="rgb(244,114,52)" fg:x="140187" fg:w="79881"/><text x="27.1893%" y="799.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_exit_to_user_mode (88 samples, 0.02%)</title><rect x="42.2729%" y="773" width="0.0169%" height="15" fill="rgb(212,211,43)" fg:x="219980" fg:w="88"/><text x="42.5229%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (75 samples, 0.01%)</title><rect x="42.2754%" y="757" width="0.0144%" height="15" fill="rgb(226,147,8)" fg:x="219993" fg:w="75"/><text x="42.5254%" y="767.50"></text></g><g><title>__GI___link (80,239 samples, 15.42%)</title><rect x="26.8838%" y="805" width="15.4193%" height="15" fill="rgb(226,23,13)" fg:x="139898" fg:w="80239"/><text x="27.1338%" y="815.50">__GI___link</text></g><g><title>syscall_return_via_sysret (69 samples, 0.01%)</title><rect x="42.2898%" y="789" width="0.0133%" height="15" fill="rgb(240,63,4)" fg:x="220068" fg:w="69"/><text x="42.5398%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (280 samples, 0.05%)</title><rect x="42.3463%" y="789" width="0.0538%" height="15" fill="rgb(221,1,32)" fg:x="220362" fg:w="280"/><text x="42.5963%" y="799.50"></text></g><g><title>_copy_to_user (403 samples, 0.08%)</title><rect x="42.4570%" y="725" width="0.0774%" height="15" fill="rgb(242,117,10)" fg:x="220938" fg:w="403"/><text x="42.7070%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (359 samples, 0.07%)</title><rect x="42.4654%" y="709" width="0.0690%" height="15" fill="rgb(249,172,44)" fg:x="220982" fg:w="359"/><text x="42.7154%" y="719.50"></text></g><g><title>from_kgid_munged (89 samples, 0.02%)</title><rect x="42.5344%" y="725" width="0.0171%" height="15" fill="rgb(244,46,45)" fg:x="221341" fg:w="89"/><text x="42.7844%" y="735.50"></text></g><g><title>map_id_up (80 samples, 0.02%)</title><rect x="42.5361%" y="709" width="0.0154%" height="15" fill="rgb(206,43,17)" fg:x="221350" fg:w="80"/><text x="42.7861%" y="719.50"></text></g><g><title>cp_new_stat (711 samples, 0.14%)</title><rect x="42.4322%" y="741" width="0.1366%" height="15" fill="rgb(239,218,39)" fg:x="220809" fg:w="711"/><text x="42.6822%" y="751.50"></text></g><g><title>from_kuid_munged (90 samples, 0.02%)</title><rect x="42.5515%" y="725" width="0.0173%" height="15" fill="rgb(208,169,54)" fg:x="221430" fg:w="90"/><text x="42.8015%" y="735.50"></text></g><g><title>map_id_up (78 samples, 0.01%)</title><rect x="42.5538%" y="709" width="0.0150%" height="15" fill="rgb(247,25,42)" fg:x="221442" fg:w="78"/><text x="42.8038%" y="719.50"></text></g><g><title>_raw_spin_lock (138 samples, 0.03%)</title><rect x="42.6897%" y="709" width="0.0265%" height="15" fill="rgb(226,23,31)" fg:x="222149" fg:w="138"/><text x="42.9397%" y="719.50"></text></g><g><title>generic_fillattr (79 samples, 0.02%)</title><rect x="42.7164%" y="709" width="0.0152%" height="15" fill="rgb(247,16,28)" fg:x="222288" fg:w="79"/><text x="42.9664%" y="719.50"></text></g><g><title>btrfs_getattr (890 samples, 0.17%)</title><rect x="42.5863%" y="725" width="0.1710%" height="15" fill="rgb(231,147,38)" fg:x="221611" fg:w="890"/><text x="42.8363%" y="735.50"></text></g><g><title>inode_get_bytes (134 samples, 0.03%)</title><rect x="42.7316%" y="709" width="0.0258%" height="15" fill="rgb(253,81,48)" fg:x="222367" fg:w="134"/><text x="42.9816%" y="719.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="42.7358%" y="693" width="0.0215%" height="15" fill="rgb(249,222,43)" fg:x="222389" fg:w="112"/><text x="42.9858%" y="703.50"></text></g><g><title>kmem_cache_free (301 samples, 0.06%)</title><rect x="42.7777%" y="709" width="0.0578%" height="15" fill="rgb(221,3,27)" fg:x="222607" fg:w="301"/><text x="43.0277%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (53 samples, 0.01%)</title><rect x="42.8254%" y="693" width="0.0102%" height="15" fill="rgb(228,180,5)" fg:x="222855" fg:w="53"/><text x="43.0754%" y="703.50"></text></g><g><title>__legitimize_mnt (152 samples, 0.03%)</title><rect x="42.8665%" y="645" width="0.0292%" height="15" fill="rgb(227,131,42)" fg:x="223069" fg:w="152"/><text x="43.1165%" y="655.50"></text></g><g><title>__legitimize_path (305 samples, 0.06%)</title><rect x="42.8622%" y="661" width="0.0586%" height="15" fill="rgb(212,3,39)" fg:x="223047" fg:w="305"/><text x="43.1122%" y="671.50"></text></g><g><title>lockref_get_not_dead (131 samples, 0.03%)</title><rect x="42.8957%" y="645" width="0.0252%" height="15" fill="rgb(226,45,5)" fg:x="223221" fg:w="131"/><text x="43.1457%" y="655.50"></text></g><g><title>complete_walk (389 samples, 0.07%)</title><rect x="42.8530%" y="693" width="0.0748%" height="15" fill="rgb(215,167,45)" fg:x="222999" fg:w="389"/><text x="43.1030%" y="703.50"></text></g><g><title>try_to_unlazy (374 samples, 0.07%)</title><rect x="42.8559%" y="677" width="0.0719%" height="15" fill="rgb(250,218,53)" fg:x="223014" fg:w="374"/><text x="43.1059%" y="687.50"></text></g><g><title>btrfs_permission (214 samples, 0.04%)</title><rect x="43.7766%" y="661" width="0.0411%" height="15" fill="rgb(207,140,0)" fg:x="227805" fg:w="214"/><text x="44.0266%" y="671.50"></text></g><g><title>inode_permission.part.0 (2,691 samples, 0.52%)</title><rect x="43.4730%" y="677" width="0.5171%" height="15" fill="rgb(238,133,51)" fg:x="226225" fg:w="2691"/><text x="43.7230%" y="687.50"></text></g><g><title>generic_permission (897 samples, 0.17%)</title><rect x="43.8177%" y="661" width="0.1724%" height="15" fill="rgb(218,203,53)" fg:x="228019" fg:w="897"/><text x="44.0677%" y="671.50"></text></g><g><title>security_inode_permission (326 samples, 0.06%)</title><rect x="43.9901%" y="677" width="0.0626%" height="15" fill="rgb(226,184,25)" fg:x="228916" fg:w="326"/><text x="44.2401%" y="687.50"></text></g><g><title>__d_lookup_rcu (4,508 samples, 0.87%)</title><rect x="44.4941%" y="645" width="0.8663%" height="15" fill="rgb(231,121,21)" fg:x="231539" fg:w="4508"/><text x="44.7441%" y="655.50"></text></g><g><title>lookup_fast (5,704 samples, 1.10%)</title><rect x="44.2645%" y="661" width="1.0961%" height="15" fill="rgb(251,14,34)" fg:x="230344" fg:w="5704"/><text x="44.5145%" y="671.50"></text></g><g><title>page_put_link (99 samples, 0.02%)</title><rect x="45.3606%" y="661" width="0.0190%" height="15" fill="rgb(249,193,11)" fg:x="236048" fg:w="99"/><text x="45.6106%" y="671.50"></text></g><g><title>__lookup_mnt (84 samples, 0.02%)</title><rect x="45.6567%" y="645" width="0.0161%" height="15" fill="rgb(220,172,37)" fg:x="237589" fg:w="84"/><text x="45.9067%" y="655.50"></text></g><g><title>atime_needs_update (199 samples, 0.04%)</title><rect x="45.6731%" y="645" width="0.0382%" height="15" fill="rgb(231,229,43)" fg:x="237674" fg:w="199"/><text x="45.9231%" y="655.50"></text></g><g><title>current_time (124 samples, 0.02%)</title><rect x="45.6875%" y="629" width="0.0238%" height="15" fill="rgb(250,161,5)" fg:x="237749" fg:w="124"/><text x="45.9375%" y="639.50"></text></g><g><title>nd_jump_root (79 samples, 0.02%)</title><rect x="45.7113%" y="645" width="0.0152%" height="15" fill="rgb(218,225,18)" fg:x="237873" fg:w="79"/><text x="45.9613%" y="655.50"></text></g><g><title>page_get_link (486 samples, 0.09%)</title><rect x="45.7265%" y="645" width="0.0934%" height="15" fill="rgb(245,45,42)" fg:x="237952" fg:w="486"/><text x="45.9765%" y="655.50"></text></g><g><title>pagecache_get_page (377 samples, 0.07%)</title><rect x="45.7474%" y="629" width="0.0724%" height="15" fill="rgb(211,115,1)" fg:x="238061" fg:w="377"/><text x="45.9974%" y="639.50"></text></g><g><title>find_get_entry (300 samples, 0.06%)</title><rect x="45.7622%" y="613" width="0.0577%" height="15" fill="rgb(248,133,52)" fg:x="238138" fg:w="300"/><text x="46.0122%" y="623.50"></text></g><g><title>xas_load (65 samples, 0.01%)</title><rect x="45.8074%" y="597" width="0.0125%" height="15" fill="rgb(238,100,21)" fg:x="238373" fg:w="65"/><text x="46.0574%" y="607.50"></text></g><g><title>xas_start (55 samples, 0.01%)</title><rect x="45.8093%" y="581" width="0.0106%" height="15" fill="rgb(247,144,11)" fg:x="238383" fg:w="55"/><text x="46.0593%" y="591.50"></text></g><g><title>link_path_walk.part.0 (15,068 samples, 2.90%)</title><rect x="42.9278%" y="693" width="2.8956%" height="15" fill="rgb(206,164,16)" fg:x="223388" fg:w="15068"/><text x="43.1778%" y="703.50">li..</text></g><g><title>walk_component (9,214 samples, 1.77%)</title><rect x="44.0527%" y="677" width="1.7706%" height="15" fill="rgb(222,34,3)" fg:x="229242" fg:w="9214"/><text x="44.3027%" y="687.50">w..</text></g><g><title>step_into (2,309 samples, 0.44%)</title><rect x="45.3796%" y="661" width="0.4437%" height="15" fill="rgb(248,82,4)" fg:x="236147" fg:w="2309"/><text x="45.6296%" y="671.50"></text></g><g><title>path_init (384 samples, 0.07%)</title><rect x="45.8233%" y="693" width="0.0738%" height="15" fill="rgb(228,81,46)" fg:x="238456" fg:w="384"/><text x="46.0733%" y="703.50"></text></g><g><title>nd_jump_root (319 samples, 0.06%)</title><rect x="45.8358%" y="677" width="0.0613%" height="15" fill="rgb(227,67,47)" fg:x="238521" fg:w="319"/><text x="46.0858%" y="687.50"></text></g><g><title>set_root (268 samples, 0.05%)</title><rect x="45.8456%" y="661" width="0.0515%" height="15" fill="rgb(215,93,53)" fg:x="238572" fg:w="268"/><text x="46.0956%" y="671.50"></text></g><g><title>lookup_fast (1,179 samples, 0.23%)</title><rect x="45.9133%" y="677" width="0.2266%" height="15" fill="rgb(248,194,39)" fg:x="238924" fg:w="1179"/><text x="46.1633%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,124 samples, 0.22%)</title><rect x="45.9239%" y="661" width="0.2160%" height="15" fill="rgb(215,5,19)" fg:x="238979" fg:w="1124"/><text x="46.1739%" y="671.50"></text></g><g><title>path_lookupat (17,256 samples, 3.32%)</title><rect x="42.8355%" y="709" width="3.3160%" height="15" fill="rgb(226,215,51)" fg:x="222908" fg:w="17256"/><text x="43.0855%" y="719.50">pat..</text></g><g><title>walk_component (1,276 samples, 0.25%)</title><rect x="45.9064%" y="693" width="0.2452%" height="15" fill="rgb(225,56,26)" fg:x="238888" fg:w="1276"/><text x="46.1564%" y="703.50"></text></g><g><title>step_into (61 samples, 0.01%)</title><rect x="46.1398%" y="677" width="0.0117%" height="15" fill="rgb(222,75,29)" fg:x="240103" fg:w="61"/><text x="46.3898%" y="687.50"></text></g><g><title>filename_lookup (17,675 samples, 3.40%)</title><rect x="42.7573%" y="725" width="3.3965%" height="15" fill="rgb(236,139,6)" fg:x="222501" fg:w="17675"/><text x="43.0073%" y="735.50">fil..</text></g><g><title>lockref_put_or_lock (122 samples, 0.02%)</title><rect x="46.1848%" y="693" width="0.0234%" height="15" fill="rgb(223,137,36)" fg:x="240337" fg:w="122"/><text x="46.4348%" y="703.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="46.1898%" y="677" width="0.0184%" height="15" fill="rgb(226,99,2)" fg:x="240363" fg:w="96"/><text x="46.4398%" y="687.50"></text></g><g><title>path_put (236 samples, 0.05%)</title><rect x="46.1637%" y="725" width="0.0454%" height="15" fill="rgb(206,133,23)" fg:x="240227" fg:w="236"/><text x="46.4137%" y="735.50"></text></g><g><title>dput (230 samples, 0.04%)</title><rect x="46.1648%" y="709" width="0.0442%" height="15" fill="rgb(243,173,15)" fg:x="240233" fg:w="230"/><text x="46.4148%" y="719.50"></text></g><g><title>apparmor_inode_getattr (127 samples, 0.02%)</title><rect x="46.3088%" y="709" width="0.0244%" height="15" fill="rgb(228,69,28)" fg:x="240982" fg:w="127"/><text x="46.5588%" y="719.50"></text></g><g><title>security_inode_getattr (1,116 samples, 0.21%)</title><rect x="46.2090%" y="725" width="0.2145%" height="15" fill="rgb(212,51,22)" fg:x="240463" fg:w="1116"/><text x="46.4590%" y="735.50"></text></g><g><title>tomoyo_path_perm (466 samples, 0.09%)</title><rect x="46.3339%" y="709" width="0.0895%" height="15" fill="rgb(227,113,0)" fg:x="241113" fg:w="466"/><text x="46.5839%" y="719.50"></text></g><g><title>tomoyo_init_request_info (292 samples, 0.06%)</title><rect x="46.3674%" y="693" width="0.0561%" height="15" fill="rgb(252,84,27)" fg:x="241287" fg:w="292"/><text x="46.6174%" y="703.50"></text></g><g><title>tomoyo_domain (100 samples, 0.02%)</title><rect x="46.4043%" y="677" width="0.0192%" height="15" fill="rgb(223,145,39)" fg:x="241479" fg:w="100"/><text x="46.6543%" y="687.50"></text></g><g><title>memset_erms (671 samples, 0.13%)</title><rect x="46.5190%" y="677" width="0.1289%" height="15" fill="rgb(239,219,30)" fg:x="242076" fg:w="671"/><text x="46.7690%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,235 samples, 0.24%)</title><rect x="46.4521%" y="693" width="0.2373%" height="15" fill="rgb(224,196,39)" fg:x="241728" fg:w="1235"/><text x="46.7021%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (216 samples, 0.04%)</title><rect x="46.6479%" y="677" width="0.0415%" height="15" fill="rgb(205,35,43)" fg:x="242747" fg:w="216"/><text x="46.8979%" y="687.50"></text></g><g><title>__check_heap_object (137 samples, 0.03%)</title><rect x="46.8459%" y="661" width="0.0263%" height="15" fill="rgb(228,201,21)" fg:x="243777" fg:w="137"/><text x="47.0959%" y="671.50"></text></g><g><title>__virt_addr_valid (360 samples, 0.07%)</title><rect x="46.8722%" y="661" width="0.0692%" height="15" fill="rgb(237,118,16)" fg:x="243914" fg:w="360"/><text x="47.1222%" y="671.50"></text></g><g><title>__check_object_size (616 samples, 0.12%)</title><rect x="46.8265%" y="677" width="0.1184%" height="15" fill="rgb(241,17,19)" fg:x="243676" fg:w="616"/><text x="47.0765%" y="687.50"></text></g><g><title>user_path_at_empty (2,716 samples, 0.52%)</title><rect x="46.4235%" y="725" width="0.5219%" height="15" fill="rgb(214,10,25)" fg:x="241579" fg:w="2716"/><text x="46.6735%" y="735.50"></text></g><g><title>getname_flags.part.0 (2,682 samples, 0.52%)</title><rect x="46.4300%" y="709" width="0.5154%" height="15" fill="rgb(238,37,29)" fg:x="241613" fg:w="2682"/><text x="46.6800%" y="719.50"></text></g><g><title>strncpy_from_user (1,332 samples, 0.26%)</title><rect x="46.6894%" y="693" width="0.2560%" height="15" fill="rgb(253,83,25)" fg:x="242963" fg:w="1332"/><text x="46.9394%" y="703.50"></text></g><g><title>__do_sys_newlstat (23,690 samples, 4.55%)</title><rect x="42.4230%" y="757" width="4.5524%" height="15" fill="rgb(234,192,12)" fg:x="220761" fg:w="23690"/><text x="42.6730%" y="767.50">__do_..</text></g><g><title>vfs_statx (22,931 samples, 4.41%)</title><rect x="42.5688%" y="741" width="4.4066%" height="15" fill="rgb(241,216,45)" fg:x="221520" fg:w="22931"/><text x="42.8188%" y="751.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (156 samples, 0.03%)</title><rect x="46.9454%" y="725" width="0.0300%" height="15" fill="rgb(242,22,33)" fg:x="244295" fg:w="156"/><text x="47.1954%" y="735.50"></text></g><g><title>do_syscall_64 (23,781 samples, 4.57%)</title><rect x="42.4137%" y="773" width="4.5699%" height="15" fill="rgb(231,105,49)" fg:x="220713" fg:w="23781"/><text x="42.6637%" y="783.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (23,933 samples, 4.60%)</title><rect x="42.4001%" y="789" width="4.5991%" height="15" fill="rgb(218,204,15)" fg:x="220642" fg:w="23933"/><text x="42.6501%" y="799.50">entry..</text></g><g><title>syscall_exit_to_user_mode (81 samples, 0.02%)</title><rect x="46.9837%" y="773" width="0.0156%" height="15" fill="rgb(235,138,41)" fg:x="244494" fg:w="81"/><text x="47.2337%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.01%)</title><rect x="46.9873%" y="757" width="0.0119%" height="15" fill="rgb(246,0,9)" fg:x="244513" fg:w="62"/><text x="47.2373%" y="767.50"></text></g><g><title>__GI___lxstat (24,560 samples, 4.72%)</title><rect x="42.3030%" y="805" width="4.7196%" height="15" fill="rgb(210,74,4)" fg:x="220137" fg:w="24560"/><text x="42.5530%" y="815.50">__GI_..</text></g><g><title>syscall_return_via_sysret (122 samples, 0.02%)</title><rect x="46.9992%" y="789" width="0.0234%" height="15" fill="rgb(250,60,41)" fg:x="244575" fg:w="122"/><text x="47.2492%" y="799.50"></text></g><g><title>dput (53 samples, 0.01%)</title><rect x="47.0303%" y="741" width="0.0102%" height="15" fill="rgb(220,115,12)" fg:x="244737" fg:w="53"/><text x="47.2803%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (101 samples, 0.02%)</title><rect x="47.0851%" y="645" width="0.0194%" height="15" fill="rgb(237,100,13)" fg:x="245022" fg:w="101"/><text x="47.3351%" y="655.50"></text></g><g><title>__radix_tree_lookup (63 samples, 0.01%)</title><rect x="47.1170%" y="613" width="0.0121%" height="15" fill="rgb(213,55,26)" fg:x="245188" fg:w="63"/><text x="47.3670%" y="623.50"></text></g><g><title>find_extent_buffer (118 samples, 0.02%)</title><rect x="47.1114%" y="629" width="0.0227%" height="15" fill="rgb(216,17,4)" fg:x="245159" fg:w="118"/><text x="47.3614%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (171 samples, 0.03%)</title><rect x="47.1045%" y="645" width="0.0329%" height="15" fill="rgb(220,153,47)" fg:x="245123" fg:w="171"/><text x="47.3545%" y="655.50"></text></g><g><title>btrfs_search_slot (451 samples, 0.09%)</title><rect x="47.0519%" y="661" width="0.0867%" height="15" fill="rgb(215,131,9)" fg:x="244849" fg:w="451"/><text x="47.3019%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (466 samples, 0.09%)</title><rect x="47.0513%" y="677" width="0.0895%" height="15" fill="rgb(233,46,42)" fg:x="244846" fg:w="466"/><text x="47.3013%" y="687.50"></text></g><g><title>btrfs_lookup (542 samples, 0.10%)</title><rect x="47.0409%" y="709" width="0.1042%" height="15" fill="rgb(226,86,7)" fg:x="244792" fg:w="542"/><text x="47.2909%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (538 samples, 0.10%)</title><rect x="47.0417%" y="693" width="0.1034%" height="15" fill="rgb(239,226,21)" fg:x="244796" fg:w="538"/><text x="47.2917%" y="703.50"></text></g><g><title>kmem_cache_alloc (121 samples, 0.02%)</title><rect x="47.1480%" y="677" width="0.0233%" height="15" fill="rgb(244,137,22)" fg:x="245349" fg:w="121"/><text x="47.3980%" y="687.50"></text></g><g><title>__d_alloc (136 samples, 0.03%)</title><rect x="47.1455%" y="693" width="0.0261%" height="15" fill="rgb(211,139,35)" fg:x="245336" fg:w="136"/><text x="47.3955%" y="703.50"></text></g><g><title>d_alloc (144 samples, 0.03%)</title><rect x="47.1451%" y="709" width="0.0277%" height="15" fill="rgb(214,62,50)" fg:x="245334" fg:w="144"/><text x="47.3951%" y="719.50"></text></g><g><title>__lookup_hash (754 samples, 0.14%)</title><rect x="47.0409%" y="725" width="0.1449%" height="15" fill="rgb(212,113,44)" fg:x="244792" fg:w="754"/><text x="47.2909%" y="735.50"></text></g><g><title>lookup_dcache (55 samples, 0.01%)</title><rect x="47.1752%" y="709" width="0.0106%" height="15" fill="rgb(226,150,43)" fg:x="245491" fg:w="55"/><text x="47.4252%" y="719.50"></text></g><g><title>d_lookup (53 samples, 0.01%)</title><rect x="47.1756%" y="693" width="0.0102%" height="15" fill="rgb(250,71,37)" fg:x="245493" fg:w="53"/><text x="47.4256%" y="703.50"></text></g><g><title>inode_permission.part.0 (94 samples, 0.02%)</title><rect x="47.2091%" y="677" width="0.0181%" height="15" fill="rgb(219,76,19)" fg:x="245667" fg:w="94"/><text x="47.4591%" y="687.50"></text></g><g><title>lookup_fast (185 samples, 0.04%)</title><rect x="47.2333%" y="661" width="0.0356%" height="15" fill="rgb(250,39,11)" fg:x="245793" fg:w="185"/><text x="47.4833%" y="671.50"></text></g><g><title>__d_lookup_rcu (153 samples, 0.03%)</title><rect x="47.2394%" y="645" width="0.0294%" height="15" fill="rgb(230,64,31)" fg:x="245825" fg:w="153"/><text x="47.4894%" y="655.50"></text></g><g><title>link_path_walk.part.0 (439 samples, 0.08%)</title><rect x="47.1956%" y="693" width="0.0844%" height="15" fill="rgb(208,222,23)" fg:x="245597" fg:w="439"/><text x="47.4456%" y="703.50"></text></g><g><title>walk_component (269 samples, 0.05%)</title><rect x="47.2283%" y="677" width="0.0517%" height="15" fill="rgb(227,125,18)" fg:x="245767" fg:w="269"/><text x="47.4783%" y="687.50"></text></g><g><title>step_into (58 samples, 0.01%)</title><rect x="47.2688%" y="661" width="0.0111%" height="15" fill="rgb(234,210,9)" fg:x="245978" fg:w="58"/><text x="47.5188%" y="671.50"></text></g><g><title>filename_parentat (504 samples, 0.10%)</title><rect x="47.1866%" y="725" width="0.0969%" height="15" fill="rgb(217,127,24)" fg:x="245550" fg:w="504"/><text x="47.4366%" y="735.50"></text></g><g><title>path_parentat (493 samples, 0.09%)</title><rect x="47.1887%" y="709" width="0.0947%" height="15" fill="rgb(239,141,48)" fg:x="245561" fg:w="493"/><text x="47.4387%" y="719.50"></text></g><g><title>filename_create (1,285 samples, 0.25%)</title><rect x="47.0405%" y="741" width="0.2469%" height="15" fill="rgb(227,109,8)" fg:x="244790" fg:w="1285"/><text x="47.2905%" y="751.50"></text></g><g><title>getname_flags.part.0 (117 samples, 0.02%)</title><rect x="47.2877%" y="741" width="0.0225%" height="15" fill="rgb(235,184,23)" fg:x="246076" fg:w="117"/><text x="47.5377%" y="751.50"></text></g><g><title>strncpy_from_user (57 samples, 0.01%)</title><rect x="47.2992%" y="725" width="0.0110%" height="15" fill="rgb(227,226,48)" fg:x="246136" fg:w="57"/><text x="47.5492%" y="735.50"></text></g><g><title>btrfs_insert_delayed_dir_index (156 samples, 0.03%)</title><rect x="47.3332%" y="677" width="0.0300%" height="15" fill="rgb(206,150,11)" fg:x="246313" fg:w="156"/><text x="47.5832%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (84 samples, 0.02%)</title><rect x="47.3966%" y="629" width="0.0161%" height="15" fill="rgb(254,2,33)" fg:x="246643" fg:w="84"/><text x="47.6466%" y="639.50"></text></g><g><title>find_extent_buffer (83 samples, 0.02%)</title><rect x="47.4195%" y="613" width="0.0159%" height="15" fill="rgb(243,160,20)" fg:x="246762" fg:w="83"/><text x="47.6695%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (132 samples, 0.03%)</title><rect x="47.4128%" y="629" width="0.0254%" height="15" fill="rgb(218,208,30)" fg:x="246727" fg:w="132"/><text x="47.6628%" y="639.50"></text></g><g><title>split_leaf (64 samples, 0.01%)</title><rect x="47.4381%" y="629" width="0.0123%" height="15" fill="rgb(224,120,49)" fg:x="246859" fg:w="64"/><text x="47.6881%" y="639.50"></text></g><g><title>btrfs_search_slot (416 samples, 0.08%)</title><rect x="47.3755%" y="645" width="0.0799%" height="15" fill="rgb(246,12,2)" fg:x="246533" fg:w="416"/><text x="47.6255%" y="655.50"></text></g><g><title>btrfs_get_token_32 (138 samples, 0.03%)</title><rect x="47.4671%" y="629" width="0.0265%" height="15" fill="rgb(236,117,3)" fg:x="247010" fg:w="138"/><text x="47.7171%" y="639.50"></text></g><g><title>btrfs_set_token_32 (150 samples, 0.03%)</title><rect x="47.4990%" y="629" width="0.0288%" height="15" fill="rgb(216,128,52)" fg:x="247176" fg:w="150"/><text x="47.7490%" y="639.50"></text></g><g><title>memmove_extent_buffer (66 samples, 0.01%)</title><rect x="47.5357%" y="629" width="0.0127%" height="15" fill="rgb(246,145,19)" fg:x="247367" fg:w="66"/><text x="47.7857%" y="639.50"></text></g><g><title>memmove (55 samples, 0.01%)</title><rect x="47.5379%" y="613" width="0.0106%" height="15" fill="rgb(222,11,46)" fg:x="247378" fg:w="55"/><text x="47.7879%" y="623.50"></text></g><g><title>insert_with_overflow (916 samples, 0.18%)</title><rect x="47.3736%" y="677" width="0.1760%" height="15" fill="rgb(245,82,36)" fg:x="246523" fg:w="916"/><text x="47.6236%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (907 samples, 0.17%)</title><rect x="47.3753%" y="661" width="0.1743%" height="15" fill="rgb(250,73,51)" fg:x="246532" fg:w="907"/><text x="47.6253%" y="671.50"></text></g><g><title>setup_items_for_insert (490 samples, 0.09%)</title><rect x="47.4554%" y="645" width="0.0942%" height="15" fill="rgb(221,189,23)" fg:x="246949" fg:w="490"/><text x="47.7054%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (1,178 samples, 0.23%)</title><rect x="47.3309%" y="693" width="0.2264%" height="15" fill="rgb(210,33,7)" fg:x="246301" fg:w="1178"/><text x="47.5809%" y="703.50"></text></g><g><title>btrfs_update_inode (59 samples, 0.01%)</title><rect x="47.5573%" y="693" width="0.0113%" height="15" fill="rgb(210,107,22)" fg:x="247479" fg:w="59"/><text x="47.8073%" y="703.50"></text></g><g><title>btrfs_add_link (1,254 samples, 0.24%)</title><rect x="47.3284%" y="709" width="0.2410%" height="15" fill="rgb(222,116,37)" fg:x="246288" fg:w="1254"/><text x="47.5784%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (62 samples, 0.01%)</title><rect x="47.6199%" y="661" width="0.0119%" height="15" fill="rgb(254,17,48)" fg:x="247805" fg:w="62"/><text x="47.8699%" y="671.50"></text></g><g><title>find_extent_buffer (69 samples, 0.01%)</title><rect x="47.6395%" y="645" width="0.0133%" height="15" fill="rgb(224,36,32)" fg:x="247907" fg:w="69"/><text x="47.8895%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (114 samples, 0.02%)</title><rect x="47.6318%" y="661" width="0.0219%" height="15" fill="rgb(232,90,46)" fg:x="247867" fg:w="114"/><text x="47.8818%" y="671.50"></text></g><g><title>__push_leaf_left (71 samples, 0.01%)</title><rect x="47.6678%" y="629" width="0.0136%" height="15" fill="rgb(241,66,40)" fg:x="248054" fg:w="71"/><text x="47.9178%" y="639.50"></text></g><g><title>split_leaf (155 samples, 0.03%)</title><rect x="47.6537%" y="661" width="0.0298%" height="15" fill="rgb(249,184,29)" fg:x="247981" fg:w="155"/><text x="47.9037%" y="671.50"></text></g><g><title>push_leaf_left (85 samples, 0.02%)</title><rect x="47.6672%" y="645" width="0.0163%" height="15" fill="rgb(231,181,1)" fg:x="248051" fg:w="85"/><text x="47.9172%" y="655.50"></text></g><g><title>btrfs_search_slot (487 samples, 0.09%)</title><rect x="47.5972%" y="677" width="0.0936%" height="15" fill="rgb(224,94,2)" fg:x="247687" fg:w="487"/><text x="47.8472%" y="687.50"></text></g><g><title>btrfs_get_token_32 (53 samples, 0.01%)</title><rect x="47.7001%" y="661" width="0.0102%" height="15" fill="rgb(229,170,15)" fg:x="248222" fg:w="53"/><text x="47.9501%" y="671.50"></text></g><g><title>btrfs_set_token_32 (73 samples, 0.01%)</title><rect x="47.7175%" y="661" width="0.0140%" height="15" fill="rgb(240,127,35)" fg:x="248313" fg:w="73"/><text x="47.9675%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (764 samples, 0.15%)</title><rect x="47.5970%" y="693" width="0.1468%" height="15" fill="rgb(248,196,34)" fg:x="247686" fg:w="764"/><text x="47.8470%" y="703.50"></text></g><g><title>setup_items_for_insert (276 samples, 0.05%)</title><rect x="47.6908%" y="677" width="0.0530%" height="15" fill="rgb(236,137,7)" fg:x="248174" fg:w="276"/><text x="47.9408%" y="687.50"></text></g><g><title>fill_inode_item (108 samples, 0.02%)</title><rect x="47.7540%" y="693" width="0.0208%" height="15" fill="rgb(235,127,16)" fg:x="248503" fg:w="108"/><text x="48.0040%" y="703.50"></text></g><g><title>inode_tree_add (150 samples, 0.03%)</title><rect x="47.7767%" y="693" width="0.0288%" height="15" fill="rgb(250,192,54)" fg:x="248621" fg:w="150"/><text x="48.0267%" y="703.50"></text></g><g><title>insert_inode_locked4 (80 samples, 0.02%)</title><rect x="47.8056%" y="693" width="0.0154%" height="15" fill="rgb(218,98,20)" fg:x="248771" fg:w="80"/><text x="48.0556%" y="703.50"></text></g><g><title>inode_insert5 (80 samples, 0.02%)</title><rect x="47.8056%" y="677" width="0.0154%" height="15" fill="rgb(230,176,47)" fg:x="248771" fg:w="80"/><text x="48.0556%" y="687.50"></text></g><g><title>find_inode (66 samples, 0.01%)</title><rect x="47.8082%" y="661" width="0.0127%" height="15" fill="rgb(244,2,33)" fg:x="248785" fg:w="66"/><text x="48.0582%" y="671.50"></text></g><g><title>btrfs_alloc_inode (93 samples, 0.02%)</title><rect x="47.8309%" y="661" width="0.0179%" height="15" fill="rgb(231,100,17)" fg:x="248903" fg:w="93"/><text x="48.0809%" y="671.50"></text></g><g><title>kmem_cache_alloc (66 samples, 0.01%)</title><rect x="47.8361%" y="645" width="0.0127%" height="15" fill="rgb(245,23,12)" fg:x="248930" fg:w="66"/><text x="48.0861%" y="655.50"></text></g><g><title>alloc_inode (132 samples, 0.03%)</title><rect x="47.8305%" y="677" width="0.0254%" height="15" fill="rgb(249,55,22)" fg:x="248901" fg:w="132"/><text x="48.0805%" y="687.50"></text></g><g><title>new_inode (165 samples, 0.03%)</title><rect x="47.8255%" y="693" width="0.0317%" height="15" fill="rgb(207,134,9)" fg:x="248875" fg:w="165"/><text x="48.0755%" y="703.50"></text></g><g><title>btrfs_new_inode (1,431 samples, 0.27%)</title><rect x="47.5826%" y="709" width="0.2750%" height="15" fill="rgb(218,134,0)" fg:x="247611" fg:w="1431"/><text x="47.8326%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (117 samples, 0.02%)</title><rect x="47.8724%" y="677" width="0.0225%" height="15" fill="rgb(213,212,33)" fg:x="249119" fg:w="117"/><text x="48.1224%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (209 samples, 0.04%)</title><rect x="47.8594%" y="693" width="0.0402%" height="15" fill="rgb(252,106,18)" fg:x="249051" fg:w="209"/><text x="48.1094%" y="703.50"></text></g><g><title>btrfs_update_inode (232 samples, 0.04%)</title><rect x="47.8578%" y="709" width="0.0446%" height="15" fill="rgb(208,126,42)" fg:x="249043" fg:w="232"/><text x="48.1078%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (76 samples, 0.01%)</title><rect x="47.9143%" y="693" width="0.0146%" height="15" fill="rgb(246,175,29)" fg:x="249337" fg:w="76"/><text x="48.1643%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (71 samples, 0.01%)</title><rect x="47.9153%" y="677" width="0.0136%" height="15" fill="rgb(215,13,50)" fg:x="249342" fg:w="71"/><text x="48.1653%" y="687.50"></text></g><g><title>__reserve_bytes (70 samples, 0.01%)</title><rect x="47.9155%" y="661" width="0.0135%" height="15" fill="rgb(216,172,15)" fg:x="249343" fg:w="70"/><text x="48.1655%" y="671.50"></text></g><g><title>btrfs_mkdir (3,221 samples, 0.62%)</title><rect x="47.3186%" y="725" width="0.6190%" height="15" fill="rgb(212,103,13)" fg:x="246237" fg:w="3221"/><text x="47.5686%" y="735.50"></text></g><g><title>start_transaction (144 samples, 0.03%)</title><rect x="47.9099%" y="709" width="0.0277%" height="15" fill="rgb(231,171,36)" fg:x="249314" fg:w="144"/><text x="48.1599%" y="719.50"></text></g><g><title>do_mkdirat (4,738 samples, 0.91%)</title><rect x="47.0294%" y="757" width="0.9105%" height="15" fill="rgb(250,123,20)" fg:x="244732" fg:w="4738"/><text x="47.2794%" y="767.50"></text></g><g><title>vfs_mkdir (3,241 samples, 0.62%)</title><rect x="47.3171%" y="741" width="0.6228%" height="15" fill="rgb(212,53,50)" fg:x="246229" fg:w="3241"/><text x="47.5671%" y="751.50"></text></g><g><title>do_syscall_64 (4,744 samples, 0.91%)</title><rect x="47.0288%" y="773" width="0.9116%" height="15" fill="rgb(243,54,12)" fg:x="244729" fg:w="4744"/><text x="47.2788%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,750 samples, 0.91%)</title><rect x="47.0282%" y="789" width="0.9128%" height="15" fill="rgb(234,101,34)" fg:x="244726" fg:w="4750"/><text x="47.2782%" y="799.50"></text></g><g><title>__GI___mkdir (4,796 samples, 0.92%)</title><rect x="47.0227%" y="805" width="0.9216%" height="15" fill="rgb(254,67,22)" fg:x="244697" fg:w="4796"/><text x="47.2727%" y="815.50"></text></g><g><title>btrfs_filldir (355 samples, 0.07%)</title><rect x="48.0265%" y="693" width="0.0682%" height="15" fill="rgb(250,35,47)" fg:x="249921" fg:w="355"/><text x="48.2765%" y="703.50"></text></g><g><title>filldir64 (323 samples, 0.06%)</title><rect x="48.0327%" y="677" width="0.0621%" height="15" fill="rgb(226,126,38)" fg:x="249953" fg:w="323"/><text x="48.2827%" y="687.50"></text></g><g><title>verify_dirent_name (101 samples, 0.02%)</title><rect x="48.0754%" y="661" width="0.0194%" height="15" fill="rgb(216,138,53)" fg:x="250175" fg:w="101"/><text x="48.3254%" y="671.50"></text></g><g><title>memchr (76 samples, 0.01%)</title><rect x="48.0802%" y="645" width="0.0146%" height="15" fill="rgb(246,199,43)" fg:x="250200" fg:w="76"/><text x="48.3302%" y="655.50"></text></g><g><title>btrfs_get_16 (64 samples, 0.01%)</title><rect x="48.0957%" y="693" width="0.0123%" height="15" fill="rgb(232,125,11)" fg:x="250281" fg:w="64"/><text x="48.3457%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (62 samples, 0.01%)</title><rect x="48.1194%" y="693" width="0.0119%" height="15" fill="rgb(218,219,45)" fg:x="250404" fg:w="62"/><text x="48.3694%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (57 samples, 0.01%)</title><rect x="48.1328%" y="677" width="0.0110%" height="15" fill="rgb(216,102,54)" fg:x="250474" fg:w="57"/><text x="48.3828%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (109 samples, 0.02%)</title><rect x="48.1313%" y="693" width="0.0209%" height="15" fill="rgb(250,228,7)" fg:x="250466" fg:w="109"/><text x="48.3813%" y="703.50"></text></g><g><title>btrfs_release_path (106 samples, 0.02%)</title><rect x="48.1539%" y="693" width="0.0204%" height="15" fill="rgb(226,125,25)" fg:x="250584" fg:w="106"/><text x="48.4039%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (179 samples, 0.03%)</title><rect x="48.2056%" y="677" width="0.0344%" height="15" fill="rgb(224,165,27)" fg:x="250853" fg:w="179"/><text x="48.4556%" y="687.50"></text></g><g><title>__radix_tree_lookup (119 samples, 0.02%)</title><rect x="48.2581%" y="645" width="0.0229%" height="15" fill="rgb(233,86,3)" fg:x="251126" fg:w="119"/><text x="48.5081%" y="655.50"></text></g><g><title>find_extent_buffer (207 samples, 0.04%)</title><rect x="48.2506%" y="661" width="0.0398%" height="15" fill="rgb(228,116,20)" fg:x="251087" fg:w="207"/><text x="48.5006%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (300 samples, 0.06%)</title><rect x="48.2400%" y="677" width="0.0577%" height="15" fill="rgb(209,192,17)" fg:x="251032" fg:w="300"/><text x="48.4900%" y="687.50"></text></g><g><title>btrfs_search_slot (672 samples, 0.13%)</title><rect x="48.1743%" y="693" width="0.1291%" height="15" fill="rgb(224,88,34)" fg:x="250690" fg:w="672"/><text x="48.4243%" y="703.50"></text></g><g><title>btrfs_real_readdir (2,058 samples, 0.40%)</title><rect x="47.9975%" y="709" width="0.3955%" height="15" fill="rgb(233,38,6)" fg:x="249770" fg:w="2058"/><text x="48.2475%" y="719.50"></text></g><g><title>read_extent_buffer (320 samples, 0.06%)</title><rect x="48.3315%" y="693" width="0.0615%" height="15" fill="rgb(212,59,30)" fg:x="251508" fg:w="320"/><text x="48.5815%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (82 samples, 0.02%)</title><rect x="48.4318%" y="645" width="0.0158%" height="15" fill="rgb(213,80,3)" fg:x="252030" fg:w="82"/><text x="48.6818%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (78 samples, 0.01%)</title><rect x="48.4326%" y="629" width="0.0150%" height="15" fill="rgb(251,178,7)" fg:x="252034" fg:w="78"/><text x="48.6826%" y="639.50"></text></g><g><title>__reserve_bytes (75 samples, 0.01%)</title><rect x="48.4332%" y="613" width="0.0144%" height="15" fill="rgb(213,154,26)" fg:x="252037" fg:w="75"/><text x="48.6832%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (148 samples, 0.03%)</title><rect x="48.4230%" y="661" width="0.0284%" height="15" fill="rgb(238,165,49)" fg:x="251984" fg:w="148"/><text x="48.6730%" y="671.50"></text></g><g><title>btrfs_update_inode (162 samples, 0.03%)</title><rect x="48.4218%" y="677" width="0.0311%" height="15" fill="rgb(248,91,46)" fg:x="251978" fg:w="162"/><text x="48.6718%" y="687.50"></text></g><g><title>btrfs_dirty_inode (254 samples, 0.05%)</title><rect x="48.4161%" y="693" width="0.0488%" height="15" fill="rgb(244,21,52)" fg:x="251948" fg:w="254"/><text x="48.6661%" y="703.50"></text></g><g><title>start_transaction (62 samples, 0.01%)</title><rect x="48.4530%" y="677" width="0.0119%" height="15" fill="rgb(247,122,20)" fg:x="252140" fg:w="62"/><text x="48.7030%" y="687.50"></text></g><g><title>touch_atime (311 samples, 0.06%)</title><rect x="48.4057%" y="709" width="0.0598%" height="15" fill="rgb(218,27,9)" fg:x="251894" fg:w="311"/><text x="48.6557%" y="719.50"></text></g><g><title>iterate_dir (2,458 samples, 0.47%)</title><rect x="47.9948%" y="725" width="0.4723%" height="15" fill="rgb(246,7,6)" fg:x="249756" fg:w="2458"/><text x="48.2448%" y="735.50"></text></g><g><title>__x64_sys_getdents64 (2,539 samples, 0.49%)</title><rect x="47.9810%" y="741" width="0.4879%" height="15" fill="rgb(227,135,54)" fg:x="249684" fg:w="2539"/><text x="48.2310%" y="751.50"></text></g><g><title>do_syscall_64 (2,543 samples, 0.49%)</title><rect x="47.9810%" y="757" width="0.4887%" height="15" fill="rgb(247,14,11)" fg:x="249684" fg:w="2543"/><text x="48.2310%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,559 samples, 0.49%)</title><rect x="47.9795%" y="773" width="0.4918%" height="15" fill="rgb(206,149,34)" fg:x="249676" fg:w="2559"/><text x="48.2295%" y="783.50"></text></g><g><title>__GI___getdents64 (2,603 samples, 0.50%)</title><rect x="47.9725%" y="789" width="0.5002%" height="15" fill="rgb(227,228,4)" fg:x="249640" fg:w="2603"/><text x="48.2225%" y="799.50"></text></g><g><title>__GI___readdir64 (2,751 samples, 0.53%)</title><rect x="47.9443%" y="805" width="0.5287%" height="15" fill="rgb(238,218,28)" fg:x="249493" fg:w="2751"/><text x="48.1943%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (319 samples, 0.06%)</title><rect x="48.5531%" y="789" width="0.0613%" height="15" fill="rgb(252,86,40)" fg:x="252661" fg:w="319"/><text x="48.8031%" y="799.50"></text></g><g><title>_copy_to_user (345 samples, 0.07%)</title><rect x="48.6809%" y="725" width="0.0663%" height="15" fill="rgb(251,225,11)" fg:x="253326" fg:w="345"/><text x="48.9309%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (297 samples, 0.06%)</title><rect x="48.6901%" y="709" width="0.0571%" height="15" fill="rgb(206,46,49)" fg:x="253374" fg:w="297"/><text x="48.9401%" y="719.50"></text></g><g><title>from_kgid_munged (65 samples, 0.01%)</title><rect x="48.7472%" y="725" width="0.0125%" height="15" fill="rgb(245,128,24)" fg:x="253671" fg:w="65"/><text x="48.9972%" y="735.50"></text></g><g><title>map_id_up (57 samples, 0.01%)</title><rect x="48.7487%" y="709" width="0.0110%" height="15" fill="rgb(219,177,34)" fg:x="253679" fg:w="57"/><text x="48.9987%" y="719.50"></text></g><g><title>cp_new_stat (569 samples, 0.11%)</title><rect x="48.6609%" y="741" width="0.1093%" height="15" fill="rgb(218,60,48)" fg:x="253222" fg:w="569"/><text x="48.9109%" y="751.50"></text></g><g><title>from_kuid_munged (55 samples, 0.01%)</title><rect x="48.7597%" y="725" width="0.0106%" height="15" fill="rgb(221,11,5)" fg:x="253736" fg:w="55"/><text x="49.0097%" y="735.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.02%)</title><rect x="48.9017%" y="709" width="0.0233%" height="15" fill="rgb(220,148,13)" fg:x="254475" fg:w="121"/><text x="49.1517%" y="719.50"></text></g><g><title>generic_fillattr (121 samples, 0.02%)</title><rect x="48.9253%" y="709" width="0.0233%" height="15" fill="rgb(210,16,3)" fg:x="254598" fg:w="121"/><text x="49.1753%" y="719.50"></text></g><g><title>btrfs_getattr (939 samples, 0.18%)</title><rect x="48.7946%" y="725" width="0.1804%" height="15" fill="rgb(236,80,2)" fg:x="253918" fg:w="939"/><text x="49.0446%" y="735.50"></text></g><g><title>inode_get_bytes (138 samples, 0.03%)</title><rect x="48.9486%" y="709" width="0.0265%" height="15" fill="rgb(239,129,19)" fg:x="254719" fg:w="138"/><text x="49.1986%" y="719.50"></text></g><g><title>_raw_spin_lock (117 samples, 0.02%)</title><rect x="48.9526%" y="693" width="0.0225%" height="15" fill="rgb(220,106,35)" fg:x="254740" fg:w="117"/><text x="49.2026%" y="703.50"></text></g><g><title>kmem_cache_free (378 samples, 0.07%)</title><rect x="49.0035%" y="709" width="0.0726%" height="15" fill="rgb(252,139,45)" fg:x="255005" fg:w="378"/><text x="49.2535%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (80 samples, 0.02%)</title><rect x="49.0608%" y="693" width="0.0154%" height="15" fill="rgb(229,8,36)" fg:x="255303" fg:w="80"/><text x="49.3108%" y="703.50"></text></g><g><title>__legitimize_mnt (164 samples, 0.03%)</title><rect x="49.1113%" y="645" width="0.0315%" height="15" fill="rgb(230,126,33)" fg:x="255566" fg:w="164"/><text x="49.3613%" y="655.50"></text></g><g><title>__legitimize_path (309 samples, 0.06%)</title><rect x="49.1088%" y="661" width="0.0594%" height="15" fill="rgb(239,140,21)" fg:x="255553" fg:w="309"/><text x="49.3588%" y="671.50"></text></g><g><title>lockref_get_not_dead (132 samples, 0.03%)</title><rect x="49.1428%" y="645" width="0.0254%" height="15" fill="rgb(254,104,9)" fg:x="255730" fg:w="132"/><text x="49.3928%" y="655.50"></text></g><g><title>complete_walk (397 samples, 0.08%)</title><rect x="49.0996%" y="693" width="0.0763%" height="15" fill="rgb(239,52,14)" fg:x="255505" fg:w="397"/><text x="49.3496%" y="703.50"></text></g><g><title>try_to_unlazy (379 samples, 0.07%)</title><rect x="49.1031%" y="677" width="0.0728%" height="15" fill="rgb(208,227,44)" fg:x="255523" fg:w="379"/><text x="49.3531%" y="687.50"></text></g><g><title>btrfs_permission (274 samples, 0.05%)</title><rect x="50.2809%" y="661" width="0.0527%" height="15" fill="rgb(246,18,19)" fg:x="261652" fg:w="274"/><text x="50.5309%" y="671.50"></text></g><g><title>inode_permission.part.0 (3,510 samples, 0.67%)</title><rect x="49.9021%" y="677" width="0.6745%" height="15" fill="rgb(235,228,25)" fg:x="259681" fg:w="3510"/><text x="50.1521%" y="687.50"></text></g><g><title>generic_permission (1,265 samples, 0.24%)</title><rect x="50.3335%" y="661" width="0.2431%" height="15" fill="rgb(240,156,20)" fg:x="261926" fg:w="1265"/><text x="50.5835%" y="671.50"></text></g><g><title>security_inode_permission (453 samples, 0.09%)</title><rect x="50.5766%" y="677" width="0.0871%" height="15" fill="rgb(224,8,20)" fg:x="263191" fg:w="453"/><text x="50.8266%" y="687.50"></text></g><g><title>__d_lookup_rcu (5,304 samples, 1.02%)</title><rect x="51.2334%" y="645" width="1.0193%" height="15" fill="rgb(214,12,52)" fg:x="266609" fg:w="5304"/><text x="51.4834%" y="655.50"></text></g><g><title>lookup_fast (6,881 samples, 1.32%)</title><rect x="50.9308%" y="661" width="1.3223%" height="15" fill="rgb(211,220,47)" fg:x="265034" fg:w="6881"/><text x="51.1808%" y="671.50"></text></g><g><title>page_put_link (99 samples, 0.02%)</title><rect x="52.2531%" y="661" width="0.0190%" height="15" fill="rgb(250,173,5)" fg:x="271915" fg:w="99"/><text x="52.5031%" y="671.50"></text></g><g><title>__lookup_mnt (135 samples, 0.03%)</title><rect x="52.6097%" y="645" width="0.0259%" height="15" fill="rgb(250,125,52)" fg:x="273771" fg:w="135"/><text x="52.8597%" y="655.50"></text></g><g><title>atime_needs_update (158 samples, 0.03%)</title><rect x="52.6368%" y="645" width="0.0304%" height="15" fill="rgb(209,133,18)" fg:x="273912" fg:w="158"/><text x="52.8868%" y="655.50"></text></g><g><title>current_time (105 samples, 0.02%)</title><rect x="52.6470%" y="629" width="0.0202%" height="15" fill="rgb(216,173,22)" fg:x="273965" fg:w="105"/><text x="52.8970%" y="639.50"></text></g><g><title>nd_jump_root (88 samples, 0.02%)</title><rect x="52.6672%" y="645" width="0.0169%" height="15" fill="rgb(205,3,22)" fg:x="274070" fg:w="88"/><text x="52.9172%" y="655.50"></text></g><g><title>page_get_link (359 samples, 0.07%)</title><rect x="52.6841%" y="645" width="0.0690%" height="15" fill="rgb(248,22,20)" fg:x="274158" fg:w="359"/><text x="52.9341%" y="655.50"></text></g><g><title>pagecache_get_page (290 samples, 0.06%)</title><rect x="52.6974%" y="629" width="0.0557%" height="15" fill="rgb(233,6,29)" fg:x="274227" fg:w="290"/><text x="52.9474%" y="639.50"></text></g><g><title>find_get_entry (209 samples, 0.04%)</title><rect x="52.7129%" y="613" width="0.0402%" height="15" fill="rgb(240,22,54)" fg:x="274308" fg:w="209"/><text x="52.9629%" y="623.50"></text></g><g><title>link_path_walk.part.0 (18,632 samples, 3.58%)</title><rect x="49.1759%" y="693" width="3.5805%" height="15" fill="rgb(231,133,32)" fg:x="255902" fg:w="18632"/><text x="49.4259%" y="703.50">link..</text></g><g><title>walk_component (10,890 samples, 2.09%)</title><rect x="50.6636%" y="677" width="2.0927%" height="15" fill="rgb(248,193,4)" fg:x="263644" fg:w="10890"/><text x="50.9136%" y="687.50">w..</text></g><g><title>step_into (2,519 samples, 0.48%)</title><rect x="52.2723%" y="661" width="0.4841%" height="15" fill="rgb(211,178,46)" fg:x="272015" fg:w="2519"/><text x="52.5223%" y="671.50"></text></g><g><title>path_init (443 samples, 0.09%)</title><rect x="52.7563%" y="693" width="0.0851%" height="15" fill="rgb(224,5,42)" fg:x="274534" fg:w="443"/><text x="53.0063%" y="703.50"></text></g><g><title>nd_jump_root (342 samples, 0.07%)</title><rect x="52.7758%" y="677" width="0.0657%" height="15" fill="rgb(239,176,25)" fg:x="274635" fg:w="342"/><text x="53.0258%" y="687.50"></text></g><g><title>set_root (281 samples, 0.05%)</title><rect x="52.7875%" y="661" width="0.0540%" height="15" fill="rgb(245,187,50)" fg:x="274696" fg:w="281"/><text x="53.0375%" y="671.50"></text></g><g><title>dput (156 samples, 0.03%)</title><rect x="52.8503%" y="677" width="0.0300%" height="15" fill="rgb(248,24,15)" fg:x="275023" fg:w="156"/><text x="53.1003%" y="687.50"></text></g><g><title>lockref_put_or_lock (98 samples, 0.02%)</title><rect x="52.8615%" y="661" width="0.0188%" height="15" fill="rgb(205,166,13)" fg:x="275081" fg:w="98"/><text x="53.1115%" y="671.50"></text></g><g><title>terminate_walk (275 samples, 0.05%)</title><rect x="52.8415%" y="693" width="0.0528%" height="15" fill="rgb(208,114,23)" fg:x="274977" fg:w="275"/><text x="53.0915%" y="703.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (90 samples, 0.02%)</title><rect x="52.9416%" y="597" width="0.0173%" height="15" fill="rgb(239,127,18)" fg:x="275498" fg:w="90"/><text x="53.1916%" y="607.50"></text></g><g><title>free_extent_buffer.part.0 (235 samples, 0.05%)</title><rect x="52.9600%" y="597" width="0.0452%" height="15" fill="rgb(219,154,28)" fg:x="275594" fg:w="235"/><text x="53.2100%" y="607.50"></text></g><g><title>_raw_spin_lock (151 samples, 0.03%)</title><rect x="52.9762%" y="581" width="0.0290%" height="15" fill="rgb(225,157,23)" fg:x="275678" fg:w="151"/><text x="53.2262%" y="591.50"></text></g><g><title>btrfs_free_path (550 samples, 0.11%)</title><rect x="52.9301%" y="629" width="0.1057%" height="15" fill="rgb(219,8,6)" fg:x="275438" fg:w="550"/><text x="53.1801%" y="639.50"></text></g><g><title>btrfs_release_path (533 samples, 0.10%)</title><rect x="52.9333%" y="613" width="0.1024%" height="15" fill="rgb(212,47,6)" fg:x="275455" fg:w="533"/><text x="53.1833%" y="623.50"></text></g><g><title>release_extent_buffer (159 samples, 0.03%)</title><rect x="53.0052%" y="597" width="0.0306%" height="15" fill="rgb(224,190,4)" fg:x="275829" fg:w="159"/><text x="53.2552%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (88 samples, 0.02%)</title><rect x="53.1295%" y="581" width="0.0169%" height="15" fill="rgb(239,183,29)" fg:x="276476" fg:w="88"/><text x="53.3795%" y="591.50"></text></g><g><title>_raw_read_lock (58 samples, 0.01%)</title><rect x="53.1353%" y="565" width="0.0111%" height="15" fill="rgb(213,57,7)" fg:x="276506" fg:w="58"/><text x="53.3853%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (232 samples, 0.04%)</title><rect x="53.1278%" y="597" width="0.0446%" height="15" fill="rgb(216,148,1)" fg:x="276467" fg:w="232"/><text x="53.3778%" y="607.50"></text></g><g><title>btrfs_root_node (135 samples, 0.03%)</title><rect x="53.1464%" y="581" width="0.0259%" height="15" fill="rgb(236,182,29)" fg:x="276564" fg:w="135"/><text x="53.3964%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (152 samples, 0.03%)</title><rect x="53.1724%" y="597" width="0.0292%" height="15" fill="rgb(244,120,48)" fg:x="276699" fg:w="152"/><text x="53.4224%" y="607.50"></text></g><g><title>schedule (118 samples, 0.02%)</title><rect x="53.1789%" y="581" width="0.0227%" height="15" fill="rgb(206,71,34)" fg:x="276733" fg:w="118"/><text x="53.4289%" y="591.50"></text></g><g><title>__schedule (112 samples, 0.02%)</title><rect x="53.1801%" y="565" width="0.0215%" height="15" fill="rgb(242,32,6)" fg:x="276739" fg:w="112"/><text x="53.4301%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (220 samples, 0.04%)</title><rect x="53.2106%" y="597" width="0.0423%" height="15" fill="rgb(241,35,3)" fg:x="276898" fg:w="220"/><text x="53.4606%" y="607.50"></text></g><g><title>btrfs_set_lock_blocking_read (169 samples, 0.03%)</title><rect x="53.2204%" y="581" width="0.0325%" height="15" fill="rgb(222,62,19)" fg:x="276949" fg:w="169"/><text x="53.4704%" y="591.50"></text></g><g><title>_raw_read_lock (103 samples, 0.02%)</title><rect x="53.2602%" y="581" width="0.0198%" height="15" fill="rgb(223,110,41)" fg:x="277156" fg:w="103"/><text x="53.5102%" y="591.50"></text></g><g><title>btrfs_tree_read_lock_atomic (213 samples, 0.04%)</title><rect x="53.2529%" y="597" width="0.0409%" height="15" fill="rgb(208,224,4)" fg:x="277118" fg:w="213"/><text x="53.5029%" y="607.50"></text></g><g><title>queued_read_lock_slowpath (72 samples, 0.01%)</title><rect x="53.2800%" y="581" width="0.0138%" height="15" fill="rgb(241,137,19)" fg:x="277259" fg:w="72"/><text x="53.5300%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock (112 samples, 0.02%)</title><rect x="53.2938%" y="597" width="0.0215%" height="15" fill="rgb(244,24,17)" fg:x="277331" fg:w="112"/><text x="53.5438%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,185 samples, 0.23%)</title><rect x="53.3163%" y="597" width="0.2277%" height="15" fill="rgb(245,178,49)" fg:x="277448" fg:w="1185"/><text x="53.5663%" y="607.50"></text></g><g><title>btrfs_buffer_uptodate (109 samples, 0.02%)</title><rect x="53.5746%" y="581" width="0.0209%" height="15" fill="rgb(219,160,38)" fg:x="278792" fg:w="109"/><text x="53.8246%" y="591.50"></text></g><g><title>verify_parent_transid (67 samples, 0.01%)</title><rect x="53.5827%" y="565" width="0.0129%" height="15" fill="rgb(228,137,14)" fg:x="278834" fg:w="67"/><text x="53.8327%" y="575.50"></text></g><g><title>btrfs_get_64 (115 samples, 0.02%)</title><rect x="53.5955%" y="581" width="0.0221%" height="15" fill="rgb(237,134,11)" fg:x="278901" fg:w="115"/><text x="53.8455%" y="591.50"></text></g><g><title>__radix_tree_lookup (888 samples, 0.17%)</title><rect x="53.6762%" y="565" width="0.1706%" height="15" fill="rgb(211,126,44)" fg:x="279321" fg:w="888"/><text x="53.9262%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (281 samples, 0.05%)</title><rect x="53.8469%" y="565" width="0.0540%" height="15" fill="rgb(226,171,33)" fg:x="280209" fg:w="281"/><text x="54.0969%" y="575.50"></text></g><g><title>mark_page_accessed (198 samples, 0.04%)</title><rect x="53.8628%" y="549" width="0.0380%" height="15" fill="rgb(253,99,13)" fg:x="280292" fg:w="198"/><text x="54.1128%" y="559.50"></text></g><g><title>find_extent_buffer (1,427 samples, 0.27%)</title><rect x="53.6286%" y="581" width="0.2742%" height="15" fill="rgb(244,48,7)" fg:x="279073" fg:w="1427"/><text x="53.8786%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (2,027 samples, 0.39%)</title><rect x="53.5440%" y="597" width="0.3895%" height="15" fill="rgb(244,217,54)" fg:x="278633" fg:w="2027"/><text x="53.7940%" y="607.50"></text></g><g><title>read_extent_buffer (160 samples, 0.03%)</title><rect x="53.9028%" y="581" width="0.0307%" height="15" fill="rgb(224,15,18)" fg:x="280500" fg:w="160"/><text x="54.1528%" y="591.50"></text></g><g><title>btrfs_search_slot (4,687 samples, 0.90%)</title><rect x="53.0550%" y="613" width="0.9007%" height="15" fill="rgb(244,99,12)" fg:x="276088" fg:w="4687"/><text x="53.3050%" y="623.50"></text></g><g><title>unlock_up (115 samples, 0.02%)</title><rect x="53.9336%" y="597" width="0.0221%" height="15" fill="rgb(233,226,8)" fg:x="280660" fg:w="115"/><text x="54.1836%" y="607.50"></text></g><g><title>btrfs_lookup_dir_item (5,070 samples, 0.97%)</title><rect x="53.0358%" y="629" width="0.9743%" height="15" fill="rgb(229,211,3)" fg:x="275988" fg:w="5070"/><text x="53.2858%" y="639.50"></text></g><g><title>crc32c (283 samples, 0.05%)</title><rect x="53.9557%" y="613" width="0.0544%" height="15" fill="rgb(216,140,21)" fg:x="280775" fg:w="283"/><text x="54.2057%" y="623.50"></text></g><g><title>crypto_shash_update (174 samples, 0.03%)</title><rect x="53.9766%" y="597" width="0.0334%" height="15" fill="rgb(234,122,30)" fg:x="280884" fg:w="174"/><text x="54.2266%" y="607.50"></text></g><g><title>kmem_cache_alloc (239 samples, 0.05%)</title><rect x="54.0100%" y="629" width="0.0459%" height="15" fill="rgb(236,25,46)" fg:x="281058" fg:w="239"/><text x="54.2600%" y="639.50"></text></g><g><title>btrfs_lookup (6,050 samples, 1.16%)</title><rect x="52.9149%" y="661" width="1.1626%" height="15" fill="rgb(217,52,54)" fg:x="275359" fg:w="6050"/><text x="53.1649%" y="671.50"></text></g><g><title>btrfs_lookup_dentry (6,041 samples, 1.16%)</title><rect x="52.9166%" y="645" width="1.1609%" height="15" fill="rgb(222,29,26)" fg:x="275368" fg:w="6041"/><text x="53.1666%" y="655.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="54.0560%" y="629" width="0.0215%" height="15" fill="rgb(216,177,29)" fg:x="281297" fg:w="112"/><text x="54.3060%" y="639.50"></text></g><g><title>__list_del_entry_valid (73 samples, 0.01%)</title><rect x="54.2285%" y="549" width="0.0140%" height="15" fill="rgb(247,136,51)" fg:x="282195" fg:w="73"/><text x="54.4785%" y="559.50"></text></g><g><title>__slab_alloc (292 samples, 0.06%)</title><rect x="54.1876%" y="597" width="0.0561%" height="15" fill="rgb(231,47,47)" fg:x="281982" fg:w="292"/><text x="54.4376%" y="607.50"></text></g><g><title>___slab_alloc (272 samples, 0.05%)</title><rect x="54.1914%" y="581" width="0.0523%" height="15" fill="rgb(211,192,36)" fg:x="282002" fg:w="272"/><text x="54.4414%" y="591.50"></text></g><g><title>get_partial_node.part.0 (115 samples, 0.02%)</title><rect x="54.2216%" y="565" width="0.0221%" height="15" fill="rgb(229,156,32)" fg:x="282159" fg:w="115"/><text x="54.4716%" y="575.50"></text></g><g><title>__mod_memcg_lruvec_state (142 samples, 0.03%)</title><rect x="54.3250%" y="581" width="0.0273%" height="15" fill="rgb(248,213,20)" fg:x="282697" fg:w="142"/><text x="54.5750%" y="591.50"></text></g><g><title>__mod_memcg_state.part.0 (87 samples, 0.02%)</title><rect x="54.3356%" y="565" width="0.0167%" height="15" fill="rgb(217,64,7)" fg:x="282752" fg:w="87"/><text x="54.5856%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (585 samples, 0.11%)</title><rect x="54.2437%" y="597" width="0.1124%" height="15" fill="rgb(232,142,8)" fg:x="282274" fg:w="585"/><text x="54.4937%" y="607.50"></text></g><g><title>memset_erms (63 samples, 0.01%)</title><rect x="54.3565%" y="597" width="0.0121%" height="15" fill="rgb(224,92,44)" fg:x="282861" fg:w="63"/><text x="54.6065%" y="607.50"></text></g><g><title>get_obj_cgroup_from_current (313 samples, 0.06%)</title><rect x="54.3900%" y="581" width="0.0601%" height="15" fill="rgb(214,169,17)" fg:x="283035" fg:w="313"/><text x="54.6400%" y="591.50"></text></g><g><title>obj_cgroup_charge (135 samples, 0.03%)</title><rect x="54.4501%" y="581" width="0.0259%" height="15" fill="rgb(210,59,37)" fg:x="283348" fg:w="135"/><text x="54.7001%" y="591.50"></text></g><g><title>kmem_cache_alloc (1,720 samples, 0.33%)</title><rect x="54.1463%" y="613" width="0.3305%" height="15" fill="rgb(214,116,48)" fg:x="281767" fg:w="1720"/><text x="54.3963%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (562 samples, 0.11%)</title><rect x="54.3688%" y="597" width="0.1080%" height="15" fill="rgb(244,191,6)" fg:x="282925" fg:w="562"/><text x="54.6188%" y="607.50"></text></g><g><title>__d_alloc (1,915 samples, 0.37%)</title><rect x="54.1171%" y="629" width="0.3680%" height="15" fill="rgb(241,50,52)" fg:x="281615" fg:w="1915"/><text x="54.3671%" y="639.50"></text></g><g><title>d_alloc (2,039 samples, 0.39%)</title><rect x="54.1121%" y="645" width="0.3918%" height="15" fill="rgb(236,75,39)" fg:x="281589" fg:w="2039"/><text x="54.3621%" y="655.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="54.4907%" y="629" width="0.0133%" height="15" fill="rgb(236,99,0)" fg:x="283559" fg:w="69"/><text x="54.7407%" y="639.50"></text></g><g><title>d_alloc_parallel (2,220 samples, 0.43%)</title><rect x="54.0775%" y="661" width="0.4266%" height="15" fill="rgb(207,202,15)" fg:x="281409" fg:w="2220"/><text x="54.3275%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (62 samples, 0.01%)</title><rect x="54.5541%" y="597" width="0.0119%" height="15" fill="rgb(233,207,14)" fg:x="283889" fg:w="62"/><text x="54.8041%" y="607.50"></text></g><g><title>__d_lookup_done (285 samples, 0.05%)</title><rect x="54.5174%" y="629" width="0.0548%" height="15" fill="rgb(226,27,51)" fg:x="283698" fg:w="285"/><text x="54.7674%" y="639.50"></text></g><g><title>__wake_up_common_lock (156 samples, 0.03%)</title><rect x="54.5422%" y="613" width="0.0300%" height="15" fill="rgb(206,104,42)" fg:x="283827" fg:w="156"/><text x="54.7922%" y="623.50"></text></g><g><title>__d_rehash (103 samples, 0.02%)</title><rect x="54.5721%" y="629" width="0.0198%" height="15" fill="rgb(212,225,4)" fg:x="283983" fg:w="103"/><text x="54.8221%" y="639.50"></text></g><g><title>__lookup_slow (8,830 samples, 1.70%)</title><rect x="52.9085%" y="677" width="1.6968%" height="15" fill="rgb(233,96,42)" fg:x="275326" fg:w="8830"/><text x="53.1585%" y="687.50"></text></g><g><title>d_splice_alias (527 samples, 0.10%)</title><rect x="54.5041%" y="661" width="0.1013%" height="15" fill="rgb(229,21,32)" fg:x="283629" fg:w="527"/><text x="54.7541%" y="671.50"></text></g><g><title>__d_add (512 samples, 0.10%)</title><rect x="54.5070%" y="645" width="0.0984%" height="15" fill="rgb(226,216,24)" fg:x="283644" fg:w="512"/><text x="54.7570%" y="655.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="54.5919%" y="629" width="0.0135%" height="15" fill="rgb(221,163,17)" fg:x="284086" fg:w="70"/><text x="54.8419%" y="639.50"></text></g><g><title>__d_lookup_rcu (1,865 samples, 0.36%)</title><rect x="54.6275%" y="661" width="0.3584%" height="15" fill="rgb(216,216,42)" fg:x="284271" fg:w="1865"/><text x="54.8775%" y="671.50"></text></g><g><title>__legitimize_mnt (175 samples, 0.03%)</title><rect x="54.9976%" y="629" width="0.0336%" height="15" fill="rgb(240,118,7)" fg:x="286197" fg:w="175"/><text x="55.2476%" y="639.50"></text></g><g><title>__legitimize_path (323 samples, 0.06%)</title><rect x="54.9939%" y="645" width="0.0621%" height="15" fill="rgb(221,67,37)" fg:x="286178" fg:w="323"/><text x="55.2439%" y="655.50"></text></g><g><title>lockref_get_not_dead (129 samples, 0.02%)</title><rect x="55.0312%" y="629" width="0.0248%" height="15" fill="rgb(241,32,44)" fg:x="286372" fg:w="129"/><text x="55.2812%" y="639.50"></text></g><g><title>lookup_fast (2,324 samples, 0.45%)</title><rect x="54.6146%" y="677" width="0.4466%" height="15" fill="rgb(235,204,43)" fg:x="284204" fg:w="2324"/><text x="54.8646%" y="687.50"></text></g><g><title>try_to_unlazy (392 samples, 0.08%)</title><rect x="54.9859%" y="661" width="0.0753%" height="15" fill="rgb(213,116,10)" fg:x="286136" fg:w="392"/><text x="55.2359%" y="671.50"></text></g><g><title>_raw_spin_lock (167 samples, 0.03%)</title><rect x="55.1238%" y="613" width="0.0321%" height="15" fill="rgb(239,15,48)" fg:x="286854" fg:w="167"/><text x="55.3738%" y="623.50"></text></g><g><title>d_lru_add (361 samples, 0.07%)</title><rect x="55.0902%" y="645" width="0.0694%" height="15" fill="rgb(207,123,36)" fg:x="286679" fg:w="361"/><text x="55.3402%" y="655.50"></text></g><g><title>list_lru_add (338 samples, 0.06%)</title><rect x="55.0946%" y="629" width="0.0650%" height="15" fill="rgb(209,103,30)" fg:x="286702" fg:w="338"/><text x="55.3446%" y="639.50"></text></g><g><title>lockref_put_or_lock (71 samples, 0.01%)</title><rect x="55.1596%" y="645" width="0.0136%" height="15" fill="rgb(238,100,19)" fg:x="287040" fg:w="71"/><text x="55.4096%" y="655.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="55.1629%" y="629" width="0.0104%" height="15" fill="rgb(244,30,14)" fg:x="287057" fg:w="54"/><text x="55.4129%" y="639.50"></text></g><g><title>step_into (584 samples, 0.11%)</title><rect x="55.0612%" y="677" width="0.1122%" height="15" fill="rgb(249,174,6)" fg:x="286528" fg:w="584"/><text x="55.3112%" y="687.50"></text></g><g><title>dput (485 samples, 0.09%)</title><rect x="55.0802%" y="661" width="0.0932%" height="15" fill="rgb(235,213,41)" fg:x="286627" fg:w="485"/><text x="55.3302%" y="671.50"></text></g><g><title>path_lookupat (31,788 samples, 6.11%)</title><rect x="49.0762%" y="709" width="6.1086%" height="15" fill="rgb(213,118,6)" fg:x="255383" fg:w="31788"/><text x="49.3262%" y="719.50">path_loo..</text></g><g><title>walk_component (11,919 samples, 2.29%)</title><rect x="52.8943%" y="693" width="2.2904%" height="15" fill="rgb(235,44,51)" fg:x="275252" fg:w="11919"/><text x="53.1443%" y="703.50">w..</text></g><g><title>up_read (59 samples, 0.01%)</title><rect x="55.1734%" y="677" width="0.0113%" height="15" fill="rgb(217,9,53)" fg:x="287112" fg:w="59"/><text x="55.4234%" y="687.50"></text></g><g><title>filename_lookup (32,329 samples, 6.21%)</title><rect x="48.9751%" y="725" width="6.2126%" height="15" fill="rgb(237,172,34)" fg:x="254857" fg:w="32329"/><text x="49.2251%" y="735.50">filename..</text></g><g><title>lockref_put_or_lock (124 samples, 0.02%)</title><rect x="55.2159%" y="693" width="0.0238%" height="15" fill="rgb(206,206,11)" fg:x="287333" fg:w="124"/><text x="55.4659%" y="703.50"></text></g><g><title>_raw_spin_lock (91 samples, 0.02%)</title><rect x="55.2222%" y="677" width="0.0175%" height="15" fill="rgb(214,149,29)" fg:x="287366" fg:w="91"/><text x="55.4722%" y="687.50"></text></g><g><title>path_put (221 samples, 0.04%)</title><rect x="55.1974%" y="725" width="0.0425%" height="15" fill="rgb(208,123,3)" fg:x="287237" fg:w="221"/><text x="55.4474%" y="735.50"></text></g><g><title>dput (216 samples, 0.04%)</title><rect x="55.1984%" y="709" width="0.0415%" height="15" fill="rgb(229,126,4)" fg:x="287242" fg:w="216"/><text x="55.4484%" y="719.50"></text></g><g><title>apparmor_inode_getattr (82 samples, 0.02%)</title><rect x="55.3396%" y="709" width="0.0158%" height="15" fill="rgb(222,92,36)" fg:x="287977" fg:w="82"/><text x="55.5896%" y="719.50"></text></g><g><title>security_inode_getattr (1,006 samples, 0.19%)</title><rect x="55.2401%" y="725" width="0.1933%" height="15" fill="rgb(216,39,41)" fg:x="287459" fg:w="1006"/><text x="55.4901%" y="735.50"></text></g><g><title>tomoyo_path_perm (395 samples, 0.08%)</title><rect x="55.3575%" y="709" width="0.0759%" height="15" fill="rgb(253,127,28)" fg:x="288070" fg:w="395"/><text x="55.6075%" y="719.50"></text></g><g><title>tomoyo_init_request_info (242 samples, 0.05%)</title><rect x="55.3869%" y="693" width="0.0465%" height="15" fill="rgb(249,152,51)" fg:x="288223" fg:w="242"/><text x="55.6369%" y="703.50"></text></g><g><title>tomoyo_domain (62 samples, 0.01%)</title><rect x="55.4215%" y="677" width="0.0119%" height="15" fill="rgb(209,123,42)" fg:x="288403" fg:w="62"/><text x="55.6715%" y="687.50"></text></g><g><title>memset_erms (975 samples, 0.19%)</title><rect x="55.5437%" y="677" width="0.1874%" height="15" fill="rgb(241,118,22)" fg:x="289039" fg:w="975"/><text x="55.7937%" y="687.50"></text></g><g><title>_cond_resched (58 samples, 0.01%)</title><rect x="55.7780%" y="661" width="0.0111%" height="15" fill="rgb(208,25,7)" fg:x="290258" fg:w="58"/><text x="56.0280%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,693 samples, 0.33%)</title><rect x="55.4657%" y="693" width="0.3253%" height="15" fill="rgb(243,144,39)" fg:x="288633" fg:w="1693"/><text x="55.7157%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (312 samples, 0.06%)</title><rect x="55.7311%" y="677" width="0.0600%" height="15" fill="rgb(250,50,5)" fg:x="290014" fg:w="312"/><text x="55.9811%" y="687.50"></text></g><g><title>__check_heap_object (187 samples, 0.04%)</title><rect x="56.0201%" y="661" width="0.0359%" height="15" fill="rgb(207,67,11)" fg:x="291518" fg:w="187"/><text x="56.2701%" y="671.50"></text></g><g><title>__virt_addr_valid (274 samples, 0.05%)</title><rect x="56.0560%" y="661" width="0.0527%" height="15" fill="rgb(245,204,40)" fg:x="291705" fg:w="274"/><text x="56.3060%" y="671.50"></text></g><g><title>user_path_at_empty (3,528 samples, 0.68%)</title><rect x="55.4334%" y="725" width="0.6780%" height="15" fill="rgb(238,228,24)" fg:x="288465" fg:w="3528"/><text x="55.6834%" y="735.50"></text></g><g><title>getname_flags.part.0 (3,482 samples, 0.67%)</title><rect x="55.4423%" y="709" width="0.6691%" height="15" fill="rgb(217,116,22)" fg:x="288511" fg:w="3482"/><text x="55.6923%" y="719.50"></text></g><g><title>strncpy_from_user (1,667 samples, 0.32%)</title><rect x="55.7910%" y="693" width="0.3203%" height="15" fill="rgb(234,98,12)" fg:x="290326" fg:w="1667"/><text x="56.0410%" y="703.50"></text></g><g><title>__check_object_size (594 samples, 0.11%)</title><rect x="55.9972%" y="677" width="0.1141%" height="15" fill="rgb(242,170,50)" fg:x="291399" fg:w="594"/><text x="56.2472%" y="687.50"></text></g><g><title>__do_sys_newstat (39,060 samples, 7.51%)</title><rect x="48.6469%" y="757" width="7.5060%" height="15" fill="rgb(235,7,5)" fg:x="253149" fg:w="39060"/><text x="48.8969%" y="767.50">__do_sys_n..</text></g><g><title>vfs_statx (38,418 samples, 7.38%)</title><rect x="48.7702%" y="741" width="7.3827%" height="15" fill="rgb(241,114,28)" fg:x="253791" fg:w="38418"/><text x="49.0202%" y="751.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (216 samples, 0.04%)</title><rect x="56.1114%" y="725" width="0.0415%" height="15" fill="rgb(246,112,42)" fg:x="291993" fg:w="216"/><text x="56.3614%" y="735.50"></text></g><g><title>do_syscall_64 (39,150 samples, 7.52%)</title><rect x="48.6372%" y="773" width="7.5233%" height="15" fill="rgb(248,228,14)" fg:x="253099" fg:w="39150"/><text x="48.8872%" y="783.50">do_syscall..</text></g><g><title>fpregs_assert_state_consistent (58 samples, 0.01%)</title><rect x="56.1786%" y="741" width="0.0111%" height="15" fill="rgb(208,133,18)" fg:x="292343" fg:w="58"/><text x="56.4286%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39,425 samples, 7.58%)</title><rect x="48.6144%" y="789" width="7.5762%" height="15" fill="rgb(207,35,49)" fg:x="252980" fg:w="39425"/><text x="48.8644%" y="799.50">entry_SYSC..</text></g><g><title>syscall_exit_to_user_mode (156 samples, 0.03%)</title><rect x="56.1606%" y="773" width="0.0300%" height="15" fill="rgb(205,68,36)" fg:x="292249" fg:w="156"/><text x="56.4106%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (129 samples, 0.02%)</title><rect x="56.1658%" y="757" width="0.0248%" height="15" fill="rgb(245,62,40)" fg:x="292276" fg:w="129"/><text x="56.4158%" y="767.50"></text></g><g><title>syscall_return_via_sysret (195 samples, 0.04%)</title><rect x="56.1931%" y="789" width="0.0375%" height="15" fill="rgb(228,27,24)" fg:x="292418" fg:w="195"/><text x="56.4431%" y="799.50"></text></g><g><title>__GI___xstat (40,370 samples, 7.76%)</title><rect x="48.4729%" y="805" width="7.7578%" height="15" fill="rgb(253,19,12)" fg:x="252244" fg:w="40370"/><text x="48.7229%" y="815.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (129 samples, 0.02%)</title><rect x="56.2620%" y="789" width="0.0248%" height="15" fill="rgb(232,28,20)" fg:x="292777" fg:w="129"/><text x="56.5120%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (129 samples, 0.02%)</title><rect x="56.2868%" y="789" width="0.0248%" height="15" fill="rgb(218,35,51)" fg:x="292906" fg:w="129"/><text x="56.5368%" y="799.50"></text></g><g><title>memset_erms (560 samples, 0.11%)</title><rect x="56.3658%" y="709" width="0.1076%" height="15" fill="rgb(212,90,40)" fg:x="293317" fg:w="560"/><text x="56.6158%" y="719.50"></text></g><g><title>kmem_cache_alloc (759 samples, 0.15%)</title><rect x="56.3395%" y="725" width="0.1459%" height="15" fill="rgb(220,172,12)" fg:x="293180" fg:w="759"/><text x="56.5895%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (62 samples, 0.01%)</title><rect x="56.4734%" y="709" width="0.0119%" height="15" fill="rgb(226,159,20)" fg:x="293877" fg:w="62"/><text x="56.7234%" y="719.50"></text></g><g><title>__check_heap_object (60 samples, 0.01%)</title><rect x="56.5340%" y="693" width="0.0115%" height="15" fill="rgb(234,205,16)" fg:x="294192" fg:w="60"/><text x="56.7840%" y="703.50"></text></g><g><title>__virt_addr_valid (158 samples, 0.03%)</title><rect x="56.5455%" y="693" width="0.0304%" height="15" fill="rgb(207,9,39)" fg:x="294252" fg:w="158"/><text x="56.7955%" y="703.50"></text></g><g><title>__x64_sys_unlinkat (1,316 samples, 0.25%)</title><rect x="56.3247%" y="757" width="0.2529%" height="15" fill="rgb(249,143,15)" fg:x="293103" fg:w="1316"/><text x="56.5747%" y="767.50"></text></g><g><title>getname_flags.part.0 (1,285 samples, 0.25%)</title><rect x="56.3307%" y="741" width="0.2469%" height="15" fill="rgb(253,133,29)" fg:x="293134" fg:w="1285"/><text x="56.5807%" y="751.50"></text></g><g><title>strncpy_from_user (480 samples, 0.09%)</title><rect x="56.4853%" y="725" width="0.0922%" height="15" fill="rgb(221,187,0)" fg:x="293939" fg:w="480"/><text x="56.7353%" y="735.50"></text></g><g><title>__check_object_size (276 samples, 0.05%)</title><rect x="56.5245%" y="709" width="0.0530%" height="15" fill="rgb(205,204,26)" fg:x="294143" fg:w="276"/><text x="56.7745%" y="719.50"></text></g><g><title>filename_parentat (61 samples, 0.01%)</title><rect x="56.5933%" y="741" width="0.0117%" height="15" fill="rgb(224,68,54)" fg:x="294501" fg:w="61"/><text x="56.8433%" y="751.50"></text></g><g><title>path_parentat (56 samples, 0.01%)</title><rect x="56.5943%" y="725" width="0.0108%" height="15" fill="rgb(209,67,4)" fg:x="294506" fg:w="56"/><text x="56.8443%" y="735.50"></text></g><g><title>btrfs_lookup_dir_index_item (124 samples, 0.02%)</title><rect x="56.6523%" y="677" width="0.0238%" height="15" fill="rgb(228,229,18)" fg:x="294808" fg:w="124"/><text x="56.9023%" y="687.50"></text></g><g><title>btrfs_search_slot (124 samples, 0.02%)</title><rect x="56.6523%" y="661" width="0.0238%" height="15" fill="rgb(231,89,13)" fg:x="294808" fg:w="124"/><text x="56.9023%" y="671.50"></text></g><g><title>btrfs_search_slot (120 samples, 0.02%)</title><rect x="56.6766%" y="661" width="0.0231%" height="15" fill="rgb(210,182,18)" fg:x="294934" fg:w="120"/><text x="56.9266%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (127 samples, 0.02%)</title><rect x="56.6762%" y="677" width="0.0244%" height="15" fill="rgb(240,105,2)" fg:x="294932" fg:w="127"/><text x="56.9262%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (364 samples, 0.07%)</title><rect x="56.6447%" y="693" width="0.0699%" height="15" fill="rgb(207,170,50)" fg:x="294768" fg:w="364"/><text x="56.8947%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (77 samples, 0.01%)</title><rect x="56.7505%" y="645" width="0.0148%" height="15" fill="rgb(232,133,24)" fg:x="295319" fg:w="77"/><text x="57.0005%" y="655.50"></text></g><g><title>find_extent_buffer (54 samples, 0.01%)</title><rect x="56.7692%" y="629" width="0.0104%" height="15" fill="rgb(235,166,27)" fg:x="295416" fg:w="54"/><text x="57.0192%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (82 samples, 0.02%)</title><rect x="56.7653%" y="645" width="0.0158%" height="15" fill="rgb(209,19,13)" fg:x="295396" fg:w="82"/><text x="57.0153%" y="655.50"></text></g><g><title>btrfs_search_slot (289 samples, 0.06%)</title><rect x="56.7286%" y="661" width="0.0555%" height="15" fill="rgb(226,79,39)" fg:x="295205" fg:w="289"/><text x="56.9786%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (409 samples, 0.08%)</title><rect x="56.7165%" y="677" width="0.0786%" height="15" fill="rgb(222,163,10)" fg:x="295142" fg:w="409"/><text x="56.9665%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (436 samples, 0.08%)</title><rect x="56.7146%" y="693" width="0.0838%" height="15" fill="rgb(214,44,19)" fg:x="295132" fg:w="436"/><text x="56.9646%" y="703.50"></text></g><g><title>btrfs_get_token_32 (203 samples, 0.04%)</title><rect x="56.8205%" y="677" width="0.0390%" height="15" fill="rgb(210,217,13)" fg:x="295683" fg:w="203"/><text x="57.0705%" y="687.50"></text></g><g><title>btrfs_set_token_32 (186 samples, 0.04%)</title><rect x="56.8620%" y="677" width="0.0357%" height="15" fill="rgb(237,61,54)" fg:x="295899" fg:w="186"/><text x="57.1120%" y="687.50"></text></g><g><title>memmove_extent_buffer (103 samples, 0.02%)</title><rect x="56.9070%" y="677" width="0.0198%" height="15" fill="rgb(226,184,24)" fg:x="296133" fg:w="103"/><text x="57.1570%" y="687.50"></text></g><g><title>memmove (85 samples, 0.02%)</title><rect x="56.9104%" y="661" width="0.0163%" height="15" fill="rgb(223,226,4)" fg:x="296151" fg:w="85"/><text x="57.1604%" y="671.50"></text></g><g><title>__push_leaf_right (55 samples, 0.01%)</title><rect x="56.9287%" y="661" width="0.0106%" height="15" fill="rgb(210,26,41)" fg:x="296246" fg:w="55"/><text x="57.1787%" y="671.50"></text></g><g><title>push_leaf_right (58 samples, 0.01%)</title><rect x="56.9287%" y="677" width="0.0111%" height="15" fill="rgb(220,221,6)" fg:x="296246" fg:w="58"/><text x="57.1787%" y="687.50"></text></g><g><title>btrfs_del_items (738 samples, 0.14%)</title><rect x="56.7984%" y="693" width="0.1418%" height="15" fill="rgb(225,89,49)" fg:x="295568" fg:w="738"/><text x="57.0484%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (115 samples, 0.02%)</title><rect x="56.9487%" y="693" width="0.0221%" height="15" fill="rgb(218,70,45)" fg:x="296350" fg:w="115"/><text x="57.1987%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (114 samples, 0.02%)</title><rect x="56.9961%" y="661" width="0.0219%" height="15" fill="rgb(238,166,21)" fg:x="296597" fg:w="114"/><text x="57.2461%" y="671.50"></text></g><g><title>find_extent_buffer (74 samples, 0.01%)</title><rect x="57.0236%" y="645" width="0.0142%" height="15" fill="rgb(224,141,44)" fg:x="296740" fg:w="74"/><text x="57.2736%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (112 samples, 0.02%)</title><rect x="57.0180%" y="661" width="0.0215%" height="15" fill="rgb(230,12,49)" fg:x="296711" fg:w="112"/><text x="57.2680%" y="671.50"></text></g><g><title>btrfs_search_slot (312 samples, 0.06%)</title><rect x="56.9829%" y="677" width="0.0600%" height="15" fill="rgb(212,174,12)" fg:x="296528" fg:w="312"/><text x="57.2329%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (357 samples, 0.07%)</title><rect x="56.9763%" y="693" width="0.0686%" height="15" fill="rgb(246,67,9)" fg:x="296494" fg:w="357"/><text x="57.2263%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (55 samples, 0.01%)</title><rect x="57.0524%" y="677" width="0.0106%" height="15" fill="rgb(239,35,23)" fg:x="296890" fg:w="55"/><text x="57.3024%" y="687.50"></text></g><g><title>btrfs_update_inode (75 samples, 0.01%)</title><rect x="57.0517%" y="693" width="0.0144%" height="15" fill="rgb(211,167,0)" fg:x="296886" fg:w="75"/><text x="57.3017%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (2,237 samples, 0.43%)</title><rect x="56.6404%" y="709" width="0.4299%" height="15" fill="rgb(225,119,45)" fg:x="294746" fg:w="2237"/><text x="56.8904%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (79 samples, 0.02%)</title><rect x="57.1020%" y="645" width="0.0152%" height="15" fill="rgb(210,162,6)" fg:x="297148" fg:w="79"/><text x="57.3520%" y="655.50"></text></g><g><title>__radix_tree_lookup (68 samples, 0.01%)</title><rect x="57.1266%" y="613" width="0.0131%" height="15" fill="rgb(208,118,35)" fg:x="297276" fg:w="68"/><text x="57.3766%" y="623.50"></text></g><g><title>find_extent_buffer (112 samples, 0.02%)</title><rect x="57.1230%" y="629" width="0.0215%" height="15" fill="rgb(239,4,53)" fg:x="297257" fg:w="112"/><text x="57.3730%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (155 samples, 0.03%)</title><rect x="57.1172%" y="645" width="0.0298%" height="15" fill="rgb(213,130,21)" fg:x="297227" fg:w="155"/><text x="57.3672%" y="655.50"></text></g><g><title>btrfs_search_slot (362 samples, 0.07%)</title><rect x="57.0832%" y="661" width="0.0696%" height="15" fill="rgb(235,148,0)" fg:x="297050" fg:w="362"/><text x="57.3332%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (477 samples, 0.09%)</title><rect x="57.0824%" y="677" width="0.0917%" height="15" fill="rgb(244,224,18)" fg:x="297046" fg:w="477"/><text x="57.3324%" y="687.50"></text></g><g><title>setup_items_for_insert (111 samples, 0.02%)</title><rect x="57.1527%" y="661" width="0.0213%" height="15" fill="rgb(211,214,4)" fg:x="297412" fg:w="111"/><text x="57.4027%" y="671.50"></text></g><g><title>btrfs_orphan_add (545 samples, 0.10%)</title><rect x="57.0741%" y="709" width="0.1047%" height="15" fill="rgb(206,119,25)" fg:x="297003" fg:w="545"/><text x="57.3241%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (543 samples, 0.10%)</title><rect x="57.0745%" y="693" width="0.1043%" height="15" fill="rgb(243,93,47)" fg:x="297005" fg:w="543"/><text x="57.3245%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (59 samples, 0.01%)</title><rect x="57.1808%" y="693" width="0.0113%" height="15" fill="rgb(224,194,6)" fg:x="297558" fg:w="59"/><text x="57.4308%" y="703.50"></text></g><g><title>btrfs_update_inode (77 samples, 0.01%)</title><rect x="57.1796%" y="709" width="0.0148%" height="15" fill="rgb(243,229,6)" fg:x="297552" fg:w="77"/><text x="57.4296%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (79 samples, 0.02%)</title><rect x="57.2021%" y="693" width="0.0152%" height="15" fill="rgb(207,23,50)" fg:x="297669" fg:w="79"/><text x="57.4521%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="57.2031%" y="677" width="0.0142%" height="15" fill="rgb(253,192,32)" fg:x="297674" fg:w="74"/><text x="57.4531%" y="687.50"></text></g><g><title>__reserve_bytes (71 samples, 0.01%)</title><rect x="57.2037%" y="661" width="0.0136%" height="15" fill="rgb(213,21,6)" fg:x="297677" fg:w="71"/><text x="57.4537%" y="671.50"></text></g><g><title>btrfs_rmdir (3,113 samples, 0.60%)</title><rect x="56.6275%" y="725" width="0.5982%" height="15" fill="rgb(243,151,13)" fg:x="294679" fg:w="3113"/><text x="56.8775%" y="735.50"></text></g><g><title>start_transaction (158 samples, 0.03%)</title><rect x="57.1954%" y="709" width="0.0304%" height="15" fill="rgb(233,165,41)" fg:x="297634" fg:w="158"/><text x="57.4454%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (68 samples, 0.01%)</title><rect x="57.2473%" y="693" width="0.0131%" height="15" fill="rgb(246,176,45)" fg:x="297904" fg:w="68"/><text x="57.4973%" y="703.50"></text></g><g><title>clear_record_extent_bits (55 samples, 0.01%)</title><rect x="57.2703%" y="677" width="0.0106%" height="15" fill="rgb(217,170,52)" fg:x="298024" fg:w="55"/><text x="57.5203%" y="687.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (76 samples, 0.01%)</title><rect x="57.2698%" y="693" width="0.0146%" height="15" fill="rgb(214,203,54)" fg:x="298021" fg:w="76"/><text x="57.5198%" y="703.50"></text></g><g><title>btrfs_destroy_inode (273 samples, 0.05%)</title><rect x="57.2448%" y="709" width="0.0525%" height="15" fill="rgb(248,215,49)" fg:x="297891" fg:w="273"/><text x="57.4948%" y="719.50"></text></g><g><title>rb_erase (67 samples, 0.01%)</title><rect x="57.2844%" y="693" width="0.0129%" height="15" fill="rgb(208,46,10)" fg:x="298097" fg:w="67"/><text x="57.5344%" y="703.50"></text></g><g><title>destroy_inode (298 samples, 0.06%)</title><rect x="57.2404%" y="725" width="0.0573%" height="15" fill="rgb(254,5,31)" fg:x="297868" fg:w="298"/><text x="57.4904%" y="735.50"></text></g><g><title>__btrfs_end_transaction (79 samples, 0.02%)</title><rect x="57.3142%" y="693" width="0.0152%" height="15" fill="rgb(222,104,33)" fg:x="298252" fg:w="79"/><text x="57.5642%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (74 samples, 0.01%)</title><rect x="57.3293%" y="693" width="0.0142%" height="15" fill="rgb(248,49,16)" fg:x="298331" fg:w="74"/><text x="57.5793%" y="703.50"></text></g><g><title>btrfs_get_token_32 (232 samples, 0.04%)</title><rect x="57.3880%" y="645" width="0.0446%" height="15" fill="rgb(232,198,41)" fg:x="298636" fg:w="232"/><text x="57.6380%" y="655.50"></text></g><g><title>btrfs_set_token_32 (242 samples, 0.05%)</title><rect x="57.4335%" y="645" width="0.0465%" height="15" fill="rgb(214,125,3)" fg:x="298873" fg:w="242"/><text x="57.6835%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (54 samples, 0.01%)</title><rect x="57.4696%" y="629" width="0.0104%" height="15" fill="rgb(229,220,28)" fg:x="299061" fg:w="54"/><text x="57.7196%" y="639.50"></text></g><g><title>memmove_extent_buffer (148 samples, 0.03%)</title><rect x="57.4911%" y="645" width="0.0284%" height="15" fill="rgb(222,64,37)" fg:x="299173" fg:w="148"/><text x="57.7411%" y="655.50"></text></g><g><title>memmove (123 samples, 0.02%)</title><rect x="57.4960%" y="629" width="0.0236%" height="15" fill="rgb(249,184,13)" fg:x="299198" fg:w="123"/><text x="57.7460%" y="639.50"></text></g><g><title>btrfs_del_items (809 samples, 0.16%)</title><rect x="57.3684%" y="661" width="0.1555%" height="15" fill="rgb(252,176,6)" fg:x="298534" fg:w="809"/><text x="57.6184%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (63 samples, 0.01%)</title><rect x="57.5467%" y="629" width="0.0121%" height="15" fill="rgb(228,153,7)" fg:x="299462" fg:w="63"/><text x="57.7967%" y="639.50"></text></g><g><title>find_extent_buffer (65 samples, 0.01%)</title><rect x="57.5655%" y="613" width="0.0125%" height="15" fill="rgb(242,193,5)" fg:x="299560" fg:w="65"/><text x="57.8155%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (119 samples, 0.02%)</title><rect x="57.5588%" y="629" width="0.0229%" height="15" fill="rgb(232,140,9)" fg:x="299525" fg:w="119"/><text x="57.8088%" y="639.50"></text></g><g><title>btrfs_lookup_inode (285 samples, 0.05%)</title><rect x="57.5294%" y="661" width="0.0548%" height="15" fill="rgb(213,222,16)" fg:x="299372" fg:w="285"/><text x="57.7794%" y="671.50"></text></g><g><title>btrfs_search_slot (274 samples, 0.05%)</title><rect x="57.5315%" y="645" width="0.0527%" height="15" fill="rgb(222,75,50)" fg:x="299383" fg:w="274"/><text x="57.7815%" y="655.50"></text></g><g><title>__btrfs_update_delayed_inode (1,235 samples, 0.24%)</title><rect x="57.3660%" y="677" width="0.2373%" height="15" fill="rgb(205,180,2)" fg:x="298522" fg:w="1235"/><text x="57.6160%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,411 samples, 0.27%)</title><rect x="57.3528%" y="693" width="0.2711%" height="15" fill="rgb(216,34,7)" fg:x="298453" fg:w="1411"/><text x="57.6028%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (101 samples, 0.02%)</title><rect x="57.6570%" y="661" width="0.0194%" height="15" fill="rgb(253,16,32)" fg:x="300036" fg:w="101"/><text x="57.9070%" y="671.50"></text></g><g><title>find_extent_buffer (71 samples, 0.01%)</title><rect x="57.6831%" y="645" width="0.0136%" height="15" fill="rgb(208,97,28)" fg:x="300172" fg:w="71"/><text x="57.9331%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (116 samples, 0.02%)</title><rect x="57.6764%" y="661" width="0.0223%" height="15" fill="rgb(225,92,11)" fg:x="300137" fg:w="116"/><text x="57.9264%" y="671.50"></text></g><g><title>btrfs_search_slot (328 samples, 0.06%)</title><rect x="57.6389%" y="677" width="0.0630%" height="15" fill="rgb(243,38,12)" fg:x="299942" fg:w="328"/><text x="57.8889%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (427 samples, 0.08%)</title><rect x="57.6239%" y="693" width="0.0821%" height="15" fill="rgb(208,139,16)" fg:x="299864" fg:w="427"/><text x="57.8739%" y="703.50"></text></g><g><title>clear_state_bit (69 samples, 0.01%)</title><rect x="57.7302%" y="661" width="0.0133%" height="15" fill="rgb(227,24,9)" fg:x="300417" fg:w="69"/><text x="57.9802%" y="671.50"></text></g><g><title>__clear_extent_bit (114 samples, 0.02%)</title><rect x="57.7239%" y="677" width="0.0219%" height="15" fill="rgb(206,62,11)" fg:x="300384" fg:w="114"/><text x="57.9739%" y="687.50"></text></g><g><title>btrfs_free_tree_block (59 samples, 0.01%)</title><rect x="57.7665%" y="645" width="0.0113%" height="15" fill="rgb(228,134,27)" fg:x="300606" fg:w="59"/><text x="58.0165%" y="655.50"></text></g><g><title>btrfs_del_leaf (69 samples, 0.01%)</title><rect x="57.7659%" y="661" width="0.0133%" height="15" fill="rgb(205,55,33)" fg:x="300603" fg:w="69"/><text x="58.0159%" y="671.50"></text></g><g><title>btrfs_get_token_32 (285 samples, 0.05%)</title><rect x="57.7888%" y="661" width="0.0548%" height="15" fill="rgb(243,75,43)" fg:x="300722" fg:w="285"/><text x="58.0388%" y="671.50"></text></g><g><title>btrfs_set_token_32 (264 samples, 0.05%)</title><rect x="57.8463%" y="661" width="0.0507%" height="15" fill="rgb(223,27,42)" fg:x="301021" fg:w="264"/><text x="58.0963%" y="671.50"></text></g><g><title>memmove_extent_buffer (138 samples, 0.03%)</title><rect x="57.9097%" y="661" width="0.0265%" height="15" fill="rgb(232,189,33)" fg:x="301351" fg:w="138"/><text x="58.1597%" y="671.50"></text></g><g><title>memmove (105 samples, 0.02%)</title><rect x="57.9160%" y="645" width="0.0202%" height="15" fill="rgb(210,9,39)" fg:x="301384" fg:w="105"/><text x="58.1660%" y="655.50"></text></g><g><title>__push_leaf_left (60 samples, 0.01%)</title><rect x="57.9368%" y="645" width="0.0115%" height="15" fill="rgb(242,85,26)" fg:x="301492" fg:w="60"/><text x="58.1868%" y="655.50"></text></g><g><title>push_leaf_left (84 samples, 0.02%)</title><rect x="57.9362%" y="661" width="0.0161%" height="15" fill="rgb(248,44,4)" fg:x="301489" fg:w="84"/><text x="58.1862%" y="671.50"></text></g><g><title>btrfs_del_items (1,134 samples, 0.22%)</title><rect x="57.7460%" y="677" width="0.2179%" height="15" fill="rgb(250,96,46)" fg:x="300499" fg:w="1134"/><text x="57.9960%" y="687.50"></text></g><g><title>alloc_extent_map (54 samples, 0.01%)</title><rect x="57.9662%" y="661" width="0.0104%" height="15" fill="rgb(229,116,26)" fg:x="301645" fg:w="54"/><text x="58.2162%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (95 samples, 0.02%)</title><rect x="57.9639%" y="677" width="0.0183%" height="15" fill="rgb(246,94,34)" fg:x="301633" fg:w="95"/><text x="58.2139%" y="687.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="58.0056%" y="629" width="0.0140%" height="15" fill="rgb(251,73,21)" fg:x="301850" fg:w="73"/><text x="58.2556%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (119 samples, 0.02%)</title><rect x="57.9996%" y="645" width="0.0229%" height="15" fill="rgb(254,121,25)" fg:x="301819" fg:w="119"/><text x="58.2496%" y="655.50"></text></g><g><title>finish_one_item (70 samples, 0.01%)</title><rect x="58.0308%" y="629" width="0.0135%" height="15" fill="rgb(215,161,49)" fg:x="301981" fg:w="70"/><text x="58.2808%" y="639.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (161 samples, 0.03%)</title><rect x="58.0225%" y="645" width="0.0309%" height="15" fill="rgb(221,43,13)" fg:x="301938" fg:w="161"/><text x="58.2725%" y="655.50"></text></g><g><title>kfree (124 samples, 0.02%)</title><rect x="58.0534%" y="645" width="0.0238%" height="15" fill="rgb(249,5,37)" fg:x="302099" fg:w="124"/><text x="58.3034%" y="655.50"></text></g><g><title>__btrfs_kill_delayed_node (438 samples, 0.08%)</title><rect x="57.9952%" y="661" width="0.0842%" height="15" fill="rgb(226,25,44)" fg:x="301796" fg:w="438"/><text x="58.2452%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (452 samples, 0.09%)</title><rect x="57.9950%" y="677" width="0.0869%" height="15" fill="rgb(238,189,16)" fg:x="301795" fg:w="452"/><text x="58.2450%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (94 samples, 0.02%)</title><rect x="58.1026%" y="661" width="0.0181%" height="15" fill="rgb(251,186,8)" fg:x="302355" fg:w="94"/><text x="58.3526%" y="671.50"></text></g><g><title>find_extent_buffer (71 samples, 0.01%)</title><rect x="58.1268%" y="645" width="0.0136%" height="15" fill="rgb(254,34,31)" fg:x="302481" fg:w="71"/><text x="58.3768%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (109 samples, 0.02%)</title><rect x="58.1207%" y="661" width="0.0209%" height="15" fill="rgb(225,215,27)" fg:x="302449" fg:w="109"/><text x="58.3707%" y="671.50"></text></g><g><title>btrfs_search_slot (319 samples, 0.06%)</title><rect x="58.0838%" y="677" width="0.0613%" height="15" fill="rgb(221,192,48)" fg:x="302257" fg:w="319"/><text x="58.3338%" y="687.50"></text></g><g><title>lock_extent_bits (92 samples, 0.02%)</title><rect x="58.1501%" y="677" width="0.0177%" height="15" fill="rgb(219,137,20)" fg:x="302602" fg:w="92"/><text x="58.4001%" y="687.50"></text></g><g><title>__set_extent_bit (90 samples, 0.02%)</title><rect x="58.1505%" y="661" width="0.0173%" height="15" fill="rgb(219,84,11)" fg:x="302604" fg:w="90"/><text x="58.4005%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (2,450 samples, 0.47%)</title><rect x="57.7089%" y="693" width="0.4708%" height="15" fill="rgb(224,10,23)" fg:x="300306" fg:w="2450"/><text x="57.9589%" y="703.50"></text></g><g><title>read_extent_buffer (62 samples, 0.01%)</title><rect x="58.1678%" y="677" width="0.0119%" height="15" fill="rgb(248,22,39)" fg:x="302694" fg:w="62"/><text x="58.4178%" y="687.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (73 samples, 0.01%)</title><rect x="58.1962%" y="629" width="0.0140%" height="15" fill="rgb(212,154,20)" fg:x="302842" fg:w="73"/><text x="58.4462%" y="639.50"></text></g><g><title>btrfs_block_rsv_refill (166 samples, 0.03%)</title><rect x="58.1841%" y="677" width="0.0319%" height="15" fill="rgb(236,199,50)" fg:x="302779" fg:w="166"/><text x="58.4341%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (129 samples, 0.02%)</title><rect x="58.1912%" y="661" width="0.0248%" height="15" fill="rgb(211,9,17)" fg:x="302816" fg:w="129"/><text x="58.4412%" y="671.50"></text></g><g><title>__reserve_bytes (128 samples, 0.02%)</title><rect x="58.1914%" y="645" width="0.0246%" height="15" fill="rgb(243,216,36)" fg:x="302817" fg:w="128"/><text x="58.4414%" y="655.50"></text></g><g><title>evict_refill_and_join (267 samples, 0.05%)</title><rect x="58.1797%" y="693" width="0.0513%" height="15" fill="rgb(250,2,10)" fg:x="302756" fg:w="267"/><text x="58.4297%" y="703.50"></text></g><g><title>start_transaction (77 samples, 0.01%)</title><rect x="58.2162%" y="677" width="0.0148%" height="15" fill="rgb(226,50,48)" fg:x="302946" fg:w="77"/><text x="58.4662%" y="687.50"></text></g><g><title>btrfs_evict_inode (4,839 samples, 0.93%)</title><rect x="57.3119%" y="709" width="0.9299%" height="15" fill="rgb(243,81,16)" fg:x="298240" fg:w="4839"/><text x="57.5619%" y="719.50"></text></g><g><title>evict (4,923 samples, 0.95%)</title><rect x="57.3009%" y="725" width="0.9460%" height="15" fill="rgb(250,14,2)" fg:x="298183" fg:w="4923"/><text x="57.5509%" y="735.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="58.2642%" y="693" width="0.0129%" height="15" fill="rgb(233,135,29)" fg:x="303196" fg:w="67"/><text x="58.5142%" y="703.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="58.3175%" y="645" width="0.0129%" height="15" fill="rgb(224,64,43)" fg:x="303473" fg:w="67"/><text x="58.5675%" y="655.50"></text></g><g><title>d_lru_del (422 samples, 0.08%)</title><rect x="58.2848%" y="677" width="0.0811%" height="15" fill="rgb(238,84,13)" fg:x="303303" fg:w="422"/><text x="58.5348%" y="687.50"></text></g><g><title>list_lru_del (410 samples, 0.08%)</title><rect x="58.2871%" y="661" width="0.0788%" height="15" fill="rgb(253,48,26)" fg:x="303315" fg:w="410"/><text x="58.5371%" y="671.50"></text></g><g><title>mem_cgroup_from_obj (183 samples, 0.04%)</title><rect x="58.3307%" y="645" width="0.0352%" height="15" fill="rgb(205,223,31)" fg:x="303542" fg:w="183"/><text x="58.5807%" y="655.50"></text></g><g><title>d_walk (607 samples, 0.12%)</title><rect x="58.2558%" y="709" width="0.1166%" height="15" fill="rgb(221,41,32)" fg:x="303152" fg:w="607"/><text x="58.5058%" y="719.50"></text></g><g><title>select_collect (495 samples, 0.10%)</title><rect x="58.2773%" y="693" width="0.0951%" height="15" fill="rgb(213,158,31)" fg:x="303264" fg:w="495"/><text x="58.5273%" y="703.50"></text></g><g><title>___d_drop (214 samples, 0.04%)</title><rect x="58.3841%" y="677" width="0.0411%" height="15" fill="rgb(245,126,43)" fg:x="303820" fg:w="214"/><text x="58.6341%" y="687.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="58.4274%" y="677" width="0.0138%" height="15" fill="rgb(227,7,22)" fg:x="304045" fg:w="72"/><text x="58.6774%" y="687.50"></text></g><g><title>call_rcu (247 samples, 0.05%)</title><rect x="58.4412%" y="677" width="0.0475%" height="15" fill="rgb(252,90,44)" fg:x="304117" fg:w="247"/><text x="58.6912%" y="687.50"></text></g><g><title>rcu_segcblist_enqueue (137 samples, 0.03%)</title><rect x="58.4624%" y="661" width="0.0263%" height="15" fill="rgb(253,91,0)" fg:x="304227" fg:w="137"/><text x="58.7124%" y="671.50"></text></g><g><title>__dentry_kill (604 samples, 0.12%)</title><rect x="58.3749%" y="693" width="0.1161%" height="15" fill="rgb(252,175,49)" fg:x="303772" fg:w="604"/><text x="58.6249%" y="703.50"></text></g><g><title>__dput_to_list (76 samples, 0.01%)</title><rect x="58.4910%" y="693" width="0.0146%" height="15" fill="rgb(246,150,1)" fg:x="304376" fg:w="76"/><text x="58.7410%" y="703.50"></text></g><g><title>d_lru_del (61 samples, 0.01%)</title><rect x="58.4939%" y="677" width="0.0117%" height="15" fill="rgb(241,192,25)" fg:x="304391" fg:w="61"/><text x="58.7439%" y="687.50"></text></g><g><title>list_lru_del (58 samples, 0.01%)</title><rect x="58.4944%" y="661" width="0.0111%" height="15" fill="rgb(239,187,11)" fg:x="304394" fg:w="58"/><text x="58.7444%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="58.5081%" y="693" width="0.0127%" height="15" fill="rgb(218,202,51)" fg:x="304465" fg:w="66"/><text x="58.7581%" y="703.50"></text></g><g><title>shrink_dcache_parent (1,481 samples, 0.28%)</title><rect x="58.2552%" y="725" width="0.2846%" height="15" fill="rgb(225,176,8)" fg:x="303149" fg:w="1481"/><text x="58.5052%" y="735.50"></text></g><g><title>shrink_dentry_list (871 samples, 0.17%)</title><rect x="58.3724%" y="709" width="0.1674%" height="15" fill="rgb(219,122,41)" fg:x="303759" fg:w="871"/><text x="58.6224%" y="719.50"></text></g><g><title>shrink_lock_dentry.part.0 (69 samples, 0.01%)</title><rect x="58.5265%" y="693" width="0.0133%" height="15" fill="rgb(248,140,20)" fg:x="304561" fg:w="69"/><text x="58.7765%" y="703.50"></text></g><g><title>_raw_spin_trylock (54 samples, 0.01%)</title><rect x="58.5294%" y="677" width="0.0104%" height="15" fill="rgb(245,41,37)" fg:x="304576" fg:w="54"/><text x="58.7794%" y="687.50"></text></g><g><title>do_rmdir (10,216 samples, 1.96%)</title><rect x="56.5776%" y="757" width="1.9632%" height="15" fill="rgb(235,82,39)" fg:x="294419" fg:w="10216"/><text x="56.8276%" y="767.50">d..</text></g><g><title>vfs_rmdir.part.0 (9,964 samples, 1.91%)</title><rect x="56.6260%" y="741" width="1.9148%" height="15" fill="rgb(230,108,42)" fg:x="294671" fg:w="9964"/><text x="56.8760%" y="751.50">v..</text></g><g><title>_raw_spin_lock (150 samples, 0.03%)</title><rect x="58.7481%" y="677" width="0.0288%" height="15" fill="rgb(215,150,50)" fg:x="305714" fg:w="150"/><text x="58.9981%" y="687.50"></text></g><g><title>__lookup_hash (1,167 samples, 0.22%)</title><rect x="58.5536%" y="741" width="0.2243%" height="15" fill="rgb(233,212,5)" fg:x="304702" fg:w="1167"/><text x="58.8036%" y="751.50"></text></g><g><title>lookup_dcache (1,149 samples, 0.22%)</title><rect x="58.5571%" y="725" width="0.2208%" height="15" fill="rgb(245,80,22)" fg:x="304720" fg:w="1149"/><text x="58.8071%" y="735.50"></text></g><g><title>d_lookup (1,133 samples, 0.22%)</title><rect x="58.5602%" y="709" width="0.2177%" height="15" fill="rgb(238,129,16)" fg:x="304736" fg:w="1133"/><text x="58.8102%" y="719.50"></text></g><g><title>__d_lookup (1,122 samples, 0.22%)</title><rect x="58.5623%" y="693" width="0.2156%" height="15" fill="rgb(240,19,0)" fg:x="304747" fg:w="1122"/><text x="58.8123%" y="703.50"></text></g><g><title>down_write (65 samples, 0.01%)</title><rect x="58.7783%" y="741" width="0.0125%" height="15" fill="rgb(232,42,35)" fg:x="305871" fg:w="65"/><text x="59.0283%" y="751.50"></text></g><g><title>lockref_put_or_lock (117 samples, 0.02%)</title><rect x="58.8054%" y="725" width="0.0225%" height="15" fill="rgb(223,130,24)" fg:x="306012" fg:w="117"/><text x="59.0554%" y="735.50"></text></g><g><title>dput (195 samples, 0.04%)</title><rect x="58.7908%" y="741" width="0.0375%" height="15" fill="rgb(237,16,22)" fg:x="305936" fg:w="195"/><text x="59.0408%" y="751.50"></text></g><g><title>__legitimize_mnt (72 samples, 0.01%)</title><rect x="58.8511%" y="661" width="0.0138%" height="15" fill="rgb(248,192,20)" fg:x="306250" fg:w="72"/><text x="59.1011%" y="671.50"></text></g><g><title>__legitimize_path (142 samples, 0.03%)</title><rect x="58.8492%" y="677" width="0.0273%" height="15" fill="rgb(233,167,2)" fg:x="306240" fg:w="142"/><text x="59.0992%" y="687.50"></text></g><g><title>lockref_get_not_dead (60 samples, 0.01%)</title><rect x="58.8649%" y="661" width="0.0115%" height="15" fill="rgb(252,71,44)" fg:x="306322" fg:w="60"/><text x="59.1149%" y="671.50"></text></g><g><title>complete_walk (197 samples, 0.04%)</title><rect x="58.8430%" y="709" width="0.0379%" height="15" fill="rgb(238,37,47)" fg:x="306208" fg:w="197"/><text x="59.0930%" y="719.50"></text></g><g><title>try_to_unlazy (185 samples, 0.04%)</title><rect x="58.8453%" y="693" width="0.0356%" height="15" fill="rgb(214,202,54)" fg:x="306220" fg:w="185"/><text x="59.0953%" y="703.50"></text></g><g><title>inode_permission.part.0 (60 samples, 0.01%)</title><rect x="58.8936%" y="693" width="0.0115%" height="15" fill="rgb(254,165,40)" fg:x="306471" fg:w="60"/><text x="59.1436%" y="703.50"></text></g><g><title>link_path_walk.part.0 (132 samples, 0.03%)</title><rect x="58.8809%" y="709" width="0.0254%" height="15" fill="rgb(246,173,38)" fg:x="306405" fg:w="132"/><text x="59.1309%" y="719.50"></text></g><g><title>__fget_light (209 samples, 0.04%)</title><rect x="58.9172%" y="693" width="0.0402%" height="15" fill="rgb(215,3,27)" fg:x="306594" fg:w="209"/><text x="59.1672%" y="703.50"></text></g><g><title>__fget_files (182 samples, 0.03%)</title><rect x="58.9224%" y="677" width="0.0350%" height="15" fill="rgb(239,169,51)" fg:x="306621" fg:w="182"/><text x="59.1724%" y="687.50"></text></g><g><title>path_init (311 samples, 0.06%)</title><rect x="58.9063%" y="709" width="0.0598%" height="15" fill="rgb(212,5,25)" fg:x="306537" fg:w="311"/><text x="59.1563%" y="719.50"></text></g><g><title>filename_parentat (740 samples, 0.14%)</title><rect x="58.8304%" y="741" width="0.1422%" height="15" fill="rgb(243,45,17)" fg:x="306142" fg:w="740"/><text x="59.0804%" y="751.50"></text></g><g><title>path_parentat (694 samples, 0.13%)</title><rect x="58.8392%" y="725" width="0.1334%" height="15" fill="rgb(242,97,9)" fg:x="306188" fg:w="694"/><text x="59.0892%" y="735.50"></text></g><g><title>ihold (297 samples, 0.06%)</title><rect x="58.9726%" y="741" width="0.0571%" height="15" fill="rgb(228,71,31)" fg:x="306882" fg:w="297"/><text x="59.2226%" y="751.50"></text></g><g><title>iput.part.0 (67 samples, 0.01%)</title><rect x="59.0296%" y="741" width="0.0129%" height="15" fill="rgb(252,184,16)" fg:x="307179" fg:w="67"/><text x="59.2796%" y="751.50"></text></g><g><title>_atomic_dec_and_lock (53 samples, 0.01%)</title><rect x="59.0323%" y="725" width="0.0102%" height="15" fill="rgb(236,169,46)" fg:x="307193" fg:w="53"/><text x="59.2823%" y="735.50"></text></g><g><title>kmem_cache_free (118 samples, 0.02%)</title><rect x="59.0425%" y="741" width="0.0227%" height="15" fill="rgb(207,17,47)" fg:x="307246" fg:w="118"/><text x="59.2925%" y="751.50"></text></g><g><title>__mnt_want_write (58 samples, 0.01%)</title><rect x="59.0729%" y="725" width="0.0111%" height="15" fill="rgb(206,201,28)" fg:x="307404" fg:w="58"/><text x="59.3229%" y="735.50"></text></g><g><title>mnt_want_write (90 samples, 0.02%)</title><rect x="59.0694%" y="741" width="0.0173%" height="15" fill="rgb(224,184,23)" fg:x="307386" fg:w="90"/><text x="59.3194%" y="751.50"></text></g><g><title>apparmor_path_unlink (77 samples, 0.01%)</title><rect x="59.0973%" y="725" width="0.0148%" height="15" fill="rgb(208,139,48)" fg:x="307531" fg:w="77"/><text x="59.3473%" y="735.50"></text></g><g><title>security_path_unlink (284 samples, 0.05%)</title><rect x="59.0946%" y="741" width="0.0546%" height="15" fill="rgb(208,130,10)" fg:x="307517" fg:w="284"/><text x="59.3446%" y="751.50"></text></g><g><title>tomoyo_path_unlink (193 samples, 0.04%)</title><rect x="59.1121%" y="725" width="0.0371%" height="15" fill="rgb(211,213,45)" fg:x="307608" fg:w="193"/><text x="59.3621%" y="735.50"></text></g><g><title>tomoyo_path_perm (186 samples, 0.04%)</title><rect x="59.1134%" y="709" width="0.0357%" height="15" fill="rgb(235,100,30)" fg:x="307615" fg:w="186"/><text x="59.3634%" y="719.50"></text></g><g><title>tomoyo_init_request_info (94 samples, 0.02%)</title><rect x="59.1311%" y="693" width="0.0181%" height="15" fill="rgb(206,144,31)" fg:x="307707" fg:w="94"/><text x="59.3811%" y="703.50"></text></g><g><title>up_write (57 samples, 0.01%)</title><rect x="59.1492%" y="741" width="0.0110%" height="15" fill="rgb(224,200,26)" fg:x="307801" fg:w="57"/><text x="59.3992%" y="751.50"></text></g><g><title>btrfs_put_transaction (72 samples, 0.01%)</title><rect x="59.2337%" y="693" width="0.0138%" height="15" fill="rgb(247,104,53)" fg:x="308241" fg:w="72"/><text x="59.4837%" y="703.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="59.2606%" y="661" width="0.0223%" height="15" fill="rgb(220,14,17)" fg:x="308381" fg:w="116"/><text x="59.5106%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (203 samples, 0.04%)</title><rect x="59.2497%" y="693" width="0.0390%" height="15" fill="rgb(230,140,40)" fg:x="308324" fg:w="203"/><text x="59.4997%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (196 samples, 0.04%)</title><rect x="59.2510%" y="677" width="0.0377%" height="15" fill="rgb(229,2,41)" fg:x="308331" fg:w="196"/><text x="59.5010%" y="687.50"></text></g><g><title>__btrfs_end_transaction (567 samples, 0.11%)</title><rect x="59.2012%" y="709" width="0.1090%" height="15" fill="rgb(232,89,16)" fg:x="308072" fg:w="567"/><text x="59.4512%" y="719.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="59.2887%" y="693" width="0.0215%" height="15" fill="rgb(247,59,52)" fg:x="308527" fg:w="112"/><text x="59.5387%" y="703.50"></text></g><g><title>btrfs_tree_unlock (103 samples, 0.02%)</title><rect x="59.4328%" y="645" width="0.0198%" height="15" fill="rgb(226,110,21)" fg:x="309277" fg:w="103"/><text x="59.6828%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (116 samples, 0.02%)</title><rect x="59.4536%" y="645" width="0.0223%" height="15" fill="rgb(224,176,43)" fg:x="309385" fg:w="116"/><text x="59.7036%" y="655.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="59.4578%" y="629" width="0.0181%" height="15" fill="rgb(221,73,6)" fg:x="309407" fg:w="94"/><text x="59.7078%" y="639.50"></text></g><g><title>btrfs_free_path (367 samples, 0.07%)</title><rect x="59.4224%" y="677" width="0.0705%" height="15" fill="rgb(232,78,19)" fg:x="309223" fg:w="367"/><text x="59.6724%" y="687.50"></text></g><g><title>btrfs_release_path (356 samples, 0.07%)</title><rect x="59.4245%" y="661" width="0.0684%" height="15" fill="rgb(233,112,48)" fg:x="309234" fg:w="356"/><text x="59.6745%" y="671.50"></text></g><g><title>release_extent_buffer (89 samples, 0.02%)</title><rect x="59.4758%" y="645" width="0.0171%" height="15" fill="rgb(243,131,47)" fg:x="309501" fg:w="89"/><text x="59.7258%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (59 samples, 0.01%)</title><rect x="59.5377%" y="629" width="0.0113%" height="15" fill="rgb(226,51,1)" fg:x="309823" fg:w="59"/><text x="59.7877%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (140 samples, 0.03%)</title><rect x="59.5356%" y="645" width="0.0269%" height="15" fill="rgb(247,58,7)" fg:x="309812" fg:w="140"/><text x="59.7856%" y="655.50"></text></g><g><title>btrfs_root_node (70 samples, 0.01%)</title><rect x="59.5491%" y="629" width="0.0135%" height="15" fill="rgb(209,7,32)" fg:x="309882" fg:w="70"/><text x="59.7991%" y="639.50"></text></g><g><title>__btrfs_tree_lock (82 samples, 0.02%)</title><rect x="59.5690%" y="629" width="0.0158%" height="15" fill="rgb(209,39,41)" fg:x="309986" fg:w="82"/><text x="59.8190%" y="639.50"></text></g><g><title>btrfs_lock_root_node (146 samples, 0.03%)</title><rect x="59.5669%" y="645" width="0.0281%" height="15" fill="rgb(226,182,46)" fg:x="309975" fg:w="146"/><text x="59.8169%" y="655.50"></text></g><g><title>btrfs_root_node (53 samples, 0.01%)</title><rect x="59.5848%" y="629" width="0.0102%" height="15" fill="rgb(230,219,10)" fg:x="310068" fg:w="53"/><text x="59.8348%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (74 samples, 0.01%)</title><rect x="59.5950%" y="645" width="0.0142%" height="15" fill="rgb(227,175,30)" fg:x="310121" fg:w="74"/><text x="59.8450%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (287 samples, 0.06%)</title><rect x="59.6377%" y="645" width="0.0552%" height="15" fill="rgb(217,2,50)" fg:x="310343" fg:w="287"/><text x="59.8877%" y="655.50"></text></g><g><title>__radix_tree_lookup (145 samples, 0.03%)</title><rect x="59.7247%" y="613" width="0.0279%" height="15" fill="rgb(229,160,0)" fg:x="310796" fg:w="145"/><text x="59.9747%" y="623.50"></text></g><g><title>find_extent_buffer (283 samples, 0.05%)</title><rect x="59.7149%" y="629" width="0.0544%" height="15" fill="rgb(207,78,37)" fg:x="310745" fg:w="283"/><text x="59.9649%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (87 samples, 0.02%)</title><rect x="59.7526%" y="613" width="0.0167%" height="15" fill="rgb(225,57,0)" fg:x="310941" fg:w="87"/><text x="60.0026%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (443 samples, 0.09%)</title><rect x="59.6928%" y="645" width="0.0851%" height="15" fill="rgb(232,154,2)" fg:x="310630" fg:w="443"/><text x="59.9428%" y="655.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,588 samples, 0.31%)</title><rect x="59.4929%" y="677" width="0.3052%" height="15" fill="rgb(241,212,25)" fg:x="309590" fg:w="1588"/><text x="59.7429%" y="687.50"></text></g><g><title>btrfs_search_slot (1,572 samples, 0.30%)</title><rect x="59.4960%" y="661" width="0.3021%" height="15" fill="rgb(226,69,20)" fg:x="309606" fg:w="1572"/><text x="59.7460%" y="671.50"></text></g><g><title>unlock_up (63 samples, 0.01%)</title><rect x="59.7860%" y="645" width="0.0121%" height="15" fill="rgb(247,184,54)" fg:x="311115" fg:w="63"/><text x="60.0360%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (76 samples, 0.01%)</title><rect x="59.8369%" y="629" width="0.0146%" height="15" fill="rgb(210,145,0)" fg:x="311380" fg:w="76"/><text x="60.0869%" y="639.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="59.8413%" y="613" width="0.0102%" height="15" fill="rgb(253,82,12)" fg:x="311403" fg:w="53"/><text x="60.0913%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (151 samples, 0.03%)</title><rect x="59.8348%" y="645" width="0.0290%" height="15" fill="rgb(245,42,11)" fg:x="311369" fg:w="151"/><text x="60.0848%" y="655.50"></text></g><g><title>btrfs_root_node (64 samples, 0.01%)</title><rect x="59.8515%" y="629" width="0.0123%" height="15" fill="rgb(219,147,32)" fg:x="311456" fg:w="64"/><text x="60.1015%" y="639.50"></text></g><g><title>__btrfs_tree_lock (89 samples, 0.02%)</title><rect x="59.8696%" y="629" width="0.0171%" height="15" fill="rgb(246,12,7)" fg:x="311550" fg:w="89"/><text x="60.1196%" y="639.50"></text></g><g><title>btrfs_lock_root_node (155 samples, 0.03%)</title><rect x="59.8679%" y="645" width="0.0298%" height="15" fill="rgb(243,50,9)" fg:x="311541" fg:w="155"/><text x="60.1179%" y="655.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="59.8867%" y="629" width="0.0110%" height="15" fill="rgb(219,149,6)" fg:x="311639" fg:w="57"/><text x="60.1367%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.01%)</title><rect x="59.8977%" y="645" width="0.0146%" height="15" fill="rgb(241,51,42)" fg:x="311696" fg:w="76"/><text x="60.1477%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.01%)</title><rect x="59.9297%" y="645" width="0.0115%" height="15" fill="rgb(226,128,27)" fg:x="311863" fg:w="60"/><text x="60.1797%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (332 samples, 0.06%)</title><rect x="59.9413%" y="645" width="0.0638%" height="15" fill="rgb(244,144,4)" fg:x="311923" fg:w="332"/><text x="60.1913%" y="655.50"></text></g><g><title>btrfs_get_64 (61 samples, 0.01%)</title><rect x="60.0189%" y="629" width="0.0117%" height="15" fill="rgb(221,4,13)" fg:x="312327" fg:w="61"/><text x="60.2689%" y="639.50"></text></g><g><title>__radix_tree_lookup (235 samples, 0.05%)</title><rect x="60.0498%" y="613" width="0.0452%" height="15" fill="rgb(208,170,28)" fg:x="312488" fg:w="235"/><text x="60.2998%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (108 samples, 0.02%)</title><rect x="60.0950%" y="613" width="0.0208%" height="15" fill="rgb(226,131,13)" fg:x="312723" fg:w="108"/><text x="60.3450%" y="623.50"></text></g><g><title>mark_page_accessed (60 samples, 0.01%)</title><rect x="60.1042%" y="597" width="0.0115%" height="15" fill="rgb(215,72,41)" fg:x="312771" fg:w="60"/><text x="60.3542%" y="607.50"></text></g><g><title>find_extent_buffer (420 samples, 0.08%)</title><rect x="60.0354%" y="629" width="0.0807%" height="15" fill="rgb(243,108,20)" fg:x="312413" fg:w="420"/><text x="60.2854%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (630 samples, 0.12%)</title><rect x="60.0051%" y="645" width="0.1211%" height="15" fill="rgb(230,189,17)" fg:x="312255" fg:w="630"/><text x="60.2551%" y="655.50"></text></g><g><title>btrfs_search_slot (1,775 samples, 0.34%)</title><rect x="59.8050%" y="661" width="0.3411%" height="15" fill="rgb(220,50,17)" fg:x="311214" fg:w="1775"/><text x="60.0550%" y="671.50"></text></g><g><title>unlock_up (57 samples, 0.01%)</title><rect x="60.1352%" y="645" width="0.0110%" height="15" fill="rgb(248,152,48)" fg:x="312932" fg:w="57"/><text x="60.3852%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (1,841 samples, 0.35%)</title><rect x="59.7981%" y="677" width="0.3538%" height="15" fill="rgb(244,91,11)" fg:x="311178" fg:w="1841"/><text x="60.0481%" y="687.50"></text></g><g><title>btrfs_tree_unlock (121 samples, 0.02%)</title><rect x="60.1594%" y="661" width="0.0233%" height="15" fill="rgb(220,157,5)" fg:x="313058" fg:w="121"/><text x="60.4094%" y="671.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="60.1888%" y="645" width="0.0184%" height="15" fill="rgb(253,137,8)" fg:x="313211" fg:w="96"/><text x="60.4388%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (126 samples, 0.02%)</title><rect x="60.1832%" y="661" width="0.0242%" height="15" fill="rgb(217,137,51)" fg:x="313182" fg:w="126"/><text x="60.4332%" y="671.50"></text></g><g><title>release_extent_buffer (79 samples, 0.02%)</title><rect x="60.2074%" y="661" width="0.0152%" height="15" fill="rgb(218,209,53)" fg:x="313308" fg:w="79"/><text x="60.4574%" y="671.50"></text></g><g><title>btrfs_release_path (369 samples, 0.07%)</title><rect x="60.1519%" y="677" width="0.0709%" height="15" fill="rgb(249,137,25)" fg:x="313019" fg:w="369"/><text x="60.4019%" y="687.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="60.2391%" y="661" width="0.0106%" height="15" fill="rgb(239,155,26)" fg:x="313473" fg:w="55"/><text x="60.4891%" y="671.50"></text></g><g><title>kmem_cache_alloc (148 samples, 0.03%)</title><rect x="60.2228%" y="677" width="0.0284%" height="15" fill="rgb(227,85,46)" fg:x="313388" fg:w="148"/><text x="60.4728%" y="687.50"></text></g><g><title>kmem_cache_free (93 samples, 0.02%)</title><rect x="60.2512%" y="677" width="0.0179%" height="15" fill="rgb(251,107,43)" fg:x="313536" fg:w="93"/><text x="60.5012%" y="687.50"></text></g><g><title>mutex_lock (106 samples, 0.02%)</title><rect x="60.2691%" y="677" width="0.0204%" height="15" fill="rgb(234,170,33)" fg:x="313629" fg:w="106"/><text x="60.5191%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (4,803 samples, 0.92%)</title><rect x="59.3899%" y="693" width="0.9230%" height="15" fill="rgb(206,29,35)" fg:x="309054" fg:w="4803"/><text x="59.6399%" y="703.50"></text></g><g><title>mutex_unlock (122 samples, 0.02%)</title><rect x="60.2895%" y="677" width="0.0234%" height="15" fill="rgb(227,138,25)" fg:x="313735" fg:w="122"/><text x="60.5395%" y="687.50"></text></g><g><title>btrfs_get_32 (113 samples, 0.02%)</title><rect x="60.4205%" y="661" width="0.0217%" height="15" fill="rgb(249,131,35)" fg:x="314417" fg:w="113"/><text x="60.6705%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,117 samples, 0.21%)</title><rect x="60.4423%" y="661" width="0.2147%" height="15" fill="rgb(239,6,40)" fg:x="314530" fg:w="1117"/><text x="60.6923%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (152 samples, 0.03%)</title><rect x="60.6277%" y="645" width="0.0292%" height="15" fill="rgb(246,136,47)" fg:x="315495" fg:w="152"/><text x="60.8777%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (149 samples, 0.03%)</title><rect x="60.6569%" y="661" width="0.0286%" height="15" fill="rgb(253,58,26)" fg:x="315647" fg:w="149"/><text x="60.9069%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="60.6652%" y="645" width="0.0204%" height="15" fill="rgb(237,141,10)" fg:x="315690" fg:w="106"/><text x="60.9152%" y="655.50"></text></g><g><title>btrfs_set_token_32 (957 samples, 0.18%)</title><rect x="60.6855%" y="661" width="0.1839%" height="15" fill="rgb(234,156,12)" fg:x="315796" fg:w="957"/><text x="60.9355%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (182 samples, 0.03%)</title><rect x="60.8345%" y="645" width="0.0350%" height="15" fill="rgb(243,224,36)" fg:x="316571" fg:w="182"/><text x="61.0845%" y="655.50"></text></g><g><title>leaf_space_used (146 samples, 0.03%)</title><rect x="60.8696%" y="661" width="0.0281%" height="15" fill="rgb(205,229,51)" fg:x="316754" fg:w="146"/><text x="61.1196%" y="671.50"></text></g><g><title>btrfs_get_32 (112 samples, 0.02%)</title><rect x="60.8762%" y="645" width="0.0215%" height="15" fill="rgb(223,189,4)" fg:x="316788" fg:w="112"/><text x="61.1262%" y="655.50"></text></g><g><title>memcpy_extent_buffer (225 samples, 0.04%)</title><rect x="60.8977%" y="661" width="0.0432%" height="15" fill="rgb(249,167,54)" fg:x="316900" fg:w="225"/><text x="61.1477%" y="671.50"></text></g><g><title>memmove (174 samples, 0.03%)</title><rect x="60.9075%" y="645" width="0.0334%" height="15" fill="rgb(218,34,28)" fg:x="316951" fg:w="174"/><text x="61.1575%" y="655.50"></text></g><g><title>copy_pages (246 samples, 0.05%)</title><rect x="60.9655%" y="645" width="0.0473%" height="15" fill="rgb(232,109,42)" fg:x="317253" fg:w="246"/><text x="61.2155%" y="655.50"></text></g><g><title>btrfs_del_items (5,487 samples, 1.05%)</title><rect x="60.3268%" y="677" width="1.0544%" height="15" fill="rgb(248,214,46)" fg:x="313929" fg:w="5487"/><text x="60.5768%" y="687.50"></text></g><g><title>memmove_extent_buffer (2,291 samples, 0.44%)</title><rect x="60.9409%" y="661" width="0.4403%" height="15" fill="rgb(244,216,40)" fg:x="317125" fg:w="2291"/><text x="61.1909%" y="671.50"></text></g><g><title>memmove (1,917 samples, 0.37%)</title><rect x="61.0128%" y="645" width="0.3684%" height="15" fill="rgb(231,226,31)" fg:x="317499" fg:w="1917"/><text x="61.2628%" y="655.50"></text></g><g><title>btrfs_get_16 (187 samples, 0.04%)</title><rect x="61.3904%" y="661" width="0.0359%" height="15" fill="rgb(238,38,43)" fg:x="319464" fg:w="187"/><text x="61.6404%" y="671.50"></text></g><g><title>btrfs_get_32 (92 samples, 0.02%)</title><rect x="61.4263%" y="661" width="0.0177%" height="15" fill="rgb(208,88,43)" fg:x="319651" fg:w="92"/><text x="61.6763%" y="671.50"></text></g><g><title>btrfs_find_name_in_backref (434 samples, 0.08%)</title><rect x="61.3812%" y="677" width="0.0834%" height="15" fill="rgb(205,136,37)" fg:x="319416" fg:w="434"/><text x="61.6312%" y="687.50"></text></g><g><title>memcmp_extent_buffer (107 samples, 0.02%)</title><rect x="61.4440%" y="661" width="0.0206%" height="15" fill="rgb(237,34,14)" fg:x="319743" fg:w="107"/><text x="61.6940%" y="671.50"></text></g><g><title>memcmp (64 samples, 0.01%)</title><rect x="61.4523%" y="645" width="0.0123%" height="15" fill="rgb(236,193,44)" fg:x="319786" fg:w="64"/><text x="61.7023%" y="655.50"></text></g><g><title>__wake_up_common (59 samples, 0.01%)</title><rect x="61.4730%" y="629" width="0.0113%" height="15" fill="rgb(231,48,10)" fg:x="319894" fg:w="59"/><text x="61.7230%" y="639.50"></text></g><g><title>autoremove_wake_function (57 samples, 0.01%)</title><rect x="61.4734%" y="613" width="0.0110%" height="15" fill="rgb(213,141,34)" fg:x="319896" fg:w="57"/><text x="61.7234%" y="623.50"></text></g><g><title>try_to_wake_up (56 samples, 0.01%)</title><rect x="61.4736%" y="597" width="0.0108%" height="15" fill="rgb(249,130,34)" fg:x="319897" fg:w="56"/><text x="61.7236%" y="607.50"></text></g><g><title>__wake_up_common_lock (63 samples, 0.01%)</title><rect x="61.4728%" y="645" width="0.0121%" height="15" fill="rgb(219,42,41)" fg:x="319893" fg:w="63"/><text x="61.7228%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (204 samples, 0.04%)</title><rect x="61.4917%" y="645" width="0.0392%" height="15" fill="rgb(224,100,54)" fg:x="319991" fg:w="204"/><text x="61.7417%" y="655.50"></text></g><g><title>_raw_spin_lock (155 samples, 0.03%)</title><rect x="61.5011%" y="629" width="0.0298%" height="15" fill="rgb(229,200,27)" fg:x="320040" fg:w="155"/><text x="61.7511%" y="639.50"></text></g><g><title>btrfs_free_path (487 samples, 0.09%)</title><rect x="61.4646%" y="677" width="0.0936%" height="15" fill="rgb(217,118,10)" fg:x="319850" fg:w="487"/><text x="61.7146%" y="687.50"></text></g><g><title>btrfs_release_path (481 samples, 0.09%)</title><rect x="61.4657%" y="661" width="0.0924%" height="15" fill="rgb(206,22,3)" fg:x="319856" fg:w="481"/><text x="61.7157%" y="671.50"></text></g><g><title>release_extent_buffer (142 samples, 0.03%)</title><rect x="61.5309%" y="645" width="0.0273%" height="15" fill="rgb(232,163,46)" fg:x="320195" fg:w="142"/><text x="61.7809%" y="655.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="61.6402%" y="629" width="0.0102%" height="15" fill="rgb(206,95,13)" fg:x="320764" fg:w="53"/><text x="61.8902%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="61.6358%" y="645" width="0.0167%" height="15" fill="rgb(253,154,18)" fg:x="320741" fg:w="87"/><text x="61.8858%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (167 samples, 0.03%)</title><rect x="61.6341%" y="661" width="0.0321%" height="15" fill="rgb(219,32,23)" fg:x="320732" fg:w="167"/><text x="61.8841%" y="671.50"></text></g><g><title>btrfs_root_node (71 samples, 0.01%)</title><rect x="61.6525%" y="645" width="0.0136%" height="15" fill="rgb(230,191,45)" fg:x="320828" fg:w="71"/><text x="61.9025%" y="655.50"></text></g><g><title>_raw_write_lock (69 samples, 0.01%)</title><rect x="61.6888%" y="629" width="0.0133%" height="15" fill="rgb(229,64,36)" fg:x="321017" fg:w="69"/><text x="61.9388%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (62 samples, 0.01%)</title><rect x="61.7021%" y="629" width="0.0119%" height="15" fill="rgb(205,129,25)" fg:x="321086" fg:w="62"/><text x="61.9521%" y="639.50"></text></g><g><title>__btrfs_tree_lock (173 samples, 0.03%)</title><rect x="61.6810%" y="645" width="0.0332%" height="15" fill="rgb(254,112,7)" fg:x="320976" fg:w="173"/><text x="61.9310%" y="655.50"></text></g><g><title>btrfs_lock_root_node (249 samples, 0.05%)</title><rect x="61.6779%" y="661" width="0.0478%" height="15" fill="rgb(226,53,48)" fg:x="320960" fg:w="249"/><text x="61.9279%" y="671.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="61.7142%" y="645" width="0.0115%" height="15" fill="rgb(214,153,38)" fg:x="321149" fg:w="60"/><text x="61.9642%" y="655.50"></text></g><g><title>_raw_write_lock (114 samples, 0.02%)</title><rect x="61.7453%" y="645" width="0.0219%" height="15" fill="rgb(243,101,7)" fg:x="321311" fg:w="114"/><text x="61.9953%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (157 samples, 0.03%)</title><rect x="61.7392%" y="661" width="0.0302%" height="15" fill="rgb(240,140,22)" fg:x="321279" fg:w="157"/><text x="61.9892%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (69 samples, 0.01%)</title><rect x="61.7701%" y="661" width="0.0133%" height="15" fill="rgb(235,114,2)" fg:x="321440" fg:w="69"/><text x="62.0201%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,193 samples, 0.23%)</title><rect x="61.7834%" y="661" width="0.2293%" height="15" fill="rgb(242,59,12)" fg:x="321509" fg:w="1193"/><text x="62.0334%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (124 samples, 0.02%)</title><rect x="62.0363%" y="645" width="0.0238%" height="15" fill="rgb(252,134,9)" fg:x="322825" fg:w="124"/><text x="62.2863%" y="655.50"></text></g><g><title>verify_parent_transid (105 samples, 0.02%)</title><rect x="62.0399%" y="629" width="0.0202%" height="15" fill="rgb(236,4,44)" fg:x="322844" fg:w="105"/><text x="62.2899%" y="639.50"></text></g><g><title>btrfs_get_64 (128 samples, 0.02%)</title><rect x="62.0601%" y="645" width="0.0246%" height="15" fill="rgb(254,172,41)" fg:x="322949" fg:w="128"/><text x="62.3101%" y="655.50"></text></g><g><title>__radix_tree_lookup (563 samples, 0.11%)</title><rect x="62.1527%" y="629" width="0.1082%" height="15" fill="rgb(244,63,20)" fg:x="323431" fg:w="563"/><text x="62.4027%" y="639.50"></text></g><g><title>check_buffer_tree_ref (67 samples, 0.01%)</title><rect x="62.2703%" y="613" width="0.0129%" height="15" fill="rgb(250,73,31)" fg:x="324043" fg:w="67"/><text x="62.5203%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (322 samples, 0.06%)</title><rect x="62.2611%" y="629" width="0.0619%" height="15" fill="rgb(241,38,36)" fg:x="323995" fg:w="322"/><text x="62.5111%" y="639.50"></text></g><g><title>mark_page_accessed (207 samples, 0.04%)</title><rect x="62.2832%" y="613" width="0.0398%" height="15" fill="rgb(245,211,2)" fg:x="324110" fg:w="207"/><text x="62.5332%" y="623.50"></text></g><g><title>find_extent_buffer (1,202 samples, 0.23%)</title><rect x="62.0928%" y="645" width="0.2310%" height="15" fill="rgb(206,120,28)" fg:x="323119" fg:w="1202"/><text x="62.3428%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,784 samples, 0.34%)</title><rect x="62.0126%" y="661" width="0.3428%" height="15" fill="rgb(211,59,34)" fg:x="322702" fg:w="1784"/><text x="62.2626%" y="671.50"></text></g><g><title>read_extent_buffer (165 samples, 0.03%)</title><rect x="62.3238%" y="645" width="0.0317%" height="15" fill="rgb(233,168,5)" fg:x="324321" fg:w="165"/><text x="62.5738%" y="655.50"></text></g><g><title>find_extent_buffer (127 samples, 0.02%)</title><rect x="62.3639%" y="645" width="0.0244%" height="15" fill="rgb(234,33,13)" fg:x="324530" fg:w="127"/><text x="62.6139%" y="655.50"></text></g><g><title>reada_for_balance (191 samples, 0.04%)</title><rect x="62.3555%" y="661" width="0.0367%" height="15" fill="rgb(231,150,26)" fg:x="324486" fg:w="191"/><text x="62.6055%" y="671.50"></text></g><g><title>btrfs_search_slot (4,572 samples, 0.88%)</title><rect x="61.5741%" y="677" width="0.8786%" height="15" fill="rgb(217,191,4)" fg:x="320420" fg:w="4572"/><text x="61.8241%" y="687.50"></text></g><g><title>unlock_up (266 samples, 0.05%)</title><rect x="62.4016%" y="661" width="0.0511%" height="15" fill="rgb(246,198,38)" fg:x="324726" fg:w="266"/><text x="62.6516%" y="671.50"></text></g><g><title>kmem_cache_alloc (137 samples, 0.03%)</title><rect x="62.4529%" y="677" width="0.0263%" height="15" fill="rgb(245,64,37)" fg:x="324993" fg:w="137"/><text x="62.7029%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (11,361 samples, 2.18%)</title><rect x="60.3129%" y="693" width="2.1832%" height="15" fill="rgb(250,30,36)" fg:x="313857" fg:w="11361"/><text x="60.5629%" y="703.50">b..</text></g><g><title>kmem_cache_free (88 samples, 0.02%)</title><rect x="62.4792%" y="677" width="0.0169%" height="15" fill="rgb(217,86,53)" fg:x="325130" fg:w="88"/><text x="62.7292%" y="687.50"></text></g><g><title>btrfs_get_token_32 (63 samples, 0.01%)</title><rect x="62.5271%" y="645" width="0.0121%" height="15" fill="rgb(228,157,16)" fg:x="325379" fg:w="63"/><text x="62.7771%" y="655.50"></text></g><g><title>btrfs_del_items (179 samples, 0.03%)</title><rect x="62.5232%" y="661" width="0.0344%" height="15" fill="rgb(217,59,31)" fg:x="325359" fg:w="179"/><text x="62.7732%" y="671.50"></text></g><g><title>btrfs_tree_unlock (53 samples, 0.01%)</title><rect x="62.5818%" y="629" width="0.0102%" height="15" fill="rgb(237,138,41)" fg:x="325664" fg:w="53"/><text x="62.8318%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (202 samples, 0.04%)</title><rect x="62.5947%" y="629" width="0.0388%" height="15" fill="rgb(227,91,49)" fg:x="325731" fg:w="202"/><text x="62.8447%" y="639.50"></text></g><g><title>_raw_spin_lock (162 samples, 0.03%)</title><rect x="62.6024%" y="613" width="0.0311%" height="15" fill="rgb(247,21,44)" fg:x="325771" fg:w="162"/><text x="62.8524%" y="623.50"></text></g><g><title>btrfs_free_path (580 samples, 0.11%)</title><rect x="62.5588%" y="661" width="0.1115%" height="15" fill="rgb(219,210,51)" fg:x="325544" fg:w="580"/><text x="62.8088%" y="671.50"></text></g><g><title>btrfs_release_path (561 samples, 0.11%)</title><rect x="62.5624%" y="645" width="0.1078%" height="15" fill="rgb(209,140,6)" fg:x="325563" fg:w="561"/><text x="62.8124%" y="655.50"></text></g><g><title>release_extent_buffer (191 samples, 0.04%)</title><rect x="62.6335%" y="629" width="0.0367%" height="15" fill="rgb(221,188,24)" fg:x="325933" fg:w="191"/><text x="62.8835%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (131 samples, 0.03%)</title><rect x="62.7442%" y="629" width="0.0252%" height="15" fill="rgb(232,154,20)" fg:x="326509" fg:w="131"/><text x="62.9942%" y="639.50"></text></g><g><title>_raw_read_lock (95 samples, 0.02%)</title><rect x="62.7511%" y="613" width="0.0183%" height="15" fill="rgb(244,137,50)" fg:x="326545" fg:w="95"/><text x="63.0011%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (317 samples, 0.06%)</title><rect x="62.7394%" y="645" width="0.0609%" height="15" fill="rgb(225,185,43)" fg:x="326484" fg:w="317"/><text x="62.9894%" y="655.50"></text></g><g><title>btrfs_root_node (160 samples, 0.03%)</title><rect x="62.7696%" y="629" width="0.0307%" height="15" fill="rgb(213,205,38)" fg:x="326641" fg:w="160"/><text x="63.0196%" y="639.50"></text></g><g><title>__btrfs_tree_lock (182 samples, 0.03%)</title><rect x="62.8121%" y="629" width="0.0350%" height="15" fill="rgb(236,73,12)" fg:x="326862" fg:w="182"/><text x="63.0621%" y="639.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="62.8267%" y="613" width="0.0204%" height="15" fill="rgb(235,219,13)" fg:x="326938" fg:w="106"/><text x="63.0767%" y="623.50"></text></g><g><title>btrfs_lock_root_node (321 samples, 0.06%)</title><rect x="62.8090%" y="645" width="0.0617%" height="15" fill="rgb(218,59,36)" fg:x="326846" fg:w="321"/><text x="63.0590%" y="655.50"></text></g><g><title>btrfs_root_node (123 samples, 0.02%)</title><rect x="62.8470%" y="629" width="0.0236%" height="15" fill="rgb(205,110,39)" fg:x="327044" fg:w="123"/><text x="63.0970%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (90 samples, 0.02%)</title><rect x="62.8722%" y="645" width="0.0173%" height="15" fill="rgb(218,206,42)" fg:x="327175" fg:w="90"/><text x="63.1222%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (93 samples, 0.02%)</title><rect x="62.8895%" y="645" width="0.0179%" height="15" fill="rgb(248,125,24)" fg:x="327265" fg:w="93"/><text x="63.1395%" y="655.50"></text></g><g><title>_raw_write_lock (75 samples, 0.01%)</title><rect x="62.8930%" y="629" width="0.0144%" height="15" fill="rgb(242,28,27)" fg:x="327283" fg:w="75"/><text x="63.1430%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (107 samples, 0.02%)</title><rect x="62.9091%" y="645" width="0.0206%" height="15" fill="rgb(216,228,15)" fg:x="327367" fg:w="107"/><text x="63.1591%" y="655.50"></text></g><g><title>_raw_spin_lock (87 samples, 0.02%)</title><rect x="62.9129%" y="629" width="0.0167%" height="15" fill="rgb(235,116,46)" fg:x="327387" fg:w="87"/><text x="63.1629%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,222 samples, 0.23%)</title><rect x="62.9297%" y="645" width="0.2348%" height="15" fill="rgb(224,18,32)" fg:x="327474" fg:w="1222"/><text x="63.1797%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (72 samples, 0.01%)</title><rect x="63.1875%" y="629" width="0.0138%" height="15" fill="rgb(252,5,12)" fg:x="328816" fg:w="72"/><text x="63.4375%" y="639.50"></text></g><g><title>btrfs_get_64 (97 samples, 0.02%)</title><rect x="63.2014%" y="629" width="0.0186%" height="15" fill="rgb(251,36,5)" fg:x="328888" fg:w="97"/><text x="63.4514%" y="639.50"></text></g><g><title>__radix_tree_lookup (377 samples, 0.07%)</title><rect x="63.2577%" y="613" width="0.0724%" height="15" fill="rgb(217,53,14)" fg:x="329181" fg:w="377"/><text x="63.5077%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (221 samples, 0.04%)</title><rect x="63.3303%" y="613" width="0.0425%" height="15" fill="rgb(215,86,45)" fg:x="329559" fg:w="221"/><text x="63.5803%" y="623.50"></text></g><g><title>mark_page_accessed (137 samples, 0.03%)</title><rect x="63.3465%" y="597" width="0.0263%" height="15" fill="rgb(242,169,11)" fg:x="329643" fg:w="137"/><text x="63.5965%" y="607.50"></text></g><g><title>find_extent_buffer (757 samples, 0.15%)</title><rect x="63.2283%" y="629" width="0.1455%" height="15" fill="rgb(211,213,45)" fg:x="329028" fg:w="757"/><text x="63.4783%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,205 samples, 0.23%)</title><rect x="63.1645%" y="645" width="0.2316%" height="15" fill="rgb(205,88,11)" fg:x="328696" fg:w="1205"/><text x="63.4145%" y="655.50"></text></g><g><title>read_extent_buffer (116 samples, 0.02%)</title><rect x="63.3738%" y="629" width="0.0223%" height="15" fill="rgb(252,69,26)" fg:x="329785" fg:w="116"/><text x="63.6238%" y="639.50"></text></g><g><title>release_extent_buffer (91 samples, 0.02%)</title><rect x="63.3968%" y="645" width="0.0175%" height="15" fill="rgb(246,123,37)" fg:x="329905" fg:w="91"/><text x="63.6468%" y="655.50"></text></g><g><title>btrfs_search_slot (4,030 samples, 0.77%)</title><rect x="62.6704%" y="661" width="0.7744%" height="15" fill="rgb(212,205,5)" fg:x="326125" fg:w="4030"/><text x="62.9204%" y="671.50"></text></g><g><title>unlock_up (159 samples, 0.03%)</title><rect x="63.4143%" y="645" width="0.0306%" height="15" fill="rgb(253,148,0)" fg:x="329996" fg:w="159"/><text x="63.6643%" y="655.50"></text></g><g><title>crc32c (84 samples, 0.02%)</title><rect x="63.4449%" y="661" width="0.0161%" height="15" fill="rgb(239,22,4)" fg:x="330155" fg:w="84"/><text x="63.6949%" y="671.50"></text></g><g><title>crypto_shash_update (57 samples, 0.01%)</title><rect x="63.4500%" y="645" width="0.0110%" height="15" fill="rgb(226,26,53)" fg:x="330182" fg:w="57"/><text x="63.7000%" y="655.50"></text></g><g><title>memset_erms (95 samples, 0.02%)</title><rect x="63.4935%" y="645" width="0.0183%" height="15" fill="rgb(225,229,45)" fg:x="330408" fg:w="95"/><text x="63.7435%" y="655.50"></text></g><g><title>kmem_cache_alloc (316 samples, 0.06%)</title><rect x="63.4610%" y="661" width="0.0607%" height="15" fill="rgb(220,60,37)" fg:x="330239" fg:w="316"/><text x="63.7110%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (5,444 samples, 1.05%)</title><rect x="62.5134%" y="677" width="1.0462%" height="15" fill="rgb(217,180,35)" fg:x="325308" fg:w="5444"/><text x="62.7634%" y="687.50"></text></g><g><title>kmem_cache_free (197 samples, 0.04%)</title><rect x="63.5217%" y="661" width="0.0379%" height="15" fill="rgb(229,7,53)" fg:x="330555" fg:w="197"/><text x="63.7717%" y="671.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (55 samples, 0.01%)</title><rect x="63.5490%" y="645" width="0.0106%" height="15" fill="rgb(254,137,3)" fg:x="330697" fg:w="55"/><text x="63.7990%" y="655.50"></text></g><g><title>mutex_lock (105 samples, 0.02%)</title><rect x="63.5682%" y="677" width="0.0202%" height="15" fill="rgb(215,140,41)" fg:x="330797" fg:w="105"/><text x="63.8182%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (5,794 samples, 1.11%)</title><rect x="62.4961%" y="693" width="1.1134%" height="15" fill="rgb(250,80,15)" fg:x="325218" fg:w="5794"/><text x="62.7461%" y="703.50"></text></g><g><title>mutex_unlock (110 samples, 0.02%)</title><rect x="63.5884%" y="677" width="0.0211%" height="15" fill="rgb(252,191,6)" fg:x="330902" fg:w="110"/><text x="63.8384%" y="687.50"></text></g><g><title>btrfs_free_tree_block (81 samples, 0.02%)</title><rect x="63.8265%" y="661" width="0.0156%" height="15" fill="rgb(246,217,18)" fg:x="332141" fg:w="81"/><text x="64.0765%" y="671.50"></text></g><g><title>btrfs_del_leaf (94 samples, 0.02%)</title><rect x="63.8263%" y="677" width="0.0181%" height="15" fill="rgb(223,93,7)" fg:x="332140" fg:w="94"/><text x="64.0763%" y="687.50"></text></g><g><title>btrfs_get_32 (147 samples, 0.03%)</title><rect x="63.8444%" y="677" width="0.0282%" height="15" fill="rgb(225,55,52)" fg:x="332234" fg:w="147"/><text x="64.0944%" y="687.50"></text></g><g><title>btrfs_get_token_32 (3,444 samples, 0.66%)</title><rect x="63.8726%" y="677" width="0.6618%" height="15" fill="rgb(240,31,24)" fg:x="332381" fg:w="3444"/><text x="64.1226%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (481 samples, 0.09%)</title><rect x="64.4420%" y="661" width="0.0924%" height="15" fill="rgb(205,56,52)" fg:x="335344" fg:w="481"/><text x="64.6920%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (186 samples, 0.04%)</title><rect x="64.5344%" y="677" width="0.0357%" height="15" fill="rgb(246,146,12)" fg:x="335825" fg:w="186"/><text x="64.7844%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (104 samples, 0.02%)</title><rect x="64.5502%" y="661" width="0.0200%" height="15" fill="rgb(239,84,36)" fg:x="335907" fg:w="104"/><text x="64.8002%" y="671.50"></text></g><g><title>btrfs_set_token_32 (3,049 samples, 0.59%)</title><rect x="64.5710%" y="677" width="0.5859%" height="15" fill="rgb(207,41,40)" fg:x="336015" fg:w="3049"/><text x="64.8210%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (600 samples, 0.12%)</title><rect x="65.0416%" y="661" width="0.1153%" height="15" fill="rgb(241,179,25)" fg:x="338464" fg:w="600"/><text x="65.2916%" y="671.50"></text></g><g><title>leaf_space_used (135 samples, 0.03%)</title><rect x="65.1578%" y="677" width="0.0259%" height="15" fill="rgb(210,0,34)" fg:x="339069" fg:w="135"/><text x="65.4078%" y="687.50"></text></g><g><title>btrfs_get_32 (90 samples, 0.02%)</title><rect x="65.1665%" y="661" width="0.0173%" height="15" fill="rgb(225,217,29)" fg:x="339114" fg:w="90"/><text x="65.4165%" y="671.50"></text></g><g><title>copy_pages (60 samples, 0.01%)</title><rect x="65.1955%" y="661" width="0.0115%" height="15" fill="rgb(216,191,38)" fg:x="339265" fg:w="60"/><text x="65.4455%" y="671.50"></text></g><g><title>memcpy_extent_buffer (580 samples, 0.11%)</title><rect x="65.1838%" y="677" width="0.1115%" height="15" fill="rgb(232,140,52)" fg:x="339204" fg:w="580"/><text x="65.4338%" y="687.50"></text></g><g><title>memmove (459 samples, 0.09%)</title><rect x="65.2070%" y="661" width="0.0882%" height="15" fill="rgb(223,158,51)" fg:x="339325" fg:w="459"/><text x="65.4570%" y="671.50"></text></g><g><title>copy_pages (180 samples, 0.03%)</title><rect x="65.3141%" y="661" width="0.0346%" height="15" fill="rgb(235,29,51)" fg:x="339882" fg:w="180"/><text x="65.5641%" y="671.50"></text></g><g><title>memmove_extent_buffer (1,676 samples, 0.32%)</title><rect x="65.2952%" y="677" width="0.3221%" height="15" fill="rgb(215,181,18)" fg:x="339784" fg:w="1676"/><text x="65.5452%" y="687.50"></text></g><g><title>memmove (1,398 samples, 0.27%)</title><rect x="65.3487%" y="661" width="0.2686%" height="15" fill="rgb(227,125,34)" fg:x="340062" fg:w="1398"/><text x="65.5987%" y="671.50"></text></g><g><title>__push_leaf_left (116 samples, 0.02%)</title><rect x="65.6188%" y="661" width="0.0223%" height="15" fill="rgb(230,197,49)" fg:x="341468" fg:w="116"/><text x="65.8688%" y="671.50"></text></g><g><title>push_leaf_left (164 samples, 0.03%)</title><rect x="65.6173%" y="677" width="0.0315%" height="15" fill="rgb(239,141,16)" fg:x="341460" fg:w="164"/><text x="65.8673%" y="687.50"></text></g><g><title>__push_leaf_right (103 samples, 0.02%)</title><rect x="65.6496%" y="661" width="0.0198%" height="15" fill="rgb(225,105,43)" fg:x="341628" fg:w="103"/><text x="65.8996%" y="671.50"></text></g><g><title>push_leaf_right (144 samples, 0.03%)</title><rect x="65.6488%" y="677" width="0.0277%" height="15" fill="rgb(214,131,14)" fg:x="341624" fg:w="144"/><text x="65.8988%" y="687.50"></text></g><g><title>btrfs_del_items (10,767 samples, 2.07%)</title><rect x="63.6095%" y="693" width="2.0691%" height="15" fill="rgb(229,177,11)" fg:x="331012" fg:w="10767"/><text x="63.8595%" y="703.50">b..</text></g><g><title>btrfs_comp_cpu_keys (77 samples, 0.01%)</title><rect x="65.7276%" y="661" width="0.0148%" height="15" fill="rgb(231,180,14)" fg:x="342034" fg:w="77"/><text x="65.9776%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (381 samples, 0.07%)</title><rect x="65.6903%" y="677" width="0.0732%" height="15" fill="rgb(232,88,2)" fg:x="341840" fg:w="381"/><text x="65.9403%" y="687.50"></text></g><g><title>rb_insert_color (110 samples, 0.02%)</title><rect x="65.7424%" y="661" width="0.0211%" height="15" fill="rgb(205,220,8)" fg:x="342111" fg:w="110"/><text x="65.9924%" y="671.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="65.7914%" y="661" width="0.0125%" height="15" fill="rgb(225,23,53)" fg:x="342366" fg:w="65"/><text x="66.0414%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (264 samples, 0.05%)</title><rect x="65.7635%" y="677" width="0.0507%" height="15" fill="rgb(213,62,29)" fg:x="342221" fg:w="264"/><text x="66.0135%" y="687.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="65.8039%" y="661" width="0.0104%" height="15" fill="rgb(227,75,7)" fg:x="342431" fg:w="54"/><text x="66.0539%" y="671.50"></text></g><g><title>mutex_spin_on_owner (303 samples, 0.06%)</title><rect x="65.8154%" y="661" width="0.0582%" height="15" fill="rgb(207,105,14)" fg:x="342491" fg:w="303"/><text x="66.0654%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (310 samples, 0.06%)</title><rect x="65.8143%" y="677" width="0.0596%" height="15" fill="rgb(245,62,29)" fg:x="342485" fg:w="310"/><text x="66.0643%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (228 samples, 0.04%)</title><rect x="65.8739%" y="677" width="0.0438%" height="15" fill="rgb(236,202,4)" fg:x="342795" fg:w="228"/><text x="66.1239%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (206 samples, 0.04%)</title><rect x="65.8781%" y="661" width="0.0396%" height="15" fill="rgb(250,67,1)" fg:x="342817" fg:w="206"/><text x="66.1281%" y="671.50"></text></g><g><title>_raw_spin_lock (175 samples, 0.03%)</title><rect x="65.8840%" y="645" width="0.0336%" height="15" fill="rgb(253,115,44)" fg:x="342848" fg:w="175"/><text x="66.1340%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (132 samples, 0.03%)</title><rect x="65.9177%" y="677" width="0.0254%" height="15" fill="rgb(251,139,18)" fg:x="343023" fg:w="132"/><text x="66.1677%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (114 samples, 0.02%)</title><rect x="65.9211%" y="661" width="0.0219%" height="15" fill="rgb(218,22,32)" fg:x="343041" fg:w="114"/><text x="66.1711%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (229 samples, 0.04%)</title><rect x="65.9430%" y="677" width="0.0440%" height="15" fill="rgb(243,53,5)" fg:x="343155" fg:w="229"/><text x="66.1930%" y="687.50"></text></g><g><title>mutex_lock (123 samples, 0.02%)</title><rect x="65.9870%" y="677" width="0.0236%" height="15" fill="rgb(227,56,16)" fg:x="343384" fg:w="123"/><text x="66.2370%" y="687.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,828 samples, 0.35%)</title><rect x="65.6786%" y="693" width="0.3513%" height="15" fill="rgb(245,53,0)" fg:x="341779" fg:w="1828"/><text x="65.9286%" y="703.50"></text></g><g><title>mutex_unlock (100 samples, 0.02%)</title><rect x="66.0107%" y="677" width="0.0192%" height="15" fill="rgb(216,170,35)" fg:x="343507" fg:w="100"/><text x="66.2607%" y="687.50"></text></g><g><title>btrfs_get_16 (73 samples, 0.01%)</title><rect x="66.0380%" y="677" width="0.0140%" height="15" fill="rgb(211,200,8)" fg:x="343649" fg:w="73"/><text x="66.2880%" y="687.50"></text></g><g><title>btrfs_delete_one_dir_name (142 samples, 0.03%)</title><rect x="66.0299%" y="693" width="0.0273%" height="15" fill="rgb(228,204,44)" fg:x="343607" fg:w="142"/><text x="66.2799%" y="703.50"></text></g><g><title>btrfs_get_16 (111 samples, 0.02%)</title><rect x="66.0814%" y="661" width="0.0213%" height="15" fill="rgb(214,121,17)" fg:x="343875" fg:w="111"/><text x="66.3314%" y="671.50"></text></g><g><title>btrfs_get_32 (98 samples, 0.02%)</title><rect x="66.1027%" y="661" width="0.0188%" height="15" fill="rgb(233,64,38)" fg:x="343986" fg:w="98"/><text x="66.3527%" y="671.50"></text></g><g><title>btrfs_match_dir_item_name (451 samples, 0.09%)</title><rect x="66.0687%" y="677" width="0.0867%" height="15" fill="rgb(253,54,19)" fg:x="343809" fg:w="451"/><text x="66.3187%" y="687.50"></text></g><g><title>memcmp_extent_buffer (176 samples, 0.03%)</title><rect x="66.1216%" y="661" width="0.0338%" height="15" fill="rgb(253,94,18)" fg:x="344084" fg:w="176"/><text x="66.3716%" y="671.50"></text></g><g><title>memcmp (113 samples, 0.02%)</title><rect x="66.1337%" y="645" width="0.0217%" height="15" fill="rgb(227,57,52)" fg:x="344147" fg:w="113"/><text x="66.3837%" y="655.50"></text></g><g><title>_raw_read_lock (67 samples, 0.01%)</title><rect x="66.2126%" y="629" width="0.0129%" height="15" fill="rgb(230,228,50)" fg:x="344558" fg:w="67"/><text x="66.4626%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="66.2092%" y="645" width="0.0173%" height="15" fill="rgb(217,205,27)" fg:x="344540" fg:w="90"/><text x="66.4592%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (206 samples, 0.04%)</title><rect x="66.2071%" y="661" width="0.0396%" height="15" fill="rgb(252,71,50)" fg:x="344529" fg:w="206"/><text x="66.4571%" y="671.50"></text></g><g><title>btrfs_root_node (105 samples, 0.02%)</title><rect x="66.2265%" y="645" width="0.0202%" height="15" fill="rgb(209,86,4)" fg:x="344630" fg:w="105"/><text x="66.4765%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (63 samples, 0.01%)</title><rect x="66.2718%" y="629" width="0.0121%" height="15" fill="rgb(229,94,0)" fg:x="344866" fg:w="63"/><text x="66.5218%" y="639.50"></text></g><g><title>__btrfs_tree_lock (141 samples, 0.03%)</title><rect x="66.2578%" y="645" width="0.0271%" height="15" fill="rgb(252,223,21)" fg:x="344793" fg:w="141"/><text x="66.5078%" y="655.50"></text></g><g><title>btrfs_lock_root_node (216 samples, 0.04%)</title><rect x="66.2549%" y="661" width="0.0415%" height="15" fill="rgb(230,210,4)" fg:x="344778" fg:w="216"/><text x="66.5049%" y="671.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="66.2849%" y="645" width="0.0115%" height="15" fill="rgb(240,149,38)" fg:x="344934" fg:w="60"/><text x="66.5349%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (57 samples, 0.01%)</title><rect x="66.2964%" y="661" width="0.0110%" height="15" fill="rgb(254,105,20)" fg:x="344994" fg:w="57"/><text x="66.5464%" y="671.50"></text></g><g><title>_raw_write_lock (80 samples, 0.02%)</title><rect x="66.3106%" y="645" width="0.0154%" height="15" fill="rgb(253,87,46)" fg:x="345068" fg:w="80"/><text x="66.5606%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (219 samples, 0.04%)</title><rect x="66.3074%" y="661" width="0.0421%" height="15" fill="rgb(253,116,33)" fg:x="345051" fg:w="219"/><text x="66.5574%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (122 samples, 0.02%)</title><rect x="66.3260%" y="645" width="0.0234%" height="15" fill="rgb(229,198,5)" fg:x="345148" fg:w="122"/><text x="66.5760%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (69 samples, 0.01%)</title><rect x="66.3497%" y="661" width="0.0133%" height="15" fill="rgb(242,38,37)" fg:x="345271" fg:w="69"/><text x="66.5997%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,084 samples, 0.21%)</title><rect x="66.3629%" y="661" width="0.2083%" height="15" fill="rgb(242,69,53)" fg:x="345340" fg:w="1084"/><text x="66.6129%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (57 samples, 0.01%)</title><rect x="66.5989%" y="645" width="0.0110%" height="15" fill="rgb(249,80,16)" fg:x="346568" fg:w="57"/><text x="66.8489%" y="655.50"></text></g><g><title>btrfs_get_64 (138 samples, 0.03%)</title><rect x="66.6098%" y="645" width="0.0265%" height="15" fill="rgb(206,128,11)" fg:x="346625" fg:w="138"/><text x="66.8598%" y="655.50"></text></g><g><title>__radix_tree_lookup (494 samples, 0.09%)</title><rect x="66.6788%" y="629" width="0.0949%" height="15" fill="rgb(212,35,20)" fg:x="346984" fg:w="494"/><text x="66.9288%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (243 samples, 0.05%)</title><rect x="66.7738%" y="629" width="0.0467%" height="15" fill="rgb(236,79,13)" fg:x="347478" fg:w="243"/><text x="67.0238%" y="639.50"></text></g><g><title>mark_page_accessed (154 samples, 0.03%)</title><rect x="66.7909%" y="613" width="0.0296%" height="15" fill="rgb(233,123,3)" fg:x="347567" fg:w="154"/><text x="67.0409%" y="623.50"></text></g><g><title>find_extent_buffer (906 samples, 0.17%)</title><rect x="66.6469%" y="645" width="0.1741%" height="15" fill="rgb(214,93,52)" fg:x="346818" fg:w="906"/><text x="66.8969%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,463 samples, 0.28%)</title><rect x="66.5712%" y="661" width="0.2811%" height="15" fill="rgb(251,37,40)" fg:x="346424" fg:w="1463"/><text x="66.8212%" y="671.50"></text></g><g><title>read_extent_buffer (163 samples, 0.03%)</title><rect x="66.8210%" y="645" width="0.0313%" height="15" fill="rgb(227,80,54)" fg:x="347724" fg:w="163"/><text x="67.0710%" y="655.50"></text></g><g><title>btrfs_search_slot (3,854 samples, 0.74%)</title><rect x="66.1554%" y="677" width="0.7406%" height="15" fill="rgb(254,48,11)" fg:x="344260" fg:w="3854"/><text x="66.4054%" y="687.50"></text></g><g><title>unlock_up (200 samples, 0.04%)</title><rect x="66.8576%" y="661" width="0.0384%" height="15" fill="rgb(235,193,26)" fg:x="347914" fg:w="200"/><text x="67.1076%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (4,393 samples, 0.84%)</title><rect x="66.0610%" y="693" width="0.8442%" height="15" fill="rgb(229,99,21)" fg:x="343769" fg:w="4393"/><text x="66.3110%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (184 samples, 0.04%)</title><rect x="66.9179%" y="677" width="0.0354%" height="15" fill="rgb(211,140,41)" fg:x="348228" fg:w="184"/><text x="67.1679%" y="687.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.03%)</title><rect x="66.9271%" y="661" width="0.0261%" height="15" fill="rgb(240,227,30)" fg:x="348276" fg:w="136"/><text x="67.1771%" y="671.50"></text></g><g><title>btrfs_release_path (417 samples, 0.08%)</title><rect x="66.9052%" y="693" width="0.0801%" height="15" fill="rgb(215,224,45)" fg:x="348162" fg:w="417"/><text x="67.1552%" y="703.50"></text></g><g><title>release_extent_buffer (167 samples, 0.03%)</title><rect x="66.9533%" y="677" width="0.0321%" height="15" fill="rgb(206,123,31)" fg:x="348412" fg:w="167"/><text x="67.2033%" y="687.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="67.0247%" y="645" width="0.0104%" height="15" fill="rgb(210,138,16)" fg:x="348784" fg:w="54"/><text x="67.2747%" y="655.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="67.0353%" y="645" width="0.0115%" height="15" fill="rgb(228,57,28)" fg:x="348839" fg:w="60"/><text x="67.2853%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (280 samples, 0.05%)</title><rect x="67.0040%" y="661" width="0.0538%" height="15" fill="rgb(242,170,10)" fg:x="348676" fg:w="280"/><text x="67.2540%" y="671.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="67.0468%" y="645" width="0.0110%" height="15" fill="rgb(228,214,39)" fg:x="348899" fg:w="57"/><text x="67.2968%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (62 samples, 0.01%)</title><rect x="67.0578%" y="661" width="0.0119%" height="15" fill="rgb(218,179,33)" fg:x="348956" fg:w="62"/><text x="67.3078%" y="671.50"></text></g><g><title>mutex_spin_on_owner (62 samples, 0.01%)</title><rect x="67.0578%" y="645" width="0.0119%" height="15" fill="rgb(235,193,39)" fg:x="348956" fg:w="62"/><text x="67.3078%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (101 samples, 0.02%)</title><rect x="67.0701%" y="661" width="0.0194%" height="15" fill="rgb(219,221,36)" fg:x="349020" fg:w="101"/><text x="67.3201%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (89 samples, 0.02%)</title><rect x="67.0724%" y="645" width="0.0171%" height="15" fill="rgb(248,218,19)" fg:x="349032" fg:w="89"/><text x="67.3224%" y="655.50"></text></g><g><title>inode_get_bytes (77 samples, 0.01%)</title><rect x="67.0989%" y="645" width="0.0148%" height="15" fill="rgb(205,50,9)" fg:x="349170" fg:w="77"/><text x="67.3489%" y="655.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="67.1016%" y="629" width="0.0121%" height="15" fill="rgb(238,81,28)" fg:x="349184" fg:w="63"/><text x="67.3516%" y="639.50"></text></g><g><title>fill_stack_inode_item (167 samples, 0.03%)</title><rect x="67.0895%" y="661" width="0.0321%" height="15" fill="rgb(235,110,19)" fg:x="349121" fg:w="167"/><text x="67.3395%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (746 samples, 0.14%)</title><rect x="66.9998%" y="677" width="0.1434%" height="15" fill="rgb(214,7,14)" fg:x="348654" fg:w="746"/><text x="67.2498%" y="687.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="67.1304%" y="661" width="0.0127%" height="15" fill="rgb(211,77,3)" fg:x="349334" fg:w="66"/><text x="67.3804%" y="671.50"></text></g><g><title>btrfs_update_inode (984 samples, 0.19%)</title><rect x="66.9853%" y="693" width="0.1891%" height="15" fill="rgb(229,5,9)" fg:x="348579" fg:w="984"/><text x="67.2353%" y="703.50"></text></g><g><title>btrfs_update_root_times (163 samples, 0.03%)</title><rect x="67.1431%" y="677" width="0.0313%" height="15" fill="rgb(225,90,11)" fg:x="349400" fg:w="163"/><text x="67.3931%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (95 samples, 0.02%)</title><rect x="67.1562%" y="661" width="0.0183%" height="15" fill="rgb(242,56,8)" fg:x="349468" fg:w="95"/><text x="67.4062%" y="671.50"></text></g><g><title>read_tsc (55 samples, 0.01%)</title><rect x="67.1639%" y="645" width="0.0106%" height="15" fill="rgb(249,212,39)" fg:x="349508" fg:w="55"/><text x="67.4139%" y="655.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="67.1817%" y="693" width="0.0290%" height="15" fill="rgb(236,90,9)" fg:x="349601" fg:w="151"/><text x="67.4317%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (41,251 samples, 7.93%)</title><rect x="59.3102%" y="709" width="7.9271%" height="15" fill="rgb(206,88,35)" fg:x="308639" fg:w="41251"/><text x="59.5602%" y="719.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (138 samples, 0.03%)</title><rect x="67.2108%" y="693" width="0.0265%" height="15" fill="rgb(205,126,30)" fg:x="349752" fg:w="138"/><text x="67.4608%" y="703.50"></text></g><g><title>ttwu_do_activate (63 samples, 0.01%)</title><rect x="67.2759%" y="645" width="0.0121%" height="15" fill="rgb(230,176,12)" fg:x="350091" fg:w="63"/><text x="67.5259%" y="655.50"></text></g><g><title>btrfs_btree_balance_dirty (290 samples, 0.06%)</title><rect x="67.2373%" y="709" width="0.0557%" height="15" fill="rgb(243,19,9)" fg:x="349890" fg:w="290"/><text x="67.4873%" y="719.50"></text></g><g><title>queue_work_on (199 samples, 0.04%)</title><rect x="67.2548%" y="693" width="0.0382%" height="15" fill="rgb(245,171,17)" fg:x="349981" fg:w="199"/><text x="67.5048%" y="703.50"></text></g><g><title>__queue_work (190 samples, 0.04%)</title><rect x="67.2565%" y="677" width="0.0365%" height="15" fill="rgb(227,52,21)" fg:x="349990" fg:w="190"/><text x="67.5065%" y="687.50"></text></g><g><title>try_to_wake_up (132 samples, 0.03%)</title><rect x="67.2676%" y="661" width="0.0254%" height="15" fill="rgb(238,69,14)" fg:x="350048" fg:w="132"/><text x="67.5176%" y="671.50"></text></g><g><title>mutex_lock (271 samples, 0.05%)</title><rect x="67.2990%" y="693" width="0.0521%" height="15" fill="rgb(241,156,39)" fg:x="350211" fg:w="271"/><text x="67.5490%" y="703.50"></text></g><g><title>btrfs_record_unlink_dir (427 samples, 0.08%)</title><rect x="67.2936%" y="709" width="0.0821%" height="15" fill="rgb(212,227,28)" fg:x="350183" fg:w="427"/><text x="67.5436%" y="719.50"></text></g><g><title>mutex_unlock (128 samples, 0.02%)</title><rect x="67.3510%" y="693" width="0.0246%" height="15" fill="rgb(209,118,27)" fg:x="350482" fg:w="128"/><text x="67.6010%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="67.4663%" y="661" width="0.0119%" height="15" fill="rgb(226,102,5)" fg:x="351082" fg:w="62"/><text x="67.7163%" y="671.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="67.4788%" y="661" width="0.0123%" height="15" fill="rgb(223,34,3)" fg:x="351147" fg:w="64"/><text x="67.7288%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (406 samples, 0.08%)</title><rect x="67.4233%" y="677" width="0.0780%" height="15" fill="rgb(221,81,38)" fg:x="350858" fg:w="406"/><text x="67.6733%" y="687.50"></text></g><g><title>mutex_unlock (53 samples, 0.01%)</title><rect x="67.4911%" y="661" width="0.0102%" height="15" fill="rgb(236,219,28)" fg:x="351211" fg:w="53"/><text x="67.7411%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (163 samples, 0.03%)</title><rect x="67.5013%" y="677" width="0.0313%" height="15" fill="rgb(213,200,14)" fg:x="351264" fg:w="163"/><text x="67.7513%" y="687.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="67.5069%" y="661" width="0.0258%" height="15" fill="rgb(240,33,19)" fg:x="351293" fg:w="134"/><text x="67.7569%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (434 samples, 0.08%)</title><rect x="67.5326%" y="677" width="0.0834%" height="15" fill="rgb(233,113,27)" fg:x="351427" fg:w="434"/><text x="67.7826%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (411 samples, 0.08%)</title><rect x="67.5371%" y="661" width="0.0790%" height="15" fill="rgb(220,221,18)" fg:x="351450" fg:w="411"/><text x="67.7871%" y="671.50"></text></g><g><title>inode_get_bytes (81 samples, 0.02%)</title><rect x="67.6258%" y="661" width="0.0156%" height="15" fill="rgb(238,92,8)" fg:x="351912" fg:w="81"/><text x="67.8758%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="67.6287%" y="645" width="0.0127%" height="15" fill="rgb(222,164,16)" fg:x="351927" fg:w="66"/><text x="67.8787%" y="655.50"></text></g><g><title>fill_stack_inode_item (170 samples, 0.03%)</title><rect x="67.6160%" y="677" width="0.0327%" height="15" fill="rgb(241,119,3)" fg:x="351861" fg:w="170"/><text x="67.8660%" y="687.50"></text></g><g><title>mutex_lock (97 samples, 0.02%)</title><rect x="67.6487%" y="677" width="0.0186%" height="15" fill="rgb(241,44,8)" fg:x="352031" fg:w="97"/><text x="67.8987%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (1,482 samples, 0.28%)</title><rect x="67.3900%" y="693" width="0.2848%" height="15" fill="rgb(230,36,40)" fg:x="350685" fg:w="1482"/><text x="67.6400%" y="703.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="67.6781%" y="677" width="0.0102%" height="15" fill="rgb(243,16,36)" fg:x="352184" fg:w="53"/><text x="67.9281%" y="687.50"></text></g><g><title>btrfs_update_inode (1,726 samples, 0.33%)</title><rect x="67.3762%" y="709" width="0.3317%" height="15" fill="rgb(231,4,26)" fg:x="350613" fg:w="1726"/><text x="67.6262%" y="719.50"></text></g><g><title>btrfs_update_root_times (172 samples, 0.03%)</title><rect x="67.6748%" y="693" width="0.0331%" height="15" fill="rgb(240,9,31)" fg:x="352167" fg:w="172"/><text x="67.9248%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (102 samples, 0.02%)</title><rect x="67.6883%" y="677" width="0.0196%" height="15" fill="rgb(207,173,15)" fg:x="352237" fg:w="102"/><text x="67.9383%" y="687.50"></text></g><g><title>read_tsc (66 samples, 0.01%)</title><rect x="67.6952%" y="661" width="0.0127%" height="15" fill="rgb(224,192,53)" fg:x="352273" fg:w="66"/><text x="67.9452%" y="671.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="67.7765%" y="645" width="0.0165%" height="15" fill="rgb(223,67,28)" fg:x="352696" fg:w="86"/><text x="68.0265%" y="655.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (446 samples, 0.09%)</title><rect x="67.7930%" y="645" width="0.0857%" height="15" fill="rgb(211,20,47)" fg:x="352782" fg:w="446"/><text x="68.0430%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (247 samples, 0.05%)</title><rect x="67.8313%" y="629" width="0.0475%" height="15" fill="rgb(240,228,2)" fg:x="352981" fg:w="247"/><text x="68.0813%" y="639.50"></text></g><g><title>_raw_spin_lock (128 samples, 0.02%)</title><rect x="67.8541%" y="613" width="0.0246%" height="15" fill="rgb(248,151,12)" fg:x="353100" fg:w="128"/><text x="68.1041%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (883 samples, 0.17%)</title><rect x="67.7488%" y="693" width="0.1697%" height="15" fill="rgb(244,8,39)" fg:x="352552" fg:w="883"/><text x="67.9988%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (828 samples, 0.16%)</title><rect x="67.7594%" y="677" width="0.1591%" height="15" fill="rgb(222,26,8)" fg:x="352607" fg:w="828"/><text x="68.0094%" y="687.50"></text></g><g><title>__reserve_bytes (808 samples, 0.16%)</title><rect x="67.7632%" y="661" width="0.1553%" height="15" fill="rgb(213,106,44)" fg:x="352627" fg:w="808"/><text x="68.0132%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (207 samples, 0.04%)</title><rect x="67.8787%" y="645" width="0.0398%" height="15" fill="rgb(214,129,20)" fg:x="353228" fg:w="207"/><text x="68.1287%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (124 samples, 0.02%)</title><rect x="67.8947%" y="629" width="0.0238%" height="15" fill="rgb(212,32,13)" fg:x="353311" fg:w="124"/><text x="68.1447%" y="639.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="67.9076%" y="613" width="0.0110%" height="15" fill="rgb(208,168,33)" fg:x="353378" fg:w="57"/><text x="68.1576%" y="623.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="67.9591%" y="677" width="0.0131%" height="15" fill="rgb(231,207,8)" fg:x="353646" fg:w="68"/><text x="68.2091%" y="687.50"></text></g><g><title>join_transaction (271 samples, 0.05%)</title><rect x="67.9206%" y="693" width="0.0521%" height="15" fill="rgb(235,219,23)" fg:x="353446" fg:w="271"/><text x="68.1706%" y="703.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="67.9873%" y="677" width="0.0106%" height="15" fill="rgb(226,216,26)" fg:x="353793" fg:w="55"/><text x="68.2373%" y="687.50"></text></g><g><title>kmem_cache_alloc (158 samples, 0.03%)</title><rect x="67.9727%" y="693" width="0.0304%" height="15" fill="rgb(239,137,16)" fg:x="353717" fg:w="158"/><text x="68.2227%" y="703.50"></text></g><g><title>btrfs_unlink (45,930 samples, 8.83%)</title><rect x="59.1955%" y="725" width="8.8262%" height="15" fill="rgb(207,12,36)" fg:x="308042" fg:w="45930"/><text x="59.4455%" y="735.50">btrfs_unlink</text></g><g><title>start_transaction (1,631 samples, 0.31%)</title><rect x="67.7083%" y="709" width="0.3134%" height="15" fill="rgb(210,214,24)" fg:x="352341" fg:w="1631"/><text x="67.9583%" y="719.50"></text></g><g><title>wait_current_trans (97 samples, 0.02%)</title><rect x="68.0031%" y="693" width="0.0186%" height="15" fill="rgb(206,56,30)" fg:x="353875" fg:w="97"/><text x="68.2531%" y="703.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.02%)</title><rect x="68.0065%" y="677" width="0.0152%" height="15" fill="rgb(228,143,26)" fg:x="353893" fg:w="79"/><text x="68.2565%" y="687.50"></text></g><g><title>d_delete (110 samples, 0.02%)</title><rect x="68.0217%" y="725" width="0.0211%" height="15" fill="rgb(216,218,46)" fg:x="353972" fg:w="110"/><text x="68.2717%" y="735.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="68.0240%" y="709" width="0.0188%" height="15" fill="rgb(206,6,19)" fg:x="353984" fg:w="98"/><text x="68.2740%" y="719.50"></text></g><g><title>down_write (468 samples, 0.09%)</title><rect x="68.0474%" y="725" width="0.0899%" height="15" fill="rgb(239,177,51)" fg:x="354106" fg:w="468"/><text x="68.2974%" y="735.50"></text></g><g><title>fsnotify (303 samples, 0.06%)</title><rect x="68.1374%" y="725" width="0.0582%" height="15" fill="rgb(216,55,25)" fg:x="354574" fg:w="303"/><text x="68.3874%" y="735.50"></text></g><g><title>ihold (53 samples, 0.01%)</title><rect x="68.1956%" y="725" width="0.0102%" height="15" fill="rgb(231,163,29)" fg:x="354877" fg:w="53"/><text x="68.4456%" y="735.50"></text></g><g><title>iput.part.0 (212 samples, 0.04%)</title><rect x="68.2077%" y="725" width="0.0407%" height="15" fill="rgb(232,149,50)" fg:x="354940" fg:w="212"/><text x="68.4577%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (194 samples, 0.04%)</title><rect x="68.2112%" y="709" width="0.0373%" height="15" fill="rgb(223,142,48)" fg:x="354958" fg:w="194"/><text x="68.4612%" y="719.50"></text></g><g><title>inode_permission.part.0 (64 samples, 0.01%)</title><rect x="68.2552%" y="709" width="0.0123%" height="15" fill="rgb(245,83,23)" fg:x="355187" fg:w="64"/><text x="68.5052%" y="719.50"></text></g><g><title>may_delete (105 samples, 0.02%)</title><rect x="68.2485%" y="725" width="0.0202%" height="15" fill="rgb(224,63,2)" fg:x="355152" fg:w="105"/><text x="68.4985%" y="735.50"></text></g><g><title>do_unlinkat (50,707 samples, 9.74%)</title><rect x="58.5408%" y="757" width="9.7442%" height="15" fill="rgb(218,65,53)" fg:x="304635" fg:w="50707"/><text x="58.7908%" y="767.50">do_unlinkat</text></g><g><title>vfs_unlink (47,484 samples, 9.12%)</title><rect x="59.1601%" y="741" width="9.1249%" height="15" fill="rgb(221,84,29)" fg:x="307858" fg:w="47484"/><text x="59.4101%" y="751.50">vfs_unlink</text></g><g><title>up_write (73 samples, 0.01%)</title><rect x="68.2709%" y="725" width="0.0140%" height="15" fill="rgb(234,0,32)" fg:x="355269" fg:w="73"/><text x="68.5209%" y="735.50"></text></g><g><title>do_syscall_64 (62,273 samples, 11.97%)</title><rect x="56.3212%" y="773" width="11.9668%" height="15" fill="rgb(206,20,16)" fg:x="293085" fg:w="62273"/><text x="56.5712%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (62,365 samples, 11.98%)</title><rect x="56.3116%" y="789" width="11.9845%" height="15" fill="rgb(244,172,18)" fg:x="293035" fg:w="62365"/><text x="56.5616%" y="799.50">entry_SYSCALL_64_a..</text></g><g><title>__GI_unlinkat (62,811 samples, 12.07%)</title><rect x="56.2396%" y="805" width="12.0702%" height="15" fill="rgb(254,133,1)" fg:x="292660" fg:w="62811"/><text x="56.4896%" y="815.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (67 samples, 0.01%)</title><rect x="68.2969%" y="789" width="0.0129%" height="15" fill="rgb(222,206,41)" fg:x="355404" fg:w="67"/><text x="68.5469%" y="799.50"></text></g><g><title>__closedir (71 samples, 0.01%)</title><rect x="68.3105%" y="805" width="0.0136%" height="15" fill="rgb(212,3,42)" fg:x="355475" fg:w="71"/><text x="68.5605%" y="815.50"></text></g><g><title>_int_free (63 samples, 0.01%)</title><rect x="68.3121%" y="789" width="0.0121%" height="15" fill="rgb(241,11,4)" fg:x="355483" fg:w="63"/><text x="68.5621%" y="799.50"></text></g><g><title>__errno_location (68 samples, 0.01%)</title><rect x="68.3265%" y="805" width="0.0131%" height="15" fill="rgb(205,19,26)" fg:x="355558" fg:w="68"/><text x="68.5765%" y="815.50"></text></g><g><title>__GI___fcntl64_nocancel (58 samples, 0.01%)</title><rect x="68.3397%" y="789" width="0.0111%" height="15" fill="rgb(210,179,32)" fg:x="355627" fg:w="58"/><text x="68.5897%" y="799.50"></text></g><g><title>__fcntl64_nocancel_adjusted (56 samples, 0.01%)</title><rect x="68.3401%" y="773" width="0.0108%" height="15" fill="rgb(227,116,49)" fg:x="355629" fg:w="56"/><text x="68.5901%" y="783.50"></text></g><g><title>btrfs_getattr (53 samples, 0.01%)</title><rect x="68.3630%" y="709" width="0.0102%" height="15" fill="rgb(211,146,6)" fg:x="355748" fg:w="53"/><text x="68.6130%" y="719.50"></text></g><g><title>__do_sys_newfstat (119 samples, 0.02%)</title><rect x="68.3561%" y="741" width="0.0229%" height="15" fill="rgb(219,44,39)" fg:x="355712" fg:w="119"/><text x="68.6061%" y="751.50"></text></g><g><title>vfs_fstat (94 samples, 0.02%)</title><rect x="68.3609%" y="725" width="0.0181%" height="15" fill="rgb(234,128,11)" fg:x="355737" fg:w="94"/><text x="68.6109%" y="735.50"></text></g><g><title>do_syscall_64 (126 samples, 0.02%)</title><rect x="68.3551%" y="757" width="0.0242%" height="15" fill="rgb(220,183,53)" fg:x="355707" fg:w="126"/><text x="68.6051%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="68.3545%" y="773" width="0.0259%" height="15" fill="rgb(213,219,32)" fg:x="355704" fg:w="135"/><text x="68.6045%" y="783.50"></text></g><g><title>__GI___fxstat (156 samples, 0.03%)</title><rect x="68.3509%" y="789" width="0.0300%" height="15" fill="rgb(232,156,16)" fg:x="355685" fg:w="156"/><text x="68.6009%" y="799.50"></text></g><g><title>malloc_consolidate (57 samples, 0.01%)</title><rect x="68.4033%" y="741" width="0.0110%" height="15" fill="rgb(246,135,34)" fg:x="355958" fg:w="57"/><text x="68.6533%" y="751.50"></text></g><g><title>__GI___libc_malloc (131 samples, 0.03%)</title><rect x="68.3893%" y="773" width="0.0252%" height="15" fill="rgb(241,99,0)" fg:x="355885" fg:w="131"/><text x="68.6393%" y="783.50"></text></g><g><title>_int_malloc (99 samples, 0.02%)</title><rect x="68.3955%" y="757" width="0.0190%" height="15" fill="rgb(222,103,45)" fg:x="355917" fg:w="99"/><text x="68.6455%" y="767.50"></text></g><g><title>__fdopendir (392 samples, 0.08%)</title><rect x="68.3395%" y="805" width="0.0753%" height="15" fill="rgb(212,57,4)" fg:x="355626" fg:w="392"/><text x="68.5895%" y="815.50"></text></g><g><title>__alloc_dir (177 samples, 0.03%)</title><rect x="68.3809%" y="789" width="0.0340%" height="15" fill="rgb(215,68,47)" fg:x="355841" fg:w="177"/><text x="68.6309%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (53 samples, 0.01%)</title><rect x="68.4560%" y="645" width="0.0102%" height="15" fill="rgb(230,84,2)" fg:x="356232" fg:w="53"/><text x="68.7060%" y="655.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.03%)</title><rect x="68.4464%" y="661" width="0.0282%" height="15" fill="rgb(220,102,14)" fg:x="356182" fg:w="147"/><text x="68.6964%" y="671.50"></text></g><g><title>alloc_empty_file (206 samples, 0.04%)</title><rect x="68.4422%" y="693" width="0.0396%" height="15" fill="rgb(240,10,32)" fg:x="356160" fg:w="206"/><text x="68.6922%" y="703.50"></text></g><g><title>__alloc_file (203 samples, 0.04%)</title><rect x="68.4427%" y="677" width="0.0390%" height="15" fill="rgb(215,47,27)" fg:x="356163" fg:w="203"/><text x="68.6927%" y="687.50"></text></g><g><title>btrfs_opendir (98 samples, 0.02%)</title><rect x="68.4942%" y="677" width="0.0188%" height="15" fill="rgb(233,188,43)" fg:x="356431" fg:w="98"/><text x="68.7442%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (82 samples, 0.02%)</title><rect x="68.4973%" y="661" width="0.0158%" height="15" fill="rgb(253,190,1)" fg:x="356447" fg:w="82"/><text x="68.7473%" y="671.50"></text></g><g><title>do_dentry_open (214 samples, 0.04%)</title><rect x="68.4852%" y="693" width="0.0411%" height="15" fill="rgb(206,114,52)" fg:x="356384" fg:w="214"/><text x="68.7352%" y="703.50"></text></g><g><title>lookup_fast (68 samples, 0.01%)</title><rect x="68.5288%" y="693" width="0.0131%" height="15" fill="rgb(233,120,37)" fg:x="356611" fg:w="68"/><text x="68.7788%" y="703.50"></text></g><g><title>__d_lookup_rcu (62 samples, 0.01%)</title><rect x="68.5300%" y="677" width="0.0119%" height="15" fill="rgb(214,52,39)" fg:x="356617" fg:w="62"/><text x="68.7800%" y="687.50"></text></g><g><title>do_filp_open (614 samples, 0.12%)</title><rect x="68.4374%" y="725" width="0.1180%" height="15" fill="rgb(223,80,29)" fg:x="356135" fg:w="614"/><text x="68.6874%" y="735.50"></text></g><g><title>path_openat (606 samples, 0.12%)</title><rect x="68.4389%" y="709" width="0.1165%" height="15" fill="rgb(230,101,40)" fg:x="356143" fg:w="606"/><text x="68.6889%" y="719.50"></text></g><g><title>kmem_cache_alloc (58 samples, 0.01%)</title><rect x="68.5598%" y="709" width="0.0111%" height="15" fill="rgb(219,211,8)" fg:x="356772" fg:w="58"/><text x="68.8098%" y="719.50"></text></g><g><title>getname_flags.part.0 (103 samples, 0.02%)</title><rect x="68.5592%" y="725" width="0.0198%" height="15" fill="rgb(252,126,28)" fg:x="356769" fg:w="103"/><text x="68.8092%" y="735.50"></text></g><g><title>__x64_sys_openat (810 samples, 0.16%)</title><rect x="68.4274%" y="757" width="0.1557%" height="15" fill="rgb(215,56,38)" fg:x="356083" fg:w="810"/><text x="68.6774%" y="767.50"></text></g><g><title>do_sys_openat2 (803 samples, 0.15%)</title><rect x="68.4287%" y="741" width="0.1543%" height="15" fill="rgb(249,55,44)" fg:x="356090" fg:w="803"/><text x="68.6787%" y="751.50"></text></g><g><title>do_syscall_64 (817 samples, 0.16%)</title><rect x="68.4264%" y="773" width="0.1570%" height="15" fill="rgb(220,221,32)" fg:x="356078" fg:w="817"/><text x="68.6764%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (820 samples, 0.16%)</title><rect x="68.4264%" y="789" width="0.1576%" height="15" fill="rgb(212,216,41)" fg:x="356078" fg:w="820"/><text x="68.6764%" y="799.50"></text></g><g><title>__libc_openat64 (865 samples, 0.17%)</title><rect x="68.4189%" y="805" width="0.1662%" height="15" fill="rgb(228,213,43)" fg:x="356039" fg:w="865"/><text x="68.6689%" y="815.50"></text></g><g><title>_int_free (293 samples, 0.06%)</title><rect x="68.5967%" y="805" width="0.0563%" height="15" fill="rgb(211,31,26)" fg:x="356964" fg:w="293"/><text x="68.8467%" y="815.50"></text></g><g><title>free@plt (144 samples, 0.03%)</title><rect x="68.6555%" y="805" width="0.0277%" height="15" fill="rgb(229,202,19)" fg:x="357270" fg:w="144"/><text x="68.9055%" y="815.50"></text></g><g><title>jni_ExceptionOccurred (95 samples, 0.02%)</title><rect x="68.6831%" y="805" width="0.0183%" height="15" fill="rgb(229,105,46)" fg:x="357414" fg:w="95"/><text x="68.9331%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (103 samples, 0.02%)</title><rect x="68.7783%" y="789" width="0.0198%" height="15" fill="rgb(235,108,1)" fg:x="357909" fg:w="103"/><text x="69.0283%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (629 samples, 0.12%)</title><rect x="68.8002%" y="789" width="0.1209%" height="15" fill="rgb(245,111,35)" fg:x="358023" fg:w="629"/><text x="69.0502%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (494 samples, 0.09%)</title><rect x="68.9210%" y="789" width="0.0949%" height="15" fill="rgb(219,185,31)" fg:x="358652" fg:w="494"/><text x="69.1710%" y="799.50"></text></g><g><title>[libc-2.31.so] (236 samples, 0.05%)</title><rect x="69.0160%" y="789" width="0.0454%" height="15" fill="rgb(214,4,43)" fg:x="359146" fg:w="236"/><text x="69.2660%" y="799.50"></text></g><g><title>check_bounds (277 samples, 0.05%)</title><rect x="69.0615%" y="789" width="0.0532%" height="15" fill="rgb(235,227,40)" fg:x="359383" fg:w="277"/><text x="69.3115%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (2,209 samples, 0.42%)</title><rect x="68.7014%" y="805" width="0.4245%" height="15" fill="rgb(230,88,30)" fg:x="357509" fg:w="2209"/><text x="68.9514%" y="815.50"></text></g><g><title>memmove@plt (58 samples, 0.01%)</title><rect x="69.1147%" y="789" width="0.0111%" height="15" fill="rgb(216,217,1)" fg:x="359660" fg:w="58"/><text x="69.3647%" y="799.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (305 samples, 0.06%)</title><rect x="69.2152%" y="773" width="0.0586%" height="15" fill="rgb(248,139,50)" fg:x="360183" fg:w="305"/><text x="69.4652%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (255 samples, 0.05%)</title><rect x="69.2249%" y="757" width="0.0490%" height="15" fill="rgb(233,1,21)" fg:x="360233" fg:w="255"/><text x="69.4749%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (410 samples, 0.08%)</title><rect x="69.1962%" y="789" width="0.0788%" height="15" fill="rgb(215,183,12)" fg:x="360084" fg:w="410"/><text x="69.4462%" y="799.50"></text></g><g><title>HandleMark::pop_and_restore (170 samples, 0.03%)</title><rect x="69.2750%" y="789" width="0.0327%" height="15" fill="rgb(229,104,42)" fg:x="360494" fg:w="170"/><text x="69.5250%" y="799.50"></text></g><g><title>JNIHandles::make_local (310 samples, 0.06%)</title><rect x="69.3077%" y="789" width="0.0596%" height="15" fill="rgb(243,34,48)" fg:x="360664" fg:w="310"/><text x="69.5577%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (449 samples, 0.09%)</title><rect x="69.3701%" y="789" width="0.0863%" height="15" fill="rgb(239,11,44)" fg:x="360989" fg:w="449"/><text x="69.6201%" y="799.50"></text></g><g><title>jni_GetObjectField (2,239 samples, 0.43%)</title><rect x="69.1263%" y="805" width="0.4303%" height="15" fill="rgb(231,98,35)" fg:x="359720" fg:w="2239"/><text x="69.3763%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (521 samples, 0.10%)</title><rect x="69.4564%" y="789" width="0.1001%" height="15" fill="rgb(233,28,25)" fg:x="361438" fg:w="521"/><text x="69.7064%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (403 samples, 0.08%)</title><rect x="69.6340%" y="789" width="0.0774%" height="15" fill="rgb(234,123,11)" fg:x="362362" fg:w="403"/><text x="69.8840%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (667 samples, 0.13%)</title><rect x="69.7114%" y="789" width="0.1282%" height="15" fill="rgb(220,69,3)" fg:x="362765" fg:w="667"/><text x="69.9614%" y="799.50"></text></g><g><title>jni_GetStringLength (1,474 samples, 0.28%)</title><rect x="69.5565%" y="805" width="0.2833%" height="15" fill="rgb(214,64,36)" fg:x="361959" fg:w="1474"/><text x="69.8065%" y="815.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (193 samples, 0.04%)</title><rect x="70.1273%" y="741" width="0.0371%" height="15" fill="rgb(211,138,32)" fg:x="364929" fg:w="193"/><text x="70.3773%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (164 samples, 0.03%)</title><rect x="70.1644%" y="741" width="0.0315%" height="15" fill="rgb(213,118,47)" fg:x="365122" fg:w="164"/><text x="70.4144%" y="751.50"></text></g><g><title>[libc-2.31.so] (120 samples, 0.02%)</title><rect x="70.2230%" y="725" width="0.0231%" height="15" fill="rgb(243,124,49)" fg:x="365427" fg:w="120"/><text x="70.4730%" y="735.50"></text></g><g><title>ObjAllocator::initialize (291 samples, 0.06%)</title><rect x="70.1963%" y="741" width="0.0559%" height="15" fill="rgb(221,30,28)" fg:x="365288" fg:w="291"/><text x="70.4463%" y="751.50"></text></g><g><title>__tls_get_addr (77 samples, 0.01%)</title><rect x="70.2524%" y="741" width="0.0148%" height="15" fill="rgb(246,37,13)" fg:x="365580" fg:w="77"/><text x="70.5024%" y="751.50"></text></g><g><title>CollectedHeap::obj_allocate (1,053 samples, 0.20%)</title><rect x="70.0773%" y="773" width="0.2024%" height="15" fill="rgb(249,66,14)" fg:x="364669" fg:w="1053"/><text x="70.3273%" y="783.50"></text></g><g><title>MemAllocator::allocate (1,003 samples, 0.19%)</title><rect x="70.0869%" y="757" width="0.1927%" height="15" fill="rgb(213,166,5)" fg:x="364719" fg:w="1003"/><text x="70.3369%" y="767.50"></text></g><g><title>__tls_get_addr@plt (65 samples, 0.01%)</title><rect x="70.2672%" y="741" width="0.0125%" height="15" fill="rgb(221,66,24)" fg:x="365657" fg:w="65"/><text x="70.5172%" y="751.50"></text></g><g><title>InstanceKlass::allocate_instance (1,279 samples, 0.25%)</title><rect x="70.0341%" y="789" width="0.2458%" height="15" fill="rgb(210,132,17)" fg:x="364444" fg:w="1279"/><text x="70.2841%" y="799.50"></text></g><g><title>JNIHandles::make_local (337 samples, 0.06%)</title><rect x="70.2810%" y="789" width="0.0648%" height="15" fill="rgb(243,202,5)" fg:x="365729" fg:w="337"/><text x="70.5310%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (334 samples, 0.06%)</title><rect x="70.3561%" y="789" width="0.0642%" height="15" fill="rgb(233,70,48)" fg:x="366120" fg:w="334"/><text x="70.6061%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (507 samples, 0.10%)</title><rect x="70.4203%" y="789" width="0.0974%" height="15" fill="rgb(238,41,26)" fg:x="366454" fg:w="507"/><text x="70.6703%" y="799.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (74 samples, 0.01%)</title><rect x="70.5998%" y="773" width="0.0142%" height="15" fill="rgb(241,19,31)" fg:x="367388" fg:w="74"/><text x="70.8498%" y="783.50"></text></g><g><title>InstanceKlass::initialize (63 samples, 0.01%)</title><rect x="70.6140%" y="773" width="0.0121%" height="15" fill="rgb(214,76,10)" fg:x="367462" fg:w="63"/><text x="70.8640%" y="783.50"></text></g><g><title>alloc_object (673 samples, 0.13%)</title><rect x="70.5178%" y="789" width="0.1293%" height="15" fill="rgb(254,202,22)" fg:x="366961" fg:w="673"/><text x="70.7678%" y="799.50"></text></g><g><title>oopDesc::metadata_field (94 samples, 0.02%)</title><rect x="70.6290%" y="773" width="0.0181%" height="15" fill="rgb(214,72,24)" fg:x="367540" fg:w="94"/><text x="70.8790%" y="783.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (883 samples, 0.17%)</title><rect x="70.7947%" y="773" width="0.1697%" height="15" fill="rgb(221,92,46)" fg:x="368402" fg:w="883"/><text x="71.0447%" y="783.50"></text></g><g><title>JNIHandleBlock::release_block (129 samples, 0.02%)</title><rect x="71.1098%" y="757" width="0.0248%" height="15" fill="rgb(246,13,50)" fg:x="370042" fg:w="129"/><text x="71.3598%" y="767.50"></text></g><g><title>JavaCallArguments::parameters (281 samples, 0.05%)</title><rect x="71.1346%" y="757" width="0.0540%" height="15" fill="rgb(240,165,38)" fg:x="370171" fg:w="281"/><text x="71.3846%" y="767.50"></text></g><g><title>JNIHandleBlock::allocate_block (187 samples, 0.04%)</title><rect x="71.3014%" y="741" width="0.0359%" height="15" fill="rgb(241,24,51)" fg:x="371039" fg:w="187"/><text x="71.5514%" y="751.50"></text></g><g><title>ThreadShadow::clear_pending_exception (96 samples, 0.02%)</title><rect x="71.3379%" y="741" width="0.0184%" height="15" fill="rgb(227,51,44)" fg:x="371229" fg:w="96"/><text x="71.5879%" y="751.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (874 samples, 0.17%)</title><rect x="71.1886%" y="757" width="0.1680%" height="15" fill="rgb(231,121,3)" fg:x="370452" fg:w="874"/><text x="71.4386%" y="767.50"></text></g><g><title>JavaCalls::call_helper (2,327 samples, 0.45%)</title><rect x="70.9674%" y="773" width="0.4472%" height="15" fill="rgb(245,3,41)" fg:x="369301" fg:w="2327"/><text x="71.2174%" y="783.50"></text></g><g><title>os::stack_shadow_pages_available (274 samples, 0.05%)</title><rect x="71.3619%" y="757" width="0.0527%" height="15" fill="rgb(214,13,26)" fg:x="371354" fg:w="274"/><text x="71.6119%" y="767.50"></text></g><g><title>methodHandle::operator= (73 samples, 0.01%)</title><rect x="71.4169%" y="773" width="0.0140%" height="15" fill="rgb(252,75,11)" fg:x="371640" fg:w="73"/><text x="71.6669%" y="783.50"></text></g><g><title>methodHandle::~methodHandle (280 samples, 0.05%)</title><rect x="71.4309%" y="773" width="0.0538%" height="15" fill="rgb(218,226,17)" fg:x="371713" fg:w="280"/><text x="71.6809%" y="783.50"></text></g><g><title>jni_invoke_nonstatic (4,564 samples, 0.88%)</title><rect x="70.6475%" y="789" width="0.8770%" height="15" fill="rgb(248,89,38)" fg:x="367636" fg:w="4564"/><text x="70.8975%" y="799.50"></text></g><g><title>resource_allocate_bytes (186 samples, 0.04%)</title><rect x="71.4888%" y="773" width="0.0357%" height="15" fill="rgb(237,73,46)" fg:x="372014" fg:w="186"/><text x="71.7388%" y="783.50"></text></g><g><title>jni_NewObjectV (8,779 samples, 1.69%)</title><rect x="69.8404%" y="805" width="1.6870%" height="15" fill="rgb(242,78,33)" fg:x="363436" fg:w="8779"/><text x="70.0904%" y="815.50"></text></g><g><title>operator delete (91 samples, 0.02%)</title><rect x="71.5353%" y="805" width="0.0175%" height="15" fill="rgb(235,60,3)" fg:x="372256" fg:w="91"/><text x="71.7853%" y="815.50"></text></g><g><title>operator delete@plt (107 samples, 0.02%)</title><rect x="71.5528%" y="805" width="0.0206%" height="15" fill="rgb(216,172,19)" fg:x="372347" fg:w="107"/><text x="71.8028%" y="815.50"></text></g><g><title>operator delete[] (131 samples, 0.03%)</title><rect x="71.5733%" y="805" width="0.0252%" height="15" fill="rgb(227,6,42)" fg:x="372454" fg:w="131"/><text x="71.8233%" y="815.50"></text></g><g><title>__GI___libc_malloc (326 samples, 0.06%)</title><rect x="71.6016%" y="789" width="0.0626%" height="15" fill="rgb(223,207,42)" fg:x="372601" fg:w="326"/><text x="71.8516%" y="799.50"></text></g><g><title>tcache_get (196 samples, 0.04%)</title><rect x="71.6266%" y="773" width="0.0377%" height="15" fill="rgb(246,138,30)" fg:x="372731" fg:w="196"/><text x="71.8766%" y="783.50"></text></g><g><title>operator new (374 samples, 0.07%)</title><rect x="71.5985%" y="805" width="0.0719%" height="15" fill="rgb(251,199,47)" fg:x="372585" fg:w="374"/><text x="71.8485%" y="815.50"></text></g><g><title>_int_malloc (101 samples, 0.02%)</title><rect x="71.7109%" y="757" width="0.0194%" height="15" fill="rgb(228,218,44)" fg:x="373170" fg:w="101"/><text x="71.9609%" y="767.50"></text></g><g><title>__GI___libc_malloc (215 samples, 0.04%)</title><rect x="71.6921%" y="773" width="0.0413%" height="15" fill="rgb(220,68,6)" fg:x="373072" fg:w="215"/><text x="71.9421%" y="783.50"></text></g><g><title>operator new (230 samples, 0.04%)</title><rect x="71.6913%" y="789" width="0.0442%" height="15" fill="rgb(240,60,26)" fg:x="373068" fg:w="230"/><text x="71.9413%" y="799.50"></text></g><g><title>[libunix_jni.so] (236,965 samples, 45.54%)</title><rect x="26.1998%" y="821" width="45.5368%" height="15" fill="rgb(211,200,19)" fg:x="136339" fg:w="236965"/><text x="26.4498%" y="831.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (247 samples, 0.05%)</title><rect x="71.6892%" y="805" width="0.0475%" height="15" fill="rgb(242,145,30)" fg:x="373057" fg:w="247"/><text x="71.9392%" y="815.50"></text></g><g><title>InterpreterRuntime::_new (84 samples, 0.02%)</title><rect x="83.7836%" y="805" width="0.0161%" height="15" fill="rgb(225,64,13)" fg:x="435994" fg:w="84"/><text x="84.0336%" y="815.50"></text></g><g><title>InterpreterRuntime::anewarray (81 samples, 0.02%)</title><rect x="83.7998%" y="805" width="0.0156%" height="15" fill="rgb(218,103,35)" fg:x="436078" fg:w="81"/><text x="84.0498%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (136 samples, 0.03%)</title><rect x="83.8255%" y="773" width="0.0261%" height="15" fill="rgb(216,93,46)" fg:x="436212" fg:w="136"/><text x="84.0755%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (122 samples, 0.02%)</title><rect x="83.8282%" y="757" width="0.0234%" height="15" fill="rgb(225,159,27)" fg:x="436226" fg:w="122"/><text x="84.0782%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (159 samples, 0.03%)</title><rect x="83.8215%" y="805" width="0.0306%" height="15" fill="rgb(225,204,11)" fg:x="436191" fg:w="159"/><text x="84.0715%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (159 samples, 0.03%)</title><rect x="83.8215%" y="789" width="0.0306%" height="15" fill="rgb(205,56,4)" fg:x="436191" fg:w="159"/><text x="84.0715%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (79 samples, 0.02%)</title><rect x="83.8520%" y="805" width="0.0152%" height="15" fill="rgb(206,6,35)" fg:x="436350" fg:w="79"/><text x="84.1020%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (159 samples, 0.03%)</title><rect x="83.8951%" y="773" width="0.0306%" height="15" fill="rgb(247,73,52)" fg:x="436574" fg:w="159"/><text x="84.1451%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (226 samples, 0.04%)</title><rect x="83.8855%" y="789" width="0.0434%" height="15" fill="rgb(246,97,4)" fg:x="436524" fg:w="226"/><text x="84.1355%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (55 samples, 0.01%)</title><rect x="83.9289%" y="789" width="0.0106%" height="15" fill="rgb(212,37,15)" fg:x="436750" fg:w="55"/><text x="84.1789%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (54 samples, 0.01%)</title><rect x="83.9291%" y="773" width="0.0104%" height="15" fill="rgb(208,130,40)" fg:x="436751" fg:w="54"/><text x="84.1791%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (54 samples, 0.01%)</title><rect x="83.9291%" y="757" width="0.0104%" height="15" fill="rgb(236,55,29)" fg:x="436751" fg:w="54"/><text x="84.1791%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (313 samples, 0.06%)</title><rect x="83.8797%" y="805" width="0.0601%" height="15" fill="rgb(209,156,45)" fg:x="436494" fg:w="313"/><text x="84.1297%" y="815.50"></text></g><g><title>JVM_Clone (59 samples, 0.01%)</title><rect x="83.9439%" y="805" width="0.0113%" height="15" fill="rgb(249,107,4)" fg:x="436828" fg:w="59"/><text x="84.1939%" y="815.50"></text></g><g><title>JVM_IHashCode (57 samples, 0.01%)</title><rect x="83.9758%" y="805" width="0.0110%" height="15" fill="rgb(227,7,13)" fg:x="436994" fg:w="57"/><text x="84.2258%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (280 samples, 0.05%)</title><rect x="84.0192%" y="677" width="0.0538%" height="15" fill="rgb(250,129,14)" fg:x="437220" fg:w="280"/><text x="84.2692%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (245 samples, 0.05%)</title><rect x="84.0259%" y="661" width="0.0471%" height="15" fill="rgb(229,92,13)" fg:x="437255" fg:w="245"/><text x="84.2759%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (289 samples, 0.06%)</title><rect x="84.0181%" y="693" width="0.0555%" height="15" fill="rgb(245,98,39)" fg:x="437214" fg:w="289"/><text x="84.2681%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (54 samples, 0.01%)</title><rect x="84.0751%" y="693" width="0.0104%" height="15" fill="rgb(234,135,48)" fg:x="437511" fg:w="54"/><text x="84.3251%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (54 samples, 0.01%)</title><rect x="84.0751%" y="677" width="0.0104%" height="15" fill="rgb(230,98,28)" fg:x="437511" fg:w="54"/><text x="84.3251%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (360 samples, 0.07%)</title><rect x="84.0177%" y="725" width="0.0692%" height="15" fill="rgb(223,121,0)" fg:x="437212" fg:w="360"/><text x="84.2677%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (360 samples, 0.07%)</title><rect x="84.0177%" y="709" width="0.0692%" height="15" fill="rgb(234,173,33)" fg:x="437212" fg:w="360"/><text x="84.2677%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (59 samples, 0.01%)</title><rect x="84.0870%" y="709" width="0.0113%" height="15" fill="rgb(245,47,8)" fg:x="437573" fg:w="59"/><text x="84.3370%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (67 samples, 0.01%)</title><rect x="84.0869%" y="725" width="0.0129%" height="15" fill="rgb(205,17,20)" fg:x="437572" fg:w="67"/><text x="84.3369%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (449 samples, 0.09%)</title><rect x="84.0175%" y="741" width="0.0863%" height="15" fill="rgb(232,151,16)" fg:x="437211" fg:w="449"/><text x="84.2675%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (461 samples, 0.09%)</title><rect x="84.0165%" y="789" width="0.0886%" height="15" fill="rgb(208,30,32)" fg:x="437206" fg:w="461"/><text x="84.2665%" y="799.50"></text></g><g><title>jvm_define_class_common (461 samples, 0.09%)</title><rect x="84.0165%" y="773" width="0.0886%" height="15" fill="rgb(254,26,3)" fg:x="437206" fg:w="461"/><text x="84.2665%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (457 samples, 0.09%)</title><rect x="84.0173%" y="757" width="0.0878%" height="15" fill="rgb(240,177,30)" fg:x="437210" fg:w="457"/><text x="84.2673%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (474 samples, 0.09%)</title><rect x="84.0163%" y="805" width="0.0911%" height="15" fill="rgb(248,76,44)" fg:x="437205" fg:w="474"/><text x="84.2663%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (632 samples, 0.12%)</title><rect x="84.1405%" y="709" width="0.1214%" height="15" fill="rgb(241,186,54)" fg:x="437851" fg:w="632"/><text x="84.3905%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (631 samples, 0.12%)</title><rect x="84.1407%" y="693" width="0.1213%" height="15" fill="rgb(249,171,29)" fg:x="437852" fg:w="631"/><text x="84.3907%" y="703.50"></text></g><g><title>native_write_msr (630 samples, 0.12%)</title><rect x="84.1409%" y="677" width="0.1211%" height="15" fill="rgb(237,151,44)" fg:x="437853" fg:w="630"/><text x="84.3909%" y="687.50"></text></g><g><title>__libc_vfork (743 samples, 0.14%)</title><rect x="84.1236%" y="773" width="0.1428%" height="15" fill="rgb(228,174,30)" fg:x="437763" fg:w="743"/><text x="84.3736%" y="783.50"></text></g><g><title>ret_from_fork (705 samples, 0.14%)</title><rect x="84.1309%" y="757" width="0.1355%" height="15" fill="rgb(252,14,37)" fg:x="437801" fg:w="705"/><text x="84.3809%" y="767.50"></text></g><g><title>schedule_tail (671 samples, 0.13%)</title><rect x="84.1374%" y="741" width="0.1289%" height="15" fill="rgb(207,111,40)" fg:x="437835" fg:w="671"/><text x="84.3874%" y="751.50"></text></g><g><title>finish_task_switch (667 samples, 0.13%)</title><rect x="84.1382%" y="725" width="0.1282%" height="15" fill="rgb(248,171,54)" fg:x="437839" fg:w="667"/><text x="84.3882%" y="735.50"></text></g><g><title>bprm_execve (63 samples, 0.01%)</title><rect x="84.2665%" y="661" width="0.0121%" height="15" fill="rgb(211,127,2)" fg:x="438507" fg:w="63"/><text x="84.5165%" y="671.50"></text></g><g><title>JDK_execvpe (82 samples, 0.02%)</title><rect x="84.2663%" y="757" width="0.0158%" height="15" fill="rgb(236,87,47)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="767.50"></text></g><g><title>__GI_execve (82 samples, 0.02%)</title><rect x="84.2663%" y="741" width="0.0158%" height="15" fill="rgb(223,190,45)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.02%)</title><rect x="84.2663%" y="725" width="0.0158%" height="15" fill="rgb(215,5,16)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="735.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="84.2663%" y="709" width="0.0158%" height="15" fill="rgb(252,82,33)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="719.50"></text></g><g><title>__x64_sys_execve (82 samples, 0.02%)</title><rect x="84.2663%" y="693" width="0.0158%" height="15" fill="rgb(247,213,44)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="703.50"></text></g><g><title>do_execveat_common (82 samples, 0.02%)</title><rect x="84.2663%" y="677" width="0.0158%" height="15" fill="rgb(205,196,44)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="687.50"></text></g><g><title>__GI___open64_nocancel (71 samples, 0.01%)</title><rect x="84.2869%" y="725" width="0.0136%" height="15" fill="rgb(237,96,54)" fg:x="438613" fg:w="71"/><text x="84.5369%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (71 samples, 0.01%)</title><rect x="84.2869%" y="709" width="0.0136%" height="15" fill="rgb(230,113,34)" fg:x="438613" fg:w="71"/><text x="84.5369%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="84.2871%" y="693" width="0.0135%" height="15" fill="rgb(221,224,12)" fg:x="438614" fg:w="70"/><text x="84.5371%" y="703.50"></text></g><g><title>__x64_sys_openat (69 samples, 0.01%)</title><rect x="84.2873%" y="677" width="0.0133%" height="15" fill="rgb(219,112,44)" fg:x="438615" fg:w="69"/><text x="84.5373%" y="687.50"></text></g><g><title>do_sys_openat2 (68 samples, 0.01%)</title><rect x="84.2875%" y="661" width="0.0131%" height="15" fill="rgb(210,31,13)" fg:x="438616" fg:w="68"/><text x="84.5375%" y="671.50"></text></g><g><title>__opendir (75 samples, 0.01%)</title><rect x="84.2869%" y="741" width="0.0144%" height="15" fill="rgb(230,25,16)" fg:x="438613" fg:w="75"/><text x="84.5369%" y="751.50"></text></g><g><title>closeDescriptors (87 samples, 0.02%)</title><rect x="84.2848%" y="757" width="0.0167%" height="15" fill="rgb(246,108,53)" fg:x="438602" fg:w="87"/><text x="84.5348%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (949 samples, 0.18%)</title><rect x="84.1222%" y="805" width="0.1824%" height="15" fill="rgb(241,172,50)" fg:x="437756" fg:w="949"/><text x="84.3722%" y="815.50"></text></g><g><title>vforkChild (942 samples, 0.18%)</title><rect x="84.1236%" y="789" width="0.1810%" height="15" fill="rgb(235,141,10)" fg:x="437763" fg:w="942"/><text x="84.3736%" y="799.50"></text></g><g><title>childProcess (199 samples, 0.04%)</title><rect x="84.2663%" y="773" width="0.0382%" height="15" fill="rgb(220,174,43)" fg:x="438506" fg:w="199"/><text x="84.5163%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (54 samples, 0.01%)</title><rect x="84.3098%" y="789" width="0.0104%" height="15" fill="rgb(215,181,40)" fg:x="438732" fg:w="54"/><text x="84.5598%" y="799.50"></text></g><g><title>ObjArrayAllocator::initialize (56 samples, 0.01%)</title><rect x="84.3232%" y="741" width="0.0108%" height="15" fill="rgb(230,97,2)" fg:x="438802" fg:w="56"/><text x="84.5732%" y="751.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.01%)</title><rect x="84.3238%" y="725" width="0.0102%" height="15" fill="rgb(211,25,27)" fg:x="438805" fg:w="53"/><text x="84.5738%" y="735.50"></text></g><g><title>exc_page_fault (53 samples, 0.01%)</title><rect x="84.3238%" y="709" width="0.0102%" height="15" fill="rgb(230,87,26)" fg:x="438805" fg:w="53"/><text x="84.5738%" y="719.50"></text></g><g><title>OptoRuntime::new_array_C (130 samples, 0.02%)</title><rect x="84.3092%" y="805" width="0.0250%" height="15" fill="rgb(227,160,17)" fg:x="438729" fg:w="130"/><text x="84.5592%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (73 samples, 0.01%)</title><rect x="84.3201%" y="789" width="0.0140%" height="15" fill="rgb(244,85,34)" fg:x="438786" fg:w="73"/><text x="84.5701%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (73 samples, 0.01%)</title><rect x="84.3201%" y="773" width="0.0140%" height="15" fill="rgb(207,70,0)" fg:x="438786" fg:w="73"/><text x="84.5701%" y="783.50"></text></g><g><title>MemAllocator::allocate (73 samples, 0.01%)</title><rect x="84.3201%" y="757" width="0.0140%" height="15" fill="rgb(223,129,7)" fg:x="438786" fg:w="73"/><text x="84.5701%" y="767.50"></text></g><g><title>kernel_init_free_pages (54 samples, 0.01%)</title><rect x="84.3474%" y="581" width="0.0104%" height="15" fill="rgb(246,105,7)" fg:x="438928" fg:w="54"/><text x="84.5974%" y="591.50"></text></g><g><title>clear_page_erms (54 samples, 0.01%)</title><rect x="84.3474%" y="565" width="0.0104%" height="15" fill="rgb(215,154,42)" fg:x="438928" fg:w="54"/><text x="84.5974%" y="575.50"></text></g><g><title>alloc_pages_vma (60 samples, 0.01%)</title><rect x="84.3465%" y="645" width="0.0115%" height="15" fill="rgb(220,215,30)" fg:x="438923" fg:w="60"/><text x="84.5965%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (59 samples, 0.01%)</title><rect x="84.3467%" y="629" width="0.0113%" height="15" fill="rgb(228,81,51)" fg:x="438924" fg:w="59"/><text x="84.5967%" y="639.50"></text></g><g><title>get_page_from_freelist (59 samples, 0.01%)</title><rect x="84.3467%" y="613" width="0.0113%" height="15" fill="rgb(247,71,54)" fg:x="438924" fg:w="59"/><text x="84.5967%" y="623.50"></text></g><g><title>prep_new_page (55 samples, 0.01%)</title><rect x="84.3474%" y="597" width="0.0106%" height="15" fill="rgb(234,176,34)" fg:x="438928" fg:w="55"/><text x="84.5974%" y="607.50"></text></g><g><title>InstanceKlass::allocate_instance (133 samples, 0.03%)</title><rect x="84.3413%" y="789" width="0.0256%" height="15" fill="rgb(241,103,54)" fg:x="438896" fg:w="133"/><text x="84.5913%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (131 samples, 0.03%)</title><rect x="84.3417%" y="773" width="0.0252%" height="15" fill="rgb(228,22,34)" fg:x="438898" fg:w="131"/><text x="84.5917%" y="783.50"></text></g><g><title>MemAllocator::allocate (131 samples, 0.03%)</title><rect x="84.3417%" y="757" width="0.0252%" height="15" fill="rgb(241,179,48)" fg:x="438898" fg:w="131"/><text x="84.5917%" y="767.50"></text></g><g><title>ObjAllocator::initialize (108 samples, 0.02%)</title><rect x="84.3461%" y="741" width="0.0208%" height="15" fill="rgb(235,167,37)" fg:x="438921" fg:w="108"/><text x="84.5961%" y="751.50"></text></g><g><title>asm_exc_page_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="725" width="0.0206%" height="15" fill="rgb(213,109,30)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="735.50"></text></g><g><title>exc_page_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="709" width="0.0206%" height="15" fill="rgb(222,172,16)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="719.50"></text></g><g><title>do_user_addr_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="693" width="0.0206%" height="15" fill="rgb(233,192,5)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="703.50"></text></g><g><title>handle_mm_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="677" width="0.0206%" height="15" fill="rgb(247,189,41)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (107 samples, 0.02%)</title><rect x="84.3463%" y="661" width="0.0206%" height="15" fill="rgb(218,134,47)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="671.50"></text></g><g><title>OptoRuntime::new_instance_C (142 samples, 0.03%)</title><rect x="84.3403%" y="805" width="0.0273%" height="15" fill="rgb(216,29,3)" fg:x="438891" fg:w="142"/><text x="84.5903%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (68 samples, 0.01%)</title><rect x="84.3724%" y="789" width="0.0131%" height="15" fill="rgb(246,140,12)" fg:x="439058" fg:w="68"/><text x="84.6224%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (114 samples, 0.02%)</title><rect x="84.3676%" y="805" width="0.0219%" height="15" fill="rgb(230,136,11)" fg:x="439033" fg:w="114"/><text x="84.6176%" y="815.50"></text></g><g><title>handle_mm_fault (78 samples, 0.01%)</title><rect x="84.4012%" y="677" width="0.0150%" height="15" fill="rgb(247,22,47)" fg:x="439208" fg:w="78"/><text x="84.6512%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (78 samples, 0.01%)</title><rect x="84.4012%" y="661" width="0.0150%" height="15" fill="rgb(218,84,22)" fg:x="439208" fg:w="78"/><text x="84.6512%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (93 samples, 0.02%)</title><rect x="84.3997%" y="789" width="0.0179%" height="15" fill="rgb(216,87,39)" fg:x="439200" fg:w="93"/><text x="84.6497%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (93 samples, 0.02%)</title><rect x="84.3997%" y="773" width="0.0179%" height="15" fill="rgb(221,178,8)" fg:x="439200" fg:w="93"/><text x="84.6497%" y="783.50"></text></g><g><title>MemAllocator::allocate (93 samples, 0.02%)</title><rect x="84.3997%" y="757" width="0.0179%" height="15" fill="rgb(230,42,11)" fg:x="439200" fg:w="93"/><text x="84.6497%" y="767.50"></text></g><g><title>ObjAllocator::initialize (86 samples, 0.02%)</title><rect x="84.4010%" y="741" width="0.0165%" height="15" fill="rgb(237,229,4)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="751.50"></text></g><g><title>asm_exc_page_fault (86 samples, 0.02%)</title><rect x="84.4010%" y="725" width="0.0165%" height="15" fill="rgb(222,31,33)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="735.50"></text></g><g><title>exc_page_fault (86 samples, 0.02%)</title><rect x="84.4010%" y="709" width="0.0165%" height="15" fill="rgb(210,17,39)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="719.50"></text></g><g><title>do_user_addr_fault (86 samples, 0.02%)</title><rect x="84.4010%" y="693" width="0.0165%" height="15" fill="rgb(244,93,20)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="703.50"></text></g><g><title>Runtime1::new_instance (103 samples, 0.02%)</title><rect x="84.3991%" y="805" width="0.0198%" height="15" fill="rgb(210,40,47)" fg:x="439197" fg:w="103"/><text x="84.6491%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (64 samples, 0.01%)</title><rect x="84.4426%" y="805" width="0.0123%" height="15" fill="rgb(239,211,47)" fg:x="439423" fg:w="64"/><text x="84.6926%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (61 samples, 0.01%)</title><rect x="84.4431%" y="789" width="0.0117%" height="15" fill="rgb(251,223,49)" fg:x="439426" fg:w="61"/><text x="84.6931%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (263 samples, 0.05%)</title><rect x="84.4750%" y="581" width="0.0505%" height="15" fill="rgb(221,149,5)" fg:x="439592" fg:w="263"/><text x="84.7250%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (257 samples, 0.05%)</title><rect x="84.4762%" y="565" width="0.0494%" height="15" fill="rgb(219,224,51)" fg:x="439598" fg:w="257"/><text x="84.7262%" y="575.50"></text></g><g><title>native_write_msr (256 samples, 0.05%)</title><rect x="84.4764%" y="549" width="0.0492%" height="15" fill="rgb(223,7,8)" fg:x="439599" fg:w="256"/><text x="84.7264%" y="559.50"></text></g><g><title>finish_task_switch (277 samples, 0.05%)</title><rect x="84.4741%" y="597" width="0.0532%" height="15" fill="rgb(241,217,22)" fg:x="439587" fg:w="277"/><text x="84.7241%" y="607.50"></text></g><g><title>futex_wait_queue_me (302 samples, 0.06%)</title><rect x="84.4716%" y="645" width="0.0580%" height="15" fill="rgb(248,209,0)" fg:x="439574" fg:w="302"/><text x="84.7216%" y="655.50"></text></g><g><title>schedule (301 samples, 0.06%)</title><rect x="84.4718%" y="629" width="0.0578%" height="15" fill="rgb(217,205,4)" fg:x="439575" fg:w="301"/><text x="84.7218%" y="639.50"></text></g><g><title>__schedule (298 samples, 0.06%)</title><rect x="84.4723%" y="613" width="0.0573%" height="15" fill="rgb(228,124,39)" fg:x="439578" fg:w="298"/><text x="84.7223%" y="623.50"></text></g><g><title>do_syscall_64 (309 samples, 0.06%)</title><rect x="84.4708%" y="709" width="0.0594%" height="15" fill="rgb(250,116,42)" fg:x="439570" fg:w="309"/><text x="84.7208%" y="719.50"></text></g><g><title>__x64_sys_futex (309 samples, 0.06%)</title><rect x="84.4708%" y="693" width="0.0594%" height="15" fill="rgb(223,202,9)" fg:x="439570" fg:w="309"/><text x="84.7208%" y="703.50"></text></g><g><title>do_futex (307 samples, 0.06%)</title><rect x="84.4712%" y="677" width="0.0590%" height="15" fill="rgb(242,222,40)" fg:x="439572" fg:w="307"/><text x="84.7212%" y="687.50"></text></g><g><title>futex_wait (307 samples, 0.06%)</title><rect x="84.4712%" y="661" width="0.0590%" height="15" fill="rgb(229,99,46)" fg:x="439572" fg:w="307"/><text x="84.7212%" y="671.50"></text></g><g><title>__pthread_cond_wait (326 samples, 0.06%)</title><rect x="84.4696%" y="773" width="0.0626%" height="15" fill="rgb(225,56,46)" fg:x="439564" fg:w="326"/><text x="84.7196%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (326 samples, 0.06%)</title><rect x="84.4696%" y="757" width="0.0626%" height="15" fill="rgb(227,94,5)" fg:x="439564" fg:w="326"/><text x="84.7196%" y="767.50"></text></g><g><title>futex_wait_cancelable (324 samples, 0.06%)</title><rect x="84.4700%" y="741" width="0.0623%" height="15" fill="rgb(205,112,38)" fg:x="439566" fg:w="324"/><text x="84.7200%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (320 samples, 0.06%)</title><rect x="84.4708%" y="725" width="0.0615%" height="15" fill="rgb(231,133,46)" fg:x="439570" fg:w="320"/><text x="84.7208%" y="735.50"></text></g><g><title>Parker::park (383 samples, 0.07%)</title><rect x="84.4602%" y="789" width="0.0736%" height="15" fill="rgb(217,16,9)" fg:x="439515" fg:w="383"/><text x="84.7102%" y="799.50"></text></g><g><title>Unsafe_Park (387 samples, 0.07%)</title><rect x="84.4597%" y="805" width="0.0744%" height="15" fill="rgb(249,173,9)" fg:x="439512" fg:w="387"/><text x="84.7097%" y="815.50"></text></g><g><title>ttwu_do_activate (68 samples, 0.01%)</title><rect x="84.5544%" y="645" width="0.0131%" height="15" fill="rgb(205,163,53)" fg:x="440005" fg:w="68"/><text x="84.8044%" y="655.50"></text></g><g><title>do_syscall_64 (146 samples, 0.03%)</title><rect x="84.5413%" y="741" width="0.0281%" height="15" fill="rgb(217,54,41)" fg:x="439937" fg:w="146"/><text x="84.7913%" y="751.50"></text></g><g><title>__x64_sys_futex (145 samples, 0.03%)</title><rect x="84.5415%" y="725" width="0.0279%" height="15" fill="rgb(228,216,12)" fg:x="439938" fg:w="145"/><text x="84.7915%" y="735.50"></text></g><g><title>do_futex (145 samples, 0.03%)</title><rect x="84.5415%" y="709" width="0.0279%" height="15" fill="rgb(244,228,15)" fg:x="439938" fg:w="145"/><text x="84.7915%" y="719.50"></text></g><g><title>futex_wake (143 samples, 0.03%)</title><rect x="84.5419%" y="693" width="0.0275%" height="15" fill="rgb(221,176,53)" fg:x="439940" fg:w="143"/><text x="84.7919%" y="703.50"></text></g><g><title>wake_up_q (116 samples, 0.02%)</title><rect x="84.5471%" y="677" width="0.0223%" height="15" fill="rgb(205,94,34)" fg:x="439967" fg:w="116"/><text x="84.7971%" y="687.50"></text></g><g><title>try_to_wake_up (115 samples, 0.02%)</title><rect x="84.5473%" y="661" width="0.0221%" height="15" fill="rgb(213,110,48)" fg:x="439968" fg:w="115"/><text x="84.7973%" y="671.50"></text></g><g><title>__pthread_cond_signal (158 samples, 0.03%)</title><rect x="84.5398%" y="789" width="0.0304%" height="15" fill="rgb(236,142,28)" fg:x="439929" fg:w="158"/><text x="84.7898%" y="799.50"></text></g><g><title>futex_wake (155 samples, 0.03%)</title><rect x="84.5404%" y="773" width="0.0298%" height="15" fill="rgb(225,135,29)" fg:x="439932" fg:w="155"/><text x="84.7904%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (151 samples, 0.03%)</title><rect x="84.5411%" y="757" width="0.0290%" height="15" fill="rgb(252,45,31)" fg:x="439936" fg:w="151"/><text x="84.7911%" y="767.50"></text></g><g><title>Unsafe_Unpark (191 samples, 0.04%)</title><rect x="84.5340%" y="805" width="0.0367%" height="15" fill="rgb(211,187,50)" fg:x="439899" fg:w="191"/><text x="84.7840%" y="815.50"></text></g><g><title>__hrtimer_run_queues (63 samples, 0.01%)</title><rect x="84.5882%" y="741" width="0.0121%" height="15" fill="rgb(229,109,7)" fg:x="440181" fg:w="63"/><text x="84.8382%" y="751.50"></text></g><g><title>__sysvec_apic_timer_interrupt (68 samples, 0.01%)</title><rect x="84.5878%" y="773" width="0.0131%" height="15" fill="rgb(251,131,51)" fg:x="440179" fg:w="68"/><text x="84.8378%" y="783.50"></text></g><g><title>hrtimer_interrupt (67 samples, 0.01%)</title><rect x="84.5880%" y="757" width="0.0129%" height="15" fill="rgb(251,180,35)" fg:x="440180" fg:w="67"/><text x="84.8380%" y="767.50"></text></g><g><title>rcu_core (56 samples, 0.01%)</title><rect x="84.6011%" y="709" width="0.0108%" height="15" fill="rgb(211,46,32)" fg:x="440248" fg:w="56"/><text x="84.8511%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (141 samples, 0.03%)</title><rect x="84.5867%" y="805" width="0.0271%" height="15" fill="rgb(248,123,17)" fg:x="440173" fg:w="141"/><text x="84.8367%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (135 samples, 0.03%)</title><rect x="84.5878%" y="789" width="0.0259%" height="15" fill="rgb(227,141,18)" fg:x="440179" fg:w="135"/><text x="84.8378%" y="799.50"></text></g><g><title>irq_exit_rcu (67 samples, 0.01%)</title><rect x="84.6009%" y="773" width="0.0129%" height="15" fill="rgb(216,102,9)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="783.50"></text></g><g><title>do_softirq_own_stack (67 samples, 0.01%)</title><rect x="84.6009%" y="757" width="0.0129%" height="15" fill="rgb(253,47,13)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (67 samples, 0.01%)</title><rect x="84.6009%" y="741" width="0.0129%" height="15" fill="rgb(226,93,23)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="751.50"></text></g><g><title>__softirqentry_text_start (67 samples, 0.01%)</title><rect x="84.6009%" y="725" width="0.0129%" height="15" fill="rgb(247,104,17)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="735.50"></text></g><g><title>fileDescriptorClose (62 samples, 0.01%)</title><rect x="84.6178%" y="805" width="0.0119%" height="15" fill="rgb(233,203,26)" fg:x="440335" fg:w="62"/><text x="84.8678%" y="815.50"></text></g><g><title>do_filp_open (119 samples, 0.02%)</title><rect x="84.6455%" y="709" width="0.0229%" height="15" fill="rgb(244,98,49)" fg:x="440479" fg:w="119"/><text x="84.8955%" y="719.50"></text></g><g><title>path_openat (114 samples, 0.02%)</title><rect x="84.6464%" y="693" width="0.0219%" height="15" fill="rgb(235,134,22)" fg:x="440484" fg:w="114"/><text x="84.8964%" y="703.50"></text></g><g><title>do_syscall_64 (141 samples, 0.03%)</title><rect x="84.6430%" y="757" width="0.0271%" height="15" fill="rgb(221,70,32)" fg:x="440466" fg:w="141"/><text x="84.8930%" y="767.50"></text></g><g><title>__x64_sys_openat (141 samples, 0.03%)</title><rect x="84.6430%" y="741" width="0.0271%" height="15" fill="rgb(238,15,50)" fg:x="440466" fg:w="141"/><text x="84.8930%" y="751.50"></text></g><g><title>do_sys_openat2 (140 samples, 0.03%)</title><rect x="84.6432%" y="725" width="0.0269%" height="15" fill="rgb(215,221,48)" fg:x="440467" fg:w="140"/><text x="84.8932%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="84.6428%" y="773" width="0.0275%" height="15" fill="rgb(236,73,3)" fg:x="440465" fg:w="143"/><text x="84.8928%" y="783.50"></text></g><g><title>__libc_open64 (149 samples, 0.03%)</title><rect x="84.6418%" y="789" width="0.0286%" height="15" fill="rgb(250,107,11)" fg:x="440460" fg:w="149"/><text x="84.8918%" y="799.50"></text></g><g><title>fileOpen (229 samples, 0.04%)</title><rect x="84.6297%" y="805" width="0.0440%" height="15" fill="rgb(242,39,14)" fg:x="440397" fg:w="229"/><text x="84.8797%" y="815.50"></text></g><g><title>jni_IsAssignableFrom (53 samples, 0.01%)</title><rect x="84.6758%" y="805" width="0.0102%" height="15" fill="rgb(248,164,37)" fg:x="440637" fg:w="53"/><text x="84.9258%" y="815.50"></text></g><g><title>os::javaTimeNanos (1,359 samples, 0.26%)</title><rect x="84.6874%" y="805" width="0.2612%" height="15" fill="rgb(217,60,12)" fg:x="440697" fg:w="1359"/><text x="84.9374%" y="815.50"></text></g><g><title>__GI___clock_gettime (1,283 samples, 0.25%)</title><rect x="84.7020%" y="789" width="0.2466%" height="15" fill="rgb(240,125,29)" fg:x="440773" fg:w="1283"/><text x="84.9520%" y="799.50"></text></g><g><title>__vdso_clock_gettime (1,128 samples, 0.22%)</title><rect x="84.7318%" y="773" width="0.2168%" height="15" fill="rgb(208,207,28)" fg:x="440928" fg:w="1128"/><text x="84.9818%" y="783.50"></text></g><g><title>[[vdso]] (718 samples, 0.14%)</title><rect x="84.8106%" y="757" width="0.1380%" height="15" fill="rgb(209,159,27)" fg:x="441338" fg:w="718"/><text x="85.0606%" y="767.50"></text></g><g><title>[perf-261576.map] (68,753 samples, 13.21%)</title><rect x="71.7367%" y="821" width="13.2121%" height="15" fill="rgb(251,176,53)" fg:x="373304" fg:w="68753"/><text x="71.9867%" y="831.50">[perf-261576.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (145 samples, 0.03%)</title><rect x="84.9883%" y="789" width="0.0279%" height="15" fill="rgb(211,85,7)" fg:x="442263" fg:w="145"/><text x="85.2383%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (215 samples, 0.04%)</title><rect x="84.9777%" y="805" width="0.0413%" height="15" fill="rgb(216,64,54)" fg:x="442208" fg:w="215"/><text x="85.2277%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.01%)</title><rect x="85.0212%" y="533" width="0.0102%" height="15" fill="rgb(217,54,24)" fg:x="442434" fg:w="53"/><text x="85.2712%" y="543.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="85.0210%" y="549" width="0.0113%" height="15" fill="rgb(208,206,53)" fg:x="442433" fg:w="59"/><text x="85.2710%" y="559.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="85.0206%" y="661" width="0.0119%" height="15" fill="rgb(251,74,39)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="671.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="85.0206%" y="645" width="0.0119%" height="15" fill="rgb(226,47,5)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="655.50"></text></g><g><title>do_futex (62 samples, 0.01%)</title><rect x="85.0206%" y="629" width="0.0119%" height="15" fill="rgb(234,111,33)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="639.50"></text></g><g><title>futex_wait (62 samples, 0.01%)</title><rect x="85.0206%" y="613" width="0.0119%" height="15" fill="rgb(251,14,10)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="623.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.01%)</title><rect x="85.0206%" y="597" width="0.0119%" height="15" fill="rgb(232,43,0)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="607.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="85.0206%" y="581" width="0.0119%" height="15" fill="rgb(222,68,43)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="591.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="85.0206%" y="565" width="0.0119%" height="15" fill="rgb(217,24,23)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="575.50"></text></g><g><title>__pthread_cond_wait (65 samples, 0.01%)</title><rect x="85.0202%" y="725" width="0.0125%" height="15" fill="rgb(229,209,14)" fg:x="442429" fg:w="65"/><text x="85.2702%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.01%)</title><rect x="85.0202%" y="709" width="0.0125%" height="15" fill="rgb(250,149,48)" fg:x="442429" fg:w="65"/><text x="85.2702%" y="719.50"></text></g><g><title>futex_wait_cancelable (64 samples, 0.01%)</title><rect x="85.0204%" y="693" width="0.0123%" height="15" fill="rgb(210,120,37)" fg:x="442430" fg:w="64"/><text x="85.2704%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="85.0206%" y="677" width="0.0121%" height="15" fill="rgb(210,21,8)" fg:x="442431" fg:w="63"/><text x="85.2706%" y="687.50"></text></g><g><title>Monitor::lock_without_safepoint_check (69 samples, 0.01%)</title><rect x="85.0196%" y="773" width="0.0133%" height="15" fill="rgb(243,145,7)" fg:x="442426" fg:w="69"/><text x="85.2696%" y="783.50"></text></g><g><title>Monitor::ILock (68 samples, 0.01%)</title><rect x="85.0198%" y="757" width="0.0131%" height="15" fill="rgb(238,178,32)" fg:x="442427" fg:w="68"/><text x="85.2698%" y="767.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.01%)</title><rect x="85.0202%" y="741" width="0.0127%" height="15" fill="rgb(222,4,10)" fg:x="442429" fg:w="66"/><text x="85.2702%" y="751.50"></text></g><g><title>SafepointSynchronize::block (79 samples, 0.02%)</title><rect x="85.0194%" y="789" width="0.0152%" height="15" fill="rgb(239,7,37)" fg:x="442425" fg:w="79"/><text x="85.2694%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (82 samples, 0.02%)</title><rect x="85.0192%" y="805" width="0.0158%" height="15" fill="rgb(215,31,37)" fg:x="442424" fg:w="82"/><text x="85.2692%" y="815.50"></text></g><g><title>__GI___clock_gettime (184 samples, 0.04%)</title><rect x="85.0367%" y="805" width="0.0354%" height="15" fill="rgb(224,83,33)" fg:x="442515" fg:w="184"/><text x="85.2867%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (107 samples, 0.02%)</title><rect x="85.1190%" y="629" width="0.0206%" height="15" fill="rgb(239,55,3)" fg:x="442943" fg:w="107"/><text x="85.3690%" y="639.50"></text></g><g><title>copy_page_to_iter (116 samples, 0.02%)</title><rect x="85.1176%" y="645" width="0.0223%" height="15" fill="rgb(247,92,11)" fg:x="442936" fg:w="116"/><text x="85.3676%" y="655.50"></text></g><g><title>touch_atime (96 samples, 0.02%)</title><rect x="85.1468%" y="645" width="0.0184%" height="15" fill="rgb(239,200,7)" fg:x="443088" fg:w="96"/><text x="85.3968%" y="655.50"></text></g><g><title>btrfs_dirty_inode (86 samples, 0.02%)</title><rect x="85.1488%" y="629" width="0.0165%" height="15" fill="rgb(227,115,8)" fg:x="443098" fg:w="86"/><text x="85.3988%" y="639.50"></text></g><g><title>generic_file_buffered_read (260 samples, 0.05%)</title><rect x="85.1155%" y="661" width="0.0500%" height="15" fill="rgb(215,189,27)" fg:x="442925" fg:w="260"/><text x="85.3655%" y="671.50"></text></g><g><title>new_sync_read (269 samples, 0.05%)</title><rect x="85.1140%" y="677" width="0.0517%" height="15" fill="rgb(251,216,39)" fg:x="442917" fg:w="269"/><text x="85.3640%" y="687.50"></text></g><g><title>do_syscall_64 (310 samples, 0.06%)</title><rect x="85.1082%" y="725" width="0.0596%" height="15" fill="rgb(207,29,47)" fg:x="442887" fg:w="310"/><text x="85.3582%" y="735.50"></text></g><g><title>ksys_read (309 samples, 0.06%)</title><rect x="85.1084%" y="709" width="0.0594%" height="15" fill="rgb(210,71,34)" fg:x="442888" fg:w="309"/><text x="85.3584%" y="719.50"></text></g><g><title>vfs_read (291 samples, 0.06%)</title><rect x="85.1119%" y="693" width="0.0559%" height="15" fill="rgb(253,217,51)" fg:x="442906" fg:w="291"/><text x="85.3619%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (312 samples, 0.06%)</title><rect x="85.1080%" y="741" width="0.0600%" height="15" fill="rgb(222,117,46)" fg:x="442886" fg:w="312"/><text x="85.3580%" y="751.50"></text></g><g><title>__libc_read (330 samples, 0.06%)</title><rect x="85.1050%" y="773" width="0.0634%" height="15" fill="rgb(226,132,6)" fg:x="442870" fg:w="330"/><text x="85.3550%" y="783.50"></text></g><g><title>__libc_read (330 samples, 0.06%)</title><rect x="85.1050%" y="757" width="0.0634%" height="15" fill="rgb(254,145,51)" fg:x="442870" fg:w="330"/><text x="85.3550%" y="767.50"></text></g><g><title>handleRead (332 samples, 0.06%)</title><rect x="85.1048%" y="789" width="0.0638%" height="15" fill="rgb(231,199,27)" fg:x="442869" fg:w="332"/><text x="85.3548%" y="799.50"></text></g><g><title>readBytes (407 samples, 0.08%)</title><rect x="85.1026%" y="805" width="0.0782%" height="15" fill="rgb(245,158,14)" fg:x="442858" fg:w="407"/><text x="85.3526%" y="815.50"></text></g><g><title>[unknown] (1,227 samples, 0.24%)</title><rect x="84.9487%" y="821" width="0.2358%" height="15" fill="rgb(240,113,14)" fg:x="442057" fg:w="1227"/><text x="85.1987%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (123 samples, 0.02%)</title><rect x="85.1859%" y="757" width="0.0236%" height="15" fill="rgb(210,20,13)" fg:x="443291" fg:w="123"/><text x="85.4359%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (122 samples, 0.02%)</title><rect x="85.1860%" y="741" width="0.0234%" height="15" fill="rgb(241,144,13)" fg:x="443292" fg:w="122"/><text x="85.4360%" y="751.50"></text></g><g><title>native_write_msr (121 samples, 0.02%)</title><rect x="85.1862%" y="725" width="0.0233%" height="15" fill="rgb(235,43,34)" fg:x="443293" fg:w="121"/><text x="85.4362%" y="735.50"></text></g><g><title>schedule_tail (128 samples, 0.02%)</title><rect x="85.1859%" y="789" width="0.0246%" height="15" fill="rgb(208,36,20)" fg:x="443291" fg:w="128"/><text x="85.4359%" y="799.50"></text></g><g><title>finish_task_switch (128 samples, 0.02%)</title><rect x="85.1859%" y="773" width="0.0246%" height="15" fill="rgb(239,204,10)" fg:x="443291" fg:w="128"/><text x="85.4359%" y="783.50"></text></g><g><title>ret_from_fork (130 samples, 0.02%)</title><rect x="85.1859%" y="805" width="0.0250%" height="15" fill="rgb(217,84,43)" fg:x="443291" fg:w="130"/><text x="85.4359%" y="815.50"></text></g><g><title>__GI___clone (216 samples, 0.04%)</title><rect x="85.1845%" y="821" width="0.0415%" height="15" fill="rgb(241,170,50)" fg:x="443284" fg:w="216"/><text x="85.4345%" y="831.50"></text></g><g><title>start_thread (79 samples, 0.02%)</title><rect x="85.2108%" y="805" width="0.0152%" height="15" fill="rgb(226,205,29)" fg:x="443421" fg:w="79"/><text x="85.4608%" y="815.50"></text></g><g><title>thread_native_entry (71 samples, 0.01%)</title><rect x="85.2124%" y="789" width="0.0136%" height="15" fill="rgb(233,113,1)" fg:x="443429" fg:w="71"/><text x="85.4624%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.02%)</title><rect x="85.2391%" y="821" width="0.0227%" height="15" fill="rgb(253,98,13)" fg:x="443568" fg:w="118"/><text x="85.4891%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (353 samples, 0.07%)</title><rect x="85.2618%" y="821" width="0.0678%" height="15" fill="rgb(211,115,12)" fg:x="443686" fg:w="353"/><text x="85.5118%" y="831.50"></text></g><g><title>jni_GetStringLength (80 samples, 0.02%)</title><rect x="85.3300%" y="821" width="0.0154%" height="15" fill="rgb(208,12,16)" fg:x="444041" fg:w="80"/><text x="85.5800%" y="831.50"></text></g><g><title>skyframe-evalua (309,593 samples, 59.49%)</title><rect x="25.8685%" y="837" width="59.4935%" height="15" fill="rgb(237,193,54)" fg:x="134615" fg:w="309593"/><text x="26.1185%" y="847.50">skyframe-evalua</text></g><g><title>[perf-261576.map] (68 samples, 0.01%)</title><rect x="85.3625%" y="821" width="0.0131%" height="15" fill="rgb(243,22,42)" fg:x="444210" fg:w="68"/><text x="85.6125%" y="831.50"></text></g><g><title>skyframe-invali (99 samples, 0.02%)</title><rect x="85.3621%" y="837" width="0.0190%" height="15" fill="rgb(233,151,36)" fg:x="444208" fg:w="99"/><text x="85.6121%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (132 samples, 0.03%)</title><rect x="90.2735%" y="629" width="0.0254%" height="15" fill="rgb(237,57,45)" fg:x="469766" fg:w="132"/><text x="90.5235%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (132 samples, 0.03%)</title><rect x="90.2735%" y="613" width="0.0254%" height="15" fill="rgb(221,88,17)" fg:x="469766" fg:w="132"/><text x="90.5235%" y="623.50"></text></g><g><title>native_write_msr (130 samples, 0.02%)</title><rect x="90.2739%" y="597" width="0.0250%" height="15" fill="rgb(230,79,15)" fg:x="469768" fg:w="130"/><text x="90.5239%" y="607.50"></text></g><g><title>finish_task_switch (139 samples, 0.03%)</title><rect x="90.2731%" y="645" width="0.0267%" height="15" fill="rgb(213,57,13)" fg:x="469764" fg:w="139"/><text x="90.5231%" y="655.50"></text></g><g><title>wait_on_page_bit_common (151 samples, 0.03%)</title><rect x="90.2721%" y="709" width="0.0290%" height="15" fill="rgb(222,116,39)" fg:x="469759" fg:w="151"/><text x="90.5221%" y="719.50"></text></g><g><title>io_schedule (150 samples, 0.03%)</title><rect x="90.2723%" y="693" width="0.0288%" height="15" fill="rgb(245,107,2)" fg:x="469760" fg:w="150"/><text x="90.5223%" y="703.50"></text></g><g><title>schedule (150 samples, 0.03%)</title><rect x="90.2723%" y="677" width="0.0288%" height="15" fill="rgb(238,1,10)" fg:x="469760" fg:w="150"/><text x="90.5223%" y="687.50"></text></g><g><title>__schedule (150 samples, 0.03%)</title><rect x="90.2723%" y="661" width="0.0288%" height="15" fill="rgb(249,4,48)" fg:x="469760" fg:w="150"/><text x="90.5223%" y="671.50"></text></g><g><title>filemap_fault (183 samples, 0.04%)</title><rect x="90.2687%" y="725" width="0.0352%" height="15" fill="rgb(223,151,18)" fg:x="469741" fg:w="183"/><text x="90.5187%" y="735.50"></text></g><g><title>__do_fault (184 samples, 0.04%)</title><rect x="90.2687%" y="741" width="0.0354%" height="15" fill="rgb(227,65,43)" fg:x="469741" fg:w="184"/><text x="90.5187%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (327 samples, 0.06%)</title><rect x="90.3134%" y="725" width="0.0628%" height="15" fill="rgb(218,40,45)" fg:x="469974" fg:w="327"/><text x="90.5634%" y="735.50"></text></g><g><title>get_page_from_freelist (294 samples, 0.06%)</title><rect x="90.3198%" y="709" width="0.0565%" height="15" fill="rgb(252,121,31)" fg:x="470007" fg:w="294"/><text x="90.5698%" y="719.50"></text></g><g><title>prep_new_page (191 samples, 0.04%)</title><rect x="90.3396%" y="693" width="0.0367%" height="15" fill="rgb(219,158,43)" fg:x="470110" fg:w="191"/><text x="90.5896%" y="703.50"></text></g><g><title>kernel_init_free_pages (176 samples, 0.03%)</title><rect x="90.3425%" y="677" width="0.0338%" height="15" fill="rgb(231,162,42)" fg:x="470125" fg:w="176"/><text x="90.5925%" y="687.50"></text></g><g><title>clear_page_erms (168 samples, 0.03%)</title><rect x="90.3440%" y="661" width="0.0323%" height="15" fill="rgb(217,179,25)" fg:x="470133" fg:w="168"/><text x="90.5940%" y="671.50"></text></g><g><title>alloc_pages_vma (346 samples, 0.07%)</title><rect x="90.3109%" y="741" width="0.0665%" height="15" fill="rgb(206,212,31)" fg:x="469961" fg:w="346"/><text x="90.5609%" y="751.50"></text></g><g><title>do_page_mkwrite (161 samples, 0.03%)</title><rect x="90.3932%" y="741" width="0.0309%" height="15" fill="rgb(235,144,12)" fg:x="470389" fg:w="161"/><text x="90.6432%" y="751.50"></text></g><g><title>btrfs_page_mkwrite (161 samples, 0.03%)</title><rect x="90.3932%" y="725" width="0.0309%" height="15" fill="rgb(213,51,10)" fg:x="470389" fg:w="161"/><text x="90.6432%" y="735.50"></text></g><g><title>wait_on_page_bit_common (56 samples, 0.01%)</title><rect x="90.4134%" y="709" width="0.0108%" height="15" fill="rgb(231,145,14)" fg:x="470494" fg:w="56"/><text x="90.6634%" y="719.50"></text></g><g><title>io_schedule (53 samples, 0.01%)</title><rect x="90.4139%" y="693" width="0.0102%" height="15" fill="rgb(235,15,28)" fg:x="470497" fg:w="53"/><text x="90.6639%" y="703.50"></text></g><g><title>__mod_memcg_lruvec_state (53 samples, 0.01%)</title><rect x="90.5231%" y="693" width="0.0102%" height="15" fill="rgb(237,206,10)" fg:x="471065" fg:w="53"/><text x="90.7731%" y="703.50"></text></g><g><title>page_add_file_rmap (131 samples, 0.03%)</title><rect x="90.5096%" y="709" width="0.0252%" height="15" fill="rgb(236,227,27)" fg:x="470995" fg:w="131"/><text x="90.7596%" y="719.50"></text></g><g><title>alloc_set_pte (198 samples, 0.04%)</title><rect x="90.4975%" y="725" width="0.0380%" height="15" fill="rgb(246,83,35)" fg:x="470932" fg:w="198"/><text x="90.7475%" y="735.50"></text></g><g><title>filemap_map_pages (657 samples, 0.13%)</title><rect x="90.4278%" y="741" width="0.1263%" height="15" fill="rgb(220,136,24)" fg:x="470569" fg:w="657"/><text x="90.6778%" y="751.50"></text></g><g><title>__pagevec_lru_add_fn (70 samples, 0.01%)</title><rect x="90.5575%" y="709" width="0.0135%" height="15" fill="rgb(217,3,25)" fg:x="471244" fg:w="70"/><text x="90.8075%" y="719.50"></text></g><g><title>lru_cache_add (102 samples, 0.02%)</title><rect x="90.5546%" y="741" width="0.0196%" height="15" fill="rgb(239,24,14)" fg:x="471229" fg:w="102"/><text x="90.8046%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (91 samples, 0.02%)</title><rect x="90.5567%" y="725" width="0.0175%" height="15" fill="rgb(244,16,53)" fg:x="471240" fg:w="91"/><text x="90.8067%" y="735.50"></text></g><g><title>mem_cgroup_charge (115 samples, 0.02%)</title><rect x="90.5748%" y="741" width="0.0221%" height="15" fill="rgb(208,175,44)" fg:x="471334" fg:w="115"/><text x="90.8248%" y="751.50"></text></g><g><title>handle_mm_fault (2,003 samples, 0.38%)</title><rect x="90.2316%" y="757" width="0.3849%" height="15" fill="rgb(252,18,48)" fg:x="469548" fg:w="2003"/><text x="90.4816%" y="767.50"></text></g><g><title>exc_page_fault (2,160 samples, 0.42%)</title><rect x="90.2079%" y="789" width="0.4151%" height="15" fill="rgb(234,199,32)" fg:x="469425" fg:w="2160"/><text x="90.4579%" y="799.50"></text></g><g><title>do_user_addr_fault (2,142 samples, 0.41%)</title><rect x="90.2114%" y="773" width="0.4116%" height="15" fill="rgb(225,77,54)" fg:x="469443" fg:w="2142"/><text x="90.4614%" y="783.50"></text></g><g><title>asm_exc_page_fault (2,202 samples, 0.42%)</title><rect x="90.2035%" y="805" width="0.4232%" height="15" fill="rgb(225,42,25)" fg:x="469402" fg:w="2202"/><text x="90.4535%" y="815.50"></text></g><g><title>kmem_cache_free (64 samples, 0.01%)</title><rect x="90.6384%" y="693" width="0.0123%" height="15" fill="rgb(242,227,46)" fg:x="471665" fg:w="64"/><text x="90.8884%" y="703.50"></text></g><g><title>rcu_core (113 samples, 0.02%)</title><rect x="90.6355%" y="709" width="0.0217%" height="15" fill="rgb(246,197,35)" fg:x="471650" fg:w="113"/><text x="90.8855%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (162 samples, 0.03%)</title><rect x="90.6267%" y="805" width="0.0311%" height="15" fill="rgb(215,159,26)" fg:x="471604" fg:w="162"/><text x="90.8767%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (134 samples, 0.03%)</title><rect x="90.6321%" y="789" width="0.0258%" height="15" fill="rgb(212,194,50)" fg:x="471632" fg:w="134"/><text x="90.8821%" y="799.50"></text></g><g><title>irq_exit_rcu (117 samples, 0.02%)</title><rect x="90.6353%" y="773" width="0.0225%" height="15" fill="rgb(246,132,1)" fg:x="471649" fg:w="117"/><text x="90.8853%" y="783.50"></text></g><g><title>do_softirq_own_stack (116 samples, 0.02%)</title><rect x="90.6355%" y="757" width="0.0223%" height="15" fill="rgb(217,71,7)" fg:x="471650" fg:w="116"/><text x="90.8855%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (116 samples, 0.02%)</title><rect x="90.6355%" y="741" width="0.0223%" height="15" fill="rgb(252,59,32)" fg:x="471650" fg:w="116"/><text x="90.8855%" y="751.50"></text></g><g><title>__softirqentry_text_start (116 samples, 0.02%)</title><rect x="90.6355%" y="725" width="0.0223%" height="15" fill="rgb(253,204,25)" fg:x="471650" fg:w="116"/><text x="90.8855%" y="735.50"></text></g><g><title>entry_SYSCALL_64 (1,114 samples, 0.21%)</title><rect x="90.6588%" y="805" width="0.2141%" height="15" fill="rgb(232,21,16)" fg:x="471771" fg:w="1114"/><text x="90.9088%" y="815.50"></text></g><g><title>copy_process (81 samples, 0.02%)</title><rect x="90.9607%" y="741" width="0.0156%" height="15" fill="rgb(248,90,29)" fg:x="473342" fg:w="81"/><text x="91.2107%" y="751.50"></text></g><g><title>__do_sys_clone (89 samples, 0.02%)</title><rect x="90.9607%" y="773" width="0.0171%" height="15" fill="rgb(249,223,7)" fg:x="473342" fg:w="89"/><text x="91.2107%" y="783.50"></text></g><g><title>kernel_clone (89 samples, 0.02%)</title><rect x="90.9607%" y="757" width="0.0171%" height="15" fill="rgb(231,119,42)" fg:x="473342" fg:w="89"/><text x="91.2107%" y="767.50"></text></g><g><title>_copy_to_user (188 samples, 0.04%)</title><rect x="90.9878%" y="741" width="0.0361%" height="15" fill="rgb(215,41,35)" fg:x="473483" fg:w="188"/><text x="91.2378%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (170 samples, 0.03%)</title><rect x="90.9912%" y="725" width="0.0327%" height="15" fill="rgb(220,44,45)" fg:x="473501" fg:w="170"/><text x="91.2412%" y="735.50"></text></g><g><title>cp_new_stat (287 samples, 0.06%)</title><rect x="90.9797%" y="757" width="0.0552%" height="15" fill="rgb(253,197,36)" fg:x="473441" fg:w="287"/><text x="91.2297%" y="767.50"></text></g><g><title>__fget_light (72 samples, 0.01%)</title><rect x="91.0404%" y="741" width="0.0138%" height="15" fill="rgb(245,225,54)" fg:x="473757" fg:w="72"/><text x="91.2904%" y="751.50"></text></g><g><title>__fget_files (63 samples, 0.01%)</title><rect x="91.0421%" y="725" width="0.0121%" height="15" fill="rgb(239,94,37)" fg:x="473766" fg:w="63"/><text x="91.2921%" y="735.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="91.1225%" y="725" width="0.0119%" height="15" fill="rgb(242,217,10)" fg:x="474184" fg:w="62"/><text x="91.3725%" y="735.50"></text></g><g><title>btrfs_getattr (531 samples, 0.10%)</title><rect x="91.0542%" y="741" width="0.1020%" height="15" fill="rgb(250,193,7)" fg:x="473829" fg:w="531"/><text x="91.3042%" y="751.50"></text></g><g><title>inode_get_bytes (82 samples, 0.02%)</title><rect x="91.1405%" y="725" width="0.0158%" height="15" fill="rgb(230,104,19)" fg:x="474278" fg:w="82"/><text x="91.3905%" y="735.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="91.1432%" y="709" width="0.0131%" height="15" fill="rgb(230,181,4)" fg:x="474292" fg:w="68"/><text x="91.3932%" y="719.50"></text></g><g><title>security_inode_getattr (191 samples, 0.04%)</title><rect x="91.1644%" y="741" width="0.0367%" height="15" fill="rgb(216,219,49)" fg:x="474402" fg:w="191"/><text x="91.4144%" y="751.50"></text></g><g><title>tomoyo_path_perm (138 samples, 0.03%)</title><rect x="91.1745%" y="725" width="0.0265%" height="15" fill="rgb(254,144,0)" fg:x="474455" fg:w="138"/><text x="91.4245%" y="735.50"></text></g><g><title>tomoyo_init_request_info (53 samples, 0.01%)</title><rect x="91.1909%" y="709" width="0.0102%" height="15" fill="rgb(205,209,38)" fg:x="474540" fg:w="53"/><text x="91.4409%" y="719.50"></text></g><g><title>__do_sys_newfstat (1,243 samples, 0.24%)</title><rect x="90.9778%" y="773" width="0.2389%" height="15" fill="rgb(240,21,42)" fg:x="473431" fg:w="1243"/><text x="91.2278%" y="783.50"></text></g><g><title>vfs_fstat (946 samples, 0.18%)</title><rect x="91.0348%" y="757" width="0.1818%" height="15" fill="rgb(241,132,3)" fg:x="473728" fg:w="946"/><text x="91.2848%" y="767.50"></text></g><g><title>vfs_getattr_nosec (81 samples, 0.02%)</title><rect x="91.2011%" y="741" width="0.0156%" height="15" fill="rgb(225,14,2)" fg:x="474593" fg:w="81"/><text x="91.4511%" y="751.50"></text></g><g><title>__close_fd (90 samples, 0.02%)</title><rect x="91.2232%" y="757" width="0.0173%" height="15" fill="rgb(210,141,35)" fg:x="474708" fg:w="90"/><text x="91.4732%" y="767.50"></text></g><g><title>pick_file (88 samples, 0.02%)</title><rect x="91.2235%" y="741" width="0.0169%" height="15" fill="rgb(251,14,44)" fg:x="474710" fg:w="88"/><text x="91.4735%" y="751.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="91.2295%" y="725" width="0.0110%" height="15" fill="rgb(247,48,18)" fg:x="474741" fg:w="57"/><text x="91.4795%" y="735.50"></text></g><g><title>fput_many (185 samples, 0.04%)</title><rect x="91.2464%" y="741" width="0.0356%" height="15" fill="rgb(225,0,40)" fg:x="474829" fg:w="185"/><text x="91.4964%" y="751.50"></text></g><g><title>task_work_add (128 samples, 0.02%)</title><rect x="91.2574%" y="725" width="0.0246%" height="15" fill="rgb(221,31,33)" fg:x="474886" fg:w="128"/><text x="91.5074%" y="735.50"></text></g><g><title>__x64_sys_close (330 samples, 0.06%)</title><rect x="91.2224%" y="773" width="0.0634%" height="15" fill="rgb(237,42,40)" fg:x="474704" fg:w="330"/><text x="91.4724%" y="783.50"></text></g><g><title>filp_close (236 samples, 0.05%)</title><rect x="91.2405%" y="757" width="0.0454%" height="15" fill="rgb(233,51,29)" fg:x="474798" fg:w="236"/><text x="91.4905%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.02%)</title><rect x="91.2893%" y="645" width="0.0181%" height="15" fill="rgb(226,58,20)" fg:x="475052" fg:w="94"/><text x="91.5393%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (94 samples, 0.02%)</title><rect x="91.2893%" y="629" width="0.0181%" height="15" fill="rgb(208,98,7)" fg:x="475052" fg:w="94"/><text x="91.5393%" y="639.50"></text></g><g><title>native_write_msr (93 samples, 0.02%)</title><rect x="91.2895%" y="613" width="0.0179%" height="15" fill="rgb(228,143,44)" fg:x="475053" fg:w="93"/><text x="91.5395%" y="623.50"></text></g><g><title>schedule (97 samples, 0.02%)</title><rect x="91.2893%" y="693" width="0.0186%" height="15" fill="rgb(246,55,38)" fg:x="475052" fg:w="97"/><text x="91.5393%" y="703.50"></text></g><g><title>__schedule (97 samples, 0.02%)</title><rect x="91.2893%" y="677" width="0.0186%" height="15" fill="rgb(247,87,16)" fg:x="475052" fg:w="97"/><text x="91.5393%" y="687.50"></text></g><g><title>finish_task_switch (97 samples, 0.02%)</title><rect x="91.2893%" y="661" width="0.0186%" height="15" fill="rgb(234,129,42)" fg:x="475052" fg:w="97"/><text x="91.5393%" y="671.50"></text></g><g><title>load_elf_binary (113 samples, 0.02%)</title><rect x="91.2873%" y="725" width="0.0217%" height="15" fill="rgb(220,82,16)" fg:x="475042" fg:w="113"/><text x="91.5373%" y="735.50"></text></g><g><title>begin_new_exec (113 samples, 0.02%)</title><rect x="91.2873%" y="709" width="0.0217%" height="15" fill="rgb(211,88,4)" fg:x="475042" fg:w="113"/><text x="91.5373%" y="719.50"></text></g><g><title>bprm_execve (145 samples, 0.03%)</title><rect x="91.2864%" y="741" width="0.0279%" height="15" fill="rgb(248,151,21)" fg:x="475037" fg:w="145"/><text x="91.5364%" y="751.50"></text></g><g><title>__x64_sys_execve (152 samples, 0.03%)</title><rect x="91.2860%" y="773" width="0.0292%" height="15" fill="rgb(238,163,6)" fg:x="475035" fg:w="152"/><text x="91.5360%" y="783.50"></text></g><g><title>do_execveat_common (152 samples, 0.03%)</title><rect x="91.2860%" y="757" width="0.0292%" height="15" fill="rgb(209,183,11)" fg:x="475035" fg:w="152"/><text x="91.5360%" y="767.50"></text></g><g><title>update_curr (132 samples, 0.03%)</title><rect x="91.4417%" y="645" width="0.0254%" height="15" fill="rgb(219,37,20)" fg:x="475845" fg:w="132"/><text x="91.6917%" y="655.50"></text></g><g><title>dequeue_entity (400 samples, 0.08%)</title><rect x="91.4207%" y="661" width="0.0769%" height="15" fill="rgb(210,158,4)" fg:x="475736" fg:w="400"/><text x="91.6707%" y="671.50"></text></g><g><title>update_load_avg (159 samples, 0.03%)</title><rect x="91.4670%" y="645" width="0.0306%" height="15" fill="rgb(221,167,53)" fg:x="475977" fg:w="159"/><text x="91.7170%" y="655.50"></text></g><g><title>dequeue_task_fair (450 samples, 0.09%)</title><rect x="91.4142%" y="677" width="0.0865%" height="15" fill="rgb(237,151,45)" fg:x="475702" fg:w="450"/><text x="91.6642%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (13,750 samples, 2.64%)</title><rect x="91.5652%" y="661" width="2.6423%" height="15" fill="rgb(231,39,3)" fg:x="476488" fg:w="13750"/><text x="91.8152%" y="671.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,569 samples, 2.61%)</title><rect x="91.6000%" y="645" width="2.6075%" height="15" fill="rgb(212,167,28)" fg:x="476669" fg:w="13569"/><text x="91.8500%" y="655.50">__..</text></g><g><title>native_write_msr (13,505 samples, 2.60%)</title><rect x="91.6123%" y="629" width="2.5952%" height="15" fill="rgb(232,178,8)" fg:x="476733" fg:w="13505"/><text x="91.8623%" y="639.50">na..</text></g><g><title>__wake_up_common (116 samples, 0.02%)</title><rect x="94.2542%" y="501" width="0.0223%" height="15" fill="rgb(225,151,20)" fg:x="490481" fg:w="116"/><text x="94.5042%" y="511.50"></text></g><g><title>pollwake (110 samples, 0.02%)</title><rect x="94.2554%" y="485" width="0.0211%" height="15" fill="rgb(238,3,37)" fg:x="490487" fg:w="110"/><text x="94.5054%" y="495.50"></text></g><g><title>try_to_wake_up (110 samples, 0.02%)</title><rect x="94.2554%" y="469" width="0.0211%" height="15" fill="rgb(251,147,42)" fg:x="490487" fg:w="110"/><text x="94.5054%" y="479.50"></text></g><g><title>irq_work_run (168 samples, 0.03%)</title><rect x="94.2459%" y="597" width="0.0323%" height="15" fill="rgb(208,173,10)" fg:x="490438" fg:w="168"/><text x="94.4959%" y="607.50"></text></g><g><title>irq_work_run_list (167 samples, 0.03%)</title><rect x="94.2461%" y="581" width="0.0321%" height="15" fill="rgb(246,225,4)" fg:x="490439" fg:w="167"/><text x="94.4961%" y="591.50"></text></g><g><title>irq_work_single (161 samples, 0.03%)</title><rect x="94.2473%" y="565" width="0.0309%" height="15" fill="rgb(248,102,6)" fg:x="490445" fg:w="161"/><text x="94.4973%" y="575.50"></text></g><g><title>perf_pending_event (155 samples, 0.03%)</title><rect x="94.2484%" y="549" width="0.0298%" height="15" fill="rgb(232,6,21)" fg:x="490451" fg:w="155"/><text x="94.4984%" y="559.50"></text></g><g><title>perf_event_wakeup (135 samples, 0.03%)</title><rect x="94.2523%" y="533" width="0.0259%" height="15" fill="rgb(221,179,22)" fg:x="490471" fg:w="135"/><text x="94.5023%" y="543.50"></text></g><g><title>__wake_up_common_lock (132 samples, 0.03%)</title><rect x="94.2529%" y="517" width="0.0254%" height="15" fill="rgb(252,50,20)" fg:x="490474" fg:w="132"/><text x="94.5029%" y="527.50"></text></g><g><title>asm_call_sysvec_on_stack (201 samples, 0.04%)</title><rect x="94.2421%" y="629" width="0.0386%" height="15" fill="rgb(222,56,38)" fg:x="490418" fg:w="201"/><text x="94.4921%" y="639.50"></text></g><g><title>__sysvec_irq_work (182 samples, 0.03%)</title><rect x="94.2458%" y="613" width="0.0350%" height="15" fill="rgb(206,193,29)" fg:x="490437" fg:w="182"/><text x="94.4958%" y="623.50"></text></g><g><title>asm_sysvec_irq_work (333 samples, 0.06%)</title><rect x="94.2202%" y="661" width="0.0640%" height="15" fill="rgb(239,192,45)" fg:x="490304" fg:w="333"/><text x="94.4702%" y="671.50"></text></g><g><title>sysvec_irq_work (222 samples, 0.04%)</title><rect x="94.2415%" y="645" width="0.0427%" height="15" fill="rgb(254,18,36)" fg:x="490415" fg:w="222"/><text x="94.4915%" y="655.50"></text></g><g><title>finish_task_switch (14,539 samples, 2.79%)</title><rect x="91.5007%" y="677" width="2.7939%" height="15" fill="rgb(221,127,11)" fg:x="476152" fg:w="14539"/><text x="91.7507%" y="687.50">fi..</text></g><g><title>newidle_balance (99 samples, 0.02%)</title><rect x="94.2961%" y="661" width="0.0190%" height="15" fill="rgb(234,146,35)" fg:x="490699" fg:w="99"/><text x="94.5461%" y="671.50"></text></g><g><title>pick_next_task_fair (117 samples, 0.02%)</title><rect x="94.2949%" y="677" width="0.0225%" height="15" fill="rgb(254,201,37)" fg:x="490693" fg:w="117"/><text x="94.5449%" y="687.50"></text></g><g><title>psi_task_change (283 samples, 0.05%)</title><rect x="94.3274%" y="677" width="0.0544%" height="15" fill="rgb(211,202,23)" fg:x="490862" fg:w="283"/><text x="94.5774%" y="687.50"></text></g><g><title>psi_group_change (242 samples, 0.05%)</title><rect x="94.3353%" y="661" width="0.0465%" height="15" fill="rgb(237,91,2)" fg:x="490903" fg:w="242"/><text x="94.5853%" y="671.50"></text></g><g><title>record_times (62 samples, 0.01%)</title><rect x="94.3699%" y="645" width="0.0119%" height="15" fill="rgb(226,228,36)" fg:x="491083" fg:w="62"/><text x="94.6199%" y="655.50"></text></g><g><title>futex_wait_queue_me (15,861 samples, 3.05%)</title><rect x="91.3521%" y="725" width="3.0480%" height="15" fill="rgb(213,63,50)" fg:x="475379" fg:w="15861"/><text x="91.6021%" y="735.50">fut..</text></g><g><title>schedule (15,765 samples, 3.03%)</title><rect x="91.3706%" y="709" width="3.0295%" height="15" fill="rgb(235,194,19)" fg:x="475475" fg:w="15765"/><text x="91.6206%" y="719.50">sch..</text></g><g><title>__schedule (15,732 samples, 3.02%)</title><rect x="91.3769%" y="693" width="3.0232%" height="15" fill="rgb(207,204,18)" fg:x="475508" fg:w="15732"/><text x="91.6269%" y="703.50">__s..</text></g><g><title>futex_wait (16,102 samples, 3.09%)</title><rect x="91.3346%" y="741" width="3.0943%" height="15" fill="rgb(248,8,7)" fg:x="475288" fg:w="16102"/><text x="91.5846%" y="751.50">fut..</text></g><g><title>futex_wait_setup (150 samples, 0.03%)</title><rect x="94.4001%" y="725" width="0.0288%" height="15" fill="rgb(223,145,47)" fg:x="491240" fg:w="150"/><text x="94.6501%" y="735.50"></text></g><g><title>select_task_rq_fair (53 samples, 0.01%)</title><rect x="94.4543%" y="693" width="0.0102%" height="15" fill="rgb(228,84,11)" fg:x="491522" fg:w="53"/><text x="94.7043%" y="703.50"></text></g><g><title>enqueue_task_fair (58 samples, 0.01%)</title><rect x="94.4660%" y="677" width="0.0111%" height="15" fill="rgb(218,76,45)" fg:x="491583" fg:w="58"/><text x="94.7160%" y="687.50"></text></g><g><title>ttwu_do_activate (120 samples, 0.02%)</title><rect x="94.4648%" y="693" width="0.0231%" height="15" fill="rgb(223,80,15)" fg:x="491577" fg:w="120"/><text x="94.7148%" y="703.50"></text></g><g><title>psi_task_change (56 samples, 0.01%)</title><rect x="94.4771%" y="677" width="0.0108%" height="15" fill="rgb(219,218,33)" fg:x="491641" fg:w="56"/><text x="94.7271%" y="687.50"></text></g><g><title>__x64_sys_futex (16,500 samples, 3.17%)</title><rect x="91.3217%" y="773" width="3.1708%" height="15" fill="rgb(208,51,11)" fg:x="475221" fg:w="16500"/><text x="91.5717%" y="783.50">__x..</text></g><g><title>do_futex (16,473 samples, 3.17%)</title><rect x="91.3269%" y="757" width="3.1656%" height="15" fill="rgb(229,165,39)" fg:x="475248" fg:w="16473"/><text x="91.5769%" y="767.50">do_..</text></g><g><title>futex_wake (331 samples, 0.06%)</title><rect x="94.4289%" y="741" width="0.0636%" height="15" fill="rgb(241,100,24)" fg:x="491390" fg:w="331"/><text x="94.6789%" y="751.50"></text></g><g><title>wake_up_q (257 samples, 0.05%)</title><rect x="94.4431%" y="725" width="0.0494%" height="15" fill="rgb(228,14,23)" fg:x="491464" fg:w="257"/><text x="94.6931%" y="735.50"></text></g><g><title>try_to_wake_up (252 samples, 0.05%)</title><rect x="94.4441%" y="709" width="0.0484%" height="15" fill="rgb(247,116,52)" fg:x="491469" fg:w="252"/><text x="94.6941%" y="719.50"></text></g><g><title>__split_vma (63 samples, 0.01%)</title><rect x="94.5023%" y="725" width="0.0121%" height="15" fill="rgb(216,149,33)" fg:x="491772" fg:w="63"/><text x="94.7523%" y="735.50"></text></g><g><title>tlb_finish_mmu (181 samples, 0.03%)</title><rect x="94.5282%" y="709" width="0.0348%" height="15" fill="rgb(238,142,29)" fg:x="491907" fg:w="181"/><text x="94.7782%" y="719.50"></text></g><g><title>release_pages (136 samples, 0.03%)</title><rect x="94.5369%" y="693" width="0.0261%" height="15" fill="rgb(224,83,40)" fg:x="491952" fg:w="136"/><text x="94.7869%" y="703.50"></text></g><g><title>unmap_region (332 samples, 0.06%)</title><rect x="94.5200%" y="725" width="0.0638%" height="15" fill="rgb(234,165,11)" fg:x="491864" fg:w="332"/><text x="94.7700%" y="735.50"></text></g><g><title>unmap_vmas (107 samples, 0.02%)</title><rect x="94.5632%" y="709" width="0.0206%" height="15" fill="rgb(215,96,23)" fg:x="492089" fg:w="107"/><text x="94.8132%" y="719.50"></text></g><g><title>unmap_page_range (105 samples, 0.02%)</title><rect x="94.5636%" y="693" width="0.0202%" height="15" fill="rgb(233,179,26)" fg:x="492091" fg:w="105"/><text x="94.8136%" y="703.50"></text></g><g><title>__do_munmap (436 samples, 0.08%)</title><rect x="94.5004%" y="741" width="0.0838%" height="15" fill="rgb(225,129,33)" fg:x="491762" fg:w="436"/><text x="94.7504%" y="751.50"></text></g><g><title>__vm_munmap (441 samples, 0.08%)</title><rect x="94.5000%" y="757" width="0.0847%" height="15" fill="rgb(237,49,13)" fg:x="491760" fg:w="441"/><text x="94.7500%" y="767.50"></text></g><g><title>__x64_sys_munmap (443 samples, 0.09%)</title><rect x="94.5000%" y="773" width="0.0851%" height="15" fill="rgb(211,3,31)" fg:x="491760" fg:w="443"/><text x="94.7500%" y="783.50"></text></g><g><title>do_filp_open (72 samples, 0.01%)</title><rect x="94.5867%" y="741" width="0.0138%" height="15" fill="rgb(216,152,19)" fg:x="492211" fg:w="72"/><text x="94.8367%" y="751.50"></text></g><g><title>path_openat (72 samples, 0.01%)</title><rect x="94.5867%" y="725" width="0.0138%" height="15" fill="rgb(251,121,35)" fg:x="492211" fg:w="72"/><text x="94.8367%" y="735.50"></text></g><g><title>__x64_sys_open (81 samples, 0.02%)</title><rect x="94.5861%" y="773" width="0.0156%" height="15" fill="rgb(210,217,47)" fg:x="492208" fg:w="81"/><text x="94.8361%" y="783.50"></text></g><g><title>do_sys_openat2 (81 samples, 0.02%)</title><rect x="94.5861%" y="757" width="0.0156%" height="15" fill="rgb(244,116,22)" fg:x="492208" fg:w="81"/><text x="94.8361%" y="767.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="94.6272%" y="725" width="0.0110%" height="15" fill="rgb(228,17,21)" fg:x="492422" fg:w="57"/><text x="94.8772%" y="735.50"></text></g><g><title>__alloc_fd (159 samples, 0.03%)</title><rect x="94.6118%" y="741" width="0.0306%" height="15" fill="rgb(240,149,34)" fg:x="492342" fg:w="159"/><text x="94.8618%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (61 samples, 0.01%)</title><rect x="94.7531%" y="613" width="0.0117%" height="15" fill="rgb(208,125,47)" fg:x="493077" fg:w="61"/><text x="95.0031%" y="623.50"></text></g><g><title>get_page_from_freelist (58 samples, 0.01%)</title><rect x="94.7537%" y="597" width="0.0111%" height="15" fill="rgb(249,186,39)" fg:x="493080" fg:w="58"/><text x="95.0037%" y="607.50"></text></g><g><title>allocate_slab (83 samples, 0.02%)</title><rect x="94.7512%" y="629" width="0.0159%" height="15" fill="rgb(240,220,33)" fg:x="493067" fg:w="83"/><text x="95.0012%" y="639.50"></text></g><g><title>___slab_alloc (178 samples, 0.03%)</title><rect x="94.7396%" y="645" width="0.0342%" height="15" fill="rgb(243,110,23)" fg:x="493007" fg:w="178"/><text x="94.9896%" y="655.50"></text></g><g><title>__slab_alloc (183 samples, 0.04%)</title><rect x="94.7389%" y="661" width="0.0352%" height="15" fill="rgb(219,163,46)" fg:x="493003" fg:w="183"/><text x="94.9889%" y="671.50"></text></g><g><title>__mod_memcg_lruvec_state (75 samples, 0.01%)</title><rect x="94.8276%" y="645" width="0.0144%" height="15" fill="rgb(216,126,30)" fg:x="493465" fg:w="75"/><text x="95.0776%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (385 samples, 0.07%)</title><rect x="94.7744%" y="661" width="0.0740%" height="15" fill="rgb(208,139,11)" fg:x="493188" fg:w="385"/><text x="95.0244%" y="671.50"></text></g><g><title>memset_erms (69 samples, 0.01%)</title><rect x="94.8495%" y="661" width="0.0133%" height="15" fill="rgb(213,118,36)" fg:x="493579" fg:w="69"/><text x="95.0995%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (179 samples, 0.03%)</title><rect x="94.8713%" y="645" width="0.0344%" height="15" fill="rgb(226,43,17)" fg:x="493692" fg:w="179"/><text x="95.1213%" y="655.50"></text></g><g><title>obj_cgroup_charge (117 samples, 0.02%)</title><rect x="94.9057%" y="645" width="0.0225%" height="15" fill="rgb(254,217,4)" fg:x="493871" fg:w="117"/><text x="95.1557%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,120 samples, 0.22%)</title><rect x="94.7131%" y="677" width="0.2152%" height="15" fill="rgb(210,134,47)" fg:x="492869" fg:w="1120"/><text x="94.9631%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (338 samples, 0.06%)</title><rect x="94.8634%" y="661" width="0.0650%" height="15" fill="rgb(237,24,49)" fg:x="493651" fg:w="338"/><text x="95.1134%" y="671.50"></text></g><g><title>apparmor_file_alloc_security (118 samples, 0.02%)</title><rect x="94.9339%" y="661" width="0.0227%" height="15" fill="rgb(251,39,46)" fg:x="494018" fg:w="118"/><text x="95.1839%" y="671.50"></text></g><g><title>memset_erms (59 samples, 0.01%)</title><rect x="94.9716%" y="645" width="0.0113%" height="15" fill="rgb(251,220,3)" fg:x="494214" fg:w="59"/><text x="95.2216%" y="655.50"></text></g><g><title>__alloc_file (1,545 samples, 0.30%)</title><rect x="94.6918%" y="693" width="0.2969%" height="15" fill="rgb(228,105,12)" fg:x="492758" fg:w="1545"/><text x="94.9418%" y="703.50"></text></g><g><title>security_file_alloc (314 samples, 0.06%)</title><rect x="94.9283%" y="677" width="0.0603%" height="15" fill="rgb(215,196,1)" fg:x="493989" fg:w="314"/><text x="95.1783%" y="687.50"></text></g><g><title>kmem_cache_alloc (167 samples, 0.03%)</title><rect x="94.9566%" y="661" width="0.0321%" height="15" fill="rgb(214,33,39)" fg:x="494136" fg:w="167"/><text x="95.2066%" y="671.50"></text></g><g><title>alloc_empty_file (1,584 samples, 0.30%)</title><rect x="94.6866%" y="709" width="0.3044%" height="15" fill="rgb(220,19,52)" fg:x="492731" fg:w="1584"/><text x="94.9366%" y="719.50"></text></g><g><title>__legitimize_mnt (57 samples, 0.01%)</title><rect x="95.0002%" y="661" width="0.0110%" height="15" fill="rgb(221,78,38)" fg:x="494363" fg:w="57"/><text x="95.2502%" y="671.50"></text></g><g><title>__legitimize_path (139 samples, 0.03%)</title><rect x="94.9983%" y="677" width="0.0267%" height="15" fill="rgb(253,30,16)" fg:x="494353" fg:w="139"/><text x="95.2483%" y="687.50"></text></g><g><title>lockref_get_not_dead (72 samples, 0.01%)</title><rect x="95.0112%" y="661" width="0.0138%" height="15" fill="rgb(242,65,0)" fg:x="494420" fg:w="72"/><text x="95.2612%" y="671.50"></text></g><g><title>complete_walk (195 samples, 0.04%)</title><rect x="94.9910%" y="709" width="0.0375%" height="15" fill="rgb(235,201,12)" fg:x="494315" fg:w="195"/><text x="95.2410%" y="719.50"></text></g><g><title>try_to_unlazy (179 samples, 0.03%)</title><rect x="94.9941%" y="693" width="0.0344%" height="15" fill="rgb(233,161,9)" fg:x="494331" fg:w="179"/><text x="95.2441%" y="703.50"></text></g><g><title>errseq_sample (61 samples, 0.01%)</title><rect x="95.0690%" y="693" width="0.0117%" height="15" fill="rgb(241,207,41)" fg:x="494721" fg:w="61"/><text x="95.3190%" y="703.50"></text></g><g><title>lockref_get (67 samples, 0.01%)</title><rect x="95.0836%" y="693" width="0.0129%" height="15" fill="rgb(212,69,46)" fg:x="494797" fg:w="67"/><text x="95.3336%" y="703.50"></text></g><g><title>apparmor_file_open (110 samples, 0.02%)</title><rect x="95.1034%" y="677" width="0.0211%" height="15" fill="rgb(239,69,45)" fg:x="494900" fg:w="110"/><text x="95.3534%" y="687.50"></text></g><g><title>__srcu_read_lock (64 samples, 0.01%)</title><rect x="95.1438%" y="661" width="0.0123%" height="15" fill="rgb(242,117,48)" fg:x="495110" fg:w="64"/><text x="95.3938%" y="671.50"></text></g><g><title>__srcu_read_unlock (68 samples, 0.01%)</title><rect x="95.1560%" y="661" width="0.0131%" height="15" fill="rgb(228,41,36)" fg:x="495174" fg:w="68"/><text x="95.4060%" y="671.50"></text></g><g><title>tomoyo_check_open_permission (297 samples, 0.06%)</title><rect x="95.1245%" y="677" width="0.0571%" height="15" fill="rgb(212,3,32)" fg:x="495010" fg:w="297"/><text x="95.3745%" y="687.50"></text></g><g><title>tomoyo_init_request_info (53 samples, 0.01%)</title><rect x="95.1714%" y="661" width="0.0102%" height="15" fill="rgb(233,41,49)" fg:x="495254" fg:w="53"/><text x="95.4214%" y="671.50"></text></g><g><title>security_file_open (442 samples, 0.08%)</title><rect x="95.0986%" y="693" width="0.0849%" height="15" fill="rgb(252,170,49)" fg:x="494875" fg:w="442"/><text x="95.3486%" y="703.50"></text></g><g><title>do_dentry_open (808 samples, 0.16%)</title><rect x="95.0285%" y="709" width="0.1553%" height="15" fill="rgb(229,53,26)" fg:x="494510" fg:w="808"/><text x="95.2785%" y="719.50"></text></g><g><title>inode_permission.part.0 (249 samples, 0.05%)</title><rect x="95.2418%" y="693" width="0.0478%" height="15" fill="rgb(217,157,12)" fg:x="495620" fg:w="249"/><text x="95.4918%" y="703.50"></text></g><g><title>generic_permission (92 samples, 0.02%)</title><rect x="95.2719%" y="677" width="0.0177%" height="15" fill="rgb(227,17,9)" fg:x="495777" fg:w="92"/><text x="95.5219%" y="687.50"></text></g><g><title>lookup_fast (326 samples, 0.06%)</title><rect x="95.3094%" y="677" width="0.0626%" height="15" fill="rgb(218,84,12)" fg:x="495972" fg:w="326"/><text x="95.5594%" y="687.50"></text></g><g><title>__d_lookup_rcu (250 samples, 0.05%)</title><rect x="95.3240%" y="661" width="0.0480%" height="15" fill="rgb(212,79,24)" fg:x="496048" fg:w="250"/><text x="95.5740%" y="671.50"></text></g><g><title>link_path_walk.part.0 (1,035 samples, 0.20%)</title><rect x="95.1874%" y="709" width="0.1989%" height="15" fill="rgb(217,222,37)" fg:x="495337" fg:w="1035"/><text x="95.4374%" y="719.50"></text></g><g><title>walk_component (471 samples, 0.09%)</title><rect x="95.2958%" y="693" width="0.0905%" height="15" fill="rgb(246,208,8)" fg:x="495901" fg:w="471"/><text x="95.5458%" y="703.50"></text></g><g><title>step_into (74 samples, 0.01%)</title><rect x="95.3720%" y="677" width="0.0142%" height="15" fill="rgb(244,133,10)" fg:x="496298" fg:w="74"/><text x="95.6220%" y="687.50"></text></g><g><title>lookup_fast (531 samples, 0.10%)</title><rect x="95.3863%" y="709" width="0.1020%" height="15" fill="rgb(209,219,41)" fg:x="496372" fg:w="531"/><text x="95.6363%" y="719.50"></text></g><g><title>__d_lookup_rcu (499 samples, 0.10%)</title><rect x="95.3924%" y="693" width="0.0959%" height="15" fill="rgb(253,175,45)" fg:x="496404" fg:w="499"/><text x="95.6424%" y="703.50"></text></g><g><title>inode_permission.part.0 (145 samples, 0.03%)</title><rect x="95.5112%" y="693" width="0.0279%" height="15" fill="rgb(235,100,37)" fg:x="497022" fg:w="145"/><text x="95.7612%" y="703.50"></text></g><g><title>may_open (270 samples, 0.05%)</title><rect x="95.4883%" y="709" width="0.0519%" height="15" fill="rgb(225,87,19)" fg:x="496903" fg:w="270"/><text x="95.7383%" y="719.50"></text></g><g><title>__fget_light (125 samples, 0.02%)</title><rect x="95.5510%" y="693" width="0.0240%" height="15" fill="rgb(217,152,17)" fg:x="497229" fg:w="125"/><text x="95.8010%" y="703.50"></text></g><g><title>__fget_files (121 samples, 0.02%)</title><rect x="95.5517%" y="677" width="0.0233%" height="15" fill="rgb(235,72,13)" fg:x="497233" fg:w="121"/><text x="95.8017%" y="687.50"></text></g><g><title>path_init (252 samples, 0.05%)</title><rect x="95.5402%" y="709" width="0.0484%" height="15" fill="rgb(233,140,18)" fg:x="497173" fg:w="252"/><text x="95.7902%" y="719.50"></text></g><g><title>fput_many (67 samples, 0.01%)</title><rect x="95.5757%" y="693" width="0.0129%" height="15" fill="rgb(207,212,28)" fg:x="497358" fg:w="67"/><text x="95.8257%" y="703.50"></text></g><g><title>dput (97 samples, 0.02%)</title><rect x="95.5955%" y="693" width="0.0186%" height="15" fill="rgb(220,130,25)" fg:x="497461" fg:w="97"/><text x="95.8455%" y="703.50"></text></g><g><title>lockref_put_or_lock (64 samples, 0.01%)</title><rect x="95.6019%" y="677" width="0.0123%" height="15" fill="rgb(205,55,34)" fg:x="497494" fg:w="64"/><text x="95.8519%" y="687.50"></text></g><g><title>terminate_walk (139 samples, 0.03%)</title><rect x="95.5938%" y="709" width="0.0267%" height="15" fill="rgb(237,54,35)" fg:x="497452" fg:w="139"/><text x="95.8438%" y="719.50"></text></g><g><title>do_filp_open (5,023 samples, 0.97%)</title><rect x="94.6576%" y="741" width="0.9653%" height="15" fill="rgb(208,67,23)" fg:x="492580" fg:w="5023"/><text x="94.9076%" y="751.50"></text></g><g><title>path_openat (4,972 samples, 0.96%)</title><rect x="94.6674%" y="725" width="0.9555%" height="15" fill="rgb(206,207,50)" fg:x="492631" fg:w="4972"/><text x="94.9174%" y="735.50"></text></g><g><title>memset_erms (494 samples, 0.09%)</title><rect x="95.6645%" y="709" width="0.0949%" height="15" fill="rgb(213,211,42)" fg:x="497820" fg:w="494"/><text x="95.9145%" y="719.50"></text></g><g><title>kmem_cache_alloc (686 samples, 0.13%)</title><rect x="95.6405%" y="725" width="0.1318%" height="15" fill="rgb(252,197,50)" fg:x="497695" fg:w="686"/><text x="95.8905%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (67 samples, 0.01%)</title><rect x="95.7595%" y="709" width="0.0129%" height="15" fill="rgb(251,211,41)" fg:x="498314" fg:w="67"/><text x="96.0095%" y="719.50"></text></g><g><title>__check_heap_object (77 samples, 0.01%)</title><rect x="95.8190%" y="693" width="0.0148%" height="15" fill="rgb(229,211,5)" fg:x="498624" fg:w="77"/><text x="96.0690%" y="703.50"></text></g><g><title>__virt_addr_valid (106 samples, 0.02%)</title><rect x="95.8338%" y="693" width="0.0204%" height="15" fill="rgb(239,36,31)" fg:x="498701" fg:w="106"/><text x="96.0838%" y="703.50"></text></g><g><title>__check_object_size (231 samples, 0.04%)</title><rect x="95.8110%" y="709" width="0.0444%" height="15" fill="rgb(248,67,31)" fg:x="498582" fg:w="231"/><text x="96.0610%" y="719.50"></text></g><g><title>getname_flags.part.0 (1,155 samples, 0.22%)</title><rect x="95.6345%" y="741" width="0.2220%" height="15" fill="rgb(249,55,44)" fg:x="497664" fg:w="1155"/><text x="95.8845%" y="751.50"></text></g><g><title>strncpy_from_user (438 samples, 0.08%)</title><rect x="95.7723%" y="725" width="0.0842%" height="15" fill="rgb(216,82,12)" fg:x="498381" fg:w="438"/><text x="96.0223%" y="735.50"></text></g><g><title>kmem_cache_free (129 samples, 0.02%)</title><rect x="95.8565%" y="741" width="0.0248%" height="15" fill="rgb(242,174,1)" fg:x="498819" fg:w="129"/><text x="96.1065%" y="751.50"></text></g><g><title>__x64_sys_openat (6,668 samples, 1.28%)</title><rect x="94.6016%" y="773" width="1.2814%" height="15" fill="rgb(208,120,29)" fg:x="492289" fg:w="6668"/><text x="94.8516%" y="783.50"></text></g><g><title>do_sys_openat2 (6,653 samples, 1.28%)</title><rect x="94.6045%" y="757" width="1.2785%" height="15" fill="rgb(221,105,43)" fg:x="492304" fg:w="6653"/><text x="94.8545%" y="767.50"></text></g><g><title>__fget_light (607 samples, 0.12%)</title><rect x="96.0006%" y="741" width="0.1166%" height="15" fill="rgb(234,124,22)" fg:x="499569" fg:w="607"/><text x="96.2506%" y="751.50"></text></g><g><title>__fget_files (546 samples, 0.10%)</title><rect x="96.0123%" y="725" width="0.1049%" height="15" fill="rgb(212,23,30)" fg:x="499630" fg:w="546"/><text x="96.2623%" y="735.50"></text></g><g><title>_cond_resched (78 samples, 0.01%)</title><rect x="96.1836%" y="725" width="0.0150%" height="15" fill="rgb(219,122,53)" fg:x="500521" fg:w="78"/><text x="96.4336%" y="735.50"></text></g><g><title>__fdget_pos (1,252 samples, 0.24%)</title><rect x="95.9585%" y="757" width="0.2406%" height="15" fill="rgb(248,84,24)" fg:x="499350" fg:w="1252"/><text x="96.2085%" y="767.50"></text></g><g><title>mutex_lock (425 samples, 0.08%)</title><rect x="96.1175%" y="741" width="0.0817%" height="15" fill="rgb(245,115,18)" fg:x="500177" fg:w="425"/><text x="96.3675%" y="751.50"></text></g><g><title>fput_many (314 samples, 0.06%)</title><rect x="96.2026%" y="757" width="0.0603%" height="15" fill="rgb(227,176,51)" fg:x="500620" fg:w="314"/><text x="96.4526%" y="767.50"></text></g><g><title>mutex_unlock (350 samples, 0.07%)</title><rect x="96.2629%" y="757" width="0.0673%" height="15" fill="rgb(229,63,42)" fg:x="500934" fg:w="350"/><text x="96.5129%" y="767.50"></text></g><g><title>__fsnotify_parent (411 samples, 0.08%)</title><rect x="96.4288%" y="741" width="0.0790%" height="15" fill="rgb(247,202,24)" fg:x="501797" fg:w="411"/><text x="96.6788%" y="751.50"></text></g><g><title>btrfs_file_read_iter (73 samples, 0.01%)</title><rect x="96.5737%" y="725" width="0.0140%" height="15" fill="rgb(244,173,20)" fg:x="502551" fg:w="73"/><text x="96.8237%" y="735.50"></text></g><g><title>_cond_resched (82 samples, 0.02%)</title><rect x="96.8008%" y="709" width="0.0158%" height="15" fill="rgb(242,81,47)" fg:x="503733" fg:w="82"/><text x="97.0508%" y="719.50"></text></g><g><title>_cond_resched (59 samples, 0.01%)</title><rect x="96.9050%" y="693" width="0.0113%" height="15" fill="rgb(231,185,54)" fg:x="504275" fg:w="59"/><text x="97.1550%" y="703.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="97.5022%" y="661" width="0.0106%" height="15" fill="rgb(243,55,32)" fg:x="507383" fg:w="55"/><text x="97.7522%" y="671.50"></text></g><g><title>do_user_addr_fault (53 samples, 0.01%)</title><rect x="97.5026%" y="645" width="0.0102%" height="15" fill="rgb(208,167,19)" fg:x="507385" fg:w="53"/><text x="97.7526%" y="655.50"></text></g><g><title>asm_exc_page_fault (162 samples, 0.03%)</title><rect x="97.4818%" y="677" width="0.0311%" height="15" fill="rgb(231,72,35)" fg:x="507277" fg:w="162"/><text x="97.7318%" y="687.50"></text></g><g><title>copy_user_enhanced_fast_string (3,114 samples, 0.60%)</title><rect x="96.9178%" y="693" width="0.5984%" height="15" fill="rgb(250,173,51)" fg:x="504342" fg:w="3114"/><text x="97.1678%" y="703.50"></text></g><g><title>copy_page_to_iter (3,662 samples, 0.70%)</title><rect x="96.8177%" y="709" width="0.7037%" height="15" fill="rgb(209,5,22)" fg:x="503821" fg:w="3662"/><text x="97.0677%" y="719.50"></text></g><g><title>mark_page_accessed (64 samples, 0.01%)</title><rect x="97.5214%" y="709" width="0.0123%" height="15" fill="rgb(250,174,19)" fg:x="507483" fg:w="64"/><text x="97.7714%" y="719.50"></text></g><g><title>pagecache_get_page (1,425 samples, 0.27%)</title><rect x="97.5337%" y="709" width="0.2738%" height="15" fill="rgb(217,3,49)" fg:x="507547" fg:w="1425"/><text x="97.7837%" y="719.50"></text></g><g><title>find_get_entry (1,199 samples, 0.23%)</title><rect x="97.5772%" y="693" width="0.2304%" height="15" fill="rgb(218,225,5)" fg:x="507773" fg:w="1199"/><text x="97.8272%" y="703.50"></text></g><g><title>xas_load (357 samples, 0.07%)</title><rect x="97.7390%" y="677" width="0.0686%" height="15" fill="rgb(236,89,11)" fg:x="508615" fg:w="357"/><text x="97.9890%" y="687.50"></text></g><g><title>xas_start (221 samples, 0.04%)</title><rect x="97.7651%" y="661" width="0.0425%" height="15" fill="rgb(206,33,28)" fg:x="508751" fg:w="221"/><text x="98.0151%" y="671.50"></text></g><g><title>atime_needs_update (440 samples, 0.08%)</title><rect x="97.8279%" y="693" width="0.0846%" height="15" fill="rgb(241,56,42)" fg:x="509078" fg:w="440"/><text x="98.0779%" y="703.50"></text></g><g><title>current_time (242 samples, 0.05%)</title><rect x="97.8660%" y="677" width="0.0465%" height="15" fill="rgb(222,44,11)" fg:x="509276" fg:w="242"/><text x="98.1160%" y="687.50"></text></g><g><title>ktime_get_coarse_real_ts64 (80 samples, 0.02%)</title><rect x="97.8971%" y="661" width="0.0154%" height="15" fill="rgb(234,111,20)" fg:x="509438" fg:w="80"/><text x="98.1471%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (102 samples, 0.02%)</title><rect x="97.9175%" y="661" width="0.0196%" height="15" fill="rgb(237,77,6)" fg:x="509544" fg:w="102"/><text x="98.1675%" y="671.50"></text></g><g><title>btrfs_update_inode (112 samples, 0.02%)</title><rect x="97.9169%" y="677" width="0.0215%" height="15" fill="rgb(235,111,23)" fg:x="509541" fg:w="112"/><text x="98.1669%" y="687.50"></text></g><g><title>btrfs_dirty_inode (163 samples, 0.03%)</title><rect x="97.9125%" y="693" width="0.0313%" height="15" fill="rgb(251,135,29)" fg:x="509518" fg:w="163"/><text x="98.1625%" y="703.50"></text></g><g><title>generic_file_buffered_read (7,062 samples, 1.36%)</title><rect x="96.5877%" y="725" width="1.3571%" height="15" fill="rgb(217,57,1)" fg:x="502624" fg:w="7062"/><text x="96.8377%" y="735.50"></text></g><g><title>touch_atime (714 samples, 0.14%)</title><rect x="97.8076%" y="709" width="0.1372%" height="15" fill="rgb(249,119,31)" fg:x="508972" fg:w="714"/><text x="98.0576%" y="719.50"></text></g><g><title>new_sync_read (7,514 samples, 1.44%)</title><rect x="96.5081%" y="741" width="1.4439%" height="15" fill="rgb(233,164,33)" fg:x="502210" fg:w="7514"/><text x="96.7581%" y="751.50"></text></g><g><title>rw_verify_area (101 samples, 0.02%)</title><rect x="97.9521%" y="741" width="0.0194%" height="15" fill="rgb(250,217,43)" fg:x="509724" fg:w="101"/><text x="98.2021%" y="751.50"></text></g><g><title>aa_file_perm (135 samples, 0.03%)</title><rect x="98.0257%" y="709" width="0.0259%" height="15" fill="rgb(232,154,50)" fg:x="510107" fg:w="135"/><text x="98.2757%" y="719.50"></text></g><g><title>security_file_permission (420 samples, 0.08%)</title><rect x="97.9715%" y="741" width="0.0807%" height="15" fill="rgb(227,190,8)" fg:x="509825" fg:w="420"/><text x="98.2215%" y="751.50"></text></g><g><title>apparmor_file_permission (257 samples, 0.05%)</title><rect x="98.0028%" y="725" width="0.0494%" height="15" fill="rgb(209,217,32)" fg:x="509988" fg:w="257"/><text x="98.2528%" y="735.50"></text></g><g><title>ksys_read (11,102 samples, 2.13%)</title><rect x="95.9190%" y="773" width="2.1334%" height="15" fill="rgb(243,203,50)" fg:x="499144" fg:w="11102"/><text x="96.1690%" y="783.50">k..</text></g><g><title>vfs_read (8,962 samples, 1.72%)</title><rect x="96.3302%" y="757" width="1.7222%" height="15" fill="rgb(232,152,27)" fg:x="501284" fg:w="8962"/><text x="96.5802%" y="767.50"></text></g><g><title>syscall_enter_from_user_mode (123 samples, 0.02%)</title><rect x="98.0532%" y="773" width="0.0236%" height="15" fill="rgb(240,34,29)" fg:x="510250" fg:w="123"/><text x="98.3032%" y="783.50"></text></g><g><title>perf_iterate_sb (98 samples, 0.02%)</title><rect x="98.0904%" y="709" width="0.0188%" height="15" fill="rgb(215,185,52)" fg:x="510444" fg:w="98"/><text x="98.3404%" y="719.50"></text></g><g><title>perf_iterate_ctx (87 samples, 0.02%)</title><rect x="98.0926%" y="693" width="0.0167%" height="15" fill="rgb(240,89,49)" fg:x="510455" fg:w="87"/><text x="98.3426%" y="703.50"></text></g><g><title>perf_event_mmap_output (63 samples, 0.01%)</title><rect x="98.0972%" y="677" width="0.0121%" height="15" fill="rgb(225,12,52)" fg:x="510479" fg:w="63"/><text x="98.3472%" y="687.50"></text></g><g><title>perf_event_mmap (115 samples, 0.02%)</title><rect x="98.0877%" y="725" width="0.0221%" height="15" fill="rgb(239,128,45)" fg:x="510430" fg:w="115"/><text x="98.3377%" y="735.50"></text></g><g><title>do_mmap (214 samples, 0.04%)</title><rect x="98.0778%" y="757" width="0.0411%" height="15" fill="rgb(211,78,47)" fg:x="510378" fg:w="214"/><text x="98.3278%" y="767.50"></text></g><g><title>mmap_region (177 samples, 0.03%)</title><rect x="98.0849%" y="741" width="0.0340%" height="15" fill="rgb(232,31,21)" fg:x="510415" fg:w="177"/><text x="98.3349%" y="751.50"></text></g><g><title>do_syscall_64 (37,479 samples, 7.20%)</title><rect x="90.9224%" y="789" width="7.2022%" height="15" fill="rgb(222,168,14)" fg:x="473143" fg:w="37479"/><text x="91.1724%" y="799.50">do_syscall..</text></g><g><title>vm_mmap_pgoff (249 samples, 0.05%)</title><rect x="98.0768%" y="773" width="0.0478%" height="15" fill="rgb(209,128,24)" fg:x="510373" fg:w="249"/><text x="98.3268%" y="783.50"></text></g><g><title>do_group_exit (107 samples, 0.02%)</title><rect x="98.1971%" y="725" width="0.0206%" height="15" fill="rgb(249,35,13)" fg:x="510999" fg:w="107"/><text x="98.4471%" y="735.50"></text></g><g><title>do_exit (106 samples, 0.02%)</title><rect x="98.1973%" y="709" width="0.0204%" height="15" fill="rgb(218,7,2)" fg:x="511000" fg:w="106"/><text x="98.4473%" y="719.50"></text></g><g><title>arch_do_signal (156 samples, 0.03%)</title><rect x="98.1886%" y="757" width="0.0300%" height="15" fill="rgb(238,107,27)" fg:x="510955" fg:w="156"/><text x="98.4386%" y="767.50"></text></g><g><title>get_signal (154 samples, 0.03%)</title><rect x="98.1890%" y="741" width="0.0296%" height="15" fill="rgb(217,88,38)" fg:x="510957" fg:w="154"/><text x="98.4390%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (107 samples, 0.02%)</title><rect x="98.2226%" y="757" width="0.0206%" height="15" fill="rgb(230,207,0)" fg:x="511132" fg:w="107"/><text x="98.4726%" y="767.50"></text></g><g><title>switch_fpu_return (130 samples, 0.02%)</title><rect x="98.2503%" y="757" width="0.0250%" height="15" fill="rgb(249,64,54)" fg:x="511276" fg:w="130"/><text x="98.5003%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (93 samples, 0.02%)</title><rect x="98.2574%" y="741" width="0.0179%" height="15" fill="rgb(231,7,11)" fg:x="511313" fg:w="93"/><text x="98.5074%" y="751.50"></text></g><g><title>btrfs_release_file (105 samples, 0.02%)</title><rect x="98.3195%" y="725" width="0.0202%" height="15" fill="rgb(205,149,21)" fg:x="511636" fg:w="105"/><text x="98.5695%" y="735.50"></text></g><g><title>dput (89 samples, 0.02%)</title><rect x="98.3397%" y="725" width="0.0171%" height="15" fill="rgb(215,126,34)" fg:x="511741" fg:w="89"/><text x="98.5897%" y="735.50"></text></g><g><title>kmem_cache_free (142 samples, 0.03%)</title><rect x="98.3574%" y="725" width="0.0273%" height="15" fill="rgb(241,132,45)" fg:x="511833" fg:w="142"/><text x="98.6074%" y="735.50"></text></g><g><title>__fput (626 samples, 0.12%)</title><rect x="98.2897%" y="741" width="0.1203%" height="15" fill="rgb(252,69,32)" fg:x="511481" fg:w="626"/><text x="98.5397%" y="751.50"></text></g><g><title>security_file_free (75 samples, 0.01%)</title><rect x="98.3956%" y="725" width="0.0144%" height="15" fill="rgb(232,204,19)" fg:x="512032" fg:w="75"/><text x="98.6456%" y="735.50"></text></g><g><title>apparmor_file_free_security (57 samples, 0.01%)</title><rect x="98.3991%" y="709" width="0.0110%" height="15" fill="rgb(249,15,47)" fg:x="512050" fg:w="57"/><text x="98.6491%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39,536 samples, 7.60%)</title><rect x="90.8728%" y="805" width="7.5975%" height="15" fill="rgb(209,227,23)" fg:x="472885" fg:w="39536"/><text x="91.1228%" y="815.50">entry_SYSC..</text></g><g><title>syscall_exit_to_user_mode (1,799 samples, 0.35%)</title><rect x="98.1246%" y="789" width="0.3457%" height="15" fill="rgb(248,92,24)" fg:x="510622" fg:w="1799"/><text x="98.3746%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (1,678 samples, 0.32%)</title><rect x="98.1479%" y="773" width="0.3225%" height="15" fill="rgb(247,59,2)" fg:x="510743" fg:w="1678"/><text x="98.3979%" y="783.50"></text></g><g><title>task_work_run (1,015 samples, 0.20%)</title><rect x="98.2753%" y="757" width="0.1950%" height="15" fill="rgb(221,30,5)" fg:x="511406" fg:w="1015"/><text x="98.5253%" y="767.50"></text></g><g><title>call_rcu (254 samples, 0.05%)</title><rect x="98.4215%" y="741" width="0.0488%" height="15" fill="rgb(208,108,53)" fg:x="512167" fg:w="254"/><text x="98.6715%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (131 samples, 0.03%)</title><rect x="98.4452%" y="725" width="0.0252%" height="15" fill="rgb(211,183,26)" fg:x="512290" fg:w="131"/><text x="98.6952%" y="735.50"></text></g><g><title>error_entry (210 samples, 0.04%)</title><rect x="98.4704%" y="805" width="0.0404%" height="15" fill="rgb(232,132,4)" fg:x="512421" fg:w="210"/><text x="98.7204%" y="815.50"></text></g><g><title>sync_regs (184 samples, 0.04%)</title><rect x="98.4753%" y="789" width="0.0354%" height="15" fill="rgb(253,128,37)" fg:x="512447" fg:w="184"/><text x="98.7253%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (5,029 samples, 0.97%)</title><rect x="98.5849%" y="757" width="0.9664%" height="15" fill="rgb(221,58,24)" fg:x="513017" fg:w="5029"/><text x="98.8349%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,894 samples, 0.94%)</title><rect x="98.6108%" y="741" width="0.9405%" height="15" fill="rgb(230,54,45)" fg:x="513152" fg:w="4894"/><text x="98.8608%" y="751.50"></text></g><g><title>native_write_msr (4,881 samples, 0.94%)</title><rect x="98.6133%" y="725" width="0.9380%" height="15" fill="rgb(254,21,18)" fg:x="513165" fg:w="4881"/><text x="98.8633%" y="735.50"></text></g><g><title>__wake_up_common (66 samples, 0.01%)</title><rect x="99.5711%" y="597" width="0.0127%" height="15" fill="rgb(221,108,0)" fg:x="518149" fg:w="66"/><text x="99.8211%" y="607.50"></text></g><g><title>pollwake (62 samples, 0.01%)</title><rect x="99.5719%" y="581" width="0.0119%" height="15" fill="rgb(206,95,1)" fg:x="518153" fg:w="62"/><text x="99.8219%" y="591.50"></text></g><g><title>try_to_wake_up (62 samples, 0.01%)</title><rect x="99.5719%" y="565" width="0.0119%" height="15" fill="rgb(237,52,5)" fg:x="518153" fg:w="62"/><text x="99.8219%" y="575.50"></text></g><g><title>irq_work_run (82 samples, 0.02%)</title><rect x="99.5690%" y="693" width="0.0158%" height="15" fill="rgb(218,150,34)" fg:x="518138" fg:w="82"/><text x="99.8190%" y="703.50"></text></g><g><title>irq_work_run_list (80 samples, 0.02%)</title><rect x="99.5694%" y="677" width="0.0154%" height="15" fill="rgb(235,194,28)" fg:x="518140" fg:w="80"/><text x="99.8194%" y="687.50"></text></g><g><title>irq_work_single (79 samples, 0.02%)</title><rect x="99.5695%" y="661" width="0.0152%" height="15" fill="rgb(245,92,18)" fg:x="518141" fg:w="79"/><text x="99.8195%" y="671.50"></text></g><g><title>perf_pending_event (77 samples, 0.01%)</title><rect x="99.5699%" y="645" width="0.0148%" height="15" fill="rgb(253,203,53)" fg:x="518143" fg:w="77"/><text x="99.8199%" y="655.50"></text></g><g><title>perf_event_wakeup (73 samples, 0.01%)</title><rect x="99.5707%" y="629" width="0.0140%" height="15" fill="rgb(249,185,47)" fg:x="518147" fg:w="73"/><text x="99.8207%" y="639.50"></text></g><g><title>__wake_up_common_lock (71 samples, 0.01%)</title><rect x="99.5711%" y="613" width="0.0136%" height="15" fill="rgb(252,194,52)" fg:x="518149" fg:w="71"/><text x="99.8211%" y="623.50"></text></g><g><title>asm_call_sysvec_on_stack (98 samples, 0.02%)</title><rect x="99.5669%" y="725" width="0.0188%" height="15" fill="rgb(210,53,36)" fg:x="518127" fg:w="98"/><text x="99.8169%" y="735.50"></text></g><g><title>__sysvec_irq_work (90 samples, 0.02%)</title><rect x="99.5684%" y="709" width="0.0173%" height="15" fill="rgb(237,37,25)" fg:x="518135" fg:w="90"/><text x="99.8184%" y="719.50"></text></g><g><title>asm_sysvec_irq_work (178 samples, 0.03%)</title><rect x="99.5519%" y="757" width="0.0342%" height="15" fill="rgb(242,116,27)" fg:x="518049" fg:w="178"/><text x="99.8019%" y="767.50"></text></g><g><title>sysvec_irq_work (103 samples, 0.02%)</title><rect x="99.5663%" y="741" width="0.0198%" height="15" fill="rgb(213,185,26)" fg:x="518124" fg:w="103"/><text x="99.8163%" y="751.50"></text></g><g><title>schedule_tail (5,537 samples, 1.06%)</title><rect x="98.5255%" y="789" width="1.0640%" height="15" fill="rgb(225,204,8)" fg:x="512708" fg:w="5537"/><text x="98.7755%" y="799.50"></text></g><g><title>finish_task_switch (5,510 samples, 1.06%)</title><rect x="98.5307%" y="773" width="1.0588%" height="15" fill="rgb(254,111,37)" fg:x="512735" fg:w="5510"/><text x="98.7807%" y="783.50"></text></g><g><title>ret_from_fork (5,637 samples, 1.08%)</title><rect x="98.5176%" y="805" width="1.0832%" height="15" fill="rgb(242,35,9)" fg:x="512667" fg:w="5637"/><text x="98.7676%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (59 samples, 0.01%)</title><rect x="99.5895%" y="789" width="0.0113%" height="15" fill="rgb(232,138,49)" fg:x="518245" fg:w="59"/><text x="99.8395%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (57 samples, 0.01%)</title><rect x="99.5899%" y="773" width="0.0110%" height="15" fill="rgb(247,56,4)" fg:x="518247" fg:w="57"/><text x="99.8399%" y="783.50"></text></g><g><title>syscall_return_via_sysret (333 samples, 0.06%)</title><rect x="99.6009%" y="805" width="0.0640%" height="15" fill="rgb(226,179,17)" fg:x="518304" fg:w="333"/><text x="99.8509%" y="815.50"></text></g><g><title>[zig] (74,333 samples, 14.28%)</title><rect x="85.3811%" y="821" width="14.2843%" height="15" fill="rgb(216,163,45)" fg:x="444307" fg:w="74333"/><text x="85.6311%" y="831.50">[zig]</text></g><g><title>asm_exc_page_fault (507 samples, 0.10%)</title><rect x="99.6666%" y="821" width="0.0974%" height="15" fill="rgb(211,157,3)" fg:x="518646" fg:w="507"/><text x="99.9166%" y="831.50"></text></g><g><title>exit_mmap (141 samples, 0.03%)</title><rect x="99.7919%" y="693" width="0.0271%" height="15" fill="rgb(234,44,20)" fg:x="519298" fg:w="141"/><text x="100.0419%" y="703.50"></text></g><g><title>unmap_vmas (87 samples, 0.02%)</title><rect x="99.8023%" y="677" width="0.0167%" height="15" fill="rgb(254,138,23)" fg:x="519352" fg:w="87"/><text x="100.0523%" y="687.50"></text></g><g><title>unmap_page_range (86 samples, 0.02%)</title><rect x="99.8025%" y="661" width="0.0165%" height="15" fill="rgb(206,119,39)" fg:x="519353" fg:w="86"/><text x="100.0525%" y="671.50"></text></g><g><title>begin_new_exec (144 samples, 0.03%)</title><rect x="99.7915%" y="725" width="0.0277%" height="15" fill="rgb(231,105,52)" fg:x="519296" fg:w="144"/><text x="100.0415%" y="735.50"></text></g><g><title>mmput (143 samples, 0.03%)</title><rect x="99.7917%" y="709" width="0.0275%" height="15" fill="rgb(250,20,5)" fg:x="519297" fg:w="143"/><text x="100.0417%" y="719.50"></text></g><g><title>__x64_sys_execve (171 samples, 0.03%)</title><rect x="99.7907%" y="789" width="0.0329%" height="15" fill="rgb(215,198,30)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="799.50"></text></g><g><title>do_execveat_common (171 samples, 0.03%)</title><rect x="99.7907%" y="773" width="0.0329%" height="15" fill="rgb(246,142,8)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="783.50"></text></g><g><title>bprm_execve (171 samples, 0.03%)</title><rect x="99.7907%" y="757" width="0.0329%" height="15" fill="rgb(243,26,38)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="767.50"></text></g><g><title>load_elf_binary (171 samples, 0.03%)</title><rect x="99.7907%" y="741" width="0.0329%" height="15" fill="rgb(205,133,28)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="751.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.01%)</title><rect x="99.8265%" y="709" width="0.0144%" height="15" fill="rgb(212,34,0)" fg:x="519478" fg:w="75"/><text x="100.0765%" y="719.50"></text></g><g><title>page_remove_rmap (87 samples, 0.02%)</title><rect x="99.8668%" y="677" width="0.0167%" height="15" fill="rgb(251,226,22)" fg:x="519688" fg:w="87"/><text x="100.1168%" y="687.50"></text></g><g><title>mmput (349 samples, 0.07%)</title><rect x="99.8255%" y="741" width="0.0671%" height="15" fill="rgb(252,119,9)" fg:x="519473" fg:w="349"/><text x="100.0755%" y="751.50"></text></g><g><title>exit_mmap (349 samples, 0.07%)</title><rect x="99.8255%" y="725" width="0.0671%" height="15" fill="rgb(213,150,50)" fg:x="519473" fg:w="349"/><text x="100.0755%" y="735.50"></text></g><g><title>unmap_vmas (269 samples, 0.05%)</title><rect x="99.8409%" y="709" width="0.0517%" height="15" fill="rgb(212,24,39)" fg:x="519553" fg:w="269"/><text x="100.0909%" y="719.50"></text></g><g><title>unmap_page_range (269 samples, 0.05%)</title><rect x="99.8409%" y="693" width="0.0517%" height="15" fill="rgb(213,46,39)" fg:x="519553" fg:w="269"/><text x="100.0909%" y="703.50"></text></g><g><title>__x64_sys_exit_group (361 samples, 0.07%)</title><rect x="99.8240%" y="789" width="0.0694%" height="15" fill="rgb(239,106,12)" fg:x="519465" fg:w="361"/><text x="100.0740%" y="799.50"></text></g><g><title>do_group_exit (361 samples, 0.07%)</title><rect x="99.8240%" y="773" width="0.0694%" height="15" fill="rgb(249,229,21)" fg:x="519465" fg:w="361"/><text x="100.0740%" y="783.50"></text></g><g><title>do_exit (361 samples, 0.07%)</title><rect x="99.8240%" y="757" width="0.0694%" height="15" fill="rgb(212,158,3)" fg:x="519465" fg:w="361"/><text x="100.0740%" y="767.50"></text></g><g><title>do_syscall_64 (554 samples, 0.11%)</title><rect x="99.7907%" y="805" width="0.1065%" height="15" fill="rgb(253,26,48)" fg:x="519292" fg:w="554"/><text x="100.0407%" y="815.50"></text></g><g><title>page_remove_rmap (62 samples, 0.01%)</title><rect x="99.9297%" y="645" width="0.0119%" height="15" fill="rgb(238,178,20)" fg:x="520015" fg:w="62"/><text x="100.1797%" y="655.50"></text></g><g><title>mmput (179 samples, 0.03%)</title><rect x="99.9085%" y="709" width="0.0344%" height="15" fill="rgb(208,86,15)" fg:x="519905" fg:w="179"/><text x="100.1585%" y="719.50"></text></g><g><title>exit_mmap (179 samples, 0.03%)</title><rect x="99.9085%" y="693" width="0.0344%" height="15" fill="rgb(239,42,53)" fg:x="519905" fg:w="179"/><text x="100.1585%" y="703.50"></text></g><g><title>unmap_vmas (132 samples, 0.03%)</title><rect x="99.9176%" y="677" width="0.0254%" height="15" fill="rgb(245,226,8)" fg:x="519952" fg:w="132"/><text x="100.1676%" y="687.50"></text></g><g><title>unmap_page_range (132 samples, 0.03%)</title><rect x="99.9176%" y="661" width="0.0254%" height="15" fill="rgb(216,176,32)" fg:x="519952" fg:w="132"/><text x="100.1676%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (945 samples, 0.18%)</title><rect x="99.7646%" y="821" width="0.1816%" height="15" fill="rgb(231,186,21)" fg:x="519156" fg:w="945"/><text x="100.0146%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (255 samples, 0.05%)</title><rect x="99.8972%" y="805" width="0.0490%" height="15" fill="rgb(205,95,49)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (255 samples, 0.05%)</title><rect x="99.8972%" y="789" width="0.0490%" height="15" fill="rgb(217,145,8)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="799.50"></text></g><g><title>arch_do_signal (255 samples, 0.05%)</title><rect x="99.8972%" y="773" width="0.0490%" height="15" fill="rgb(239,144,48)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="783.50"></text></g><g><title>get_signal (255 samples, 0.05%)</title><rect x="99.8972%" y="757" width="0.0490%" height="15" fill="rgb(214,189,23)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="767.50"></text></g><g><title>do_group_exit (255 samples, 0.05%)</title><rect x="99.8972%" y="741" width="0.0490%" height="15" fill="rgb(229,157,17)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="751.50"></text></g><g><title>do_exit (255 samples, 0.05%)</title><rect x="99.8972%" y="725" width="0.0490%" height="15" fill="rgb(230,5,48)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="735.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (222 samples, 0.04%)</title><rect x="99.9462%" y="821" width="0.0427%" height="15" fill="rgb(224,156,48)" fg:x="520101" fg:w="222"/><text x="100.1962%" y="831.50"></text></g><g><title>all (520,381 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(223,14,29)" fg:x="0" fg:w="520381"/><text x="0.2500%" y="863.50"></text></g><g><title>zig (76,074 samples, 14.62%)</title><rect x="85.3811%" y="837" width="14.6189%" height="15" fill="rgb(229,96,36)" fg:x="444307" fg:w="76074"/><text x="85.6311%" y="847.50">zig</text></g></svg></svg>