491 lines
875 KiB
XML
491 lines
875 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="886" onload="init(evt)" viewBox="0 0 1200 886" 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="886" 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="869.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="869.00"> </text><svg id="frames" x="10" width="1180" total_samples="482777"><g><title>_dl_update_slotinfo (129 samples, 0.03%)</title><rect x="0.2055%" y="789" width="0.0267%" height="15" fill="rgb(227,0,7)" fg:x="992" fg:w="129"/><text x="0.4555%" y="799.50"></text></g><g><title>[anon] (1,232 samples, 0.26%)</title><rect x="0.0178%" y="805" width="0.2552%" height="15" fill="rgb(217,0,24)" fg:x="86" fg:w="1232"/><text x="0.2678%" y="815.50"></text></g><g><title>[perf-987172.map] (156 samples, 0.03%)</title><rect x="0.2732%" y="805" width="0.0323%" height="15" fill="rgb(221,193,54)" fg:x="1319" fg:w="156"/><text x="0.5232%" y="815.50"></text></g><g><title>[unknown] (106 samples, 0.02%)</title><rect x="0.3057%" y="805" width="0.0220%" height="15" fill="rgb(248,212,6)" fg:x="1476" fg:w="106"/><text x="0.5557%" y="815.50"></text></g><g><title>jio_vsnprintf (72 samples, 0.01%)</title><rect x="0.3420%" y="661" width="0.0149%" height="15" fill="rgb(208,68,35)" fg:x="1651" fg:w="72"/><text x="0.5920%" y="671.50"></text></g><g><title>os::vsnprintf (72 samples, 0.01%)</title><rect x="0.3420%" y="645" width="0.0149%" height="15" fill="rgb(232,128,0)" fg:x="1651" fg:w="72"/><text x="0.5920%" y="655.50"></text></g><g><title>__vsnprintf_internal (70 samples, 0.01%)</title><rect x="0.3424%" y="629" width="0.0145%" height="15" fill="rgb(207,160,47)" fg:x="1653" fg:w="70"/><text x="0.5924%" y="639.50"></text></g><g><title>__vfprintf_internal (68 samples, 0.01%)</title><rect x="0.3428%" y="613" width="0.0141%" height="15" fill="rgb(228,23,34)" fg:x="1655" fg:w="68"/><text x="0.5928%" y="623.50"></text></g><g><title>CompileBroker::post_compile (82 samples, 0.02%)</title><rect x="0.3409%" y="693" width="0.0170%" height="15" fill="rgb(218,30,26)" fg:x="1646" fg:w="82"/><text x="0.5909%" y="703.50"></text></g><g><title>StringEventLog::log (81 samples, 0.02%)</title><rect x="0.3412%" y="677" width="0.0168%" height="15" fill="rgb(220,122,19)" fg:x="1647" fg:w="81"/><text x="0.5912%" y="687.50"></text></g><g><title>CompileTask::print (115 samples, 0.02%)</title><rect x="0.3621%" y="693" width="0.0238%" height="15" fill="rgb(250,228,42)" fg:x="1748" fg:w="115"/><text x="0.6121%" y="703.50"></text></g><g><title>outputStream::print (67 samples, 0.01%)</title><rect x="0.3720%" y="677" width="0.0139%" height="15" fill="rgb(240,193,28)" fg:x="1796" fg:w="67"/><text x="0.6220%" y="687.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (64 samples, 0.01%)</title><rect x="0.3726%" y="661" width="0.0133%" height="15" fill="rgb(216,20,37)" fg:x="1799" fg:w="64"/><text x="0.6226%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (58 samples, 0.01%)</title><rect x="0.4060%" y="533" width="0.0120%" height="15" fill="rgb(206,188,39)" fg:x="1960" fg:w="58"/><text x="0.6560%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (88 samples, 0.02%)</title><rect x="0.4058%" y="549" width="0.0182%" height="15" fill="rgb(217,207,13)" fg:x="1959" fg:w="88"/><text x="0.6558%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (147 samples, 0.03%)</title><rect x="0.4047%" y="565" width="0.0304%" height="15" fill="rgb(231,73,38)" fg:x="1954" fg:w="147"/><text x="0.6547%" y="575.50"></text></g><g><title>SubstitutionResolver::block_do (54 samples, 0.01%)</title><rect x="0.4240%" y="549" width="0.0112%" height="15" fill="rgb(225,20,46)" fg:x="2047" fg:w="54"/><text x="0.6740%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (215 samples, 0.04%)</title><rect x="0.4039%" y="597" width="0.0445%" height="15" fill="rgb(210,31,41)" fg:x="1950" fg:w="215"/><text x="0.6539%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (214 samples, 0.04%)</title><rect x="0.4041%" y="581" width="0.0443%" height="15" fill="rgb(221,200,47)" fg:x="1951" fg:w="214"/><text x="0.6541%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (64 samples, 0.01%)</title><rect x="0.4352%" y="565" width="0.0133%" height="15" fill="rgb(226,26,5)" fg:x="2101" fg:w="64"/><text x="0.6852%" y="575.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (375 samples, 0.08%)</title><rect x="0.3942%" y="613" width="0.0777%" height="15" fill="rgb(249,33,26)" fg:x="1903" fg:w="375"/><text x="0.6442%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (66 samples, 0.01%)</title><rect x="0.4764%" y="533" width="0.0137%" height="15" fill="rgb(235,183,28)" fg:x="2300" fg:w="66"/><text x="0.7264%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (83 samples, 0.02%)</title><rect x="0.4748%" y="549" width="0.0172%" height="15" fill="rgb(221,5,38)" fg:x="2292" fg:w="83"/><text x="0.7248%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (110 samples, 0.02%)</title><rect x="0.4729%" y="565" width="0.0228%" height="15" fill="rgb(247,18,42)" fg:x="2283" fg:w="110"/><text x="0.7229%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (112 samples, 0.02%)</title><rect x="0.4727%" y="581" width="0.0232%" height="15" fill="rgb(241,131,45)" fg:x="2282" fg:w="112"/><text x="0.7227%" y="591.50"></text></g><g><title>MethodLiveness::compute_liveness (97 samples, 0.02%)</title><rect x="0.5067%" y="533" width="0.0201%" height="15" fill="rgb(249,31,29)" fg:x="2446" fg:w="97"/><text x="0.7567%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (129 samples, 0.03%)</title><rect x="0.5002%" y="565" width="0.0267%" height="15" fill="rgb(225,111,53)" fg:x="2415" fg:w="129"/><text x="0.7502%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (100 samples, 0.02%)</title><rect x="0.5062%" y="549" width="0.0207%" height="15" fill="rgb(238,160,17)" fg:x="2444" fg:w="100"/><text x="0.7562%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (143 samples, 0.03%)</title><rect x="0.4980%" y="581" width="0.0296%" height="15" fill="rgb(214,148,48)" fg:x="2404" fg:w="143"/><text x="0.7480%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (65 samples, 0.01%)</title><rect x="0.5738%" y="469" width="0.0135%" height="15" fill="rgb(232,36,49)" fg:x="2770" fg:w="65"/><text x="0.8238%" y="479.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (74 samples, 0.02%)</title><rect x="0.5723%" y="485" width="0.0153%" height="15" fill="rgb(209,103,24)" fg:x="2763" fg:w="74"/><text x="0.8223%" y="495.50"></text></g><g><title>ciField::ciField (104 samples, 0.02%)</title><rect x="0.5692%" y="501" width="0.0215%" height="15" fill="rgb(229,88,8)" fg:x="2748" fg:w="104"/><text x="0.8192%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (114 samples, 0.02%)</title><rect x="0.5680%" y="517" width="0.0236%" height="15" fill="rgb(213,181,19)" fg:x="2742" fg:w="114"/><text x="0.8180%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (137 samples, 0.03%)</title><rect x="0.5680%" y="533" width="0.0284%" height="15" fill="rgb(254,191,54)" fg:x="2742" fg:w="137"/><text x="0.8180%" y="543.50"></text></g><g><title>GraphBuilder::access_field (194 samples, 0.04%)</title><rect x="0.5572%" y="549" width="0.0402%" height="15" fill="rgb(241,83,37)" fg:x="2690" fg:w="194"/><text x="0.8072%" y="559.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.6583%" y="469" width="0.0106%" height="15" fill="rgb(233,36,39)" fg:x="3178" fg:w="51"/><text x="0.9083%" y="479.50"></text></g><g><title>ciField::ciField (73 samples, 0.02%)</title><rect x="0.6788%" y="421" width="0.0151%" height="15" fill="rgb(226,3,54)" fg:x="3277" fg:w="73"/><text x="0.9288%" y="431.50"></text></g><g><title>ciEnv::get_field_by_index (78 samples, 0.02%)</title><rect x="0.6784%" y="437" width="0.0162%" height="15" fill="rgb(245,192,40)" fg:x="3275" fg:w="78"/><text x="0.9284%" y="447.50"></text></g><g><title>ciBytecodeStream::get_field (91 samples, 0.02%)</title><rect x="0.6782%" y="453" width="0.0188%" height="15" fill="rgb(238,167,29)" fg:x="3274" fg:w="91"/><text x="0.9282%" y="463.50"></text></g><g><title>GraphBuilder::access_field (133 samples, 0.03%)</title><rect x="0.6703%" y="469" width="0.0275%" height="15" fill="rgb(232,182,51)" fg:x="3236" fg:w="133"/><text x="0.9203%" y="479.50"></text></g><g><title>ciBytecodeStream::get_field (56 samples, 0.01%)</title><rect x="0.7345%" y="373" width="0.0116%" height="15" fill="rgb(231,60,39)" fg:x="3546" fg:w="56"/><text x="0.9845%" y="383.50"></text></g><g><title>GraphBuilder::access_field (82 samples, 0.02%)</title><rect x="0.7316%" y="389" width="0.0170%" height="15" fill="rgb(208,69,12)" fg:x="3532" fg:w="82"/><text x="0.9816%" y="399.50"></text></g><g><title>GraphBuilder::access_field (51 samples, 0.01%)</title><rect x="0.7656%" y="309" width="0.0106%" height="15" fill="rgb(235,93,37)" fg:x="3696" fg:w="51"/><text x="1.0156%" y="319.50"></text></g><g><title>GraphBuilder::invoke (65 samples, 0.01%)</title><rect x="0.7877%" y="229" width="0.0135%" height="15" fill="rgb(213,116,39)" fg:x="3803" fg:w="65"/><text x="1.0377%" y="239.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (98 samples, 0.02%)</title><rect x="0.7826%" y="261" width="0.0203%" height="15" fill="rgb(222,207,29)" fg:x="3778" fg:w="98"/><text x="1.0326%" y="271.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (96 samples, 0.02%)</title><rect x="0.7830%" y="245" width="0.0199%" height="15" fill="rgb(206,96,30)" fg:x="3780" fg:w="96"/><text x="1.0330%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (147 samples, 0.03%)</title><rect x="0.7811%" y="277" width="0.0304%" height="15" fill="rgb(218,138,4)" fg:x="3771" fg:w="147"/><text x="1.0311%" y="287.50"></text></g><g><title>GraphBuilder::try_inline (157 samples, 0.03%)</title><rect x="0.7809%" y="293" width="0.0325%" height="15" fill="rgb(250,191,14)" fg:x="3770" fg:w="157"/><text x="1.0309%" y="303.50"></text></g><g><title>GraphBuilder::invoke (221 samples, 0.05%)</title><rect x="0.7784%" y="309" width="0.0458%" height="15" fill="rgb(239,60,40)" fg:x="3758" fg:w="221"/><text x="1.0284%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (331 samples, 0.07%)</title><rect x="0.7604%" y="341" width="0.0686%" height="15" fill="rgb(206,27,48)" fg:x="3671" fg:w="331"/><text x="1.0104%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (324 samples, 0.07%)</title><rect x="0.7618%" y="325" width="0.0671%" height="15" fill="rgb(225,35,8)" fg:x="3678" fg:w="324"/><text x="1.0118%" y="335.50"></text></g><g><title>GraphBuilder::try_inline_full (415 samples, 0.09%)</title><rect x="0.7581%" y="357" width="0.0860%" height="15" fill="rgb(250,213,24)" fg:x="3660" fg:w="415"/><text x="1.0081%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (451 samples, 0.09%)</title><rect x="0.7579%" y="373" width="0.0934%" height="15" fill="rgb(247,123,22)" fg:x="3659" fg:w="451"/><text x="1.0079%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (51 samples, 0.01%)</title><rect x="0.8650%" y="341" width="0.0106%" height="15" fill="rgb(231,138,38)" fg:x="4176" fg:w="51"/><text x="1.1150%" y="351.50"></text></g><g><title>ciBytecodeStream::get_method (97 samples, 0.02%)</title><rect x="0.8559%" y="373" width="0.0201%" height="15" fill="rgb(231,145,46)" fg:x="4132" fg:w="97"/><text x="1.1059%" y="383.50"></text></g><g><title>ciEnv::get_method_by_index_impl (92 samples, 0.02%)</title><rect x="0.8569%" y="357" width="0.0191%" height="15" fill="rgb(251,118,11)" fg:x="4137" fg:w="92"/><text x="1.1069%" y="367.50"></text></g><g><title>GraphBuilder::invoke (613 samples, 0.13%)</title><rect x="0.7529%" y="389" width="0.1270%" height="15" fill="rgb(217,147,25)" fg:x="3635" fg:w="613"/><text x="1.0029%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (821 samples, 0.17%)</title><rect x="0.7186%" y="421" width="0.1701%" height="15" fill="rgb(247,81,37)" fg:x="3469" fg:w="821"/><text x="0.9686%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (806 samples, 0.17%)</title><rect x="0.7217%" y="405" width="0.1670%" height="15" fill="rgb(209,12,38)" fg:x="3484" fg:w="806"/><text x="0.9717%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (54 samples, 0.01%)</title><rect x="0.8894%" y="405" width="0.0112%" height="15" fill="rgb(227,1,9)" fg:x="4294" fg:w="54"/><text x="1.1394%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (82 samples, 0.02%)</title><rect x="0.8888%" y="421" width="0.0170%" height="15" fill="rgb(248,47,43)" fg:x="4291" fg:w="82"/><text x="1.1388%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (63 samples, 0.01%)</title><rect x="0.9064%" y="405" width="0.0130%" height="15" fill="rgb(221,10,30)" fg:x="4376" fg:w="63"/><text x="1.1564%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (65 samples, 0.01%)</title><rect x="0.9062%" y="421" width="0.0135%" height="15" fill="rgb(210,229,1)" fg:x="4375" fg:w="65"/><text x="1.1562%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (1,003 samples, 0.21%)</title><rect x="0.7125%" y="437" width="0.2078%" height="15" fill="rgb(222,148,37)" fg:x="3440" fg:w="1003"/><text x="0.9625%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (1,045 samples, 0.22%)</title><rect x="0.7115%" y="453" width="0.2165%" height="15" fill="rgb(234,67,33)" fg:x="3435" fg:w="1045"/><text x="0.9615%" y="463.50"></text></g><g><title>ciMethod::ciMethod (50 samples, 0.01%)</title><rect x="0.9528%" y="389" width="0.0104%" height="15" fill="rgb(247,98,35)" fg:x="4600" fg:w="50"/><text x="1.2028%" y="399.50"></text></g><g><title>ciObjectFactory::create_new_metadata (59 samples, 0.01%)</title><rect x="0.9512%" y="405" width="0.0122%" height="15" fill="rgb(247,138,52)" fg:x="4592" fg:w="59"/><text x="1.2012%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (71 samples, 0.01%)</title><rect x="0.9489%" y="421" width="0.0147%" height="15" fill="rgb(213,79,30)" fg:x="4581" fg:w="71"/><text x="1.1989%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (138 samples, 0.03%)</title><rect x="0.9352%" y="437" width="0.0286%" height="15" fill="rgb(246,177,23)" fg:x="4515" fg:w="138"/><text x="1.1852%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (153 samples, 0.03%)</title><rect x="0.9323%" y="453" width="0.0317%" height="15" fill="rgb(230,62,27)" fg:x="4501" fg:w="153"/><text x="1.1823%" y="463.50"></text></g><g><title>GraphBuilder::invoke (1,285 samples, 0.27%)</title><rect x="0.7047%" y="469" width="0.2662%" height="15" fill="rgb(216,154,8)" fg:x="3402" fg:w="1285"/><text x="0.9547%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,625 samples, 0.34%)</title><rect x="0.6483%" y="501" width="0.3366%" height="15" fill="rgb(244,35,45)" fg:x="3130" fg:w="1625"/><text x="0.8983%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,611 samples, 0.33%)</title><rect x="0.6512%" y="485" width="0.3337%" height="15" fill="rgb(251,115,12)" fg:x="3144" fg:w="1611"/><text x="0.9012%" y="495.50"></text></g><g><title>MethodLiveness::init_basic_blocks (52 samples, 0.01%)</title><rect x="1.0005%" y="421" width="0.0108%" height="15" fill="rgb(240,54,50)" fg:x="4830" fg:w="52"/><text x="1.2505%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (84 samples, 0.02%)</title><rect x="0.9945%" y="469" width="0.0174%" height="15" fill="rgb(233,84,52)" fg:x="4801" fg:w="84"/><text x="1.2445%" y="479.50"></text></g><g><title>ciMethod::bci_block_start (70 samples, 0.01%)</title><rect x="0.9974%" y="453" width="0.0145%" height="15" fill="rgb(207,117,47)" fg:x="4815" fg:w="70"/><text x="1.2474%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (69 samples, 0.01%)</title><rect x="0.9976%" y="437" width="0.0143%" height="15" fill="rgb(249,43,39)" fg:x="4816" fg:w="69"/><text x="1.2476%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (107 samples, 0.02%)</title><rect x="0.9909%" y="485" width="0.0222%" height="15" fill="rgb(209,38,44)" fg:x="4784" fg:w="107"/><text x="1.2409%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (170 samples, 0.04%)</title><rect x="0.9895%" y="501" width="0.0352%" height="15" fill="rgb(236,212,23)" fg:x="4777" fg:w="170"/><text x="1.2395%" y="511.50"></text></g><g><title>Method::build_interpreter_method_data (60 samples, 0.01%)</title><rect x="1.0295%" y="469" width="0.0124%" height="15" fill="rgb(242,79,21)" fg:x="4970" fg:w="60"/><text x="1.2795%" y="479.50"></text></g><g><title>MethodData::allocate (60 samples, 0.01%)</title><rect x="1.0295%" y="453" width="0.0124%" height="15" fill="rgb(211,96,35)" fg:x="4970" fg:w="60"/><text x="1.2795%" y="463.50"></text></g><g><title>ciMethodData::load_data (50 samples, 0.01%)</title><rect x="1.0421%" y="469" width="0.0104%" height="15" fill="rgb(253,215,40)" fg:x="5031" fg:w="50"/><text x="1.2921%" y="479.50"></text></g><g><title>ciMethod::ensure_method_data (134 samples, 0.03%)</title><rect x="1.0278%" y="501" width="0.0278%" height="15" fill="rgb(211,81,21)" fg:x="4962" fg:w="134"/><text x="1.2778%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (128 samples, 0.03%)</title><rect x="1.0290%" y="485" width="0.0265%" height="15" fill="rgb(208,190,38)" fg:x="4968" fg:w="128"/><text x="1.2790%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (2,058 samples, 0.43%)</title><rect x="0.6318%" y="517" width="0.4263%" height="15" fill="rgb(235,213,38)" fg:x="3050" fg:w="2058"/><text x="0.8818%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (2,079 samples, 0.43%)</title><rect x="0.6291%" y="533" width="0.4306%" height="15" fill="rgb(237,122,38)" fg:x="3037" fg:w="2079"/><text x="0.8791%" y="543.50"></text></g><g><title>ciEnv::lookup_method (91 samples, 0.02%)</title><rect x="1.0844%" y="501" width="0.0188%" height="15" fill="rgb(244,218,35)" fg:x="5235" fg:w="91"/><text x="1.3344%" y="511.50"></text></g><g><title>ciMethod::ciMethod (146 samples, 0.03%)</title><rect x="1.1078%" y="469" width="0.0302%" height="15" fill="rgb(240,68,47)" fg:x="5348" fg:w="146"/><text x="1.3578%" y="479.50"></text></g><g><title>ciSignature::ciSignature (117 samples, 0.02%)</title><rect x="1.1138%" y="453" width="0.0242%" height="15" fill="rgb(210,16,53)" fg:x="5377" fg:w="117"/><text x="1.3638%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (173 samples, 0.04%)</title><rect x="1.1032%" y="501" width="0.0358%" height="15" fill="rgb(235,124,12)" fg:x="5326" fg:w="173"/><text x="1.3532%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (158 samples, 0.03%)</title><rect x="1.1063%" y="485" width="0.0327%" height="15" fill="rgb(224,169,11)" fg:x="5341" fg:w="158"/><text x="1.3563%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (300 samples, 0.06%)</title><rect x="1.0779%" y="517" width="0.0621%" height="15" fill="rgb(250,166,2)" fg:x="5204" fg:w="300"/><text x="1.3279%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (324 samples, 0.07%)</title><rect x="1.0734%" y="533" width="0.0671%" height="15" fill="rgb(242,216,29)" fg:x="5182" fg:w="324"/><text x="1.3234%" y="543.50"></text></g><g><title>GraphBuilder::invoke (2,623 samples, 0.54%)</title><rect x="0.6125%" y="549" width="0.5433%" height="15" fill="rgb(230,116,27)" fg:x="2957" fg:w="2623"/><text x="0.8625%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,050 samples, 0.63%)</title><rect x="0.5388%" y="565" width="0.6318%" height="15" fill="rgb(228,99,48)" fg:x="2601" fg:w="3050"/><text x="0.7888%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,103 samples, 0.64%)</title><rect x="0.5301%" y="581" width="0.6427%" height="15" fill="rgb(253,11,6)" fg:x="2559" fg:w="3103"/><text x="0.7801%" y="591.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,435 samples, 0.71%)</title><rect x="0.4721%" y="597" width="0.7115%" height="15" fill="rgb(247,143,39)" fg:x="2279" fg:w="3435"/><text x="0.7221%" y="607.50"></text></g><g><title>IR::IR (3,446 samples, 0.71%)</title><rect x="0.4719%" y="613" width="0.7138%" height="15" fill="rgb(236,97,10)" fg:x="2278" fg:w="3446"/><text x="0.7219%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (67 samples, 0.01%)</title><rect x="1.1856%" y="597" width="0.0139%" height="15" fill="rgb(233,208,19)" fg:x="5724" fg:w="67"/><text x="1.4356%" y="607.50"></text></g><g><title>IR::compute_code (80 samples, 0.02%)</title><rect x="1.1856%" y="613" width="0.0166%" height="15" fill="rgb(216,164,2)" fg:x="5724" fg:w="80"/><text x="1.4356%" y="623.50"></text></g><g><title>BlockList::iterate_backward (89 samples, 0.02%)</title><rect x="1.2030%" y="597" width="0.0184%" height="15" fill="rgb(220,129,5)" fg:x="5808" fg:w="89"/><text x="1.4530%" y="607.50"></text></g><g><title>UseCountComputer::block_do (87 samples, 0.02%)</title><rect x="1.2035%" y="581" width="0.0180%" height="15" fill="rgb(242,17,10)" fg:x="5810" fg:w="87"/><text x="1.4535%" y="591.50"></text></g><g><title>IR::compute_use_counts (115 samples, 0.02%)</title><rect x="1.2022%" y="613" width="0.0238%" height="15" fill="rgb(242,107,0)" fg:x="5804" fg:w="115"/><text x="1.4522%" y="623.50"></text></g><g><title>NullCheckEliminator::iterate_one (142 samples, 0.03%)</title><rect x="1.2316%" y="581" width="0.0294%" height="15" fill="rgb(251,28,31)" fg:x="5946" fg:w="142"/><text x="1.4816%" y="591.50"></text></g><g><title>IR::eliminate_null_checks (174 samples, 0.04%)</title><rect x="1.2260%" y="613" width="0.0360%" height="15" fill="rgb(233,223,10)" fg:x="5919" fg:w="174"/><text x="1.4760%" y="623.50"></text></g><g><title>Optimizer::eliminate_null_checks (172 samples, 0.04%)</title><rect x="1.2264%" y="597" width="0.0356%" height="15" fill="rgb(215,21,27)" fg:x="5921" fg:w="172"/><text x="1.4764%" y="607.50"></text></g><g><title>IR::optimize_blocks (66 samples, 0.01%)</title><rect x="1.2621%" y="613" width="0.0137%" height="15" fill="rgb(232,23,21)" fg:x="6093" fg:w="66"/><text x="1.5121%" y="623.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (54 samples, 0.01%)</title><rect x="1.2646%" y="597" width="0.0112%" height="15" fill="rgb(244,5,23)" fg:x="6105" fg:w="54"/><text x="1.5146%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.2648%" y="581" width="0.0110%" height="15" fill="rgb(226,81,46)" fg:x="6106" fg:w="53"/><text x="1.5148%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.2648%" y="565" width="0.0110%" height="15" fill="rgb(247,70,30)" fg:x="6106" fg:w="53"/><text x="1.5148%" y="575.50"></text></g><g><title>Compilation::build_hir (4,357 samples, 0.90%)</title><rect x="0.3929%" y="629" width="0.9025%" height="15" fill="rgb(212,68,19)" fg:x="1897" fg:w="4357"/><text x="0.6429%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (87 samples, 0.02%)</title><rect x="1.3275%" y="549" width="0.0180%" height="15" fill="rgb(240,187,13)" fg:x="6409" fg:w="87"/><text x="1.5775%" y="559.50"></text></g><g><title>LIR_Assembler::add_call_info (89 samples, 0.02%)</title><rect x="1.3273%" y="565" width="0.0184%" height="15" fill="rgb(223,113,26)" fg:x="6408" fg:w="89"/><text x="1.5773%" y="575.50"></text></g><g><title>LIR_Assembler::call (106 samples, 0.02%)</title><rect x="1.3250%" y="581" width="0.0220%" height="15" fill="rgb(206,192,2)" fg:x="6397" fg:w="106"/><text x="1.5750%" y="591.50"></text></g><g><title>LIR_Assembler::emit_call (193 samples, 0.04%)</title><rect x="1.3139%" y="597" width="0.0400%" height="15" fill="rgb(241,108,4)" fg:x="6343" fg:w="193"/><text x="1.5639%" y="607.50"></text></g><g><title>LIR_Assembler::emit_op1 (144 samples, 0.03%)</title><rect x="1.3607%" y="597" width="0.0298%" height="15" fill="rgb(247,173,49)" fg:x="6569" fg:w="144"/><text x="1.6107%" y="607.50"></text></g><g><title>LIR_Assembler::emit_profile_call (49 samples, 0.01%)</title><rect x="1.3942%" y="597" width="0.0101%" height="15" fill="rgb(224,114,35)" fg:x="6731" fg:w="49"/><text x="1.6442%" y="607.50"></text></g><g><title>LIR_Assembler::emit_code (645 samples, 0.13%)</title><rect x="1.2977%" y="613" width="0.1336%" height="15" fill="rgb(245,159,27)" fg:x="6265" fg:w="645"/><text x="1.5477%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (97 samples, 0.02%)</title><rect x="1.4512%" y="581" width="0.0201%" height="15" fill="rgb(245,172,44)" fg:x="7006" fg:w="97"/><text x="1.7012%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (97 samples, 0.02%)</title><rect x="1.4512%" y="565" width="0.0201%" height="15" fill="rgb(236,23,11)" fg:x="7006" fg:w="97"/><text x="1.7012%" y="575.50"></text></g><g><title>CounterOverflowStub::emit_code (117 samples, 0.02%)</title><rect x="1.4497%" y="597" width="0.0242%" height="15" fill="rgb(205,117,38)" fg:x="6999" fg:w="117"/><text x="1.6997%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (60 samples, 0.01%)</title><rect x="1.4787%" y="581" width="0.0124%" height="15" fill="rgb(237,72,25)" fg:x="7139" fg:w="60"/><text x="1.7287%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (58 samples, 0.01%)</title><rect x="1.4792%" y="565" width="0.0120%" height="15" fill="rgb(244,70,9)" fg:x="7141" fg:w="58"/><text x="1.7292%" y="575.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (69 samples, 0.01%)</title><rect x="1.4775%" y="597" width="0.0143%" height="15" fill="rgb(217,125,39)" fg:x="7133" fg:w="69"/><text x="1.7275%" y="607.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (301 samples, 0.06%)</title><rect x="1.4466%" y="613" width="0.0623%" height="15" fill="rgb(235,36,10)" fg:x="6984" fg:w="301"/><text x="1.6966%" y="623.50"></text></g><g><title>Compilation::emit_code_body (1,041 samples, 0.22%)</title><rect x="1.2954%" y="629" width="0.2156%" height="15" fill="rgb(251,123,47)" fg:x="6254" fg:w="1041"/><text x="1.5454%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (83 samples, 0.02%)</title><rect x="1.5251%" y="581" width="0.0172%" height="15" fill="rgb(221,13,13)" fg:x="7363" fg:w="83"/><text x="1.7751%" y="591.50"></text></g><g><title>LIRGenerator::move_to_phi (63 samples, 0.01%)</title><rect x="1.5483%" y="549" width="0.0130%" height="15" fill="rgb(238,131,9)" fg:x="7475" fg:w="63"/><text x="1.7983%" y="559.50"></text></g><g><title>PhiResolver::create_node (58 samples, 0.01%)</title><rect x="1.5494%" y="533" width="0.0120%" height="15" fill="rgb(211,50,8)" fg:x="7480" fg:w="58"/><text x="1.7994%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (225 samples, 0.05%)</title><rect x="1.5456%" y="565" width="0.0466%" height="15" fill="rgb(245,182,24)" fg:x="7462" fg:w="225"/><text x="1.7956%" y="575.50"></text></g><g><title>PhiResolverState::reset (144 samples, 0.03%)</title><rect x="1.5624%" y="549" width="0.0298%" height="15" fill="rgb(242,14,37)" fg:x="7543" fg:w="144"/><text x="1.8124%" y="559.50"></text></g><g><title>LIRGenerator::do_Goto (253 samples, 0.05%)</title><rect x="1.5427%" y="581" width="0.0524%" height="15" fill="rgb(246,228,12)" fg:x="7448" fg:w="253"/><text x="1.7927%" y="591.50"></text></g><g><title>LIRGenerator::do_If (71 samples, 0.01%)</title><rect x="1.5951%" y="581" width="0.0147%" height="15" fill="rgb(213,55,15)" fg:x="7701" fg:w="71"/><text x="1.8451%" y="591.50"></text></g><g><title>LIRGenerator::do_Invoke (119 samples, 0.02%)</title><rect x="1.6115%" y="581" width="0.0246%" height="15" fill="rgb(209,9,3)" fg:x="7780" fg:w="119"/><text x="1.8615%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (81 samples, 0.02%)</title><rect x="1.6616%" y="581" width="0.0168%" height="15" fill="rgb(230,59,30)" fg:x="8022" fg:w="81"/><text x="1.9116%" y="591.50"></text></g><g><title>LIRGenerator::block_do (868 samples, 0.18%)</title><rect x="1.5139%" y="597" width="0.1798%" height="15" fill="rgb(209,121,21)" fg:x="7309" fg:w="868"/><text x="1.7639%" y="607.50"></text></g><g><title>BlockList::iterate_forward (881 samples, 0.18%)</title><rect x="1.5125%" y="613" width="0.1825%" height="15" fill="rgb(220,109,13)" fg:x="7302" fg:w="881"/><text x="1.7625%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (121 samples, 0.03%)</title><rect x="1.7196%" y="565" width="0.0251%" height="15" fill="rgb(232,18,1)" fg:x="8302" fg:w="121"/><text x="1.9696%" y="575.50"></text></g><g><title>LinearScanWalker::find_free_reg (104 samples, 0.02%)</title><rect x="1.7689%" y="533" width="0.0215%" height="15" fill="rgb(215,41,42)" fg:x="8540" fg:w="104"/><text x="2.0189%" y="543.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (155 samples, 0.03%)</title><rect x="1.7934%" y="533" width="0.0321%" height="15" fill="rgb(224,123,36)" fg:x="8658" fg:w="155"/><text x="2.0434%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (70 samples, 0.01%)</title><rect x="1.8255%" y="533" width="0.0145%" height="15" fill="rgb(240,125,3)" fg:x="8813" fg:w="70"/><text x="2.0755%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (430 samples, 0.09%)</title><rect x="1.7515%" y="549" width="0.0891%" height="15" fill="rgb(205,98,50)" fg:x="8456" fg:w="430"/><text x="2.0015%" y="559.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (70 samples, 0.01%)</title><rect x="1.8503%" y="533" width="0.0145%" height="15" fill="rgb(205,185,37)" fg:x="8933" fg:w="70"/><text x="2.1003%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (157 samples, 0.03%)</title><rect x="1.8406%" y="549" width="0.0325%" height="15" fill="rgb(238,207,15)" fg:x="8886" fg:w="157"/><text x="2.0906%" y="559.50"></text></g><g><title>LinearScanWalker::activate_current (686 samples, 0.14%)</title><rect x="1.7447%" y="565" width="0.1421%" height="15" fill="rgb(213,199,42)" fg:x="8423" fg:w="686"/><text x="1.9947%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (856 samples, 0.18%)</title><rect x="1.7101%" y="581" width="0.1773%" height="15" fill="rgb(235,201,11)" fg:x="8256" fg:w="856"/><text x="1.9601%" y="591.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (73 samples, 0.02%)</title><rect x="1.8882%" y="581" width="0.0151%" height="15" fill="rgb(207,46,11)" fg:x="9116" fg:w="73"/><text x="2.1382%" y="591.50"></text></g><g><title>resource_allocate_bytes (50 samples, 0.01%)</title><rect x="1.8930%" y="565" width="0.0104%" height="15" fill="rgb(241,35,35)" fg:x="9139" fg:w="50"/><text x="2.1430%" y="575.50"></text></g><g><title>LinearScan::allocate_registers (946 samples, 0.20%)</title><rect x="1.7076%" y="597" width="0.1959%" height="15" fill="rgb(243,32,47)" fg:x="8244" fg:w="946"/><text x="1.9576%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (72 samples, 0.01%)</title><rect x="1.9373%" y="565" width="0.0149%" height="15" fill="rgb(247,202,23)" fg:x="9353" fg:w="72"/><text x="2.1873%" y="575.50"></text></g><g><title>LinearScan::color_lir_opr (75 samples, 0.02%)</title><rect x="1.9537%" y="565" width="0.0155%" height="15" fill="rgb(219,102,11)" fg:x="9432" fg:w="75"/><text x="2.2037%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (79 samples, 0.02%)</title><rect x="1.9829%" y="549" width="0.0164%" height="15" fill="rgb(243,110,44)" fg:x="9573" fg:w="79"/><text x="2.2329%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (157 samples, 0.03%)</title><rect x="1.9692%" y="565" width="0.0325%" height="15" fill="rgb(222,74,54)" fg:x="9507" fg:w="157"/><text x="2.2192%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (97 samples, 0.02%)</title><rect x="2.0127%" y="533" width="0.0201%" height="15" fill="rgb(216,99,12)" fg:x="9717" fg:w="97"/><text x="2.2627%" y="543.50"></text></g><g><title>LinearScan::compute_oop_map (170 samples, 0.04%)</title><rect x="2.0059%" y="549" width="0.0352%" height="15" fill="rgb(226,22,26)" fg:x="9684" fg:w="170"/><text x="2.2559%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (192 samples, 0.04%)</title><rect x="2.0018%" y="565" width="0.0398%" height="15" fill="rgb(217,163,10)" fg:x="9664" fg:w="192"/><text x="2.2518%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (656 samples, 0.14%)</title><rect x="1.9058%" y="581" width="0.1359%" height="15" fill="rgb(213,25,53)" fg:x="9201" fg:w="656"/><text x="2.1558%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (686 samples, 0.14%)</title><rect x="1.9036%" y="597" width="0.1421%" height="15" fill="rgb(252,105,26)" fg:x="9190" fg:w="686"/><text x="2.1536%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (83 samples, 0.02%)</title><rect x="2.1003%" y="581" width="0.0172%" height="15" fill="rgb(220,39,43)" fg:x="10140" fg:w="83"/><text x="2.3503%" y="591.50"></text></g><g><title>LinearScan::add_def (67 samples, 0.01%)</title><rect x="2.1175%" y="581" width="0.0139%" height="15" fill="rgb(229,68,48)" fg:x="10223" fg:w="67"/><text x="2.3675%" y="591.50"></text></g><g><title>LinearScan::create_interval (59 samples, 0.01%)</title><rect x="2.1459%" y="565" width="0.0122%" height="15" fill="rgb(252,8,32)" fg:x="10360" fg:w="59"/><text x="2.3959%" y="575.50"></text></g><g><title>LinearScan::add_temp (107 samples, 0.02%)</title><rect x="2.1362%" y="581" width="0.0222%" height="15" fill="rgb(223,20,43)" fg:x="10313" fg:w="107"/><text x="2.3862%" y="591.50"></text></g><g><title>Interval::add_range (53 samples, 0.01%)</title><rect x="2.1687%" y="565" width="0.0110%" height="15" fill="rgb(229,81,49)" fg:x="10470" fg:w="53"/><text x="2.4187%" y="575.50"></text></g><g><title>LinearScan::create_interval (66 samples, 0.01%)</title><rect x="2.1799%" y="565" width="0.0137%" height="15" fill="rgb(236,28,36)" fg:x="10524" fg:w="66"/><text x="2.4299%" y="575.50"></text></g><g><title>LinearScan::add_use (172 samples, 0.04%)</title><rect x="2.1583%" y="581" width="0.0356%" height="15" fill="rgb(249,185,26)" fg:x="10420" fg:w="172"/><text x="2.4083%" y="591.50"></text></g><g><title>LinearScan::build_intervals (777 samples, 0.16%)</title><rect x="2.0457%" y="597" width="0.1609%" height="15" fill="rgb(249,174,33)" fg:x="9876" fg:w="777"/><text x="2.2957%" y="607.50"></text></g><g><title>LinearScan::compute_global_live_sets (64 samples, 0.01%)</title><rect x="2.2066%" y="597" width="0.0133%" height="15" fill="rgb(233,201,37)" fg:x="10653" fg:w="64"/><text x="2.4566%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (95 samples, 0.02%)</title><rect x="2.2489%" y="581" width="0.0197%" height="15" fill="rgb(221,78,26)" fg:x="10857" fg:w="95"/><text x="2.4989%" y="591.50"></text></g><g><title>LinearScan::compute_local_live_sets (305 samples, 0.06%)</title><rect x="2.2199%" y="597" width="0.0632%" height="15" fill="rgb(250,127,30)" fg:x="10717" fg:w="305"/><text x="2.4699%" y="607.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (56 samples, 0.01%)</title><rect x="2.2714%" y="581" width="0.0116%" height="15" fill="rgb(230,49,44)" fg:x="10966" fg:w="56"/><text x="2.5214%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (64 samples, 0.01%)</title><rect x="2.2830%" y="597" width="0.0133%" height="15" fill="rgb(229,67,23)" fg:x="11022" fg:w="64"/><text x="2.5330%" y="607.50"></text></g><g><title>LinearScan::resolve_collect_mappings (74 samples, 0.02%)</title><rect x="2.3133%" y="581" width="0.0153%" height="15" fill="rgb(249,83,47)" fg:x="11168" fg:w="74"/><text x="2.5633%" y="591.50"></text></g><g><title>LinearScan::resolve_data_flow (126 samples, 0.03%)</title><rect x="2.3064%" y="597" width="0.0261%" height="15" fill="rgb(215,43,3)" fg:x="11135" fg:w="126"/><text x="2.5564%" y="607.50"></text></g><g><title>LinearScan::do_linear_scan (3,166 samples, 0.66%)</title><rect x="1.7031%" y="613" width="0.6558%" height="15" fill="rgb(238,154,13)" fg:x="8222" fg:w="3166"/><text x="1.9531%" y="623.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (51 samples, 0.01%)</title><rect x="2.3483%" y="597" width="0.0106%" height="15" fill="rgb(219,56,2)" fg:x="11337" fg:w="51"/><text x="2.5983%" y="607.50"></text></g><g><title>Compilation::emit_lir (4,098 samples, 0.85%)</title><rect x="1.5110%" y="629" width="0.8488%" height="15" fill="rgb(233,0,4)" fg:x="7295" fg:w="4098"/><text x="1.7610%" y="639.50"></text></g><g><title>MethodData::allocate (65 samples, 0.01%)</title><rect x="2.3665%" y="581" width="0.0135%" height="15" fill="rgb(235,30,7)" fg:x="11425" fg:w="65"/><text x="2.6165%" y="591.50"></text></g><g><title>Method::build_interpreter_method_data (67 samples, 0.01%)</title><rect x="2.3663%" y="597" width="0.0139%" height="15" fill="rgb(250,79,13)" fg:x="11424" fg:w="67"/><text x="2.6163%" y="607.50"></text></g><g><title>Compilation::compile_java_method (9,654 samples, 2.00%)</title><rect x="0.3915%" y="645" width="1.9997%" height="15" fill="rgb(211,146,34)" fg:x="1890" fg:w="9654"/><text x="0.6415%" y="655.50">C..</text></g><g><title>ciMethod::ensure_method_data (124 samples, 0.03%)</title><rect x="2.3655%" y="629" width="0.0257%" height="15" fill="rgb(228,22,38)" fg:x="11420" fg:w="124"/><text x="2.6155%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (120 samples, 0.02%)</title><rect x="2.3663%" y="613" width="0.0249%" height="15" fill="rgb(235,168,5)" fg:x="11424" fg:w="120"/><text x="2.6163%" y="623.50"></text></g><g><title>Compilation::initialize (50 samples, 0.01%)</title><rect x="2.3912%" y="645" width="0.0104%" height="15" fill="rgb(221,155,16)" fg:x="11544" fg:w="50"/><text x="2.6412%" y="655.50"></text></g><g><title>CodeBuffer::finalize_oop_references (65 samples, 0.01%)</title><rect x="2.4140%" y="613" width="0.0135%" height="15" fill="rgb(215,215,53)" fg:x="11654" fg:w="65"/><text x="2.6640%" y="623.50"></text></g><g><title>CodeCache::allocate (55 samples, 0.01%)</title><rect x="2.4274%" y="613" width="0.0114%" height="15" fill="rgb(223,4,10)" fg:x="11719" fg:w="55"/><text x="2.6774%" y="623.50"></text></g><g><title>CodeBuffer::relocate_code_to (158 samples, 0.03%)</title><rect x="2.4525%" y="581" width="0.0327%" height="15" fill="rgb(234,103,6)" fg:x="11840" fg:w="158"/><text x="2.7025%" y="591.50"></text></g><g><title>CodeBuffer::copy_code_to (171 samples, 0.04%)</title><rect x="2.4519%" y="597" width="0.0354%" height="15" fill="rgb(227,97,0)" fg:x="11837" fg:w="171"/><text x="2.7019%" y="607.50"></text></g><g><title>nmethod::nmethod (327 samples, 0.07%)</title><rect x="2.4502%" y="613" width="0.0677%" height="15" fill="rgb(234,150,53)" fg:x="11829" fg:w="327"/><text x="2.7002%" y="623.50"></text></g><g><title>nmethod::new_nmethod (509 samples, 0.11%)</title><rect x="2.4127%" y="629" width="0.1054%" height="15" fill="rgb(228,201,54)" fg:x="11648" fg:w="509"/><text x="2.6627%" y="639.50"></text></g><g><title>ciEnv::register_method (564 samples, 0.12%)</title><rect x="2.4017%" y="645" width="0.1168%" height="15" fill="rgb(222,22,37)" fg:x="11595" fg:w="564"/><text x="2.6517%" y="655.50"></text></g><g><title>Compilation::compile_method (10,273 samples, 2.13%)</title><rect x="0.3913%" y="661" width="2.1279%" height="15" fill="rgb(237,53,32)" fg:x="1889" fg:w="10273"/><text x="0.6413%" y="671.50">C..</text></g><g><title>Compilation::Compilation (10,294 samples, 2.13%)</title><rect x="0.3894%" y="677" width="2.1322%" height="15" fill="rgb(233,25,53)" fg:x="1880" fg:w="10294"/><text x="0.6394%" y="687.50">C..</text></g><g><title>Compiler::compile_method (10,313 samples, 2.14%)</title><rect x="0.3859%" y="693" width="2.1362%" height="15" fill="rgb(210,40,34)" fg:x="1863" fg:w="10313"/><text x="0.6359%" y="703.50">C..</text></g><g><title>ciEnv::ciEnv (99 samples, 0.02%)</title><rect x="2.5310%" y="693" width="0.0205%" height="15" fill="rgb(241,220,44)" fg:x="12219" fg:w="99"/><text x="2.7810%" y="703.50"></text></g><g><title>ciObjectFactory::get (54 samples, 0.01%)</title><rect x="2.5403%" y="677" width="0.0112%" height="15" fill="rgb(235,28,35)" fg:x="12264" fg:w="54"/><text x="2.7903%" y="687.50"></text></g><g><title>ciMethod::ciMethod (106 samples, 0.02%)</title><rect x="2.5531%" y="645" width="0.0220%" height="15" fill="rgb(210,56,17)" fg:x="12326" fg:w="106"/><text x="2.8031%" y="655.50"></text></g><g><title>ciSignature::ciSignature (96 samples, 0.02%)</title><rect x="2.5552%" y="629" width="0.0199%" height="15" fill="rgb(224,130,29)" fg:x="12336" fg:w="96"/><text x="2.8052%" y="639.50"></text></g><g><title>ciEnv::get_method_from_handle (124 samples, 0.03%)</title><rect x="2.5515%" y="693" width="0.0257%" height="15" fill="rgb(235,212,8)" fg:x="12318" fg:w="124"/><text x="2.8015%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (119 samples, 0.02%)</title><rect x="2.5525%" y="677" width="0.0246%" height="15" fill="rgb(223,33,50)" fg:x="12323" fg:w="119"/><text x="2.8025%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (117 samples, 0.02%)</title><rect x="2.5529%" y="661" width="0.0242%" height="15" fill="rgb(219,149,13)" fg:x="12325" fg:w="117"/><text x="2.8029%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,895 samples, 2.26%)</title><rect x="0.3306%" y="709" width="2.2567%" height="15" fill="rgb(250,156,29)" fg:x="1596" fg:w="10895"/><text x="0.5806%" y="719.50">C..</text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="2.6043%" y="517" width="0.0135%" height="15" fill="rgb(216,193,19)" fg:x="12573" fg:w="65"/><text x="2.8543%" y="527.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="2.6056%" y="501" width="0.0122%" height="15" fill="rgb(216,135,14)" fg:x="12579" fg:w="59"/><text x="2.8556%" y="511.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="2.6058%" y="485" width="0.0120%" height="15" fill="rgb(241,47,5)" fg:x="12580" fg:w="58"/><text x="2.8558%" y="495.50"></text></g><g><title>do_futex (74 samples, 0.02%)</title><rect x="2.6041%" y="549" width="0.0153%" height="15" fill="rgb(233,42,35)" fg:x="12572" fg:w="74"/><text x="2.8541%" y="559.50"></text></g><g><title>futex_wait (74 samples, 0.02%)</title><rect x="2.6041%" y="533" width="0.0153%" height="15" fill="rgb(231,13,6)" fg:x="12572" fg:w="74"/><text x="2.8541%" y="543.50"></text></g><g><title>__pthread_cond_timedwait (79 samples, 0.02%)</title><rect x="2.6033%" y="645" width="0.0164%" height="15" fill="rgb(207,181,40)" fg:x="12568" fg:w="79"/><text x="2.8533%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (79 samples, 0.02%)</title><rect x="2.6033%" y="629" width="0.0164%" height="15" fill="rgb(254,173,49)" fg:x="12568" fg:w="79"/><text x="2.8533%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (77 samples, 0.02%)</title><rect x="2.6037%" y="613" width="0.0159%" height="15" fill="rgb(221,1,38)" fg:x="12570" fg:w="77"/><text x="2.8537%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.02%)</title><rect x="2.6039%" y="597" width="0.0157%" height="15" fill="rgb(206,124,46)" fg:x="12571" fg:w="76"/><text x="2.8539%" y="607.50"></text></g><g><title>do_syscall_64 (75 samples, 0.02%)</title><rect x="2.6041%" y="581" width="0.0155%" height="15" fill="rgb(249,21,11)" fg:x="12572" fg:w="75"/><text x="2.8541%" y="591.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.02%)</title><rect x="2.6041%" y="565" width="0.0155%" height="15" fill="rgb(222,201,40)" fg:x="12572" fg:w="75"/><text x="2.8541%" y="575.50"></text></g><g><title>Monitor::wait (100 samples, 0.02%)</title><rect x="2.6004%" y="693" width="0.0207%" height="15" fill="rgb(235,61,29)" fg:x="12554" fg:w="100"/><text x="2.8504%" y="703.50"></text></g><g><title>Monitor::IWait (94 samples, 0.02%)</title><rect x="2.6016%" y="677" width="0.0195%" height="15" fill="rgb(219,207,3)" fg:x="12560" fg:w="94"/><text x="2.8516%" y="687.50"></text></g><g><title>os::PlatformEvent::park (89 samples, 0.02%)</title><rect x="2.6027%" y="661" width="0.0184%" height="15" fill="rgb(222,56,46)" fg:x="12565" fg:w="89"/><text x="2.8527%" y="671.50"></text></g><g><title>TieredThresholdPolicy::select_task (49 samples, 0.01%)</title><rect x="2.6211%" y="693" width="0.0101%" height="15" fill="rgb(239,76,54)" fg:x="12654" fg:w="49"/><text x="2.8711%" y="703.50"></text></g><g><title>CompileQueue::get (172 samples, 0.04%)</title><rect x="2.5962%" y="709" width="0.0356%" height="15" fill="rgb(231,124,27)" fg:x="12534" fg:w="172"/><text x="2.8462%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,132 samples, 2.31%)</title><rect x="0.3289%" y="725" width="2.3058%" height="15" fill="rgb(249,195,6)" fg:x="1588" fg:w="11132"/><text x="0.5789%" y="735.50">C..</text></g><g><title>__GI___clone (11,133 samples, 2.31%)</title><rect x="0.3289%" y="805" width="2.3060%" height="15" fill="rgb(237,174,47)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="815.50">_..</text></g><g><title>start_thread (11,133 samples, 2.31%)</title><rect x="0.3289%" y="789" width="2.3060%" height="15" fill="rgb(206,201,31)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="799.50">s..</text></g><g><title>thread_native_entry (11,133 samples, 2.31%)</title><rect x="0.3289%" y="773" width="2.3060%" height="15" fill="rgb(231,57,52)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="783.50">t..</text></g><g><title>Thread::call_run (11,133 samples, 2.31%)</title><rect x="0.3289%" y="757" width="2.3060%" height="15" fill="rgb(248,177,22)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="767.50">T..</text></g><g><title>JavaThread::thread_main_inner (11,133 samples, 2.31%)</title><rect x="0.3289%" y="741" width="2.3060%" height="15" fill="rgb(215,211,37)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="751.50">J..</text></g><g><title>C1_CompilerThre (12,725 samples, 2.64%)</title><rect x="0.0083%" y="821" width="2.6358%" height="15" fill="rgb(241,128,51)" fg:x="40" fg:w="12725"/><text x="0.2583%" y="831.50">C1..</text></g><g><title>ProjNode::pinned (65 samples, 0.01%)</title><rect x="2.6915%" y="789" width="0.0135%" height="15" fill="rgb(227,165,31)" fg:x="12994" fg:w="65"/><text x="2.9415%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (68 samples, 0.01%)</title><rect x="2.6911%" y="805" width="0.0141%" height="15" fill="rgb(228,167,24)" fg:x="12992" fg:w="68"/><text x="2.9411%" y="815.50"></text></g><g><title>MultiNode::is_CFG (61 samples, 0.01%)</title><rect x="2.9542%" y="789" width="0.0126%" height="15" fill="rgb(228,143,12)" fg:x="14262" fg:w="61"/><text x="3.2042%" y="799.50"></text></g><g><title>Node::is_CFG (63 samples, 0.01%)</title><rect x="2.9834%" y="789" width="0.0130%" height="15" fill="rgb(249,149,8)" fg:x="14403" fg:w="63"/><text x="3.2334%" y="799.50"></text></g><g><title>_dl_update_slotinfo (210 samples, 0.04%)</title><rect x="3.2122%" y="789" width="0.0435%" height="15" fill="rgb(243,35,44)" fg:x="15508" fg:w="210"/><text x="3.4622%" y="799.50"></text></g><g><title>update_get_addr (64 samples, 0.01%)</title><rect x="3.3676%" y="789" width="0.0133%" height="15" fill="rgb(246,89,9)" fg:x="16258" fg:w="64"/><text x="3.6176%" y="799.50"></text></g><g><title>[anon] (3,228 samples, 0.67%)</title><rect x="2.7137%" y="805" width="0.6686%" height="15" fill="rgb(233,213,13)" fg:x="13101" fg:w="3228"/><text x="2.9637%" y="815.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.01%)</title><rect x="3.4175%" y="517" width="0.0110%" height="15" fill="rgb(233,141,41)" fg:x="16499" fg:w="53"/><text x="3.6675%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (54 samples, 0.01%)</title><rect x="3.4175%" y="533" width="0.0112%" height="15" fill="rgb(239,167,4)" fg:x="16499" fg:w="54"/><text x="3.6675%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (96 samples, 0.02%)</title><rect x="3.4109%" y="549" width="0.0199%" height="15" fill="rgb(209,217,16)" fg:x="16467" fg:w="96"/><text x="3.6609%" y="559.50"></text></g><g><title>ciTypeFlow::df_flow_types (113 samples, 0.02%)</title><rect x="3.4076%" y="581" width="0.0234%" height="15" fill="rgb(219,88,35)" fg:x="16451" fg:w="113"/><text x="3.6576%" y="591.50"></text></g><g><title>ciTypeFlow::flow_block (111 samples, 0.02%)</title><rect x="3.4080%" y="565" width="0.0230%" height="15" fill="rgb(220,193,23)" fg:x="16453" fg:w="111"/><text x="3.6580%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (121 samples, 0.03%)</title><rect x="3.4065%" y="645" width="0.0251%" height="15" fill="rgb(230,90,52)" fg:x="16446" fg:w="121"/><text x="3.6565%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (119 samples, 0.02%)</title><rect x="3.4070%" y="629" width="0.0246%" height="15" fill="rgb(252,106,19)" fg:x="16448" fg:w="119"/><text x="3.6570%" y="639.50"></text></g><g><title>ciTypeFlow::do_flow (119 samples, 0.02%)</title><rect x="3.4070%" y="613" width="0.0246%" height="15" fill="rgb(206,74,20)" fg:x="16448" fg:w="119"/><text x="3.6570%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (119 samples, 0.02%)</title><rect x="3.4070%" y="597" width="0.0246%" height="15" fill="rgb(230,138,44)" fg:x="16448" fg:w="119"/><text x="3.6570%" y="607.50"></text></g><g><title>Compile::call_generator (171 samples, 0.04%)</title><rect x="3.3974%" y="661" width="0.0354%" height="15" fill="rgb(235,182,43)" fg:x="16402" fg:w="171"/><text x="3.6474%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (71 samples, 0.01%)</title><rect x="3.4565%" y="453" width="0.0147%" height="15" fill="rgb(242,16,51)" fg:x="16687" fg:w="71"/><text x="3.7065%" y="463.50"></text></g><g><title>ciTypeFlow::flow_block (77 samples, 0.02%)</title><rect x="3.4554%" y="469" width="0.0159%" height="15" fill="rgb(248,9,4)" fg:x="16682" fg:w="77"/><text x="3.7054%" y="479.50"></text></g><g><title>ciTypeFlow::df_flow_types (89 samples, 0.02%)</title><rect x="3.4531%" y="485" width="0.0184%" height="15" fill="rgb(210,31,22)" fg:x="16671" fg:w="89"/><text x="3.7031%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (118 samples, 0.02%)</title><rect x="3.4482%" y="549" width="0.0244%" height="15" fill="rgb(239,54,39)" fg:x="16647" fg:w="118"/><text x="3.6982%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (98 samples, 0.02%)</title><rect x="3.4523%" y="533" width="0.0203%" height="15" fill="rgb(230,99,41)" fg:x="16667" fg:w="98"/><text x="3.7023%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (94 samples, 0.02%)</title><rect x="3.4531%" y="517" width="0.0195%" height="15" fill="rgb(253,106,12)" fg:x="16671" fg:w="94"/><text x="3.7031%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (94 samples, 0.02%)</title><rect x="3.4531%" y="501" width="0.0195%" height="15" fill="rgb(213,46,41)" fg:x="16671" fg:w="94"/><text x="3.7031%" y="511.50"></text></g><g><title>Compile::call_generator (146 samples, 0.03%)</title><rect x="3.4440%" y="565" width="0.0302%" height="15" fill="rgb(215,133,35)" fg:x="16627" fg:w="146"/><text x="3.6940%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (59 samples, 0.01%)</title><rect x="3.5068%" y="453" width="0.0122%" height="15" fill="rgb(213,28,5)" fg:x="16930" fg:w="59"/><text x="3.7568%" y="463.50"></text></g><g><title>Compile::call_generator (65 samples, 0.01%)</title><rect x="3.5060%" y="469" width="0.0135%" height="15" fill="rgb(215,77,49)" fg:x="16926" fg:w="65"/><text x="3.7560%" y="479.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="3.5650%" y="325" width="0.0116%" height="15" fill="rgb(248,100,22)" fg:x="17211" fg:w="56"/><text x="3.8150%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="3.5658%" y="309" width="0.0108%" height="15" fill="rgb(208,67,9)" fg:x="17215" fg:w="52"/><text x="3.8158%" y="319.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.01%)</title><rect x="3.5650%" y="341" width="0.0122%" height="15" fill="rgb(219,133,21)" fg:x="17211" fg:w="59"/><text x="3.8150%" y="351.50"></text></g><g><title>ParseGenerator::generate (114 samples, 0.02%)</title><rect x="3.5584%" y="373" width="0.0236%" height="15" fill="rgb(246,46,29)" fg:x="17179" fg:w="114"/><text x="3.8084%" y="383.50"></text></g><g><title>Parse::Parse (113 samples, 0.02%)</title><rect x="3.5586%" y="357" width="0.0234%" height="15" fill="rgb(246,185,52)" fg:x="17180" fg:w="113"/><text x="3.8086%" y="367.50"></text></g><g><title>Parse::do_call (209 samples, 0.04%)</title><rect x="3.5428%" y="389" width="0.0433%" height="15" fill="rgb(252,136,11)" fg:x="17104" fg:w="209"/><text x="3.7928%" y="399.50"></text></g><g><title>Parse::do_field_access (50 samples, 0.01%)</title><rect x="3.5876%" y="389" width="0.0104%" height="15" fill="rgb(219,138,53)" fg:x="17320" fg:w="50"/><text x="3.8376%" y="399.50"></text></g><g><title>Parse::do_one_block (354 samples, 0.07%)</title><rect x="3.5368%" y="421" width="0.0733%" height="15" fill="rgb(211,51,23)" fg:x="17075" fg:w="354"/><text x="3.7868%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (346 samples, 0.07%)</title><rect x="3.5385%" y="405" width="0.0717%" height="15" fill="rgb(247,221,28)" fg:x="17083" fg:w="346"/><text x="3.7885%" y="415.50"></text></g><g><title>Parse::do_all_blocks (366 samples, 0.08%)</title><rect x="3.5360%" y="437" width="0.0758%" height="15" fill="rgb(251,222,45)" fg:x="17071" fg:w="366"/><text x="3.7860%" y="447.50"></text></g><g><title>ParseGenerator::generate (418 samples, 0.09%)</title><rect x="3.5288%" y="469" width="0.0866%" height="15" fill="rgb(217,162,53)" fg:x="17036" fg:w="418"/><text x="3.7788%" y="479.50"></text></g><g><title>Parse::Parse (415 samples, 0.09%)</title><rect x="3.5294%" y="453" width="0.0860%" height="15" fill="rgb(229,93,14)" fg:x="17039" fg:w="415"/><text x="3.7794%" y="463.50"></text></g><g><title>Parse::do_call (603 samples, 0.12%)</title><rect x="3.5053%" y="485" width="0.1249%" height="15" fill="rgb(209,67,49)" fg:x="16923" fg:w="603"/><text x="3.7553%" y="495.50"></text></g><g><title>GraphKit::access_store_at (55 samples, 0.01%)</title><rect x="3.6406%" y="453" width="0.0114%" height="15" fill="rgb(213,87,29)" fg:x="17576" fg:w="55"/><text x="3.8906%" y="463.50"></text></g><g><title>BarrierSetC2::store_at (55 samples, 0.01%)</title><rect x="3.6406%" y="437" width="0.0114%" height="15" fill="rgb(205,151,52)" fg:x="17576" fg:w="55"/><text x="3.8906%" y="447.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (51 samples, 0.01%)</title><rect x="3.6414%" y="421" width="0.0106%" height="15" fill="rgb(253,215,39)" fg:x="17580" fg:w="51"/><text x="3.8914%" y="431.50"></text></g><g><title>Parse::do_put_xxx (58 samples, 0.01%)</title><rect x="3.6406%" y="469" width="0.0120%" height="15" fill="rgb(221,220,41)" fg:x="17576" fg:w="58"/><text x="3.8906%" y="479.50"></text></g><g><title>Parse::do_field_access (121 samples, 0.03%)</title><rect x="3.6315%" y="485" width="0.0251%" height="15" fill="rgb(218,133,21)" fg:x="17532" fg:w="121"/><text x="3.8815%" y="495.50"></text></g><g><title>Parse::do_one_block (854 samples, 0.18%)</title><rect x="3.4971%" y="517" width="0.1769%" height="15" fill="rgb(221,193,43)" fg:x="16883" fg:w="854"/><text x="3.7471%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (839 samples, 0.17%)</title><rect x="3.5002%" y="501" width="0.1738%" height="15" fill="rgb(240,128,52)" fg:x="16898" fg:w="839"/><text x="3.7502%" y="511.50"></text></g><g><title>Parse::do_all_blocks (865 samples, 0.18%)</title><rect x="3.4971%" y="533" width="0.1792%" height="15" fill="rgb(253,114,12)" fg:x="16883" fg:w="865"/><text x="3.7471%" y="543.50"></text></g><g><title>Parse::Parse (935 samples, 0.19%)</title><rect x="3.4902%" y="549" width="0.1937%" height="15" fill="rgb(215,223,47)" fg:x="16850" fg:w="935"/><text x="3.7402%" y="559.50"></text></g><g><title>ParseGenerator::generate (937 samples, 0.19%)</title><rect x="3.4900%" y="565" width="0.1941%" height="15" fill="rgb(248,225,23)" fg:x="16849" fg:w="937"/><text x="3.7400%" y="575.50"></text></g><g><title>Parse::do_call (71 samples, 0.01%)</title><rect x="3.6887%" y="469" width="0.0147%" height="15" fill="rgb(250,108,0)" fg:x="17808" fg:w="71"/><text x="3.9387%" y="479.50"></text></g><g><title>Parse::do_one_block (97 samples, 0.02%)</title><rect x="3.6870%" y="501" width="0.0201%" height="15" fill="rgb(228,208,7)" fg:x="17800" fg:w="97"/><text x="3.9370%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="3.6872%" y="485" width="0.0199%" height="15" fill="rgb(244,45,10)" fg:x="17801" fg:w="96"/><text x="3.9372%" y="495.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.02%)</title><rect x="3.6870%" y="517" width="0.0203%" height="15" fill="rgb(207,125,25)" fg:x="17800" fg:w="98"/><text x="3.9370%" y="527.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.02%)</title><rect x="3.6866%" y="549" width="0.0220%" height="15" fill="rgb(210,195,18)" fg:x="17798" fg:w="106"/><text x="3.9366%" y="559.50"></text></g><g><title>Parse::Parse (106 samples, 0.02%)</title><rect x="3.6866%" y="533" width="0.0220%" height="15" fill="rgb(249,80,12)" fg:x="17798" fg:w="106"/><text x="3.9366%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (133 samples, 0.03%)</title><rect x="3.6843%" y="565" width="0.0275%" height="15" fill="rgb(221,65,9)" fg:x="17787" fg:w="133"/><text x="3.9343%" y="575.50"></text></g><g><title>Parse::do_call (1,315 samples, 0.27%)</title><rect x="3.4440%" y="581" width="0.2724%" height="15" fill="rgb(235,49,36)" fg:x="16627" fg:w="1315"/><text x="3.6940%" y="591.50"></text></g><g><title>Parse::do_get_xxx (50 samples, 0.01%)</title><rect x="3.7195%" y="565" width="0.0104%" height="15" fill="rgb(225,32,20)" fg:x="17957" fg:w="50"/><text x="3.9695%" y="575.50"></text></g><g><title>GraphKit::access_store_at (59 samples, 0.01%)</title><rect x="3.7303%" y="549" width="0.0122%" height="15" fill="rgb(215,141,46)" fg:x="18009" fg:w="59"/><text x="3.9803%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (59 samples, 0.01%)</title><rect x="3.7303%" y="533" width="0.0122%" height="15" fill="rgb(250,160,47)" fg:x="18009" fg:w="59"/><text x="3.9803%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (54 samples, 0.01%)</title><rect x="3.7313%" y="517" width="0.0112%" height="15" fill="rgb(216,222,40)" fg:x="18014" fg:w="54"/><text x="3.9813%" y="527.50"></text></g><g><title>Parse::do_put_xxx (63 samples, 0.01%)</title><rect x="3.7299%" y="565" width="0.0130%" height="15" fill="rgb(234,217,39)" fg:x="18007" fg:w="63"/><text x="3.9799%" y="575.50"></text></g><g><title>Parse::do_field_access (122 samples, 0.03%)</title><rect x="3.7181%" y="581" width="0.0253%" height="15" fill="rgb(207,178,40)" fg:x="17950" fg:w="122"/><text x="3.9681%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,538 samples, 0.32%)</title><rect x="3.4364%" y="629" width="0.3186%" height="15" fill="rgb(221,136,13)" fg:x="16590" fg:w="1538"/><text x="3.6864%" y="639.50"></text></g><g><title>Parse::do_one_block (1,537 samples, 0.32%)</title><rect x="3.4366%" y="613" width="0.3184%" height="15" fill="rgb(249,199,10)" fg:x="16591" fg:w="1537"/><text x="3.6866%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (1,535 samples, 0.32%)</title><rect x="3.4370%" y="597" width="0.3180%" height="15" fill="rgb(249,222,13)" fg:x="16593" fg:w="1535"/><text x="3.6870%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,559 samples, 0.32%)</title><rect x="3.4335%" y="661" width="0.3229%" height="15" fill="rgb(244,185,38)" fg:x="16576" fg:w="1559"/><text x="3.6835%" y="671.50"></text></g><g><title>Parse::Parse (1,559 samples, 0.32%)</title><rect x="3.4335%" y="645" width="0.3229%" height="15" fill="rgb(236,202,9)" fg:x="16576" fg:w="1559"/><text x="3.6835%" y="655.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="3.7777%" y="405" width="0.0110%" height="15" fill="rgb(250,229,37)" fg:x="18238" fg:w="53"/><text x="4.0277%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="3.7779%" y="389" width="0.0108%" height="15" fill="rgb(206,174,23)" fg:x="18239" fg:w="52"/><text x="4.0279%" y="399.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="3.7775%" y="421" width="0.0116%" height="15" fill="rgb(211,33,43)" fg:x="18237" fg:w="56"/><text x="4.0275%" y="431.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.01%)</title><rect x="3.7769%" y="453" width="0.0128%" height="15" fill="rgb(245,58,50)" fg:x="18234" fg:w="62"/><text x="4.0269%" y="463.50"></text></g><g><title>Parse::Parse (62 samples, 0.01%)</title><rect x="3.7769%" y="437" width="0.0128%" height="15" fill="rgb(244,68,36)" fg:x="18234" fg:w="62"/><text x="4.0269%" y="447.50"></text></g><g><title>Parse::do_call (96 samples, 0.02%)</title><rect x="3.7715%" y="469" width="0.0199%" height="15" fill="rgb(232,229,15)" fg:x="18208" fg:w="96"/><text x="4.0215%" y="479.50"></text></g><g><title>Parse::do_all_blocks (149 samples, 0.03%)</title><rect x="3.7670%" y="517" width="0.0309%" height="15" fill="rgb(254,30,23)" fg:x="18186" fg:w="149"/><text x="4.0170%" y="527.50"></text></g><g><title>Parse::do_one_block (148 samples, 0.03%)</title><rect x="3.7672%" y="501" width="0.0307%" height="15" fill="rgb(235,160,14)" fg:x="18187" fg:w="148"/><text x="4.0172%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (144 samples, 0.03%)</title><rect x="3.7680%" y="485" width="0.0298%" height="15" fill="rgb(212,155,44)" fg:x="18191" fg:w="144"/><text x="4.0180%" y="495.50"></text></g><g><title>ParseGenerator::generate (167 samples, 0.03%)</title><rect x="3.7647%" y="549" width="0.0346%" height="15" fill="rgb(226,2,50)" fg:x="18175" fg:w="167"/><text x="4.0147%" y="559.50"></text></g><g><title>Parse::Parse (167 samples, 0.03%)</title><rect x="3.7647%" y="533" width="0.0346%" height="15" fill="rgb(234,177,6)" fg:x="18175" fg:w="167"/><text x="4.0147%" y="543.50"></text></g><g><title>Parse::do_call (232 samples, 0.05%)</title><rect x="3.7583%" y="565" width="0.0481%" height="15" fill="rgb(217,24,9)" fg:x="18144" fg:w="232"/><text x="4.0083%" y="575.50"></text></g><g><title>Parse::do_one_block (281 samples, 0.06%)</title><rect x="3.7568%" y="597" width="0.0582%" height="15" fill="rgb(220,13,46)" fg:x="18137" fg:w="281"/><text x="4.0068%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (280 samples, 0.06%)</title><rect x="3.7570%" y="581" width="0.0580%" height="15" fill="rgb(239,221,27)" fg:x="18138" fg:w="280"/><text x="4.0070%" y="591.50"></text></g><g><title>Parse::do_all_blocks (283 samples, 0.06%)</title><rect x="3.7568%" y="613" width="0.0586%" height="15" fill="rgb(222,198,25)" fg:x="18137" fg:w="283"/><text x="4.0068%" y="623.50"></text></g><g><title>ParseGenerator::generate (289 samples, 0.06%)</title><rect x="3.7564%" y="645" width="0.0599%" height="15" fill="rgb(211,99,13)" fg:x="18135" fg:w="289"/><text x="4.0064%" y="655.50"></text></g><g><title>Parse::Parse (289 samples, 0.06%)</title><rect x="3.7564%" y="629" width="0.0599%" height="15" fill="rgb(232,111,31)" fg:x="18135" fg:w="289"/><text x="4.0064%" y="639.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="3.8165%" y="597" width="0.0114%" height="15" fill="rgb(245,82,37)" fg:x="18425" fg:w="55"/><text x="4.0665%" y="607.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="3.8165%" y="581" width="0.0114%" height="15" fill="rgb(227,149,46)" fg:x="18425" fg:w="55"/><text x="4.0665%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="3.8167%" y="565" width="0.0112%" height="15" fill="rgb(218,36,50)" fg:x="18426" fg:w="54"/><text x="4.0667%" y="575.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="3.8163%" y="629" width="0.0126%" height="15" fill="rgb(226,80,48)" fg:x="18424" fg:w="61"/><text x="4.0663%" y="639.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="3.8163%" y="613" width="0.0126%" height="15" fill="rgb(238,224,15)" fg:x="18424" fg:w="61"/><text x="4.0663%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (62 samples, 0.01%)</title><rect x="3.8163%" y="645" width="0.0128%" height="15" fill="rgb(241,136,10)" fg:x="18424" fg:w="62"/><text x="4.0663%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (353 samples, 0.07%)</title><rect x="3.7564%" y="661" width="0.0731%" height="15" fill="rgb(208,32,45)" fg:x="18135" fg:w="353"/><text x="4.0064%" y="671.50"></text></g><g><title>Parse::do_call (2,099 samples, 0.43%)</title><rect x="3.3974%" y="677" width="0.4348%" height="15" fill="rgb(207,135,9)" fg:x="16402" fg:w="2099"/><text x="3.6474%" y="687.50"></text></g><g><title>Parse::do_all_blocks (2,113 samples, 0.44%)</title><rect x="3.3970%" y="725" width="0.4377%" height="15" fill="rgb(206,86,44)" fg:x="16400" fg:w="2113"/><text x="3.6470%" y="735.50"></text></g><g><title>Parse::do_one_block (2,113 samples, 0.44%)</title><rect x="3.3970%" y="709" width="0.4377%" height="15" fill="rgb(245,177,15)" fg:x="16400" fg:w="2113"/><text x="3.6470%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (2,113 samples, 0.44%)</title><rect x="3.3970%" y="693" width="0.4377%" height="15" fill="rgb(206,64,50)" fg:x="16400" fg:w="2113"/><text x="3.6470%" y="703.50"></text></g><g><title>C2Compiler::compile_method (2,143 samples, 0.44%)</title><rect x="3.3910%" y="789" width="0.4439%" height="15" fill="rgb(234,36,40)" fg:x="16371" fg:w="2143"/><text x="3.6410%" y="799.50"></text></g><g><title>Compile::Compile (2,143 samples, 0.44%)</title><rect x="3.3910%" y="773" width="0.4439%" height="15" fill="rgb(213,64,8)" fg:x="16371" fg:w="2143"/><text x="3.6410%" y="783.50"></text></g><g><title>ParseGenerator::generate (2,114 samples, 0.44%)</title><rect x="3.3970%" y="757" width="0.4379%" height="15" fill="rgb(210,75,36)" fg:x="16400" fg:w="2114"/><text x="3.6470%" y="767.50"></text></g><g><title>Parse::Parse (2,114 samples, 0.44%)</title><rect x="3.3970%" y="741" width="0.4379%" height="15" fill="rgb(229,88,21)" fg:x="16400" fg:w="2114"/><text x="3.6470%" y="751.50"></text></g><g><title>Compile::Output (50 samples, 0.01%)</title><rect x="3.8355%" y="773" width="0.0104%" height="15" fill="rgb(252,204,47)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="783.50"></text></g><g><title>Compile::init_buffer (50 samples, 0.01%)</title><rect x="3.8355%" y="757" width="0.0104%" height="15" fill="rgb(208,77,27)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="767.50"></text></g><g><title>Compile::shorten_branches (50 samples, 0.01%)</title><rect x="3.8355%" y="741" width="0.0104%" height="15" fill="rgb(221,76,26)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (50 samples, 0.01%)</title><rect x="3.8355%" y="725" width="0.0104%" height="15" fill="rgb(225,139,18)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="735.50"></text></g><g><title>PhaseCFG::sched_call (177 samples, 0.04%)</title><rect x="3.8593%" y="725" width="0.0367%" height="15" fill="rgb(230,137,11)" fg:x="18632" fg:w="177"/><text x="4.1093%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (179 samples, 0.04%)</title><rect x="3.8593%" y="741" width="0.0371%" height="15" fill="rgb(212,28,1)" fg:x="18632" fg:w="179"/><text x="4.1093%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (231 samples, 0.05%)</title><rect x="3.8496%" y="773" width="0.0478%" height="15" fill="rgb(248,164,17)" fg:x="18585" fg:w="231"/><text x="4.0996%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (231 samples, 0.05%)</title><rect x="3.8496%" y="757" width="0.0478%" height="15" fill="rgb(222,171,42)" fg:x="18585" fg:w="231"/><text x="4.0996%" y="767.50"></text></g><g><title>Compile::Code_Gen (346 samples, 0.07%)</title><rect x="3.8355%" y="789" width="0.0717%" height="15" fill="rgb(243,84,45)" fg:x="18517" fg:w="346"/><text x="4.0855%" y="799.50"></text></g><g><title>OopFlow::compute_reach (175 samples, 0.04%)</title><rect x="4.0128%" y="725" width="0.0362%" height="15" fill="rgb(252,49,23)" fg:x="19373" fg:w="175"/><text x="4.2628%" y="735.50"></text></g><g><title>OopFlow::build_oop_map (100 samples, 0.02%)</title><rect x="4.0284%" y="709" width="0.0207%" height="15" fill="rgb(215,19,7)" fg:x="19448" fg:w="100"/><text x="4.2784%" y="719.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (83 samples, 0.02%)</title><rect x="4.0530%" y="725" width="0.0172%" height="15" fill="rgb(238,81,41)" fg:x="19567" fg:w="83"/><text x="4.3030%" y="735.50"></text></g><g><title>Compile::BuildOopMaps (773 samples, 0.16%)</title><rect x="3.9105%" y="741" width="0.1601%" height="15" fill="rgb(210,199,37)" fg:x="18879" fg:w="773"/><text x="4.1605%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (162 samples, 0.03%)</title><rect x="4.1152%" y="709" width="0.0336%" height="15" fill="rgb(244,192,49)" fg:x="19867" fg:w="162"/><text x="4.3652%" y="719.50"></text></g><g><title>Compile::init_buffer (404 samples, 0.08%)</title><rect x="4.0706%" y="741" width="0.0837%" height="15" fill="rgb(226,211,11)" fg:x="19652" fg:w="404"/><text x="4.3206%" y="751.50"></text></g><g><title>Compile::shorten_branches (346 samples, 0.07%)</title><rect x="4.0826%" y="725" width="0.0717%" height="15" fill="rgb(236,162,54)" fg:x="19710" fg:w="346"/><text x="4.3326%" y="735.50"></text></g><g><title>Compile::Output (1,189 samples, 0.25%)</title><rect x="3.9086%" y="757" width="0.2463%" height="15" fill="rgb(220,229,9)" fg:x="18870" fg:w="1189"/><text x="4.1586%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (62 samples, 0.01%)</title><rect x="4.1990%" y="725" width="0.0128%" height="15" fill="rgb(250,87,22)" fg:x="20272" fg:w="62"/><text x="4.4490%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (50 samples, 0.01%)</title><rect x="4.2119%" y="725" width="0.0104%" height="15" fill="rgb(239,43,17)" fg:x="20334" fg:w="50"/><text x="4.4619%" y="735.50"></text></g><g><title>Compile::Process_OopMap_Node (221 samples, 0.05%)</title><rect x="4.1847%" y="741" width="0.0458%" height="15" fill="rgb(231,177,25)" fg:x="20203" fg:w="221"/><text x="4.4347%" y="751.50"></text></g><g><title>Compile::fill_buffer (523 samples, 0.11%)</title><rect x="4.1555%" y="757" width="0.1083%" height="15" fill="rgb(219,179,1)" fg:x="20062" fg:w="523"/><text x="4.4055%" y="767.50"></text></g><g><title>Matcher::find_shared (374 samples, 0.08%)</title><rect x="4.2829%" y="741" width="0.0775%" height="15" fill="rgb(238,219,53)" fg:x="20677" fg:w="374"/><text x="4.5329%" y="751.50"></text></g><g><title>Arena::contains (490 samples, 0.10%)</title><rect x="4.4325%" y="725" width="0.1015%" height="15" fill="rgb(232,167,36)" fg:x="21399" fg:w="490"/><text x="4.6825%" y="735.50"></text></g><g><title>Matcher::match_tree (127 samples, 0.03%)</title><rect x="4.5495%" y="709" width="0.0263%" height="15" fill="rgb(244,19,51)" fg:x="21964" fg:w="127"/><text x="4.7995%" y="719.50"></text></g><g><title>Matcher::match_sfpt (164 samples, 0.03%)</title><rect x="4.5441%" y="725" width="0.0340%" height="15" fill="rgb(224,6,22)" fg:x="21938" fg:w="164"/><text x="4.7941%" y="735.50"></text></g><g><title>Matcher::Label_Root (126 samples, 0.03%)</title><rect x="4.6444%" y="677" width="0.0261%" height="15" fill="rgb(224,145,5)" fg:x="22422" fg:w="126"/><text x="4.8944%" y="687.50"></text></g><g><title>State::DFA (61 samples, 0.01%)</title><rect x="4.6709%" y="677" width="0.0126%" height="15" fill="rgb(234,130,49)" fg:x="22550" fg:w="61"/><text x="4.9209%" y="687.50"></text></g><g><title>Matcher::Label_Root (263 samples, 0.05%)</title><rect x="4.6305%" y="693" width="0.0545%" height="15" fill="rgb(254,6,2)" fg:x="22355" fg:w="263"/><text x="4.8805%" y="703.50"></text></g><g><title>Matcher::Label_Root (413 samples, 0.09%)</title><rect x="4.6162%" y="709" width="0.0855%" height="15" fill="rgb(208,96,46)" fg:x="22286" fg:w="413"/><text x="4.8662%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (52 samples, 0.01%)</title><rect x="4.7134%" y="661" width="0.0108%" height="15" fill="rgb(239,3,39)" fg:x="22755" fg:w="52"/><text x="4.9634%" y="671.50"></text></g><g><title>Matcher::ReduceInst (93 samples, 0.02%)</title><rect x="4.7119%" y="677" width="0.0193%" height="15" fill="rgb(233,210,1)" fg:x="22748" fg:w="93"/><text x="4.9619%" y="687.50"></text></g><g><title>Matcher::ReduceInst_Interior (170 samples, 0.04%)</title><rect x="4.7071%" y="693" width="0.0352%" height="15" fill="rgb(244,137,37)" fg:x="22725" fg:w="170"/><text x="4.9571%" y="703.50"></text></g><g><title>State::MachNodeGenerator (59 samples, 0.01%)</title><rect x="4.7482%" y="693" width="0.0122%" height="15" fill="rgb(240,136,2)" fg:x="22923" fg:w="59"/><text x="4.9982%" y="703.50"></text></g><g><title>Matcher::ReduceInst (325 samples, 0.07%)</title><rect x="4.7018%" y="709" width="0.0673%" height="15" fill="rgb(239,18,37)" fg:x="22699" fg:w="325"/><text x="4.9518%" y="719.50"></text></g><g><title>Matcher::match_tree (932 samples, 0.19%)</title><rect x="4.5781%" y="725" width="0.1930%" height="15" fill="rgb(218,185,22)" fg:x="22102" fg:w="932"/><text x="4.8281%" y="735.50"></text></g><g><title>Node::clone (65 samples, 0.01%)</title><rect x="4.7726%" y="725" width="0.0135%" height="15" fill="rgb(225,218,4)" fg:x="23041" fg:w="65"/><text x="5.0226%" y="735.50"></text></g><g><title>Matcher::xform (2,099 samples, 0.43%)</title><rect x="4.3625%" y="741" width="0.4348%" height="15" fill="rgb(230,182,32)" fg:x="21061" fg:w="2099"/><text x="4.6125%" y="751.50"></text></g><g><title>Matcher::match (2,580 samples, 0.53%)</title><rect x="4.2662%" y="757" width="0.5344%" height="15" fill="rgb(242,56,43)" fg:x="20596" fg:w="2580"/><text x="4.5162%" y="767.50"></text></g><g><title>PhaseBlockLayout::find_edges (60 samples, 0.01%)</title><rect x="4.8008%" y="741" width="0.0124%" height="15" fill="rgb(233,99,24)" fg:x="23177" fg:w="60"/><text x="5.0508%" y="751.50"></text></g><g><title>PhaseBlockLayout::grow_traces (62 samples, 0.01%)</title><rect x="4.8132%" y="741" width="0.0128%" height="15" fill="rgb(234,209,42)" fg:x="23237" fg:w="62"/><text x="5.0632%" y="751.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (161 samples, 0.03%)</title><rect x="4.8008%" y="757" width="0.0333%" height="15" fill="rgb(227,7,12)" fg:x="23177" fg:w="161"/><text x="5.0508%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (153 samples, 0.03%)</title><rect x="4.8341%" y="757" width="0.0317%" height="15" fill="rgb(245,203,43)" fg:x="23338" fg:w="153"/><text x="5.0841%" y="767.50"></text></g><g><title>PhaseCFG::build_cfg (145 samples, 0.03%)</title><rect x="4.8358%" y="741" width="0.0300%" height="15" fill="rgb(238,205,33)" fg:x="23346" fg:w="145"/><text x="5.0858%" y="751.50"></text></g><g><title>PhaseCFG::build_dominator_tree (98 samples, 0.02%)</title><rect x="4.8660%" y="741" width="0.0203%" height="15" fill="rgb(231,56,7)" fg:x="23492" fg:w="98"/><text x="5.1160%" y="751.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (59 samples, 0.01%)</title><rect x="4.8863%" y="741" width="0.0122%" height="15" fill="rgb(244,186,29)" fg:x="23590" fg:w="59"/><text x="5.1363%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (249 samples, 0.05%)</title><rect x="5.0127%" y="709" width="0.0516%" height="15" fill="rgb(234,111,31)" fg:x="24200" fg:w="249"/><text x="5.2627%" y="719.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (105 samples, 0.02%)</title><rect x="5.0642%" y="709" width="0.0217%" height="15" fill="rgb(241,149,10)" fg:x="24449" fg:w="105"/><text x="5.3142%" y="719.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (154 samples, 0.03%)</title><rect x="5.0860%" y="709" width="0.0319%" height="15" fill="rgb(249,206,44)" fg:x="24554" fg:w="154"/><text x="5.3360%" y="719.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (74 samples, 0.02%)</title><rect x="5.1179%" y="709" width="0.0153%" height="15" fill="rgb(251,153,30)" fg:x="24708" fg:w="74"/><text x="5.3679%" y="719.50"></text></g><g><title>PhaseCFG::schedule_late (684 samples, 0.14%)</title><rect x="4.9924%" y="725" width="0.1417%" height="15" fill="rgb(239,152,38)" fg:x="24102" fg:w="684"/><text x="5.2424%" y="735.50"></text></g><g><title>PhaseCFG::select (94 samples, 0.02%)</title><rect x="5.2039%" y="709" width="0.0195%" height="15" fill="rgb(249,139,47)" fg:x="25123" fg:w="94"/><text x="5.4539%" y="719.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (57 samples, 0.01%)</title><rect x="5.2233%" y="709" width="0.0118%" height="15" fill="rgb(244,64,35)" fg:x="25217" fg:w="57"/><text x="5.4733%" y="719.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (56 samples, 0.01%)</title><rect x="5.2351%" y="709" width="0.0116%" height="15" fill="rgb(216,46,15)" fg:x="25274" fg:w="56"/><text x="5.4851%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (554 samples, 0.11%)</title><rect x="5.1340%" y="725" width="0.1148%" height="15" fill="rgb(250,74,19)" fg:x="24786" fg:w="554"/><text x="5.3840%" y="735.50"></text></g><g><title>RegMask::Size (100 samples, 0.02%)</title><rect x="5.3085%" y="709" width="0.0207%" height="15" fill="rgb(249,42,33)" fg:x="25628" fg:w="100"/><text x="5.5585%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (430 samples, 0.09%)</title><rect x="5.2550%" y="725" width="0.0891%" height="15" fill="rgb(242,149,17)" fg:x="25370" fg:w="430"/><text x="5.5050%" y="735.50"></text></g><g><title>PhaseChaitin::mark_ssa (72 samples, 0.01%)</title><rect x="5.3441%" y="725" width="0.0149%" height="15" fill="rgb(244,29,21)" fg:x="25800" fg:w="72"/><text x="5.5941%" y="735.50"></text></g><g><title>IndexSet::initialize (102 samples, 0.02%)</title><rect x="5.3702%" y="709" width="0.0211%" height="15" fill="rgb(220,130,37)" fg:x="25926" fg:w="102"/><text x="5.6202%" y="719.50"></text></g><g><title>PhaseIFG::init (197 samples, 0.04%)</title><rect x="5.3590%" y="725" width="0.0408%" height="15" fill="rgb(211,67,2)" fg:x="25872" fg:w="197"/><text x="5.6090%" y="735.50"></text></g><g><title>IndexSet::initialize (53 samples, 0.01%)</title><rect x="5.4462%" y="709" width="0.0110%" height="15" fill="rgb(235,68,52)" fg:x="26293" fg:w="53"/><text x="5.6962%" y="719.50"></text></g><g><title>PhaseLive::add_livein (190 samples, 0.04%)</title><rect x="5.4574%" y="709" width="0.0394%" height="15" fill="rgb(246,142,3)" fg:x="26347" fg:w="190"/><text x="5.7074%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (58 samples, 0.01%)</title><rect x="5.4847%" y="693" width="0.0120%" height="15" fill="rgb(241,25,7)" fg:x="26479" fg:w="58"/><text x="5.7347%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (53 samples, 0.01%)</title><rect x="5.5338%" y="693" width="0.0110%" height="15" fill="rgb(242,119,39)" fg:x="26716" fg:w="53"/><text x="5.7838%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (93 samples, 0.02%)</title><rect x="5.5489%" y="693" width="0.0193%" height="15" fill="rgb(241,98,45)" fg:x="26789" fg:w="93"/><text x="5.7989%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (352 samples, 0.07%)</title><rect x="5.4967%" y="709" width="0.0729%" height="15" fill="rgb(254,28,30)" fg:x="26537" fg:w="352"/><text x="5.7467%" y="719.50"></text></g><g><title>PhaseLive::compute (822 samples, 0.17%)</title><rect x="5.3998%" y="725" width="0.1703%" height="15" fill="rgb(241,142,54)" fg:x="26069" fg:w="822"/><text x="5.6498%" y="735.50"></text></g><g><title>PhaseCFG::global_code_motion (3,263 samples, 0.68%)</title><rect x="4.8985%" y="741" width="0.6759%" height="15" fill="rgb(222,85,15)" fg:x="23649" fg:w="3263"/><text x="5.1485%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,423 samples, 0.71%)</title><rect x="4.8658%" y="757" width="0.7090%" height="15" fill="rgb(210,85,47)" fg:x="23491" fg:w="3423"/><text x="5.1158%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (75 samples, 0.02%)</title><rect x="5.5802%" y="757" width="0.0155%" height="15" fill="rgb(224,206,25)" fg:x="26940" fg:w="75"/><text x="5.8302%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,123 samples, 0.23%)</title><rect x="5.6225%" y="741" width="0.2326%" height="15" fill="rgb(243,201,19)" fg:x="27144" fg:w="1123"/><text x="5.8725%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (282 samples, 0.06%)</title><rect x="5.9657%" y="725" width="0.0584%" height="15" fill="rgb(236,59,4)" fg:x="28801" fg:w="282"/><text x="6.2157%" y="735.50"></text></g><g><title>PhaseChaitin::bias_color (155 samples, 0.03%)</title><rect x="6.0241%" y="725" width="0.0321%" height="15" fill="rgb(254,179,45)" fg:x="29083" fg:w="155"/><text x="6.2741%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (64 samples, 0.01%)</title><rect x="6.1192%" y="709" width="0.0133%" height="15" fill="rgb(226,14,10)" fg:x="29542" fg:w="64"/><text x="6.3692%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (83 samples, 0.02%)</title><rect x="6.1324%" y="709" width="0.0172%" height="15" fill="rgb(244,27,41)" fg:x="29606" fg:w="83"/><text x="6.3824%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (333 samples, 0.07%)</title><rect x="6.1496%" y="709" width="0.0690%" height="15" fill="rgb(235,35,32)" fg:x="29689" fg:w="333"/><text x="6.3996%" y="719.50"></text></g><g><title>PhaseIFG::re_insert (788 samples, 0.16%)</title><rect x="6.0583%" y="725" width="0.1632%" height="15" fill="rgb(218,68,31)" fg:x="29248" fg:w="788"/><text x="6.3083%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (140 samples, 0.03%)</title><rect x="6.2215%" y="725" width="0.0290%" height="15" fill="rgb(207,120,37)" fg:x="30036" fg:w="140"/><text x="6.4715%" y="735.50"></text></g><g><title>PhaseChaitin::Select (1,922 samples, 0.40%)</title><rect x="5.8551%" y="741" width="0.3981%" height="15" fill="rgb(227,98,0)" fg:x="28267" fg:w="1922"/><text x="6.1051%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (300 samples, 0.06%)</title><rect x="6.3031%" y="725" width="0.0621%" height="15" fill="rgb(207,7,3)" fg:x="30430" fg:w="300"/><text x="6.5531%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (55 samples, 0.01%)</title><rect x="6.4456%" y="709" width="0.0114%" height="15" fill="rgb(206,98,19)" fg:x="31118" fg:w="55"/><text x="6.6956%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (400 samples, 0.08%)</title><rect x="6.4570%" y="709" width="0.0829%" height="15" fill="rgb(217,5,26)" fg:x="31173" fg:w="400"/><text x="6.7070%" y="719.50"></text></g><g><title>PhaseIFG::remove_node (845 samples, 0.18%)</title><rect x="6.3653%" y="725" width="0.1750%" height="15" fill="rgb(235,190,38)" fg:x="30730" fg:w="845"/><text x="6.6153%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,387 samples, 0.29%)</title><rect x="6.2532%" y="741" width="0.2873%" height="15" fill="rgb(247,86,24)" fg:x="30189" fg:w="1387"/><text x="6.5032%" y="751.50"></text></g><g><title>MachNode::rematerialize (175 samples, 0.04%)</title><rect x="7.0612%" y="725" width="0.0362%" height="15" fill="rgb(205,101,16)" fg:x="34090" fg:w="175"/><text x="7.3112%" y="735.50"></text></g><g><title>Node::rematerialize (172 samples, 0.04%)</title><rect x="7.1068%" y="725" width="0.0356%" height="15" fill="rgb(246,168,33)" fg:x="34310" fg:w="172"/><text x="7.3568%" y="735.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (62 samples, 0.01%)</title><rect x="7.1789%" y="709" width="0.0128%" height="15" fill="rgb(231,114,1)" fg:x="34658" fg:w="62"/><text x="7.4289%" y="719.50"></text></g><g><title>PhaseChaitin::split_USE (134 samples, 0.03%)</title><rect x="7.1679%" y="725" width="0.0278%" height="15" fill="rgb(207,184,53)" fg:x="34605" fg:w="134"/><text x="7.4179%" y="735.50"></text></g><g><title>PhaseChaitin::Split (3,244 samples, 0.67%)</title><rect x="6.5405%" y="741" width="0.6719%" height="15" fill="rgb(224,95,51)" fg:x="31576" fg:w="3244"/><text x="6.7905%" y="751.50"></text></g><g><title>IndexSet::IndexSet (286 samples, 0.06%)</title><rect x="7.3752%" y="725" width="0.0592%" height="15" fill="rgb(212,188,45)" fg:x="35606" fg:w="286"/><text x="7.6252%" y="735.50"></text></g><g><title>MachNode::rematerialize (65 samples, 0.01%)</title><rect x="7.4368%" y="725" width="0.0135%" height="15" fill="rgb(223,154,38)" fg:x="35903" fg:w="65"/><text x="7.6868%" y="735.50"></text></g><g><title>MachNode::rematerialize (97 samples, 0.02%)</title><rect x="7.5507%" y="709" width="0.0201%" height="15" fill="rgb(251,22,52)" fg:x="36453" fg:w="97"/><text x="7.8007%" y="719.50"></text></g><g><title>RegMask::is_UP (64 samples, 0.01%)</title><rect x="7.5913%" y="693" width="0.0133%" height="15" fill="rgb(229,209,22)" fg:x="36649" fg:w="64"/><text x="7.8413%" y="703.50"></text></g><g><title>PhaseChaitin::raise_pressure (142 samples, 0.03%)</title><rect x="7.5753%" y="709" width="0.0294%" height="15" fill="rgb(234,138,34)" fg:x="36572" fg:w="142"/><text x="7.8253%" y="719.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (739 samples, 0.15%)</title><rect x="7.4531%" y="725" width="0.1531%" height="15" fill="rgb(212,95,11)" fg:x="35982" fg:w="739"/><text x="7.7031%" y="735.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (50 samples, 0.01%)</title><rect x="7.6062%" y="725" width="0.0104%" height="15" fill="rgb(240,179,47)" fg:x="36721" fg:w="50"/><text x="7.8562%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (141 samples, 0.03%)</title><rect x="7.6741%" y="709" width="0.0292%" height="15" fill="rgb(240,163,11)" fg:x="37049" fg:w="141"/><text x="7.9241%" y="719.50"></text></g><g><title>RegMask::is_UP (77 samples, 0.02%)</title><rect x="7.7033%" y="709" width="0.0159%" height="15" fill="rgb(236,37,12)" fg:x="37190" fg:w="77"/><text x="7.9533%" y="719.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (464 samples, 0.10%)</title><rect x="7.6236%" y="725" width="0.0961%" height="15" fill="rgb(232,164,16)" fg:x="36805" fg:w="464"/><text x="7.8736%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (116 samples, 0.02%)</title><rect x="8.0729%" y="709" width="0.0240%" height="15" fill="rgb(244,205,15)" fg:x="38974" fg:w="116"/><text x="8.3229%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (768 samples, 0.16%)</title><rect x="8.0981%" y="709" width="0.1591%" height="15" fill="rgb(223,117,47)" fg:x="39096" fg:w="768"/><text x="8.3481%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,600 samples, 0.54%)</title><rect x="7.7197%" y="725" width="0.5386%" height="15" fill="rgb(244,107,35)" fg:x="37269" fg:w="2600"/><text x="7.9697%" y="735.50"></text></g><g><title>PhaseChaitin::lower_pressure (90 samples, 0.02%)</title><rect x="8.2583%" y="725" width="0.0186%" height="15" fill="rgb(205,140,8)" fg:x="39869" fg:w="90"/><text x="8.5083%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (181 samples, 0.04%)</title><rect x="8.3780%" y="709" width="0.0375%" height="15" fill="rgb(228,84,46)" fg:x="40447" fg:w="181"/><text x="8.6280%" y="719.50"></text></g><g><title>RegMask::Size (275 samples, 0.06%)</title><rect x="8.4155%" y="709" width="0.0570%" height="15" fill="rgb(254,188,9)" fg:x="40628" fg:w="275"/><text x="8.6655%" y="719.50"></text></g><g><title>RegMask::smear_to_sets (627 samples, 0.13%)</title><rect x="8.4724%" y="709" width="0.1299%" height="15" fill="rgb(206,112,54)" fg:x="40903" fg:w="627"/><text x="8.7224%" y="719.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,580 samples, 0.33%)</title><rect x="8.2769%" y="725" width="0.3273%" height="15" fill="rgb(216,84,49)" fg:x="39959" fg:w="1580"/><text x="8.5269%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (6,809 samples, 1.41%)</title><rect x="7.2131%" y="741" width="1.4104%" height="15" fill="rgb(214,194,35)" fg:x="34823" fg:w="6809"/><text x="7.4631%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (68 samples, 0.01%)</title><rect x="8.7061%" y="709" width="0.0141%" height="15" fill="rgb(249,28,3)" fg:x="42031" fg:w="68"/><text x="8.9561%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (334 samples, 0.07%)</title><rect x="8.6514%" y="725" width="0.0692%" height="15" fill="rgb(222,56,52)" fg:x="41767" fg:w="334"/><text x="8.9014%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (474 samples, 0.10%)</title><rect x="8.6234%" y="741" width="0.0982%" height="15" fill="rgb(245,217,50)" fg:x="41632" fg:w="474"/><text x="8.8734%" y="751.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (119 samples, 0.02%)</title><rect x="8.7216%" y="741" width="0.0246%" height="15" fill="rgb(213,201,24)" fg:x="42106" fg:w="119"/><text x="8.9716%" y="751.50"></text></g><g><title>PhaseChaitin::de_ssa (83 samples, 0.02%)</title><rect x="8.7525%" y="741" width="0.0172%" height="15" fill="rgb(248,116,28)" fg:x="42255" fg:w="83"/><text x="9.0025%" y="751.50"></text></g><g><title>PhaseChaitin::fixup_spills (59 samples, 0.01%)</title><rect x="8.7699%" y="741" width="0.0122%" height="15" fill="rgb(219,72,43)" fg:x="42339" fg:w="59"/><text x="9.0199%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (77 samples, 0.02%)</title><rect x="9.1255%" y="725" width="0.0159%" height="15" fill="rgb(209,138,14)" fg:x="44056" fg:w="77"/><text x="9.3755%" y="735.50"></text></g><g><title>MachNode::ideal_reg (75 samples, 0.02%)</title><rect x="9.1421%" y="725" width="0.0155%" height="15" fill="rgb(222,18,33)" fg:x="44136" fg:w="75"/><text x="9.3921%" y="735.50"></text></g><g><title>MachNode::in_RegMask (57 samples, 0.01%)</title><rect x="9.1576%" y="725" width="0.0118%" height="15" fill="rgb(213,199,7)" fg:x="44211" fg:w="57"/><text x="9.4076%" y="735.50"></text></g><g><title>RegMask::Size (1,054 samples, 0.22%)</title><rect x="9.1922%" y="725" width="0.2183%" height="15" fill="rgb(250,110,10)" fg:x="44378" fg:w="1054"/><text x="9.4422%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (193 samples, 0.04%)</title><rect x="9.4106%" y="725" width="0.0400%" height="15" fill="rgb(248,123,6)" fg:x="45432" fg:w="193"/><text x="9.6606%" y="735.50"></text></g><g><title>RegMask::is_aligned_pairs (82 samples, 0.02%)</title><rect x="9.4505%" y="725" width="0.0170%" height="15" fill="rgb(206,91,31)" fg:x="45625" fg:w="82"/><text x="9.7005%" y="735.50"></text></g><g><title>RegMask::is_bound1 (149 samples, 0.03%)</title><rect x="9.4675%" y="725" width="0.0309%" height="15" fill="rgb(211,154,13)" fg:x="45707" fg:w="149"/><text x="9.7175%" y="735.50"></text></g><g><title>RegMask::is_bound_pair (94 samples, 0.02%)</title><rect x="9.4984%" y="725" width="0.0195%" height="15" fill="rgb(225,148,7)" fg:x="45856" fg:w="94"/><text x="9.7484%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,687 samples, 0.76%)</title><rect x="8.7821%" y="741" width="0.7637%" height="15" fill="rgb(220,160,43)" fg:x="42398" fg:w="3687"/><text x="9.0321%" y="751.50"></text></g><g><title>PhaseChaitin::merge_multidefs (495 samples, 0.10%)</title><rect x="9.5460%" y="741" width="0.1025%" height="15" fill="rgb(213,52,39)" fg:x="46086" fg:w="495"/><text x="9.7960%" y="751.50"></text></g><g><title>PhaseChaitin::use_prior_register (83 samples, 0.02%)</title><rect x="10.3549%" y="709" width="0.0172%" height="15" fill="rgb(243,137,7)" fg:x="49991" fg:w="83"/><text x="10.6049%" y="719.50"></text></g><g><title>PhaseChaitin::elide_copy (1,828 samples, 0.38%)</title><rect x="10.0013%" y="725" width="0.3786%" height="15" fill="rgb(230,79,13)" fg:x="48284" fg:w="1828"/><text x="10.2513%" y="735.50"></text></g><g><title>[libc-2.31.so] (60 samples, 0.01%)</title><rect x="10.3897%" y="725" width="0.0124%" height="15" fill="rgb(247,105,23)" fg:x="50159" fg:w="60"/><text x="10.6397%" y="735.50"></text></g><g><title>find_lowest_bit (328 samples, 0.07%)</title><rect x="10.4025%" y="725" width="0.0679%" height="15" fill="rgb(223,179,41)" fg:x="50221" fg:w="328"/><text x="10.6525%" y="735.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,975 samples, 0.82%)</title><rect x="9.6486%" y="741" width="0.8234%" height="15" fill="rgb(218,9,34)" fg:x="46581" fg:w="3975"/><text x="9.8986%" y="751.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (173 samples, 0.04%)</title><rect x="10.4719%" y="741" width="0.0358%" height="15" fill="rgb(222,106,8)" fg:x="50556" fg:w="173"/><text x="10.7219%" y="751.50"></text></g><g><title>PhaseCoalesce::combine_these_two (65 samples, 0.01%)</title><rect x="10.5272%" y="709" width="0.0135%" height="15" fill="rgb(211,220,0)" fg:x="50823" fg:w="65"/><text x="10.7772%" y="719.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (150 samples, 0.03%)</title><rect x="10.5102%" y="725" width="0.0311%" height="15" fill="rgb(229,52,16)" fg:x="50741" fg:w="150"/><text x="10.7602%" y="735.50"></text></g><g><title>PhaseCFG::is_uncommon (112 samples, 0.02%)</title><rect x="10.5502%" y="709" width="0.0232%" height="15" fill="rgb(212,155,18)" fg:x="50934" fg:w="112"/><text x="10.8002%" y="719.50"></text></g><g><title>IndexSet::lrg_union (225 samples, 0.05%)</title><rect x="10.5807%" y="693" width="0.0466%" height="15" fill="rgb(242,21,14)" fg:x="51081" fg:w="225"/><text x="10.8307%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (200 samples, 0.04%)</title><rect x="10.6304%" y="693" width="0.0414%" height="15" fill="rgb(222,19,48)" fg:x="51321" fg:w="200"/><text x="10.8804%" y="703.50"></text></g><g><title>PhaseIFG::effective_degree (58 samples, 0.01%)</title><rect x="10.6718%" y="693" width="0.0120%" height="15" fill="rgb(232,45,27)" fg:x="51521" fg:w="58"/><text x="10.9218%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (552 samples, 0.11%)</title><rect x="10.5734%" y="709" width="0.1143%" height="15" fill="rgb(249,103,42)" fg:x="51046" fg:w="552"/><text x="10.8234%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (710 samples, 0.15%)</title><rect x="10.5413%" y="725" width="0.1471%" height="15" fill="rgb(246,81,33)" fg:x="50891" fg:w="710"/><text x="10.7913%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (873 samples, 0.18%)</title><rect x="10.5077%" y="741" width="0.1808%" height="15" fill="rgb(252,33,42)" fg:x="50729" fg:w="873"/><text x="10.7577%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (856 samples, 0.18%)</title><rect x="10.6888%" y="741" width="0.1773%" height="15" fill="rgb(209,212,41)" fg:x="51603" fg:w="856"/><text x="10.9388%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (457 samples, 0.09%)</title><rect x="10.7714%" y="725" width="0.0947%" height="15" fill="rgb(207,154,6)" fg:x="52002" fg:w="457"/><text x="11.0214%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (82 samples, 0.02%)</title><rect x="10.9322%" y="725" width="0.0170%" height="15" fill="rgb(223,64,47)" fg:x="52778" fg:w="82"/><text x="11.1822%" y="735.50"></text></g><g><title>PhaseIFG::SquareUp (779 samples, 0.16%)</title><rect x="10.8661%" y="741" width="0.1614%" height="15" fill="rgb(211,161,38)" fg:x="52459" fg:w="779"/><text x="11.1161%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (378 samples, 0.08%)</title><rect x="10.9492%" y="725" width="0.0783%" height="15" fill="rgb(219,138,40)" fg:x="52860" fg:w="378"/><text x="11.1992%" y="735.50"></text></g><g><title>IndexSet::initialize (202 samples, 0.04%)</title><rect x="11.0488%" y="725" width="0.0418%" height="15" fill="rgb(241,228,46)" fg:x="53341" fg:w="202"/><text x="11.2988%" y="735.50"></text></g><g><title>PhaseIFG::init (366 samples, 0.08%)</title><rect x="11.0275%" y="741" width="0.0758%" height="15" fill="rgb(223,209,38)" fg:x="53238" fg:w="366"/><text x="11.2775%" y="751.50"></text></g><g><title>[libc-2.31.so] (60 samples, 0.01%)</title><rect x="11.0908%" y="725" width="0.0124%" height="15" fill="rgb(236,164,45)" fg:x="53544" fg:w="60"/><text x="11.3408%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (88 samples, 0.02%)</title><rect x="11.3259%" y="725" width="0.0182%" height="15" fill="rgb(231,15,5)" fg:x="54679" fg:w="88"/><text x="11.5759%" y="735.50"></text></g><g><title>IndexSet::free_block (49 samples, 0.01%)</title><rect x="11.3442%" y="725" width="0.0101%" height="15" fill="rgb(252,35,15)" fg:x="54767" fg:w="49"/><text x="11.5942%" y="735.50"></text></g><g><title>IndexSet::initialize (99 samples, 0.02%)</title><rect x="11.3543%" y="725" width="0.0205%" height="15" fill="rgb(248,181,18)" fg:x="54816" fg:w="99"/><text x="11.6043%" y="735.50"></text></g><g><title>__tls_get_addr (65 samples, 0.01%)</title><rect x="11.5382%" y="693" width="0.0135%" height="15" fill="rgb(233,39,42)" fg:x="55704" fg:w="65"/><text x="11.7882%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (206 samples, 0.04%)</title><rect x="11.5111%" y="709" width="0.0427%" height="15" fill="rgb(238,110,33)" fg:x="55573" fg:w="206"/><text x="11.7611%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (306 samples, 0.06%)</title><rect x="11.5596%" y="709" width="0.0634%" height="15" fill="rgb(233,195,10)" fg:x="55807" fg:w="306"/><text x="11.8096%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (1,222 samples, 0.25%)</title><rect x="11.3752%" y="725" width="0.2531%" height="15" fill="rgb(254,105,3)" fg:x="54917" fg:w="1222"/><text x="11.6252%" y="735.50"></text></g><g><title>PhaseLive::compute (2,543 samples, 0.53%)</title><rect x="11.1039%" y="741" width="0.5267%" height="15" fill="rgb(221,225,9)" fg:x="53607" fg:w="2543"/><text x="11.3539%" y="751.50"></text></g><g><title>PhaseChaitin::Register_Allocate (29,252 samples, 6.06%)</title><rect x="5.5991%" y="757" width="6.0591%" height="15" fill="rgb(224,227,45)" fg:x="27031" fg:w="29252"/><text x="5.8491%" y="767.50">PhaseCha..</text></g><g><title>Compile::Code_Gen (37,461 samples, 7.76%)</title><rect x="3.9072%" y="773" width="7.7595%" height="15" fill="rgb(229,198,43)" fg:x="18863" fg:w="37461"/><text x="4.1572%" y="783.50">Compile::Co..</text></g><g><title>Parse::do_call (91 samples, 0.02%)</title><rect x="11.7218%" y="117" width="0.0188%" height="15" fill="rgb(206,209,35)" fg:x="56590" fg:w="91"/><text x="11.9718%" y="127.50"></text></g><g><title>Parse::do_one_block (172 samples, 0.04%)</title><rect x="11.7191%" y="149" width="0.0356%" height="15" fill="rgb(245,195,53)" fg:x="56577" fg:w="172"/><text x="11.9691%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.04%)</title><rect x="11.7193%" y="133" width="0.0354%" height="15" fill="rgb(240,92,26)" fg:x="56578" fg:w="171"/><text x="11.9693%" y="143.50"></text></g><g><title>Parse::do_all_blocks (175 samples, 0.04%)</title><rect x="11.7189%" y="165" width="0.0362%" height="15" fill="rgb(207,40,23)" fg:x="56576" fg:w="175"/><text x="11.9689%" y="175.50"></text></g><g><title>ParseGenerator::generate (203 samples, 0.04%)</title><rect x="11.7156%" y="197" width="0.0420%" height="15" fill="rgb(223,111,35)" fg:x="56560" fg:w="203"/><text x="11.9656%" y="207.50"></text></g><g><title>Parse::Parse (202 samples, 0.04%)</title><rect x="11.7158%" y="181" width="0.0418%" height="15" fill="rgb(229,147,28)" fg:x="56561" fg:w="202"/><text x="11.9658%" y="191.50"></text></g><g><title>Parse::do_call (253 samples, 0.05%)</title><rect x="11.7075%" y="213" width="0.0524%" height="15" fill="rgb(211,29,28)" fg:x="56521" fg:w="253"/><text x="11.9575%" y="223.50"></text></g><g><title>Parse::do_one_block (347 samples, 0.07%)</title><rect x="11.7029%" y="245" width="0.0719%" height="15" fill="rgb(228,72,33)" fg:x="56499" fg:w="347"/><text x="11.9529%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (341 samples, 0.07%)</title><rect x="11.7042%" y="229" width="0.0706%" height="15" fill="rgb(205,214,31)" fg:x="56505" fg:w="341"/><text x="11.9542%" y="239.50"></text></g><g><title>Parse::do_all_blocks (351 samples, 0.07%)</title><rect x="11.7029%" y="261" width="0.0727%" height="15" fill="rgb(224,111,15)" fg:x="56499" fg:w="351"/><text x="11.9529%" y="271.50"></text></g><g><title>ParseGenerator::generate (380 samples, 0.08%)</title><rect x="11.6994%" y="293" width="0.0787%" height="15" fill="rgb(253,21,26)" fg:x="56482" fg:w="380"/><text x="11.9494%" y="303.50"></text></g><g><title>Parse::Parse (380 samples, 0.08%)</title><rect x="11.6994%" y="277" width="0.0787%" height="15" fill="rgb(245,139,43)" fg:x="56482" fg:w="380"/><text x="11.9494%" y="287.50"></text></g><g><title>Parse::do_call (484 samples, 0.10%)</title><rect x="11.6857%" y="309" width="0.1003%" height="15" fill="rgb(252,170,7)" fg:x="56416" fg:w="484"/><text x="11.9357%" y="319.50"></text></g><g><title>ParseGenerator::generate (567 samples, 0.12%)</title><rect x="11.6818%" y="389" width="0.1174%" height="15" fill="rgb(231,118,14)" fg:x="56397" fg:w="567"/><text x="11.9318%" y="399.50"></text></g><g><title>Parse::Parse (567 samples, 0.12%)</title><rect x="11.6818%" y="373" width="0.1174%" height="15" fill="rgb(238,83,0)" fg:x="56397" fg:w="567"/><text x="11.9318%" y="383.50"></text></g><g><title>Parse::do_all_blocks (561 samples, 0.12%)</title><rect x="11.6830%" y="357" width="0.1162%" height="15" fill="rgb(221,39,39)" fg:x="56403" fg:w="561"/><text x="11.9330%" y="367.50"></text></g><g><title>Parse::do_one_block (560 samples, 0.12%)</title><rect x="11.6832%" y="341" width="0.1160%" height="15" fill="rgb(222,119,46)" fg:x="56404" fg:w="560"/><text x="11.9332%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (558 samples, 0.12%)</title><rect x="11.6837%" y="325" width="0.1156%" height="15" fill="rgb(222,165,49)" fg:x="56406" fg:w="558"/><text x="11.9337%" y="335.50"></text></g><g><title>Parse::do_call (639 samples, 0.13%)</title><rect x="11.6747%" y="405" width="0.1324%" height="15" fill="rgb(219,113,52)" fg:x="56363" fg:w="639"/><text x="11.9247%" y="415.50"></text></g><g><title>ParseGenerator::generate (651 samples, 0.13%)</title><rect x="11.6745%" y="485" width="0.1348%" height="15" fill="rgb(214,7,15)" fg:x="56362" fg:w="651"/><text x="11.9245%" y="495.50"></text></g><g><title>Parse::Parse (651 samples, 0.13%)</title><rect x="11.6745%" y="469" width="0.1348%" height="15" fill="rgb(235,32,4)" fg:x="56362" fg:w="651"/><text x="11.9245%" y="479.50"></text></g><g><title>Parse::do_all_blocks (650 samples, 0.13%)</title><rect x="11.6747%" y="453" width="0.1346%" height="15" fill="rgb(238,90,54)" fg:x="56363" fg:w="650"/><text x="11.9247%" y="463.50"></text></g><g><title>Parse::do_one_block (650 samples, 0.13%)</title><rect x="11.6747%" y="437" width="0.1346%" height="15" fill="rgb(213,208,19)" fg:x="56363" fg:w="650"/><text x="11.9247%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (650 samples, 0.13%)</title><rect x="11.6747%" y="421" width="0.1346%" height="15" fill="rgb(233,156,4)" fg:x="56363" fg:w="650"/><text x="11.9247%" y="431.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="11.8119%" y="293" width="0.0114%" height="15" fill="rgb(207,194,5)" fg:x="57025" fg:w="55"/><text x="12.0619%" y="303.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.01%)</title><rect x="11.8113%" y="325" width="0.0143%" height="15" fill="rgb(206,111,30)" fg:x="57022" fg:w="69"/><text x="12.0613%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="11.8113%" y="309" width="0.0143%" height="15" fill="rgb(243,70,54)" fg:x="57022" fg:w="69"/><text x="12.0613%" y="319.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="11.8113%" y="373" width="0.0145%" height="15" fill="rgb(242,28,8)" fg:x="57022" fg:w="70"/><text x="12.0613%" y="383.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="11.8113%" y="357" width="0.0145%" height="15" fill="rgb(219,106,18)" fg:x="57022" fg:w="70"/><text x="12.0613%" y="367.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.01%)</title><rect x="11.8113%" y="341" width="0.0145%" height="15" fill="rgb(244,222,10)" fg:x="57022" fg:w="70"/><text x="12.0613%" y="351.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="11.8094%" y="389" width="0.0176%" height="15" fill="rgb(236,179,52)" fg:x="57013" fg:w="85"/><text x="12.0594%" y="399.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.02%)</title><rect x="11.8094%" y="469" width="0.0178%" height="15" fill="rgb(213,23,39)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="479.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="11.8094%" y="453" width="0.0178%" height="15" fill="rgb(238,48,10)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="463.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.02%)</title><rect x="11.8094%" y="437" width="0.0178%" height="15" fill="rgb(251,196,23)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="447.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.02%)</title><rect x="11.8094%" y="421" width="0.0178%" height="15" fill="rgb(250,152,24)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.02%)</title><rect x="11.8094%" y="405" width="0.0178%" height="15" fill="rgb(209,150,17)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="415.50"></text></g><g><title>ParseGenerator::generate (770 samples, 0.16%)</title><rect x="11.6689%" y="581" width="0.1595%" height="15" fill="rgb(234,202,34)" fg:x="56335" fg:w="770"/><text x="11.9189%" y="591.50"></text></g><g><title>Parse::Parse (770 samples, 0.16%)</title><rect x="11.6689%" y="565" width="0.1595%" height="15" fill="rgb(253,148,53)" fg:x="56335" fg:w="770"/><text x="11.9189%" y="575.50"></text></g><g><title>Parse::do_all_blocks (769 samples, 0.16%)</title><rect x="11.6692%" y="549" width="0.1593%" height="15" fill="rgb(218,129,16)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="559.50"></text></g><g><title>Parse::do_one_block (769 samples, 0.16%)</title><rect x="11.6692%" y="533" width="0.1593%" height="15" fill="rgb(216,85,19)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (769 samples, 0.16%)</title><rect x="11.6692%" y="517" width="0.1593%" height="15" fill="rgb(235,228,7)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="527.50"></text></g><g><title>Parse::do_call (769 samples, 0.16%)</title><rect x="11.6692%" y="501" width="0.1593%" height="15" fill="rgb(245,175,0)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (92 samples, 0.02%)</title><rect x="11.8094%" y="485" width="0.0191%" height="15" fill="rgb(208,168,36)" fg:x="57013" fg:w="92"/><text x="12.0594%" y="495.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="11.8313%" y="293" width="0.0114%" height="15" fill="rgb(246,171,24)" fg:x="57119" fg:w="55"/><text x="12.0813%" y="303.50"></text></g><g><title>ParseGenerator::generate (66 samples, 0.01%)</title><rect x="11.8313%" y="373" width="0.0137%" height="15" fill="rgb(215,142,24)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="383.50"></text></g><g><title>Parse::Parse (66 samples, 0.01%)</title><rect x="11.8313%" y="357" width="0.0137%" height="15" fill="rgb(250,187,7)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="367.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.01%)</title><rect x="11.8313%" y="341" width="0.0137%" height="15" fill="rgb(228,66,33)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="351.50"></text></g><g><title>Parse::do_one_block (66 samples, 0.01%)</title><rect x="11.8313%" y="325" width="0.0137%" height="15" fill="rgb(234,215,21)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.01%)</title><rect x="11.8313%" y="309" width="0.0137%" height="15" fill="rgb(222,191,20)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="319.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="11.8286%" y="389" width="0.0193%" height="15" fill="rgb(245,79,54)" fg:x="57106" fg:w="93"/><text x="12.0786%" y="399.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="11.8286%" y="469" width="0.0199%" height="15" fill="rgb(240,10,37)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="479.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="11.8286%" y="453" width="0.0199%" height="15" fill="rgb(214,192,32)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="463.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="11.8286%" y="437" width="0.0199%" height="15" fill="rgb(209,36,54)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="447.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="11.8286%" y="421" width="0.0199%" height="15" fill="rgb(220,10,11)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="11.8286%" y="405" width="0.0199%" height="15" fill="rgb(221,106,17)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="415.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="11.8284%" y="565" width="0.0228%" height="15" fill="rgb(251,142,44)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="575.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="11.8284%" y="549" width="0.0228%" height="15" fill="rgb(238,13,15)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="559.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="11.8284%" y="533" width="0.0228%" height="15" fill="rgb(208,107,27)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="543.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="11.8284%" y="517" width="0.0228%" height="15" fill="rgb(205,136,37)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="11.8284%" y="501" width="0.0228%" height="15" fill="rgb(250,205,27)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="511.50"></text></g><g><title>Parse::do_call (110 samples, 0.02%)</title><rect x="11.8284%" y="485" width="0.0228%" height="15" fill="rgb(210,80,43)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="495.50"></text></g><g><title>ParseGenerator::generate (891 samples, 0.18%)</title><rect x="11.6683%" y="677" width="0.1846%" height="15" fill="rgb(247,160,36)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="687.50"></text></g><g><title>Parse::Parse (891 samples, 0.18%)</title><rect x="11.6683%" y="661" width="0.1846%" height="15" fill="rgb(234,13,49)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="671.50"></text></g><g><title>Parse::do_all_blocks (891 samples, 0.18%)</title><rect x="11.6683%" y="645" width="0.1846%" height="15" fill="rgb(234,122,0)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="655.50"></text></g><g><title>Parse::do_one_block (891 samples, 0.18%)</title><rect x="11.6683%" y="629" width="0.1846%" height="15" fill="rgb(207,146,38)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (891 samples, 0.18%)</title><rect x="11.6683%" y="613" width="0.1846%" height="15" fill="rgb(207,177,25)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="623.50"></text></g><g><title>Parse::do_call (891 samples, 0.18%)</title><rect x="11.6683%" y="597" width="0.1846%" height="15" fill="rgb(211,178,42)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (118 samples, 0.02%)</title><rect x="11.8284%" y="581" width="0.0244%" height="15" fill="rgb(230,69,54)" fg:x="57105" fg:w="118"/><text x="12.0784%" y="591.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="11.8614%" y="245" width="0.0110%" height="15" fill="rgb(214,135,41)" fg:x="57264" fg:w="53"/><text x="12.1114%" y="255.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="11.8614%" y="229" width="0.0110%" height="15" fill="rgb(237,67,25)" fg:x="57264" fg:w="53"/><text x="12.1114%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="11.8614%" y="213" width="0.0110%" height="15" fill="rgb(222,189,50)" fg:x="57264" fg:w="53"/><text x="12.1114%" y="223.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="11.8614%" y="277" width="0.0120%" height="15" fill="rgb(245,148,34)" fg:x="57264" fg:w="58"/><text x="12.1114%" y="287.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="11.8614%" y="261" width="0.0120%" height="15" fill="rgb(222,29,6)" fg:x="57264" fg:w="58"/><text x="12.1114%" y="271.50"></text></g><g><title>Parse::do_call (72 samples, 0.01%)</title><rect x="11.8593%" y="293" width="0.0149%" height="15" fill="rgb(221,189,43)" fg:x="57254" fg:w="72"/><text x="12.1093%" y="303.50"></text></g><g><title>ParseGenerator::generate (93 samples, 0.02%)</title><rect x="11.8583%" y="373" width="0.0193%" height="15" fill="rgb(207,36,27)" fg:x="57249" fg:w="93"/><text x="12.1083%" y="383.50"></text></g><g><title>Parse::Parse (93 samples, 0.02%)</title><rect x="11.8583%" y="357" width="0.0193%" height="15" fill="rgb(217,90,24)" fg:x="57249" fg:w="93"/><text x="12.1083%" y="367.50"></text></g><g><title>Parse::do_all_blocks (92 samples, 0.02%)</title><rect x="11.8585%" y="341" width="0.0191%" height="15" fill="rgb(224,66,35)" fg:x="57250" fg:w="92"/><text x="12.1085%" y="351.50"></text></g><g><title>Parse::do_one_block (92 samples, 0.02%)</title><rect x="11.8585%" y="325" width="0.0191%" height="15" fill="rgb(221,13,50)" fg:x="57250" fg:w="92"/><text x="12.1085%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.02%)</title><rect x="11.8587%" y="309" width="0.0188%" height="15" fill="rgb(236,68,49)" fg:x="57251" fg:w="91"/><text x="12.1087%" y="319.50"></text></g><g><title>Parse::do_call (116 samples, 0.02%)</title><rect x="11.8560%" y="389" width="0.0240%" height="15" fill="rgb(229,146,28)" fg:x="57238" fg:w="116"/><text x="12.1060%" y="399.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.03%)</title><rect x="11.8558%" y="469" width="0.0251%" height="15" fill="rgb(225,31,38)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="479.50"></text></g><g><title>Parse::Parse (121 samples, 0.03%)</title><rect x="11.8558%" y="453" width="0.0251%" height="15" fill="rgb(250,208,3)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="463.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.03%)</title><rect x="11.8558%" y="437" width="0.0251%" height="15" fill="rgb(246,54,23)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="447.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.03%)</title><rect x="11.8558%" y="421" width="0.0251%" height="15" fill="rgb(243,76,11)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.03%)</title><rect x="11.8558%" y="405" width="0.0251%" height="15" fill="rgb(245,21,50)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="415.50"></text></g><g><title>ParseGenerator::generate (142 samples, 0.03%)</title><rect x="11.8533%" y="565" width="0.0294%" height="15" fill="rgb(228,9,43)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="575.50"></text></g><g><title>Parse::Parse (142 samples, 0.03%)</title><rect x="11.8533%" y="549" width="0.0294%" height="15" fill="rgb(208,100,47)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="559.50"></text></g><g><title>Parse::do_all_blocks (142 samples, 0.03%)</title><rect x="11.8533%" y="533" width="0.0294%" height="15" fill="rgb(232,26,8)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="543.50"></text></g><g><title>Parse::do_one_block (142 samples, 0.03%)</title><rect x="11.8533%" y="517" width="0.0294%" height="15" fill="rgb(216,166,38)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (142 samples, 0.03%)</title><rect x="11.8533%" y="501" width="0.0294%" height="15" fill="rgb(251,202,51)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="511.50"></text></g><g><title>Parse::do_call (142 samples, 0.03%)</title><rect x="11.8533%" y="485" width="0.0294%" height="15" fill="rgb(254,216,34)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="495.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.04%)</title><rect x="11.8529%" y="661" width="0.0394%" height="15" fill="rgb(251,32,27)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="671.50"></text></g><g><title>Parse::Parse (190 samples, 0.04%)</title><rect x="11.8529%" y="645" width="0.0394%" height="15" fill="rgb(208,127,28)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="655.50"></text></g><g><title>Parse::do_all_blocks (190 samples, 0.04%)</title><rect x="11.8529%" y="629" width="0.0394%" height="15" fill="rgb(224,137,22)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="639.50"></text></g><g><title>Parse::do_one_block (190 samples, 0.04%)</title><rect x="11.8529%" y="613" width="0.0394%" height="15" fill="rgb(254,70,32)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (190 samples, 0.04%)</title><rect x="11.8529%" y="597" width="0.0394%" height="15" fill="rgb(229,75,37)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="607.50"></text></g><g><title>Parse::do_call (190 samples, 0.04%)</title><rect x="11.8529%" y="581" width="0.0394%" height="15" fill="rgb(252,64,23)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="591.50"></text></g><g><title>Compile::Compile (38,584 samples, 7.99%)</title><rect x="3.9072%" y="789" width="7.9921%" height="15" fill="rgb(232,162,48)" fg:x="18863" fg:w="38584"/><text x="4.1572%" y="799.50">Compile::Co..</text></g><g><title>ParseGenerator::generate (1,115 samples, 0.23%)</title><rect x="11.6683%" y="773" width="0.2310%" height="15" fill="rgb(246,160,12)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="783.50"></text></g><g><title>Parse::Parse (1,115 samples, 0.23%)</title><rect x="11.6683%" y="757" width="0.2310%" height="15" fill="rgb(247,166,0)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="767.50"></text></g><g><title>Parse::do_all_blocks (1,115 samples, 0.23%)</title><rect x="11.6683%" y="741" width="0.2310%" height="15" fill="rgb(249,219,21)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="751.50"></text></g><g><title>Parse::do_one_block (1,115 samples, 0.23%)</title><rect x="11.6683%" y="725" width="0.2310%" height="15" fill="rgb(205,209,3)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,115 samples, 0.23%)</title><rect x="11.6683%" y="709" width="0.2310%" height="15" fill="rgb(243,44,1)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="719.50"></text></g><g><title>Parse::do_call (1,115 samples, 0.23%)</title><rect x="11.6683%" y="693" width="0.2310%" height="15" fill="rgb(206,159,16)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (224 samples, 0.05%)</title><rect x="11.8529%" y="677" width="0.0464%" height="15" fill="rgb(244,77,30)" fg:x="57223" fg:w="224"/><text x="12.1029%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_impl (112 samples, 0.02%)</title><rect x="11.9279%" y="741" width="0.0232%" height="15" fill="rgb(218,69,12)" fg:x="57585" fg:w="112"/><text x="12.1779%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping_walk (261 samples, 0.05%)</title><rect x="11.9005%" y="757" width="0.0541%" height="15" fill="rgb(212,87,7)" fg:x="57453" fg:w="261"/><text x="12.1505%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (266 samples, 0.06%)</title><rect x="11.8997%" y="773" width="0.0551%" height="15" fill="rgb(245,114,25)" fg:x="57449" fg:w="266"/><text x="12.1497%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (225 samples, 0.05%)</title><rect x="11.9598%" y="773" width="0.0466%" height="15" fill="rgb(210,61,42)" fg:x="57739" fg:w="225"/><text x="12.2098%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (65 samples, 0.01%)</title><rect x="12.0410%" y="741" width="0.0135%" height="15" fill="rgb(211,52,33)" fg:x="58131" fg:w="65"/><text x="12.2910%" y="751.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (75 samples, 0.02%)</title><rect x="12.0625%" y="725" width="0.0155%" height="15" fill="rgb(234,58,33)" fg:x="58235" fg:w="75"/><text x="12.3125%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (161 samples, 0.03%)</title><rect x="12.0548%" y="741" width="0.0333%" height="15" fill="rgb(220,115,36)" fg:x="58198" fg:w="161"/><text x="12.3048%" y="751.50"></text></g><g><title>ConnectionGraph::split_memory_phi (73 samples, 0.02%)</title><rect x="12.1008%" y="709" width="0.0151%" height="15" fill="rgb(243,153,54)" fg:x="58420" fg:w="73"/><text x="12.3508%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (56 samples, 0.01%)</title><rect x="12.1043%" y="693" width="0.0116%" height="15" fill="rgb(251,47,18)" fg:x="58437" fg:w="56"/><text x="12.3543%" y="703.50"></text></g><g><title>ConnectionGraph::split_memory_phi (52 samples, 0.01%)</title><rect x="12.1052%" y="677" width="0.0108%" height="15" fill="rgb(242,102,42)" fg:x="58441" fg:w="52"/><text x="12.3552%" y="687.50"></text></g><g><title>ConnectionGraph::find_inst_mem (109 samples, 0.02%)</title><rect x="12.0940%" y="725" width="0.0226%" height="15" fill="rgb(234,31,38)" fg:x="58387" fg:w="109"/><text x="12.3440%" y="735.50"></text></g><g><title>ConnectionGraph::split_unique_types (132 samples, 0.03%)</title><rect x="12.0921%" y="741" width="0.0273%" height="15" fill="rgb(221,117,51)" fg:x="58378" fg:w="132"/><text x="12.3421%" y="751.50"></text></g><g><title>ConnectionGraph::compute_escape (547 samples, 0.11%)</title><rect x="12.0074%" y="757" width="0.1133%" height="15" fill="rgb(212,20,18)" fg:x="57969" fg:w="547"/><text x="12.2574%" y="767.50"></text></g><g><title>ConnectionGraph::do_analysis (553 samples, 0.11%)</title><rect x="12.0066%" y="773" width="0.1145%" height="15" fill="rgb(245,133,36)" fg:x="57965" fg:w="553"/><text x="12.2566%" y="783.50"></text></g><g><title>PhiNode::Value (49 samples, 0.01%)</title><rect x="12.2263%" y="757" width="0.0101%" height="15" fill="rgb(212,6,19)" fg:x="59026" fg:w="49"/><text x="12.4763%" y="767.50"></text></g><g><title>TypeInstPtr::add_offset (49 samples, 0.01%)</title><rect x="12.2522%" y="757" width="0.0101%" height="15" fill="rgb(218,1,36)" fg:x="59151" fg:w="49"/><text x="12.5022%" y="767.50"></text></g><g><title>PhaseCCP::analyze (707 samples, 0.15%)</title><rect x="12.1228%" y="773" width="0.1464%" height="15" fill="rgb(246,84,54)" fg:x="58526" fg:w="707"/><text x="12.3728%" y="783.50"></text></g><g><title>PhaseCCP::transform_once (125 samples, 0.03%)</title><rect x="12.2889%" y="741" width="0.0259%" height="15" fill="rgb(242,110,6)" fg:x="59328" fg:w="125"/><text x="12.5389%" y="751.50"></text></g><g><title>PhaseCCP::do_transform (223 samples, 0.05%)</title><rect x="12.2692%" y="773" width="0.0462%" height="15" fill="rgb(214,47,5)" fg:x="59233" fg:w="223"/><text x="12.5192%" y="783.50"></text></g><g><title>PhaseCCP::transform (223 samples, 0.05%)</title><rect x="12.2692%" y="757" width="0.0462%" height="15" fill="rgb(218,159,25)" fg:x="59233" fg:w="223"/><text x="12.5192%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (60 samples, 0.01%)</title><rect x="12.3415%" y="693" width="0.0124%" height="15" fill="rgb(215,211,28)" fg:x="59582" fg:w="60"/><text x="12.5915%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (77 samples, 0.02%)</title><rect x="12.3409%" y="709" width="0.0159%" height="15" fill="rgb(238,59,32)" fg:x="59579" fg:w="77"/><text x="12.5909%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (127 samples, 0.03%)</title><rect x="12.3401%" y="725" width="0.0263%" height="15" fill="rgb(226,82,3)" fg:x="59575" fg:w="127"/><text x="12.5901%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (174 samples, 0.04%)</title><rect x="12.3397%" y="741" width="0.0360%" height="15" fill="rgb(240,164,32)" fg:x="59573" fg:w="174"/><text x="12.5897%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (200 samples, 0.04%)</title><rect x="12.3388%" y="757" width="0.0414%" height="15" fill="rgb(232,46,7)" fg:x="59569" fg:w="200"/><text x="12.5888%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (70 samples, 0.01%)</title><rect x="12.3807%" y="741" width="0.0145%" height="15" fill="rgb(229,129,53)" fg:x="59771" fg:w="70"/><text x="12.6307%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (70 samples, 0.01%)</title><rect x="12.4018%" y="725" width="0.0145%" height="15" fill="rgb(234,188,29)" fg:x="59873" fg:w="70"/><text x="12.6518%" y="735.50"></text></g><g><title>IdealLoopTree::loop_predication (220 samples, 0.05%)</title><rect x="12.3803%" y="757" width="0.0456%" height="15" fill="rgb(246,141,4)" fg:x="59769" fg:w="220"/><text x="12.6303%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (148 samples, 0.03%)</title><rect x="12.3952%" y="741" width="0.0307%" height="15" fill="rgb(229,23,39)" fg:x="59841" fg:w="148"/><text x="12.6452%" y="751.50"></text></g><g><title>NTarjan::DFS (267 samples, 0.06%)</title><rect x="12.5760%" y="741" width="0.0553%" height="15" fill="rgb(206,12,3)" fg:x="60714" fg:w="267"/><text x="12.8260%" y="751.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,004 samples, 0.21%)</title><rect x="12.4349%" y="757" width="0.2080%" height="15" fill="rgb(252,226,20)" fg:x="60033" fg:w="1004"/><text x="12.6849%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (55 samples, 0.01%)</title><rect x="12.8985%" y="709" width="0.0114%" height="15" fill="rgb(216,123,35)" fg:x="62271" fg:w="55"/><text x="13.1485%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (169 samples, 0.04%)</title><rect x="12.9099%" y="709" width="0.0350%" height="15" fill="rgb(212,68,40)" fg:x="62326" fg:w="169"/><text x="13.1599%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (370 samples, 0.08%)</title><rect x="12.8689%" y="725" width="0.0766%" height="15" fill="rgb(254,125,32)" fg:x="62128" fg:w="370"/><text x="13.1189%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (407 samples, 0.08%)</title><rect x="12.8614%" y="741" width="0.0843%" height="15" fill="rgb(253,97,22)" fg:x="62092" fg:w="407"/><text x="13.1114%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,524 samples, 0.32%)</title><rect x="12.6429%" y="757" width="0.3157%" height="15" fill="rgb(241,101,14)" fg:x="61037" fg:w="1524"/><text x="12.8929%" y="767.50"></text></g><g><title>Node::unique_ctrl_out (63 samples, 0.01%)</title><rect x="13.3277%" y="725" width="0.0130%" height="15" fill="rgb(238,103,29)" fg:x="64343" fg:w="63"/><text x="13.5777%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (83 samples, 0.02%)</title><rect x="13.3409%" y="725" width="0.0172%" height="15" fill="rgb(233,195,47)" fg:x="64407" fg:w="83"/><text x="13.5909%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (69 samples, 0.01%)</title><rect x="13.5276%" y="677" width="0.0143%" height="15" fill="rgb(246,218,30)" fg:x="65308" fg:w="69"/><text x="13.7776%" y="687.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (115 samples, 0.02%)</title><rect x="13.5419%" y="677" width="0.0238%" height="15" fill="rgb(219,145,47)" fg:x="65377" fg:w="115"/><text x="13.7919%" y="687.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (250 samples, 0.05%)</title><rect x="13.5141%" y="693" width="0.0518%" height="15" fill="rgb(243,12,26)" fg:x="65243" fg:w="250"/><text x="13.7641%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (391 samples, 0.08%)</title><rect x="13.4922%" y="709" width="0.0810%" height="15" fill="rgb(214,87,16)" fg:x="65137" fg:w="391"/><text x="13.7422%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (51 samples, 0.01%)</title><rect x="13.5959%" y="693" width="0.0106%" height="15" fill="rgb(208,99,42)" fg:x="65638" fg:w="51"/><text x="13.8459%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (177 samples, 0.04%)</title><rect x="13.5736%" y="709" width="0.0367%" height="15" fill="rgb(253,99,2)" fg:x="65530" fg:w="177"/><text x="13.8236%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,284 samples, 0.27%)</title><rect x="14.5001%" y="693" width="0.2660%" height="15" fill="rgb(220,168,23)" fg:x="70003" fg:w="1284"/><text x="14.7501%" y="703.50"></text></g><g><title>PhaseIdealLoop::is_dominator (5,579 samples, 1.16%)</title><rect x="13.6139%" y="709" width="1.1556%" height="15" fill="rgb(242,38,24)" fg:x="65725" fg:w="5579"/><text x="13.8639%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (6,843 samples, 1.42%)</title><rect x="13.3581%" y="725" width="1.4174%" height="15" fill="rgb(225,182,9)" fg:x="64490" fg:w="6843"/><text x="13.6081%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (7,613 samples, 1.58%)</title><rect x="13.2100%" y="741" width="1.5769%" height="15" fill="rgb(243,178,37)" fg:x="63775" fg:w="7613"/><text x="13.4600%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (8,847 samples, 1.83%)</title><rect x="12.9586%" y="757" width="1.8325%" height="15" fill="rgb(232,139,19)" fg:x="62561" fg:w="8847"/><text x="13.2086%" y="767.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (208 samples, 0.04%)</title><rect x="14.9218%" y="741" width="0.0431%" height="15" fill="rgb(225,201,24)" fg:x="72039" fg:w="208"/><text x="15.1718%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (857 samples, 0.18%)</title><rect x="14.7915%" y="757" width="0.1775%" height="15" fill="rgb(221,47,46)" fg:x="71410" fg:w="857"/><text x="15.0415%" y="767.50"></text></g><g><title>PhaseIdealLoop::do_split_if (110 samples, 0.02%)</title><rect x="15.0678%" y="741" width="0.0228%" height="15" fill="rgb(249,23,13)" fg:x="72744" fg:w="110"/><text x="15.3178%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (264 samples, 0.05%)</title><rect x="15.0923%" y="741" width="0.0547%" height="15" fill="rgb(219,9,5)" fg:x="72862" fg:w="264"/><text x="15.3423%" y="751.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (91 samples, 0.02%)</title><rect x="15.1886%" y="725" width="0.0188%" height="15" fill="rgb(254,171,16)" fg:x="73327" fg:w="91"/><text x="15.4386%" y="735.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (150 samples, 0.03%)</title><rect x="15.2081%" y="725" width="0.0311%" height="15" fill="rgb(230,171,20)" fg:x="73421" fg:w="150"/><text x="15.4581%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.01%)</title><rect x="15.2279%" y="709" width="0.0112%" height="15" fill="rgb(210,71,41)" fg:x="73517" fg:w="54"/><text x="15.4779%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (164 samples, 0.03%)</title><rect x="15.2391%" y="725" width="0.0340%" height="15" fill="rgb(206,173,20)" fg:x="73571" fg:w="164"/><text x="15.4891%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (662 samples, 0.14%)</title><rect x="15.1470%" y="741" width="0.1371%" height="15" fill="rgb(233,88,34)" fg:x="73126" fg:w="662"/><text x="15.3970%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,482 samples, 0.31%)</title><rect x="14.9783%" y="757" width="0.3070%" height="15" fill="rgb(223,209,46)" fg:x="72312" fg:w="1482"/><text x="15.2283%" y="767.50"></text></g><g><title>LoadNode::Ideal (79 samples, 0.02%)</title><rect x="15.3709%" y="725" width="0.0164%" height="15" fill="rgb(250,43,18)" fg:x="74207" fg:w="79"/><text x="15.6209%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (110 samples, 0.02%)</title><rect x="15.3961%" y="725" width="0.0228%" height="15" fill="rgb(208,13,10)" fg:x="74329" fg:w="110"/><text x="15.6461%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (61 samples, 0.01%)</title><rect x="15.4193%" y="725" width="0.0126%" height="15" fill="rgb(212,200,36)" fg:x="74441" fg:w="61"/><text x="15.6693%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (82 samples, 0.02%)</title><rect x="15.4320%" y="725" width="0.0170%" height="15" fill="rgb(225,90,30)" fg:x="74502" fg:w="82"/><text x="15.6820%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (111 samples, 0.02%)</title><rect x="15.4881%" y="709" width="0.0230%" height="15" fill="rgb(236,182,39)" fg:x="74773" fg:w="111"/><text x="15.7381%" y="719.50"></text></g><g><title>RegionNode::Ideal (193 samples, 0.04%)</title><rect x="15.4713%" y="725" width="0.0400%" height="15" fill="rgb(212,144,35)" fg:x="74692" fg:w="193"/><text x="15.7213%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (1,139 samples, 0.24%)</title><rect x="15.2955%" y="741" width="0.2359%" height="15" fill="rgb(228,63,44)" fg:x="73843" fg:w="1139"/><text x="15.5455%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (1,195 samples, 0.25%)</title><rect x="15.2855%" y="757" width="0.2475%" height="15" fill="rgb(228,109,6)" fg:x="73795" fg:w="1195"/><text x="15.5355%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (15,634 samples, 3.24%)</title><rect x="12.3196%" y="773" width="3.2383%" height="15" fill="rgb(238,117,24)" fg:x="59476" fg:w="15634"/><text x="12.5696%" y="783.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (59 samples, 0.01%)</title><rect x="15.5708%" y="757" width="0.0122%" height="15" fill="rgb(242,26,26)" fg:x="75172" fg:w="59"/><text x="15.8208%" y="767.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (122 samples, 0.03%)</title><rect x="15.5581%" y="773" width="0.0253%" height="15" fill="rgb(221,92,48)" fg:x="75111" fg:w="122"/><text x="15.8081%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.02%)</title><rect x="15.6774%" y="709" width="0.0155%" height="15" fill="rgb(209,209,32)" fg:x="75687" fg:w="75"/><text x="15.9274%" y="719.50"></text></g><g><title>Unique_Node_List::remove (66 samples, 0.01%)</title><rect x="15.6793%" y="693" width="0.0137%" height="15" fill="rgb(221,70,22)" fg:x="75696" fg:w="66"/><text x="15.9293%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (81 samples, 0.02%)</title><rect x="15.6764%" y="725" width="0.0168%" height="15" fill="rgb(248,145,5)" fg:x="75682" fg:w="81"/><text x="15.9264%" y="735.50"></text></g><g><title>IfNode::Ideal (258 samples, 0.05%)</title><rect x="15.6540%" y="741" width="0.0534%" height="15" fill="rgb(226,116,26)" fg:x="75574" fg:w="258"/><text x="15.9040%" y="751.50"></text></g><g><title>split_if (61 samples, 0.01%)</title><rect x="15.6948%" y="725" width="0.0126%" height="15" fill="rgb(244,5,17)" fg:x="75771" fg:w="61"/><text x="15.9448%" y="735.50"></text></g><g><title>MemNode::Ideal_common (52 samples, 0.01%)</title><rect x="15.7182%" y="725" width="0.0108%" height="15" fill="rgb(252,159,33)" fg:x="75884" fg:w="52"/><text x="15.9682%" y="735.50"></text></g><g><title>Node::dominates (52 samples, 0.01%)</title><rect x="15.7311%" y="693" width="0.0108%" height="15" fill="rgb(206,71,0)" fg:x="75946" fg:w="52"/><text x="15.9811%" y="703.50"></text></g><g><title>MemNode::all_controls_dominate (53 samples, 0.01%)</title><rect x="15.7311%" y="709" width="0.0110%" height="15" fill="rgb(233,118,54)" fg:x="75946" fg:w="53"/><text x="15.9811%" y="719.50"></text></g><g><title>LoadNode::Ideal (153 samples, 0.03%)</title><rect x="15.7145%" y="741" width="0.0317%" height="15" fill="rgb(234,83,48)" fg:x="75866" fg:w="153"/><text x="15.9645%" y="751.50"></text></g><g><title>MemNode::find_previous_store (79 samples, 0.02%)</title><rect x="15.7298%" y="725" width="0.0164%" height="15" fill="rgb(228,3,54)" fg:x="75940" fg:w="79"/><text x="15.9798%" y="735.50"></text></g><g><title>NodeHash::grow (55 samples, 0.01%)</title><rect x="15.8021%" y="725" width="0.0114%" height="15" fill="rgb(226,155,13)" fg:x="76289" fg:w="55"/><text x="16.0521%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (185 samples, 0.04%)</title><rect x="15.7775%" y="741" width="0.0383%" height="15" fill="rgb(241,28,37)" fg:x="76170" fg:w="185"/><text x="16.0275%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (57 samples, 0.01%)</title><rect x="15.8158%" y="741" width="0.0118%" height="15" fill="rgb(233,93,10)" fg:x="76355" fg:w="57"/><text x="16.0658%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (93 samples, 0.02%)</title><rect x="15.8502%" y="725" width="0.0193%" height="15" fill="rgb(225,113,19)" fg:x="76521" fg:w="93"/><text x="16.1002%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (227 samples, 0.05%)</title><rect x="15.8276%" y="741" width="0.0470%" height="15" fill="rgb(241,2,18)" fg:x="76412" fg:w="227"/><text x="16.0776%" y="751.50"></text></g><g><title>PhiNode::Ideal (145 samples, 0.03%)</title><rect x="15.8759%" y="741" width="0.0300%" height="15" fill="rgb(228,207,21)" fg:x="76645" fg:w="145"/><text x="16.1259%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (113 samples, 0.02%)</title><rect x="15.9484%" y="709" width="0.0234%" height="15" fill="rgb(213,211,35)" fg:x="76995" fg:w="113"/><text x="16.1984%" y="719.50"></text></g><g><title>Unique_Node_List::remove (100 samples, 0.02%)</title><rect x="15.9510%" y="693" width="0.0207%" height="15" fill="rgb(209,83,10)" fg:x="77008" fg:w="100"/><text x="16.2010%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (130 samples, 0.03%)</title><rect x="15.9461%" y="725" width="0.0269%" height="15" fill="rgb(209,164,1)" fg:x="76984" fg:w="130"/><text x="16.1961%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (97 samples, 0.02%)</title><rect x="15.9782%" y="725" width="0.0201%" height="15" fill="rgb(213,184,43)" fg:x="77139" fg:w="97"/><text x="16.2282%" y="735.50"></text></g><g><title>RegionNode::Ideal (343 samples, 0.07%)</title><rect x="15.9283%" y="741" width="0.0710%" height="15" fill="rgb(231,61,34)" fg:x="76898" fg:w="343"/><text x="16.1783%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.01%)</title><rect x="16.0037%" y="437" width="0.0110%" height="15" fill="rgb(235,75,3)" fg:x="77262" fg:w="53"/><text x="16.2537%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="16.0037%" y="453" width="0.0141%" height="15" fill="rgb(220,106,47)" fg:x="77262" fg:w="68"/><text x="16.2537%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (81 samples, 0.02%)</title><rect x="16.0037%" y="469" width="0.0168%" height="15" fill="rgb(210,196,33)" fg:x="77262" fg:w="81"/><text x="16.2537%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (101 samples, 0.02%)</title><rect x="16.0037%" y="485" width="0.0209%" height="15" fill="rgb(229,154,42)" fg:x="77262" fg:w="101"/><text x="16.2537%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (125 samples, 0.03%)</title><rect x="16.0037%" y="501" width="0.0259%" height="15" fill="rgb(228,114,26)" fg:x="77262" fg:w="125"/><text x="16.2537%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (147 samples, 0.03%)</title><rect x="16.0037%" y="517" width="0.0304%" height="15" fill="rgb(208,144,1)" fg:x="77262" fg:w="147"/><text x="16.2537%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (160 samples, 0.03%)</title><rect x="16.0037%" y="533" width="0.0331%" height="15" fill="rgb(239,112,37)" fg:x="77262" fg:w="160"/><text x="16.2537%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (166 samples, 0.03%)</title><rect x="16.0037%" y="549" width="0.0344%" height="15" fill="rgb(210,96,50)" fg:x="77262" fg:w="166"/><text x="16.2537%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (190 samples, 0.04%)</title><rect x="16.0037%" y="565" width="0.0394%" height="15" fill="rgb(222,178,2)" fg:x="77262" fg:w="190"/><text x="16.2537%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (210 samples, 0.04%)</title><rect x="16.0037%" y="581" width="0.0435%" height="15" fill="rgb(226,74,18)" fg:x="77262" fg:w="210"/><text x="16.2537%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (222 samples, 0.05%)</title><rect x="16.0037%" y="597" width="0.0460%" height="15" fill="rgb(225,67,54)" fg:x="77262" fg:w="222"/><text x="16.2537%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (236 samples, 0.05%)</title><rect x="16.0037%" y="613" width="0.0489%" height="15" fill="rgb(251,92,32)" fg:x="77262" fg:w="236"/><text x="16.2537%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (252 samples, 0.05%)</title><rect x="16.0035%" y="629" width="0.0522%" height="15" fill="rgb(228,149,22)" fg:x="77261" fg:w="252"/><text x="16.2535%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (270 samples, 0.06%)</title><rect x="16.0035%" y="645" width="0.0559%" height="15" fill="rgb(243,54,13)" fg:x="77261" fg:w="270"/><text x="16.2535%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (287 samples, 0.06%)</title><rect x="16.0032%" y="661" width="0.0594%" height="15" fill="rgb(243,180,28)" fg:x="77260" fg:w="287"/><text x="16.2532%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (323 samples, 0.07%)</title><rect x="16.0032%" y="677" width="0.0669%" height="15" fill="rgb(208,167,24)" fg:x="77260" fg:w="323"/><text x="16.2532%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (357 samples, 0.07%)</title><rect x="16.0026%" y="725" width="0.0739%" height="15" fill="rgb(245,73,45)" fg:x="77257" fg:w="357"/><text x="16.2526%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (356 samples, 0.07%)</title><rect x="16.0028%" y="709" width="0.0737%" height="15" fill="rgb(237,203,48)" fg:x="77258" fg:w="356"/><text x="16.2528%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (355 samples, 0.07%)</title><rect x="16.0030%" y="693" width="0.0735%" height="15" fill="rgb(211,197,16)" fg:x="77259" fg:w="355"/><text x="16.2530%" y="703.50"></text></g><g><title>StoreNode::Ideal (393 samples, 0.08%)</title><rect x="16.0024%" y="741" width="0.0814%" height="15" fill="rgb(243,99,51)" fg:x="77256" fg:w="393"/><text x="16.2524%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (2,389 samples, 0.49%)</title><rect x="15.5968%" y="757" width="0.4948%" height="15" fill="rgb(215,123,29)" fg:x="75298" fg:w="2389"/><text x="15.8468%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (2,470 samples, 0.51%)</title><rect x="15.5834%" y="773" width="0.5116%" height="15" fill="rgb(239,186,37)" fg:x="75233" fg:w="2470"/><text x="15.8334%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (232 samples, 0.05%)</title><rect x="16.1064%" y="741" width="0.0481%" height="15" fill="rgb(252,136,39)" fg:x="77758" fg:w="232"/><text x="16.3564%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (248 samples, 0.05%)</title><rect x="16.1043%" y="757" width="0.0514%" height="15" fill="rgb(223,213,32)" fg:x="77748" fg:w="248"/><text x="16.3543%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (74 samples, 0.02%)</title><rect x="16.1567%" y="757" width="0.0153%" height="15" fill="rgb(233,115,5)" fg:x="78001" fg:w="74"/><text x="16.4067%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (368 samples, 0.08%)</title><rect x="16.1021%" y="773" width="0.0762%" height="15" fill="rgb(207,226,44)" fg:x="77737" fg:w="368"/><text x="16.3521%" y="783.50"></text></g><g><title>Compile::identify_useful_nodes (67 samples, 0.01%)</title><rect x="16.1847%" y="741" width="0.0139%" height="15" fill="rgb(208,126,0)" fg:x="78136" fg:w="67"/><text x="16.4347%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (50 samples, 0.01%)</title><rect x="16.1986%" y="741" width="0.0104%" height="15" fill="rgb(244,66,21)" fg:x="78203" fg:w="50"/><text x="16.4486%" y="751.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (157 samples, 0.03%)</title><rect x="16.1783%" y="773" width="0.0325%" height="15" fill="rgb(222,97,12)" fg:x="78105" fg:w="157"/><text x="16.4283%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (143 samples, 0.03%)</title><rect x="16.1812%" y="757" width="0.0296%" height="15" fill="rgb(219,213,19)" fg:x="78119" fg:w="143"/><text x="16.4312%" y="767.50"></text></g><g><title>Compile::Optimize (20,820 samples, 4.31%)</title><rect x="11.8993%" y="789" width="4.3126%" height="15" fill="rgb(252,169,30)" fg:x="57447" fg:w="20820"/><text x="12.1493%" y="799.50">Compi..</text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="16.2154%" y="677" width="0.0315%" height="15" fill="rgb(206,32,51)" fg:x="78284" fg:w="152"/><text x="16.4654%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (140 samples, 0.03%)</title><rect x="16.2178%" y="661" width="0.0290%" height="15" fill="rgb(250,172,42)" fg:x="78296" fg:w="140"/><text x="16.4678%" y="671.50"></text></g><g><title>Parse::do_all_blocks (157 samples, 0.03%)</title><rect x="16.2149%" y="693" width="0.0325%" height="15" fill="rgb(209,34,43)" fg:x="78282" fg:w="157"/><text x="16.4649%" y="703.50"></text></g><g><title>ParseGenerator::generate (169 samples, 0.04%)</title><rect x="16.2149%" y="725" width="0.0350%" height="15" fill="rgb(223,11,35)" fg:x="78282" fg:w="169"/><text x="16.4649%" y="735.50"></text></g><g><title>Parse::Parse (169 samples, 0.04%)</title><rect x="16.2149%" y="709" width="0.0350%" height="15" fill="rgb(251,219,26)" fg:x="78282" fg:w="169"/><text x="16.4649%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (190 samples, 0.04%)</title><rect x="16.2122%" y="789" width="0.0394%" height="15" fill="rgb(231,119,3)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (190 samples, 0.04%)</title><rect x="16.2122%" y="773" width="0.0394%" height="15" fill="rgb(216,97,11)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="783.50"></text></g><g><title>C2Compiler::compile_method (190 samples, 0.04%)</title><rect x="16.2122%" y="757" width="0.0394%" height="15" fill="rgb(223,59,9)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="767.50"></text></g><g><title>Compile::Compile (190 samples, 0.04%)</title><rect x="16.2122%" y="741" width="0.0394%" height="15" fill="rgb(233,93,31)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (68 samples, 0.01%)</title><rect x="16.2516%" y="661" width="0.0141%" height="15" fill="rgb(239,81,33)" fg:x="78459" fg:w="68"/><text x="16.5016%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (68 samples, 0.01%)</title><rect x="16.2516%" y="645" width="0.0141%" height="15" fill="rgb(213,120,34)" fg:x="78459" fg:w="68"/><text x="16.5016%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (68 samples, 0.01%)</title><rect x="16.2516%" y="629" width="0.0141%" height="15" fill="rgb(243,49,53)" fg:x="78459" fg:w="68"/><text x="16.5016%" y="639.50"></text></g><g><title>CallGenerator::for_inline (69 samples, 0.01%)</title><rect x="16.2516%" y="741" width="0.0143%" height="15" fill="rgb(247,216,33)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="751.50"></text></g><g><title>InlineTree::check_can_parse (69 samples, 0.01%)</title><rect x="16.2516%" y="725" width="0.0143%" height="15" fill="rgb(226,26,14)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (69 samples, 0.01%)</title><rect x="16.2516%" y="709" width="0.0143%" height="15" fill="rgb(215,49,53)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (69 samples, 0.01%)</title><rect x="16.2516%" y="693" width="0.0143%" height="15" fill="rgb(245,162,40)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (69 samples, 0.01%)</title><rect x="16.2516%" y="677" width="0.0143%" height="15" fill="rgb(229,68,17)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (65 samples, 0.01%)</title><rect x="16.2794%" y="629" width="0.0135%" height="15" fill="rgb(213,182,10)" fg:x="78593" fg:w="65"/><text x="16.5294%" y="639.50"></text></g><g><title>Compile::call_generator (86 samples, 0.02%)</title><rect x="16.2777%" y="645" width="0.0178%" height="15" fill="rgb(245,125,30)" fg:x="78585" fg:w="86"/><text x="16.5277%" y="655.50"></text></g><g><title>Parse::do_one_block (113 samples, 0.02%)</title><rect x="16.3187%" y="597" width="0.0234%" height="15" fill="rgb(232,202,2)" fg:x="78783" fg:w="113"/><text x="16.5687%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.02%)</title><rect x="16.3204%" y="581" width="0.0217%" height="15" fill="rgb(237,140,51)" fg:x="78791" fg:w="105"/><text x="16.5704%" y="591.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.03%)</title><rect x="16.3179%" y="613" width="0.0257%" height="15" fill="rgb(236,157,25)" fg:x="78779" fg:w="124"/><text x="16.5679%" y="623.50"></text></g><g><title>ParseGenerator::generate (208 samples, 0.04%)</title><rect x="16.3071%" y="645" width="0.0431%" height="15" fill="rgb(219,209,0)" fg:x="78727" fg:w="208"/><text x="16.5571%" y="655.50"></text></g><g><title>Parse::Parse (207 samples, 0.04%)</title><rect x="16.3073%" y="629" width="0.0429%" height="15" fill="rgb(240,116,54)" fg:x="78728" fg:w="207"/><text x="16.5573%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (80 samples, 0.02%)</title><rect x="16.3502%" y="645" width="0.0166%" height="15" fill="rgb(216,10,36)" fg:x="78935" fg:w="80"/><text x="16.6002%" y="655.50"></text></g><g><title>Parse::do_call (453 samples, 0.09%)</title><rect x="16.2777%" y="661" width="0.0938%" height="15" fill="rgb(222,72,44)" fg:x="78585" fg:w="453"/><text x="16.5277%" y="671.50"></text></g><g><title>Parse::do_field_access (80 samples, 0.02%)</title><rect x="16.3753%" y="661" width="0.0166%" height="15" fill="rgb(232,159,9)" fg:x="79056" fg:w="80"/><text x="16.6253%" y="671.50"></text></g><g><title>Parse::do_all_blocks (635 samples, 0.13%)</title><rect x="16.2700%" y="709" width="0.1315%" height="15" fill="rgb(210,39,32)" fg:x="78548" fg:w="635"/><text x="16.5200%" y="719.50"></text></g><g><title>Parse::do_one_block (634 samples, 0.13%)</title><rect x="16.2702%" y="693" width="0.1313%" height="15" fill="rgb(216,194,45)" fg:x="78549" fg:w="634"/><text x="16.5202%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (628 samples, 0.13%)</title><rect x="16.2715%" y="677" width="0.1301%" height="15" fill="rgb(218,18,35)" fg:x="78555" fg:w="628"/><text x="16.5215%" y="687.50"></text></g><g><title>ParseGenerator::generate (642 samples, 0.13%)</title><rect x="16.2700%" y="741" width="0.1330%" height="15" fill="rgb(207,83,51)" fg:x="78548" fg:w="642"/><text x="16.5200%" y="751.50"></text></g><g><title>Parse::Parse (642 samples, 0.13%)</title><rect x="16.2700%" y="725" width="0.1330%" height="15" fill="rgb(225,63,43)" fg:x="78548" fg:w="642"/><text x="16.5200%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (756 samples, 0.16%)</title><rect x="16.2516%" y="789" width="0.1566%" height="15" fill="rgb(207,57,36)" fg:x="78459" fg:w="756"/><text x="16.5016%" y="799.50"></text></g><g><title>C2Compiler::compile_method (756 samples, 0.16%)</title><rect x="16.2516%" y="773" width="0.1566%" height="15" fill="rgb(216,99,33)" fg:x="78459" fg:w="756"/><text x="16.5016%" y="783.50"></text></g><g><title>Compile::Compile (756 samples, 0.16%)</title><rect x="16.2516%" y="757" width="0.1566%" height="15" fill="rgb(225,42,16)" fg:x="78459" fg:w="756"/><text x="16.5016%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (57 samples, 0.01%)</title><rect x="16.4223%" y="789" width="0.0118%" height="15" fill="rgb(220,201,45)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (57 samples, 0.01%)</title><rect x="16.4223%" y="773" width="0.0118%" height="15" fill="rgb(225,33,4)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (57 samples, 0.01%)</title><rect x="16.4223%" y="757" width="0.0118%" height="15" fill="rgb(224,33,50)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="767.50"></text></g><g><title>C2Compiler::compile_method (57 samples, 0.01%)</title><rect x="16.4223%" y="741" width="0.0118%" height="15" fill="rgb(246,198,51)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="751.50"></text></g><g><title>Compile::Compile (57 samples, 0.01%)</title><rect x="16.4223%" y="725" width="0.0118%" height="15" fill="rgb(205,22,4)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="735.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="16.4525%" y="485" width="0.0108%" height="15" fill="rgb(206,3,8)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="495.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="16.4525%" y="469" width="0.0108%" height="15" fill="rgb(251,23,15)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="479.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="16.4525%" y="453" width="0.0108%" height="15" fill="rgb(252,88,28)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="463.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="16.4525%" y="437" width="0.0108%" height="15" fill="rgb(212,127,14)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="16.4525%" y="421" width="0.0108%" height="15" fill="rgb(247,145,37)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="431.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="16.4525%" y="405" width="0.0108%" height="15" fill="rgb(209,117,53)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="415.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="16.4525%" y="581" width="0.0116%" height="15" fill="rgb(212,90,42)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="591.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="16.4525%" y="565" width="0.0116%" height="15" fill="rgb(218,164,37)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="575.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="16.4525%" y="549" width="0.0116%" height="15" fill="rgb(246,65,34)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="559.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="16.4525%" y="533" width="0.0116%" height="15" fill="rgb(231,100,33)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="16.4525%" y="517" width="0.0116%" height="15" fill="rgb(228,126,14)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="527.50"></text></g><g><title>Parse::do_call (56 samples, 0.01%)</title><rect x="16.4525%" y="501" width="0.0116%" height="15" fill="rgb(215,173,21)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="511.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.01%)</title><rect x="16.4525%" y="677" width="0.0135%" height="15" fill="rgb(210,6,40)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="687.50"></text></g><g><title>Parse::Parse (65 samples, 0.01%)</title><rect x="16.4525%" y="661" width="0.0135%" height="15" fill="rgb(212,48,18)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="671.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.01%)</title><rect x="16.4525%" y="645" width="0.0135%" height="15" fill="rgb(230,214,11)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="655.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.01%)</title><rect x="16.4525%" y="629" width="0.0135%" height="15" fill="rgb(254,105,39)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.01%)</title><rect x="16.4525%" y="613" width="0.0135%" height="15" fill="rgb(245,158,5)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="623.50"></text></g><g><title>Parse::do_call (65 samples, 0.01%)</title><rect x="16.4525%" y="597" width="0.0135%" height="15" fill="rgb(249,208,11)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="607.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="16.4525%" y="773" width="0.0153%" height="15" fill="rgb(210,39,28)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="783.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="16.4525%" y="757" width="0.0153%" height="15" fill="rgb(211,56,53)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="767.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.02%)</title><rect x="16.4525%" y="741" width="0.0153%" height="15" fill="rgb(226,201,30)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="751.50"></text></g><g><title>Parse::do_one_block (74 samples, 0.02%)</title><rect x="16.4525%" y="725" width="0.0153%" height="15" fill="rgb(239,101,34)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (74 samples, 0.02%)</title><rect x="16.4525%" y="709" width="0.0153%" height="15" fill="rgb(226,209,5)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="719.50"></text></g><g><title>Parse::do_call (74 samples, 0.02%)</title><rect x="16.4525%" y="693" width="0.0153%" height="15" fill="rgb(250,105,47)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="703.50"></text></g><g><title>Parse::do_call (78 samples, 0.02%)</title><rect x="16.4525%" y="789" width="0.0162%" height="15" fill="rgb(230,72,3)" fg:x="79429" fg:w="78"/><text x="16.7025%" y="799.50"></text></g><g><title>Parse::do_call (49 samples, 0.01%)</title><rect x="16.4908%" y="37" width="0.0101%" height="15" fill="rgb(232,218,39)" fg:x="79614" fg:w="49"/><text x="16.7408%" y="47.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.02%)</title><rect x="16.4898%" y="117" width="0.0157%" height="15" fill="rgb(248,166,6)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="127.50"></text></g><g><title>Parse::Parse (76 samples, 0.02%)</title><rect x="16.4898%" y="101" width="0.0157%" height="15" fill="rgb(247,89,20)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="111.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.02%)</title><rect x="16.4898%" y="85" width="0.0157%" height="15" fill="rgb(248,130,54)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="95.50"></text></g><g><title>Parse::do_one_block (76 samples, 0.02%)</title><rect x="16.4898%" y="69" width="0.0157%" height="15" fill="rgb(234,196,4)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.02%)</title><rect x="16.4898%" y="53" width="0.0157%" height="15" fill="rgb(250,143,31)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="63.50"></text></g><g><title>Parse::do_call (87 samples, 0.02%)</title><rect x="16.4877%" y="133" width="0.0180%" height="15" fill="rgb(211,110,34)" fg:x="79599" fg:w="87"/><text x="16.7377%" y="143.50"></text></g><g><title>Parse::do_all_blocks (93 samples, 0.02%)</title><rect x="16.4877%" y="181" width="0.0193%" height="15" fill="rgb(215,124,48)" fg:x="79599" fg:w="93"/><text x="16.7377%" y="191.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="16.4877%" y="165" width="0.0193%" height="15" fill="rgb(216,46,13)" fg:x="79599" fg:w="93"/><text x="16.7377%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="16.4877%" y="149" width="0.0193%" height="15" fill="rgb(205,184,25)" fg:x="79599" fg:w="93"/><text x="16.7377%" y="159.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="16.4877%" y="213" width="0.0195%" height="15" fill="rgb(228,1,10)" fg:x="79599" fg:w="94"/><text x="16.7377%" y="223.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="16.4877%" y="197" width="0.0195%" height="15" fill="rgb(213,116,27)" fg:x="79599" fg:w="94"/><text x="16.7377%" y="207.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="16.4859%" y="309" width="0.0228%" height="15" fill="rgb(241,95,50)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="319.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="16.4859%" y="293" width="0.0228%" height="15" fill="rgb(238,48,32)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="303.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="16.4859%" y="277" width="0.0228%" height="15" fill="rgb(235,113,49)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="287.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="16.4859%" y="261" width="0.0228%" height="15" fill="rgb(205,127,43)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="16.4859%" y="245" width="0.0228%" height="15" fill="rgb(250,162,2)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="255.50"></text></g><g><title>Parse::do_call (110 samples, 0.02%)</title><rect x="16.4859%" y="229" width="0.0228%" height="15" fill="rgb(220,13,41)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="239.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.02%)</title><rect x="16.4857%" y="405" width="0.0249%" height="15" fill="rgb(249,221,25)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="415.50"></text></g><g><title>Parse::Parse (120 samples, 0.02%)</title><rect x="16.4857%" y="389" width="0.0249%" height="15" fill="rgb(215,208,19)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="399.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.02%)</title><rect x="16.4857%" y="373" width="0.0249%" height="15" fill="rgb(236,175,2)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="383.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="16.4857%" y="357" width="0.0249%" height="15" fill="rgb(241,52,2)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (120 samples, 0.02%)</title><rect x="16.4857%" y="341" width="0.0249%" height="15" fill="rgb(248,140,14)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="351.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="16.4857%" y="325" width="0.0249%" height="15" fill="rgb(253,22,42)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="335.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.03%)</title><rect x="16.4857%" y="501" width="0.0275%" height="15" fill="rgb(234,61,47)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="511.50"></text></g><g><title>Parse::Parse (133 samples, 0.03%)</title><rect x="16.4857%" y="485" width="0.0275%" height="15" fill="rgb(208,226,15)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="495.50"></text></g><g><title>Parse::do_all_blocks (133 samples, 0.03%)</title><rect x="16.4857%" y="469" width="0.0275%" height="15" fill="rgb(217,221,4)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="479.50"></text></g><g><title>Parse::do_one_block (133 samples, 0.03%)</title><rect x="16.4857%" y="453" width="0.0275%" height="15" fill="rgb(212,174,34)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (133 samples, 0.03%)</title><rect x="16.4857%" y="437" width="0.0275%" height="15" fill="rgb(253,83,4)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="447.50"></text></g><g><title>Parse::do_call (133 samples, 0.03%)</title><rect x="16.4857%" y="421" width="0.0275%" height="15" fill="rgb(250,195,49)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="431.50"></text></g><g><title>ParseGenerator::generate (145 samples, 0.03%)</title><rect x="16.4857%" y="597" width="0.0300%" height="15" fill="rgb(241,192,25)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="607.50"></text></g><g><title>Parse::Parse (145 samples, 0.03%)</title><rect x="16.4857%" y="581" width="0.0300%" height="15" fill="rgb(208,124,10)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="591.50"></text></g><g><title>Parse::do_all_blocks (145 samples, 0.03%)</title><rect x="16.4857%" y="565" width="0.0300%" height="15" fill="rgb(222,33,0)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="575.50"></text></g><g><title>Parse::do_one_block (145 samples, 0.03%)</title><rect x="16.4857%" y="549" width="0.0300%" height="15" fill="rgb(234,209,28)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (145 samples, 0.03%)</title><rect x="16.4857%" y="533" width="0.0300%" height="15" fill="rgb(224,11,23)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="543.50"></text></g><g><title>Parse::do_call (145 samples, 0.03%)</title><rect x="16.4857%" y="517" width="0.0300%" height="15" fill="rgb(232,99,1)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="527.50"></text></g><g><title>ParseGenerator::generate (165 samples, 0.03%)</title><rect x="16.4857%" y="693" width="0.0342%" height="15" fill="rgb(237,95,45)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="703.50"></text></g><g><title>Parse::Parse (165 samples, 0.03%)</title><rect x="16.4857%" y="677" width="0.0342%" height="15" fill="rgb(208,109,11)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="687.50"></text></g><g><title>Parse::do_all_blocks (165 samples, 0.03%)</title><rect x="16.4857%" y="661" width="0.0342%" height="15" fill="rgb(216,190,48)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="671.50"></text></g><g><title>Parse::do_one_block (165 samples, 0.03%)</title><rect x="16.4857%" y="645" width="0.0342%" height="15" fill="rgb(251,171,36)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (165 samples, 0.03%)</title><rect x="16.4857%" y="629" width="0.0342%" height="15" fill="rgb(230,62,22)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="639.50"></text></g><g><title>Parse::do_call (165 samples, 0.03%)</title><rect x="16.4857%" y="613" width="0.0342%" height="15" fill="rgb(225,114,35)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="623.50"></text></g><g><title>ParseGenerator::generate (191 samples, 0.04%)</title><rect x="16.4857%" y="789" width="0.0396%" height="15" fill="rgb(215,118,42)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="799.50"></text></g><g><title>Parse::Parse (191 samples, 0.04%)</title><rect x="16.4857%" y="773" width="0.0396%" height="15" fill="rgb(243,119,21)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="783.50"></text></g><g><title>Parse::do_all_blocks (191 samples, 0.04%)</title><rect x="16.4857%" y="757" width="0.0396%" height="15" fill="rgb(252,177,53)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="767.50"></text></g><g><title>Parse::do_one_block (191 samples, 0.04%)</title><rect x="16.4857%" y="741" width="0.0396%" height="15" fill="rgb(237,209,29)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (191 samples, 0.04%)</title><rect x="16.4857%" y="725" width="0.0396%" height="15" fill="rgb(212,65,23)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="735.50"></text></g><g><title>Parse::do_call (191 samples, 0.04%)</title><rect x="16.4857%" y="709" width="0.0396%" height="15" fill="rgb(230,222,46)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="719.50"></text></g><g><title>Thread::call_run (65 samples, 0.01%)</title><rect x="16.5316%" y="789" width="0.0135%" height="15" fill="rgb(215,135,32)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (65 samples, 0.01%)</title><rect x="16.5316%" y="773" width="0.0135%" height="15" fill="rgb(246,101,22)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (65 samples, 0.01%)</title><rect x="16.5316%" y="757" width="0.0135%" height="15" fill="rgb(206,107,13)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (65 samples, 0.01%)</title><rect x="16.5316%" y="741" width="0.0135%" height="15" fill="rgb(250,100,44)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="751.50"></text></g><g><title>C2Compiler::compile_method (65 samples, 0.01%)</title><rect x="16.5316%" y="725" width="0.0135%" height="15" fill="rgb(231,147,38)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="735.50"></text></g><g><title>Compile::Compile (65 samples, 0.01%)</title><rect x="16.5316%" y="709" width="0.0135%" height="15" fill="rgb(229,8,40)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="719.50"></text></g><g><title>_dl_update_slotinfo (55 samples, 0.01%)</title><rect x="16.5495%" y="789" width="0.0114%" height="15" fill="rgb(221,135,30)" fg:x="79897" fg:w="55"/><text x="16.7995%" y="799.50"></text></g><g><title>start_thread (63 samples, 0.01%)</title><rect x="16.5638%" y="789" width="0.0130%" height="15" fill="rgb(249,193,18)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="799.50"></text></g><g><title>thread_native_entry (63 samples, 0.01%)</title><rect x="16.5638%" y="773" width="0.0130%" height="15" fill="rgb(209,133,39)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="783.50"></text></g><g><title>Thread::call_run (63 samples, 0.01%)</title><rect x="16.5638%" y="757" width="0.0130%" height="15" fill="rgb(232,100,14)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (63 samples, 0.01%)</title><rect x="16.5638%" y="741" width="0.0130%" height="15" fill="rgb(224,185,1)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (63 samples, 0.01%)</title><rect x="16.5638%" y="725" width="0.0130%" height="15" fill="rgb(223,139,8)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (63 samples, 0.01%)</title><rect x="16.5638%" y="709" width="0.0130%" height="15" fill="rgb(232,213,38)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="719.50"></text></g><g><title>C2Compiler::compile_method (63 samples, 0.01%)</title><rect x="16.5638%" y="693" width="0.0130%" height="15" fill="rgb(207,94,22)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="703.50"></text></g><g><title>Compile::Compile (63 samples, 0.01%)</title><rect x="16.5638%" y="677" width="0.0130%" height="15" fill="rgb(219,183,54)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="687.50"></text></g><g><title>[unknown] (63,686 samples, 13.19%)</title><rect x="3.3904%" y="805" width="13.1916%" height="15" fill="rgb(216,185,54)" fg:x="16368" fg:w="63686"/><text x="3.6404%" y="815.50">[unknown]</text></g><g><title>Dict::Insert (67 samples, 0.01%)</title><rect x="16.6039%" y="629" width="0.0139%" height="15" fill="rgb(254,217,39)" fg:x="80160" fg:w="67"/><text x="16.8539%" y="639.50"></text></g><g><title>Type::Initialize (75 samples, 0.02%)</title><rect x="16.6035%" y="645" width="0.0155%" height="15" fill="rgb(240,178,23)" fg:x="80158" fg:w="75"/><text x="16.8535%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (77 samples, 0.02%)</title><rect x="16.6033%" y="661" width="0.0159%" height="15" fill="rgb(218,11,47)" fg:x="80157" fg:w="77"/><text x="16.8533%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (175 samples, 0.04%)</title><rect x="16.6288%" y="645" width="0.0362%" height="15" fill="rgb(218,51,51)" fg:x="80280" fg:w="175"/><text x="16.8788%" y="655.50"></text></g><g><title>Compile::remove_useless_nodes (176 samples, 0.04%)</title><rect x="16.6650%" y="645" width="0.0365%" height="15" fill="rgb(238,126,27)" fg:x="80455" fg:w="176"/><text x="16.9150%" y="655.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (438 samples, 0.09%)</title><rect x="16.6201%" y="661" width="0.0907%" height="15" fill="rgb(249,202,22)" fg:x="80238" fg:w="438"/><text x="16.8701%" y="671.50"></text></g><g><title>C2Compiler::compile_method (660 samples, 0.14%)</title><rect x="16.5863%" y="693" width="0.1367%" height="15" fill="rgb(254,195,49)" fg:x="80075" fg:w="660"/><text x="16.8363%" y="703.50"></text></g><g><title>Compile::Compile (655 samples, 0.14%)</title><rect x="16.5874%" y="677" width="0.1357%" height="15" fill="rgb(208,123,14)" fg:x="80080" fg:w="655"/><text x="16.8374%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (791 samples, 0.16%)</title><rect x="16.5857%" y="709" width="0.1638%" height="15" fill="rgb(224,200,8)" fg:x="80072" fg:w="791"/><text x="16.8357%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="16.7684%" y="453" width="0.0101%" height="15" fill="rgb(217,61,36)" fg:x="80954" fg:w="49"/><text x="17.0184%" y="463.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="16.7678%" y="469" width="0.0110%" height="15" fill="rgb(206,35,45)" fg:x="80951" fg:w="53"/><text x="17.0178%" y="479.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.02%)</title><rect x="16.7630%" y="517" width="0.0188%" height="15" fill="rgb(217,65,33)" fg:x="80928" fg:w="91"/><text x="17.0130%" y="527.50"></text></g><g><title>schedule (81 samples, 0.02%)</title><rect x="16.7651%" y="501" width="0.0168%" height="15" fill="rgb(222,158,48)" fg:x="80938" fg:w="81"/><text x="17.0151%" y="511.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="16.7655%" y="485" width="0.0164%" height="15" fill="rgb(254,2,54)" fg:x="80940" fg:w="79"/><text x="17.0155%" y="495.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="16.7626%" y="549" width="0.0207%" height="15" fill="rgb(250,143,38)" fg:x="80926" fg:w="100"/><text x="17.0126%" y="559.50"></text></g><g><title>futex_wait (99 samples, 0.02%)</title><rect x="16.7628%" y="533" width="0.0205%" height="15" fill="rgb(248,25,0)" fg:x="80927" fg:w="99"/><text x="17.0128%" y="543.50"></text></g><g><title>do_syscall_64 (105 samples, 0.02%)</title><rect x="16.7620%" y="581" width="0.0217%" height="15" fill="rgb(206,152,27)" fg:x="80923" fg:w="105"/><text x="17.0120%" y="591.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.02%)</title><rect x="16.7622%" y="565" width="0.0215%" height="15" fill="rgb(240,77,30)" fg:x="80924" fg:w="104"/><text x="17.0122%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (118 samples, 0.02%)</title><rect x="16.7595%" y="645" width="0.0244%" height="15" fill="rgb(231,5,3)" fg:x="80911" fg:w="118"/><text x="17.0095%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (118 samples, 0.02%)</title><rect x="16.7595%" y="629" width="0.0244%" height="15" fill="rgb(207,226,32)" fg:x="80911" fg:w="118"/><text x="17.0095%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (111 samples, 0.02%)</title><rect x="16.7609%" y="613" width="0.0230%" height="15" fill="rgb(222,207,47)" fg:x="80918" fg:w="111"/><text x="17.0109%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.02%)</title><rect x="16.7618%" y="597" width="0.0222%" height="15" fill="rgb(229,115,45)" fg:x="80922" fg:w="107"/><text x="17.0118%" y="607.50"></text></g><g><title>Monitor::wait (161 samples, 0.03%)</title><rect x="16.7525%" y="693" width="0.0333%" height="15" fill="rgb(224,191,6)" fg:x="80877" fg:w="161"/><text x="17.0025%" y="703.50"></text></g><g><title>Monitor::IWait (157 samples, 0.03%)</title><rect x="16.7533%" y="677" width="0.0325%" height="15" fill="rgb(230,227,24)" fg:x="80881" fg:w="157"/><text x="17.0033%" y="687.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.03%)</title><rect x="16.7587%" y="661" width="0.0271%" height="15" fill="rgb(228,80,19)" fg:x="80907" fg:w="131"/><text x="17.0087%" y="671.50"></text></g><g><title>CompileQueue::get (204 samples, 0.04%)</title><rect x="16.7508%" y="709" width="0.0423%" height="15" fill="rgb(247,229,0)" fg:x="80869" fg:w="204"/><text x="17.0008%" y="719.50"></text></g><g><title>__GI___clone (1,012 samples, 0.21%)</title><rect x="16.5838%" y="805" width="0.2096%" height="15" fill="rgb(237,194,15)" fg:x="80063" fg:w="1012"/><text x="16.8338%" y="815.50"></text></g><g><title>start_thread (1,012 samples, 0.21%)</title><rect x="16.5838%" y="789" width="0.2096%" height="15" fill="rgb(219,203,20)" fg:x="80063" fg:w="1012"/><text x="16.8338%" y="799.50"></text></g><g><title>thread_native_entry (1,012 samples, 0.21%)</title><rect x="16.5838%" y="773" width="0.2096%" height="15" fill="rgb(234,128,8)" fg:x="80063" fg:w="1012"/><text x="16.8338%" y="783.50"></text></g><g><title>Thread::call_run (1,005 samples, 0.21%)</title><rect x="16.5853%" y="757" width="0.2082%" height="15" fill="rgb(248,202,8)" fg:x="80070" fg:w="1005"/><text x="16.8353%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (1,004 samples, 0.21%)</title><rect x="16.5855%" y="741" width="0.2080%" height="15" fill="rgb(206,104,37)" fg:x="80071" fg:w="1004"/><text x="16.8355%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,004 samples, 0.21%)</title><rect x="16.5855%" y="725" width="0.2080%" height="15" fill="rgb(223,8,27)" fg:x="80071" fg:w="1004"/><text x="16.8355%" y="735.50"></text></g><g><title>asm_exc_page_fault (49 samples, 0.01%)</title><rect x="16.7957%" y="805" width="0.0101%" height="15" fill="rgb(216,217,28)" fg:x="81086" fg:w="49"/><text x="17.0457%" y="815.50"></text></g><g><title>C2_CompilerThre (68,423 samples, 14.17%)</title><rect x="2.6441%" y="821" width="14.1728%" height="15" fill="rgb(249,199,1)" fg:x="12765" fg:w="68423"/><text x="2.8941%" y="831.50">C2_CompilerThre</text></g><g><title>[perf-987172.map] (56 samples, 0.01%)</title><rect x="16.8173%" y="805" width="0.0116%" height="15" fill="rgb(240,85,17)" fg:x="81190" fg:w="56"/><text x="17.0673%" y="815.50"></text></g><g><title>Command-Accumul (71 samples, 0.01%)</title><rect x="16.8169%" y="821" width="0.0147%" height="15" fill="rgb(206,108,45)" fg:x="81188" fg:w="71"/><text x="17.0669%" y="831.50"></text></g><g><title>update_curr (52 samples, 0.01%)</title><rect x="17.3467%" y="549" width="0.0108%" height="15" fill="rgb(245,210,41)" fg:x="83746" fg:w="52"/><text x="17.5967%" y="559.50"></text></g><g><title>dequeue_entity (132 samples, 0.03%)</title><rect x="17.3360%" y="565" width="0.0273%" height="15" fill="rgb(206,13,37)" fg:x="83694" fg:w="132"/><text x="17.5860%" y="575.50"></text></g><g><title>dequeue_task_fair (151 samples, 0.03%)</title><rect x="17.3331%" y="581" width="0.0313%" height="15" fill="rgb(250,61,18)" fg:x="83680" fg:w="151"/><text x="17.5831%" y="591.50"></text></g><g><title>finish_task_switch (50 samples, 0.01%)</title><rect x="17.3643%" y="581" width="0.0104%" height="15" fill="rgb(235,172,48)" fg:x="83831" fg:w="50"/><text x="17.6143%" y="591.50"></text></g><g><title>psi_task_change (132 samples, 0.03%)</title><rect x="17.3840%" y="581" width="0.0273%" height="15" fill="rgb(249,201,17)" fg:x="83926" fg:w="132"/><text x="17.6340%" y="591.50"></text></g><g><title>psi_group_change (105 samples, 0.02%)</title><rect x="17.3896%" y="565" width="0.0217%" height="15" fill="rgb(219,208,6)" fg:x="83953" fg:w="105"/><text x="17.6396%" y="575.50"></text></g><g><title>futex_wait_queue_me (551 samples, 0.11%)</title><rect x="17.3016%" y="629" width="0.1141%" height="15" fill="rgb(248,31,23)" fg:x="83528" fg:w="551"/><text x="17.5516%" y="639.50"></text></g><g><title>schedule (482 samples, 0.10%)</title><rect x="17.3159%" y="613" width="0.0998%" height="15" fill="rgb(245,15,42)" fg:x="83597" fg:w="482"/><text x="17.5659%" y="623.50"></text></g><g><title>__schedule (465 samples, 0.10%)</title><rect x="17.3194%" y="597" width="0.0963%" height="15" fill="rgb(222,217,39)" fg:x="83614" fg:w="465"/><text x="17.5694%" y="607.50"></text></g><g><title>futex_wait_setup (50 samples, 0.01%)</title><rect x="17.4157%" y="629" width="0.0104%" height="15" fill="rgb(210,219,27)" fg:x="84079" fg:w="50"/><text x="17.6657%" y="639.50"></text></g><g><title>do_futex (678 samples, 0.14%)</title><rect x="17.2937%" y="661" width="0.1404%" height="15" fill="rgb(252,166,36)" fg:x="83490" fg:w="678"/><text x="17.5437%" y="671.50"></text></g><g><title>futex_wait (669 samples, 0.14%)</title><rect x="17.2956%" y="645" width="0.1386%" height="15" fill="rgb(245,132,34)" fg:x="83499" fg:w="669"/><text x="17.5456%" y="655.50"></text></g><g><title>__x64_sys_futex (704 samples, 0.15%)</title><rect x="17.2916%" y="677" width="0.1458%" height="15" fill="rgb(236,54,3)" fg:x="83480" fg:w="704"/><text x="17.5416%" y="687.50"></text></g><g><title>do_syscall_64 (710 samples, 0.15%)</title><rect x="17.2910%" y="693" width="0.1471%" height="15" fill="rgb(241,173,43)" fg:x="83477" fg:w="710"/><text x="17.5410%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (746 samples, 0.15%)</title><rect x="17.2883%" y="709" width="0.1545%" height="15" fill="rgb(215,190,9)" fg:x="83464" fg:w="746"/><text x="17.5383%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (856 samples, 0.18%)</title><rect x="17.2674%" y="757" width="0.1773%" height="15" fill="rgb(242,101,16)" fg:x="83363" fg:w="856"/><text x="17.5174%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (855 samples, 0.18%)</title><rect x="17.2676%" y="741" width="0.1771%" height="15" fill="rgb(223,190,21)" fg:x="83364" fg:w="855"/><text x="17.5176%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (802 samples, 0.17%)</title><rect x="17.2786%" y="725" width="0.1661%" height="15" fill="rgb(215,228,25)" fg:x="83417" fg:w="802"/><text x="17.5286%" y="735.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.01%)</title><rect x="17.4519%" y="709" width="0.0104%" height="15" fill="rgb(225,36,22)" fg:x="84254" fg:w="50"/><text x="17.7019%" y="719.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="17.4517%" y="725" width="0.0116%" height="15" fill="rgb(251,106,46)" fg:x="84253" fg:w="56"/><text x="17.7017%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="17.4513%" y="741" width="0.0122%" height="15" fill="rgb(208,90,1)" fg:x="84251" fg:w="59"/><text x="17.7013%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (76 samples, 0.02%)</title><rect x="17.4480%" y="757" width="0.0157%" height="15" fill="rgb(243,10,4)" fg:x="84235" fg:w="76"/><text x="17.6980%" y="767.50"></text></g><g><title>Parker::park (1,112 samples, 0.23%)</title><rect x="17.2444%" y="773" width="0.2303%" height="15" fill="rgb(212,137,27)" fg:x="83252" fg:w="1112"/><text x="17.4944%" y="783.50"></text></g><g><title>Unsafe_Park (1,197 samples, 0.25%)</title><rect x="17.2332%" y="789" width="0.2479%" height="15" fill="rgb(231,220,49)" fg:x="83198" fg:w="1197"/><text x="17.4832%" y="799.50"></text></g><g><title>[perf-987172.map] (3,083 samples, 0.64%)</title><rect x="16.8529%" y="805" width="0.6386%" height="15" fill="rgb(237,96,20)" fg:x="81362" fg:w="3083"/><text x="17.1029%" y="815.50"></text></g><g><title>[unknown] (53 samples, 0.01%)</title><rect x="17.4915%" y="805" width="0.0110%" height="15" fill="rgb(239,229,30)" fg:x="84445" fg:w="53"/><text x="17.7415%" y="815.50"></text></g><g><title>ForkJoinPool.co (3,200 samples, 0.66%)</title><rect x="16.8430%" y="821" width="0.6628%" height="15" fill="rgb(219,65,33)" fg:x="81314" fg:w="3200"/><text x="17.0930%" y="831.50"></text></g><g><title>__GI___clone (51 samples, 0.01%)</title><rect x="17.5162%" y="805" width="0.0106%" height="15" fill="rgb(243,134,7)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="815.50"></text></g><g><title>start_thread (51 samples, 0.01%)</title><rect x="17.5162%" y="789" width="0.0106%" height="15" fill="rgb(216,177,54)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="799.50"></text></g><g><title>thread_native_entry (51 samples, 0.01%)</title><rect x="17.5162%" y="773" width="0.0106%" height="15" fill="rgb(211,160,20)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="783.50"></text></g><g><title>Thread::call_run (51 samples, 0.01%)</title><rect x="17.5162%" y="757" width="0.0106%" height="15" fill="rgb(239,85,39)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="767.50"></text></g><g><title>GangWorker::loop (51 samples, 0.01%)</title><rect x="17.5162%" y="741" width="0.0106%" height="15" fill="rgb(232,125,22)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="751.50"></text></g><g><title>G1_Conc#1 (57 samples, 0.01%)</title><rect x="17.5153%" y="821" width="0.0118%" height="15" fill="rgb(244,57,34)" fg:x="84560" fg:w="57"/><text x="17.7653%" y="831.50"></text></g><g><title>G1RemSet::refine_card_concurrently (98 samples, 0.02%)</title><rect x="17.5373%" y="693" width="0.0203%" height="15" fill="rgb(214,203,32)" fg:x="84666" fg:w="98"/><text x="17.7873%" y="703.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (99 samples, 0.02%)</title><rect x="17.5373%" y="709" width="0.0205%" height="15" fill="rgb(207,58,43)" fg:x="84666" fg:w="99"/><text x="17.7873%" y="719.50"></text></g><g><title>Thread::call_run (115 samples, 0.02%)</title><rect x="17.5373%" y="757" width="0.0238%" height="15" fill="rgb(215,193,15)" fg:x="84666" fg:w="115"/><text x="17.7873%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (115 samples, 0.02%)</title><rect x="17.5373%" y="741" width="0.0238%" height="15" fill="rgb(232,15,44)" fg:x="84666" fg:w="115"/><text x="17.7873%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (115 samples, 0.02%)</title><rect x="17.5373%" y="725" width="0.0238%" height="15" fill="rgb(212,3,48)" fg:x="84666" fg:w="115"/><text x="17.7873%" y="735.50"></text></g><g><title>G1_Refine#0 (135 samples, 0.03%)</title><rect x="17.5334%" y="821" width="0.0280%" height="15" fill="rgb(218,128,7)" fg:x="84647" fg:w="135"/><text x="17.7834%" y="831.50"></text></g><g><title>__GI___clone (124 samples, 0.03%)</title><rect x="17.5356%" y="805" width="0.0257%" height="15" fill="rgb(226,216,39)" fg:x="84658" fg:w="124"/><text x="17.7856%" y="815.50"></text></g><g><title>start_thread (116 samples, 0.02%)</title><rect x="17.5373%" y="789" width="0.0240%" height="15" fill="rgb(243,47,51)" fg:x="84666" fg:w="116"/><text x="17.7873%" y="799.50"></text></g><g><title>thread_native_entry (116 samples, 0.02%)</title><rect x="17.5373%" y="773" width="0.0240%" height="15" fill="rgb(241,183,40)" fg:x="84666" fg:w="116"/><text x="17.7873%" y="783.50"></text></g><g><title>G1_Refine#1 (56 samples, 0.01%)</title><rect x="17.5613%" y="821" width="0.0116%" height="15" fill="rgb(231,217,32)" fg:x="84782" fg:w="56"/><text x="17.8113%" y="831.50"></text></g><g><title>__GI___clone (55 samples, 0.01%)</title><rect x="17.5615%" y="805" width="0.0114%" height="15" fill="rgb(229,61,38)" fg:x="84783" fg:w="55"/><text x="17.8115%" y="815.50"></text></g><g><title>start_thread (54 samples, 0.01%)</title><rect x="17.5617%" y="789" width="0.0112%" height="15" fill="rgb(225,210,5)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="799.50"></text></g><g><title>thread_native_entry (54 samples, 0.01%)</title><rect x="17.5617%" y="773" width="0.0112%" height="15" fill="rgb(231,79,45)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="783.50"></text></g><g><title>Thread::call_run (54 samples, 0.01%)</title><rect x="17.5617%" y="757" width="0.0112%" height="15" fill="rgb(224,100,7)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (54 samples, 0.01%)</title><rect x="17.5617%" y="741" width="0.0112%" height="15" fill="rgb(241,198,18)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (54 samples, 0.01%)</title><rect x="17.5617%" y="725" width="0.0112%" height="15" fill="rgb(252,97,53)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="735.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (54 samples, 0.01%)</title><rect x="17.5617%" y="709" width="0.0112%" height="15" fill="rgb(220,88,7)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="719.50"></text></g><g><title>G1RemSet::refine_card_concurrently (53 samples, 0.01%)</title><rect x="17.5619%" y="693" width="0.0110%" height="15" fill="rgb(213,176,14)" fg:x="84785" fg:w="53"/><text x="17.8119%" y="703.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (72 samples, 0.01%)</title><rect x="17.5795%" y="693" width="0.0149%" height="15" fill="rgb(246,73,7)" fg:x="84870" fg:w="72"/><text x="17.8295%" y="703.50"></text></g><g><title>G1CollectionSet::iterate (78 samples, 0.02%)</title><rect x="17.5785%" y="709" width="0.0162%" height="15" fill="rgb(245,64,36)" fg:x="84865" fg:w="78"/><text x="17.8285%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (118 samples, 0.02%)</title><rect x="17.5783%" y="725" width="0.0244%" height="15" fill="rgb(245,80,10)" fg:x="84864" fg:w="118"/><text x="17.8283%" y="735.50"></text></g><g><title>G1_Young_RemSet (128 samples, 0.03%)</title><rect x="17.5781%" y="821" width="0.0265%" height="15" fill="rgb(232,107,50)" fg:x="84863" fg:w="128"/><text x="17.8281%" y="831.50"></text></g><g><title>__GI___clone (127 samples, 0.03%)</title><rect x="17.5783%" y="805" width="0.0263%" height="15" fill="rgb(253,3,0)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="815.50"></text></g><g><title>start_thread (127 samples, 0.03%)</title><rect x="17.5783%" y="789" width="0.0263%" height="15" fill="rgb(212,99,53)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="799.50"></text></g><g><title>thread_native_entry (127 samples, 0.03%)</title><rect x="17.5783%" y="773" width="0.0263%" height="15" fill="rgb(249,111,54)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="783.50"></text></g><g><title>Thread::call_run (127 samples, 0.03%)</title><rect x="17.5783%" y="757" width="0.0263%" height="15" fill="rgb(249,55,30)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (127 samples, 0.03%)</title><rect x="17.5783%" y="741" width="0.0263%" height="15" fill="rgb(237,47,42)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="17.6286%" y="677" width="0.0193%" height="15" fill="rgb(211,20,18)" fg:x="85107" fg:w="93"/><text x="17.8786%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (169 samples, 0.04%)</title><rect x="17.6131%" y="693" width="0.0350%" height="15" fill="rgb(231,203,46)" fg:x="85032" fg:w="169"/><text x="17.8631%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (231 samples, 0.05%)</title><rect x="17.6117%" y="709" width="0.0478%" height="15" fill="rgb(237,142,3)" fg:x="85025" fg:w="231"/><text x="17.8617%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (81 samples, 0.02%)</title><rect x="17.6647%" y="613" width="0.0168%" height="15" fill="rgb(241,107,1)" fg:x="85281" fg:w="81"/><text x="17.9147%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (63 samples, 0.01%)</title><rect x="17.6684%" y="597" width="0.0130%" height="15" fill="rgb(229,83,13)" fg:x="85299" fg:w="63"/><text x="17.9184%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (111 samples, 0.02%)</title><rect x="17.6595%" y="629" width="0.0230%" height="15" fill="rgb(241,91,40)" fg:x="85256" fg:w="111"/><text x="17.9095%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (122 samples, 0.03%)</title><rect x="17.6595%" y="677" width="0.0253%" height="15" fill="rgb(225,3,45)" fg:x="85256" fg:w="122"/><text x="17.9095%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (122 samples, 0.03%)</title><rect x="17.6595%" y="661" width="0.0253%" height="15" fill="rgb(244,223,14)" fg:x="85256" fg:w="122"/><text x="17.9095%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (122 samples, 0.03%)</title><rect x="17.6595%" y="645" width="0.0253%" height="15" fill="rgb(224,124,37)" fg:x="85256" fg:w="122"/><text x="17.9095%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (152 samples, 0.03%)</title><rect x="17.6595%" y="709" width="0.0315%" height="15" fill="rgb(251,171,30)" fg:x="85256" fg:w="152"/><text x="17.9095%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (152 samples, 0.03%)</title><rect x="17.6595%" y="693" width="0.0315%" height="15" fill="rgb(236,46,54)" fg:x="85256" fg:w="152"/><text x="17.9095%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (55 samples, 0.01%)</title><rect x="17.6937%" y="597" width="0.0114%" height="15" fill="rgb(245,213,5)" fg:x="85421" fg:w="55"/><text x="17.9437%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (68 samples, 0.01%)</title><rect x="17.6912%" y="629" width="0.0141%" height="15" fill="rgb(230,144,27)" fg:x="85409" fg:w="68"/><text x="17.9412%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (62 samples, 0.01%)</title><rect x="17.6924%" y="613" width="0.0128%" height="15" fill="rgb(220,86,6)" fg:x="85415" fg:w="62"/><text x="17.9424%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (80 samples, 0.02%)</title><rect x="17.6910%" y="661" width="0.0166%" height="15" fill="rgb(240,20,13)" fg:x="85408" fg:w="80"/><text x="17.9410%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (80 samples, 0.02%)</title><rect x="17.6910%" y="645" width="0.0166%" height="15" fill="rgb(217,89,34)" fg:x="85408" fg:w="80"/><text x="17.9410%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (92 samples, 0.02%)</title><rect x="17.6910%" y="709" width="0.0191%" height="15" fill="rgb(229,13,5)" fg:x="85408" fg:w="92"/><text x="17.9410%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (92 samples, 0.02%)</title><rect x="17.6910%" y="693" width="0.0191%" height="15" fill="rgb(244,67,35)" fg:x="85408" fg:w="92"/><text x="17.9410%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (92 samples, 0.02%)</title><rect x="17.6910%" y="677" width="0.0191%" height="15" fill="rgb(221,40,2)" fg:x="85408" fg:w="92"/><text x="17.9410%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (62 samples, 0.01%)</title><rect x="17.7100%" y="677" width="0.0128%" height="15" fill="rgb(237,157,21)" fg:x="85500" fg:w="62"/><text x="17.9600%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (62 samples, 0.01%)</title><rect x="17.7100%" y="661" width="0.0128%" height="15" fill="rgb(222,94,11)" fg:x="85500" fg:w="62"/><text x="17.9600%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (62 samples, 0.01%)</title><rect x="17.7100%" y="645" width="0.0128%" height="15" fill="rgb(249,113,6)" fg:x="85500" fg:w="62"/><text x="17.9600%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="17.7119%" y="629" width="0.0110%" height="15" fill="rgb(238,137,36)" fg:x="85509" fg:w="53"/><text x="17.9619%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (120 samples, 0.02%)</title><rect x="17.7100%" y="693" width="0.0249%" height="15" fill="rgb(210,102,26)" fg:x="85500" fg:w="120"/><text x="17.9600%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (58 samples, 0.01%)</title><rect x="17.7229%" y="677" width="0.0120%" height="15" fill="rgb(218,30,30)" fg:x="85562" fg:w="58"/><text x="17.9729%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (58 samples, 0.01%)</title><rect x="17.7229%" y="661" width="0.0120%" height="15" fill="rgb(214,67,26)" fg:x="85562" fg:w="58"/><text x="17.9729%" y="671.50"></text></g><g><title>JavaThread::oops_do (58 samples, 0.01%)</title><rect x="17.7229%" y="645" width="0.0120%" height="15" fill="rgb(251,9,53)" fg:x="85562" fg:w="58"/><text x="17.9729%" y="655.50"></text></g><g><title>G1ParTask::work (624 samples, 0.13%)</title><rect x="17.6117%" y="725" width="0.1293%" height="15" fill="rgb(228,204,25)" fg:x="85025" fg:w="624"/><text x="17.8617%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (149 samples, 0.03%)</title><rect x="17.7100%" y="709" width="0.0309%" height="15" fill="rgb(207,153,8)" fg:x="85500" fg:w="149"/><text x="17.9600%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.01%)</title><rect x="17.7432%" y="693" width="0.0112%" height="15" fill="rgb(242,9,16)" fg:x="85660" fg:w="54"/><text x="17.9932%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.01%)</title><rect x="17.7432%" y="709" width="0.0130%" height="15" fill="rgb(217,211,10)" fg:x="85660" fg:w="63"/><text x="17.9932%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (83 samples, 0.02%)</title><rect x="17.7432%" y="725" width="0.0172%" height="15" fill="rgb(219,228,52)" fg:x="85660" fg:w="83"/><text x="17.9932%" y="735.50"></text></g><g><title>__GI___clone (809 samples, 0.17%)</title><rect x="17.6100%" y="805" width="0.1676%" height="15" fill="rgb(231,92,29)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="815.50"></text></g><g><title>start_thread (809 samples, 0.17%)</title><rect x="17.6100%" y="789" width="0.1676%" height="15" fill="rgb(232,8,23)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="799.50"></text></g><g><title>thread_native_entry (809 samples, 0.17%)</title><rect x="17.6100%" y="773" width="0.1676%" height="15" fill="rgb(216,211,34)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="783.50"></text></g><g><title>Thread::call_run (809 samples, 0.17%)</title><rect x="17.6100%" y="757" width="0.1676%" height="15" fill="rgb(236,151,0)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="767.50"></text></g><g><title>GangWorker::loop (809 samples, 0.17%)</title><rect x="17.6100%" y="741" width="0.1676%" height="15" fill="rgb(209,168,3)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="751.50"></text></g><g><title>GC_Thread#0 (836 samples, 0.17%)</title><rect x="17.6046%" y="821" width="0.1732%" height="15" fill="rgb(208,129,28)" fg:x="84991" fg:w="836"/><text x="17.8546%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="17.7999%" y="677" width="0.0143%" height="15" fill="rgb(229,78,22)" fg:x="85934" fg:w="69"/><text x="18.0499%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (139 samples, 0.03%)</title><rect x="17.7865%" y="693" width="0.0288%" height="15" fill="rgb(228,187,13)" fg:x="85869" fg:w="139"/><text x="18.0365%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (200 samples, 0.04%)</title><rect x="17.7838%" y="709" width="0.0414%" height="15" fill="rgb(240,119,24)" fg:x="85856" fg:w="200"/><text x="18.0338%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (139 samples, 0.03%)</title><rect x="17.8308%" y="613" width="0.0288%" height="15" fill="rgb(209,194,42)" fg:x="86083" fg:w="139"/><text x="18.0808%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (104 samples, 0.02%)</title><rect x="17.8380%" y="597" width="0.0215%" height="15" fill="rgb(247,200,46)" fg:x="86118" fg:w="104"/><text x="18.0880%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (175 samples, 0.04%)</title><rect x="17.8254%" y="629" width="0.0362%" height="15" fill="rgb(218,76,16)" fg:x="86057" fg:w="175"/><text x="18.0754%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (190 samples, 0.04%)</title><rect x="17.8254%" y="677" width="0.0394%" height="15" fill="rgb(225,21,48)" fg:x="86057" fg:w="190"/><text x="18.0754%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (190 samples, 0.04%)</title><rect x="17.8254%" y="661" width="0.0394%" height="15" fill="rgb(239,223,50)" fg:x="86057" fg:w="190"/><text x="18.0754%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (190 samples, 0.04%)</title><rect x="17.8254%" y="645" width="0.0394%" height="15" fill="rgb(244,45,21)" fg:x="86057" fg:w="190"/><text x="18.0754%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (193 samples, 0.04%)</title><rect x="17.8254%" y="709" width="0.0400%" height="15" fill="rgb(232,33,43)" fg:x="86057" fg:w="193"/><text x="18.0754%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (193 samples, 0.04%)</title><rect x="17.8254%" y="693" width="0.0400%" height="15" fill="rgb(209,8,3)" fg:x="86057" fg:w="193"/><text x="18.0754%" y="703.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="17.8654%" y="709" width="0.0118%" height="15" fill="rgb(214,25,53)" fg:x="86250" fg:w="57"/><text x="18.1154%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="17.8654%" y="693" width="0.0118%" height="15" fill="rgb(254,186,54)" fg:x="86250" fg:w="57"/><text x="18.1154%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="17.8654%" y="677" width="0.0118%" height="15" fill="rgb(208,174,49)" fg:x="86250" fg:w="57"/><text x="18.1154%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (59 samples, 0.01%)</title><rect x="17.8780%" y="677" width="0.0122%" height="15" fill="rgb(233,191,51)" fg:x="86311" fg:w="59"/><text x="18.1280%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (56 samples, 0.01%)</title><rect x="17.8786%" y="661" width="0.0116%" height="15" fill="rgb(222,134,10)" fg:x="86314" fg:w="56"/><text x="18.1286%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (56 samples, 0.01%)</title><rect x="17.8786%" y="645" width="0.0116%" height="15" fill="rgb(230,226,20)" fg:x="86314" fg:w="56"/><text x="18.1286%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.01%)</title><rect x="17.8795%" y="629" width="0.0108%" height="15" fill="rgb(251,111,25)" fg:x="86318" fg:w="52"/><text x="18.1295%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (51 samples, 0.01%)</title><rect x="17.8952%" y="581" width="0.0106%" height="15" fill="rgb(224,40,46)" fg:x="86394" fg:w="51"/><text x="18.1452%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.01%)</title><rect x="17.8925%" y="613" width="0.0135%" height="15" fill="rgb(236,108,47)" fg:x="86381" fg:w="65"/><text x="18.1425%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="17.8927%" y="597" width="0.0133%" height="15" fill="rgb(234,93,0)" fg:x="86382" fg:w="64"/><text x="18.1427%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (136 samples, 0.03%)</title><rect x="17.8780%" y="693" width="0.0282%" height="15" fill="rgb(224,213,32)" fg:x="86311" fg:w="136"/><text x="18.1280%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (77 samples, 0.02%)</title><rect x="17.8902%" y="677" width="0.0159%" height="15" fill="rgb(251,11,48)" fg:x="86370" fg:w="77"/><text x="18.1402%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (77 samples, 0.02%)</title><rect x="17.8902%" y="661" width="0.0159%" height="15" fill="rgb(236,173,5)" fg:x="86370" fg:w="77"/><text x="18.1402%" y="671.50"></text></g><g><title>JavaThread::oops_do (77 samples, 0.02%)</title><rect x="17.8902%" y="645" width="0.0159%" height="15" fill="rgb(230,95,12)" fg:x="86370" fg:w="77"/><text x="18.1402%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (67 samples, 0.01%)</title><rect x="17.8923%" y="629" width="0.0139%" height="15" fill="rgb(232,209,1)" fg:x="86380" fg:w="67"/><text x="18.1423%" y="639.50"></text></g><g><title>G1ParTask::work (612 samples, 0.13%)</title><rect x="17.7838%" y="725" width="0.1268%" height="15" fill="rgb(232,6,1)" fg:x="85856" fg:w="612"/><text x="18.0338%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (161 samples, 0.03%)</title><rect x="17.8772%" y="709" width="0.0333%" height="15" fill="rgb(210,224,50)" fg:x="86307" fg:w="161"/><text x="18.1272%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (61 samples, 0.01%)</title><rect x="17.9112%" y="693" width="0.0126%" height="15" fill="rgb(228,127,35)" fg:x="86471" fg:w="61"/><text x="18.1612%" y="703.50"></text></g><g><title>SpinPause (49 samples, 0.01%)</title><rect x="17.9137%" y="677" width="0.0101%" height="15" fill="rgb(245,102,45)" fg:x="86483" fg:w="49"/><text x="18.1637%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (70 samples, 0.01%)</title><rect x="17.9112%" y="709" width="0.0145%" height="15" fill="rgb(214,1,49)" fg:x="86471" fg:w="70"/><text x="18.1612%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (124 samples, 0.03%)</title><rect x="17.9112%" y="725" width="0.0257%" height="15" fill="rgb(226,163,40)" fg:x="86471" fg:w="124"/><text x="18.1612%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (54 samples, 0.01%)</title><rect x="17.9257%" y="709" width="0.0112%" height="15" fill="rgb(239,212,28)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="719.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (54 samples, 0.01%)</title><rect x="17.9257%" y="693" width="0.0112%" height="15" fill="rgb(220,20,13)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.01%)</title><rect x="17.9257%" y="677" width="0.0112%" height="15" fill="rgb(210,164,35)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="687.50"></text></g><g><title>SpinPause (54 samples, 0.01%)</title><rect x="17.9257%" y="661" width="0.0112%" height="15" fill="rgb(248,109,41)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="671.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="17.9418%" y="629" width="0.0120%" height="15" fill="rgb(238,23,50)" fg:x="86619" fg:w="58"/><text x="18.1918%" y="639.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="17.9418%" y="613" width="0.0120%" height="15" fill="rgb(211,48,49)" fg:x="86619" fg:w="58"/><text x="18.1918%" y="623.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="17.9418%" y="597" width="0.0120%" height="15" fill="rgb(223,36,21)" fg:x="86619" fg:w="58"/><text x="18.1918%" y="607.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="17.9420%" y="581" width="0.0118%" height="15" fill="rgb(207,123,46)" fg:x="86620" fg:w="57"/><text x="18.1920%" y="591.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="17.9422%" y="565" width="0.0116%" height="15" fill="rgb(240,218,32)" fg:x="86621" fg:w="56"/><text x="18.1922%" y="575.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="17.9424%" y="549" width="0.0114%" height="15" fill="rgb(252,5,43)" fg:x="86622" fg:w="55"/><text x="18.1924%" y="559.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="17.9424%" y="533" width="0.0114%" height="15" fill="rgb(252,84,19)" fg:x="86622" fg:w="55"/><text x="18.1924%" y="543.50"></text></g><g><title>__GI___clone (835 samples, 0.17%)</title><rect x="17.7815%" y="805" width="0.1730%" height="15" fill="rgb(243,152,39)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="815.50"></text></g><g><title>start_thread (835 samples, 0.17%)</title><rect x="17.7815%" y="789" width="0.1730%" height="15" fill="rgb(234,160,15)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="799.50"></text></g><g><title>thread_native_entry (835 samples, 0.17%)</title><rect x="17.7815%" y="773" width="0.1730%" height="15" fill="rgb(237,34,20)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="783.50"></text></g><g><title>Thread::call_run (835 samples, 0.17%)</title><rect x="17.7815%" y="757" width="0.1730%" height="15" fill="rgb(229,97,13)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="767.50"></text></g><g><title>GangWorker::loop (835 samples, 0.17%)</title><rect x="17.7815%" y="741" width="0.1730%" height="15" fill="rgb(234,71,50)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (63 samples, 0.01%)</title><rect x="17.9414%" y="725" width="0.0130%" height="15" fill="rgb(253,155,4)" fg:x="86617" fg:w="63"/><text x="18.1914%" y="735.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.01%)</title><rect x="17.9416%" y="709" width="0.0128%" height="15" fill="rgb(222,185,37)" fg:x="86618" fg:w="62"/><text x="18.1916%" y="719.50"></text></g><g><title>__new_sem_wait_slow (61 samples, 0.01%)</title><rect x="17.9418%" y="693" width="0.0126%" height="15" fill="rgb(251,177,13)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="703.50"></text></g><g><title>do_futex_wait (61 samples, 0.01%)</title><rect x="17.9418%" y="677" width="0.0126%" height="15" fill="rgb(250,179,40)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (61 samples, 0.01%)</title><rect x="17.9418%" y="661" width="0.0126%" height="15" fill="rgb(242,44,2)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="17.9418%" y="645" width="0.0126%" height="15" fill="rgb(216,177,13)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="655.50"></text></g><g><title>GC_Thread#1 (858 samples, 0.18%)</title><rect x="17.7778%" y="821" width="0.1777%" height="15" fill="rgb(216,106,43)" fg:x="85827" fg:w="858"/><text x="18.0278%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (101 samples, 0.02%)</title><rect x="17.9812%" y="677" width="0.0209%" height="15" fill="rgb(216,183,2)" fg:x="86809" fg:w="101"/><text x="18.2312%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (184 samples, 0.04%)</title><rect x="17.9644%" y="693" width="0.0381%" height="15" fill="rgb(249,75,3)" fg:x="86728" fg:w="184"/><text x="18.2144%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (239 samples, 0.05%)</title><rect x="17.9627%" y="709" width="0.0495%" height="15" fill="rgb(219,67,39)" fg:x="86720" fg:w="239"/><text x="18.2127%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (123 samples, 0.03%)</title><rect x="18.0178%" y="613" width="0.0255%" height="15" fill="rgb(253,228,2)" fg:x="86986" fg:w="123"/><text x="18.2678%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (105 samples, 0.02%)</title><rect x="18.0216%" y="597" width="0.0217%" height="15" fill="rgb(235,138,27)" fg:x="87004" fg:w="105"/><text x="18.2716%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (156 samples, 0.03%)</title><rect x="18.0129%" y="629" width="0.0323%" height="15" fill="rgb(236,97,51)" fg:x="86962" fg:w="156"/><text x="18.2629%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (168 samples, 0.03%)</title><rect x="18.0125%" y="709" width="0.0348%" height="15" fill="rgb(240,80,30)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (168 samples, 0.03%)</title><rect x="18.0125%" y="693" width="0.0348%" height="15" fill="rgb(230,178,19)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (168 samples, 0.03%)</title><rect x="18.0125%" y="677" width="0.0348%" height="15" fill="rgb(210,190,27)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (168 samples, 0.03%)</title><rect x="18.0125%" y="661" width="0.0348%" height="15" fill="rgb(222,107,31)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (168 samples, 0.03%)</title><rect x="18.0125%" y="645" width="0.0348%" height="15" fill="rgb(216,127,34)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (94 samples, 0.02%)</title><rect x="18.0628%" y="613" width="0.0195%" height="15" fill="rgb(234,116,52)" fg:x="87203" fg:w="94"/><text x="18.3128%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.01%)</title><rect x="18.0678%" y="597" width="0.0145%" height="15" fill="rgb(222,124,15)" fg:x="87227" fg:w="70"/><text x="18.3178%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (123 samples, 0.03%)</title><rect x="18.0570%" y="677" width="0.0255%" height="15" fill="rgb(231,179,28)" fg:x="87175" fg:w="123"/><text x="18.3070%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (123 samples, 0.03%)</title><rect x="18.0570%" y="661" width="0.0255%" height="15" fill="rgb(226,93,45)" fg:x="87175" fg:w="123"/><text x="18.3070%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (123 samples, 0.03%)</title><rect x="18.0570%" y="645" width="0.0255%" height="15" fill="rgb(215,8,51)" fg:x="87175" fg:w="123"/><text x="18.3070%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (114 samples, 0.02%)</title><rect x="18.0589%" y="629" width="0.0236%" height="15" fill="rgb(223,106,5)" fg:x="87184" fg:w="114"/><text x="18.3089%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (164 samples, 0.03%)</title><rect x="18.0570%" y="693" width="0.0340%" height="15" fill="rgb(250,191,5)" fg:x="87175" fg:w="164"/><text x="18.3070%" y="703.50"></text></g><g><title>G1ParTask::work (629 samples, 0.13%)</title><rect x="17.9627%" y="725" width="0.1303%" height="15" fill="rgb(242,132,44)" fg:x="86720" fg:w="629"/><text x="18.2127%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.04%)</title><rect x="18.0566%" y="709" width="0.0365%" height="15" fill="rgb(251,152,29)" fg:x="87173" fg:w="176"/><text x="18.3066%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (85 samples, 0.02%)</title><rect x="18.0943%" y="725" width="0.0176%" height="15" fill="rgb(218,179,5)" fg:x="87355" fg:w="85"/><text x="18.3443%" y="735.50"></text></g><g><title>__GI___clone (774 samples, 0.16%)</title><rect x="17.9596%" y="805" width="0.1603%" height="15" fill="rgb(227,67,19)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="815.50"></text></g><g><title>start_thread (774 samples, 0.16%)</title><rect x="17.9596%" y="789" width="0.1603%" height="15" fill="rgb(233,119,31)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="799.50"></text></g><g><title>thread_native_entry (774 samples, 0.16%)</title><rect x="17.9596%" y="773" width="0.1603%" height="15" fill="rgb(241,120,22)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="783.50"></text></g><g><title>Thread::call_run (774 samples, 0.16%)</title><rect x="17.9596%" y="757" width="0.1603%" height="15" fill="rgb(224,102,30)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="767.50"></text></g><g><title>GangWorker::loop (774 samples, 0.16%)</title><rect x="17.9596%" y="741" width="0.1603%" height="15" fill="rgb(210,164,37)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="751.50"></text></g><g><title>GC_Thread#2 (800 samples, 0.17%)</title><rect x="17.9555%" y="821" width="0.1657%" height="15" fill="rgb(226,191,16)" fg:x="86685" fg:w="800"/><text x="18.2055%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (71 samples, 0.01%)</title><rect x="18.1405%" y="677" width="0.0147%" height="15" fill="rgb(214,40,45)" fg:x="87578" fg:w="71"/><text x="18.3905%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (138 samples, 0.03%)</title><rect x="18.1268%" y="693" width="0.0286%" height="15" fill="rgb(244,29,26)" fg:x="87512" fg:w="138"/><text x="18.3768%" y="703.50"></text></g><g><title>SpinPause (69 samples, 0.01%)</title><rect x="18.1568%" y="693" width="0.0143%" height="15" fill="rgb(216,16,5)" fg:x="87657" fg:w="69"/><text x="18.4068%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (224 samples, 0.05%)</title><rect x="18.1251%" y="709" width="0.0464%" height="15" fill="rgb(249,76,35)" fg:x="87504" fg:w="224"/><text x="18.3751%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (218 samples, 0.05%)</title><rect x="18.1815%" y="613" width="0.0452%" height="15" fill="rgb(207,11,44)" fg:x="87776" fg:w="218"/><text x="18.4315%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (171 samples, 0.04%)</title><rect x="18.1912%" y="597" width="0.0354%" height="15" fill="rgb(228,190,49)" fg:x="87823" fg:w="171"/><text x="18.4412%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (274 samples, 0.06%)</title><rect x="18.1722%" y="629" width="0.0568%" height="15" fill="rgb(214,173,12)" fg:x="87731" fg:w="274"/><text x="18.4222%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (288 samples, 0.06%)</title><rect x="18.1720%" y="677" width="0.0597%" height="15" fill="rgb(218,26,35)" fg:x="87730" fg:w="288"/><text x="18.4220%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (288 samples, 0.06%)</title><rect x="18.1720%" y="661" width="0.0597%" height="15" fill="rgb(220,200,19)" fg:x="87730" fg:w="288"/><text x="18.4220%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (287 samples, 0.06%)</title><rect x="18.1722%" y="645" width="0.0594%" height="15" fill="rgb(239,95,49)" fg:x="87731" fg:w="287"/><text x="18.4222%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (293 samples, 0.06%)</title><rect x="18.1717%" y="709" width="0.0607%" height="15" fill="rgb(235,85,53)" fg:x="87729" fg:w="293"/><text x="18.4217%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (292 samples, 0.06%)</title><rect x="18.1720%" y="693" width="0.0605%" height="15" fill="rgb(233,133,31)" fg:x="87730" fg:w="292"/><text x="18.4220%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (72 samples, 0.01%)</title><rect x="18.2480%" y="581" width="0.0149%" height="15" fill="rgb(218,25,20)" fg:x="88097" fg:w="72"/><text x="18.4980%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.01%)</title><rect x="18.2507%" y="565" width="0.0122%" height="15" fill="rgb(252,210,38)" fg:x="88110" fg:w="59"/><text x="18.5007%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (98 samples, 0.02%)</title><rect x="18.2449%" y="613" width="0.0203%" height="15" fill="rgb(242,134,21)" fg:x="88082" fg:w="98"/><text x="18.4949%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (98 samples, 0.02%)</title><rect x="18.2449%" y="597" width="0.0203%" height="15" fill="rgb(213,28,48)" fg:x="88082" fg:w="98"/><text x="18.4949%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (108 samples, 0.02%)</title><rect x="18.2444%" y="629" width="0.0224%" height="15" fill="rgb(250,196,2)" fg:x="88080" fg:w="108"/><text x="18.4944%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (136 samples, 0.03%)</title><rect x="18.2389%" y="693" width="0.0282%" height="15" fill="rgb(227,5,17)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (136 samples, 0.03%)</title><rect x="18.2389%" y="677" width="0.0282%" height="15" fill="rgb(221,226,24)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (136 samples, 0.03%)</title><rect x="18.2389%" y="661" width="0.0282%" height="15" fill="rgb(211,5,48)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="671.50"></text></g><g><title>JavaThread::oops_do (136 samples, 0.03%)</title><rect x="18.2389%" y="645" width="0.0282%" height="15" fill="rgb(219,150,6)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (151 samples, 0.03%)</title><rect x="18.2378%" y="709" width="0.0313%" height="15" fill="rgb(251,46,16)" fg:x="88048" fg:w="151"/><text x="18.4878%" y="719.50"></text></g><g><title>G1ParTask::work (696 samples, 0.14%)</title><rect x="18.1251%" y="725" width="0.1442%" height="15" fill="rgb(220,204,40)" fg:x="87504" fg:w="696"/><text x="18.3751%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (52 samples, 0.01%)</title><rect x="18.2708%" y="709" width="0.0108%" height="15" fill="rgb(211,85,2)" fg:x="88207" fg:w="52"/><text x="18.5208%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (97 samples, 0.02%)</title><rect x="18.2708%" y="725" width="0.0201%" height="15" fill="rgb(229,17,7)" fg:x="88207" fg:w="97"/><text x="18.5208%" y="735.50"></text></g><g><title>__GI___clone (872 samples, 0.18%)</title><rect x="18.1231%" y="805" width="0.1806%" height="15" fill="rgb(239,72,28)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="815.50"></text></g><g><title>start_thread (872 samples, 0.18%)</title><rect x="18.1231%" y="789" width="0.1806%" height="15" fill="rgb(230,47,54)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="799.50"></text></g><g><title>thread_native_entry (872 samples, 0.18%)</title><rect x="18.1231%" y="773" width="0.1806%" height="15" fill="rgb(214,50,8)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="783.50"></text></g><g><title>Thread::call_run (872 samples, 0.18%)</title><rect x="18.1231%" y="757" width="0.1806%" height="15" fill="rgb(216,198,43)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="767.50"></text></g><g><title>GangWorker::loop (872 samples, 0.18%)</title><rect x="18.1231%" y="741" width="0.1806%" height="15" fill="rgb(234,20,35)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="751.50"></text></g><g><title>GC_Thread#3 (885 samples, 0.18%)</title><rect x="18.1212%" y="821" width="0.1833%" height="15" fill="rgb(254,45,19)" fg:x="87485" fg:w="885"/><text x="18.3712%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="18.3290%" y="677" width="0.0143%" height="15" fill="rgb(219,14,44)" fg:x="88488" fg:w="69"/><text x="18.5790%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (139 samples, 0.03%)</title><rect x="18.3153%" y="693" width="0.0288%" height="15" fill="rgb(217,220,26)" fg:x="88422" fg:w="139"/><text x="18.5653%" y="703.50"></text></g><g><title>SpinPause (58 samples, 0.01%)</title><rect x="18.3449%" y="693" width="0.0120%" height="15" fill="rgb(213,158,28)" fg:x="88565" fg:w="58"/><text x="18.5949%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (220 samples, 0.05%)</title><rect x="18.3124%" y="709" width="0.0456%" height="15" fill="rgb(252,51,52)" fg:x="88408" fg:w="220"/><text x="18.5624%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (110 samples, 0.02%)</title><rect x="18.3644%" y="613" width="0.0228%" height="15" fill="rgb(246,89,16)" fg:x="88659" fg:w="110"/><text x="18.6144%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (73 samples, 0.02%)</title><rect x="18.3720%" y="597" width="0.0151%" height="15" fill="rgb(216,158,49)" fg:x="88696" fg:w="73"/><text x="18.6220%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (144 samples, 0.03%)</title><rect x="18.3586%" y="629" width="0.0298%" height="15" fill="rgb(236,107,19)" fg:x="88631" fg:w="144"/><text x="18.6086%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (162 samples, 0.03%)</title><rect x="18.3584%" y="677" width="0.0336%" height="15" fill="rgb(228,185,30)" fg:x="88630" fg:w="162"/><text x="18.6084%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (162 samples, 0.03%)</title><rect x="18.3584%" y="661" width="0.0336%" height="15" fill="rgb(246,134,8)" fg:x="88630" fg:w="162"/><text x="18.6084%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (161 samples, 0.03%)</title><rect x="18.3586%" y="645" width="0.0333%" height="15" fill="rgb(214,143,50)" fg:x="88631" fg:w="161"/><text x="18.6086%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (177 samples, 0.04%)</title><rect x="18.3584%" y="709" width="0.0367%" height="15" fill="rgb(228,75,8)" fg:x="88630" fg:w="177"/><text x="18.6084%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (177 samples, 0.04%)</title><rect x="18.3584%" y="693" width="0.0367%" height="15" fill="rgb(207,175,4)" fg:x="88630" fg:w="177"/><text x="18.6084%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="18.3950%" y="629" width="0.0110%" height="15" fill="rgb(205,108,24)" fg:x="88807" fg:w="53"/><text x="18.6450%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (69 samples, 0.01%)</title><rect x="18.3950%" y="645" width="0.0143%" height="15" fill="rgb(244,120,49)" fg:x="88807" fg:w="69"/><text x="18.6450%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (72 samples, 0.01%)</title><rect x="18.3950%" y="661" width="0.0149%" height="15" fill="rgb(223,47,38)" fg:x="88807" fg:w="72"/><text x="18.6450%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (79 samples, 0.02%)</title><rect x="18.3950%" y="709" width="0.0164%" height="15" fill="rgb(229,179,11)" fg:x="88807" fg:w="79"/><text x="18.6450%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (79 samples, 0.02%)</title><rect x="18.3950%" y="693" width="0.0164%" height="15" fill="rgb(231,122,1)" fg:x="88807" fg:w="79"/><text x="18.6450%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (79 samples, 0.02%)</title><rect x="18.3950%" y="677" width="0.0164%" height="15" fill="rgb(245,119,9)" fg:x="88807" fg:w="79"/><text x="18.6450%" y="687.50"></text></g><g><title>HandleArea::oops_do (56 samples, 0.01%)</title><rect x="18.4211%" y="629" width="0.0116%" height="15" fill="rgb(241,163,25)" fg:x="88933" fg:w="56"/><text x="18.6711%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (111 samples, 0.02%)</title><rect x="18.4114%" y="693" width="0.0230%" height="15" fill="rgb(217,214,3)" fg:x="88886" fg:w="111"/><text x="18.6614%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (65 samples, 0.01%)</title><rect x="18.4209%" y="677" width="0.0135%" height="15" fill="rgb(240,86,28)" fg:x="88932" fg:w="65"/><text x="18.6709%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (65 samples, 0.01%)</title><rect x="18.4209%" y="661" width="0.0135%" height="15" fill="rgb(215,47,9)" fg:x="88932" fg:w="65"/><text x="18.6709%" y="671.50"></text></g><g><title>JavaThread::oops_do (65 samples, 0.01%)</title><rect x="18.4209%" y="645" width="0.0135%" height="15" fill="rgb(252,25,45)" fg:x="88932" fg:w="65"/><text x="18.6709%" y="655.50"></text></g><g><title>G1ParTask::work (605 samples, 0.13%)</title><rect x="18.3124%" y="725" width="0.1253%" height="15" fill="rgb(251,164,9)" fg:x="88408" fg:w="605"/><text x="18.5624%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (127 samples, 0.03%)</title><rect x="18.4114%" y="709" width="0.0263%" height="15" fill="rgb(233,194,0)" fg:x="88886" fg:w="127"/><text x="18.6614%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (55 samples, 0.01%)</title><rect x="18.4410%" y="693" width="0.0114%" height="15" fill="rgb(249,111,24)" fg:x="89029" fg:w="55"/><text x="18.6910%" y="703.50"></text></g><g><title>SpinPause (50 samples, 0.01%)</title><rect x="18.4421%" y="677" width="0.0104%" height="15" fill="rgb(250,223,3)" fg:x="89034" fg:w="50"/><text x="18.6921%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (64 samples, 0.01%)</title><rect x="18.4410%" y="709" width="0.0133%" height="15" fill="rgb(236,178,37)" fg:x="89029" fg:w="64"/><text x="18.6910%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (114 samples, 0.02%)</title><rect x="18.4410%" y="725" width="0.0236%" height="15" fill="rgb(241,158,50)" fg:x="89029" fg:w="114"/><text x="18.6910%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (50 samples, 0.01%)</title><rect x="18.4543%" y="709" width="0.0104%" height="15" fill="rgb(213,121,41)" fg:x="89093" fg:w="50"/><text x="18.7043%" y="719.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (50 samples, 0.01%)</title><rect x="18.4543%" y="693" width="0.0104%" height="15" fill="rgb(240,92,3)" fg:x="89093" fg:w="50"/><text x="18.7043%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (50 samples, 0.01%)</title><rect x="18.4543%" y="677" width="0.0104%" height="15" fill="rgb(205,123,3)" fg:x="89093" fg:w="50"/><text x="18.7043%" y="687.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.01%)</title><rect x="18.4719%" y="565" width="0.0124%" height="15" fill="rgb(205,97,47)" fg:x="89178" fg:w="60"/><text x="18.7219%" y="575.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="18.4723%" y="549" width="0.0120%" height="15" fill="rgb(247,152,14)" fg:x="89180" fg:w="58"/><text x="18.7223%" y="559.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="18.4723%" y="533" width="0.0120%" height="15" fill="rgb(248,195,53)" fg:x="89180" fg:w="58"/><text x="18.7223%" y="543.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="18.4719%" y="613" width="0.0128%" height="15" fill="rgb(226,201,16)" fg:x="89178" fg:w="62"/><text x="18.7219%" y="623.50"></text></g><g><title>do_futex (62 samples, 0.01%)</title><rect x="18.4719%" y="597" width="0.0128%" height="15" fill="rgb(205,98,0)" fg:x="89178" fg:w="62"/><text x="18.7219%" y="607.50"></text></g><g><title>futex_wait (62 samples, 0.01%)</title><rect x="18.4719%" y="581" width="0.0128%" height="15" fill="rgb(214,191,48)" fg:x="89178" fg:w="62"/><text x="18.7219%" y="591.50"></text></g><g><title>__GI___clone (850 samples, 0.18%)</title><rect x="18.3089%" y="805" width="0.1761%" height="15" fill="rgb(237,112,39)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="815.50"></text></g><g><title>start_thread (850 samples, 0.18%)</title><rect x="18.3089%" y="789" width="0.1761%" height="15" fill="rgb(247,203,27)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="799.50"></text></g><g><title>thread_native_entry (850 samples, 0.18%)</title><rect x="18.3089%" y="773" width="0.1761%" height="15" fill="rgb(235,124,28)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="783.50"></text></g><g><title>Thread::call_run (850 samples, 0.18%)</title><rect x="18.3089%" y="757" width="0.1761%" height="15" fill="rgb(208,207,46)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="767.50"></text></g><g><title>GangWorker::loop (850 samples, 0.18%)</title><rect x="18.3089%" y="741" width="0.1761%" height="15" fill="rgb(234,176,4)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (65 samples, 0.01%)</title><rect x="18.4715%" y="725" width="0.0135%" height="15" fill="rgb(230,133,28)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="735.50"></text></g><g><title>PosixSemaphore::wait (65 samples, 0.01%)</title><rect x="18.4715%" y="709" width="0.0135%" height="15" fill="rgb(211,137,40)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="719.50"></text></g><g><title>__new_sem_wait_slow (65 samples, 0.01%)</title><rect x="18.4715%" y="693" width="0.0135%" height="15" fill="rgb(254,35,13)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="703.50"></text></g><g><title>do_futex_wait (65 samples, 0.01%)</title><rect x="18.4715%" y="677" width="0.0135%" height="15" fill="rgb(225,49,51)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (65 samples, 0.01%)</title><rect x="18.4715%" y="661" width="0.0135%" height="15" fill="rgb(251,10,15)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="18.4715%" y="645" width="0.0135%" height="15" fill="rgb(228,207,15)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="655.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="18.4717%" y="629" width="0.0133%" height="15" fill="rgb(241,99,19)" fg:x="89177" fg:w="64"/><text x="18.7217%" y="639.50"></text></g><g><title>GC_Thread#4 (874 samples, 0.18%)</title><rect x="18.3045%" y="821" width="0.1810%" height="15" fill="rgb(207,104,49)" fg:x="88370" fg:w="874"/><text x="18.5545%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (90 samples, 0.02%)</title><rect x="18.5154%" y="677" width="0.0186%" height="15" fill="rgb(234,99,18)" fg:x="89388" fg:w="90"/><text x="18.7654%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (196 samples, 0.04%)</title><rect x="18.4945%" y="693" width="0.0406%" height="15" fill="rgb(213,191,49)" fg:x="89287" fg:w="196"/><text x="18.7445%" y="703.50"></text></g><g><title>SpinPause (70 samples, 0.01%)</title><rect x="18.5357%" y="693" width="0.0145%" height="15" fill="rgb(210,226,19)" fg:x="89486" fg:w="70"/><text x="18.7857%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (282 samples, 0.06%)</title><rect x="18.4930%" y="709" width="0.0584%" height="15" fill="rgb(229,97,18)" fg:x="89280" fg:w="282"/><text x="18.7430%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (163 samples, 0.03%)</title><rect x="18.5607%" y="613" width="0.0338%" height="15" fill="rgb(211,167,15)" fg:x="89607" fg:w="163"/><text x="18.8107%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (115 samples, 0.02%)</title><rect x="18.5707%" y="597" width="0.0238%" height="15" fill="rgb(210,169,34)" fg:x="89655" fg:w="115"/><text x="18.8207%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (217 samples, 0.04%)</title><rect x="18.5518%" y="629" width="0.0449%" height="15" fill="rgb(241,121,31)" fg:x="89564" fg:w="217"/><text x="18.8018%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (242 samples, 0.05%)</title><rect x="18.5516%" y="677" width="0.0501%" height="15" fill="rgb(232,40,11)" fg:x="89563" fg:w="242"/><text x="18.8016%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (242 samples, 0.05%)</title><rect x="18.5516%" y="661" width="0.0501%" height="15" fill="rgb(205,86,26)" fg:x="89563" fg:w="242"/><text x="18.8016%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (241 samples, 0.05%)</title><rect x="18.5518%" y="645" width="0.0499%" height="15" fill="rgb(231,126,28)" fg:x="89564" fg:w="241"/><text x="18.8018%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (250 samples, 0.05%)</title><rect x="18.5516%" y="709" width="0.0518%" height="15" fill="rgb(219,221,18)" fg:x="89563" fg:w="250"/><text x="18.8016%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (250 samples, 0.05%)</title><rect x="18.5516%" y="693" width="0.0518%" height="15" fill="rgb(211,40,0)" fg:x="89563" fg:w="250"/><text x="18.8016%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (50 samples, 0.01%)</title><rect x="18.6069%" y="613" width="0.0104%" height="15" fill="rgb(239,85,43)" fg:x="89830" fg:w="50"/><text x="18.8569%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.01%)</title><rect x="18.6038%" y="629" width="0.0143%" height="15" fill="rgb(231,55,21)" fg:x="89815" fg:w="69"/><text x="18.8538%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (78 samples, 0.02%)</title><rect x="18.6038%" y="645" width="0.0162%" height="15" fill="rgb(225,184,43)" fg:x="89815" fg:w="78"/><text x="18.8538%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (85 samples, 0.02%)</title><rect x="18.6034%" y="661" width="0.0176%" height="15" fill="rgb(251,158,41)" fg:x="89813" fg:w="85"/><text x="18.8534%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (109 samples, 0.02%)</title><rect x="18.6034%" y="709" width="0.0226%" height="15" fill="rgb(234,159,37)" fg:x="89813" fg:w="109"/><text x="18.8534%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (109 samples, 0.02%)</title><rect x="18.6034%" y="693" width="0.0226%" height="15" fill="rgb(216,204,22)" fg:x="89813" fg:w="109"/><text x="18.8534%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (109 samples, 0.02%)</title><rect x="18.6034%" y="677" width="0.0226%" height="15" fill="rgb(214,17,3)" fg:x="89813" fg:w="109"/><text x="18.8534%" y="687.50"></text></g><g><title>G1ParTask::work (689 samples, 0.14%)</title><rect x="18.4930%" y="725" width="0.1427%" height="15" fill="rgb(212,111,17)" fg:x="89280" fg:w="689"/><text x="18.7430%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (61 samples, 0.01%)</title><rect x="18.6395%" y="693" width="0.0126%" height="15" fill="rgb(221,157,24)" fg:x="89987" fg:w="61"/><text x="18.8895%" y="703.50"></text></g><g><title>SpinPause (55 samples, 0.01%)</title><rect x="18.6407%" y="677" width="0.0114%" height="15" fill="rgb(252,16,13)" fg:x="89993" fg:w="55"/><text x="18.8907%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (71 samples, 0.01%)</title><rect x="18.6395%" y="709" width="0.0147%" height="15" fill="rgb(221,62,2)" fg:x="89987" fg:w="71"/><text x="18.8895%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (108 samples, 0.02%)</title><rect x="18.6395%" y="725" width="0.0224%" height="15" fill="rgb(247,87,22)" fg:x="89987" fg:w="108"/><text x="18.8895%" y="735.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="18.6664%" y="629" width="0.0106%" height="15" fill="rgb(215,73,9)" fg:x="90117" fg:w="51"/><text x="18.9164%" y="639.50"></text></g><g><title>__x64_sys_futex (51 samples, 0.01%)</title><rect x="18.6664%" y="613" width="0.0106%" height="15" fill="rgb(207,175,33)" fg:x="90117" fg:w="51"/><text x="18.9164%" y="623.50"></text></g><g><title>do_futex (50 samples, 0.01%)</title><rect x="18.6666%" y="597" width="0.0104%" height="15" fill="rgb(243,129,54)" fg:x="90118" fg:w="50"/><text x="18.9166%" y="607.50"></text></g><g><title>futex_wait (50 samples, 0.01%)</title><rect x="18.6666%" y="581" width="0.0104%" height="15" fill="rgb(227,119,45)" fg:x="90118" fg:w="50"/><text x="18.9166%" y="591.50"></text></g><g><title>__GI___clone (908 samples, 0.19%)</title><rect x="18.4893%" y="805" width="0.1881%" height="15" fill="rgb(205,109,36)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="815.50"></text></g><g><title>start_thread (908 samples, 0.19%)</title><rect x="18.4893%" y="789" width="0.1881%" height="15" fill="rgb(205,6,39)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="799.50"></text></g><g><title>thread_native_entry (908 samples, 0.19%)</title><rect x="18.4893%" y="773" width="0.1881%" height="15" fill="rgb(221,32,16)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="783.50"></text></g><g><title>Thread::call_run (908 samples, 0.19%)</title><rect x="18.4893%" y="757" width="0.1881%" height="15" fill="rgb(228,144,50)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="767.50"></text></g><g><title>GangWorker::loop (908 samples, 0.19%)</title><rect x="18.4893%" y="741" width="0.1881%" height="15" fill="rgb(229,201,53)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.01%)</title><rect x="18.6664%" y="725" width="0.0110%" height="15" fill="rgb(249,153,27)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="735.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.01%)</title><rect x="18.6664%" y="709" width="0.0110%" height="15" fill="rgb(227,106,25)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="719.50"></text></g><g><title>__new_sem_wait_slow (53 samples, 0.01%)</title><rect x="18.6664%" y="693" width="0.0110%" height="15" fill="rgb(230,65,29)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="703.50"></text></g><g><title>do_futex_wait (53 samples, 0.01%)</title><rect x="18.6664%" y="677" width="0.0110%" height="15" fill="rgb(221,57,46)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (53 samples, 0.01%)</title><rect x="18.6664%" y="661" width="0.0110%" height="15" fill="rgb(229,161,17)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="18.6664%" y="645" width="0.0110%" height="15" fill="rgb(222,213,11)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="655.50"></text></g><g><title>GC_Thread#5 (929 samples, 0.19%)</title><rect x="18.4856%" y="821" width="0.1924%" height="15" fill="rgb(235,35,13)" fg:x="89244" fg:w="929"/><text x="18.7356%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (114 samples, 0.02%)</title><rect x="18.6987%" y="677" width="0.0236%" height="15" fill="rgb(233,158,34)" fg:x="90273" fg:w="114"/><text x="18.9487%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (188 samples, 0.04%)</title><rect x="18.6838%" y="693" width="0.0389%" height="15" fill="rgb(215,151,48)" fg:x="90201" fg:w="188"/><text x="18.9338%" y="703.50"></text></g><g><title>SpinPause (54 samples, 0.01%)</title><rect x="18.7233%" y="693" width="0.0112%" height="15" fill="rgb(229,84,14)" fg:x="90392" fg:w="54"/><text x="18.9733%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (259 samples, 0.05%)</title><rect x="18.6827%" y="709" width="0.0536%" height="15" fill="rgb(229,68,14)" fg:x="90196" fg:w="259"/><text x="18.9327%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (111 samples, 0.02%)</title><rect x="18.7403%" y="613" width="0.0230%" height="15" fill="rgb(243,106,26)" fg:x="90474" fg:w="111"/><text x="18.9903%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="18.7441%" y="597" width="0.0193%" height="15" fill="rgb(206,45,38)" fg:x="90492" fg:w="93"/><text x="18.9941%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (137 samples, 0.03%)</title><rect x="18.7368%" y="629" width="0.0284%" height="15" fill="rgb(226,6,15)" fg:x="90457" fg:w="137"/><text x="18.9868%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (164 samples, 0.03%)</title><rect x="18.7366%" y="677" width="0.0340%" height="15" fill="rgb(232,22,54)" fg:x="90456" fg:w="164"/><text x="18.9866%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (164 samples, 0.03%)</title><rect x="18.7366%" y="661" width="0.0340%" height="15" fill="rgb(229,222,32)" fg:x="90456" fg:w="164"/><text x="18.9866%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (163 samples, 0.03%)</title><rect x="18.7368%" y="645" width="0.0338%" height="15" fill="rgb(228,62,29)" fg:x="90457" fg:w="163"/><text x="18.9868%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (170 samples, 0.04%)</title><rect x="18.7366%" y="709" width="0.0352%" height="15" fill="rgb(251,103,34)" fg:x="90456" fg:w="170"/><text x="18.9866%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (170 samples, 0.04%)</title><rect x="18.7366%" y="693" width="0.0352%" height="15" fill="rgb(233,12,30)" fg:x="90456" fg:w="170"/><text x="18.9866%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (64 samples, 0.01%)</title><rect x="18.7757%" y="613" width="0.0133%" height="15" fill="rgb(238,52,0)" fg:x="90645" fg:w="64"/><text x="19.0257%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (50 samples, 0.01%)</title><rect x="18.7786%" y="597" width="0.0104%" height="15" fill="rgb(223,98,5)" fg:x="90659" fg:w="50"/><text x="19.0286%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (87 samples, 0.02%)</title><rect x="18.7722%" y="629" width="0.0180%" height="15" fill="rgb(228,75,37)" fg:x="90628" fg:w="87"/><text x="19.0222%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (114 samples, 0.02%)</title><rect x="18.7722%" y="645" width="0.0236%" height="15" fill="rgb(205,115,49)" fg:x="90628" fg:w="114"/><text x="19.0222%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (119 samples, 0.02%)</title><rect x="18.7720%" y="661" width="0.0246%" height="15" fill="rgb(250,154,43)" fg:x="90627" fg:w="119"/><text x="19.0220%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (129 samples, 0.03%)</title><rect x="18.7718%" y="709" width="0.0267%" height="15" fill="rgb(226,43,29)" fg:x="90626" fg:w="129"/><text x="19.0218%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (129 samples, 0.03%)</title><rect x="18.7718%" y="693" width="0.0267%" height="15" fill="rgb(249,228,39)" fg:x="90626" fg:w="129"/><text x="19.0218%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (129 samples, 0.03%)</title><rect x="18.7718%" y="677" width="0.0267%" height="15" fill="rgb(216,79,43)" fg:x="90626" fg:w="129"/><text x="19.0218%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (90 samples, 0.02%)</title><rect x="18.7989%" y="693" width="0.0186%" height="15" fill="rgb(228,95,12)" fg:x="90757" fg:w="90"/><text x="19.0489%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (62 samples, 0.01%)</title><rect x="18.8047%" y="677" width="0.0128%" height="15" fill="rgb(249,221,15)" fg:x="90785" fg:w="62"/><text x="19.0547%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (62 samples, 0.01%)</title><rect x="18.8047%" y="661" width="0.0128%" height="15" fill="rgb(233,34,13)" fg:x="90785" fg:w="62"/><text x="19.0547%" y="671.50"></text></g><g><title>JavaThread::oops_do (56 samples, 0.01%)</title><rect x="18.8060%" y="645" width="0.0116%" height="15" fill="rgb(214,103,39)" fg:x="90791" fg:w="56"/><text x="19.0560%" y="655.50"></text></g><g><title>G1ParTask::work (665 samples, 0.14%)</title><rect x="18.6827%" y="725" width="0.1377%" height="15" fill="rgb(251,126,39)" fg:x="90196" fg:w="665"/><text x="18.9327%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (106 samples, 0.02%)</title><rect x="18.7985%" y="709" width="0.0220%" height="15" fill="rgb(214,216,36)" fg:x="90755" fg:w="106"/><text x="19.0485%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (55 samples, 0.01%)</title><rect x="18.8232%" y="693" width="0.0114%" height="15" fill="rgb(220,221,8)" fg:x="90874" fg:w="55"/><text x="19.0732%" y="703.50"></text></g><g><title>SpinPause (50 samples, 0.01%)</title><rect x="18.8242%" y="677" width="0.0104%" height="15" fill="rgb(240,216,3)" fg:x="90879" fg:w="50"/><text x="19.0742%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.01%)</title><rect x="18.8232%" y="709" width="0.0130%" height="15" fill="rgb(232,218,17)" fg:x="90874" fg:w="63"/><text x="19.0732%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (76 samples, 0.02%)</title><rect x="18.8232%" y="725" width="0.0157%" height="15" fill="rgb(229,163,45)" fg:x="90874" fg:w="76"/><text x="19.0732%" y="735.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="18.8485%" y="517" width="0.0122%" height="15" fill="rgb(231,110,42)" fg:x="90996" fg:w="59"/><text x="19.0985%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="18.8487%" y="501" width="0.0120%" height="15" fill="rgb(208,170,48)" fg:x="90997" fg:w="58"/><text x="19.0987%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="18.8487%" y="485" width="0.0120%" height="15" fill="rgb(239,116,25)" fg:x="90997" fg:w="58"/><text x="19.0987%" y="495.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="18.8487%" y="469" width="0.0120%" height="15" fill="rgb(219,200,50)" fg:x="90997" fg:w="58"/><text x="19.0987%" y="479.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.02%)</title><rect x="18.8462%" y="565" width="0.0172%" height="15" fill="rgb(245,200,0)" fg:x="90985" fg:w="83"/><text x="19.0962%" y="575.50"></text></g><g><title>schedule (80 samples, 0.02%)</title><rect x="18.8468%" y="549" width="0.0166%" height="15" fill="rgb(245,119,33)" fg:x="90988" fg:w="80"/><text x="19.0968%" y="559.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="18.8470%" y="533" width="0.0164%" height="15" fill="rgb(231,125,12)" fg:x="90989" fg:w="79"/><text x="19.0970%" y="543.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="18.8462%" y="629" width="0.0174%" height="15" fill="rgb(216,96,41)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="639.50"></text></g><g><title>__x64_sys_futex (84 samples, 0.02%)</title><rect x="18.8462%" y="613" width="0.0174%" height="15" fill="rgb(248,43,45)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="623.50"></text></g><g><title>do_futex (84 samples, 0.02%)</title><rect x="18.8462%" y="597" width="0.0174%" height="15" fill="rgb(217,222,7)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="607.50"></text></g><g><title>futex_wait (84 samples, 0.02%)</title><rect x="18.8462%" y="581" width="0.0174%" height="15" fill="rgb(233,28,6)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="591.50"></text></g><g><title>__GI___clone (876 samples, 0.18%)</title><rect x="18.6825%" y="805" width="0.1815%" height="15" fill="rgb(231,218,15)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="815.50"></text></g><g><title>start_thread (876 samples, 0.18%)</title><rect x="18.6825%" y="789" width="0.1815%" height="15" fill="rgb(226,171,48)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="799.50"></text></g><g><title>thread_native_entry (876 samples, 0.18%)</title><rect x="18.6825%" y="773" width="0.1815%" height="15" fill="rgb(235,201,9)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="783.50"></text></g><g><title>Thread::call_run (876 samples, 0.18%)</title><rect x="18.6825%" y="757" width="0.1815%" height="15" fill="rgb(217,80,15)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="767.50"></text></g><g><title>GangWorker::loop (876 samples, 0.18%)</title><rect x="18.6825%" y="741" width="0.1815%" height="15" fill="rgb(219,152,8)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (91 samples, 0.02%)</title><rect x="18.8451%" y="725" width="0.0188%" height="15" fill="rgb(243,107,38)" fg:x="90980" fg:w="91"/><text x="19.0951%" y="735.50"></text></g><g><title>PosixSemaphore::wait (91 samples, 0.02%)</title><rect x="18.8451%" y="709" width="0.0188%" height="15" fill="rgb(231,17,5)" fg:x="90980" fg:w="91"/><text x="19.0951%" y="719.50"></text></g><g><title>__new_sem_wait_slow (91 samples, 0.02%)</title><rect x="18.8451%" y="693" width="0.0188%" height="15" fill="rgb(209,25,54)" fg:x="90980" fg:w="91"/><text x="19.0951%" y="703.50"></text></g><g><title>do_futex_wait (89 samples, 0.02%)</title><rect x="18.8456%" y="677" width="0.0184%" height="15" fill="rgb(219,0,2)" fg:x="90982" fg:w="89"/><text x="19.0956%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (89 samples, 0.02%)</title><rect x="18.8456%" y="661" width="0.0184%" height="15" fill="rgb(246,9,5)" fg:x="90982" fg:w="89"/><text x="19.0956%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="18.8462%" y="645" width="0.0178%" height="15" fill="rgb(226,159,4)" fg:x="90985" fg:w="86"/><text x="19.0962%" y="655.50"></text></g><g><title>GC_Thread#6 (900 samples, 0.19%)</title><rect x="18.6780%" y="821" width="0.1864%" height="15" fill="rgb(219,175,34)" fg:x="90173" fg:w="900"/><text x="18.9280%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (97 samples, 0.02%)</title><rect x="18.8895%" y="677" width="0.0201%" height="15" fill="rgb(236,10,46)" fg:x="91194" fg:w="97"/><text x="19.1395%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (197 samples, 0.04%)</title><rect x="18.8700%" y="693" width="0.0408%" height="15" fill="rgb(240,211,16)" fg:x="91100" fg:w="197"/><text x="19.1200%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (260 samples, 0.05%)</title><rect x="18.8683%" y="709" width="0.0539%" height="15" fill="rgb(205,3,43)" fg:x="91092" fg:w="260"/><text x="19.1183%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (131 samples, 0.03%)</title><rect x="18.9272%" y="613" width="0.0271%" height="15" fill="rgb(245,7,22)" fg:x="91376" fg:w="131"/><text x="19.1772%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (109 samples, 0.02%)</title><rect x="18.9317%" y="597" width="0.0226%" height="15" fill="rgb(239,132,32)" fg:x="91398" fg:w="109"/><text x="19.1817%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (160 samples, 0.03%)</title><rect x="18.9224%" y="629" width="0.0331%" height="15" fill="rgb(228,202,34)" fg:x="91353" fg:w="160"/><text x="19.1724%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (178 samples, 0.04%)</title><rect x="18.9224%" y="677" width="0.0369%" height="15" fill="rgb(254,200,22)" fg:x="91353" fg:w="178"/><text x="19.1724%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (178 samples, 0.04%)</title><rect x="18.9224%" y="661" width="0.0369%" height="15" fill="rgb(219,10,39)" fg:x="91353" fg:w="178"/><text x="19.1724%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (178 samples, 0.04%)</title><rect x="18.9224%" y="645" width="0.0369%" height="15" fill="rgb(226,210,39)" fg:x="91353" fg:w="178"/><text x="19.1724%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (189 samples, 0.04%)</title><rect x="18.9224%" y="709" width="0.0391%" height="15" fill="rgb(208,219,16)" fg:x="91353" fg:w="189"/><text x="19.1724%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (189 samples, 0.04%)</title><rect x="18.9224%" y="693" width="0.0391%" height="15" fill="rgb(216,158,51)" fg:x="91353" fg:w="189"/><text x="19.1724%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac<unsigned int> (51 samples, 0.01%)</title><rect x="18.9642%" y="613" width="0.0106%" height="15" fill="rgb(233,14,44)" fg:x="91555" fg:w="51"/><text x="19.2142%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="18.9620%" y="629" width="0.0133%" height="15" fill="rgb(237,97,39)" fg:x="91544" fg:w="64"/><text x="19.2120%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (81 samples, 0.02%)</title><rect x="18.9620%" y="645" width="0.0168%" height="15" fill="rgb(218,198,43)" fg:x="91544" fg:w="81"/><text x="19.2120%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (84 samples, 0.02%)</title><rect x="18.9615%" y="661" width="0.0174%" height="15" fill="rgb(231,104,20)" fg:x="91542" fg:w="84"/><text x="19.2115%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (94 samples, 0.02%)</title><rect x="18.9615%" y="709" width="0.0195%" height="15" fill="rgb(254,36,13)" fg:x="91542" fg:w="94"/><text x="19.2115%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (94 samples, 0.02%)</title><rect x="18.9615%" y="693" width="0.0195%" height="15" fill="rgb(248,14,50)" fg:x="91542" fg:w="94"/><text x="19.2115%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (94 samples, 0.02%)</title><rect x="18.9615%" y="677" width="0.0195%" height="15" fill="rgb(217,107,29)" fg:x="91542" fg:w="94"/><text x="19.2115%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (51 samples, 0.01%)</title><rect x="18.9949%" y="613" width="0.0106%" height="15" fill="rgb(251,169,33)" fg:x="91703" fg:w="51"/><text x="19.2449%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (51 samples, 0.01%)</title><rect x="18.9949%" y="597" width="0.0106%" height="15" fill="rgb(217,108,32)" fg:x="91703" fg:w="51"/><text x="19.2449%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (130 samples, 0.03%)</title><rect x="18.9810%" y="693" width="0.0269%" height="15" fill="rgb(219,66,42)" fg:x="91636" fg:w="130"/><text x="19.2310%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (86 samples, 0.02%)</title><rect x="18.9901%" y="677" width="0.0178%" height="15" fill="rgb(206,180,7)" fg:x="91680" fg:w="86"/><text x="19.2401%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (86 samples, 0.02%)</title><rect x="18.9901%" y="661" width="0.0178%" height="15" fill="rgb(208,226,31)" fg:x="91680" fg:w="86"/><text x="19.2401%" y="671.50"></text></g><g><title>JavaThread::oops_do (86 samples, 0.02%)</title><rect x="18.9901%" y="645" width="0.0178%" height="15" fill="rgb(218,26,49)" fg:x="91680" fg:w="86"/><text x="19.2401%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (65 samples, 0.01%)</title><rect x="18.9945%" y="629" width="0.0135%" height="15" fill="rgb(233,197,48)" fg:x="91701" fg:w="65"/><text x="19.2445%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (135 samples, 0.03%)</title><rect x="18.9810%" y="709" width="0.0280%" height="15" fill="rgb(252,181,51)" fg:x="91636" fg:w="135"/><text x="19.2310%" y="719.50"></text></g><g><title>G1ParTask::work (680 samples, 0.14%)</title><rect x="18.8683%" y="725" width="0.1409%" height="15" fill="rgb(253,90,19)" fg:x="91092" fg:w="680"/><text x="19.1183%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (54 samples, 0.01%)</title><rect x="19.0123%" y="709" width="0.0112%" height="15" fill="rgb(215,171,30)" fg:x="91787" fg:w="54"/><text x="19.2623%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (108 samples, 0.02%)</title><rect x="19.0123%" y="725" width="0.0224%" height="15" fill="rgb(214,222,9)" fg:x="91787" fg:w="108"/><text x="19.2623%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (54 samples, 0.01%)</title><rect x="19.0235%" y="709" width="0.0112%" height="15" fill="rgb(223,3,22)" fg:x="91841" fg:w="54"/><text x="19.2735%" y="719.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (54 samples, 0.01%)</title><rect x="19.0235%" y="693" width="0.0112%" height="15" fill="rgb(225,196,46)" fg:x="91841" fg:w="54"/><text x="19.2735%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.01%)</title><rect x="19.0235%" y="677" width="0.0112%" height="15" fill="rgb(209,110,37)" fg:x="91841" fg:w="54"/><text x="19.2735%" y="687.50"></text></g><g><title>SpinPause (53 samples, 0.01%)</title><rect x="19.0237%" y="661" width="0.0110%" height="15" fill="rgb(249,89,12)" fg:x="91842" fg:w="53"/><text x="19.2737%" y="671.50"></text></g><g><title>futex_wait_queue_me (52 samples, 0.01%)</title><rect x="19.0417%" y="565" width="0.0108%" height="15" fill="rgb(226,27,33)" fg:x="91929" fg:w="52"/><text x="19.2917%" y="575.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="19.0419%" y="549" width="0.0106%" height="15" fill="rgb(213,82,22)" fg:x="91930" fg:w="51"/><text x="19.2919%" y="559.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="19.0419%" y="533" width="0.0106%" height="15" fill="rgb(248,140,0)" fg:x="91930" fg:w="51"/><text x="19.2919%" y="543.50"></text></g><g><title>do_syscall_64 (55 samples, 0.01%)</title><rect x="19.0413%" y="629" width="0.0114%" height="15" fill="rgb(228,106,3)" fg:x="91927" fg:w="55"/><text x="19.2913%" y="639.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.01%)</title><rect x="19.0415%" y="613" width="0.0112%" height="15" fill="rgb(209,23,37)" fg:x="91928" fg:w="54"/><text x="19.2915%" y="623.50"></text></g><g><title>do_futex (54 samples, 0.01%)</title><rect x="19.0415%" y="597" width="0.0112%" height="15" fill="rgb(241,93,50)" fg:x="91928" fg:w="54"/><text x="19.2915%" y="607.50"></text></g><g><title>futex_wait (54 samples, 0.01%)</title><rect x="19.0415%" y="581" width="0.0112%" height="15" fill="rgb(253,46,43)" fg:x="91928" fg:w="54"/><text x="19.2915%" y="591.50"></text></g><g><title>__GI___clone (903 samples, 0.19%)</title><rect x="18.8663%" y="805" width="0.1870%" height="15" fill="rgb(226,206,43)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="815.50"></text></g><g><title>start_thread (903 samples, 0.19%)</title><rect x="18.8663%" y="789" width="0.1870%" height="15" fill="rgb(217,54,7)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="799.50"></text></g><g><title>thread_native_entry (903 samples, 0.19%)</title><rect x="18.8663%" y="773" width="0.1870%" height="15" fill="rgb(223,5,52)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="783.50"></text></g><g><title>Thread::call_run (903 samples, 0.19%)</title><rect x="18.8663%" y="757" width="0.1870%" height="15" fill="rgb(206,52,46)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="767.50"></text></g><g><title>GangWorker::loop (903 samples, 0.19%)</title><rect x="18.8663%" y="741" width="0.1870%" height="15" fill="rgb(253,136,11)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (59 samples, 0.01%)</title><rect x="19.0411%" y="725" width="0.0122%" height="15" fill="rgb(208,106,33)" fg:x="91926" fg:w="59"/><text x="19.2911%" y="735.50"></text></g><g><title>PosixSemaphore::wait (59 samples, 0.01%)</title><rect x="19.0411%" y="709" width="0.0122%" height="15" fill="rgb(206,54,4)" fg:x="91926" fg:w="59"/><text x="19.2911%" y="719.50"></text></g><g><title>__new_sem_wait_slow (59 samples, 0.01%)</title><rect x="19.0411%" y="693" width="0.0122%" height="15" fill="rgb(213,3,15)" fg:x="91926" fg:w="59"/><text x="19.2911%" y="703.50"></text></g><g><title>do_futex_wait (58 samples, 0.01%)</title><rect x="19.0413%" y="677" width="0.0120%" height="15" fill="rgb(252,211,39)" fg:x="91927" fg:w="58"/><text x="19.2913%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (58 samples, 0.01%)</title><rect x="19.0413%" y="661" width="0.0120%" height="15" fill="rgb(223,6,36)" fg:x="91927" fg:w="58"/><text x="19.2913%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="19.0413%" y="645" width="0.0120%" height="15" fill="rgb(252,169,45)" fg:x="91927" fg:w="58"/><text x="19.2913%" y="655.50"></text></g><g><title>GC_Thread#7 (917 samples, 0.19%)</title><rect x="18.8644%" y="821" width="0.1899%" height="15" fill="rgb(212,48,26)" fg:x="91073" fg:w="917"/><text x="19.1144%" y="831.50"></text></g><g><title>[perf-987172.map] (135 samples, 0.03%)</title><rect x="19.0620%" y="805" width="0.0280%" height="15" fill="rgb(251,102,48)" fg:x="92027" fg:w="135"/><text x="19.3120%" y="815.50"></text></g><g><title>Service_Thread (161 samples, 0.03%)</title><rect x="19.0601%" y="821" width="0.0333%" height="15" fill="rgb(243,208,16)" fg:x="92018" fg:w="161"/><text x="19.3101%" y="831.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.02%)</title><rect x="19.1045%" y="533" width="0.0199%" height="15" fill="rgb(219,96,24)" fg:x="92232" fg:w="96"/><text x="19.3545%" y="543.50"></text></g><g><title>schedule (83 samples, 0.02%)</title><rect x="19.1072%" y="517" width="0.0172%" height="15" fill="rgb(219,33,29)" fg:x="92245" fg:w="83"/><text x="19.3572%" y="527.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="19.1072%" y="501" width="0.0172%" height="15" fill="rgb(223,176,5)" fg:x="92245" fg:w="83"/><text x="19.3572%" y="511.50"></text></g><g><title>do_futex (111 samples, 0.02%)</title><rect x="19.1039%" y="565" width="0.0230%" height="15" fill="rgb(228,140,14)" fg:x="92229" fg:w="111"/><text x="19.3539%" y="575.50"></text></g><g><title>futex_wait (110 samples, 0.02%)</title><rect x="19.1041%" y="549" width="0.0228%" height="15" fill="rgb(217,179,31)" fg:x="92230" fg:w="110"/><text x="19.3541%" y="559.50"></text></g><g><title>do_syscall_64 (118 samples, 0.02%)</title><rect x="19.1030%" y="597" width="0.0244%" height="15" fill="rgb(230,9,30)" fg:x="92225" fg:w="118"/><text x="19.3530%" y="607.50"></text></g><g><title>__x64_sys_futex (118 samples, 0.02%)</title><rect x="19.1030%" y="581" width="0.0244%" height="15" fill="rgb(230,136,20)" fg:x="92225" fg:w="118"/><text x="19.3530%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (139 samples, 0.03%)</title><rect x="19.0997%" y="661" width="0.0288%" height="15" fill="rgb(215,210,22)" fg:x="92209" fg:w="139"/><text x="19.3497%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (138 samples, 0.03%)</title><rect x="19.0999%" y="645" width="0.0286%" height="15" fill="rgb(218,43,5)" fg:x="92210" fg:w="138"/><text x="19.3499%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (132 samples, 0.03%)</title><rect x="19.1012%" y="629" width="0.0273%" height="15" fill="rgb(216,11,5)" fg:x="92216" fg:w="132"/><text x="19.3512%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="19.1030%" y="613" width="0.0255%" height="15" fill="rgb(209,82,29)" fg:x="92225" fg:w="123"/><text x="19.3530%" y="623.50"></text></g><g><title>Monitor::wait (162 samples, 0.03%)</title><rect x="19.0987%" y="709" width="0.0336%" height="15" fill="rgb(244,115,12)" fg:x="92204" fg:w="162"/><text x="19.3487%" y="719.50"></text></g><g><title>Monitor::IWait (160 samples, 0.03%)</title><rect x="19.0991%" y="693" width="0.0331%" height="15" fill="rgb(222,82,18)" fg:x="92206" fg:w="160"/><text x="19.3491%" y="703.50"></text></g><g><title>os::PlatformEvent::park (157 samples, 0.03%)</title><rect x="19.0997%" y="677" width="0.0325%" height="15" fill="rgb(249,227,8)" fg:x="92209" fg:w="157"/><text x="19.3497%" y="687.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (68 samples, 0.01%)</title><rect x="19.1391%" y="661" width="0.0141%" height="15" fill="rgb(253,141,45)" fg:x="92399" fg:w="68"/><text x="19.3891%" y="671.50"></text></g><g><title>NMethodSweeper::process_compiled_method (87 samples, 0.02%)</title><rect x="19.1386%" y="677" width="0.0180%" height="15" fill="rgb(234,184,4)" fg:x="92397" fg:w="87"/><text x="19.3886%" y="687.50"></text></g><g><title>NMethodSweeper::possibly_sweep (119 samples, 0.02%)</title><rect x="19.1322%" y="709" width="0.0246%" height="15" fill="rgb(218,194,23)" fg:x="92366" fg:w="119"/><text x="19.3822%" y="719.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (111 samples, 0.02%)</title><rect x="19.1339%" y="693" width="0.0230%" height="15" fill="rgb(235,66,41)" fg:x="92374" fg:w="111"/><text x="19.3839%" y="703.50"></text></g><g><title>__GI___clone (295 samples, 0.06%)</title><rect x="19.0968%" y="805" width="0.0611%" height="15" fill="rgb(245,217,1)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="815.50"></text></g><g><title>start_thread (295 samples, 0.06%)</title><rect x="19.0968%" y="789" width="0.0611%" height="15" fill="rgb(229,91,1)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="799.50"></text></g><g><title>thread_native_entry (295 samples, 0.06%)</title><rect x="19.0968%" y="773" width="0.0611%" height="15" fill="rgb(207,101,30)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="783.50"></text></g><g><title>Thread::call_run (295 samples, 0.06%)</title><rect x="19.0968%" y="757" width="0.0611%" height="15" fill="rgb(223,82,49)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (295 samples, 0.06%)</title><rect x="19.0968%" y="741" width="0.0611%" height="15" fill="rgb(218,167,17)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="751.50"></text></g><g><title>NMethodSweeper::sweeper_loop (295 samples, 0.06%)</title><rect x="19.0968%" y="725" width="0.0611%" height="15" fill="rgb(208,103,14)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="735.50"></text></g><g><title>Sweeper_thread (313 samples, 0.06%)</title><rect x="19.0937%" y="821" width="0.0648%" height="15" fill="rgb(238,20,8)" fg:x="92180" fg:w="313"/><text x="19.3437%" y="831.50"></text></g><g><title>Java_java_io_FileInputStream_available0 (50 samples, 0.01%)</title><rect x="19.2348%" y="789" width="0.0104%" height="15" fill="rgb(218,80,54)" fg:x="92861" fg:w="50"/><text x="19.4848%" y="799.50"></text></g><g><title>get_cpu_load (89 samples, 0.02%)</title><rect x="19.2563%" y="789" width="0.0184%" height="15" fill="rgb(240,144,17)" fg:x="92965" fg:w="89"/><text x="19.5063%" y="799.50"></text></g><g><title>get_cpuload_internal (89 samples, 0.02%)</title><rect x="19.2563%" y="773" width="0.0184%" height="15" fill="rgb(245,27,50)" fg:x="92965" fg:w="89"/><text x="19.5063%" y="783.50"></text></g><g><title>get_totalticks (89 samples, 0.02%)</title><rect x="19.2563%" y="757" width="0.0184%" height="15" fill="rgb(251,51,7)" fg:x="92965" fg:w="89"/><text x="19.5063%" y="767.50"></text></g><g><title>[perf-987172.map] (543 samples, 0.11%)</title><rect x="19.1635%" y="805" width="0.1125%" height="15" fill="rgb(245,217,29)" fg:x="92517" fg:w="543"/><text x="19.4135%" y="815.50"></text></g><g><title>Thread-0 (615 samples, 0.13%)</title><rect x="19.1585%" y="821" width="0.1274%" height="15" fill="rgb(221,176,29)" fg:x="92493" fg:w="615"/><text x="19.4085%" y="831.50"></text></g><g><title>PeriodicTask::real_time_tick (62 samples, 0.01%)</title><rect x="19.2894%" y="725" width="0.0128%" height="15" fill="rgb(212,180,24)" fg:x="93125" fg:w="62"/><text x="19.5394%" y="735.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.02%)</title><rect x="19.3149%" y="533" width="0.0197%" height="15" fill="rgb(254,24,2)" fg:x="93248" fg:w="95"/><text x="19.5649%" y="543.50"></text></g><g><title>schedule (82 samples, 0.02%)</title><rect x="19.3176%" y="517" width="0.0170%" height="15" fill="rgb(230,100,2)" fg:x="93261" fg:w="82"/><text x="19.5676%" y="527.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="19.3182%" y="501" width="0.0164%" height="15" fill="rgb(219,142,25)" fg:x="93264" fg:w="79"/><text x="19.5682%" y="511.50"></text></g><g><title>do_futex (106 samples, 0.02%)</title><rect x="19.3131%" y="565" width="0.0220%" height="15" fill="rgb(240,73,43)" fg:x="93239" fg:w="106"/><text x="19.5631%" y="575.50"></text></g><g><title>futex_wait (105 samples, 0.02%)</title><rect x="19.3133%" y="549" width="0.0217%" height="15" fill="rgb(214,114,15)" fg:x="93240" fg:w="105"/><text x="19.5633%" y="559.50"></text></g><g><title>do_syscall_64 (113 samples, 0.02%)</title><rect x="19.3120%" y="597" width="0.0234%" height="15" fill="rgb(207,130,4)" fg:x="93234" fg:w="113"/><text x="19.5620%" y="607.50"></text></g><g><title>__x64_sys_futex (113 samples, 0.02%)</title><rect x="19.3120%" y="581" width="0.0234%" height="15" fill="rgb(221,25,40)" fg:x="93234" fg:w="113"/><text x="19.5620%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (137 samples, 0.03%)</title><rect x="19.3089%" y="661" width="0.0284%" height="15" fill="rgb(241,184,7)" fg:x="93219" fg:w="137"/><text x="19.5589%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (136 samples, 0.03%)</title><rect x="19.3091%" y="645" width="0.0282%" height="15" fill="rgb(235,159,4)" fg:x="93220" fg:w="136"/><text x="19.5591%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.03%)</title><rect x="19.3106%" y="629" width="0.0267%" height="15" fill="rgb(214,87,48)" fg:x="93227" fg:w="129"/><text x="19.5606%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="19.3118%" y="613" width="0.0255%" height="15" fill="rgb(246,198,24)" fg:x="93233" fg:w="123"/><text x="19.5618%" y="623.50"></text></g><g><title>Monitor::wait (178 samples, 0.04%)</title><rect x="19.3035%" y="709" width="0.0369%" height="15" fill="rgb(209,66,40)" fg:x="93193" fg:w="178"/><text x="19.5535%" y="719.50"></text></g><g><title>Monitor::IWait (174 samples, 0.04%)</title><rect x="19.3044%" y="693" width="0.0360%" height="15" fill="rgb(233,147,39)" fg:x="93197" fg:w="174"/><text x="19.5544%" y="703.50"></text></g><g><title>os::PlatformEvent::park (162 samples, 0.03%)</title><rect x="19.3068%" y="677" width="0.0336%" height="15" fill="rgb(231,145,52)" fg:x="93209" fg:w="162"/><text x="19.5568%" y="687.50"></text></g><g><title>WatcherThread::sleep (190 samples, 0.04%)</title><rect x="19.3031%" y="725" width="0.0394%" height="15" fill="rgb(206,20,26)" fg:x="93191" fg:w="190"/><text x="19.5531%" y="735.50"></text></g><g><title>__GI___clone (257 samples, 0.05%)</title><rect x="19.2894%" y="805" width="0.0532%" height="15" fill="rgb(238,220,4)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="815.50"></text></g><g><title>start_thread (257 samples, 0.05%)</title><rect x="19.2894%" y="789" width="0.0532%" height="15" fill="rgb(252,195,42)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="799.50"></text></g><g><title>thread_native_entry (257 samples, 0.05%)</title><rect x="19.2894%" y="773" width="0.0532%" height="15" fill="rgb(209,10,6)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="783.50"></text></g><g><title>Thread::call_run (257 samples, 0.05%)</title><rect x="19.2894%" y="757" width="0.0532%" height="15" fill="rgb(229,3,52)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="767.50"></text></g><g><title>WatcherThread::run (257 samples, 0.05%)</title><rect x="19.2894%" y="741" width="0.0532%" height="15" fill="rgb(253,49,37)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="751.50"></text></g><g><title>VM_Periodic_Tas (279 samples, 0.06%)</title><rect x="19.2859%" y="821" width="0.0578%" height="15" fill="rgb(240,103,49)" fg:x="93108" fg:w="279"/><text x="19.5359%" y="831.50"></text></g><g><title>[unknown] (63 samples, 0.01%)</title><rect x="19.3470%" y="805" width="0.0130%" height="15" fill="rgb(250,182,30)" fg:x="93403" fg:w="63"/><text x="19.5970%" y="815.50"></text></g><g><title>vframe::sender (59 samples, 0.01%)</title><rect x="19.3479%" y="789" width="0.0122%" height="15" fill="rgb(248,8,30)" fg:x="93407" fg:w="59"/><text x="19.5979%" y="799.50"></text></g><g><title>PosixSemaphore::signal (50 samples, 0.01%)</title><rect x="19.4032%" y="645" width="0.0104%" height="15" fill="rgb(237,120,30)" fg:x="93674" fg:w="50"/><text x="19.6532%" y="655.50"></text></g><g><title>__new_sem_post (49 samples, 0.01%)</title><rect x="19.4034%" y="629" width="0.0101%" height="15" fill="rgb(221,146,34)" fg:x="93675" fg:w="49"/><text x="19.6534%" y="639.50"></text></g><g><title>futex_wake (49 samples, 0.01%)</title><rect x="19.4034%" y="613" width="0.0101%" height="15" fill="rgb(242,55,13)" fg:x="93675" fg:w="49"/><text x="19.6534%" y="623.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (94 samples, 0.02%)</title><rect x="19.4032%" y="661" width="0.0195%" height="15" fill="rgb(242,112,31)" fg:x="93674" fg:w="94"/><text x="19.6532%" y="671.50"></text></g><g><title>WorkGang::run_task (95 samples, 0.02%)</title><rect x="19.4032%" y="677" width="0.0197%" height="15" fill="rgb(249,192,27)" fg:x="93674" fg:w="95"/><text x="19.6532%" y="687.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (103 samples, 0.02%)</title><rect x="19.4017%" y="693" width="0.0213%" height="15" fill="rgb(208,204,44)" fg:x="93667" fg:w="103"/><text x="19.6517%" y="703.50"></text></g><g><title>SafepointSynchronize::begin (258 samples, 0.05%)</title><rect x="19.3771%" y="709" width="0.0534%" height="15" fill="rgb(208,93,54)" fg:x="93548" fg:w="258"/><text x="19.6271%" y="719.50"></text></g><g><title>CodeBlobIterator<CompiledMethod, CompiledMethodFilter>::next_alive (52 samples, 0.01%)</title><rect x="19.4398%" y="645" width="0.0108%" height="15" fill="rgb(242,1,31)" fg:x="93851" fg:w="52"/><text x="19.6898%" y="655.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (53 samples, 0.01%)</title><rect x="19.4398%" y="661" width="0.0110%" height="15" fill="rgb(241,83,25)" fg:x="93851" fg:w="53"/><text x="19.6898%" y="671.50"></text></g><g><title>VM_Deoptimize::doit (59 samples, 0.01%)</title><rect x="19.4398%" y="677" width="0.0122%" height="15" fill="rgb(205,169,50)" fg:x="93851" fg:w="59"/><text x="19.6898%" y="687.50"></text></g><g><title>VM_Operation::evaluate (119 samples, 0.02%)</title><rect x="19.4355%" y="693" width="0.0246%" height="15" fill="rgb(239,186,37)" fg:x="93830" fg:w="119"/><text x="19.6855%" y="703.50"></text></g><g><title>VMThread::evaluate_operation (122 samples, 0.03%)</title><rect x="19.4351%" y="709" width="0.0253%" height="15" fill="rgb(205,221,10)" fg:x="93828" fg:w="122"/><text x="19.6851%" y="719.50"></text></g><g><title>Thread::call_run (466 samples, 0.10%)</title><rect x="19.3644%" y="757" width="0.0965%" height="15" fill="rgb(218,196,15)" fg:x="93487" fg:w="466"/><text x="19.6144%" y="767.50"></text></g><g><title>VMThread::run (466 samples, 0.10%)</title><rect x="19.3644%" y="741" width="0.0965%" height="15" fill="rgb(218,196,35)" fg:x="93487" fg:w="466"/><text x="19.6144%" y="751.50"></text></g><g><title>VMThread::loop (466 samples, 0.10%)</title><rect x="19.3644%" y="725" width="0.0965%" height="15" fill="rgb(233,63,24)" fg:x="93487" fg:w="466"/><text x="19.6144%" y="735.50"></text></g><g><title>__GI___clone (490 samples, 0.10%)</title><rect x="19.3601%" y="805" width="0.1015%" height="15" fill="rgb(225,8,4)" fg:x="93466" fg:w="490"/><text x="19.6101%" y="815.50"></text></g><g><title>start_thread (472 samples, 0.10%)</title><rect x="19.3638%" y="789" width="0.0978%" height="15" fill="rgb(234,105,35)" fg:x="93484" fg:w="472"/><text x="19.6138%" y="799.50"></text></g><g><title>thread_native_entry (471 samples, 0.10%)</title><rect x="19.3640%" y="773" width="0.0976%" height="15" fill="rgb(236,21,32)" fg:x="93485" fg:w="471"/><text x="19.6140%" y="783.50"></text></g><g><title>VM_Thread (573 samples, 0.12%)</title><rect x="19.3437%" y="821" width="0.1187%" height="15" fill="rgb(228,109,6)" fg:x="93387" fg:w="573"/><text x="19.5937%" y="831.50"></text></g><g><title>__x64_sys_epoll_pwait (62 samples, 0.01%)</title><rect x="19.5138%" y="757" width="0.0128%" height="15" fill="rgb(229,215,31)" fg:x="94208" fg:w="62"/><text x="19.7638%" y="767.50"></text></g><g><title>do_epoll_wait (62 samples, 0.01%)</title><rect x="19.5138%" y="741" width="0.0128%" height="15" fill="rgb(221,52,54)" fg:x="94208" fg:w="62"/><text x="19.7638%" y="751.50"></text></g><g><title>schedule_hrtimeout_range_clock (56 samples, 0.01%)</title><rect x="19.5150%" y="725" width="0.0116%" height="15" fill="rgb(252,129,43)" fg:x="94214" fg:w="56"/><text x="19.7650%" y="735.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="19.5152%" y="709" width="0.0114%" height="15" fill="rgb(248,183,27)" fg:x="94215" fg:w="55"/><text x="19.7652%" y="719.50"></text></g><g><title>__schedule (53 samples, 0.01%)</title><rect x="19.5156%" y="693" width="0.0110%" height="15" fill="rgb(250,0,22)" fg:x="94217" fg:w="53"/><text x="19.7656%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (99 samples, 0.02%)</title><rect x="19.5299%" y="645" width="0.0205%" height="15" fill="rgb(213,166,10)" fg:x="94286" fg:w="99"/><text x="19.7799%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (98 samples, 0.02%)</title><rect x="19.5301%" y="629" width="0.0203%" height="15" fill="rgb(207,163,36)" fg:x="94287" fg:w="98"/><text x="19.7801%" y="639.50"></text></g><g><title>native_write_msr (96 samples, 0.02%)</title><rect x="19.5305%" y="613" width="0.0199%" height="15" fill="rgb(208,122,22)" fg:x="94289" fg:w="96"/><text x="19.7805%" y="623.50"></text></g><g><title>finish_task_switch (110 samples, 0.02%)</title><rect x="19.5295%" y="661" width="0.0228%" height="15" fill="rgb(207,104,49)" fg:x="94284" fg:w="110"/><text x="19.7795%" y="671.50"></text></g><g><title>futex_wait_queue_me (130 samples, 0.03%)</title><rect x="19.5266%" y="709" width="0.0269%" height="15" fill="rgb(248,211,50)" fg:x="94270" fg:w="130"/><text x="19.7766%" y="719.50"></text></g><g><title>schedule (128 samples, 0.03%)</title><rect x="19.5270%" y="693" width="0.0265%" height="15" fill="rgb(217,13,45)" fg:x="94272" fg:w="128"/><text x="19.7770%" y="703.50"></text></g><g><title>__schedule (127 samples, 0.03%)</title><rect x="19.5272%" y="677" width="0.0263%" height="15" fill="rgb(211,216,49)" fg:x="94273" fg:w="127"/><text x="19.7772%" y="687.50"></text></g><g><title>futex_wait (131 samples, 0.03%)</title><rect x="19.5266%" y="725" width="0.0271%" height="15" fill="rgb(221,58,53)" fg:x="94270" fg:w="131"/><text x="19.7766%" y="735.50"></text></g><g><title>__x64_sys_futex (148 samples, 0.03%)</title><rect x="19.5266%" y="757" width="0.0307%" height="15" fill="rgb(220,112,41)" fg:x="94270" fg:w="148"/><text x="19.7766%" y="767.50"></text></g><g><title>do_futex (148 samples, 0.03%)</title><rect x="19.5266%" y="741" width="0.0307%" height="15" fill="rgb(236,38,28)" fg:x="94270" fg:w="148"/><text x="19.7766%" y="751.50"></text></g><g><title>do_syscall_64 (286 samples, 0.06%)</title><rect x="19.5131%" y="773" width="0.0592%" height="15" fill="rgb(227,195,22)" fg:x="94205" fg:w="286"/><text x="19.7631%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.06%)</title><rect x="19.5127%" y="789" width="0.0601%" height="15" fill="rgb(214,55,33)" fg:x="94203" fg:w="290"/><text x="19.7627%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (549 samples, 0.11%)</title><rect x="19.4688%" y="805" width="0.1137%" height="15" fill="rgb(248,80,13)" fg:x="93991" fg:w="549"/><text x="19.7188%" y="815.50"></text></g><g><title>bazel (594 samples, 0.12%)</title><rect x="19.4686%" y="821" width="0.1230%" height="15" fill="rgb(238,52,6)" fg:x="93990" fg:w="594"/><text x="19.7186%" y="831.50"></text></g><g><title>_dl_catch_exception (68 samples, 0.01%)</title><rect x="19.6033%" y="709" width="0.0141%" height="15" fill="rgb(224,198,47)" fg:x="94640" fg:w="68"/><text x="19.8533%" y="719.50"></text></g><g><title>openaux (68 samples, 0.01%)</title><rect x="19.6033%" y="693" width="0.0141%" height="15" fill="rgb(233,171,20)" fg:x="94640" fg:w="68"/><text x="19.8533%" y="703.50"></text></g><g><title>_dl_map_object (68 samples, 0.01%)</title><rect x="19.6033%" y="677" width="0.0141%" height="15" fill="rgb(241,30,25)" fg:x="94640" fg:w="68"/><text x="19.8533%" y="687.50"></text></g><g><title>_dl_map_object_deps (71 samples, 0.01%)</title><rect x="19.6030%" y="725" width="0.0147%" height="15" fill="rgb(207,171,38)" fg:x="94639" fg:w="71"/><text x="19.8530%" y="735.50"></text></g><g><title>elf_machine_rela (104 samples, 0.02%)</title><rect x="19.6252%" y="693" width="0.0215%" height="15" fill="rgb(234,70,1)" fg:x="94746" fg:w="104"/><text x="19.8752%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (81 samples, 0.02%)</title><rect x="19.6300%" y="677" width="0.0168%" height="15" fill="rgb(232,178,18)" fg:x="94769" fg:w="81"/><text x="19.8800%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (127 samples, 0.03%)</title><rect x="19.6217%" y="709" width="0.0263%" height="15" fill="rgb(241,78,40)" fg:x="94729" fg:w="127"/><text x="19.8717%" y="719.50"></text></g><g><title>_dl_relocate_object (142 samples, 0.03%)</title><rect x="19.6188%" y="725" width="0.0294%" height="15" fill="rgb(222,35,25)" fg:x="94715" fg:w="142"/><text x="19.8688%" y="735.50"></text></g><g><title>[ld-2.31.so] (226 samples, 0.05%)</title><rect x="19.6026%" y="741" width="0.0468%" height="15" fill="rgb(207,92,16)" fg:x="94637" fg:w="226"/><text x="19.8526%" y="751.50"></text></g><g><title>_dl_start_final (229 samples, 0.05%)</title><rect x="19.6026%" y="773" width="0.0474%" height="15" fill="rgb(216,59,51)" fg:x="94637" fg:w="229"/><text x="19.8526%" y="783.50"></text></g><g><title>_dl_sysdep_start (229 samples, 0.05%)</title><rect x="19.6026%" y="757" width="0.0474%" height="15" fill="rgb(213,80,28)" fg:x="94637" fg:w="229"/><text x="19.8526%" y="767.50"></text></g><g><title>_dl_start (233 samples, 0.05%)</title><rect x="19.6026%" y="789" width="0.0483%" height="15" fill="rgb(220,93,7)" fg:x="94637" fg:w="233"/><text x="19.8526%" y="799.50"></text></g><g><title>_start (258 samples, 0.05%)</title><rect x="19.5983%" y="805" width="0.0534%" height="15" fill="rgb(225,24,44)" fg:x="94616" fg:w="258"/><text x="19.8483%" y="815.50"></text></g><g><title>build-runfiles (336 samples, 0.07%)</title><rect x="19.5919%" y="821" width="0.0696%" height="15" fill="rgb(243,74,40)" fg:x="94585" fg:w="336"/><text x="19.8419%" y="831.50"></text></g><g><title>do_open_execat (144 samples, 0.03%)</title><rect x="19.7468%" y="389" width="0.0298%" height="15" fill="rgb(228,39,7)" fg:x="95333" fg:w="144"/><text x="19.9968%" y="399.50"></text></g><g><title>do_filp_open (139 samples, 0.03%)</title><rect x="19.7478%" y="373" width="0.0288%" height="15" fill="rgb(227,79,8)" fg:x="95338" fg:w="139"/><text x="19.9978%" y="383.50"></text></g><g><title>path_openat (138 samples, 0.03%)</title><rect x="19.7480%" y="357" width="0.0286%" height="15" fill="rgb(236,58,11)" fg:x="95339" fg:w="138"/><text x="19.9980%" y="367.50"></text></g><g><title>load_elf_binary (51 samples, 0.01%)</title><rect x="19.7779%" y="389" width="0.0106%" height="15" fill="rgb(249,63,35)" fg:x="95483" fg:w="51"/><text x="20.0279%" y="399.50"></text></g><g><title>select_task_rq_fair (89 samples, 0.02%)</title><rect x="19.7963%" y="373" width="0.0184%" height="15" fill="rgb(252,114,16)" fg:x="95572" fg:w="89"/><text x="20.0463%" y="383.50"></text></g><g><title>find_idlest_group (79 samples, 0.02%)</title><rect x="19.7984%" y="357" width="0.0164%" height="15" fill="rgb(254,151,24)" fg:x="95582" fg:w="79"/><text x="20.0484%" y="367.50"></text></g><g><title>sched_exec (156 samples, 0.03%)</title><rect x="19.7959%" y="389" width="0.0323%" height="15" fill="rgb(253,54,39)" fg:x="95570" fg:w="156"/><text x="20.0459%" y="399.50"></text></g><g><title>stop_one_cpu (65 samples, 0.01%)</title><rect x="19.8147%" y="373" width="0.0135%" height="15" fill="rgb(243,25,45)" fg:x="95661" fg:w="65"/><text x="20.0647%" y="383.50"></text></g><g><title>_cond_resched (65 samples, 0.01%)</title><rect x="19.8147%" y="357" width="0.0135%" height="15" fill="rgb(234,134,9)" fg:x="95661" fg:w="65"/><text x="20.0647%" y="367.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="19.8147%" y="341" width="0.0135%" height="15" fill="rgb(227,166,31)" fg:x="95661" fg:w="65"/><text x="20.0647%" y="351.50"></text></g><g><title>finish_task_switch (64 samples, 0.01%)</title><rect x="19.8149%" y="325" width="0.0133%" height="15" fill="rgb(245,143,41)" fg:x="95662" fg:w="64"/><text x="20.0649%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.01%)</title><rect x="19.8158%" y="309" width="0.0124%" height="15" fill="rgb(238,181,32)" fg:x="95666" fg:w="60"/><text x="20.0658%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (60 samples, 0.01%)</title><rect x="19.8158%" y="293" width="0.0124%" height="15" fill="rgb(224,113,18)" fg:x="95666" fg:w="60"/><text x="20.0658%" y="303.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="19.8160%" y="277" width="0.0122%" height="15" fill="rgb(240,229,28)" fg:x="95667" fg:w="59"/><text x="20.0660%" y="287.50"></text></g><g><title>security_bprm_check (98 samples, 0.02%)</title><rect x="19.8282%" y="389" width="0.0203%" height="15" fill="rgb(250,185,3)" fg:x="95726" fg:w="98"/><text x="20.0782%" y="399.50"></text></g><g><title>tomoyo_bprm_check_security (98 samples, 0.02%)</title><rect x="19.8282%" y="373" width="0.0203%" height="15" fill="rgb(212,59,25)" fg:x="95726" fg:w="98"/><text x="20.0782%" y="383.50"></text></g><g><title>tomoyo_find_next_domain (95 samples, 0.02%)</title><rect x="19.8288%" y="357" width="0.0197%" height="15" fill="rgb(221,87,20)" fg:x="95729" fg:w="95"/><text x="20.0788%" y="367.50"></text></g><g><title>tomoyo_realpath_nofollow (56 samples, 0.01%)</title><rect x="19.8369%" y="341" width="0.0116%" height="15" fill="rgb(213,74,28)" fg:x="95768" fg:w="56"/><text x="20.0869%" y="351.50"></text></g><g><title>aa_dfa_leftmatch (63 samples, 0.01%)</title><rect x="19.8636%" y="325" width="0.0130%" height="15" fill="rgb(224,132,34)" fg:x="95897" fg:w="63"/><text x="20.1136%" y="335.50"></text></g><g><title>apparmor_bprm_creds_for_exec (155 samples, 0.03%)</title><rect x="19.8491%" y="373" width="0.0321%" height="15" fill="rgb(222,101,24)" fg:x="95827" fg:w="155"/><text x="20.0991%" y="383.50"></text></g><g><title>profile_transition (139 samples, 0.03%)</title><rect x="19.8524%" y="357" width="0.0288%" height="15" fill="rgb(254,142,4)" fg:x="95843" fg:w="139"/><text x="20.1024%" y="367.50"></text></g><g><title>find_attach (110 samples, 0.02%)</title><rect x="19.8584%" y="341" width="0.0228%" height="15" fill="rgb(230,229,49)" fg:x="95872" fg:w="110"/><text x="20.1084%" y="351.50"></text></g><g><title>security_bprm_creds_for_exec (163 samples, 0.03%)</title><rect x="19.8485%" y="389" width="0.0338%" height="15" fill="rgb(238,70,47)" fg:x="95824" fg:w="163"/><text x="20.0985%" y="399.50"></text></g><g><title>bprm_execve (700 samples, 0.14%)</title><rect x="19.7389%" y="405" width="0.1450%" height="15" fill="rgb(231,160,17)" fg:x="95295" fg:w="700"/><text x="19.9889%" y="415.50"></text></g><g><title>__get_user_pages_remote (52 samples, 0.01%)</title><rect x="19.8841%" y="373" width="0.0108%" height="15" fill="rgb(218,68,53)" fg:x="95996" fg:w="52"/><text x="20.1341%" y="383.50"></text></g><g><title>__get_user_pages (50 samples, 0.01%)</title><rect x="19.8845%" y="357" width="0.0104%" height="15" fill="rgb(236,111,10)" fg:x="95998" fg:w="50"/><text x="20.1345%" y="367.50"></text></g><g><title>get_arg_page (53 samples, 0.01%)</title><rect x="19.8841%" y="389" width="0.0110%" height="15" fill="rgb(224,34,41)" fg:x="95996" fg:w="53"/><text x="20.1341%" y="399.50"></text></g><g><title>copy_string_kernel (55 samples, 0.01%)</title><rect x="19.8839%" y="405" width="0.0114%" height="15" fill="rgb(241,118,19)" fg:x="95995" fg:w="55"/><text x="20.1339%" y="415.50"></text></g><g><title>copy_strings.isra.0 (51 samples, 0.01%)</title><rect x="19.8953%" y="405" width="0.0106%" height="15" fill="rgb(238,129,25)" fg:x="96050" fg:w="51"/><text x="20.1453%" y="415.50"></text></g><g><title>do_execveat_common (845 samples, 0.18%)</title><rect x="19.7329%" y="421" width="0.1750%" height="15" fill="rgb(238,22,31)" fg:x="95266" fg:w="845"/><text x="19.9829%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (848 samples, 0.18%)</title><rect x="19.7329%" y="469" width="0.1757%" height="15" fill="rgb(222,174,48)" fg:x="95266" fg:w="848"/><text x="19.9829%" y="479.50"></text></g><g><title>do_syscall_64 (848 samples, 0.18%)</title><rect x="19.7329%" y="453" width="0.1757%" height="15" fill="rgb(206,152,40)" fg:x="95266" fg:w="848"/><text x="19.9829%" y="463.50"></text></g><g><title>__x64_sys_execve (848 samples, 0.18%)</title><rect x="19.7329%" y="437" width="0.1757%" height="15" fill="rgb(218,99,54)" fg:x="95266" fg:w="848"/><text x="19.9829%" y="447.50"></text></g><g><title>__GI_execve (849 samples, 0.18%)</title><rect x="19.7329%" y="485" width="0.1759%" height="15" fill="rgb(220,174,26)" fg:x="95266" fg:w="849"/><text x="19.9829%" y="495.50"></text></g><g><title>[dash] (977 samples, 0.20%)</title><rect x="19.7118%" y="501" width="0.2024%" height="15" fill="rgb(245,116,9)" fg:x="95164" fg:w="977"/><text x="19.9618%" y="511.50"></text></g><g><title>_int_malloc (50 samples, 0.01%)</title><rect x="19.9160%" y="485" width="0.0104%" height="15" fill="rgb(209,72,35)" fg:x="96150" fg:w="50"/><text x="20.1660%" y="495.50"></text></g><g><title>__GI___libc_malloc (54 samples, 0.01%)</title><rect x="19.9156%" y="501" width="0.0112%" height="15" fill="rgb(226,126,21)" fg:x="96148" fg:w="54"/><text x="20.1656%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (359 samples, 0.07%)</title><rect x="19.9409%" y="373" width="0.0744%" height="15" fill="rgb(227,192,1)" fg:x="96270" fg:w="359"/><text x="20.1909%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (352 samples, 0.07%)</title><rect x="19.9423%" y="357" width="0.0729%" height="15" fill="rgb(237,180,29)" fg:x="96277" fg:w="352"/><text x="20.1923%" y="367.50"></text></g><g><title>native_write_msr (348 samples, 0.07%)</title><rect x="19.9432%" y="341" width="0.0721%" height="15" fill="rgb(230,197,35)" fg:x="96281" fg:w="348"/><text x="20.1932%" y="351.50"></text></g><g><title>finish_task_switch (366 samples, 0.08%)</title><rect x="19.9398%" y="389" width="0.0758%" height="15" fill="rgb(246,193,31)" fg:x="96265" fg:w="366"/><text x="20.1898%" y="399.50"></text></g><g><title>schedule (421 samples, 0.09%)</title><rect x="19.9330%" y="421" width="0.0872%" height="15" fill="rgb(241,36,4)" fg:x="96232" fg:w="421"/><text x="20.1830%" y="431.50"></text></g><g><title>__schedule (421 samples, 0.09%)</title><rect x="19.9330%" y="405" width="0.0872%" height="15" fill="rgb(241,130,17)" fg:x="96232" fg:w="421"/><text x="20.1830%" y="415.50"></text></g><g><title>release_task (63 samples, 0.01%)</title><rect x="20.0229%" y="405" width="0.0130%" height="15" fill="rgb(206,137,32)" fg:x="96666" fg:w="63"/><text x="20.2729%" y="415.50"></text></g><g><title>do_syscall_64 (521 samples, 0.11%)</title><rect x="19.9289%" y="469" width="0.1079%" height="15" fill="rgb(237,228,51)" fg:x="96212" fg:w="521"/><text x="20.1789%" y="479.50"></text></g><g><title>kernel_wait4 (513 samples, 0.11%)</title><rect x="19.9305%" y="453" width="0.1063%" height="15" fill="rgb(243,6,42)" fg:x="96220" fg:w="513"/><text x="20.1805%" y="463.50"></text></g><g><title>do_wait (512 samples, 0.11%)</title><rect x="19.9307%" y="437" width="0.1061%" height="15" fill="rgb(251,74,28)" fg:x="96221" fg:w="512"/><text x="20.1807%" y="447.50"></text></g><g><title>wait_consider_task (80 samples, 0.02%)</title><rect x="20.0202%" y="421" width="0.0166%" height="15" fill="rgb(218,20,49)" fg:x="96653" fg:w="80"/><text x="20.2702%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (575 samples, 0.12%)</title><rect x="19.9289%" y="485" width="0.1191%" height="15" fill="rgb(238,28,14)" fg:x="96212" fg:w="575"/><text x="20.1789%" y="495.50"></text></g><g><title>syscall_exit_to_user_mode (54 samples, 0.01%)</title><rect x="20.0368%" y="469" width="0.0112%" height="15" fill="rgb(229,40,46)" fg:x="96733" fg:w="54"/><text x="20.2868%" y="479.50"></text></g><g><title>exit_to_user_mode_prepare (54 samples, 0.01%)</title><rect x="20.0368%" y="453" width="0.0112%" height="15" fill="rgb(244,195,20)" fg:x="96733" fg:w="54"/><text x="20.2868%" y="463.50"></text></g><g><title>arch_do_signal (54 samples, 0.01%)</title><rect x="20.0368%" y="437" width="0.0112%" height="15" fill="rgb(253,56,35)" fg:x="96733" fg:w="54"/><text x="20.2868%" y="447.50"></text></g><g><title>__GI___wait4 (603 samples, 0.12%)</title><rect x="19.9268%" y="501" width="0.1249%" height="15" fill="rgb(210,149,44)" fg:x="96202" fg:w="603"/><text x="20.1768%" y="511.50"></text></g><g><title>exc_page_fault (63 samples, 0.01%)</title><rect x="20.0590%" y="485" width="0.0130%" height="15" fill="rgb(240,135,12)" fg:x="96840" fg:w="63"/><text x="20.3090%" y="495.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.01%)</title><rect x="20.0590%" y="469" width="0.0130%" height="15" fill="rgb(251,24,50)" fg:x="96840" fg:w="63"/><text x="20.3090%" y="479.50"></text></g><g><title>handle_mm_fault (55 samples, 0.01%)</title><rect x="20.0606%" y="453" width="0.0114%" height="15" fill="rgb(243,200,47)" fg:x="96848" fg:w="55"/><text x="20.3106%" y="463.50"></text></g><g><title>asm_exc_page_fault (64 samples, 0.01%)</title><rect x="20.0590%" y="501" width="0.0133%" height="15" fill="rgb(224,166,26)" fg:x="96840" fg:w="64"/><text x="20.3090%" y="511.50"></text></g><g><title>[dash] (1,769 samples, 0.37%)</title><rect x="19.7095%" y="517" width="0.3664%" height="15" fill="rgb(233,0,47)" fg:x="95153" fg:w="1769"/><text x="19.9595%" y="527.50"></text></g><g><title>handle_mm_fault (101 samples, 0.02%)</title><rect x="20.1006%" y="469" width="0.0209%" height="15" fill="rgb(253,80,5)" fg:x="97041" fg:w="101"/><text x="20.3506%" y="479.50"></text></g><g><title>wp_page_copy (85 samples, 0.02%)</title><rect x="20.1039%" y="453" width="0.0176%" height="15" fill="rgb(214,133,25)" fg:x="97057" fg:w="85"/><text x="20.3539%" y="463.50"></text></g><g><title>asm_exc_page_fault (111 samples, 0.02%)</title><rect x="20.0987%" y="517" width="0.0230%" height="15" fill="rgb(209,27,14)" fg:x="97032" fg:w="111"/><text x="20.3487%" y="527.50"></text></g><g><title>exc_page_fault (111 samples, 0.02%)</title><rect x="20.0987%" y="501" width="0.0230%" height="15" fill="rgb(219,102,51)" fg:x="97032" fg:w="111"/><text x="20.3487%" y="511.50"></text></g><g><title>do_user_addr_fault (110 samples, 0.02%)</title><rect x="20.0989%" y="485" width="0.0228%" height="15" fill="rgb(237,18,16)" fg:x="97033" fg:w="110"/><text x="20.3489%" y="495.50"></text></g><g><title>[dash] (2,033 samples, 0.42%)</title><rect x="19.7023%" y="533" width="0.4211%" height="15" fill="rgb(241,85,17)" fg:x="95118" fg:w="2033"/><text x="19.9523%" y="543.50"></text></g><g><title>link_path_walk.part.0 (96 samples, 0.02%)</title><rect x="20.1426%" y="421" width="0.0199%" height="15" fill="rgb(236,90,42)" fg:x="97244" fg:w="96"/><text x="20.3926%" y="431.50"></text></g><g><title>walk_component (52 samples, 0.01%)</title><rect x="20.1517%" y="405" width="0.0108%" height="15" fill="rgb(249,57,21)" fg:x="97288" fg:w="52"/><text x="20.4017%" y="415.50"></text></g><g><title>path_lookupat (116 samples, 0.02%)</title><rect x="20.1418%" y="437" width="0.0240%" height="15" fill="rgb(243,12,36)" fg:x="97240" fg:w="116"/><text x="20.3918%" y="447.50"></text></g><g><title>filename_lookup (124 samples, 0.03%)</title><rect x="20.1406%" y="453" width="0.0257%" height="15" fill="rgb(253,128,47)" fg:x="97234" fg:w="124"/><text x="20.3906%" y="463.50"></text></g><g><title>__do_sys_newstat (194 samples, 0.04%)</title><rect x="20.1372%" y="485" width="0.0402%" height="15" fill="rgb(207,33,20)" fg:x="97218" fg:w="194"/><text x="20.3872%" y="495.50"></text></g><g><title>vfs_statx (190 samples, 0.04%)</title><rect x="20.1381%" y="469" width="0.0394%" height="15" fill="rgb(233,215,35)" fg:x="97222" fg:w="190"/><text x="20.3881%" y="479.50"></text></g><g><title>do_syscall_64 (199 samples, 0.04%)</title><rect x="20.1368%" y="501" width="0.0412%" height="15" fill="rgb(249,188,52)" fg:x="97216" fg:w="199"/><text x="20.3868%" y="511.50"></text></g><g><title>__GI___xstat (265 samples, 0.05%)</title><rect x="20.1240%" y="533" width="0.0549%" height="15" fill="rgb(225,12,32)" fg:x="97154" fg:w="265"/><text x="20.3740%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (203 samples, 0.04%)</title><rect x="20.1368%" y="517" width="0.0420%" height="15" fill="rgb(247,98,14)" fg:x="97216" fg:w="203"/><text x="20.3868%" y="527.50"></text></g><g><title>filemap_map_pages (77 samples, 0.02%)</title><rect x="20.2122%" y="437" width="0.0159%" height="15" fill="rgb(247,219,48)" fg:x="97580" fg:w="77"/><text x="20.4622%" y="447.50"></text></g><g><title>handle_mm_fault (132 samples, 0.03%)</title><rect x="20.2071%" y="453" width="0.0273%" height="15" fill="rgb(253,60,48)" fg:x="97555" fg:w="132"/><text x="20.4571%" y="463.50"></text></g><g><title>exc_page_fault (157 samples, 0.03%)</title><rect x="20.2021%" y="485" width="0.0325%" height="15" fill="rgb(245,15,52)" fg:x="97531" fg:w="157"/><text x="20.4521%" y="495.50"></text></g><g><title>do_user_addr_fault (157 samples, 0.03%)</title><rect x="20.2021%" y="469" width="0.0325%" height="15" fill="rgb(220,133,28)" fg:x="97531" fg:w="157"/><text x="20.4521%" y="479.50"></text></g><g><title>asm_exc_page_fault (161 samples, 0.03%)</title><rect x="20.2019%" y="501" width="0.0333%" height="15" fill="rgb(217,180,4)" fg:x="97530" fg:w="161"/><text x="20.4519%" y="511.50"></text></g><g><title>__vmalloc_node_range (68 samples, 0.01%)</title><rect x="20.2474%" y="421" width="0.0141%" height="15" fill="rgb(251,24,1)" fg:x="97750" fg:w="68"/><text x="20.4974%" y="431.50"></text></g><g><title>anon_vma_clone (77 samples, 0.02%)</title><rect x="20.3038%" y="389" width="0.0159%" height="15" fill="rgb(212,185,49)" fg:x="98022" fg:w="77"/><text x="20.5538%" y="399.50"></text></g><g><title>anon_vma_fork (109 samples, 0.02%)</title><rect x="20.3034%" y="405" width="0.0226%" height="15" fill="rgb(215,175,22)" fg:x="98020" fg:w="109"/><text x="20.5534%" y="415.50"></text></g><g><title>copy_page_range (100 samples, 0.02%)</title><rect x="20.3262%" y="405" width="0.0207%" height="15" fill="rgb(250,205,14)" fg:x="98130" fg:w="100"/><text x="20.5762%" y="415.50"></text></g><g><title>vm_area_dup (84 samples, 0.02%)</title><rect x="20.3547%" y="405" width="0.0174%" height="15" fill="rgb(225,211,22)" fg:x="98268" fg:w="84"/><text x="20.6047%" y="415.50"></text></g><g><title>kmem_cache_alloc (51 samples, 0.01%)</title><rect x="20.3616%" y="389" width="0.0106%" height="15" fill="rgb(251,179,42)" fg:x="98301" fg:w="51"/><text x="20.6116%" y="399.50"></text></g><g><title>dup_mm (381 samples, 0.08%)</title><rect x="20.2938%" y="421" width="0.0789%" height="15" fill="rgb(208,216,51)" fg:x="97974" fg:w="381"/><text x="20.5438%" y="431.50"></text></g><g><title>kmem_cache_alloc_trace (52 samples, 0.01%)</title><rect x="20.4212%" y="357" width="0.0108%" height="15" fill="rgb(235,36,11)" fg:x="98589" fg:w="52"/><text x="20.6712%" y="367.50"></text></g><g><title>allocate_fake_cpuc (86 samples, 0.02%)</title><rect x="20.4330%" y="325" width="0.0178%" height="15" fill="rgb(213,189,28)" fg:x="98646" fg:w="86"/><text x="20.6830%" y="335.50"></text></g><g><title>kmem_cache_alloc_trace (65 samples, 0.01%)</title><rect x="20.4374%" y="309" width="0.0135%" height="15" fill="rgb(227,203,42)" fg:x="98667" fg:w="65"/><text x="20.6874%" y="319.50"></text></g><g><title>perf_try_init_event (147 samples, 0.03%)</title><rect x="20.4320%" y="357" width="0.0304%" height="15" fill="rgb(244,72,36)" fg:x="98641" fg:w="147"/><text x="20.6820%" y="367.50"></text></g><g><title>x86_pmu_event_init (146 samples, 0.03%)</title><rect x="20.4322%" y="341" width="0.0302%" height="15" fill="rgb(213,53,17)" fg:x="98642" fg:w="146"/><text x="20.6822%" y="351.50"></text></g><g><title>perf_event_alloc (260 samples, 0.05%)</title><rect x="20.4088%" y="373" width="0.0539%" height="15" fill="rgb(207,167,3)" fg:x="98529" fg:w="260"/><text x="20.6588%" y="383.50"></text></g><g><title>inherit_task_group.isra.0 (330 samples, 0.07%)</title><rect x="20.3945%" y="405" width="0.0684%" height="15" fill="rgb(216,98,30)" fg:x="98460" fg:w="330"/><text x="20.6445%" y="415.50"></text></g><g><title>inherit_event.constprop.0 (322 samples, 0.07%)</title><rect x="20.3962%" y="389" width="0.0667%" height="15" fill="rgb(236,123,15)" fg:x="98468" fg:w="322"/><text x="20.6462%" y="399.50"></text></g><g><title>perf_event_init_task (354 samples, 0.07%)</title><rect x="20.3933%" y="421" width="0.0733%" height="15" fill="rgb(248,81,50)" fg:x="98454" fg:w="354"/><text x="20.6433%" y="431.50"></text></g><g><title>copy_process (1,153 samples, 0.24%)</title><rect x="20.2358%" y="437" width="0.2388%" height="15" fill="rgb(214,120,4)" fg:x="97694" fg:w="1153"/><text x="20.4858%" y="447.50"></text></g><g><title>__do_sys_clone (1,245 samples, 0.26%)</title><rect x="20.2354%" y="469" width="0.2579%" height="15" fill="rgb(208,179,34)" fg:x="97692" fg:w="1245"/><text x="20.4854%" y="479.50"></text></g><g><title>kernel_clone (1,243 samples, 0.26%)</title><rect x="20.2358%" y="453" width="0.2575%" height="15" fill="rgb(227,140,7)" fg:x="97694" fg:w="1243"/><text x="20.4858%" y="463.50"></text></g><g><title>wake_up_new_task (87 samples, 0.02%)</title><rect x="20.4753%" y="437" width="0.0180%" height="15" fill="rgb(214,22,6)" fg:x="98850" fg:w="87"/><text x="20.7253%" y="447.50"></text></g><g><title>do_syscall_64 (1,249 samples, 0.26%)</title><rect x="20.2352%" y="485" width="0.2587%" height="15" fill="rgb(207,137,27)" fg:x="97691" fg:w="1249"/><text x="20.4852%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,250 samples, 0.26%)</title><rect x="20.2352%" y="501" width="0.2589%" height="15" fill="rgb(210,8,46)" fg:x="97691" fg:w="1250"/><text x="20.4852%" y="511.50"></text></g><g><title>handle_mm_fault (146 samples, 0.03%)</title><rect x="20.5267%" y="405" width="0.0302%" height="15" fill="rgb(240,16,54)" fg:x="99098" fg:w="146"/><text x="20.7767%" y="415.50"></text></g><g><title>exc_page_fault (213 samples, 0.04%)</title><rect x="20.5142%" y="437" width="0.0441%" height="15" fill="rgb(211,209,29)" fg:x="99038" fg:w="213"/><text x="20.7642%" y="447.50"></text></g><g><title>do_user_addr_fault (211 samples, 0.04%)</title><rect x="20.5146%" y="421" width="0.0437%" height="15" fill="rgb(226,228,24)" fg:x="99040" fg:w="211"/><text x="20.7646%" y="431.50"></text></g><g><title>__put_user_nocheck_4 (273 samples, 0.06%)</title><rect x="20.5020%" y="469" width="0.0565%" height="15" fill="rgb(222,84,9)" fg:x="98979" fg:w="273"/><text x="20.7520%" y="479.50"></text></g><g><title>asm_exc_page_fault (252 samples, 0.05%)</title><rect x="20.5064%" y="453" width="0.0522%" height="15" fill="rgb(234,203,30)" fg:x="99000" fg:w="252"/><text x="20.7564%" y="463.50"></text></g><g><title>__mmdrop (70 samples, 0.01%)</title><rect x="20.5842%" y="453" width="0.0145%" height="15" fill="rgb(238,109,14)" fg:x="99376" fg:w="70"/><text x="20.8342%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (4,905 samples, 1.02%)</title><rect x="20.5987%" y="453" width="1.0160%" height="15" fill="rgb(233,206,34)" fg:x="99446" fg:w="4905"/><text x="20.8487%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,751 samples, 0.98%)</title><rect x="20.6306%" y="437" width="0.9841%" height="15" fill="rgb(220,167,47)" fg:x="99600" fg:w="4751"/><text x="20.8806%" y="447.50"></text></g><g><title>native_write_msr (4,704 samples, 0.97%)</title><rect x="20.6404%" y="421" width="0.9744%" height="15" fill="rgb(238,105,10)" fg:x="99647" fg:w="4704"/><text x="20.8904%" y="431.50"></text></g><g><title>asm_sysvec_irq_work (58 samples, 0.01%)</title><rect x="21.6164%" y="453" width="0.0120%" height="15" fill="rgb(213,227,17)" fg:x="104359" fg:w="58"/><text x="21.8664%" y="463.50"></text></g><g><title>schedule_tail (5,468 samples, 1.13%)</title><rect x="20.5016%" y="485" width="1.1326%" height="15" fill="rgb(217,132,38)" fg:x="98977" fg:w="5468"/><text x="20.7516%" y="495.50"></text></g><g><title>finish_task_switch (5,178 samples, 1.07%)</title><rect x="20.5617%" y="469" width="1.0725%" height="15" fill="rgb(242,146,4)" fg:x="99267" fg:w="5178"/><text x="20.8117%" y="479.50"></text></g><g><title>ret_from_fork (5,509 samples, 1.14%)</title><rect x="20.4983%" y="501" width="1.1411%" height="15" fill="rgb(212,61,9)" fg:x="98961" fg:w="5509"/><text x="20.7483%" y="511.50"></text></g><g><title>arch_fork (6,973 samples, 1.44%)</title><rect x="20.1955%" y="517" width="1.4444%" height="15" fill="rgb(247,126,22)" fg:x="97499" fg:w="6973"/><text x="20.4455%" y="527.50"></text></g><g><title>handle_mm_fault (93 samples, 0.02%)</title><rect x="21.6423%" y="469" width="0.0193%" height="15" fill="rgb(220,196,2)" fg:x="104484" fg:w="93"/><text x="21.8923%" y="479.50"></text></g><g><title>wp_page_copy (71 samples, 0.01%)</title><rect x="21.6468%" y="453" width="0.0147%" height="15" fill="rgb(208,46,4)" fg:x="104506" fg:w="71"/><text x="21.8968%" y="463.50"></text></g><g><title>exc_page_fault (105 samples, 0.02%)</title><rect x="21.6400%" y="501" width="0.0217%" height="15" fill="rgb(252,104,46)" fg:x="104473" fg:w="105"/><text x="21.8900%" y="511.50"></text></g><g><title>do_user_addr_fault (105 samples, 0.02%)</title><rect x="21.6400%" y="485" width="0.0217%" height="15" fill="rgb(237,152,48)" fg:x="104473" fg:w="105"/><text x="21.8900%" y="495.50"></text></g><g><title>asm_exc_page_fault (109 samples, 0.02%)</title><rect x="21.6398%" y="517" width="0.0226%" height="15" fill="rgb(221,59,37)" fg:x="104472" fg:w="109"/><text x="21.8898%" y="527.50"></text></g><g><title>__libc_fork (7,182 samples, 1.49%)</title><rect x="20.1795%" y="533" width="1.4876%" height="15" fill="rgb(209,202,51)" fg:x="97422" fg:w="7182"/><text x="20.4295%" y="543.50"></text></g><g><title>[dash] (9,554 samples, 1.98%)</title><rect x="19.6981%" y="549" width="1.9790%" height="15" fill="rgb(228,81,30)" fg:x="95098" fg:w="9554"/><text x="19.9481%" y="559.50">[..</text></g><g><title>__GI___close (55 samples, 0.01%)</title><rect x="21.6771%" y="549" width="0.0114%" height="15" fill="rgb(227,42,39)" fg:x="104652" fg:w="55"/><text x="21.9271%" y="559.50"></text></g><g><title>[dash] (9,676 samples, 2.00%)</title><rect x="19.6954%" y="565" width="2.0042%" height="15" fill="rgb(221,26,2)" fg:x="95085" fg:w="9676"/><text x="19.9454%" y="575.50">[..</text></g><g><title>[dash] (9,719 samples, 2.01%)</title><rect x="19.6942%" y="581" width="2.0131%" height="15" fill="rgb(254,61,31)" fg:x="95079" fg:w="9719"/><text x="19.9442%" y="591.50">[..</text></g><g><title>[dash] (9,763 samples, 2.02%)</title><rect x="19.6923%" y="597" width="2.0223%" height="15" fill="rgb(222,173,38)" fg:x="95070" fg:w="9763"/><text x="19.9423%" y="607.50">[..</text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="21.7173%" y="581" width="0.0101%" height="15" fill="rgb(218,50,12)" fg:x="104846" fg:w="49"/><text x="21.9673%" y="591.50"></text></g><g><title>__GI___wait4 (63 samples, 0.01%)</title><rect x="21.7152%" y="597" width="0.0130%" height="15" fill="rgb(223,88,40)" fg:x="104836" fg:w="63"/><text x="21.9652%" y="607.50"></text></g><g><title>[dash] (9,905 samples, 2.05%)</title><rect x="19.6882%" y="613" width="2.0517%" height="15" fill="rgb(237,54,19)" fg:x="95050" fg:w="9905"/><text x="19.9382%" y="623.50">[..</text></g><g><title>anon_vma_fork (88 samples, 0.02%)</title><rect x="21.7860%" y="485" width="0.0182%" height="15" fill="rgb(251,129,25)" fg:x="105178" fg:w="88"/><text x="22.0360%" y="495.50"></text></g><g><title>copy_page_range (125 samples, 0.03%)</title><rect x="21.8043%" y="485" width="0.0259%" height="15" fill="rgb(238,97,19)" fg:x="105266" fg:w="125"/><text x="22.0543%" y="495.50"></text></g><g><title>vm_area_dup (80 samples, 0.02%)</title><rect x="21.8416%" y="485" width="0.0166%" height="15" fill="rgb(240,169,18)" fg:x="105446" fg:w="80"/><text x="22.0916%" y="495.50"></text></g><g><title>kmem_cache_alloc (56 samples, 0.01%)</title><rect x="21.8465%" y="469" width="0.0116%" height="15" fill="rgb(230,187,49)" fg:x="105470" fg:w="56"/><text x="22.0965%" y="479.50"></text></g><g><title>dup_mm (383 samples, 0.08%)</title><rect x="21.7796%" y="501" width="0.0793%" height="15" fill="rgb(209,44,26)" fg:x="105147" fg:w="383"/><text x="22.0296%" y="511.50"></text></g><g><title>perf_event_alloc (87 samples, 0.02%)</title><rect x="21.8766%" y="453" width="0.0180%" height="15" fill="rgb(244,0,6)" fg:x="105615" fg:w="87"/><text x="22.1266%" y="463.50"></text></g><g><title>inherit_task_group.isra.0 (111 samples, 0.02%)</title><rect x="21.8718%" y="485" width="0.0230%" height="15" fill="rgb(248,18,21)" fg:x="105592" fg:w="111"/><text x="22.1218%" y="495.50"></text></g><g><title>inherit_event.constprop.0 (107 samples, 0.02%)</title><rect x="21.8726%" y="469" width="0.0222%" height="15" fill="rgb(245,180,19)" fg:x="105596" fg:w="107"/><text x="22.1226%" y="479.50"></text></g><g><title>perf_event_init_task (121 samples, 0.03%)</title><rect x="21.8708%" y="501" width="0.0251%" height="15" fill="rgb(252,118,36)" fg:x="105587" fg:w="121"/><text x="22.1208%" y="511.50"></text></g><g><title>copy_process (707 samples, 0.15%)</title><rect x="21.7554%" y="517" width="0.1464%" height="15" fill="rgb(210,224,19)" fg:x="105030" fg:w="707"/><text x="22.0054%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (753 samples, 0.16%)</title><rect x="21.7554%" y="581" width="0.1560%" height="15" fill="rgb(218,30,24)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="591.50"></text></g><g><title>do_syscall_64 (753 samples, 0.16%)</title><rect x="21.7554%" y="565" width="0.1560%" height="15" fill="rgb(219,75,50)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="575.50"></text></g><g><title>__do_sys_clone (753 samples, 0.16%)</title><rect x="21.7554%" y="549" width="0.1560%" height="15" fill="rgb(234,72,50)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="559.50"></text></g><g><title>kernel_clone (753 samples, 0.16%)</title><rect x="21.7554%" y="533" width="0.1560%" height="15" fill="rgb(219,100,48)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="543.50"></text></g><g><title>alloc_pages_vma (53 samples, 0.01%)</title><rect x="21.9312%" y="453" width="0.0110%" height="15" fill="rgb(253,5,41)" fg:x="105879" fg:w="53"/><text x="22.1812%" y="463.50"></text></g><g><title>exc_page_fault (196 samples, 0.04%)</title><rect x="21.9188%" y="517" width="0.0406%" height="15" fill="rgb(247,181,11)" fg:x="105819" fg:w="196"/><text x="22.1688%" y="527.50"></text></g><g><title>do_user_addr_fault (196 samples, 0.04%)</title><rect x="21.9188%" y="501" width="0.0406%" height="15" fill="rgb(222,223,25)" fg:x="105819" fg:w="196"/><text x="22.1688%" y="511.50"></text></g><g><title>handle_mm_fault (177 samples, 0.04%)</title><rect x="21.9228%" y="485" width="0.0367%" height="15" fill="rgb(214,198,28)" fg:x="105838" fg:w="177"/><text x="22.1728%" y="495.50"></text></g><g><title>wp_page_copy (150 samples, 0.03%)</title><rect x="21.9283%" y="469" width="0.0311%" height="15" fill="rgb(230,46,43)" fg:x="105865" fg:w="150"/><text x="22.1783%" y="479.50"></text></g><g><title>asm_exc_page_fault (208 samples, 0.04%)</title><rect x="21.9167%" y="533" width="0.0431%" height="15" fill="rgb(233,65,53)" fg:x="105809" fg:w="208"/><text x="22.1667%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (214 samples, 0.04%)</title><rect x="21.9157%" y="549" width="0.0443%" height="15" fill="rgb(221,121,27)" fg:x="105804" fg:w="214"/><text x="22.1657%" y="559.50"></text></g><g><title>__mmdrop (52 samples, 0.01%)</title><rect x="21.9787%" y="533" width="0.0108%" height="15" fill="rgb(247,70,47)" fg:x="106108" fg:w="52"/><text x="22.2287%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (2,329 samples, 0.48%)</title><rect x="21.9894%" y="533" width="0.4824%" height="15" fill="rgb(228,85,35)" fg:x="106160" fg:w="2329"/><text x="22.2394%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,245 samples, 0.47%)</title><rect x="22.0068%" y="517" width="0.4650%" height="15" fill="rgb(209,50,18)" fg:x="106244" fg:w="2245"/><text x="22.2568%" y="527.50"></text></g><g><title>native_write_msr (2,227 samples, 0.46%)</title><rect x="22.0106%" y="501" width="0.4613%" height="15" fill="rgb(250,19,35)" fg:x="106262" fg:w="2227"/><text x="22.2606%" y="511.50"></text></g><g><title>schedule_tail (2,752 samples, 0.57%)</title><rect x="21.9147%" y="565" width="0.5700%" height="15" fill="rgb(253,107,29)" fg:x="105799" fg:w="2752"/><text x="22.1647%" y="575.50"></text></g><g><title>finish_task_switch (2,529 samples, 0.52%)</title><rect x="21.9609%" y="549" width="0.5238%" height="15" fill="rgb(252,179,29)" fg:x="106022" fg:w="2529"/><text x="22.2109%" y="559.50"></text></g><g><title>ret_from_fork (2,773 samples, 0.57%)</title><rect x="21.9126%" y="581" width="0.5744%" height="15" fill="rgb(238,194,6)" fg:x="105789" fg:w="2773"/><text x="22.1626%" y="591.50"></text></g><g><title>arch_fork (3,592 samples, 0.74%)</title><rect x="21.7436%" y="597" width="0.7440%" height="15" fill="rgb(238,164,29)" fg:x="104973" fg:w="3592"/><text x="21.9936%" y="607.50"></text></g><g><title>__libc_fork (3,652 samples, 0.76%)</title><rect x="21.7399%" y="613" width="0.7565%" height="15" fill="rgb(224,25,9)" fg:x="104955" fg:w="3652"/><text x="21.9899%" y="623.50"></text></g><g><title>[dash] (13,581 samples, 2.81%)</title><rect x="19.6855%" y="629" width="2.8131%" height="15" fill="rgb(244,153,23)" fg:x="95037" fg:w="13581"/><text x="19.9355%" y="639.50">[d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="22.5013%" y="613" width="0.0101%" height="15" fill="rgb(212,203,14)" fg:x="108631" fg:w="49"/><text x="22.7513%" y="623.50"></text></g><g><title>__GI_pipe (50 samples, 0.01%)</title><rect x="22.5013%" y="629" width="0.0104%" height="15" fill="rgb(220,164,20)" fg:x="108631" fg:w="50"/><text x="22.7513%" y="639.50"></text></g><g><title>[dash] (13,692 samples, 2.84%)</title><rect x="19.6826%" y="645" width="2.8361%" height="15" fill="rgb(222,203,48)" fg:x="95023" fg:w="13692"/><text x="19.9326%" y="655.50">[d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="22.5195%" y="629" width="0.0108%" height="15" fill="rgb(215,159,22)" fg:x="108719" fg:w="52"/><text x="22.7695%" y="639.50"></text></g><g><title>__GI___close (56 samples, 0.01%)</title><rect x="22.5191%" y="645" width="0.0116%" height="15" fill="rgb(216,183,47)" fg:x="108717" fg:w="56"/><text x="22.7691%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (225 samples, 0.05%)</title><rect x="22.5524%" y="485" width="0.0466%" height="15" fill="rgb(229,195,25)" fg:x="108878" fg:w="225"/><text x="22.8024%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (222 samples, 0.05%)</title><rect x="22.5531%" y="469" width="0.0460%" height="15" fill="rgb(224,132,51)" fg:x="108881" fg:w="222"/><text x="22.8031%" y="479.50"></text></g><g><title>native_write_msr (220 samples, 0.05%)</title><rect x="22.5535%" y="453" width="0.0456%" height="15" fill="rgb(240,63,7)" fg:x="108883" fg:w="220"/><text x="22.8035%" y="463.50"></text></g><g><title>finish_task_switch (246 samples, 0.05%)</title><rect x="22.5504%" y="501" width="0.0510%" height="15" fill="rgb(249,182,41)" fg:x="108868" fg:w="246"/><text x="22.8004%" y="511.50"></text></g><g><title>schedule (305 samples, 0.06%)</title><rect x="22.5425%" y="533" width="0.0632%" height="15" fill="rgb(243,47,26)" fg:x="108830" fg:w="305"/><text x="22.7925%" y="543.50"></text></g><g><title>__schedule (300 samples, 0.06%)</title><rect x="22.5435%" y="517" width="0.0621%" height="15" fill="rgb(233,48,2)" fg:x="108835" fg:w="300"/><text x="22.7935%" y="527.50"></text></g><g><title>new_sync_read (339 samples, 0.07%)</title><rect x="22.5363%" y="565" width="0.0702%" height="15" fill="rgb(244,165,34)" fg:x="108800" fg:w="339"/><text x="22.7863%" y="575.50"></text></g><g><title>pipe_read (338 samples, 0.07%)</title><rect x="22.5365%" y="549" width="0.0700%" height="15" fill="rgb(207,89,7)" fg:x="108801" fg:w="338"/><text x="22.7865%" y="559.50"></text></g><g><title>do_syscall_64 (359 samples, 0.07%)</title><rect x="22.5330%" y="613" width="0.0744%" height="15" fill="rgb(244,117,36)" fg:x="108784" fg:w="359"/><text x="22.7830%" y="623.50"></text></g><g><title>ksys_read (354 samples, 0.07%)</title><rect x="22.5340%" y="597" width="0.0733%" height="15" fill="rgb(226,144,34)" fg:x="108789" fg:w="354"/><text x="22.7840%" y="607.50"></text></g><g><title>vfs_read (348 samples, 0.07%)</title><rect x="22.5352%" y="581" width="0.0721%" height="15" fill="rgb(213,23,19)" fg:x="108795" fg:w="348"/><text x="22.7852%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (411 samples, 0.09%)</title><rect x="22.5328%" y="629" width="0.0851%" height="15" fill="rgb(217,75,12)" fg:x="108783" fg:w="411"/><text x="22.7828%" y="639.50"></text></g><g><title>syscall_exit_to_user_mode (51 samples, 0.01%)</title><rect x="22.6073%" y="613" width="0.0106%" height="15" fill="rgb(224,159,17)" fg:x="109143" fg:w="51"/><text x="22.8573%" y="623.50"></text></g><g><title>exit_to_user_mode_prepare (51 samples, 0.01%)</title><rect x="22.6073%" y="597" width="0.0106%" height="15" fill="rgb(217,118,1)" fg:x="109143" fg:w="51"/><text x="22.8573%" y="607.50"></text></g><g><title>__GI___libc_read (440 samples, 0.09%)</title><rect x="22.5321%" y="645" width="0.0911%" height="15" fill="rgb(232,180,48)" fg:x="108780" fg:w="440"/><text x="22.7821%" y="655.50"></text></g><g><title>bprm_execve (53 samples, 0.01%)</title><rect x="22.6266%" y="565" width="0.0110%" height="15" fill="rgb(230,27,33)" fg:x="109236" fg:w="53"/><text x="22.8766%" y="575.50"></text></g><g><title>__GI_execve (70 samples, 0.01%)</title><rect x="22.6264%" y="645" width="0.0145%" height="15" fill="rgb(205,31,21)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="22.6264%" y="629" width="0.0145%" height="15" fill="rgb(253,59,4)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="639.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="22.6264%" y="613" width="0.0145%" height="15" fill="rgb(224,201,9)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="623.50"></text></g><g><title>__x64_sys_execve (70 samples, 0.01%)</title><rect x="22.6264%" y="597" width="0.0145%" height="15" fill="rgb(229,206,30)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="607.50"></text></g><g><title>do_execveat_common (70 samples, 0.01%)</title><rect x="22.6264%" y="581" width="0.0145%" height="15" fill="rgb(212,67,47)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="591.50"></text></g><g><title>[dash] (14,313 samples, 2.96%)</title><rect x="19.6776%" y="661" width="2.9647%" height="15" fill="rgb(211,96,50)" fg:x="94999" fg:w="14313"/><text x="19.9276%" y="671.50">[da..</text></g><g><title>[dash] (14,336 samples, 2.97%)</title><rect x="19.6753%" y="677" width="2.9695%" height="15" fill="rgb(252,114,18)" fg:x="94988" fg:w="14336"/><text x="19.9253%" y="687.50">[da..</text></g><g><title>[dash] (14,363 samples, 2.98%)</title><rect x="19.6726%" y="693" width="2.9751%" height="15" fill="rgb(223,58,37)" fg:x="94975" fg:w="14363"/><text x="19.9226%" y="703.50">[da..</text></g><g><title>[dash] (14,371 samples, 2.98%)</title><rect x="19.6716%" y="709" width="2.9767%" height="15" fill="rgb(237,70,4)" fg:x="94970" fg:w="14371"/><text x="19.9216%" y="719.50">[da..</text></g><g><title>[dash] (14,424 samples, 2.99%)</title><rect x="19.6708%" y="725" width="2.9877%" height="15" fill="rgb(244,85,46)" fg:x="94966" fg:w="14424"/><text x="19.9208%" y="735.50">[da..</text></g><g><title>[dash] (14,427 samples, 2.99%)</title><rect x="19.6704%" y="741" width="2.9883%" height="15" fill="rgb(223,39,52)" fg:x="94964" fg:w="14427"/><text x="19.9204%" y="751.50">[da..</text></g><g><title>__GI__exit (91 samples, 0.02%)</title><rect x="22.6595%" y="741" width="0.0188%" height="15" fill="rgb(218,200,14)" fg:x="109395" fg:w="91"/><text x="22.9095%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="22.6606%" y="725" width="0.0178%" height="15" fill="rgb(208,171,16)" fg:x="109400" fg:w="86"/><text x="22.9106%" y="735.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="22.6606%" y="709" width="0.0178%" height="15" fill="rgb(234,200,18)" fg:x="109400" fg:w="86"/><text x="22.9106%" y="719.50"></text></g><g><title>__x64_sys_exit_group (84 samples, 0.02%)</title><rect x="22.6610%" y="693" width="0.0174%" height="15" fill="rgb(228,45,11)" fg:x="109402" fg:w="84"/><text x="22.9110%" y="703.50"></text></g><g><title>do_group_exit (82 samples, 0.02%)</title><rect x="22.6614%" y="677" width="0.0170%" height="15" fill="rgb(237,182,11)" fg:x="109404" fg:w="82"/><text x="22.9114%" y="687.50"></text></g><g><title>do_exit (75 samples, 0.02%)</title><rect x="22.6628%" y="661" width="0.0155%" height="15" fill="rgb(241,175,49)" fg:x="109411" fg:w="75"/><text x="22.9128%" y="671.50"></text></g><g><title>[dash] (14,527 samples, 3.01%)</title><rect x="19.6702%" y="757" width="3.0090%" height="15" fill="rgb(247,38,35)" fg:x="94963" fg:w="14527"/><text x="19.9202%" y="767.50">[da..</text></g><g><title>__libc_start_main (14,548 samples, 3.01%)</title><rect x="19.6697%" y="789" width="3.0134%" height="15" fill="rgb(228,39,49)" fg:x="94961" fg:w="14548"/><text x="19.9197%" y="799.50">__l..</text></g><g><title>[dash] (14,548 samples, 3.01%)</title><rect x="19.6697%" y="773" width="3.0134%" height="15" fill="rgb(226,101,26)" fg:x="94961" fg:w="14548"/><text x="19.9197%" y="783.50">[da..</text></g><g><title>[dash] (14,562 samples, 3.02%)</title><rect x="19.6671%" y="805" width="3.0163%" height="15" fill="rgb(206,141,19)" fg:x="94948" fg:w="14562"/><text x="19.9171%" y="815.50">[da..</text></g><g><title>[ld-2.31.so] (96 samples, 0.02%)</title><rect x="22.6906%" y="741" width="0.0199%" height="15" fill="rgb(211,200,13)" fg:x="109545" fg:w="96"/><text x="22.9406%" y="751.50"></text></g><g><title>_dl_start_final (100 samples, 0.02%)</title><rect x="22.6906%" y="773" width="0.0207%" height="15" fill="rgb(241,121,6)" fg:x="109545" fg:w="100"/><text x="22.9406%" y="783.50"></text></g><g><title>_dl_sysdep_start (100 samples, 0.02%)</title><rect x="22.6906%" y="757" width="0.0207%" height="15" fill="rgb(234,221,29)" fg:x="109545" fg:w="100"/><text x="22.9406%" y="767.50"></text></g><g><title>_dl_start (107 samples, 0.02%)</title><rect x="22.6906%" y="789" width="0.0222%" height="15" fill="rgb(229,136,5)" fg:x="109545" fg:w="107"/><text x="22.9406%" y="799.50"></text></g><g><title>_start (110 samples, 0.02%)</title><rect x="22.6906%" y="805" width="0.0228%" height="15" fill="rgb(238,36,11)" fg:x="109545" fg:w="110"/><text x="22.9406%" y="815.50"></text></g><g><title>asm_exc_page_fault (303 samples, 0.06%)</title><rect x="22.7134%" y="805" width="0.0628%" height="15" fill="rgb(251,55,41)" fg:x="109655" fg:w="303"/><text x="22.9634%" y="815.50"></text></g><g><title>kmem_cache_free (66 samples, 0.01%)</title><rect x="22.8138%" y="629" width="0.0137%" height="15" fill="rgb(242,34,40)" fg:x="110140" fg:w="66"/><text x="23.0638%" y="639.50"></text></g><g><title>unlink_anon_vmas (135 samples, 0.03%)</title><rect x="22.8002%" y="645" width="0.0280%" height="15" fill="rgb(215,42,17)" fg:x="110074" fg:w="135"/><text x="23.0502%" y="655.50"></text></g><g><title>free_pgtables (176 samples, 0.04%)</title><rect x="22.7975%" y="661" width="0.0365%" height="15" fill="rgb(207,44,46)" fg:x="110061" fg:w="176"/><text x="23.0475%" y="671.50"></text></g><g><title>kmem_cache_free (73 samples, 0.02%)</title><rect x="22.8366%" y="645" width="0.0151%" height="15" fill="rgb(211,206,28)" fg:x="110250" fg:w="73"/><text x="23.0866%" y="655.50"></text></g><g><title>remove_vma (84 samples, 0.02%)</title><rect x="22.8346%" y="661" width="0.0174%" height="15" fill="rgb(237,167,16)" fg:x="110240" fg:w="84"/><text x="23.0846%" y="671.50"></text></g><g><title>tlb_finish_mmu (103 samples, 0.02%)</title><rect x="22.8520%" y="661" width="0.0213%" height="15" fill="rgb(233,66,6)" fg:x="110324" fg:w="103"/><text x="23.1020%" y="671.50"></text></g><g><title>release_pages (86 samples, 0.02%)</title><rect x="22.8555%" y="645" width="0.0178%" height="15" fill="rgb(246,123,29)" fg:x="110341" fg:w="86"/><text x="23.1055%" y="655.50"></text></g><g><title>unmap_page_range (93 samples, 0.02%)</title><rect x="22.8739%" y="645" width="0.0193%" height="15" fill="rgb(209,62,40)" fg:x="110430" fg:w="93"/><text x="23.1239%" y="655.50"></text></g><g><title>exit_mmap (471 samples, 0.10%)</title><rect x="22.7960%" y="677" width="0.0976%" height="15" fill="rgb(218,4,25)" fg:x="110054" fg:w="471"/><text x="23.0460%" y="687.50"></text></g><g><title>unmap_vmas (98 samples, 0.02%)</title><rect x="22.8733%" y="661" width="0.0203%" height="15" fill="rgb(253,91,49)" fg:x="110427" fg:w="98"/><text x="23.1233%" y="671.50"></text></g><g><title>mmput (474 samples, 0.10%)</title><rect x="22.7958%" y="693" width="0.0982%" height="15" fill="rgb(228,155,29)" fg:x="110053" fg:w="474"/><text x="23.0458%" y="703.50"></text></g><g><title>begin_new_exec (570 samples, 0.12%)</title><rect x="22.7844%" y="709" width="0.1181%" height="15" fill="rgb(243,57,37)" fg:x="109998" fg:w="570"/><text x="23.0344%" y="719.50"></text></g><g><title>load_elf_binary (602 samples, 0.12%)</title><rect x="22.7817%" y="725" width="0.1247%" height="15" fill="rgb(244,167,17)" fg:x="109985" fg:w="602"/><text x="23.0317%" y="735.50"></text></g><g><title>bprm_execve (606 samples, 0.13%)</title><rect x="22.7813%" y="741" width="0.1255%" height="15" fill="rgb(207,181,38)" fg:x="109983" fg:w="606"/><text x="23.0313%" y="751.50"></text></g><g><title>__x64_sys_execve (610 samples, 0.13%)</title><rect x="22.7811%" y="773" width="0.1264%" height="15" fill="rgb(211,8,23)" fg:x="109982" fg:w="610"/><text x="23.0311%" y="783.50"></text></g><g><title>do_execveat_common (610 samples, 0.13%)</title><rect x="22.7811%" y="757" width="0.1264%" height="15" fill="rgb(235,11,44)" fg:x="109982" fg:w="610"/><text x="23.0311%" y="767.50"></text></g><g><title>kmem_cache_free (55 samples, 0.01%)</title><rect x="22.9311%" y="661" width="0.0114%" height="15" fill="rgb(248,18,52)" fg:x="110706" fg:w="55"/><text x="23.1811%" y="671.50"></text></g><g><title>unlink_anon_vmas (128 samples, 0.03%)</title><rect x="22.9168%" y="677" width="0.0265%" height="15" fill="rgb(208,4,7)" fg:x="110637" fg:w="128"/><text x="23.1668%" y="687.50"></text></g><g><title>free_pgtables (167 samples, 0.03%)</title><rect x="22.9149%" y="693" width="0.0346%" height="15" fill="rgb(240,17,39)" fg:x="110628" fg:w="167"/><text x="23.1649%" y="703.50"></text></g><g><title>lru_add_drain_cpu (59 samples, 0.01%)</title><rect x="22.9499%" y="677" width="0.0122%" height="15" fill="rgb(207,170,3)" fg:x="110797" fg:w="59"/><text x="23.1999%" y="687.50"></text></g><g><title>pagevec_lru_move_fn (57 samples, 0.01%)</title><rect x="22.9503%" y="661" width="0.0118%" height="15" fill="rgb(236,100,52)" fg:x="110799" fg:w="57"/><text x="23.2003%" y="671.50"></text></g><g><title>lru_add_drain (62 samples, 0.01%)</title><rect x="22.9497%" y="693" width="0.0128%" height="15" fill="rgb(246,78,51)" fg:x="110796" fg:w="62"/><text x="23.1997%" y="703.50"></text></g><g><title>kmem_cache_free (66 samples, 0.01%)</title><rect x="22.9644%" y="677" width="0.0137%" height="15" fill="rgb(211,17,15)" fg:x="110867" fg:w="66"/><text x="23.2144%" y="687.50"></text></g><g><title>remove_vma (75 samples, 0.02%)</title><rect x="22.9628%" y="693" width="0.0155%" height="15" fill="rgb(209,59,46)" fg:x="110859" fg:w="75"/><text x="23.2128%" y="703.50"></text></g><g><title>tlb_finish_mmu (106 samples, 0.02%)</title><rect x="22.9783%" y="693" width="0.0220%" height="15" fill="rgb(210,92,25)" fg:x="110934" fg:w="106"/><text x="23.2283%" y="703.50"></text></g><g><title>release_pages (86 samples, 0.02%)</title><rect x="22.9825%" y="677" width="0.0178%" height="15" fill="rgb(238,174,52)" fg:x="110954" fg:w="86"/><text x="23.2325%" y="687.50"></text></g><g><title>page_remove_rmap (101 samples, 0.02%)</title><rect x="23.0626%" y="661" width="0.0209%" height="15" fill="rgb(230,73,7)" fg:x="111341" fg:w="101"/><text x="23.3126%" y="671.50"></text></g><g><title>unmap_page_range (428 samples, 0.09%)</title><rect x="23.0011%" y="677" width="0.0887%" height="15" fill="rgb(243,124,40)" fg:x="111044" fg:w="428"/><text x="23.2511%" y="687.50"></text></g><g><title>exit_mmap (871 samples, 0.18%)</title><rect x="22.9139%" y="709" width="0.1804%" height="15" fill="rgb(244,170,11)" fg:x="110623" fg:w="871"/><text x="23.1639%" y="719.50"></text></g><g><title>unmap_vmas (453 samples, 0.09%)</title><rect x="23.0005%" y="693" width="0.0938%" height="15" fill="rgb(207,114,54)" fg:x="111041" fg:w="453"/><text x="23.2505%" y="703.50"></text></g><g><title>mmput (887 samples, 0.18%)</title><rect x="22.9124%" y="725" width="0.1837%" height="15" fill="rgb(205,42,20)" fg:x="110616" fg:w="887"/><text x="23.1624%" y="735.50"></text></g><g><title>__wake_up_common_lock (51 samples, 0.01%)</title><rect x="23.1067%" y="677" width="0.0106%" height="15" fill="rgb(230,30,28)" fg:x="111554" fg:w="51"/><text x="23.3567%" y="687.50"></text></g><g><title>pipe_release (58 samples, 0.01%)</title><rect x="23.1063%" y="693" width="0.0120%" height="15" fill="rgb(205,73,54)" fg:x="111552" fg:w="58"/><text x="23.3563%" y="703.50"></text></g><g><title>__fput (73 samples, 0.02%)</title><rect x="23.1038%" y="709" width="0.0151%" height="15" fill="rgb(254,227,23)" fg:x="111540" fg:w="73"/><text x="23.3538%" y="719.50"></text></g><g><title>task_work_run (76 samples, 0.02%)</title><rect x="23.1036%" y="725" width="0.0157%" height="15" fill="rgb(228,202,34)" fg:x="111539" fg:w="76"/><text x="23.3536%" y="735.50"></text></g><g><title>__x64_sys_exit_group (1,025 samples, 0.21%)</title><rect x="22.9075%" y="773" width="0.2123%" height="15" fill="rgb(222,225,37)" fg:x="110592" fg:w="1025"/><text x="23.1575%" y="783.50"></text></g><g><title>do_group_exit (1,025 samples, 0.21%)</title><rect x="22.9075%" y="757" width="0.2123%" height="15" fill="rgb(221,14,54)" fg:x="110592" fg:w="1025"/><text x="23.1575%" y="767.50"></text></g><g><title>do_exit (1,025 samples, 0.21%)</title><rect x="22.9075%" y="741" width="0.2123%" height="15" fill="rgb(254,102,2)" fg:x="110592" fg:w="1025"/><text x="23.1575%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,669 samples, 0.35%)</title><rect x="22.7761%" y="805" width="0.3457%" height="15" fill="rgb(232,104,17)" fg:x="109958" fg:w="1669"/><text x="23.0261%" y="815.50"></text></g><g><title>do_syscall_64 (1,666 samples, 0.35%)</title><rect x="22.7768%" y="789" width="0.3451%" height="15" fill="rgb(250,220,14)" fg:x="109961" fg:w="1666"/><text x="23.0268%" y="799.50"></text></g><g><title>c++ (16,765 samples, 3.47%)</title><rect x="19.6615%" y="821" width="3.4726%" height="15" fill="rgb(241,158,9)" fg:x="94921" fg:w="16765"/><text x="19.9115%" y="831.50">c++</text></g><g><title>[perf-987172.map] (526 samples, 0.11%)</title><rect x="23.1368%" y="805" width="0.1090%" height="15" fill="rgb(246,9,43)" fg:x="111699" fg:w="526"/><text x="23.3868%" y="815.50"></text></g><g><title>find-action-loo (544 samples, 0.11%)</title><rect x="23.1357%" y="821" width="0.1127%" height="15" fill="rgb(206,73,33)" fg:x="111694" fg:w="544"/><text x="23.3857%" y="831.50"></text></g><g><title>globbing_pool-0 (58 samples, 0.01%)</title><rect x="23.2484%" y="821" width="0.0120%" height="15" fill="rgb(222,79,8)" fg:x="112238" fg:w="58"/><text x="23.4984%" y="831.50"></text></g><g><title>[perf-987172.map] (212 samples, 0.04%)</title><rect x="23.2660%" y="805" width="0.0439%" height="15" fill="rgb(234,8,54)" fg:x="112323" fg:w="212"/><text x="23.5160%" y="815.50"></text></g><g><title>__GI___clone (79 samples, 0.02%)</title><rect x="23.3099%" y="805" width="0.0164%" height="15" fill="rgb(209,134,38)" fg:x="112535" fg:w="79"/><text x="23.5599%" y="815.50"></text></g><g><title>globbing_pool-1 (326 samples, 0.07%)</title><rect x="23.2604%" y="821" width="0.0675%" height="15" fill="rgb(230,127,29)" fg:x="112296" fg:w="326"/><text x="23.5104%" y="831.50"></text></g><g><title>[libunix_jni.so] (68 samples, 0.01%)</title><rect x="23.3294%" y="805" width="0.0141%" height="15" fill="rgb(242,44,41)" fg:x="112629" fg:w="68"/><text x="23.5794%" y="815.50"></text></g><g><title>[perf-987172.map] (279 samples, 0.06%)</title><rect x="23.3435%" y="805" width="0.0578%" height="15" fill="rgb(222,56,43)" fg:x="112697" fg:w="279"/><text x="23.5935%" y="815.50"></text></g><g><title>globbing_pool-2 (402 samples, 0.08%)</title><rect x="23.3280%" y="821" width="0.0833%" height="15" fill="rgb(238,39,47)" fg:x="112622" fg:w="402"/><text x="23.5780%" y="831.50"></text></g><g><title>[libunix_jni.so] (72 samples, 0.01%)</title><rect x="23.4121%" y="805" width="0.0149%" height="15" fill="rgb(226,79,43)" fg:x="113028" fg:w="72"/><text x="23.6621%" y="815.50"></text></g><g><title>[perf-987172.map] (324 samples, 0.07%)</title><rect x="23.4270%" y="805" width="0.0671%" height="15" fill="rgb(242,105,53)" fg:x="113100" fg:w="324"/><text x="23.6770%" y="815.50"></text></g><g><title>globbing_pool-3 (430 samples, 0.09%)</title><rect x="23.4112%" y="821" width="0.0891%" height="15" fill="rgb(251,132,46)" fg:x="113024" fg:w="430"/><text x="23.6612%" y="831.50"></text></g><g><title>[perf-987172.map] (139 samples, 0.03%)</title><rect x="23.5046%" y="805" width="0.0288%" height="15" fill="rgb(231,77,14)" fg:x="113475" fg:w="139"/><text x="23.7546%" y="815.50"></text></g><g><title>globbing_pool-4 (188 samples, 0.04%)</title><rect x="23.5003%" y="821" width="0.0389%" height="15" fill="rgb(240,135,9)" fg:x="113454" fg:w="188"/><text x="23.7503%" y="831.50"></text></g><g><title>[perf-987172.map] (95 samples, 0.02%)</title><rect x="23.5409%" y="805" width="0.0197%" height="15" fill="rgb(248,109,14)" fg:x="113650" fg:w="95"/><text x="23.7909%" y="815.50"></text></g><g><title>globbing_pool-5 (118 samples, 0.02%)</title><rect x="23.5392%" y="821" width="0.0244%" height="15" fill="rgb(227,146,52)" fg:x="113642" fg:w="118"/><text x="23.7892%" y="831.50"></text></g><g><title>[perf-987172.map] (68 samples, 0.01%)</title><rect x="23.5641%" y="805" width="0.0141%" height="15" fill="rgb(232,54,3)" fg:x="113762" fg:w="68"/><text x="23.8141%" y="815.50"></text></g><g><title>free_pcppages_bulk (56 samples, 0.01%)</title><rect x="23.6032%" y="581" width="0.0116%" height="15" fill="rgb(229,201,43)" fg:x="113951" fg:w="56"/><text x="23.8532%" y="591.50"></text></g><g><title>free_unref_page_list (69 samples, 0.01%)</title><rect x="23.6014%" y="597" width="0.0143%" height="15" fill="rgb(252,161,33)" fg:x="113942" fg:w="69"/><text x="23.8514%" y="607.50"></text></g><g><title>tlb_flush_mmu (119 samples, 0.02%)</title><rect x="23.5927%" y="629" width="0.0246%" height="15" fill="rgb(226,146,40)" fg:x="113900" fg:w="119"/><text x="23.8427%" y="639.50"></text></g><g><title>release_pages (111 samples, 0.02%)</title><rect x="23.5943%" y="613" width="0.0230%" height="15" fill="rgb(219,47,25)" fg:x="113908" fg:w="111"/><text x="23.8443%" y="623.50"></text></g><g><title>mmput (180 samples, 0.04%)</title><rect x="23.5802%" y="693" width="0.0373%" height="15" fill="rgb(250,135,13)" fg:x="113840" fg:w="180"/><text x="23.8302%" y="703.50"></text></g><g><title>exit_mmap (180 samples, 0.04%)</title><rect x="23.5802%" y="677" width="0.0373%" height="15" fill="rgb(219,229,18)" fg:x="113840" fg:w="180"/><text x="23.8302%" y="687.50"></text></g><g><title>unmap_vmas (179 samples, 0.04%)</title><rect x="23.5805%" y="661" width="0.0371%" height="15" fill="rgb(217,152,27)" fg:x="113841" fg:w="179"/><text x="23.8305%" y="671.50"></text></g><g><title>unmap_page_range (178 samples, 0.04%)</title><rect x="23.5807%" y="645" width="0.0369%" height="15" fill="rgb(225,71,47)" fg:x="113842" fg:w="178"/><text x="23.8307%" y="655.50"></text></g><g><title>arch_do_signal (182 samples, 0.04%)</title><rect x="23.5800%" y="757" width="0.0377%" height="15" fill="rgb(220,139,14)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="767.50"></text></g><g><title>get_signal (182 samples, 0.04%)</title><rect x="23.5800%" y="741" width="0.0377%" height="15" fill="rgb(247,54,32)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="751.50"></text></g><g><title>do_group_exit (182 samples, 0.04%)</title><rect x="23.5800%" y="725" width="0.0377%" height="15" fill="rgb(252,131,39)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="735.50"></text></g><g><title>do_exit (182 samples, 0.04%)</title><rect x="23.5800%" y="709" width="0.0377%" height="15" fill="rgb(210,108,39)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="719.50"></text></g><g><title>globbing_pool-6 (262 samples, 0.05%)</title><rect x="23.5637%" y="821" width="0.0543%" height="15" fill="rgb(205,23,29)" fg:x="113760" fg:w="262"/><text x="23.8137%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (183 samples, 0.04%)</title><rect x="23.5800%" y="805" width="0.0379%" height="15" fill="rgb(246,139,46)" fg:x="113839" fg:w="183"/><text x="23.8300%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (183 samples, 0.04%)</title><rect x="23.5800%" y="789" width="0.0379%" height="15" fill="rgb(250,81,26)" fg:x="113839" fg:w="183"/><text x="23.8300%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (183 samples, 0.04%)</title><rect x="23.5800%" y="773" width="0.0379%" height="15" fill="rgb(214,104,7)" fg:x="113839" fg:w="183"/><text x="23.8300%" y="783.50"></text></g><g><title>[perf-987172.map] (99 samples, 0.02%)</title><rect x="23.6258%" y="805" width="0.0205%" height="15" fill="rgb(233,189,8)" fg:x="114060" fg:w="99"/><text x="23.8758%" y="815.50"></text></g><g><title>globbing_pool-7 (146 samples, 0.03%)</title><rect x="23.6179%" y="821" width="0.0302%" height="15" fill="rgb(228,141,17)" fg:x="114022" fg:w="146"/><text x="23.8679%" y="831.50"></text></g><g><title>[perf-987172.map] (172 samples, 0.04%)</title><rect x="23.6569%" y="805" width="0.0356%" height="15" fill="rgb(247,157,1)" fg:x="114210" fg:w="172"/><text x="23.9069%" y="815.50"></text></g><g><title>globbing_pool-8 (230 samples, 0.05%)</title><rect x="23.6482%" y="821" width="0.0476%" height="15" fill="rgb(249,225,5)" fg:x="114168" fg:w="230"/><text x="23.8982%" y="831.50"></text></g><g><title>[perf-987172.map] (107 samples, 0.02%)</title><rect x="23.6969%" y="805" width="0.0222%" height="15" fill="rgb(242,55,13)" fg:x="114403" fg:w="107"/><text x="23.9469%" y="815.50"></text></g><g><title>globbing_pool-9 (118 samples, 0.02%)</title><rect x="23.6958%" y="821" width="0.0244%" height="15" fill="rgb(230,49,50)" fg:x="114398" fg:w="118"/><text x="23.9458%" y="831.50"></text></g><g><title>[anon] (217 samples, 0.04%)</title><rect x="23.7234%" y="805" width="0.0449%" height="15" fill="rgb(241,111,38)" fg:x="114531" fg:w="217"/><text x="23.9734%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (69 samples, 0.01%)</title><rect x="24.1911%" y="677" width="0.0143%" height="15" fill="rgb(252,155,4)" fg:x="116789" fg:w="69"/><text x="24.4411%" y="687.50"></text></g><g><title>ClassFileParser::parse_stream (68 samples, 0.01%)</title><rect x="24.1913%" y="661" width="0.0141%" height="15" fill="rgb(212,69,32)" fg:x="116790" fg:w="68"/><text x="24.4413%" y="671.50"></text></g><g><title>KlassFactory::create_from_stream (110 samples, 0.02%)</title><rect x="24.1911%" y="693" width="0.0228%" height="15" fill="rgb(243,107,47)" fg:x="116789" fg:w="110"/><text x="24.4411%" y="703.50"></text></g><g><title>ClassLoader::load_class (121 samples, 0.03%)</title><rect x="24.1890%" y="709" width="0.0251%" height="15" fill="rgb(247,130,12)" fg:x="116779" fg:w="121"/><text x="24.4390%" y="719.50"></text></g><g><title>SystemDictionary::resolve_or_fail (139 samples, 0.03%)</title><rect x="24.1880%" y="757" width="0.0288%" height="15" fill="rgb(233,74,16)" fg:x="116774" fg:w="139"/><text x="24.4380%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (139 samples, 0.03%)</title><rect x="24.1880%" y="741" width="0.0288%" height="15" fill="rgb(208,58,18)" fg:x="116774" fg:w="139"/><text x="24.4380%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (134 samples, 0.03%)</title><rect x="24.1890%" y="725" width="0.0278%" height="15" fill="rgb(242,225,1)" fg:x="116779" fg:w="134"/><text x="24.4390%" y="735.50"></text></g><g><title>ConstantPool::klass_at_impl (142 samples, 0.03%)</title><rect x="24.1876%" y="773" width="0.0294%" height="15" fill="rgb(249,39,40)" fg:x="116772" fg:w="142"/><text x="24.4376%" y="783.50"></text></g><g><title>Rewriter::rewrite (59 samples, 0.01%)</title><rect x="24.2304%" y="741" width="0.0122%" height="15" fill="rgb(207,72,44)" fg:x="116979" fg:w="59"/><text x="24.4804%" y="751.50"></text></g><g><title>Rewriter::Rewriter (59 samples, 0.01%)</title><rect x="24.2304%" y="725" width="0.0122%" height="15" fill="rgb(215,193,12)" fg:x="116979" fg:w="59"/><text x="24.4804%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (145 samples, 0.03%)</title><rect x="24.2180%" y="757" width="0.0300%" height="15" fill="rgb(248,41,39)" fg:x="116919" fg:w="145"/><text x="24.4680%" y="767.50"></text></g><g><title>InstanceKlass::initialize_impl (155 samples, 0.03%)</title><rect x="24.2174%" y="773" width="0.0321%" height="15" fill="rgb(253,85,4)" fg:x="116916" fg:w="155"/><text x="24.4674%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (302 samples, 0.06%)</title><rect x="24.1872%" y="789" width="0.0626%" height="15" fill="rgb(243,70,31)" fg:x="116770" fg:w="302"/><text x="24.4372%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (50 samples, 0.01%)</title><rect x="24.2609%" y="789" width="0.0104%" height="15" fill="rgb(253,195,26)" fg:x="117126" fg:w="50"/><text x="24.5109%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (50 samples, 0.01%)</title><rect x="24.2609%" y="773" width="0.0104%" height="15" fill="rgb(243,42,11)" fg:x="117126" fg:w="50"/><text x="24.5109%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (65 samples, 0.01%)</title><rect x="24.2897%" y="741" width="0.0135%" height="15" fill="rgb(239,66,17)" fg:x="117265" fg:w="65"/><text x="24.5397%" y="751.50"></text></g><g><title>LinkResolver::resolve_field_access (88 samples, 0.02%)</title><rect x="24.2853%" y="757" width="0.0182%" height="15" fill="rgb(217,132,21)" fg:x="117244" fg:w="88"/><text x="24.5353%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (100 samples, 0.02%)</title><rect x="24.2833%" y="773" width="0.0207%" height="15" fill="rgb(252,202,21)" fg:x="117234" fg:w="100"/><text x="24.5333%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (57 samples, 0.01%)</title><rect x="24.3164%" y="661" width="0.0118%" height="15" fill="rgb(233,98,36)" fg:x="117394" fg:w="57"/><text x="24.5664%" y="671.50"></text></g><g><title>ClassLoader::load_class (61 samples, 0.01%)</title><rect x="24.3158%" y="677" width="0.0126%" height="15" fill="rgb(216,153,54)" fg:x="117391" fg:w="61"/><text x="24.5658%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.01%)</title><rect x="24.3156%" y="693" width="0.0143%" height="15" fill="rgb(250,99,7)" fg:x="117390" fg:w="69"/><text x="24.5656%" y="703.50"></text></g><g><title>ConstantPool::klass_ref_at (86 samples, 0.02%)</title><rect x="24.3125%" y="741" width="0.0178%" height="15" fill="rgb(207,56,50)" fg:x="117375" fg:w="86"/><text x="24.5625%" y="751.50"></text></g><g><title>SystemDictionary::resolve_or_fail (79 samples, 0.02%)</title><rect x="24.3139%" y="725" width="0.0164%" height="15" fill="rgb(244,61,34)" fg:x="117382" fg:w="79"/><text x="24.5639%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (78 samples, 0.02%)</title><rect x="24.3141%" y="709" width="0.0162%" height="15" fill="rgb(241,50,38)" fg:x="117383" fg:w="78"/><text x="24.5641%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (91 samples, 0.02%)</title><rect x="24.3437%" y="709" width="0.0188%" height="15" fill="rgb(212,166,30)" fg:x="117526" fg:w="91"/><text x="24.5937%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (93 samples, 0.02%)</title><rect x="24.3437%" y="725" width="0.0193%" height="15" fill="rgb(249,127,32)" fg:x="117526" fg:w="93"/><text x="24.5937%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (115 samples, 0.02%)</title><rect x="24.3433%" y="741" width="0.0238%" height="15" fill="rgb(209,103,0)" fg:x="117524" fg:w="115"/><text x="24.5933%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (271 samples, 0.06%)</title><rect x="24.3116%" y="757" width="0.0561%" height="15" fill="rgb(238,209,51)" fg:x="117371" fg:w="271"/><text x="24.5616%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (329 samples, 0.07%)</title><rect x="24.3040%" y="773" width="0.0681%" height="15" fill="rgb(237,56,23)" fg:x="117334" fg:w="329"/><text x="24.5540%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (54 samples, 0.01%)</title><rect x="24.3721%" y="773" width="0.0112%" height="15" fill="rgb(215,153,46)" fg:x="117663" fg:w="54"/><text x="24.6221%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (51 samples, 0.01%)</title><rect x="24.3727%" y="757" width="0.0106%" height="15" fill="rgb(224,49,31)" fg:x="117666" fg:w="51"/><text x="24.6227%" y="767.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (51 samples, 0.01%)</title><rect x="24.3727%" y="741" width="0.0106%" height="15" fill="rgb(250,18,42)" fg:x="117666" fg:w="51"/><text x="24.6227%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (489 samples, 0.10%)</title><rect x="24.2824%" y="789" width="0.1013%" height="15" fill="rgb(215,176,39)" fg:x="117230" fg:w="489"/><text x="24.5324%" y="799.50"></text></g><g><title>JVM_GetClassDeclaredMethods (68 samples, 0.01%)</title><rect x="24.4144%" y="789" width="0.0141%" height="15" fill="rgb(223,77,29)" fg:x="117867" fg:w="68"/><text x="24.6644%" y="799.50"></text></g><g><title>get_class_declared_methods_helper (68 samples, 0.01%)</title><rect x="24.4144%" y="773" width="0.0141%" height="15" fill="rgb(234,94,52)" fg:x="117867" fg:w="68"/><text x="24.6644%" y="783.50"></text></g><g><title>SymbolTable::add (58 samples, 0.01%)</title><rect x="24.4674%" y="645" width="0.0120%" height="15" fill="rgb(220,154,50)" fg:x="118123" fg:w="58"/><text x="24.7174%" y="655.50"></text></g><g><title>SymbolTable::basic_add (58 samples, 0.01%)</title><rect x="24.4674%" y="629" width="0.0120%" height="15" fill="rgb(212,11,10)" fg:x="118123" fg:w="58"/><text x="24.7174%" y="639.50"></text></g><g><title>SymbolTable::lookup_only (437 samples, 0.09%)</title><rect x="24.4794%" y="645" width="0.0905%" height="15" fill="rgb(205,166,19)" fg:x="118181" fg:w="437"/><text x="24.7294%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (531 samples, 0.11%)</title><rect x="24.4604%" y="661" width="0.1100%" height="15" fill="rgb(244,198,16)" fg:x="118089" fg:w="531"/><text x="24.7104%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (546 samples, 0.11%)</title><rect x="24.4577%" y="677" width="0.1131%" height="15" fill="rgb(219,69,12)" fg:x="118076" fg:w="546"/><text x="24.7077%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (160 samples, 0.03%)</title><rect x="24.5776%" y="661" width="0.0331%" height="15" fill="rgb(245,30,7)" fg:x="118655" fg:w="160"/><text x="24.8276%" y="671.50"></text></g><g><title>ClassFileParser::parse_methods (161 samples, 0.03%)</title><rect x="24.5776%" y="677" width="0.0333%" height="15" fill="rgb(218,221,48)" fg:x="118655" fg:w="161"/><text x="24.8276%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (773 samples, 0.16%)</title><rect x="24.4554%" y="709" width="0.1601%" height="15" fill="rgb(216,66,15)" fg:x="118065" fg:w="773"/><text x="24.7054%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (771 samples, 0.16%)</title><rect x="24.4558%" y="693" width="0.1597%" height="15" fill="rgb(226,122,50)" fg:x="118067" fg:w="771"/><text x="24.7058%" y="703.50"></text></g><g><title>HierarchyVisitor<FindMethodsByErasedSig>::run (93 samples, 0.02%)</title><rect x="24.6215%" y="661" width="0.0193%" height="15" fill="rgb(239,156,16)" fg:x="118867" fg:w="93"/><text x="24.8715%" y="671.50"></text></g><g><title>DefaultMethods::generate_default_methods (138 samples, 0.03%)</title><rect x="24.6174%" y="677" width="0.0286%" height="15" fill="rgb(224,27,38)" fg:x="118847" fg:w="138"/><text x="24.8674%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (186 samples, 0.04%)</title><rect x="24.6155%" y="693" width="0.0385%" height="15" fill="rgb(224,39,27)" fg:x="118838" fg:w="186"/><text x="24.8655%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (192 samples, 0.04%)</title><rect x="24.6155%" y="709" width="0.0398%" height="15" fill="rgb(215,92,29)" fg:x="118838" fg:w="192"/><text x="24.8655%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (1,008 samples, 0.21%)</title><rect x="24.4554%" y="725" width="0.2088%" height="15" fill="rgb(207,159,16)" fg:x="118065" fg:w="1008"/><text x="24.7054%" y="735.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,052 samples, 0.22%)</title><rect x="24.4552%" y="741" width="0.2179%" height="15" fill="rgb(238,163,47)" fg:x="118064" fg:w="1052"/><text x="24.7052%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (1,069 samples, 0.22%)</title><rect x="24.4519%" y="773" width="0.2214%" height="15" fill="rgb(219,91,49)" fg:x="118048" fg:w="1069"/><text x="24.7019%" y="783.50"></text></g><g><title>jvm_define_class_common (1,068 samples, 0.22%)</title><rect x="24.4521%" y="757" width="0.2212%" height="15" fill="rgb(227,167,31)" fg:x="118049" fg:w="1068"/><text x="24.7021%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,116 samples, 0.23%)</title><rect x="24.4515%" y="789" width="0.2312%" height="15" fill="rgb(234,80,54)" fg:x="118046" fg:w="1116"/><text x="24.7015%" y="799.50"></text></g><g><title>SystemDictionary::load_instance_class (56 samples, 0.01%)</title><rect x="24.6855%" y="725" width="0.0116%" height="15" fill="rgb(212,114,2)" fg:x="119176" fg:w="56"/><text x="24.9355%" y="735.50"></text></g><g><title>JVM_FindClassFromBootLoader (71 samples, 0.01%)</title><rect x="24.6826%" y="773" width="0.0147%" height="15" fill="rgb(234,50,24)" fg:x="119162" fg:w="71"/><text x="24.9326%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_null (70 samples, 0.01%)</title><rect x="24.6828%" y="757" width="0.0145%" height="15" fill="rgb(221,68,8)" fg:x="119163" fg:w="70"/><text x="24.9328%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (68 samples, 0.01%)</title><rect x="24.6832%" y="741" width="0.0141%" height="15" fill="rgb(254,180,31)" fg:x="119165" fg:w="68"/><text x="24.9332%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (81 samples, 0.02%)</title><rect x="24.6826%" y="789" width="0.0168%" height="15" fill="rgb(247,130,50)" fg:x="119162" fg:w="81"/><text x="24.9326%" y="799.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (71 samples, 0.01%)</title><rect x="24.7207%" y="789" width="0.0147%" height="15" fill="rgb(211,109,4)" fg:x="119346" fg:w="71"/><text x="24.9707%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (68 samples, 0.01%)</title><rect x="24.7214%" y="773" width="0.0141%" height="15" fill="rgb(238,50,21)" fg:x="119349" fg:w="68"/><text x="24.9714%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.01%)</title><rect x="24.7243%" y="757" width="0.0112%" height="15" fill="rgb(225,57,45)" fg:x="119363" fg:w="54"/><text x="24.9743%" y="767.50"></text></g><g><title>[perf-987172.map] (4,705 samples, 0.97%)</title><rect x="23.7721%" y="805" width="0.9746%" height="15" fill="rgb(209,196,50)" fg:x="114766" fg:w="4705"/><text x="24.0221%" y="815.50"></text></g><g><title>readBytes (59 samples, 0.01%)</title><rect x="24.7667%" y="789" width="0.0122%" height="15" fill="rgb(242,140,13)" fg:x="119568" fg:w="59"/><text x="25.0167%" y="799.50"></text></g><g><title>[unknown] (159 samples, 0.03%)</title><rect x="24.7466%" y="805" width="0.0329%" height="15" fill="rgb(217,111,7)" fg:x="119471" fg:w="159"/><text x="24.9966%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="24.7837%" y="741" width="0.0220%" height="15" fill="rgb(253,193,51)" fg:x="119650" fg:w="106"/><text x="25.0337%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (105 samples, 0.02%)</title><rect x="24.7839%" y="725" width="0.0217%" height="15" fill="rgb(252,70,29)" fg:x="119651" fg:w="105"/><text x="25.0339%" y="735.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="24.7839%" y="709" width="0.0217%" height="15" fill="rgb(232,127,12)" fg:x="119651" fg:w="105"/><text x="25.0339%" y="719.50"></text></g><g><title>schedule_tail (113 samples, 0.02%)</title><rect x="24.7831%" y="773" width="0.0234%" height="15" fill="rgb(211,180,21)" fg:x="119647" fg:w="113"/><text x="25.0331%" y="783.50"></text></g><g><title>finish_task_switch (113 samples, 0.02%)</title><rect x="24.7831%" y="757" width="0.0234%" height="15" fill="rgb(229,72,13)" fg:x="119647" fg:w="113"/><text x="25.0331%" y="767.50"></text></g><g><title>ret_from_fork (117 samples, 0.02%)</title><rect x="24.7827%" y="789" width="0.0242%" height="15" fill="rgb(240,211,49)" fg:x="119645" fg:w="117"/><text x="25.0327%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (57 samples, 0.01%)</title><rect x="24.8071%" y="757" width="0.0118%" height="15" fill="rgb(219,149,40)" fg:x="119763" fg:w="57"/><text x="25.0571%" y="767.50"></text></g><g><title>Threads::create_vm (57 samples, 0.01%)</title><rect x="24.8071%" y="741" width="0.0118%" height="15" fill="rgb(210,127,46)" fg:x="119763" fg:w="57"/><text x="25.0571%" y="751.50"></text></g><g><title>JavaMain (58 samples, 0.01%)</title><rect x="24.8071%" y="773" width="0.0120%" height="15" fill="rgb(220,106,7)" fg:x="119763" fg:w="58"/><text x="25.0571%" y="783.50"></text></g><g><title>__GI___clone (228 samples, 0.05%)</title><rect x="24.7796%" y="805" width="0.0472%" height="15" fill="rgb(249,31,22)" fg:x="119630" fg:w="228"/><text x="25.0296%" y="815.50"></text></g><g><title>start_thread (96 samples, 0.02%)</title><rect x="24.8069%" y="789" width="0.0199%" height="15" fill="rgb(253,1,49)" fg:x="119762" fg:w="96"/><text x="25.0569%" y="799.50"></text></g><g><title>java (5,372 samples, 1.11%)</title><rect x="23.7203%" y="821" width="1.1127%" height="15" fill="rgb(227,144,33)" fg:x="114516" fg:w="5372"/><text x="23.9703%" y="831.50"></text></g><g><title>execute_command_internal (52 samples, 0.01%)</title><rect x="24.8589%" y="789" width="0.0108%" height="15" fill="rgb(249,163,44)" fg:x="120013" fg:w="52"/><text x="25.1089%" y="799.50"></text></g><g><title>[unknown] (131 samples, 0.03%)</title><rect x="24.8465%" y="805" width="0.0271%" height="15" fill="rgb(234,15,39)" fg:x="119953" fg:w="131"/><text x="25.0965%" y="815.50"></text></g><g><title>[bash] (69 samples, 0.01%)</title><rect x="24.8800%" y="709" width="0.0143%" height="15" fill="rgb(207,66,16)" fg:x="120115" fg:w="69"/><text x="25.1300%" y="719.50"></text></g><g><title>parse_and_execute (58 samples, 0.01%)</title><rect x="24.9202%" y="629" width="0.0120%" height="15" fill="rgb(233,112,24)" fg:x="120309" fg:w="58"/><text x="25.1702%" y="639.50"></text></g><g><title>execute_command_internal (56 samples, 0.01%)</title><rect x="24.9206%" y="613" width="0.0116%" height="15" fill="rgb(230,90,22)" fg:x="120311" fg:w="56"/><text x="25.1706%" y="623.50"></text></g><g><title>expand_word_leave_quoted (88 samples, 0.02%)</title><rect x="24.9159%" y="677" width="0.0182%" height="15" fill="rgb(229,61,13)" fg:x="120288" fg:w="88"/><text x="25.1659%" y="687.50"></text></g><g><title>[bash] (88 samples, 0.02%)</title><rect x="24.9159%" y="661" width="0.0182%" height="15" fill="rgb(225,57,24)" fg:x="120288" fg:w="88"/><text x="25.1659%" y="671.50"></text></g><g><title>command_substitute (88 samples, 0.02%)</title><rect x="24.9159%" y="645" width="0.0182%" height="15" fill="rgb(208,169,48)" fg:x="120288" fg:w="88"/><text x="25.1659%" y="655.50"></text></g><g><title>execute_command (115 samples, 0.02%)</title><rect x="24.9111%" y="709" width="0.0238%" height="15" fill="rgb(244,218,51)" fg:x="120265" fg:w="115"/><text x="25.1611%" y="719.50"></text></g><g><title>execute_command_internal (115 samples, 0.02%)</title><rect x="24.9111%" y="693" width="0.0238%" height="15" fill="rgb(214,148,10)" fg:x="120265" fg:w="115"/><text x="25.1611%" y="703.50"></text></g><g><title>execute_command_internal (76 samples, 0.02%)</title><rect x="24.9436%" y="597" width="0.0157%" height="15" fill="rgb(225,174,27)" fg:x="120422" fg:w="76"/><text x="25.1936%" y="607.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="24.9436%" y="581" width="0.0157%" height="15" fill="rgb(230,96,26)" fg:x="120422" fg:w="76"/><text x="25.1936%" y="591.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="24.9436%" y="565" width="0.0157%" height="15" fill="rgb(232,10,30)" fg:x="120422" fg:w="76"/><text x="25.1936%" y="575.50"></text></g><g><title>execute_command_internal (73 samples, 0.02%)</title><rect x="24.9442%" y="549" width="0.0151%" height="15" fill="rgb(222,8,50)" fg:x="120425" fg:w="73"/><text x="25.1942%" y="559.50"></text></g><g><title>parse_and_execute (79 samples, 0.02%)</title><rect x="24.9434%" y="613" width="0.0164%" height="15" fill="rgb(213,81,27)" fg:x="120421" fg:w="79"/><text x="25.1934%" y="623.50"></text></g><g><title>command_substitute (119 samples, 0.02%)</title><rect x="24.9359%" y="629" width="0.0246%" height="15" fill="rgb(245,50,10)" fg:x="120385" fg:w="119"/><text x="25.1859%" y="639.50"></text></g><g><title>[bash] (125 samples, 0.03%)</title><rect x="24.9351%" y="645" width="0.0259%" height="15" fill="rgb(216,100,18)" fg:x="120381" fg:w="125"/><text x="25.1851%" y="655.50"></text></g><g><title>[bash] (128 samples, 0.03%)</title><rect x="24.9351%" y="661" width="0.0265%" height="15" fill="rgb(236,147,54)" fg:x="120381" fg:w="128"/><text x="25.1851%" y="671.50"></text></g><g><title>[bash] (134 samples, 0.03%)</title><rect x="24.9349%" y="677" width="0.0278%" height="15" fill="rgb(205,143,26)" fg:x="120380" fg:w="134"/><text x="25.1849%" y="687.50"></text></g><g><title>[bash] (137 samples, 0.03%)</title><rect x="24.9349%" y="693" width="0.0284%" height="15" fill="rgb(236,26,9)" fg:x="120380" fg:w="137"/><text x="25.1849%" y="703.50"></text></g><g><title>expand_words (138 samples, 0.03%)</title><rect x="24.9349%" y="709" width="0.0286%" height="15" fill="rgb(221,165,53)" fg:x="120380" fg:w="138"/><text x="25.1849%" y="719.50"></text></g><g><title>execute_command_internal (408 samples, 0.08%)</title><rect x="24.8800%" y="725" width="0.0845%" height="15" fill="rgb(214,110,17)" fg:x="120115" fg:w="408"/><text x="25.1300%" y="735.50"></text></g><g><title>execute_command (410 samples, 0.08%)</title><rect x="24.8798%" y="741" width="0.0849%" height="15" fill="rgb(237,197,12)" fg:x="120114" fg:w="410"/><text x="25.1298%" y="751.50"></text></g><g><title>[bash] (162 samples, 0.03%)</title><rect x="24.9883%" y="677" width="0.0336%" height="15" fill="rgb(205,84,17)" fg:x="120638" fg:w="162"/><text x="25.2383%" y="687.50"></text></g><g><title>[bash] (295 samples, 0.06%)</title><rect x="24.9734%" y="693" width="0.0611%" height="15" fill="rgb(237,18,45)" fg:x="120566" fg:w="295"/><text x="25.2234%" y="703.50"></text></g><g><title>reader_loop (786 samples, 0.16%)</title><rect x="24.8761%" y="757" width="0.1628%" height="15" fill="rgb(221,87,14)" fg:x="120096" fg:w="786"/><text x="25.1261%" y="767.50"></text></g><g><title>read_command (358 samples, 0.07%)</title><rect x="24.9647%" y="741" width="0.0742%" height="15" fill="rgb(238,186,15)" fg:x="120524" fg:w="358"/><text x="25.2147%" y="751.50"></text></g><g><title>parse_command (357 samples, 0.07%)</title><rect x="24.9649%" y="725" width="0.0739%" height="15" fill="rgb(208,115,11)" fg:x="120525" fg:w="357"/><text x="25.2149%" y="735.50"></text></g><g><title>yyparse (357 samples, 0.07%)</title><rect x="24.9649%" y="709" width="0.0739%" height="15" fill="rgb(254,175,0)" fg:x="120525" fg:w="357"/><text x="25.2149%" y="719.50"></text></g><g><title>__libc_start_main (802 samples, 0.17%)</title><rect x="24.8740%" y="789" width="0.1661%" height="15" fill="rgb(227,24,42)" fg:x="120086" fg:w="802"/><text x="25.1240%" y="799.50"></text></g><g><title>main (802 samples, 0.17%)</title><rect x="24.8740%" y="773" width="0.1661%" height="15" fill="rgb(223,211,37)" fg:x="120086" fg:w="802"/><text x="25.1240%" y="783.50"></text></g><g><title>_start (823 samples, 0.17%)</title><rect x="24.8740%" y="805" width="0.1705%" height="15" fill="rgb(235,49,27)" fg:x="120086" fg:w="823"/><text x="25.1240%" y="815.50"></text></g><g><title>mmput (55 samples, 0.01%)</title><rect x="25.0526%" y="725" width="0.0114%" height="15" fill="rgb(254,97,51)" fg:x="120948" fg:w="55"/><text x="25.3026%" y="735.50"></text></g><g><title>exit_mmap (55 samples, 0.01%)</title><rect x="25.0526%" y="709" width="0.0114%" height="15" fill="rgb(249,51,40)" fg:x="120948" fg:w="55"/><text x="25.3026%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.02%)</title><rect x="25.0492%" y="805" width="0.0153%" height="15" fill="rgb(210,128,45)" fg:x="120932" fg:w="74"/><text x="25.2992%" y="815.50"></text></g><g><title>do_syscall_64 (74 samples, 0.02%)</title><rect x="25.0492%" y="789" width="0.0153%" height="15" fill="rgb(224,137,50)" fg:x="120932" fg:w="74"/><text x="25.2992%" y="799.50"></text></g><g><title>__x64_sys_exit_group (58 samples, 0.01%)</title><rect x="25.0526%" y="773" width="0.0120%" height="15" fill="rgb(242,15,9)" fg:x="120948" fg:w="58"/><text x="25.3026%" y="783.50"></text></g><g><title>do_group_exit (58 samples, 0.01%)</title><rect x="25.0526%" y="757" width="0.0120%" height="15" fill="rgb(233,187,41)" fg:x="120948" fg:w="58"/><text x="25.3026%" y="767.50"></text></g><g><title>do_exit (58 samples, 0.01%)</title><rect x="25.0526%" y="741" width="0.0120%" height="15" fill="rgb(227,2,29)" fg:x="120948" fg:w="58"/><text x="25.3026%" y="751.50"></text></g><g><title>libtool (1,121 samples, 0.23%)</title><rect x="24.8330%" y="821" width="0.2322%" height="15" fill="rgb(222,70,3)" fg:x="119888" fg:w="1121"/><text x="25.0830%" y="831.50"></text></g><g><title>copy_process (66 samples, 0.01%)</title><rect x="25.0731%" y="693" width="0.0137%" height="15" fill="rgb(213,11,42)" fg:x="121047" fg:w="66"/><text x="25.3231%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="25.0731%" y="757" width="0.0145%" height="15" fill="rgb(225,150,9)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="767.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="25.0731%" y="741" width="0.0145%" height="15" fill="rgb(230,162,45)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="751.50"></text></g><g><title>__do_sys_clone (70 samples, 0.01%)</title><rect x="25.0731%" y="725" width="0.0145%" height="15" fill="rgb(222,14,52)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="735.50"></text></g><g><title>kernel_clone (70 samples, 0.01%)</title><rect x="25.0731%" y="709" width="0.0145%" height="15" fill="rgb(254,198,14)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="719.50"></text></g><g><title>__libc_start_main (72 samples, 0.01%)</title><rect x="25.0731%" y="789" width="0.0149%" height="15" fill="rgb(220,217,30)" fg:x="121047" fg:w="72"/><text x="25.3231%" y="799.50"></text></g><g><title>__GI___clone (72 samples, 0.01%)</title><rect x="25.0731%" y="773" width="0.0149%" height="15" fill="rgb(215,146,41)" fg:x="121047" fg:w="72"/><text x="25.3231%" y="783.50"></text></g><g><title>[unknown] (84 samples, 0.02%)</title><rect x="25.0720%" y="805" width="0.0174%" height="15" fill="rgb(217,27,36)" fg:x="121042" fg:w="84"/><text x="25.3220%" y="815.50"></text></g><g><title>WriteFile (52 samples, 0.01%)</title><rect x="25.0903%" y="773" width="0.0108%" height="15" fill="rgb(219,218,39)" fg:x="121130" fg:w="52"/><text x="25.3403%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="25.1027%" y="661" width="0.0101%" height="15" fill="rgb(219,4,42)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="671.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="25.1027%" y="645" width="0.0101%" height="15" fill="rgb(249,119,36)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="655.50"></text></g><g><title>ksys_read (49 samples, 0.01%)</title><rect x="25.1027%" y="629" width="0.0101%" height="15" fill="rgb(209,23,33)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="639.50"></text></g><g><title>vfs_read (49 samples, 0.01%)</title><rect x="25.1027%" y="613" width="0.0101%" height="15" fill="rgb(211,10,0)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="623.50"></text></g><g><title>__GI___fgets_unlocked (56 samples, 0.01%)</title><rect x="25.1014%" y="741" width="0.0116%" height="15" fill="rgb(208,99,37)" fg:x="121184" fg:w="56"/><text x="25.3514%" y="751.50"></text></g><g><title>__GI__IO_getline_info (55 samples, 0.01%)</title><rect x="25.1017%" y="725" width="0.0114%" height="15" fill="rgb(213,132,31)" fg:x="121185" fg:w="55"/><text x="25.3517%" y="735.50"></text></g><g><title>__GI__IO_default_uflow (50 samples, 0.01%)</title><rect x="25.1027%" y="709" width="0.0104%" height="15" fill="rgb(243,129,40)" fg:x="121190" fg:w="50"/><text x="25.3527%" y="719.50"></text></g><g><title>_IO_new_file_underflow (50 samples, 0.01%)</title><rect x="25.1027%" y="693" width="0.0104%" height="15" fill="rgb(210,66,33)" fg:x="121190" fg:w="50"/><text x="25.3527%" y="703.50"></text></g><g><title>__GI___read_nocancel (50 samples, 0.01%)</title><rect x="25.1027%" y="677" width="0.0104%" height="15" fill="rgb(209,189,4)" fg:x="121190" fg:w="50"/><text x="25.3527%" y="687.50"></text></g><g><title>__GI___getmntent_r (77 samples, 0.02%)</title><rect x="25.1012%" y="773" width="0.0159%" height="15" fill="rgb(214,107,37)" fg:x="121183" fg:w="77"/><text x="25.3512%" y="783.50"></text></g><g><title>get_mnt_entry (77 samples, 0.02%)</title><rect x="25.1012%" y="757" width="0.0159%" height="15" fill="rgb(245,88,54)" fg:x="121183" fg:w="77"/><text x="25.3512%" y="767.50"></text></g><g><title>bprm_execve (97 samples, 0.02%)</title><rect x="25.1391%" y="677" width="0.0201%" height="15" fill="rgb(205,146,20)" fg:x="121366" fg:w="97"/><text x="25.3891%" y="687.50"></text></g><g><title>do_execveat_common (108 samples, 0.02%)</title><rect x="25.1385%" y="693" width="0.0224%" height="15" fill="rgb(220,161,25)" fg:x="121363" fg:w="108"/><text x="25.3885%" y="703.50"></text></g><g><title>__execvpe_common (118 samples, 0.02%)</title><rect x="25.1369%" y="773" width="0.0244%" height="15" fill="rgb(215,152,15)" fg:x="121355" fg:w="118"/><text x="25.3869%" y="783.50"></text></g><g><title>__GI_execve (111 samples, 0.02%)</title><rect x="25.1383%" y="757" width="0.0230%" height="15" fill="rgb(233,192,44)" fg:x="121362" fg:w="111"/><text x="25.3883%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.02%)</title><rect x="25.1385%" y="741" width="0.0228%" height="15" fill="rgb(240,170,46)" fg:x="121363" fg:w="110"/><text x="25.3885%" y="751.50"></text></g><g><title>do_syscall_64 (110 samples, 0.02%)</title><rect x="25.1385%" y="725" width="0.0228%" height="15" fill="rgb(207,104,33)" fg:x="121363" fg:w="110"/><text x="25.3885%" y="735.50"></text></g><g><title>__x64_sys_execve (110 samples, 0.02%)</title><rect x="25.1385%" y="709" width="0.0228%" height="15" fill="rgb(219,21,39)" fg:x="121363" fg:w="110"/><text x="25.3885%" y="719.50"></text></g><g><title>copy_process (62 samples, 0.01%)</title><rect x="25.1648%" y="677" width="0.0128%" height="15" fill="rgb(214,133,29)" fg:x="121490" fg:w="62"/><text x="25.4148%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="25.1648%" y="741" width="0.0130%" height="15" fill="rgb(226,93,6)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="751.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="25.1648%" y="725" width="0.0130%" height="15" fill="rgb(252,222,34)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="735.50"></text></g><g><title>__do_sys_clone (63 samples, 0.01%)</title><rect x="25.1648%" y="709" width="0.0130%" height="15" fill="rgb(252,92,48)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="719.50"></text></g><g><title>kernel_clone (63 samples, 0.01%)</title><rect x="25.1648%" y="693" width="0.0130%" height="15" fill="rgb(245,223,24)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (155 samples, 0.03%)</title><rect x="25.1851%" y="693" width="0.0321%" height="15" fill="rgb(205,176,3)" fg:x="121588" fg:w="155"/><text x="25.4351%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.03%)</title><rect x="25.1851%" y="677" width="0.0321%" height="15" fill="rgb(235,151,15)" fg:x="121588" fg:w="155"/><text x="25.4351%" y="687.50"></text></g><g><title>native_write_msr (155 samples, 0.03%)</title><rect x="25.1851%" y="661" width="0.0321%" height="15" fill="rgb(237,209,11)" fg:x="121588" fg:w="155"/><text x="25.4351%" y="671.50"></text></g><g><title>arch_fork (279 samples, 0.06%)</title><rect x="25.1613%" y="757" width="0.0578%" height="15" fill="rgb(243,227,24)" fg:x="121473" fg:w="279"/><text x="25.4113%" y="767.50"></text></g><g><title>ret_from_fork (198 samples, 0.04%)</title><rect x="25.1781%" y="741" width="0.0410%" height="15" fill="rgb(239,193,16)" fg:x="121554" fg:w="198"/><text x="25.4281%" y="751.50"></text></g><g><title>schedule_tail (198 samples, 0.04%)</title><rect x="25.1781%" y="725" width="0.0410%" height="15" fill="rgb(231,27,9)" fg:x="121554" fg:w="198"/><text x="25.4281%" y="735.50"></text></g><g><title>finish_task_switch (168 samples, 0.03%)</title><rect x="25.1843%" y="709" width="0.0348%" height="15" fill="rgb(219,169,10)" fg:x="121584" fg:w="168"/><text x="25.4343%" y="719.50"></text></g><g><title>__libc_fork (280 samples, 0.06%)</title><rect x="25.1613%" y="773" width="0.0580%" height="15" fill="rgb(244,229,43)" fg:x="121473" fg:w="280"/><text x="25.4113%" y="783.50"></text></g><g><title>__mount (75 samples, 0.02%)</title><rect x="25.2201%" y="773" width="0.0155%" height="15" fill="rgb(254,38,20)" fg:x="121757" fg:w="75"/><text x="25.4701%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.02%)</title><rect x="25.2205%" y="757" width="0.0151%" height="15" fill="rgb(250,47,30)" fg:x="121759" fg:w="73"/><text x="25.4705%" y="767.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="25.2205%" y="741" width="0.0151%" height="15" fill="rgb(224,124,36)" fg:x="121759" fg:w="73"/><text x="25.4705%" y="751.50"></text></g><g><title>__x64_sys_mount (73 samples, 0.02%)</title><rect x="25.2205%" y="725" width="0.0151%" height="15" fill="rgb(246,68,51)" fg:x="121759" fg:w="73"/><text x="25.4705%" y="735.50"></text></g><g><title>Pid1Main (772 samples, 0.16%)</title><rect x="25.0898%" y="789" width="0.1599%" height="15" fill="rgb(253,43,49)" fg:x="121128" fg:w="772"/><text x="25.3398%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (175 samples, 0.04%)</title><rect x="25.2611%" y="741" width="0.0362%" height="15" fill="rgb(219,54,36)" fg:x="121955" fg:w="175"/><text x="25.5111%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (175 samples, 0.04%)</title><rect x="25.2611%" y="725" width="0.0362%" height="15" fill="rgb(227,133,34)" fg:x="121955" fg:w="175"/><text x="25.5111%" y="735.50"></text></g><g><title>native_write_msr (175 samples, 0.04%)</title><rect x="25.2611%" y="709" width="0.0362%" height="15" fill="rgb(247,227,15)" fg:x="121955" fg:w="175"/><text x="25.5111%" y="719.50"></text></g><g><title>schedule_tail (196 samples, 0.04%)</title><rect x="25.2578%" y="773" width="0.0406%" height="15" fill="rgb(229,96,14)" fg:x="121939" fg:w="196"/><text x="25.5078%" y="783.50"></text></g><g><title>finish_task_switch (195 samples, 0.04%)</title><rect x="25.2580%" y="757" width="0.0404%" height="15" fill="rgb(220,79,17)" fg:x="121940" fg:w="195"/><text x="25.5080%" y="767.50"></text></g><g><title>__GI___clone (1,011 samples, 0.21%)</title><rect x="25.0894%" y="805" width="0.2094%" height="15" fill="rgb(205,131,53)" fg:x="121126" fg:w="1011"/><text x="25.3394%" y="815.50"></text></g><g><title>ret_from_fork (211 samples, 0.04%)</title><rect x="25.2551%" y="789" width="0.0437%" height="15" fill="rgb(209,50,29)" fg:x="121926" fg:w="211"/><text x="25.5051%" y="799.50"></text></g><g><title>handle_mm_fault (87 samples, 0.02%)</title><rect x="25.3243%" y="693" width="0.0180%" height="15" fill="rgb(245,86,46)" fg:x="122260" fg:w="87"/><text x="25.5743%" y="703.50"></text></g><g><title>exc_page_fault (92 samples, 0.02%)</title><rect x="25.3235%" y="725" width="0.0191%" height="15" fill="rgb(235,66,46)" fg:x="122256" fg:w="92"/><text x="25.5735%" y="735.50"></text></g><g><title>do_user_addr_fault (91 samples, 0.02%)</title><rect x="25.3237%" y="709" width="0.0188%" height="15" fill="rgb(232,148,31)" fg:x="122257" fg:w="91"/><text x="25.5737%" y="719.50"></text></g><g><title>asm_exc_page_fault (96 samples, 0.02%)</title><rect x="25.3229%" y="741" width="0.0199%" height="15" fill="rgb(217,149,8)" fg:x="122253" fg:w="96"/><text x="25.5729%" y="751.50"></text></g><g><title>[libc-2.31.so] (123 samples, 0.03%)</title><rect x="25.3200%" y="757" width="0.0255%" height="15" fill="rgb(209,183,11)" fg:x="122239" fg:w="123"/><text x="25.5700%" y="767.50"></text></g><g><title>__libc_start_main (230 samples, 0.05%)</title><rect x="25.3102%" y="789" width="0.0476%" height="15" fill="rgb(208,55,20)" fg:x="122192" fg:w="230"/><text x="25.5602%" y="799.50"></text></g><g><title>main (193 samples, 0.04%)</title><rect x="25.3179%" y="773" width="0.0400%" height="15" fill="rgb(218,39,14)" fg:x="122229" fg:w="193"/><text x="25.5679%" y="783.50"></text></g><g><title>do_mmap (54 samples, 0.01%)</title><rect x="25.3672%" y="533" width="0.0112%" height="15" fill="rgb(216,169,33)" fg:x="122467" fg:w="54"/><text x="25.6172%" y="543.50"></text></g><g><title>mmap_region (53 samples, 0.01%)</title><rect x="25.3674%" y="517" width="0.0110%" height="15" fill="rgb(233,80,24)" fg:x="122468" fg:w="53"/><text x="25.6174%" y="527.50"></text></g><g><title>ksys_mmap_pgoff (56 samples, 0.01%)</title><rect x="25.3672%" y="565" width="0.0116%" height="15" fill="rgb(213,179,31)" fg:x="122467" fg:w="56"/><text x="25.6172%" y="575.50"></text></g><g><title>vm_mmap_pgoff (56 samples, 0.01%)</title><rect x="25.3672%" y="549" width="0.0116%" height="15" fill="rgb(209,19,5)" fg:x="122467" fg:w="56"/><text x="25.6172%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="25.3672%" y="597" width="0.0120%" height="15" fill="rgb(219,18,35)" fg:x="122467" fg:w="58"/><text x="25.6172%" y="607.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="25.3672%" y="581" width="0.0120%" height="15" fill="rgb(209,169,16)" fg:x="122467" fg:w="58"/><text x="25.6172%" y="591.50"></text></g><g><title>_dl_map_segments (72 samples, 0.01%)</title><rect x="25.3645%" y="645" width="0.0149%" height="15" fill="rgb(245,90,51)" fg:x="122454" fg:w="72"/><text x="25.6145%" y="655.50"></text></g><g><title>__mmap64 (63 samples, 0.01%)</title><rect x="25.3664%" y="629" width="0.0130%" height="15" fill="rgb(220,99,45)" fg:x="122463" fg:w="63"/><text x="25.6164%" y="639.50"></text></g><g><title>__mmap64 (63 samples, 0.01%)</title><rect x="25.3664%" y="613" width="0.0130%" height="15" fill="rgb(249,89,25)" fg:x="122463" fg:w="63"/><text x="25.6164%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (95 samples, 0.02%)</title><rect x="25.3637%" y="661" width="0.0197%" height="15" fill="rgb(239,193,0)" fg:x="122450" fg:w="95"/><text x="25.6137%" y="671.50"></text></g><g><title>_dl_catch_exception (135 samples, 0.03%)</title><rect x="25.3593%" y="709" width="0.0280%" height="15" fill="rgb(231,126,1)" fg:x="122429" fg:w="135"/><text x="25.6093%" y="719.50"></text></g><g><title>openaux (135 samples, 0.03%)</title><rect x="25.3593%" y="693" width="0.0280%" height="15" fill="rgb(243,166,3)" fg:x="122429" fg:w="135"/><text x="25.6093%" y="703.50"></text></g><g><title>_dl_map_object (135 samples, 0.03%)</title><rect x="25.3593%" y="677" width="0.0280%" height="15" fill="rgb(223,22,34)" fg:x="122429" fg:w="135"/><text x="25.6093%" y="687.50"></text></g><g><title>_dl_map_object_deps (144 samples, 0.03%)</title><rect x="25.3591%" y="725" width="0.0298%" height="15" fill="rgb(251,52,51)" fg:x="122428" fg:w="144"/><text x="25.6091%" y="735.50"></text></g><g><title>dl_new_hash (59 samples, 0.01%)</title><rect x="25.4090%" y="661" width="0.0122%" height="15" fill="rgb(221,165,28)" fg:x="122669" fg:w="59"/><text x="25.6590%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (169 samples, 0.04%)</title><rect x="25.4078%" y="677" width="0.0350%" height="15" fill="rgb(218,121,47)" fg:x="122663" fg:w="169"/><text x="25.6578%" y="687.50"></text></g><g><title>do_lookup_x (104 samples, 0.02%)</title><rect x="25.4213%" y="661" width="0.0215%" height="15" fill="rgb(209,120,9)" fg:x="122728" fg:w="104"/><text x="25.6713%" y="671.50"></text></g><g><title>elf_machine_rela (217 samples, 0.04%)</title><rect x="25.3989%" y="693" width="0.0449%" height="15" fill="rgb(236,68,12)" fg:x="122620" fg:w="217"/><text x="25.6489%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (265 samples, 0.05%)</title><rect x="25.3933%" y="709" width="0.0549%" height="15" fill="rgb(225,194,26)" fg:x="122593" fg:w="265"/><text x="25.6433%" y="719.50"></text></g><g><title>_dl_relocate_object (276 samples, 0.06%)</title><rect x="25.3921%" y="725" width="0.0572%" height="15" fill="rgb(231,84,39)" fg:x="122587" fg:w="276"/><text x="25.6421%" y="735.50"></text></g><g><title>[ld-2.31.so] (450 samples, 0.09%)</title><rect x="25.3579%" y="741" width="0.0932%" height="15" fill="rgb(210,11,45)" fg:x="122422" fg:w="450"/><text x="25.6079%" y="751.50"></text></g><g><title>_dl_start_final (455 samples, 0.09%)</title><rect x="25.3579%" y="773" width="0.0942%" height="15" fill="rgb(224,54,52)" fg:x="122422" fg:w="455"/><text x="25.6079%" y="783.50"></text></g><g><title>_dl_sysdep_start (455 samples, 0.09%)</title><rect x="25.3579%" y="757" width="0.0942%" height="15" fill="rgb(238,102,14)" fg:x="122422" fg:w="455"/><text x="25.6079%" y="767.50"></text></g><g><title>_dl_start (458 samples, 0.09%)</title><rect x="25.3579%" y="789" width="0.0949%" height="15" fill="rgb(243,160,52)" fg:x="122422" fg:w="458"/><text x="25.6079%" y="799.50"></text></g><g><title>_start (699 samples, 0.14%)</title><rect x="25.3100%" y="805" width="0.1448%" height="15" fill="rgb(216,114,19)" fg:x="122191" fg:w="699"/><text x="25.5600%" y="815.50"></text></g><g><title>asm_exc_page_fault (95 samples, 0.02%)</title><rect x="25.4548%" y="805" width="0.0197%" height="15" fill="rgb(244,166,37)" fg:x="122890" fg:w="95"/><text x="25.7048%" y="815.50"></text></g><g><title>begin_new_exec (50 samples, 0.01%)</title><rect x="25.4759%" y="709" width="0.0104%" height="15" fill="rgb(246,29,44)" fg:x="122992" fg:w="50"/><text x="25.7259%" y="719.50"></text></g><g><title>mmput (49 samples, 0.01%)</title><rect x="25.4762%" y="693" width="0.0101%" height="15" fill="rgb(215,56,53)" fg:x="122993" fg:w="49"/><text x="25.7262%" y="703.50"></text></g><g><title>exit_mmap (49 samples, 0.01%)</title><rect x="25.4762%" y="677" width="0.0101%" height="15" fill="rgb(217,60,2)" fg:x="122993" fg:w="49"/><text x="25.7262%" y="687.50"></text></g><g><title>load_elf_binary (73 samples, 0.02%)</title><rect x="25.4745%" y="725" width="0.0151%" height="15" fill="rgb(207,26,24)" fg:x="122985" fg:w="73"/><text x="25.7245%" y="735.50"></text></g><g><title>__x64_sys_execve (74 samples, 0.02%)</title><rect x="25.4745%" y="773" width="0.0153%" height="15" fill="rgb(252,210,15)" fg:x="122985" fg:w="74"/><text x="25.7245%" y="783.50"></text></g><g><title>do_execveat_common (74 samples, 0.02%)</title><rect x="25.4745%" y="757" width="0.0153%" height="15" fill="rgb(253,209,26)" fg:x="122985" fg:w="74"/><text x="25.7245%" y="767.50"></text></g><g><title>bprm_execve (74 samples, 0.02%)</title><rect x="25.4745%" y="741" width="0.0153%" height="15" fill="rgb(238,170,14)" fg:x="122985" fg:w="74"/><text x="25.7245%" y="751.50"></text></g><g><title>mmput (104 samples, 0.02%)</title><rect x="25.4915%" y="741" width="0.0215%" height="15" fill="rgb(216,178,15)" fg:x="123067" fg:w="104"/><text x="25.7415%" y="751.50"></text></g><g><title>exit_mmap (104 samples, 0.02%)</title><rect x="25.4915%" y="725" width="0.0215%" height="15" fill="rgb(250,197,2)" fg:x="123067" fg:w="104"/><text x="25.7415%" y="735.50"></text></g><g><title>__x64_sys_exit (140 samples, 0.03%)</title><rect x="25.4898%" y="773" width="0.0290%" height="15" fill="rgb(212,70,42)" fg:x="123059" fg:w="140"/><text x="25.7398%" y="783.50"></text></g><g><title>do_exit (140 samples, 0.03%)</title><rect x="25.4898%" y="757" width="0.0290%" height="15" fill="rgb(227,213,9)" fg:x="123059" fg:w="140"/><text x="25.7398%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (263 samples, 0.05%)</title><rect x="25.4745%" y="805" width="0.0545%" height="15" fill="rgb(245,99,25)" fg:x="122985" fg:w="263"/><text x="25.7245%" y="815.50"></text></g><g><title>do_syscall_64 (263 samples, 0.05%)</title><rect x="25.4745%" y="789" width="0.0545%" height="15" fill="rgb(250,82,29)" fg:x="122985" fg:w="263"/><text x="25.7245%" y="799.50"></text></g><g><title>__x64_sys_exit_group (49 samples, 0.01%)</title><rect x="25.5188%" y="773" width="0.0101%" height="15" fill="rgb(241,226,54)" fg:x="123199" fg:w="49"/><text x="25.7688%" y="783.50"></text></g><g><title>do_group_exit (49 samples, 0.01%)</title><rect x="25.5188%" y="757" width="0.0101%" height="15" fill="rgb(221,99,41)" fg:x="123199" fg:w="49"/><text x="25.7688%" y="767.50"></text></g><g><title>do_exit (49 samples, 0.01%)</title><rect x="25.5188%" y="741" width="0.0101%" height="15" fill="rgb(213,90,21)" fg:x="123199" fg:w="49"/><text x="25.7688%" y="751.50"></text></g><g><title>linux-sandbox (2,241 samples, 0.46%)</title><rect x="25.0652%" y="821" width="0.4642%" height="15" fill="rgb(205,208,24)" fg:x="121009" fg:w="2241"/><text x="25.3152%" y="831.50"></text></g><g><title>__libc_start_main (50 samples, 0.01%)</title><rect x="25.5327%" y="789" width="0.0104%" height="15" fill="rgb(246,31,12)" fg:x="123266" fg:w="50"/><text x="25.7827%" y="799.50"></text></g><g><title>_dl_start_final (65 samples, 0.01%)</title><rect x="25.5431%" y="773" width="0.0135%" height="15" fill="rgb(213,154,6)" fg:x="123316" fg:w="65"/><text x="25.7931%" y="783.50"></text></g><g><title>_dl_sysdep_start (65 samples, 0.01%)</title><rect x="25.5431%" y="757" width="0.0135%" height="15" fill="rgb(222,163,29)" fg:x="123316" fg:w="65"/><text x="25.7931%" y="767.50"></text></g><g><title>[ld-2.31.so] (65 samples, 0.01%)</title><rect x="25.5431%" y="741" width="0.0135%" height="15" fill="rgb(227,201,8)" fg:x="123316" fg:w="65"/><text x="25.7931%" y="751.50"></text></g><g><title>_dl_start (66 samples, 0.01%)</title><rect x="25.5431%" y="789" width="0.0137%" height="15" fill="rgb(233,9,32)" fg:x="123316" fg:w="66"/><text x="25.7931%" y="799.50"></text></g><g><title>_start (118 samples, 0.02%)</title><rect x="25.5327%" y="805" width="0.0244%" height="15" fill="rgb(217,54,24)" fg:x="123266" fg:w="118"/><text x="25.7827%" y="815.50"></text></g><g><title>process-wrapper (154 samples, 0.03%)</title><rect x="25.5306%" y="821" width="0.0319%" height="15" fill="rgb(235,192,0)" fg:x="123256" fg:w="154"/><text x="25.7806%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="25.5816%" y="757" width="0.0166%" height="15" fill="rgb(235,45,9)" fg:x="123502" fg:w="80"/><text x="25.8316%" y="767.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="25.5816%" y="741" width="0.0166%" height="15" fill="rgb(246,42,40)" fg:x="123502" fg:w="80"/><text x="25.8316%" y="751.50"></text></g><g><title>kernel_wait4 (80 samples, 0.02%)</title><rect x="25.5816%" y="725" width="0.0166%" height="15" fill="rgb(248,111,24)" fg:x="123502" fg:w="80"/><text x="25.8316%" y="735.50"></text></g><g><title>do_wait (79 samples, 0.02%)</title><rect x="25.5818%" y="709" width="0.0164%" height="15" fill="rgb(249,65,22)" fg:x="123503" fg:w="79"/><text x="25.8318%" y="719.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (82 samples, 0.02%)</title><rect x="25.5814%" y="789" width="0.0170%" height="15" fill="rgb(238,111,51)" fg:x="123501" fg:w="82"/><text x="25.8314%" y="799.50"></text></g><g><title>__GI___wait4 (82 samples, 0.02%)</title><rect x="25.5814%" y="773" width="0.0170%" height="15" fill="rgb(250,118,22)" fg:x="123501" fg:w="82"/><text x="25.8314%" y="783.50"></text></g><g><title>[perf-987172.map] (201 samples, 0.04%)</title><rect x="25.5636%" y="805" width="0.0416%" height="15" fill="rgb(234,84,26)" fg:x="123415" fg:w="201"/><text x="25.8136%" y="815.50"></text></g><g><title>process_reaper (208 samples, 0.04%)</title><rect x="25.5625%" y="821" width="0.0431%" height="15" fill="rgb(243,172,12)" fg:x="123410" fg:w="208"/><text x="25.8125%" y="831.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="25.6997%" y="629" width="0.0106%" height="15" fill="rgb(236,150,49)" fg:x="124072" fg:w="51"/><text x="25.9497%" y="639.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="25.6999%" y="613" width="0.0104%" height="15" fill="rgb(225,197,26)" fg:x="124073" fg:w="50"/><text x="25.9499%" y="623.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="25.6990%" y="693" width="0.0120%" height="15" fill="rgb(214,17,42)" fg:x="124069" fg:w="58"/><text x="25.9490%" y="703.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="25.6990%" y="677" width="0.0120%" height="15" fill="rgb(224,165,40)" fg:x="124069" fg:w="58"/><text x="25.9490%" y="687.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="25.6994%" y="661" width="0.0116%" height="15" fill="rgb(246,100,4)" fg:x="124071" fg:w="56"/><text x="25.9494%" y="671.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="25.6994%" y="645" width="0.0116%" height="15" fill="rgb(222,103,0)" fg:x="124071" fg:w="56"/><text x="25.9494%" y="655.50"></text></g><g><title>__pthread_cond_wait (71 samples, 0.01%)</title><rect x="25.6974%" y="757" width="0.0147%" height="15" fill="rgb(227,189,26)" fg:x="124061" fg:w="71"/><text x="25.9474%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (71 samples, 0.01%)</title><rect x="25.6974%" y="741" width="0.0147%" height="15" fill="rgb(214,202,17)" fg:x="124061" fg:w="71"/><text x="25.9474%" y="751.50"></text></g><g><title>futex_wait_cancelable (67 samples, 0.01%)</title><rect x="25.6982%" y="725" width="0.0139%" height="15" fill="rgb(229,111,3)" fg:x="124065" fg:w="67"/><text x="25.9482%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="25.6990%" y="709" width="0.0130%" height="15" fill="rgb(229,172,15)" fg:x="124069" fg:w="63"/><text x="25.9490%" y="719.50"></text></g><g><title>Parker::park (98 samples, 0.02%)</title><rect x="25.6941%" y="773" width="0.0203%" height="15" fill="rgb(230,224,35)" fg:x="124045" fg:w="98"/><text x="25.9441%" y="783.50"></text></g><g><title>Unsafe_Park (106 samples, 0.02%)</title><rect x="25.6930%" y="789" width="0.0220%" height="15" fill="rgb(251,141,6)" fg:x="124040" fg:w="106"/><text x="25.9430%" y="799.50"></text></g><g><title>[perf-987172.map] (515 samples, 0.11%)</title><rect x="25.6102%" y="805" width="0.1067%" height="15" fill="rgb(225,208,6)" fg:x="123640" fg:w="515"/><text x="25.8602%" y="815.50"></text></g><g><title>profile-writer- (557 samples, 0.12%)</title><rect x="25.6056%" y="821" width="0.1154%" height="15" fill="rgb(246,181,16)" fg:x="123618" fg:w="557"/><text x="25.8556%" y="831.50"></text></g><g><title>[python3.9] (55 samples, 0.01%)</title><rect x="25.7342%" y="789" width="0.0114%" height="15" fill="rgb(227,129,36)" fg:x="124239" fg:w="55"/><text x="25.9842%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (93 samples, 0.02%)</title><rect x="25.7469%" y="789" width="0.0193%" height="15" fill="rgb(248,117,24)" fg:x="124300" fg:w="93"/><text x="25.9969%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="25.7550%" y="773" width="0.0112%" height="15" fill="rgb(214,185,35)" fg:x="124339" fg:w="54"/><text x="26.0050%" y="783.50"></text></g><g><title>[unknown] (233 samples, 0.05%)</title><rect x="25.7264%" y="805" width="0.0483%" height="15" fill="rgb(236,150,34)" fg:x="124201" fg:w="233"/><text x="25.9764%" y="815.50"></text></g><g><title>Py_RunMain (59 samples, 0.01%)</title><rect x="25.7748%" y="757" width="0.0122%" height="15" fill="rgb(243,228,27)" fg:x="124435" fg:w="59"/><text x="26.0248%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (49 samples, 0.01%)</title><rect x="25.7871%" y="725" width="0.0101%" height="15" fill="rgb(245,77,44)" fg:x="124494" fg:w="49"/><text x="26.0371%" y="735.50"></text></g><g><title>[python3.9] (49 samples, 0.01%)</title><rect x="25.7871%" y="709" width="0.0101%" height="15" fill="rgb(235,214,42)" fg:x="124494" fg:w="49"/><text x="26.0371%" y="719.50"></text></g><g><title>__libc_start_main (109 samples, 0.02%)</title><rect x="25.7748%" y="789" width="0.0226%" height="15" fill="rgb(221,74,3)" fg:x="124435" fg:w="109"/><text x="26.0248%" y="799.50"></text></g><g><title>Py_BytesMain (109 samples, 0.02%)</title><rect x="25.7748%" y="773" width="0.0226%" height="15" fill="rgb(206,121,29)" fg:x="124435" fg:w="109"/><text x="26.0248%" y="783.50"></text></g><g><title>[python3.9] (50 samples, 0.01%)</title><rect x="25.7871%" y="757" width="0.0104%" height="15" fill="rgb(249,131,53)" fg:x="124494" fg:w="50"/><text x="26.0371%" y="767.50"></text></g><g><title>[python3.9] (50 samples, 0.01%)</title><rect x="25.7871%" y="741" width="0.0104%" height="15" fill="rgb(236,170,29)" fg:x="124494" fg:w="50"/><text x="26.0371%" y="751.50"></text></g><g><title>_start (114 samples, 0.02%)</title><rect x="25.7748%" y="805" width="0.0236%" height="15" fill="rgb(247,96,15)" fg:x="124435" fg:w="114"/><text x="26.0248%" y="815.50"></text></g><g><title>python3 (381 samples, 0.08%)</title><rect x="25.7218%" y="821" width="0.0789%" height="15" fill="rgb(211,210,7)" fg:x="124179" fg:w="381"/><text x="25.9718%" y="831.50"></text></g><g><title>[[stack]] (88 samples, 0.02%)</title><rect x="25.8036%" y="805" width="0.0182%" height="15" fill="rgb(240,88,50)" fg:x="124574" fg:w="88"/><text x="26.0536%" y="815.50"></text></g><g><title>[sed] (79 samples, 0.02%)</title><rect x="25.8585%" y="677" width="0.0164%" height="15" fill="rgb(209,229,26)" fg:x="124839" fg:w="79"/><text x="26.1085%" y="687.50"></text></g><g><title>[sed] (171 samples, 0.04%)</title><rect x="25.8494%" y="693" width="0.0354%" height="15" fill="rgb(210,68,23)" fg:x="124795" fg:w="171"/><text x="26.0994%" y="703.50"></text></g><g><title>[sed] (319 samples, 0.07%)</title><rect x="25.8484%" y="709" width="0.0661%" height="15" fill="rgb(229,180,13)" fg:x="124790" fg:w="319"/><text x="26.0984%" y="719.50"></text></g><g><title>[sed] (372 samples, 0.08%)</title><rect x="25.8424%" y="725" width="0.0771%" height="15" fill="rgb(236,53,44)" fg:x="124761" fg:w="372"/><text x="26.0924%" y="735.50"></text></g><g><title>new_sync_write (59 samples, 0.01%)</title><rect x="25.9207%" y="549" width="0.0122%" height="15" fill="rgb(244,214,29)" fg:x="125139" fg:w="59"/><text x="26.1707%" y="559.50"></text></g><g><title>pipe_write (58 samples, 0.01%)</title><rect x="25.9209%" y="533" width="0.0120%" height="15" fill="rgb(220,75,29)" fg:x="125140" fg:w="58"/><text x="26.1709%" y="543.50"></text></g><g><title>__GI___fflush_unlocked (68 samples, 0.01%)</title><rect x="25.9194%" y="725" width="0.0141%" height="15" fill="rgb(214,183,37)" fg:x="125133" fg:w="68"/><text x="26.1694%" y="735.50"></text></g><g><title>_IO_new_file_sync (67 samples, 0.01%)</title><rect x="25.9196%" y="709" width="0.0139%" height="15" fill="rgb(239,117,29)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="719.50"></text></g><g><title>_IO_new_do_write (67 samples, 0.01%)</title><rect x="25.9196%" y="693" width="0.0139%" height="15" fill="rgb(237,171,35)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="703.50"></text></g><g><title>_IO_new_do_write (67 samples, 0.01%)</title><rect x="25.9196%" y="677" width="0.0139%" height="15" fill="rgb(229,178,53)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="687.50"></text></g><g><title>new_do_write (67 samples, 0.01%)</title><rect x="25.9196%" y="661" width="0.0139%" height="15" fill="rgb(210,102,19)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="671.50"></text></g><g><title>_IO_new_file_write (67 samples, 0.01%)</title><rect x="25.9196%" y="645" width="0.0139%" height="15" fill="rgb(235,127,22)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="655.50"></text></g><g><title>__GI___libc_write (67 samples, 0.01%)</title><rect x="25.9196%" y="629" width="0.0139%" height="15" fill="rgb(244,31,31)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="25.9196%" y="613" width="0.0139%" height="15" fill="rgb(231,43,21)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="623.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="25.9196%" y="597" width="0.0139%" height="15" fill="rgb(217,131,35)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="607.50"></text></g><g><title>ksys_write (67 samples, 0.01%)</title><rect x="25.9196%" y="581" width="0.0139%" height="15" fill="rgb(221,149,4)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="591.50"></text></g><g><title>vfs_write (65 samples, 0.01%)</title><rect x="25.9200%" y="565" width="0.0135%" height="15" fill="rgb(232,170,28)" fg:x="125136" fg:w="65"/><text x="26.1700%" y="575.50"></text></g><g><title>[sed] (525 samples, 0.11%)</title><rect x="25.8370%" y="741" width="0.1087%" height="15" fill="rgb(238,56,10)" fg:x="124735" fg:w="525"/><text x="26.0870%" y="751.50"></text></g><g><title>[sed] (553 samples, 0.11%)</title><rect x="25.8349%" y="757" width="0.1145%" height="15" fill="rgb(235,196,14)" fg:x="124725" fg:w="553"/><text x="26.0849%" y="767.50"></text></g><g><title>[sed] (608 samples, 0.13%)</title><rect x="25.8347%" y="773" width="0.1259%" height="15" fill="rgb(216,45,48)" fg:x="124724" fg:w="608"/><text x="26.0847%" y="783.50"></text></g><g><title>__libc_start_main (690 samples, 0.14%)</title><rect x="25.8347%" y="789" width="0.1429%" height="15" fill="rgb(238,213,17)" fg:x="124724" fg:w="690"/><text x="26.0847%" y="799.50"></text></g><g><title>__GI_exit (66 samples, 0.01%)</title><rect x="25.9640%" y="773" width="0.0137%" height="15" fill="rgb(212,13,2)" fg:x="125348" fg:w="66"/><text x="26.2140%" y="783.50"></text></g><g><title>__run_exit_handlers (66 samples, 0.01%)</title><rect x="25.9640%" y="757" width="0.0137%" height="15" fill="rgb(240,114,20)" fg:x="125348" fg:w="66"/><text x="26.2140%" y="767.50"></text></g><g><title>[sed] (704 samples, 0.15%)</title><rect x="25.8337%" y="805" width="0.1458%" height="15" fill="rgb(228,41,40)" fg:x="124719" fg:w="704"/><text x="26.0837%" y="815.50"></text></g><g><title>[unknown] (105 samples, 0.02%)</title><rect x="25.9795%" y="805" width="0.0217%" height="15" fill="rgb(244,132,35)" fg:x="125423" fg:w="105"/><text x="26.2295%" y="815.50"></text></g><g><title>filesystems_proc_show (67 samples, 0.01%)</title><rect x="26.0176%" y="549" width="0.0139%" height="15" fill="rgb(253,189,4)" fg:x="125607" fg:w="67"/><text x="26.2676%" y="559.50"></text></g><g><title>seq_printf (51 samples, 0.01%)</title><rect x="26.0209%" y="533" width="0.0106%" height="15" fill="rgb(224,37,19)" fg:x="125623" fg:w="51"/><text x="26.2709%" y="543.50"></text></g><g><title>vsnprintf (49 samples, 0.01%)</title><rect x="26.0213%" y="517" width="0.0101%" height="15" fill="rgb(235,223,18)" fg:x="125625" fg:w="49"/><text x="26.2713%" y="527.50"></text></g><g><title>new_sync_read (84 samples, 0.02%)</title><rect x="26.0143%" y="597" width="0.0174%" height="15" fill="rgb(235,163,25)" fg:x="125591" fg:w="84"/><text x="26.2643%" y="607.50"></text></g><g><title>proc_reg_read_iter (83 samples, 0.02%)</title><rect x="26.0145%" y="581" width="0.0172%" height="15" fill="rgb(217,145,28)" fg:x="125592" fg:w="83"/><text x="26.2645%" y="591.50"></text></g><g><title>seq_read_iter (81 samples, 0.02%)</title><rect x="26.0149%" y="565" width="0.0168%" height="15" fill="rgb(223,223,32)" fg:x="125594" fg:w="81"/><text x="26.2649%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="26.0133%" y="661" width="0.0191%" height="15" fill="rgb(227,189,39)" fg:x="125586" fg:w="92"/><text x="26.2633%" y="671.50"></text></g><g><title>do_syscall_64 (91 samples, 0.02%)</title><rect x="26.0135%" y="645" width="0.0188%" height="15" fill="rgb(248,10,22)" fg:x="125587" fg:w="91"/><text x="26.2635%" y="655.50"></text></g><g><title>ksys_read (90 samples, 0.02%)</title><rect x="26.0137%" y="629" width="0.0186%" height="15" fill="rgb(248,46,39)" fg:x="125588" fg:w="90"/><text x="26.2637%" y="639.50"></text></g><g><title>vfs_read (90 samples, 0.02%)</title><rect x="26.0137%" y="613" width="0.0186%" height="15" fill="rgb(248,113,48)" fg:x="125588" fg:w="90"/><text x="26.2637%" y="623.50"></text></g><g><title>_IO_new_file_underflow (101 samples, 0.02%)</title><rect x="26.0116%" y="693" width="0.0209%" height="15" fill="rgb(245,16,25)" fg:x="125578" fg:w="101"/><text x="26.2616%" y="703.50"></text></g><g><title>__GI___libc_read (93 samples, 0.02%)</title><rect x="26.0133%" y="677" width="0.0193%" height="15" fill="rgb(249,152,16)" fg:x="125586" fg:w="93"/><text x="26.2633%" y="687.50"></text></g><g><title>_IO_getdelim (120 samples, 0.02%)</title><rect x="26.0085%" y="709" width="0.0249%" height="15" fill="rgb(250,16,1)" fg:x="125563" fg:w="120"/><text x="26.2585%" y="719.50"></text></g><g><title>__GI__dl_addr (102 samples, 0.02%)</title><rect x="26.0522%" y="645" width="0.0211%" height="15" fill="rgb(249,138,3)" fg:x="125774" fg:w="102"/><text x="26.3022%" y="655.50"></text></g><g><title>determine_info (98 samples, 0.02%)</title><rect x="26.0530%" y="629" width="0.0203%" height="15" fill="rgb(227,71,41)" fg:x="125778" fg:w="98"/><text x="26.3030%" y="639.50"></text></g><g><title>__fopen_internal (179 samples, 0.04%)</title><rect x="26.0373%" y="709" width="0.0371%" height="15" fill="rgb(209,184,23)" fg:x="125702" fg:w="179"/><text x="26.2873%" y="719.50"></text></g><g><title>malloc_hook_ini (108 samples, 0.02%)</title><rect x="26.0520%" y="693" width="0.0224%" height="15" fill="rgb(223,215,31)" fg:x="125773" fg:w="108"/><text x="26.3020%" y="703.50"></text></g><g><title>ptmalloc_init (108 samples, 0.02%)</title><rect x="26.0520%" y="677" width="0.0224%" height="15" fill="rgb(210,146,28)" fg:x="125773" fg:w="108"/><text x="26.3020%" y="687.50"></text></g><g><title>ptmalloc_init (108 samples, 0.02%)</title><rect x="26.0520%" y="661" width="0.0224%" height="15" fill="rgb(209,183,41)" fg:x="125773" fg:w="108"/><text x="26.3020%" y="671.50"></text></g><g><title>[libselinux.so.1] (354 samples, 0.07%)</title><rect x="26.0025%" y="741" width="0.0733%" height="15" fill="rgb(209,224,45)" fg:x="125534" fg:w="354"/><text x="26.2525%" y="751.50"></text></g><g><title>selinuxfs_exists (325 samples, 0.07%)</title><rect x="26.0085%" y="725" width="0.0673%" height="15" fill="rgb(224,209,51)" fg:x="125563" fg:w="325"/><text x="26.2585%" y="735.50"></text></g><g><title>_dl_start_user (375 samples, 0.08%)</title><rect x="26.0014%" y="805" width="0.0777%" height="15" fill="rgb(223,17,39)" fg:x="125529" fg:w="375"/><text x="26.2514%" y="815.50"></text></g><g><title>_dl_init (373 samples, 0.08%)</title><rect x="26.0019%" y="789" width="0.0773%" height="15" fill="rgb(234,204,37)" fg:x="125531" fg:w="373"/><text x="26.2519%" y="799.50"></text></g><g><title>call_init (372 samples, 0.08%)</title><rect x="26.0021%" y="773" width="0.0771%" height="15" fill="rgb(236,120,5)" fg:x="125532" fg:w="372"/><text x="26.2521%" y="783.50"></text></g><g><title>call_init (372 samples, 0.08%)</title><rect x="26.0021%" y="757" width="0.0771%" height="15" fill="rgb(248,97,27)" fg:x="125532" fg:w="372"/><text x="26.2521%" y="767.50"></text></g><g><title>do_syscall_64 (71 samples, 0.01%)</title><rect x="26.1009%" y="693" width="0.0147%" height="15" fill="rgb(240,66,17)" fg:x="126009" fg:w="71"/><text x="26.3509%" y="703.50"></text></g><g><title>do_faccessat (70 samples, 0.01%)</title><rect x="26.1011%" y="677" width="0.0145%" height="15" fill="rgb(210,79,3)" fg:x="126010" fg:w="70"/><text x="26.3511%" y="687.50"></text></g><g><title>__access (73 samples, 0.02%)</title><rect x="26.1007%" y="725" width="0.0151%" height="15" fill="rgb(214,176,27)" fg:x="126008" fg:w="73"/><text x="26.3507%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="26.1009%" y="709" width="0.0149%" height="15" fill="rgb(235,185,3)" fg:x="126009" fg:w="72"/><text x="26.3509%" y="719.50"></text></g><g><title>_dl_cache_libcmp (61 samples, 0.01%)</title><rect x="26.1408%" y="645" width="0.0126%" height="15" fill="rgb(227,24,12)" fg:x="126202" fg:w="61"/><text x="26.3908%" y="655.50"></text></g><g><title>do_filp_open (62 samples, 0.01%)</title><rect x="26.1638%" y="549" width="0.0128%" height="15" fill="rgb(252,169,48)" fg:x="126313" fg:w="62"/><text x="26.4138%" y="559.50"></text></g><g><title>path_openat (58 samples, 0.01%)</title><rect x="26.1647%" y="533" width="0.0120%" height="15" fill="rgb(212,65,1)" fg:x="126317" fg:w="58"/><text x="26.4147%" y="543.50"></text></g><g><title>__GI___open64_nocancel (91 samples, 0.02%)</title><rect x="26.1595%" y="629" width="0.0188%" height="15" fill="rgb(242,39,24)" fg:x="126292" fg:w="91"/><text x="26.4095%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="26.1599%" y="613" width="0.0184%" height="15" fill="rgb(249,32,23)" fg:x="126294" fg:w="89"/><text x="26.4099%" y="623.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="26.1599%" y="597" width="0.0184%" height="15" fill="rgb(251,195,23)" fg:x="126294" fg:w="89"/><text x="26.4099%" y="607.50"></text></g><g><title>__x64_sys_openat (89 samples, 0.02%)</title><rect x="26.1599%" y="581" width="0.0184%" height="15" fill="rgb(236,174,8)" fg:x="126294" fg:w="89"/><text x="26.4099%" y="591.50"></text></g><g><title>do_sys_openat2 (88 samples, 0.02%)</title><rect x="26.1601%" y="565" width="0.0182%" height="15" fill="rgb(220,197,8)" fg:x="126295" fg:w="88"/><text x="26.4101%" y="575.50"></text></g><g><title>_dl_sysdep_read_whole_file (172 samples, 0.04%)</title><rect x="26.1535%" y="645" width="0.0356%" height="15" fill="rgb(240,108,37)" fg:x="126263" fg:w="172"/><text x="26.4035%" y="655.50"></text></g><g><title>__mmap64 (52 samples, 0.01%)</title><rect x="26.1783%" y="629" width="0.0108%" height="15" fill="rgb(232,176,24)" fg:x="126383" fg:w="52"/><text x="26.4283%" y="639.50"></text></g><g><title>__mmap64 (51 samples, 0.01%)</title><rect x="26.1785%" y="613" width="0.0106%" height="15" fill="rgb(243,35,29)" fg:x="126384" fg:w="51"/><text x="26.4285%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="26.1790%" y="597" width="0.0101%" height="15" fill="rgb(210,37,18)" fg:x="126386" fg:w="49"/><text x="26.4290%" y="607.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="26.1790%" y="581" width="0.0101%" height="15" fill="rgb(224,184,40)" fg:x="126386" fg:w="49"/><text x="26.4290%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (49 samples, 0.01%)</title><rect x="26.1790%" y="565" width="0.0101%" height="15" fill="rgb(236,39,29)" fg:x="126386" fg:w="49"/><text x="26.4290%" y="575.50"></text></g><g><title>do_user_addr_fault (50 samples, 0.01%)</title><rect x="26.1895%" y="613" width="0.0104%" height="15" fill="rgb(232,48,39)" fg:x="126437" fg:w="50"/><text x="26.4395%" y="623.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.01%)</title><rect x="26.1891%" y="645" width="0.0110%" height="15" fill="rgb(236,34,42)" fg:x="126435" fg:w="53"/><text x="26.4391%" y="655.50"></text></g><g><title>exc_page_fault (51 samples, 0.01%)</title><rect x="26.1895%" y="629" width="0.0106%" height="15" fill="rgb(243,106,37)" fg:x="126437" fg:w="51"/><text x="26.4395%" y="639.50"></text></g><g><title>_dl_load_cache_lookup (326 samples, 0.07%)</title><rect x="26.1332%" y="661" width="0.0675%" height="15" fill="rgb(218,96,6)" fg:x="126165" fg:w="326"/><text x="26.3832%" y="671.50"></text></g><g><title>handle_mm_fault (76 samples, 0.02%)</title><rect x="26.2249%" y="565" width="0.0157%" height="15" fill="rgb(235,130,12)" fg:x="126608" fg:w="76"/><text x="26.4749%" y="575.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="26.2235%" y="613" width="0.0176%" height="15" fill="rgb(231,95,0)" fg:x="126601" fg:w="85"/><text x="26.4735%" y="623.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="26.2235%" y="597" width="0.0176%" height="15" fill="rgb(228,12,23)" fg:x="126601" fg:w="85"/><text x="26.4735%" y="607.50"></text></g><g><title>do_user_addr_fault (85 samples, 0.02%)</title><rect x="26.2235%" y="581" width="0.0176%" height="15" fill="rgb(216,12,1)" fg:x="126601" fg:w="85"/><text x="26.4735%" y="591.50"></text></g><g><title>[ld-2.31.so] (112 samples, 0.02%)</title><rect x="26.2196%" y="629" width="0.0232%" height="15" fill="rgb(219,59,3)" fg:x="126582" fg:w="112"/><text x="26.4696%" y="639.50"></text></g><g><title>vma_interval_tree_insert (97 samples, 0.02%)</title><rect x="26.2763%" y="453" width="0.0201%" height="15" fill="rgb(215,208,46)" fg:x="126856" fg:w="97"/><text x="26.5263%" y="463.50"></text></g><g><title>__vma_adjust (181 samples, 0.04%)</title><rect x="26.2643%" y="469" width="0.0375%" height="15" fill="rgb(254,224,29)" fg:x="126798" fg:w="181"/><text x="26.5143%" y="479.50"></text></g><g><title>__split_vma (252 samples, 0.05%)</title><rect x="26.2633%" y="485" width="0.0522%" height="15" fill="rgb(232,14,29)" fg:x="126793" fg:w="252"/><text x="26.5133%" y="495.50"></text></g><g><title>vm_area_dup (65 samples, 0.01%)</title><rect x="26.3020%" y="469" width="0.0135%" height="15" fill="rgb(208,45,52)" fg:x="126980" fg:w="65"/><text x="26.5520%" y="479.50"></text></g><g><title>unmap_region (83 samples, 0.02%)</title><rect x="26.3273%" y="485" width="0.0172%" height="15" fill="rgb(234,191,28)" fg:x="127102" fg:w="83"/><text x="26.5773%" y="495.50"></text></g><g><title>__do_munmap (403 samples, 0.08%)</title><rect x="26.2612%" y="501" width="0.0835%" height="15" fill="rgb(244,67,43)" fg:x="126783" fg:w="403"/><text x="26.5112%" y="511.50"></text></g><g><title>perf_iterate_sb (75 samples, 0.02%)</title><rect x="26.3629%" y="485" width="0.0155%" height="15" fill="rgb(236,189,24)" fg:x="127274" fg:w="75"/><text x="26.6129%" y="495.50"></text></g><g><title>perf_iterate_ctx (71 samples, 0.01%)</title><rect x="26.3637%" y="469" width="0.0147%" height="15" fill="rgb(239,214,33)" fg:x="127278" fg:w="71"/><text x="26.6137%" y="479.50"></text></g><g><title>perf_event_mmap (170 samples, 0.04%)</title><rect x="26.3461%" y="501" width="0.0352%" height="15" fill="rgb(226,176,41)" fg:x="127193" fg:w="170"/><text x="26.5961%" y="511.50"></text></g><g><title>vma_link (73 samples, 0.02%)</title><rect x="26.3911%" y="501" width="0.0151%" height="15" fill="rgb(248,47,8)" fg:x="127410" fg:w="73"/><text x="26.6411%" y="511.50"></text></g><g><title>mmap_region (765 samples, 0.16%)</title><rect x="26.2539%" y="517" width="0.1585%" height="15" fill="rgb(218,81,44)" fg:x="126748" fg:w="765"/><text x="26.5039%" y="527.50"></text></g><g><title>do_mmap (784 samples, 0.16%)</title><rect x="26.2504%" y="533" width="0.1624%" height="15" fill="rgb(213,98,6)" fg:x="126731" fg:w="784"/><text x="26.5004%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (813 samples, 0.17%)</title><rect x="26.2471%" y="565" width="0.1684%" height="15" fill="rgb(222,85,22)" fg:x="126715" fg:w="813"/><text x="26.4971%" y="575.50"></text></g><g><title>vm_mmap_pgoff (798 samples, 0.17%)</title><rect x="26.2502%" y="549" width="0.1653%" height="15" fill="rgb(239,46,39)" fg:x="126730" fg:w="798"/><text x="26.5002%" y="559.50"></text></g><g><title>do_mmap (66 samples, 0.01%)</title><rect x="26.4155%" y="549" width="0.0137%" height="15" fill="rgb(237,12,29)" fg:x="127528" fg:w="66"/><text x="26.6655%" y="559.50"></text></g><g><title>mmap_region (65 samples, 0.01%)</title><rect x="26.4157%" y="533" width="0.0135%" height="15" fill="rgb(214,77,8)" fg:x="127529" fg:w="65"/><text x="26.6657%" y="543.50"></text></g><g><title>do_syscall_64 (886 samples, 0.18%)</title><rect x="26.2461%" y="581" width="0.1835%" height="15" fill="rgb(217,168,37)" fg:x="126710" fg:w="886"/><text x="26.4961%" y="591.50"></text></g><g><title>vm_mmap_pgoff (68 samples, 0.01%)</title><rect x="26.4155%" y="565" width="0.0141%" height="15" fill="rgb(221,217,23)" fg:x="127528" fg:w="68"/><text x="26.6655%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (889 samples, 0.18%)</title><rect x="26.2459%" y="597" width="0.1841%" height="15" fill="rgb(243,229,36)" fg:x="126709" fg:w="889"/><text x="26.4959%" y="607.50"></text></g><g><title>__mmap64 (908 samples, 0.19%)</title><rect x="26.2428%" y="629" width="0.1881%" height="15" fill="rgb(251,163,40)" fg:x="126694" fg:w="908"/><text x="26.4928%" y="639.50"></text></g><g><title>__mmap64 (907 samples, 0.19%)</title><rect x="26.2430%" y="613" width="0.1879%" height="15" fill="rgb(237,222,12)" fg:x="126695" fg:w="907"/><text x="26.4930%" y="623.50"></text></g><g><title>_dl_map_segments (1,030 samples, 0.21%)</title><rect x="26.2177%" y="645" width="0.2133%" height="15" fill="rgb(248,132,6)" fg:x="126573" fg:w="1030"/><text x="26.4677%" y="655.50"></text></g><g><title>_dl_new_object (75 samples, 0.02%)</title><rect x="26.4310%" y="645" width="0.0155%" height="15" fill="rgb(227,167,50)" fg:x="127603" fg:w="75"/><text x="26.6810%" y="655.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="26.4495%" y="629" width="0.0114%" height="15" fill="rgb(242,84,37)" fg:x="127692" fg:w="55"/><text x="26.6995%" y="639.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="26.4495%" y="613" width="0.0114%" height="15" fill="rgb(212,4,50)" fg:x="127692" fg:w="55"/><text x="26.6995%" y="623.50"></text></g><g><title>do_user_addr_fault (53 samples, 0.01%)</title><rect x="26.4499%" y="597" width="0.0110%" height="15" fill="rgb(230,228,32)" fg:x="127694" fg:w="53"/><text x="26.6999%" y="607.50"></text></g><g><title>_dl_setup_hash (80 samples, 0.02%)</title><rect x="26.4466%" y="645" width="0.0166%" height="15" fill="rgb(248,217,23)" fg:x="127678" fg:w="80"/><text x="26.6966%" y="655.50"></text></g><g><title>handle_mm_fault (108 samples, 0.02%)</title><rect x="26.4739%" y="581" width="0.0224%" height="15" fill="rgb(238,197,32)" fg:x="127810" fg:w="108"/><text x="26.7239%" y="591.50"></text></g><g><title>wp_page_copy (78 samples, 0.02%)</title><rect x="26.4801%" y="565" width="0.0162%" height="15" fill="rgb(236,106,1)" fg:x="127840" fg:w="78"/><text x="26.7301%" y="575.50"></text></g><g><title>do_user_addr_fault (124 samples, 0.03%)</title><rect x="26.4714%" y="597" width="0.0257%" height="15" fill="rgb(219,228,13)" fg:x="127798" fg:w="124"/><text x="26.7214%" y="607.50"></text></g><g><title>exc_page_fault (131 samples, 0.03%)</title><rect x="26.4704%" y="613" width="0.0271%" height="15" fill="rgb(238,30,35)" fg:x="127793" fg:w="131"/><text x="26.7204%" y="623.50"></text></g><g><title>asm_exc_page_fault (133 samples, 0.03%)</title><rect x="26.4702%" y="629" width="0.0275%" height="15" fill="rgb(236,70,23)" fg:x="127792" fg:w="133"/><text x="26.7202%" y="639.50"></text></g><g><title>_dl_map_object_from_fd (1,451 samples, 0.30%)</title><rect x="26.2007%" y="661" width="0.3006%" height="15" fill="rgb(249,104,48)" fg:x="126491" fg:w="1451"/><text x="26.4507%" y="671.50"></text></g><g><title>elf_get_dynamic_info (184 samples, 0.04%)</title><rect x="26.4631%" y="645" width="0.0381%" height="15" fill="rgb(254,117,50)" fg:x="127758" fg:w="184"/><text x="26.7131%" y="655.50"></text></g><g><title>do_filp_open (139 samples, 0.03%)</title><rect x="26.5108%" y="565" width="0.0288%" height="15" fill="rgb(223,152,4)" fg:x="127988" fg:w="139"/><text x="26.7608%" y="575.50"></text></g><g><title>path_openat (135 samples, 0.03%)</title><rect x="26.5116%" y="549" width="0.0280%" height="15" fill="rgb(245,6,2)" fg:x="127992" fg:w="135"/><text x="26.7616%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.04%)</title><rect x="26.5077%" y="629" width="0.0369%" height="15" fill="rgb(249,150,24)" fg:x="127973" fg:w="178"/><text x="26.7577%" y="639.50"></text></g><g><title>do_syscall_64 (178 samples, 0.04%)</title><rect x="26.5077%" y="613" width="0.0369%" height="15" fill="rgb(228,185,42)" fg:x="127973" fg:w="178"/><text x="26.7577%" y="623.50"></text></g><g><title>__x64_sys_openat (177 samples, 0.04%)</title><rect x="26.5079%" y="597" width="0.0367%" height="15" fill="rgb(226,39,33)" fg:x="127974" fg:w="177"/><text x="26.7579%" y="607.50"></text></g><g><title>do_sys_openat2 (175 samples, 0.04%)</title><rect x="26.5083%" y="581" width="0.0362%" height="15" fill="rgb(221,166,19)" fg:x="127976" fg:w="175"/><text x="26.7583%" y="591.50"></text></g><g><title>__GI___open64_nocancel (183 samples, 0.04%)</title><rect x="26.5073%" y="645" width="0.0379%" height="15" fill="rgb(209,109,2)" fg:x="127971" fg:w="183"/><text x="26.7573%" y="655.50"></text></g><g><title>open_verify (237 samples, 0.05%)</title><rect x="26.5054%" y="661" width="0.0491%" height="15" fill="rgb(252,216,26)" fg:x="127962" fg:w="237"/><text x="26.7554%" y="671.50"></text></g><g><title>_dl_catch_exception (2,113 samples, 0.44%)</title><rect x="26.1284%" y="709" width="0.4377%" height="15" fill="rgb(227,173,36)" fg:x="126142" fg:w="2113"/><text x="26.3784%" y="719.50"></text></g><g><title>openaux (2,109 samples, 0.44%)</title><rect x="26.1292%" y="693" width="0.4368%" height="15" fill="rgb(209,90,7)" fg:x="126146" fg:w="2109"/><text x="26.3792%" y="703.50"></text></g><g><title>_dl_map_object (2,109 samples, 0.44%)</title><rect x="26.1292%" y="677" width="0.4368%" height="15" fill="rgb(250,194,11)" fg:x="126146" fg:w="2109"/><text x="26.3792%" y="687.50"></text></g><g><title>strcmp (56 samples, 0.01%)</title><rect x="26.5545%" y="661" width="0.0116%" height="15" fill="rgb(220,72,50)" fg:x="128199" fg:w="56"/><text x="26.8045%" y="671.50"></text></g><g><title>_dl_map_object_deps (2,173 samples, 0.45%)</title><rect x="26.1234%" y="725" width="0.4501%" height="15" fill="rgb(222,106,48)" fg:x="126118" fg:w="2173"/><text x="26.3734%" y="735.50"></text></g><g><title>__vma_adjust (68 samples, 0.01%)</title><rect x="26.5870%" y="581" width="0.0141%" height="15" fill="rgb(216,220,45)" fg:x="128356" fg:w="68"/><text x="26.8370%" y="591.50"></text></g><g><title>__split_vma (115 samples, 0.02%)</title><rect x="26.5868%" y="597" width="0.0238%" height="15" fill="rgb(234,112,18)" fg:x="128355" fg:w="115"/><text x="26.8368%" y="607.50"></text></g><g><title>perf_event_mmap (71 samples, 0.01%)</title><rect x="26.6179%" y="597" width="0.0147%" height="15" fill="rgb(206,179,9)" fg:x="128505" fg:w="71"/><text x="26.8679%" y="607.50"></text></g><g><title>mprotect_fixup (229 samples, 0.05%)</title><rect x="26.5862%" y="613" width="0.0474%" height="15" fill="rgb(215,115,40)" fg:x="128352" fg:w="229"/><text x="26.8362%" y="623.50"></text></g><g><title>do_syscall_64 (244 samples, 0.05%)</title><rect x="26.5839%" y="661" width="0.0505%" height="15" fill="rgb(222,69,34)" fg:x="128341" fg:w="244"/><text x="26.8339%" y="671.50"></text></g><g><title>__x64_sys_mprotect (244 samples, 0.05%)</title><rect x="26.5839%" y="645" width="0.0505%" height="15" fill="rgb(209,161,10)" fg:x="128341" fg:w="244"/><text x="26.8339%" y="655.50"></text></g><g><title>do_mprotect_pkey (244 samples, 0.05%)</title><rect x="26.5839%" y="629" width="0.0505%" height="15" fill="rgb(217,6,38)" fg:x="128341" fg:w="244"/><text x="26.8339%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (245 samples, 0.05%)</title><rect x="26.5839%" y="677" width="0.0507%" height="15" fill="rgb(229,229,48)" fg:x="128341" fg:w="245"/><text x="26.8339%" y="687.50"></text></g><g><title>_dl_protect_relro (252 samples, 0.05%)</title><rect x="26.5829%" y="709" width="0.0522%" height="15" fill="rgb(225,21,28)" fg:x="128336" fg:w="252"/><text x="26.8329%" y="719.50"></text></g><g><title>__mprotect (252 samples, 0.05%)</title><rect x="26.5829%" y="693" width="0.0522%" height="15" fill="rgb(206,33,13)" fg:x="128336" fg:w="252"/><text x="26.8329%" y="703.50"></text></g><g><title>elf_machine_lazy_rel (52 samples, 0.01%)</title><rect x="26.6415%" y="693" width="0.0108%" height="15" fill="rgb(242,178,17)" fg:x="128619" fg:w="52"/><text x="26.8915%" y="703.50"></text></g><g><title>dl_new_hash (88 samples, 0.02%)</title><rect x="26.6825%" y="661" width="0.0182%" height="15" fill="rgb(220,162,5)" fg:x="128817" fg:w="88"/><text x="26.9325%" y="671.50"></text></g><g><title>check_match (153 samples, 0.03%)</title><rect x="26.7705%" y="645" width="0.0317%" height="15" fill="rgb(210,33,43)" fg:x="129242" fg:w="153"/><text x="27.0205%" y="655.50"></text></g><g><title>strcmp (106 samples, 0.02%)</title><rect x="26.7803%" y="629" width="0.0220%" height="15" fill="rgb(216,116,54)" fg:x="129289" fg:w="106"/><text x="27.0303%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (626 samples, 0.13%)</title><rect x="26.6742%" y="677" width="0.1297%" height="15" fill="rgb(249,92,24)" fg:x="128777" fg:w="626"/><text x="26.9242%" y="687.50"></text></g><g><title>do_lookup_x (498 samples, 0.10%)</title><rect x="26.7007%" y="661" width="0.1032%" height="15" fill="rgb(231,189,14)" fg:x="128905" fg:w="498"/><text x="26.9507%" y="671.50"></text></g><g><title>elf_machine_rela (752 samples, 0.16%)</title><rect x="26.6523%" y="693" width="0.1558%" height="15" fill="rgb(230,8,41)" fg:x="128671" fg:w="752"/><text x="26.9023%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (866 samples, 0.18%)</title><rect x="26.6351%" y="709" width="0.1794%" height="15" fill="rgb(249,7,27)" fg:x="128588" fg:w="866"/><text x="26.8851%" y="719.50"></text></g><g><title>_dl_relocate_object (1,135 samples, 0.24%)</title><rect x="26.5812%" y="725" width="0.2351%" height="15" fill="rgb(232,86,5)" fg:x="128328" fg:w="1135"/><text x="26.8312%" y="735.50"></text></g><g><title>__vm_munmap (53 samples, 0.01%)</title><rect x="26.8167%" y="645" width="0.0110%" height="15" fill="rgb(224,175,18)" fg:x="129465" fg:w="53"/><text x="27.0667%" y="655.50"></text></g><g><title>__do_munmap (53 samples, 0.01%)</title><rect x="26.8167%" y="629" width="0.0110%" height="15" fill="rgb(220,129,12)" fg:x="129465" fg:w="53"/><text x="27.0667%" y="639.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="26.8167%" y="677" width="0.0112%" height="15" fill="rgb(210,19,36)" fg:x="129465" fg:w="54"/><text x="27.0667%" y="687.50"></text></g><g><title>__x64_sys_munmap (54 samples, 0.01%)</title><rect x="26.8167%" y="661" width="0.0112%" height="15" fill="rgb(219,96,14)" fg:x="129465" fg:w="54"/><text x="27.0667%" y="671.50"></text></g><g><title>_dl_unload_cache (65 samples, 0.01%)</title><rect x="26.8163%" y="725" width="0.0135%" height="15" fill="rgb(249,106,1)" fg:x="129463" fg:w="65"/><text x="27.0663%" y="735.50"></text></g><g><title>munmap (64 samples, 0.01%)</title><rect x="26.8165%" y="709" width="0.0133%" height="15" fill="rgb(249,155,20)" fg:x="129464" fg:w="64"/><text x="27.0665%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="26.8167%" y="693" width="0.0130%" height="15" fill="rgb(244,168,9)" fg:x="129465" fg:w="63"/><text x="27.0667%" y="703.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="26.8298%" y="725" width="0.0114%" height="15" fill="rgb(216,23,50)" fg:x="129528" fg:w="55"/><text x="27.0798%" y="735.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="26.8298%" y="709" width="0.0114%" height="15" fill="rgb(224,219,20)" fg:x="129528" fg:w="55"/><text x="27.0798%" y="719.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="26.8300%" y="693" width="0.0112%" height="15" fill="rgb(222,156,15)" fg:x="129529" fg:w="54"/><text x="27.0800%" y="703.50"></text></g><g><title>[ld-2.31.so] (3,641 samples, 0.75%)</title><rect x="26.0918%" y="741" width="0.7542%" height="15" fill="rgb(231,97,17)" fg:x="125965" fg:w="3641"/><text x="26.3418%" y="751.50"></text></g><g><title>_dl_start_final (3,772 samples, 0.78%)</title><rect x="26.0878%" y="773" width="0.7813%" height="15" fill="rgb(218,70,48)" fg:x="125946" fg:w="3772"/><text x="26.3378%" y="783.50"></text></g><g><title>_dl_sysdep_start (3,770 samples, 0.78%)</title><rect x="26.0882%" y="757" width="0.7809%" height="15" fill="rgb(212,196,52)" fg:x="125948" fg:w="3770"/><text x="26.3382%" y="767.50"></text></g><g><title>_dl_start (3,810 samples, 0.79%)</title><rect x="26.0874%" y="789" width="0.7892%" height="15" fill="rgb(243,203,18)" fg:x="125944" fg:w="3810"/><text x="26.3374%" y="799.50"></text></g><g><title>_start (3,819 samples, 0.79%)</title><rect x="26.0870%" y="805" width="0.7910%" height="15" fill="rgb(252,125,41)" fg:x="125942" fg:w="3819"/><text x="26.3370%" y="815.50"></text></g><g><title>asm_exc_page_fault (220 samples, 0.05%)</title><rect x="26.8780%" y="805" width="0.0456%" height="15" fill="rgb(223,180,33)" fg:x="129761" fg:w="220"/><text x="27.1280%" y="815.50"></text></g><g><title>__do_munmap (66 samples, 0.01%)</title><rect x="26.9449%" y="677" width="0.0137%" height="15" fill="rgb(254,159,46)" fg:x="130084" fg:w="66"/><text x="27.1949%" y="687.50"></text></g><g><title>__vm_munmap (68 samples, 0.01%)</title><rect x="26.9447%" y="693" width="0.0141%" height="15" fill="rgb(254,38,10)" fg:x="130083" fg:w="68"/><text x="27.1947%" y="703.50"></text></g><g><title>mmap_region (73 samples, 0.02%)</title><rect x="26.9623%" y="661" width="0.0151%" height="15" fill="rgb(208,217,32)" fg:x="130168" fg:w="73"/><text x="27.2123%" y="671.50"></text></g><g><title>do_mmap (86 samples, 0.02%)</title><rect x="26.9599%" y="677" width="0.0178%" height="15" fill="rgb(221,120,13)" fg:x="130156" fg:w="86"/><text x="27.2099%" y="687.50"></text></g><g><title>elf_map (165 samples, 0.03%)</title><rect x="26.9445%" y="709" width="0.0342%" height="15" fill="rgb(246,54,52)" fg:x="130082" fg:w="165"/><text x="27.1945%" y="719.50"></text></g><g><title>vm_mmap_pgoff (94 samples, 0.02%)</title><rect x="26.9592%" y="693" width="0.0195%" height="15" fill="rgb(242,34,25)" fg:x="130153" fg:w="94"/><text x="27.2092%" y="703.50"></text></g><g><title>setup_arg_pages (162 samples, 0.03%)</title><rect x="26.9826%" y="709" width="0.0336%" height="15" fill="rgb(247,209,9)" fg:x="130266" fg:w="162"/><text x="27.2326%" y="719.50"></text></g><g><title>shift_arg_pages (85 samples, 0.02%)</title><rect x="26.9986%" y="693" width="0.0176%" height="15" fill="rgb(228,71,26)" fg:x="130343" fg:w="85"/><text x="27.2486%" y="703.50"></text></g><g><title>do_mmap (59 samples, 0.01%)</title><rect x="27.0212%" y="693" width="0.0122%" height="15" fill="rgb(222,145,49)" fg:x="130452" fg:w="59"/><text x="27.2712%" y="703.50"></text></g><g><title>mmap_region (58 samples, 0.01%)</title><rect x="27.0214%" y="677" width="0.0120%" height="15" fill="rgb(218,121,17)" fg:x="130453" fg:w="58"/><text x="27.2714%" y="687.50"></text></g><g><title>__x64_sys_execve (533 samples, 0.11%)</title><rect x="26.9242%" y="773" width="0.1104%" height="15" fill="rgb(244,50,7)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="783.50"></text></g><g><title>do_execveat_common (533 samples, 0.11%)</title><rect x="26.9242%" y="757" width="0.1104%" height="15" fill="rgb(246,229,37)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="767.50"></text></g><g><title>bprm_execve (533 samples, 0.11%)</title><rect x="26.9242%" y="741" width="0.1104%" height="15" fill="rgb(225,18,5)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="751.50"></text></g><g><title>load_elf_binary (533 samples, 0.11%)</title><rect x="26.9242%" y="725" width="0.1104%" height="15" fill="rgb(213,204,8)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="735.50"></text></g><g><title>vm_mmap_pgoff (66 samples, 0.01%)</title><rect x="27.0210%" y="709" width="0.0137%" height="15" fill="rgb(238,103,6)" fg:x="130451" fg:w="66"/><text x="27.2710%" y="719.50"></text></g><g><title>tlb_finish_mmu (64 samples, 0.01%)</title><rect x="27.0520%" y="693" width="0.0133%" height="15" fill="rgb(222,25,35)" fg:x="130601" fg:w="64"/><text x="27.3020%" y="703.50"></text></g><g><title>release_pages (51 samples, 0.01%)</title><rect x="27.0547%" y="677" width="0.0106%" height="15" fill="rgb(213,203,35)" fg:x="130614" fg:w="51"/><text x="27.3047%" y="687.50"></text></g><g><title>unmap_page_range (104 samples, 0.02%)</title><rect x="27.0657%" y="677" width="0.0215%" height="15" fill="rgb(221,79,53)" fg:x="130667" fg:w="104"/><text x="27.3157%" y="687.50"></text></g><g><title>exit_mmap (252 samples, 0.05%)</title><rect x="27.0355%" y="709" width="0.0522%" height="15" fill="rgb(243,200,35)" fg:x="130521" fg:w="252"/><text x="27.2855%" y="719.50"></text></g><g><title>unmap_vmas (108 samples, 0.02%)</title><rect x="27.0653%" y="693" width="0.0224%" height="15" fill="rgb(248,60,25)" fg:x="130665" fg:w="108"/><text x="27.3153%" y="703.50"></text></g><g><title>mmput (253 samples, 0.05%)</title><rect x="27.0355%" y="725" width="0.0524%" height="15" fill="rgb(227,53,46)" fg:x="130521" fg:w="253"/><text x="27.2855%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (811 samples, 0.17%)</title><rect x="26.9236%" y="805" width="0.1680%" height="15" fill="rgb(216,120,32)" fg:x="129981" fg:w="811"/><text x="27.1736%" y="815.50"></text></g><g><title>do_syscall_64 (808 samples, 0.17%)</title><rect x="26.9242%" y="789" width="0.1674%" height="15" fill="rgb(220,134,1)" fg:x="129984" fg:w="808"/><text x="27.1742%" y="799.50"></text></g><g><title>__x64_sys_exit_group (275 samples, 0.06%)</title><rect x="27.0346%" y="773" width="0.0570%" height="15" fill="rgb(237,168,5)" fg:x="130517" fg:w="275"/><text x="27.2846%" y="783.50"></text></g><g><title>do_group_exit (275 samples, 0.06%)</title><rect x="27.0346%" y="757" width="0.0570%" height="15" fill="rgb(231,100,33)" fg:x="130517" fg:w="275"/><text x="27.2846%" y="767.50"></text></g><g><title>do_exit (275 samples, 0.06%)</title><rect x="27.0346%" y="741" width="0.0570%" height="15" fill="rgb(236,177,47)" fg:x="130517" fg:w="275"/><text x="27.2846%" y="751.50"></text></g><g><title>sed (6,245 samples, 1.29%)</title><rect x="25.8007%" y="821" width="1.2936%" height="15" fill="rgb(235,7,49)" fg:x="124560" fg:w="6245"/><text x="26.0507%" y="831.50"></text></g><g><title>HandleMark::pop_and_restore (66 samples, 0.01%)</title><rect x="27.1386%" y="789" width="0.0137%" height="15" fill="rgb(232,119,22)" fg:x="131019" fg:w="66"/><text x="27.3886%" y="799.50"></text></g><g><title>[anon] (915 samples, 0.19%)</title><rect x="27.0982%" y="805" width="0.1895%" height="15" fill="rgb(254,73,53)" fg:x="130824" fg:w="915"/><text x="27.3482%" y="815.50"></text></g><g><title>[libc-2.31.so] (56 samples, 0.01%)</title><rect x="27.5005%" y="789" width="0.0116%" height="15" fill="rgb(251,35,20)" fg:x="132766" fg:w="56"/><text x="27.7505%" y="799.50"></text></g><g><title>__x64_sys_close (76 samples, 0.02%)</title><rect x="27.5179%" y="741" width="0.0157%" height="15" fill="rgb(241,119,20)" fg:x="132850" fg:w="76"/><text x="27.7679%" y="751.50"></text></g><g><title>filp_close (58 samples, 0.01%)</title><rect x="27.5216%" y="725" width="0.0120%" height="15" fill="rgb(207,102,14)" fg:x="132868" fg:w="58"/><text x="27.7716%" y="735.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="27.5173%" y="757" width="0.0166%" height="15" fill="rgb(248,201,50)" fg:x="132847" fg:w="80"/><text x="27.7673%" y="767.50"></text></g><g><title>btrfs_release_file (72 samples, 0.01%)</title><rect x="27.5450%" y="693" width="0.0149%" height="15" fill="rgb(222,185,44)" fg:x="132981" fg:w="72"/><text x="27.7950%" y="703.50"></text></g><g><title>kfree (59 samples, 0.01%)</title><rect x="27.5477%" y="677" width="0.0122%" height="15" fill="rgb(218,107,18)" fg:x="132994" fg:w="59"/><text x="27.7977%" y="687.50"></text></g><g><title>__fput (164 samples, 0.03%)</title><rect x="27.5403%" y="709" width="0.0340%" height="15" fill="rgb(237,177,39)" fg:x="132958" fg:w="164"/><text x="27.7903%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (308 samples, 0.06%)</title><rect x="27.5164%" y="773" width="0.0638%" height="15" fill="rgb(246,69,6)" fg:x="132843" fg:w="308"/><text x="27.7664%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (224 samples, 0.05%)</title><rect x="27.5338%" y="757" width="0.0464%" height="15" fill="rgb(234,208,37)" fg:x="132927" fg:w="224"/><text x="27.7838%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (223 samples, 0.05%)</title><rect x="27.5340%" y="741" width="0.0462%" height="15" fill="rgb(225,4,6)" fg:x="132928" fg:w="223"/><text x="27.7840%" y="751.50"></text></g><g><title>task_work_run (202 samples, 0.04%)</title><rect x="27.5384%" y="725" width="0.0418%" height="15" fill="rgb(233,45,0)" fg:x="132949" fg:w="202"/><text x="27.7884%" y="735.50"></text></g><g><title>__GI___close_nocancel (334 samples, 0.07%)</title><rect x="27.5121%" y="789" width="0.0692%" height="15" fill="rgb(226,136,5)" fg:x="132822" fg:w="334"/><text x="27.7621%" y="799.50"></text></g><g><title>__GI___libc_free (139 samples, 0.03%)</title><rect x="27.5813%" y="789" width="0.0288%" height="15" fill="rgb(211,91,47)" fg:x="133156" fg:w="139"/><text x="27.8313%" y="799.50"></text></g><g><title>lookup_fast (69 samples, 0.01%)</title><rect x="27.6364%" y="645" width="0.0143%" height="15" fill="rgb(242,88,51)" fg:x="133422" fg:w="69"/><text x="27.8864%" y="655.50"></text></g><g><title>__d_lookup_rcu (59 samples, 0.01%)</title><rect x="27.6384%" y="629" width="0.0122%" height="15" fill="rgb(230,91,28)" fg:x="133432" fg:w="59"/><text x="27.8884%" y="639.50"></text></g><g><title>link_path_walk.part.0 (147 samples, 0.03%)</title><rect x="27.6210%" y="677" width="0.0304%" height="15" fill="rgb(254,186,29)" fg:x="133348" fg:w="147"/><text x="27.8710%" y="687.50"></text></g><g><title>walk_component (80 samples, 0.02%)</title><rect x="27.6349%" y="661" width="0.0166%" height="15" fill="rgb(238,6,4)" fg:x="133415" fg:w="80"/><text x="27.8849%" y="671.50"></text></g><g><title>path_lookupat (187 samples, 0.04%)</title><rect x="27.6196%" y="693" width="0.0387%" height="15" fill="rgb(221,151,16)" fg:x="133341" fg:w="187"/><text x="27.8696%" y="703.50"></text></g><g><title>filename_lookup (207 samples, 0.04%)</title><rect x="27.6161%" y="709" width="0.0429%" height="15" fill="rgb(251,143,52)" fg:x="133324" fg:w="207"/><text x="27.8661%" y="719.50"></text></g><g><title>__do_sys_newlstat (291 samples, 0.06%)</title><rect x="27.6109%" y="741" width="0.0603%" height="15" fill="rgb(206,90,15)" fg:x="133299" fg:w="291"/><text x="27.8609%" y="751.50"></text></g><g><title>vfs_statx (279 samples, 0.06%)</title><rect x="27.6134%" y="725" width="0.0578%" height="15" fill="rgb(218,35,8)" fg:x="133311" fg:w="279"/><text x="27.8634%" y="735.50"></text></g><g><title>do_syscall_64 (295 samples, 0.06%)</title><rect x="27.6107%" y="757" width="0.0611%" height="15" fill="rgb(239,215,6)" fg:x="133298" fg:w="295"/><text x="27.8607%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (297 samples, 0.06%)</title><rect x="27.6107%" y="773" width="0.0615%" height="15" fill="rgb(245,116,39)" fg:x="133298" fg:w="297"/><text x="27.8607%" y="783.50"></text></g><g><title>__GI___lxstat (301 samples, 0.06%)</title><rect x="27.6101%" y="789" width="0.0623%" height="15" fill="rgb(242,65,28)" fg:x="133295" fg:w="301"/><text x="27.8601%" y="799.50"></text></g><g><title>dput (52 samples, 0.01%)</title><rect x="27.6811%" y="725" width="0.0108%" height="15" fill="rgb(252,132,53)" fg:x="133638" fg:w="52"/><text x="27.9311%" y="735.50"></text></g><g><title>btrfs_free_path (49 samples, 0.01%)</title><rect x="27.6935%" y="661" width="0.0101%" height="15" fill="rgb(224,159,50)" fg:x="133698" fg:w="49"/><text x="27.9435%" y="671.50"></text></g><g><title>btrfs_release_path (49 samples, 0.01%)</title><rect x="27.6935%" y="645" width="0.0101%" height="15" fill="rgb(224,93,4)" fg:x="133698" fg:w="49"/><text x="27.9435%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (81 samples, 0.02%)</title><rect x="27.7335%" y="629" width="0.0168%" height="15" fill="rgb(208,81,34)" fg:x="133891" fg:w="81"/><text x="27.9835%" y="639.50"></text></g><g><title>__radix_tree_lookup (65 samples, 0.01%)</title><rect x="27.7656%" y="597" width="0.0135%" height="15" fill="rgb(233,92,54)" fg:x="134046" fg:w="65"/><text x="28.0156%" y="607.50"></text></g><g><title>find_extent_buffer (118 samples, 0.02%)</title><rect x="27.7582%" y="613" width="0.0244%" height="15" fill="rgb(237,21,14)" fg:x="134010" fg:w="118"/><text x="28.0082%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (168 samples, 0.03%)</title><rect x="27.7503%" y="629" width="0.0348%" height="15" fill="rgb(249,128,51)" fg:x="133972" fg:w="168"/><text x="28.0003%" y="639.50"></text></g><g><title>btrfs_search_slot (404 samples, 0.08%)</title><rect x="27.7043%" y="645" width="0.0837%" height="15" fill="rgb(223,129,24)" fg:x="133750" fg:w="404"/><text x="27.9543%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (421 samples, 0.09%)</title><rect x="27.7037%" y="661" width="0.0872%" height="15" fill="rgb(231,168,25)" fg:x="133747" fg:w="421"/><text x="27.9537%" y="671.50"></text></g><g><title>btrfs_lookup (503 samples, 0.10%)</title><rect x="27.6925%" y="693" width="0.1042%" height="15" fill="rgb(224,39,20)" fg:x="133693" fg:w="503"/><text x="27.9425%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (503 samples, 0.10%)</title><rect x="27.6925%" y="677" width="0.1042%" height="15" fill="rgb(225,152,53)" fg:x="133693" fg:w="503"/><text x="27.9425%" y="687.50"></text></g><g><title>kmem_cache_alloc (106 samples, 0.02%)</title><rect x="27.7983%" y="661" width="0.0220%" height="15" fill="rgb(252,17,24)" fg:x="134204" fg:w="106"/><text x="28.0483%" y="671.50"></text></g><g><title>__d_alloc (116 samples, 0.02%)</title><rect x="27.7973%" y="677" width="0.0240%" height="15" fill="rgb(250,114,30)" fg:x="134199" fg:w="116"/><text x="28.0473%" y="687.50"></text></g><g><title>d_alloc (126 samples, 0.03%)</title><rect x="27.7967%" y="693" width="0.0261%" height="15" fill="rgb(229,5,4)" fg:x="134196" fg:w="126"/><text x="28.0467%" y="703.50"></text></g><g><title>__lookup_hash (691 samples, 0.14%)</title><rect x="27.6921%" y="709" width="0.1431%" height="15" fill="rgb(225,176,49)" fg:x="133691" fg:w="691"/><text x="27.9421%" y="719.50"></text></g><g><title>inode_permission.part.0 (91 samples, 0.02%)</title><rect x="27.8663%" y="661" width="0.0188%" height="15" fill="rgb(224,221,49)" fg:x="134532" fg:w="91"/><text x="28.1163%" y="671.50"></text></g><g><title>lookup_fast (192 samples, 0.04%)</title><rect x="27.8934%" y="645" width="0.0398%" height="15" fill="rgb(253,169,27)" fg:x="134663" fg:w="192"/><text x="28.1434%" y="655.50"></text></g><g><title>__d_lookup_rcu (145 samples, 0.03%)</title><rect x="27.9032%" y="629" width="0.0300%" height="15" fill="rgb(211,206,16)" fg:x="134710" fg:w="145"/><text x="28.1532%" y="639.50"></text></g><g><title>link_path_walk.part.0 (473 samples, 0.10%)</title><rect x="27.8443%" y="677" width="0.0980%" height="15" fill="rgb(244,87,35)" fg:x="134426" fg:w="473"/><text x="28.0943%" y="687.50"></text></g><g><title>walk_component (263 samples, 0.05%)</title><rect x="27.8878%" y="661" width="0.0545%" height="15" fill="rgb(246,28,10)" fg:x="134636" fg:w="263"/><text x="28.1378%" y="671.50"></text></g><g><title>filename_parentat (532 samples, 0.11%)</title><rect x="27.8369%" y="709" width="0.1102%" height="15" fill="rgb(229,12,44)" fg:x="134390" fg:w="532"/><text x="28.0869%" y="719.50"></text></g><g><title>path_parentat (527 samples, 0.11%)</title><rect x="27.8379%" y="693" width="0.1092%" height="15" fill="rgb(210,145,37)" fg:x="134395" fg:w="527"/><text x="28.0879%" y="703.50"></text></g><g><title>filename_create (1,258 samples, 0.26%)</title><rect x="27.6919%" y="725" width="0.2606%" height="15" fill="rgb(227,112,52)" fg:x="133690" fg:w="1258"/><text x="27.9419%" y="735.50"></text></g><g><title>getname_flags.part.0 (109 samples, 0.02%)</title><rect x="27.9525%" y="725" width="0.0226%" height="15" fill="rgb(238,155,34)" fg:x="134948" fg:w="109"/><text x="28.2025%" y="735.50"></text></g><g><title>strncpy_from_user (57 samples, 0.01%)</title><rect x="27.9632%" y="709" width="0.0118%" height="15" fill="rgb(239,226,36)" fg:x="135000" fg:w="57"/><text x="28.2132%" y="719.50"></text></g><g><title>__btrfs_end_transaction (60 samples, 0.01%)</title><rect x="27.9885%" y="693" width="0.0124%" height="15" fill="rgb(230,16,23)" fg:x="135122" fg:w="60"/><text x="28.2385%" y="703.50"></text></g><g><title>btrfs_insert_delayed_dir_index (145 samples, 0.03%)</title><rect x="28.0055%" y="661" width="0.0300%" height="15" fill="rgb(236,171,36)" fg:x="135204" fg:w="145"/><text x="28.2555%" y="671.50"></text></g><g><title>btrfs_release_path (51 samples, 0.01%)</title><rect x="28.0386%" y="661" width="0.0106%" height="15" fill="rgb(221,22,14)" fg:x="135364" fg:w="51"/><text x="28.2886%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (80 samples, 0.02%)</title><rect x="28.0838%" y="613" width="0.0166%" height="15" fill="rgb(242,43,11)" fg:x="135582" fg:w="80"/><text x="28.3338%" y="623.50"></text></g><g><title>find_extent_buffer (78 samples, 0.02%)</title><rect x="28.1078%" y="597" width="0.0162%" height="15" fill="rgb(232,69,23)" fg:x="135698" fg:w="78"/><text x="28.3578%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (126 samples, 0.03%)</title><rect x="28.1003%" y="613" width="0.0261%" height="15" fill="rgb(216,180,54)" fg:x="135662" fg:w="126"/><text x="28.3503%" y="623.50"></text></g><g><title>split_leaf (67 samples, 0.01%)</title><rect x="28.1264%" y="613" width="0.0139%" height="15" fill="rgb(216,5,24)" fg:x="135788" fg:w="67"/><text x="28.3764%" y="623.50"></text></g><g><title>btrfs_search_slot (431 samples, 0.09%)</title><rect x="28.0560%" y="629" width="0.0893%" height="15" fill="rgb(225,89,9)" fg:x="135448" fg:w="431"/><text x="28.3060%" y="639.50"></text></g><g><title>btrfs_get_token_32 (139 samples, 0.03%)</title><rect x="28.1585%" y="613" width="0.0288%" height="15" fill="rgb(243,75,33)" fg:x="135943" fg:w="139"/><text x="28.4085%" y="623.50"></text></g><g><title>btrfs_set_token_32 (136 samples, 0.03%)</title><rect x="28.1960%" y="613" width="0.0282%" height="15" fill="rgb(247,141,45)" fg:x="136124" fg:w="136"/><text x="28.4460%" y="623.50"></text></g><g><title>memmove_extent_buffer (67 samples, 0.01%)</title><rect x="28.2354%" y="613" width="0.0139%" height="15" fill="rgb(232,177,36)" fg:x="136314" fg:w="67"/><text x="28.4854%" y="623.50"></text></g><g><title>memmove (56 samples, 0.01%)</title><rect x="28.2377%" y="597" width="0.0116%" height="15" fill="rgb(219,125,36)" fg:x="136325" fg:w="56"/><text x="28.4877%" y="607.50"></text></g><g><title>insert_with_overflow (964 samples, 0.20%)</title><rect x="28.0515%" y="661" width="0.1997%" height="15" fill="rgb(227,94,9)" fg:x="135426" fg:w="964"/><text x="28.3015%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (946 samples, 0.20%)</title><rect x="28.0552%" y="645" width="0.1959%" height="15" fill="rgb(240,34,52)" fg:x="135444" fg:w="946"/><text x="28.3052%" y="655.50"></text></g><g><title>setup_items_for_insert (511 samples, 0.11%)</title><rect x="28.1453%" y="629" width="0.1058%" height="15" fill="rgb(216,45,12)" fg:x="135879" fg:w="511"/><text x="28.3953%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (1,236 samples, 0.26%)</title><rect x="28.0032%" y="677" width="0.2560%" height="15" fill="rgb(246,21,19)" fg:x="135193" fg:w="1236"/><text x="28.2532%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (55 samples, 0.01%)</title><rect x="28.2611%" y="661" width="0.0114%" height="15" fill="rgb(213,98,42)" fg:x="136438" fg:w="55"/><text x="28.5111%" y="671.50"></text></g><g><title>btrfs_update_inode (74 samples, 0.02%)</title><rect x="28.2592%" y="677" width="0.0153%" height="15" fill="rgb(250,136,47)" fg:x="136429" fg:w="74"/><text x="28.5092%" y="687.50"></text></g><g><title>btrfs_add_link (1,322 samples, 0.27%)</title><rect x="28.0009%" y="693" width="0.2738%" height="15" fill="rgb(251,124,27)" fg:x="135182" fg:w="1322"/><text x="28.2509%" y="703.50"></text></g><g><title>btrfs_free_path (54 samples, 0.01%)</title><rect x="28.2973%" y="677" width="0.0112%" height="15" fill="rgb(229,180,14)" fg:x="136613" fg:w="54"/><text x="28.5473%" y="687.50"></text></g><g><title>btrfs_release_path (54 samples, 0.01%)</title><rect x="28.2973%" y="661" width="0.0112%" height="15" fill="rgb(245,216,25)" fg:x="136613" fg:w="54"/><text x="28.5473%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (66 samples, 0.01%)</title><rect x="28.3354%" y="645" width="0.0137%" height="15" fill="rgb(251,43,5)" fg:x="136797" fg:w="66"/><text x="28.5854%" y="655.50"></text></g><g><title>find_extent_buffer (71 samples, 0.01%)</title><rect x="28.3549%" y="629" width="0.0147%" height="15" fill="rgb(250,128,24)" fg:x="136891" fg:w="71"/><text x="28.6049%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (117 samples, 0.02%)</title><rect x="28.3491%" y="645" width="0.0242%" height="15" fill="rgb(217,117,27)" fg:x="136863" fg:w="117"/><text x="28.5991%" y="655.50"></text></g><g><title>__push_leaf_left (97 samples, 0.02%)</title><rect x="28.3872%" y="613" width="0.0201%" height="15" fill="rgb(245,147,4)" fg:x="137047" fg:w="97"/><text x="28.6372%" y="623.50"></text></g><g><title>split_leaf (171 samples, 0.04%)</title><rect x="28.3733%" y="645" width="0.0354%" height="15" fill="rgb(242,201,35)" fg:x="136980" fg:w="171"/><text x="28.6233%" y="655.50"></text></g><g><title>push_leaf_left (108 samples, 0.02%)</title><rect x="28.3864%" y="629" width="0.0224%" height="15" fill="rgb(218,181,1)" fg:x="137043" fg:w="108"/><text x="28.6364%" y="639.50"></text></g><g><title>btrfs_search_slot (512 samples, 0.11%)</title><rect x="28.3106%" y="661" width="0.1061%" height="15" fill="rgb(222,6,29)" fg:x="136677" fg:w="512"/><text x="28.5606%" y="671.50"></text></g><g><title>btrfs_get_token_32 (74 samples, 0.02%)</title><rect x="28.4268%" y="645" width="0.0153%" height="15" fill="rgb(208,186,3)" fg:x="137238" fg:w="74"/><text x="28.6768%" y="655.50"></text></g><g><title>btrfs_set_token_32 (55 samples, 0.01%)</title><rect x="28.4523%" y="645" width="0.0114%" height="15" fill="rgb(216,36,26)" fg:x="137361" fg:w="55"/><text x="28.7023%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (797 samples, 0.17%)</title><rect x="28.3100%" y="677" width="0.1651%" height="15" fill="rgb(248,201,23)" fg:x="136674" fg:w="797"/><text x="28.5600%" y="687.50"></text></g><g><title>setup_items_for_insert (282 samples, 0.06%)</title><rect x="28.4166%" y="661" width="0.0584%" height="15" fill="rgb(251,170,31)" fg:x="137189" fg:w="282"/><text x="28.6666%" y="671.50"></text></g><g><title>fill_inode_item (93 samples, 0.02%)</title><rect x="28.4862%" y="677" width="0.0193%" height="15" fill="rgb(207,110,25)" fg:x="137525" fg:w="93"/><text x="28.7362%" y="687.50"></text></g><g><title>inode_tree_add (125 samples, 0.03%)</title><rect x="28.5067%" y="677" width="0.0259%" height="15" fill="rgb(250,54,15)" fg:x="137624" fg:w="125"/><text x="28.7567%" y="687.50"></text></g><g><title>insert_inode_locked4 (54 samples, 0.01%)</title><rect x="28.5326%" y="677" width="0.0112%" height="15" fill="rgb(227,68,33)" fg:x="137749" fg:w="54"/><text x="28.7826%" y="687.50"></text></g><g><title>inode_insert5 (53 samples, 0.01%)</title><rect x="28.5328%" y="661" width="0.0110%" height="15" fill="rgb(238,34,41)" fg:x="137750" fg:w="53"/><text x="28.7828%" y="671.50"></text></g><g><title>btrfs_alloc_inode (123 samples, 0.03%)</title><rect x="28.5585%" y="645" width="0.0255%" height="15" fill="rgb(220,11,15)" fg:x="137874" fg:w="123"/><text x="28.8085%" y="655.50"></text></g><g><title>kmem_cache_alloc (97 samples, 0.02%)</title><rect x="28.5639%" y="629" width="0.0201%" height="15" fill="rgb(246,111,35)" fg:x="137900" fg:w="97"/><text x="28.8139%" y="639.50"></text></g><g><title>alloc_inode (160 samples, 0.03%)</title><rect x="28.5577%" y="661" width="0.0331%" height="15" fill="rgb(209,88,53)" fg:x="137870" fg:w="160"/><text x="28.8077%" y="671.50"></text></g><g><title>new_inode (193 samples, 0.04%)</title><rect x="28.5521%" y="677" width="0.0400%" height="15" fill="rgb(231,185,47)" fg:x="137843" fg:w="193"/><text x="28.8021%" y="687.50"></text></g><g><title>btrfs_new_inode (1,465 samples, 0.30%)</title><rect x="28.2899%" y="693" width="0.3035%" height="15" fill="rgb(233,154,1)" fg:x="136577" fg:w="1465"/><text x="28.5399%" y="703.50"></text></g><g><title>btrfs_get_or_create_delayed_node (122 samples, 0.03%)</title><rect x="28.6074%" y="661" width="0.0253%" height="15" fill="rgb(225,15,46)" fg:x="138110" fg:w="122"/><text x="28.8574%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (215 samples, 0.04%)</title><rect x="28.5944%" y="677" width="0.0445%" height="15" fill="rgb(211,135,41)" fg:x="138047" fg:w="215"/><text x="28.8444%" y="687.50"></text></g><g><title>btrfs_update_inode (235 samples, 0.05%)</title><rect x="28.5933%" y="693" width="0.0487%" height="15" fill="rgb(208,54,0)" fg:x="138042" fg:w="235"/><text x="28.8433%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (87 samples, 0.02%)</title><rect x="28.6555%" y="677" width="0.0180%" height="15" fill="rgb(244,136,14)" fg:x="138342" fg:w="87"/><text x="28.9055%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (82 samples, 0.02%)</title><rect x="28.6565%" y="661" width="0.0170%" height="15" fill="rgb(241,56,14)" fg:x="138347" fg:w="82"/><text x="28.9065%" y="671.50"></text></g><g><title>__reserve_bytes (81 samples, 0.02%)</title><rect x="28.6567%" y="645" width="0.0168%" height="15" fill="rgb(205,80,24)" fg:x="138348" fg:w="81"/><text x="28.9067%" y="655.50"></text></g><g><title>btrfs_mkdir (3,385 samples, 0.70%)</title><rect x="27.9870%" y="709" width="0.7012%" height="15" fill="rgb(220,57,4)" fg:x="135115" fg:w="3385"/><text x="28.2370%" y="719.50"></text></g><g><title>start_transaction (185 samples, 0.04%)</title><rect x="28.6499%" y="693" width="0.0383%" height="15" fill="rgb(226,193,50)" fg:x="138315" fg:w="185"/><text x="28.8999%" y="703.50"></text></g><g><title>do_mkdirat (4,883 samples, 1.01%)</title><rect x="27.6803%" y="741" width="1.0114%" height="15" fill="rgb(231,168,22)" fg:x="133634" fg:w="4883"/><text x="27.9303%" y="751.50"></text></g><g><title>vfs_mkdir (3,410 samples, 0.71%)</title><rect x="27.9854%" y="725" width="0.7063%" height="15" fill="rgb(254,215,14)" fg:x="135107" fg:w="3410"/><text x="28.2354%" y="735.50"></text></g><g><title>do_syscall_64 (4,885 samples, 1.01%)</title><rect x="27.6801%" y="757" width="1.0119%" height="15" fill="rgb(211,115,16)" fg:x="133633" fg:w="4885"/><text x="27.9301%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,900 samples, 1.01%)</title><rect x="27.6784%" y="773" width="1.0150%" height="15" fill="rgb(236,210,16)" fg:x="133625" fg:w="4900"/><text x="27.9284%" y="783.50"></text></g><g><title>__GI___mkdir (4,937 samples, 1.02%)</title><rect x="27.6724%" y="789" width="1.0226%" height="15" fill="rgb(221,94,12)" fg:x="133596" fg:w="4937"/><text x="27.9224%" y="799.50"></text></g><g><title>btrfs_filldir (411 samples, 0.09%)</title><rect x="28.7903%" y="677" width="0.0851%" height="15" fill="rgb(235,218,49)" fg:x="138993" fg:w="411"/><text x="29.0403%" y="687.50"></text></g><g><title>filldir64 (377 samples, 0.08%)</title><rect x="28.7974%" y="661" width="0.0781%" height="15" fill="rgb(217,114,14)" fg:x="139027" fg:w="377"/><text x="29.0474%" y="671.50"></text></g><g><title>verify_dirent_name (106 samples, 0.02%)</title><rect x="28.8535%" y="645" width="0.0220%" height="15" fill="rgb(216,145,22)" fg:x="139298" fg:w="106"/><text x="29.1035%" y="655.50"></text></g><g><title>memchr (78 samples, 0.02%)</title><rect x="28.8593%" y="629" width="0.0162%" height="15" fill="rgb(217,112,39)" fg:x="139326" fg:w="78"/><text x="29.1093%" y="639.50"></text></g><g><title>btrfs_get_16 (63 samples, 0.01%)</title><rect x="28.8767%" y="677" width="0.0130%" height="15" fill="rgb(225,85,32)" fg:x="139410" fg:w="63"/><text x="29.1267%" y="687.50"></text></g><g><title>btrfs_next_old_leaf (53 samples, 0.01%)</title><rect x="28.9057%" y="677" width="0.0110%" height="15" fill="rgb(245,209,47)" fg:x="139550" fg:w="53"/><text x="29.1557%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (106 samples, 0.02%)</title><rect x="28.9167%" y="677" width="0.0220%" height="15" fill="rgb(218,220,15)" fg:x="139603" fg:w="106"/><text x="29.1667%" y="687.50"></text></g><g><title>btrfs_release_path (87 samples, 0.02%)</title><rect x="28.9413%" y="677" width="0.0180%" height="15" fill="rgb(222,202,31)" fg:x="139722" fg:w="87"/><text x="29.1913%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (176 samples, 0.04%)</title><rect x="28.9931%" y="661" width="0.0365%" height="15" fill="rgb(243,203,4)" fg:x="139972" fg:w="176"/><text x="29.2431%" y="671.50"></text></g><g><title>__radix_tree_lookup (125 samples, 0.03%)</title><rect x="29.0503%" y="629" width="0.0259%" height="15" fill="rgb(237,92,17)" fg:x="140248" fg:w="125"/><text x="29.3003%" y="639.50"></text></g><g><title>find_extent_buffer (217 samples, 0.04%)</title><rect x="29.0416%" y="645" width="0.0449%" height="15" fill="rgb(231,119,7)" fg:x="140206" fg:w="217"/><text x="29.2916%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (50 samples, 0.01%)</title><rect x="29.0762%" y="629" width="0.0104%" height="15" fill="rgb(237,82,41)" fg:x="140373" fg:w="50"/><text x="29.3262%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (304 samples, 0.06%)</title><rect x="29.0296%" y="661" width="0.0630%" height="15" fill="rgb(226,81,48)" fg:x="140148" fg:w="304"/><text x="29.2796%" y="671.50"></text></g><g><title>btrfs_search_slot (680 samples, 0.14%)</title><rect x="28.9593%" y="677" width="0.1409%" height="15" fill="rgb(234,70,51)" fg:x="139809" fg:w="680"/><text x="29.2093%" y="687.50"></text></g><g><title>filldir64 (51 samples, 0.01%)</title><rect x="29.1041%" y="677" width="0.0106%" height="15" fill="rgb(251,86,4)" fg:x="140508" fg:w="51"/><text x="29.3541%" y="687.50"></text></g><g><title>btrfs_real_readdir (2,208 samples, 0.46%)</title><rect x="28.7576%" y="693" width="0.4574%" height="15" fill="rgb(244,144,28)" fg:x="138835" fg:w="2208"/><text x="29.0076%" y="703.50"></text></g><g><title>read_extent_buffer (395 samples, 0.08%)</title><rect x="29.1331%" y="677" width="0.0818%" height="15" fill="rgb(232,161,39)" fg:x="140648" fg:w="395"/><text x="29.3831%" y="687.50"></text></g><g><title>security_file_permission (60 samples, 0.01%)</title><rect x="29.2203%" y="693" width="0.0124%" height="15" fill="rgb(247,34,51)" fg:x="141069" fg:w="60"/><text x="29.4703%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (61 samples, 0.01%)</title><rect x="29.2586%" y="629" width="0.0126%" height="15" fill="rgb(225,132,2)" fg:x="141254" fg:w="61"/><text x="29.5086%" y="639.50"></text></g><g><title>btrfs_reserve_metadata_bytes (56 samples, 0.01%)</title><rect x="29.2597%" y="613" width="0.0116%" height="15" fill="rgb(209,159,44)" fg:x="141259" fg:w="56"/><text x="29.5097%" y="623.50"></text></g><g><title>__reserve_bytes (53 samples, 0.01%)</title><rect x="29.2603%" y="597" width="0.0110%" height="15" fill="rgb(251,214,1)" fg:x="141262" fg:w="53"/><text x="29.5103%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (126 samples, 0.03%)</title><rect x="29.2502%" y="645" width="0.0261%" height="15" fill="rgb(247,84,47)" fg:x="141213" fg:w="126"/><text x="29.5002%" y="655.50"></text></g><g><title>btrfs_update_inode (149 samples, 0.03%)</title><rect x="29.2481%" y="661" width="0.0309%" height="15" fill="rgb(240,111,43)" fg:x="141203" fg:w="149"/><text x="29.4981%" y="671.50"></text></g><g><title>btrfs_dirty_inode (235 samples, 0.05%)</title><rect x="29.2429%" y="677" width="0.0487%" height="15" fill="rgb(215,214,35)" fg:x="141178" fg:w="235"/><text x="29.4929%" y="687.50"></text></g><g><title>start_transaction (61 samples, 0.01%)</title><rect x="29.2789%" y="661" width="0.0126%" height="15" fill="rgb(248,207,23)" fg:x="141352" fg:w="61"/><text x="29.5289%" y="671.50"></text></g><g><title>touch_atime (290 samples, 0.06%)</title><rect x="29.2328%" y="693" width="0.0601%" height="15" fill="rgb(214,186,4)" fg:x="141129" fg:w="290"/><text x="29.4828%" y="703.50"></text></g><g><title>iterate_dir (2,617 samples, 0.54%)</title><rect x="28.7528%" y="709" width="0.5421%" height="15" fill="rgb(220,133,22)" fg:x="138812" fg:w="2617"/><text x="29.0028%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (2,680 samples, 0.56%)</title><rect x="28.7414%" y="725" width="0.5551%" height="15" fill="rgb(239,134,19)" fg:x="138757" fg:w="2680"/><text x="28.9914%" y="735.50"></text></g><g><title>do_syscall_64 (2,686 samples, 0.56%)</title><rect x="28.7408%" y="741" width="0.5564%" height="15" fill="rgb(250,140,9)" fg:x="138754" fg:w="2686"/><text x="28.9908%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,700 samples, 0.56%)</title><rect x="28.7396%" y="757" width="0.5593%" height="15" fill="rgb(225,59,14)" fg:x="138748" fg:w="2700"/><text x="28.9896%" y="767.50"></text></g><g><title>__GI___getdents64 (2,741 samples, 0.57%)</title><rect x="28.7327%" y="773" width="0.5678%" height="15" fill="rgb(214,152,51)" fg:x="138715" fg:w="2741"/><text x="28.9827%" y="783.50"></text></g><g><title>__GI___readdir64 (2,926 samples, 0.61%)</title><rect x="28.6950%" y="789" width="0.6061%" height="15" fill="rgb(251,227,43)" fg:x="138533" fg:w="2926"/><text x="28.9450%" y="799.50"></text></g><g><title>link_path_walk.part.0 (86 samples, 0.02%)</title><rect x="29.3059%" y="677" width="0.0178%" height="15" fill="rgb(241,96,17)" fg:x="141482" fg:w="86"/><text x="29.5559%" y="687.50"></text></g><g><title>filename_lookup (103 samples, 0.02%)</title><rect x="29.3044%" y="709" width="0.0213%" height="15" fill="rgb(234,198,43)" fg:x="141475" fg:w="103"/><text x="29.5544%" y="719.50"></text></g><g><title>path_lookupat (101 samples, 0.02%)</title><rect x="29.3048%" y="693" width="0.0209%" height="15" fill="rgb(220,108,29)" fg:x="141477" fg:w="101"/><text x="29.5548%" y="703.50"></text></g><g><title>__do_sys_newstat (149 samples, 0.03%)</title><rect x="29.3023%" y="741" width="0.0309%" height="15" fill="rgb(226,163,33)" fg:x="141465" fg:w="149"/><text x="29.5523%" y="751.50"></text></g><g><title>vfs_statx (145 samples, 0.03%)</title><rect x="29.3032%" y="725" width="0.0300%" height="15" fill="rgb(205,194,45)" fg:x="141469" fg:w="145"/><text x="29.5532%" y="735.50"></text></g><g><title>__GI___xstat (157 samples, 0.03%)</title><rect x="29.3011%" y="789" width="0.0325%" height="15" fill="rgb(206,143,44)" fg:x="141459" fg:w="157"/><text x="29.5511%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="29.3019%" y="773" width="0.0317%" height="15" fill="rgb(236,136,36)" fg:x="141463" fg:w="153"/><text x="29.5519%" y="783.50"></text></g><g><title>do_syscall_64 (151 samples, 0.03%)</title><rect x="29.3023%" y="757" width="0.0313%" height="15" fill="rgb(249,172,42)" fg:x="141465" fg:w="151"/><text x="29.5523%" y="767.50"></text></g><g><title>__GI_remove (57 samples, 0.01%)</title><rect x="29.3336%" y="789" width="0.0118%" height="15" fill="rgb(216,139,23)" fg:x="141616" fg:w="57"/><text x="29.5836%" y="799.50"></text></g><g><title>crc32c_pcl_intel_update (129 samples, 0.03%)</title><rect x="29.3788%" y="773" width="0.0267%" height="15" fill="rgb(207,166,20)" fg:x="141834" fg:w="129"/><text x="29.6288%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (150 samples, 0.03%)</title><rect x="29.4055%" y="773" width="0.0311%" height="15" fill="rgb(210,209,22)" fg:x="141963" fg:w="150"/><text x="29.6555%" y="783.50"></text></g><g><title>getname_flags (82 samples, 0.02%)</title><rect x="29.4527%" y="725" width="0.0170%" height="15" fill="rgb(232,118,20)" fg:x="142191" fg:w="82"/><text x="29.7027%" y="735.50"></text></g><g><title>memset_erms (585 samples, 0.12%)</title><rect x="29.5134%" y="693" width="0.1212%" height="15" fill="rgb(238,113,42)" fg:x="142484" fg:w="585"/><text x="29.7634%" y="703.50"></text></g><g><title>kmem_cache_alloc (776 samples, 0.16%)</title><rect x="29.4832%" y="709" width="0.1607%" height="15" fill="rgb(231,42,5)" fg:x="142338" fg:w="776"/><text x="29.7332%" y="719.50"></text></g><g><title>__check_heap_object (51 samples, 0.01%)</title><rect x="29.7046%" y="677" width="0.0106%" height="15" fill="rgb(243,166,24)" fg:x="143407" fg:w="51"/><text x="29.9546%" y="687.50"></text></g><g><title>__virt_addr_valid (209 samples, 0.04%)</title><rect x="29.7152%" y="677" width="0.0433%" height="15" fill="rgb(237,226,12)" fg:x="143458" fg:w="209"/><text x="29.9652%" y="687.50"></text></g><g><title>__check_object_size (317 samples, 0.07%)</title><rect x="29.6940%" y="693" width="0.0657%" height="15" fill="rgb(229,133,24)" fg:x="143356" fg:w="317"/><text x="29.9440%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,401 samples, 0.29%)</title><rect x="29.4697%" y="725" width="0.2902%" height="15" fill="rgb(238,33,43)" fg:x="142273" fg:w="1401"/><text x="29.7197%" y="735.50"></text></g><g><title>strncpy_from_user (560 samples, 0.12%)</title><rect x="29.6439%" y="709" width="0.1160%" height="15" fill="rgb(227,59,38)" fg:x="143114" fg:w="560"/><text x="29.8939%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (1,501 samples, 0.31%)</title><rect x="29.4492%" y="741" width="0.3109%" height="15" fill="rgb(230,97,0)" fg:x="142174" fg:w="1501"/><text x="29.6992%" y="751.50"></text></g><g><title>dput (74 samples, 0.02%)</title><rect x="29.7707%" y="725" width="0.0153%" height="15" fill="rgb(250,173,50)" fg:x="143726" fg:w="74"/><text x="30.0207%" y="735.50"></text></g><g><title>filename_parentat (69 samples, 0.01%)</title><rect x="29.7860%" y="725" width="0.0143%" height="15" fill="rgb(240,15,50)" fg:x="143800" fg:w="69"/><text x="30.0360%" y="735.50"></text></g><g><title>path_parentat (62 samples, 0.01%)</title><rect x="29.7875%" y="709" width="0.0128%" height="15" fill="rgb(221,93,22)" fg:x="143807" fg:w="62"/><text x="30.0375%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (67 samples, 0.01%)</title><rect x="29.8481%" y="661" width="0.0139%" height="15" fill="rgb(245,180,53)" fg:x="144100" fg:w="67"/><text x="30.0981%" y="671.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.01%)</title><rect x="29.8481%" y="645" width="0.0139%" height="15" fill="rgb(231,88,51)" fg:x="144100" fg:w="67"/><text x="30.0981%" y="655.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.01%)</title><rect x="29.8626%" y="645" width="0.0139%" height="15" fill="rgb(240,58,21)" fg:x="144170" fg:w="67"/><text x="30.1126%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (71 samples, 0.01%)</title><rect x="29.8620%" y="661" width="0.0147%" height="15" fill="rgb(237,21,10)" fg:x="144167" fg:w="71"/><text x="30.1120%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (251 samples, 0.05%)</title><rect x="29.8401%" y="677" width="0.0520%" height="15" fill="rgb(218,43,11)" fg:x="144061" fg:w="251"/><text x="30.0901%" y="687.50"></text></g><g><title>btrfs_search_slot (142 samples, 0.03%)</title><rect x="29.9037%" y="645" width="0.0294%" height="15" fill="rgb(218,221,29)" fg:x="144368" fg:w="142"/><text x="30.1537%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (237 samples, 0.05%)</title><rect x="29.8948%" y="661" width="0.0491%" height="15" fill="rgb(214,118,42)" fg:x="144325" fg:w="237"/><text x="30.1448%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (270 samples, 0.06%)</title><rect x="29.8921%" y="677" width="0.0559%" height="15" fill="rgb(251,200,26)" fg:x="144312" fg:w="270"/><text x="30.1421%" y="687.50"></text></g><g><title>btrfs_get_token_32 (224 samples, 0.05%)</title><rect x="29.9745%" y="661" width="0.0464%" height="15" fill="rgb(237,101,39)" fg:x="144710" fg:w="224"/><text x="30.2245%" y="671.50"></text></g><g><title>btrfs_set_token_32 (193 samples, 0.04%)</title><rect x="30.0232%" y="661" width="0.0400%" height="15" fill="rgb(251,117,11)" fg:x="144945" fg:w="193"/><text x="30.2732%" y="671.50"></text></g><g><title>memmove_extent_buffer (109 samples, 0.02%)</title><rect x="30.0741%" y="661" width="0.0226%" height="15" fill="rgb(216,223,23)" fg:x="145191" fg:w="109"/><text x="30.3241%" y="671.50"></text></g><g><title>memmove (86 samples, 0.02%)</title><rect x="30.0789%" y="645" width="0.0178%" height="15" fill="rgb(251,54,12)" fg:x="145214" fg:w="86"/><text x="30.3289%" y="655.50"></text></g><g><title>__push_leaf_right (50 samples, 0.01%)</title><rect x="30.0996%" y="645" width="0.0104%" height="15" fill="rgb(254,176,54)" fg:x="145314" fg:w="50"/><text x="30.3496%" y="655.50"></text></g><g><title>push_leaf_right (56 samples, 0.01%)</title><rect x="30.0996%" y="661" width="0.0116%" height="15" fill="rgb(210,32,8)" fg:x="145314" fg:w="56"/><text x="30.3496%" y="671.50"></text></g><g><title>btrfs_del_items (789 samples, 0.16%)</title><rect x="29.9480%" y="677" width="0.1634%" height="15" fill="rgb(235,52,38)" fg:x="144582" fg:w="789"/><text x="30.1980%" y="687.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (49 samples, 0.01%)</title><rect x="30.1114%" y="677" width="0.0101%" height="15" fill="rgb(231,4,44)" fg:x="145371" fg:w="49"/><text x="30.3614%" y="687.50"></text></g><g><title>__btrfs_add_delayed_item (54 samples, 0.01%)</title><rect x="30.1226%" y="661" width="0.0112%" height="15" fill="rgb(249,2,32)" fg:x="145425" fg:w="54"/><text x="30.3726%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (142 samples, 0.03%)</title><rect x="30.1216%" y="677" width="0.0294%" height="15" fill="rgb(224,65,26)" fg:x="145420" fg:w="142"/><text x="30.3716%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (85 samples, 0.02%)</title><rect x="30.1804%" y="645" width="0.0176%" height="15" fill="rgb(250,73,40)" fg:x="145704" fg:w="85"/><text x="30.4304%" y="655.50"></text></g><g><title>__radix_tree_lookup (50 samples, 0.01%)</title><rect x="30.2115%" y="613" width="0.0104%" height="15" fill="rgb(253,177,16)" fg:x="145854" fg:w="50"/><text x="30.4615%" y="623.50"></text></g><g><title>find_extent_buffer (99 samples, 0.02%)</title><rect x="30.2075%" y="629" width="0.0205%" height="15" fill="rgb(217,32,34)" fg:x="145835" fg:w="99"/><text x="30.4575%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (161 samples, 0.03%)</title><rect x="30.1980%" y="645" width="0.0333%" height="15" fill="rgb(212,7,10)" fg:x="145789" fg:w="161"/><text x="30.4480%" y="655.50"></text></g><g><title>find_extent_buffer (61 samples, 0.01%)</title><rect x="30.2357%" y="629" width="0.0126%" height="15" fill="rgb(245,89,8)" fg:x="145971" fg:w="61"/><text x="30.4857%" y="639.50"></text></g><g><title>reada_for_balance (92 samples, 0.02%)</title><rect x="30.2313%" y="645" width="0.0191%" height="15" fill="rgb(237,16,53)" fg:x="145950" fg:w="92"/><text x="30.4813%" y="655.50"></text></g><g><title>btrfs_search_slot (438 samples, 0.09%)</title><rect x="30.1622%" y="661" width="0.0907%" height="15" fill="rgb(250,204,30)" fg:x="145616" fg:w="438"/><text x="30.4122%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (489 samples, 0.10%)</title><rect x="30.1557%" y="677" width="0.1013%" height="15" fill="rgb(208,77,27)" fg:x="145585" fg:w="489"/><text x="30.4057%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (65 samples, 0.01%)</title><rect x="30.2651%" y="661" width="0.0135%" height="15" fill="rgb(250,204,28)" fg:x="146113" fg:w="65"/><text x="30.5151%" y="671.50"></text></g><g><title>btrfs_update_inode (86 samples, 0.02%)</title><rect x="30.2639%" y="677" width="0.0178%" height="15" fill="rgb(244,63,21)" fg:x="146107" fg:w="86"/><text x="30.5139%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (2,189 samples, 0.45%)</title><rect x="29.8351%" y="693" width="0.4534%" height="15" fill="rgb(236,85,44)" fg:x="144037" fg:w="2189"/><text x="30.0851%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (61 samples, 0.01%)</title><rect x="30.3165%" y="629" width="0.0126%" height="15" fill="rgb(215,98,4)" fg:x="146361" fg:w="61"/><text x="30.5665%" y="639.50"></text></g><g><title>__radix_tree_lookup (59 samples, 0.01%)</title><rect x="30.3399%" y="597" width="0.0122%" height="15" fill="rgb(235,38,11)" fg:x="146474" fg:w="59"/><text x="30.5899%" y="607.50"></text></g><g><title>find_extent_buffer (98 samples, 0.02%)</title><rect x="30.3368%" y="613" width="0.0203%" height="15" fill="rgb(254,186,25)" fg:x="146459" fg:w="98"/><text x="30.5868%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (151 samples, 0.03%)</title><rect x="30.3291%" y="629" width="0.0313%" height="15" fill="rgb(225,55,31)" fg:x="146422" fg:w="151"/><text x="30.5791%" y="639.50"></text></g><g><title>btrfs_search_slot (313 samples, 0.06%)</title><rect x="30.3003%" y="645" width="0.0648%" height="15" fill="rgb(211,15,21)" fg:x="146283" fg:w="313"/><text x="30.5503%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (398 samples, 0.08%)</title><rect x="30.2999%" y="661" width="0.0824%" height="15" fill="rgb(215,187,41)" fg:x="146281" fg:w="398"/><text x="30.5499%" y="671.50"></text></g><g><title>setup_items_for_insert (83 samples, 0.02%)</title><rect x="30.3652%" y="645" width="0.0172%" height="15" fill="rgb(248,69,32)" fg:x="146596" fg:w="83"/><text x="30.6152%" y="655.50"></text></g><g><title>btrfs_orphan_add (464 samples, 0.10%)</title><rect x="30.2900%" y="693" width="0.0961%" height="15" fill="rgb(252,102,52)" fg:x="146233" fg:w="464"/><text x="30.5400%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (463 samples, 0.10%)</title><rect x="30.2902%" y="677" width="0.0959%" height="15" fill="rgb(253,140,32)" fg:x="146234" fg:w="463"/><text x="30.5402%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (60 samples, 0.01%)</title><rect x="30.3892%" y="677" width="0.0124%" height="15" fill="rgb(216,56,42)" fg:x="146712" fg:w="60"/><text x="30.6392%" y="687.50"></text></g><g><title>btrfs_update_inode (88 samples, 0.02%)</title><rect x="30.3873%" y="693" width="0.0182%" height="15" fill="rgb(216,184,14)" fg:x="146703" fg:w="88"/><text x="30.6373%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (62 samples, 0.01%)</title><rect x="30.4095%" y="677" width="0.0128%" height="15" fill="rgb(237,187,27)" fg:x="146810" fg:w="62"/><text x="30.6595%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (57 samples, 0.01%)</title><rect x="30.4105%" y="661" width="0.0118%" height="15" fill="rgb(219,65,3)" fg:x="146815" fg:w="57"/><text x="30.6605%" y="671.50"></text></g><g><title>__reserve_bytes (57 samples, 0.01%)</title><rect x="30.4105%" y="645" width="0.0118%" height="15" fill="rgb(245,83,25)" fg:x="146815" fg:w="57"/><text x="30.6605%" y="655.50"></text></g><g><title>btrfs_rmdir (2,930 samples, 0.61%)</title><rect x="29.8227%" y="709" width="0.6069%" height="15" fill="rgb(214,205,45)" fg:x="143977" fg:w="2930"/><text x="30.0727%" y="719.50"></text></g><g><title>start_transaction (114 samples, 0.02%)</title><rect x="30.4060%" y="693" width="0.0236%" height="15" fill="rgb(241,20,18)" fg:x="146793" fg:w="114"/><text x="30.6560%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (73 samples, 0.02%)</title><rect x="30.4509%" y="677" width="0.0151%" height="15" fill="rgb(232,163,23)" fg:x="147010" fg:w="73"/><text x="30.7009%" y="687.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (54 samples, 0.01%)</title><rect x="30.4774%" y="677" width="0.0112%" height="15" fill="rgb(214,5,46)" fg:x="147138" fg:w="54"/><text x="30.7274%" y="687.50"></text></g><g><title>btrfs_destroy_inode (241 samples, 0.05%)</title><rect x="30.4499%" y="693" width="0.0499%" height="15" fill="rgb(229,78,17)" fg:x="147005" fg:w="241"/><text x="30.6999%" y="703.50"></text></g><g><title>rb_erase (54 samples, 0.01%)</title><rect x="30.4886%" y="677" width="0.0112%" height="15" fill="rgb(248,89,10)" fg:x="147192" fg:w="54"/><text x="30.7386%" y="687.50"></text></g><g><title>destroy_inode (277 samples, 0.06%)</title><rect x="30.4432%" y="709" width="0.0574%" height="15" fill="rgb(248,54,15)" fg:x="146973" fg:w="277"/><text x="30.6932%" y="719.50"></text></g><g><title>__btrfs_end_transaction (86 samples, 0.02%)</title><rect x="30.5153%" y="677" width="0.0178%" height="15" fill="rgb(223,116,6)" fg:x="147321" fg:w="86"/><text x="30.7653%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (79 samples, 0.02%)</title><rect x="30.5331%" y="677" width="0.0164%" height="15" fill="rgb(205,125,38)" fg:x="147407" fg:w="79"/><text x="30.7831%" y="687.50"></text></g><g><title>radix_tree_delete_item (52 samples, 0.01%)</title><rect x="30.5387%" y="661" width="0.0108%" height="15" fill="rgb(251,78,38)" fg:x="147434" fg:w="52"/><text x="30.7887%" y="671.50"></text></g><g><title>btrfs_get_token_32 (256 samples, 0.05%)</title><rect x="30.5907%" y="629" width="0.0530%" height="15" fill="rgb(253,78,28)" fg:x="147685" fg:w="256"/><text x="30.8407%" y="639.50"></text></g><g><title>btrfs_set_token_32 (260 samples, 0.05%)</title><rect x="30.6456%" y="629" width="0.0539%" height="15" fill="rgb(209,120,3)" fg:x="147950" fg:w="260"/><text x="30.8956%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (53 samples, 0.01%)</title><rect x="30.6885%" y="613" width="0.0110%" height="15" fill="rgb(238,229,9)" fg:x="148157" fg:w="53"/><text x="30.9385%" y="623.50"></text></g><g><title>memmove_extent_buffer (137 samples, 0.03%)</title><rect x="30.7084%" y="629" width="0.0284%" height="15" fill="rgb(253,159,18)" fg:x="148253" fg:w="137"/><text x="30.9584%" y="639.50"></text></g><g><title>memmove (109 samples, 0.02%)</title><rect x="30.7142%" y="613" width="0.0226%" height="15" fill="rgb(244,42,34)" fg:x="148281" fg:w="109"/><text x="30.9642%" y="623.50"></text></g><g><title>btrfs_del_items (837 samples, 0.17%)</title><rect x="30.5696%" y="645" width="0.1734%" height="15" fill="rgb(224,8,7)" fg:x="147583" fg:w="837"/><text x="30.8196%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (79 samples, 0.02%)</title><rect x="30.7695%" y="613" width="0.0164%" height="15" fill="rgb(210,201,45)" fg:x="148548" fg:w="79"/><text x="31.0195%" y="623.50"></text></g><g><title>find_extent_buffer (67 samples, 0.01%)</title><rect x="30.7937%" y="597" width="0.0139%" height="15" fill="rgb(252,185,21)" fg:x="148665" fg:w="67"/><text x="31.0437%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (119 samples, 0.02%)</title><rect x="30.7858%" y="613" width="0.0246%" height="15" fill="rgb(223,131,1)" fg:x="148627" fg:w="119"/><text x="31.0358%" y="623.50"></text></g><g><title>reada_for_balance (65 samples, 0.01%)</title><rect x="30.8105%" y="613" width="0.0135%" height="15" fill="rgb(245,141,16)" fg:x="148746" fg:w="65"/><text x="31.0605%" y="623.50"></text></g><g><title>btrfs_lookup_inode (390 samples, 0.08%)</title><rect x="30.7475%" y="645" width="0.0808%" height="15" fill="rgb(229,55,45)" fg:x="148442" fg:w="390"/><text x="30.9975%" y="655.50"></text></g><g><title>btrfs_search_slot (386 samples, 0.08%)</title><rect x="30.7484%" y="629" width="0.0800%" height="15" fill="rgb(208,92,15)" fg:x="148446" fg:w="386"/><text x="30.9984%" y="639.50"></text></g><g><title>__btrfs_update_delayed_inode (1,347 samples, 0.28%)</title><rect x="30.5677%" y="661" width="0.2790%" height="15" fill="rgb(234,185,47)" fg:x="147574" fg:w="1347"/><text x="30.8177%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,477 samples, 0.31%)</title><rect x="30.5576%" y="677" width="0.3059%" height="15" fill="rgb(253,104,50)" fg:x="147525" fg:w="1477"/><text x="30.8076%" y="687.50"></text></g><g><title>btrfs_free_path (55 samples, 0.01%)</title><rect x="30.8724%" y="661" width="0.0114%" height="15" fill="rgb(205,70,7)" fg:x="149045" fg:w="55"/><text x="31.1224%" y="671.50"></text></g><g><title>btrfs_release_path (55 samples, 0.01%)</title><rect x="30.8724%" y="645" width="0.0114%" height="15" fill="rgb(240,178,43)" fg:x="149045" fg:w="55"/><text x="31.1224%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (71 samples, 0.01%)</title><rect x="30.9066%" y="645" width="0.0147%" height="15" fill="rgb(214,112,2)" fg:x="149210" fg:w="71"/><text x="31.1566%" y="655.50"></text></g><g><title>find_extent_buffer (84 samples, 0.02%)</title><rect x="30.9257%" y="629" width="0.0174%" height="15" fill="rgb(206,46,17)" fg:x="149302" fg:w="84"/><text x="31.1757%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (116 samples, 0.02%)</title><rect x="30.9213%" y="645" width="0.0240%" height="15" fill="rgb(225,220,16)" fg:x="149281" fg:w="116"/><text x="31.1713%" y="655.50"></text></g><g><title>btrfs_search_slot (345 samples, 0.07%)</title><rect x="30.8838%" y="661" width="0.0715%" height="15" fill="rgb(238,65,40)" fg:x="149100" fg:w="345"/><text x="31.1338%" y="671.50"></text></g><g><title>btrfs_del_orphan_item (467 samples, 0.10%)</title><rect x="30.8635%" y="677" width="0.0967%" height="15" fill="rgb(230,151,21)" fg:x="149002" fg:w="467"/><text x="31.1135%" y="687.50"></text></g><g><title>__clear_extent_bit (102 samples, 0.02%)</title><rect x="30.9845%" y="661" width="0.0211%" height="15" fill="rgb(218,58,49)" fg:x="149586" fg:w="102"/><text x="31.2345%" y="671.50"></text></g><g><title>steal_from_bitmap.part.0 (52 samples, 0.01%)</title><rect x="31.0321%" y="597" width="0.0108%" height="15" fill="rgb(219,179,14)" fg:x="149816" fg:w="52"/><text x="31.2821%" y="607.50"></text></g><g><title>__btrfs_add_free_space (63 samples, 0.01%)</title><rect x="31.0313%" y="613" width="0.0130%" height="15" fill="rgb(223,72,1)" fg:x="149812" fg:w="63"/><text x="31.2813%" y="623.50"></text></g><g><title>btrfs_free_tree_block (87 samples, 0.02%)</title><rect x="31.0313%" y="629" width="0.0180%" height="15" fill="rgb(238,126,10)" fg:x="149812" fg:w="87"/><text x="31.2813%" y="639.50"></text></g><g><title>btrfs_del_leaf (98 samples, 0.02%)</title><rect x="31.0311%" y="645" width="0.0203%" height="15" fill="rgb(224,206,38)" fg:x="149811" fg:w="98"/><text x="31.2811%" y="655.50"></text></g><g><title>btrfs_get_token_32 (283 samples, 0.06%)</title><rect x="31.0609%" y="645" width="0.0586%" height="15" fill="rgb(212,201,54)" fg:x="149955" fg:w="283"/><text x="31.3109%" y="655.50"></text></g><g><title>btrfs_set_token_32 (287 samples, 0.06%)</title><rect x="31.1224%" y="645" width="0.0594%" height="15" fill="rgb(218,154,48)" fg:x="150252" fg:w="287"/><text x="31.3724%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (55 samples, 0.01%)</title><rect x="31.1705%" y="629" width="0.0114%" height="15" fill="rgb(232,93,24)" fg:x="150484" fg:w="55"/><text x="31.4205%" y="639.50"></text></g><g><title>memcpy_extent_buffer (56 samples, 0.01%)</title><rect x="31.1885%" y="645" width="0.0116%" height="15" fill="rgb(245,30,21)" fg:x="150571" fg:w="56"/><text x="31.4385%" y="655.50"></text></g><g><title>memmove_extent_buffer (168 samples, 0.03%)</title><rect x="31.2001%" y="645" width="0.0348%" height="15" fill="rgb(242,148,29)" fg:x="150627" fg:w="168"/><text x="31.4501%" y="655.50"></text></g><g><title>memmove (123 samples, 0.03%)</title><rect x="31.2094%" y="629" width="0.0255%" height="15" fill="rgb(244,153,54)" fg:x="150672" fg:w="123"/><text x="31.4594%" y="639.50"></text></g><g><title>__push_leaf_left (57 samples, 0.01%)</title><rect x="31.2351%" y="629" width="0.0118%" height="15" fill="rgb(252,87,22)" fg:x="150796" fg:w="57"/><text x="31.4851%" y="639.50"></text></g><g><title>push_leaf_left (70 samples, 0.01%)</title><rect x="31.2349%" y="645" width="0.0145%" height="15" fill="rgb(210,51,29)" fg:x="150795" fg:w="70"/><text x="31.4849%" y="655.50"></text></g><g><title>__push_leaf_right (55 samples, 0.01%)</title><rect x="31.2494%" y="629" width="0.0114%" height="15" fill="rgb(242,136,47)" fg:x="150865" fg:w="55"/><text x="31.4994%" y="639.50"></text></g><g><title>push_leaf_right (68 samples, 0.01%)</title><rect x="31.2494%" y="645" width="0.0141%" height="15" fill="rgb(238,68,4)" fg:x="150865" fg:w="68"/><text x="31.4994%" y="655.50"></text></g><g><title>btrfs_del_items (1,251 samples, 0.26%)</title><rect x="31.0056%" y="661" width="0.2591%" height="15" fill="rgb(242,161,30)" fg:x="149688" fg:w="1251"/><text x="31.2556%" y="671.50"></text></g><g><title>alloc_extent_map (57 samples, 0.01%)</title><rect x="31.2676%" y="645" width="0.0118%" height="15" fill="rgb(218,58,44)" fg:x="150953" fg:w="57"/><text x="31.5176%" y="655.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.01%)</title><rect x="31.2685%" y="629" width="0.0110%" height="15" fill="rgb(252,125,32)" fg:x="150957" fg:w="53"/><text x="31.5185%" y="639.50"></text></g><g><title>btrfs_drop_extent_cache (102 samples, 0.02%)</title><rect x="31.2647%" y="661" width="0.0211%" height="15" fill="rgb(219,178,0)" fg:x="150939" fg:w="102"/><text x="31.5147%" y="671.50"></text></g><g><title>btrfs_free_path (50 samples, 0.01%)</title><rect x="31.2859%" y="661" width="0.0104%" height="15" fill="rgb(213,152,7)" fg:x="151041" fg:w="50"/><text x="31.5359%" y="671.50"></text></g><g><title>btrfs_release_path (50 samples, 0.01%)</title><rect x="31.2859%" y="645" width="0.0104%" height="15" fill="rgb(249,109,34)" fg:x="151041" fg:w="50"/><text x="31.5359%" y="655.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="31.3143%" y="613" width="0.0145%" height="15" fill="rgb(232,96,21)" fg:x="151178" fg:w="70"/><text x="31.5643%" y="623.50"></text></g><g><title>btrfs_block_rsv_release (122 samples, 0.03%)</title><rect x="31.3051%" y="629" width="0.0253%" height="15" fill="rgb(228,27,39)" fg:x="151134" fg:w="122"/><text x="31.5551%" y="639.50"></text></g><g><title>finish_one_item (76 samples, 0.02%)</title><rect x="31.3418%" y="613" width="0.0157%" height="15" fill="rgb(211,182,52)" fg:x="151311" fg:w="76"/><text x="31.5918%" y="623.50"></text></g><g><title>rb_erase (55 samples, 0.01%)</title><rect x="31.3575%" y="613" width="0.0114%" height="15" fill="rgb(234,178,38)" fg:x="151387" fg:w="55"/><text x="31.6075%" y="623.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (193 samples, 0.04%)</title><rect x="31.3304%" y="629" width="0.0400%" height="15" fill="rgb(221,111,3)" fg:x="151256" fg:w="193"/><text x="31.5804%" y="639.50"></text></g><g><title>__slab_free (58 samples, 0.01%)</title><rect x="31.3843%" y="613" width="0.0120%" height="15" fill="rgb(228,175,21)" fg:x="151516" fg:w="58"/><text x="31.6343%" y="623.50"></text></g><g><title>kfree (152 samples, 0.03%)</title><rect x="31.3704%" y="629" width="0.0315%" height="15" fill="rgb(228,174,43)" fg:x="151449" fg:w="152"/><text x="31.6204%" y="639.50"></text></g><g><title>__btrfs_kill_delayed_node (496 samples, 0.10%)</title><rect x="31.3018%" y="645" width="0.1027%" height="15" fill="rgb(211,191,0)" fg:x="151118" fg:w="496"/><text x="31.5518%" y="655.50"></text></g><g><title>btrfs_kill_delayed_inode_items (510 samples, 0.11%)</title><rect x="31.3008%" y="661" width="0.1056%" height="15" fill="rgb(253,117,3)" fg:x="151113" fg:w="510"/><text x="31.5508%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (92 samples, 0.02%)</title><rect x="31.4336%" y="645" width="0.0191%" height="15" fill="rgb(241,127,19)" fg:x="151754" fg:w="92"/><text x="31.6836%" y="655.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="31.4603%" y="629" width="0.0141%" height="15" fill="rgb(218,103,12)" fg:x="151883" fg:w="68"/><text x="31.7103%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (123 samples, 0.03%)</title><rect x="31.4526%" y="645" width="0.0255%" height="15" fill="rgb(236,214,43)" fg:x="151846" fg:w="123"/><text x="31.7026%" y="655.50"></text></g><g><title>find_extent_buffer (59 samples, 0.01%)</title><rect x="31.4808%" y="629" width="0.0122%" height="15" fill="rgb(244,144,19)" fg:x="151982" fg:w="59"/><text x="31.7308%" y="639.50"></text></g><g><title>reada_for_balance (84 samples, 0.02%)</title><rect x="31.4781%" y="645" width="0.0174%" height="15" fill="rgb(246,188,10)" fg:x="151969" fg:w="84"/><text x="31.7281%" y="655.50"></text></g><g><title>btrfs_search_slot (457 samples, 0.09%)</title><rect x="31.4075%" y="661" width="0.0947%" height="15" fill="rgb(212,193,33)" fg:x="151628" fg:w="457"/><text x="31.6575%" y="671.50"></text></g><g><title>lock_extent_bits (55 samples, 0.01%)</title><rect x="31.5067%" y="661" width="0.0114%" height="15" fill="rgb(241,51,29)" fg:x="152107" fg:w="55"/><text x="31.7567%" y="671.50"></text></g><g><title>__set_extent_bit (54 samples, 0.01%)</title><rect x="31.5069%" y="645" width="0.0112%" height="15" fill="rgb(211,58,19)" fg:x="152108" fg:w="54"/><text x="31.7569%" y="655.50"></text></g><g><title>btrfs_truncate_inode_items (2,737 samples, 0.57%)</title><rect x="30.9644%" y="677" width="0.5669%" height="15" fill="rgb(229,111,26)" fg:x="149489" fg:w="2737"/><text x="31.2144%" y="687.50"></text></g><g><title>read_extent_buffer (64 samples, 0.01%)</title><rect x="31.5181%" y="661" width="0.0133%" height="15" fill="rgb(213,115,40)" fg:x="152162" fg:w="64"/><text x="31.7681%" y="671.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (72 samples, 0.01%)</title><rect x="31.5452%" y="613" width="0.0149%" height="15" fill="rgb(209,56,44)" fg:x="152293" fg:w="72"/><text x="31.7952%" y="623.50"></text></g><g><title>btrfs_block_rsv_refill (153 samples, 0.03%)</title><rect x="31.5357%" y="661" width="0.0317%" height="15" fill="rgb(230,108,32)" fg:x="152247" fg:w="153"/><text x="31.7857%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (126 samples, 0.03%)</title><rect x="31.5413%" y="645" width="0.0261%" height="15" fill="rgb(216,165,31)" fg:x="152274" fg:w="126"/><text x="31.7913%" y="655.50"></text></g><g><title>__reserve_bytes (125 samples, 0.03%)</title><rect x="31.5415%" y="629" width="0.0259%" height="15" fill="rgb(218,122,21)" fg:x="152275" fg:w="125"/><text x="31.7915%" y="639.50"></text></g><g><title>evict_refill_and_join (270 samples, 0.06%)</title><rect x="31.5313%" y="677" width="0.0559%" height="15" fill="rgb(223,224,47)" fg:x="152226" fg:w="270"/><text x="31.7813%" y="687.50"></text></g><g><title>start_transaction (96 samples, 0.02%)</title><rect x="31.5674%" y="661" width="0.0199%" height="15" fill="rgb(238,102,44)" fg:x="152400" fg:w="96"/><text x="31.8174%" y="671.50"></text></g><g><title>btrfs_evict_inode (5,235 samples, 1.08%)</title><rect x="30.5141%" y="693" width="1.0844%" height="15" fill="rgb(236,46,40)" fg:x="147315" fg:w="5235"/><text x="30.7641%" y="703.50"></text></g><g><title>evict (5,303 samples, 1.10%)</title><rect x="30.5033%" y="709" width="1.0984%" height="15" fill="rgb(247,202,50)" fg:x="147263" fg:w="5303"/><text x="30.7533%" y="719.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="31.6177%" y="677" width="0.0141%" height="15" fill="rgb(209,99,20)" fg:x="152643" fg:w="68"/><text x="31.8677%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="31.6730%" y="629" width="0.0128%" height="15" fill="rgb(252,27,34)" fg:x="152910" fg:w="62"/><text x="31.9230%" y="639.50"></text></g><g><title>d_lru_del (387 samples, 0.08%)</title><rect x="31.6399%" y="661" width="0.0802%" height="15" fill="rgb(215,206,23)" fg:x="152750" fg:w="387"/><text x="31.8899%" y="671.50"></text></g><g><title>list_lru_del (369 samples, 0.08%)</title><rect x="31.6436%" y="645" width="0.0764%" height="15" fill="rgb(212,135,36)" fg:x="152768" fg:w="369"/><text x="31.8936%" y="655.50"></text></g><g><title>mem_cgroup_from_obj (164 samples, 0.03%)</title><rect x="31.6861%" y="629" width="0.0340%" height="15" fill="rgb(240,189,1)" fg:x="152973" fg:w="164"/><text x="31.9361%" y="639.50"></text></g><g><title>d_walk (574 samples, 0.12%)</title><rect x="31.6094%" y="693" width="0.1189%" height="15" fill="rgb(242,56,20)" fg:x="152603" fg:w="574"/><text x="31.8594%" y="703.50"></text></g><g><title>select_collect (466 samples, 0.10%)</title><rect x="31.6318%" y="677" width="0.0965%" height="15" fill="rgb(247,132,33)" fg:x="152711" fg:w="466"/><text x="31.8818%" y="687.50"></text></g><g><title>___d_drop (247 samples, 0.05%)</title><rect x="31.7418%" y="661" width="0.0512%" height="15" fill="rgb(208,149,11)" fg:x="153242" fg:w="247"/><text x="31.9918%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="31.7944%" y="661" width="0.0137%" height="15" fill="rgb(211,33,11)" fg:x="153496" fg:w="66"/><text x="32.0444%" y="671.50"></text></g><g><title>call_rcu (292 samples, 0.06%)</title><rect x="31.8081%" y="661" width="0.0605%" height="15" fill="rgb(221,29,38)" fg:x="153562" fg:w="292"/><text x="32.0581%" y="671.50"></text></g><g><title>rcu_segcblist_enqueue (155 samples, 0.03%)</title><rect x="31.8364%" y="645" width="0.0321%" height="15" fill="rgb(206,182,49)" fg:x="153699" fg:w="155"/><text x="32.0864%" y="655.50"></text></g><g><title>__dentry_kill (664 samples, 0.14%)</title><rect x="31.7316%" y="677" width="0.1375%" height="15" fill="rgb(216,140,1)" fg:x="153193" fg:w="664"/><text x="31.9816%" y="687.50"></text></g><g><title>__dput_to_list (66 samples, 0.01%)</title><rect x="31.8692%" y="677" width="0.0137%" height="15" fill="rgb(232,57,40)" fg:x="153857" fg:w="66"/><text x="32.1192%" y="687.50"></text></g><g><title>d_lru_del (55 samples, 0.01%)</title><rect x="31.8714%" y="661" width="0.0114%" height="15" fill="rgb(224,186,18)" fg:x="153868" fg:w="55"/><text x="32.1214%" y="671.50"></text></g><g><title>list_lru_del (49 samples, 0.01%)</title><rect x="31.8727%" y="645" width="0.0101%" height="15" fill="rgb(215,121,11)" fg:x="153874" fg:w="49"/><text x="32.1227%" y="655.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="31.8862%" y="677" width="0.0137%" height="15" fill="rgb(245,147,10)" fg:x="153939" fg:w="66"/><text x="32.1362%" y="687.50"></text></g><g><title>_raw_spin_trylock (66 samples, 0.01%)</title><rect x="31.9112%" y="661" width="0.0137%" height="15" fill="rgb(238,153,13)" fg:x="154060" fg:w="66"/><text x="32.1612%" y="671.50"></text></g><g><title>shrink_dcache_parent (1,527 samples, 0.32%)</title><rect x="31.6088%" y="709" width="0.3163%" height="15" fill="rgb(233,108,0)" fg:x="152600" fg:w="1527"/><text x="31.8588%" y="719.50"></text></g><g><title>shrink_dentry_list (950 samples, 0.20%)</title><rect x="31.7283%" y="693" width="0.1968%" height="15" fill="rgb(212,157,17)" fg:x="153177" fg:w="950"/><text x="31.9783%" y="703.50"></text></g><g><title>shrink_lock_dentry.part.0 (88 samples, 0.02%)</title><rect x="31.9069%" y="677" width="0.0182%" height="15" fill="rgb(225,213,38)" fg:x="154039" fg:w="88"/><text x="32.1569%" y="687.50"></text></g><g><title>do_rmdir (10,459 samples, 2.17%)</title><rect x="29.7601%" y="741" width="2.1664%" height="15" fill="rgb(248,16,11)" fg:x="143675" fg:w="10459"/><text x="30.0101%" y="751.50">d..</text></g><g><title>vfs_rmdir.part.0 (10,163 samples, 2.11%)</title><rect x="29.8214%" y="725" width="2.1051%" height="15" fill="rgb(241,33,4)" fg:x="143971" fg:w="10163"/><text x="30.0714%" y="735.50">v..</text></g><g><title>_raw_spin_lock (156 samples, 0.03%)</title><rect x="32.1650%" y="661" width="0.0323%" height="15" fill="rgb(222,26,43)" fg:x="155285" fg:w="156"/><text x="32.4150%" y="671.50"></text></g><g><title>__d_lookup (1,177 samples, 0.24%)</title><rect x="31.9553%" y="677" width="0.2438%" height="15" fill="rgb(243,29,36)" fg:x="154273" fg:w="1177"/><text x="32.2053%" y="687.50"></text></g><g><title>__lookup_hash (1,218 samples, 0.25%)</title><rect x="31.9470%" y="725" width="0.2523%" height="15" fill="rgb(241,9,27)" fg:x="154233" fg:w="1218"/><text x="32.1970%" y="735.50"></text></g><g><title>lookup_dcache (1,200 samples, 0.25%)</title><rect x="31.9508%" y="709" width="0.2486%" height="15" fill="rgb(205,117,26)" fg:x="154251" fg:w="1200"/><text x="32.2008%" y="719.50"></text></g><g><title>d_lookup (1,191 samples, 0.25%)</title><rect x="31.9526%" y="693" width="0.2467%" height="15" fill="rgb(209,80,39)" fg:x="154260" fg:w="1191"/><text x="32.2026%" y="703.50"></text></g><g><title>call_rcu (323 samples, 0.07%)</title><rect x="32.1998%" y="725" width="0.0669%" height="15" fill="rgb(239,155,6)" fg:x="155453" fg:w="323"/><text x="32.4498%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (161 samples, 0.03%)</title><rect x="32.2333%" y="709" width="0.0333%" height="15" fill="rgb(212,104,12)" fg:x="155615" fg:w="161"/><text x="32.4833%" y="719.50"></text></g><g><title>__srcu_read_lock (63 samples, 0.01%)</title><rect x="32.2855%" y="661" width="0.0130%" height="15" fill="rgb(234,204,3)" fg:x="155867" fg:w="63"/><text x="32.5355%" y="671.50"></text></g><g><title>fsnotify_destroy_marks (159 samples, 0.03%)</title><rect x="32.2809%" y="693" width="0.0329%" height="15" fill="rgb(251,218,7)" fg:x="155845" fg:w="159"/><text x="32.5309%" y="703.50"></text></g><g><title>fsnotify_grab_connector (147 samples, 0.03%)</title><rect x="32.2834%" y="677" width="0.0304%" height="15" fill="rgb(221,81,32)" fg:x="155857" fg:w="147"/><text x="32.5334%" y="687.50"></text></g><g><title>__srcu_read_unlock (74 samples, 0.02%)</title><rect x="32.2986%" y="661" width="0.0153%" height="15" fill="rgb(214,152,26)" fg:x="155930" fg:w="74"/><text x="32.5486%" y="671.50"></text></g><g><title>__destroy_inode (249 samples, 0.05%)</title><rect x="32.2673%" y="709" width="0.0516%" height="15" fill="rgb(223,22,3)" fg:x="155779" fg:w="249"/><text x="32.5173%" y="719.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="32.3307%" y="693" width="0.0139%" height="15" fill="rgb(207,174,7)" fg:x="156085" fg:w="67"/><text x="32.5807%" y="703.50"></text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="32.3592%" y="677" width="0.0122%" height="15" fill="rgb(224,19,52)" fg:x="156223" fg:w="59"/><text x="32.6092%" y="687.50"></text></g><g><title>memset_erms (149 samples, 0.03%)</title><rect x="32.4235%" y="645" width="0.0309%" height="15" fill="rgb(228,24,14)" fg:x="156533" fg:w="149"/><text x="32.6735%" y="655.50"></text></g><g><title>alloc_extent_map (463 samples, 0.10%)</title><rect x="32.3715%" y="677" width="0.0959%" height="15" fill="rgb(230,153,43)" fg:x="156282" fg:w="463"/><text x="32.6215%" y="687.50"></text></g><g><title>kmem_cache_alloc (429 samples, 0.09%)</title><rect x="32.3785%" y="661" width="0.0889%" height="15" fill="rgb(231,106,12)" fg:x="156316" fg:w="429"/><text x="32.6285%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="32.4543%" y="645" width="0.0130%" height="15" fill="rgb(215,92,2)" fg:x="156682" fg:w="63"/><text x="32.7043%" y="655.50"></text></g><g><title>free_extent_map (117 samples, 0.02%)</title><rect x="32.4674%" y="677" width="0.0242%" height="15" fill="rgb(249,143,25)" fg:x="156745" fg:w="117"/><text x="32.7174%" y="687.50"></text></g><g><title>kmem_cache_free (266 samples, 0.06%)</title><rect x="32.4916%" y="677" width="0.0551%" height="15" fill="rgb(252,7,35)" fg:x="156862" fg:w="266"/><text x="32.7416%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (71 samples, 0.01%)</title><rect x="32.5320%" y="661" width="0.0147%" height="15" fill="rgb(216,69,40)" fg:x="157057" fg:w="71"/><text x="32.7820%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (978 samples, 0.20%)</title><rect x="32.3445%" y="693" width="0.2026%" height="15" fill="rgb(240,36,33)" fg:x="156152" fg:w="978"/><text x="32.5945%" y="703.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="32.5631%" y="645" width="0.0120%" height="15" fill="rgb(231,128,14)" fg:x="157207" fg:w="58"/><text x="32.8131%" y="655.50"></text></g><g><title>alloc_extent_state (223 samples, 0.05%)</title><rect x="32.5751%" y="645" width="0.0462%" height="15" fill="rgb(245,143,14)" fg:x="157265" fg:w="223"/><text x="32.8251%" y="655.50"></text></g><g><title>kmem_cache_alloc (201 samples, 0.04%)</title><rect x="32.5796%" y="629" width="0.0416%" height="15" fill="rgb(222,130,28)" fg:x="157287" fg:w="201"/><text x="32.8296%" y="639.50"></text></g><g><title>free_extent_state (58 samples, 0.01%)</title><rect x="32.6213%" y="645" width="0.0120%" height="15" fill="rgb(212,10,48)" fg:x="157488" fg:w="58"/><text x="32.8713%" y="655.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (525 samples, 0.11%)</title><rect x="32.5471%" y="693" width="0.1087%" height="15" fill="rgb(254,118,45)" fg:x="157130" fg:w="525"/><text x="32.7971%" y="703.50"></text></g><g><title>clear_extent_bit (495 samples, 0.10%)</title><rect x="32.5533%" y="677" width="0.1025%" height="15" fill="rgb(228,6,45)" fg:x="157160" fg:w="495"/><text x="32.8033%" y="687.50"></text></g><g><title>__clear_extent_bit (488 samples, 0.10%)</title><rect x="32.5548%" y="661" width="0.1011%" height="15" fill="rgb(241,18,35)" fg:x="157167" fg:w="488"/><text x="32.8048%" y="671.50"></text></g><g><title>kmem_cache_free (109 samples, 0.02%)</title><rect x="32.6333%" y="645" width="0.0226%" height="15" fill="rgb(227,214,53)" fg:x="157546" fg:w="109"/><text x="32.8833%" y="655.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (105 samples, 0.02%)</title><rect x="32.6559%" y="693" width="0.0217%" height="15" fill="rgb(224,107,51)" fg:x="157655" fg:w="105"/><text x="32.9059%" y="703.50"></text></g><g><title>_raw_spin_lock_irq (53 samples, 0.01%)</title><rect x="32.6666%" y="677" width="0.0110%" height="15" fill="rgb(248,60,28)" fg:x="157707" fg:w="53"/><text x="32.9166%" y="687.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="32.6925%" y="645" width="0.0108%" height="15" fill="rgb(249,101,23)" fg:x="157832" fg:w="52"/><text x="32.9425%" y="655.50"></text></g><g><title>alloc_extent_state (242 samples, 0.05%)</title><rect x="32.7033%" y="645" width="0.0501%" height="15" fill="rgb(228,51,19)" fg:x="157884" fg:w="242"/><text x="32.9533%" y="655.50"></text></g><g><title>kmem_cache_alloc (217 samples, 0.04%)</title><rect x="32.7085%" y="629" width="0.0449%" height="15" fill="rgb(213,20,6)" fg:x="157909" fg:w="217"/><text x="32.9585%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (52 samples, 0.01%)</title><rect x="32.7427%" y="613" width="0.0108%" height="15" fill="rgb(212,124,10)" fg:x="158074" fg:w="52"/><text x="32.9927%" y="623.50"></text></g><g><title>free_extent_state (53 samples, 0.01%)</title><rect x="32.7534%" y="645" width="0.0110%" height="15" fill="rgb(248,3,40)" fg:x="158126" fg:w="53"/><text x="33.0034%" y="655.50"></text></g><g><title>clear_record_extent_bits (534 samples, 0.11%)</title><rect x="32.6822%" y="677" width="0.1106%" height="15" fill="rgb(223,178,23)" fg:x="157782" fg:w="534"/><text x="32.9322%" y="687.50"></text></g><g><title>__clear_extent_bit (528 samples, 0.11%)</title><rect x="32.6834%" y="661" width="0.1094%" height="15" fill="rgb(240,132,45)" fg:x="157788" fg:w="528"/><text x="32.9334%" y="671.50"></text></g><g><title>kmem_cache_free (137 samples, 0.03%)</title><rect x="32.7644%" y="645" width="0.0284%" height="15" fill="rgb(245,164,36)" fg:x="158179" fg:w="137"/><text x="33.0144%" y="655.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (585 samples, 0.12%)</title><rect x="32.6776%" y="693" width="0.1212%" height="15" fill="rgb(231,188,53)" fg:x="157760" fg:w="585"/><text x="32.9276%" y="703.50"></text></g><g><title>btrfs_destroy_inode (3,082 samples, 0.64%)</title><rect x="32.3189%" y="709" width="0.6384%" height="15" fill="rgb(237,198,39)" fg:x="156028" fg:w="3082"/><text x="32.5689%" y="719.50"></text></g><g><title>rb_erase (765 samples, 0.16%)</title><rect x="32.7988%" y="693" width="0.1585%" height="15" fill="rgb(223,120,35)" fg:x="158345" fg:w="765"/><text x="33.0488%" y="703.50"></text></g><g><title>destroy_inode (3,389 samples, 0.70%)</title><rect x="32.2667%" y="725" width="0.7020%" height="15" fill="rgb(253,107,49)" fg:x="155776" fg:w="3389"/><text x="32.5167%" y="735.50"></text></g><g><title>btrfs_put_root (55 samples, 0.01%)</title><rect x="32.9572%" y="709" width="0.0114%" height="15" fill="rgb(216,44,31)" fg:x="159110" fg:w="55"/><text x="33.2072%" y="719.50"></text></g><g><title>down_write (74 samples, 0.02%)</title><rect x="32.9686%" y="725" width="0.0153%" height="15" fill="rgb(253,87,21)" fg:x="159165" fg:w="74"/><text x="33.2186%" y="735.50"></text></g><g><title>lockref_put_or_lock (105 samples, 0.02%)</title><rect x="33.0101%" y="709" width="0.0217%" height="15" fill="rgb(226,18,2)" fg:x="159365" fg:w="105"/><text x="33.2601%" y="719.50"></text></g><g><title>dput (235 samples, 0.05%)</title><rect x="32.9840%" y="725" width="0.0487%" height="15" fill="rgb(216,8,46)" fg:x="159239" fg:w="235"/><text x="33.2340%" y="735.50"></text></g><g><title>__list_del_entry_valid (302 samples, 0.06%)</title><rect x="33.0434%" y="709" width="0.0626%" height="15" fill="rgb(226,140,39)" fg:x="159526" fg:w="302"/><text x="33.2934%" y="719.50"></text></g><g><title>__remove_inode_hash (134 samples, 0.03%)</title><rect x="33.1060%" y="709" width="0.0278%" height="15" fill="rgb(221,194,54)" fg:x="159828" fg:w="134"/><text x="33.3560%" y="719.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="33.1101%" y="693" width="0.0236%" height="15" fill="rgb(213,92,11)" fg:x="159848" fg:w="114"/><text x="33.3601%" y="703.50"></text></g><g><title>_raw_spin_lock (225 samples, 0.05%)</title><rect x="33.1337%" y="709" width="0.0466%" height="15" fill="rgb(229,162,46)" fg:x="159962" fg:w="225"/><text x="33.3837%" y="719.50"></text></g><g><title>btrfs_put_transaction (127 samples, 0.03%)</title><rect x="33.2640%" y="677" width="0.0263%" height="15" fill="rgb(214,111,36)" fg:x="160591" fg:w="127"/><text x="33.5140%" y="687.50"></text></g><g><title>_raw_spin_lock (219 samples, 0.05%)</title><rect x="33.3193%" y="645" width="0.0454%" height="15" fill="rgb(207,6,21)" fg:x="160858" fg:w="219"/><text x="33.5693%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (399 samples, 0.08%)</title><rect x="33.2930%" y="677" width="0.0826%" height="15" fill="rgb(213,127,38)" fg:x="160731" fg:w="399"/><text x="33.5430%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (381 samples, 0.08%)</title><rect x="33.2967%" y="661" width="0.0789%" height="15" fill="rgb(238,118,32)" fg:x="160749" fg:w="381"/><text x="33.5467%" y="671.50"></text></g><g><title>__btrfs_end_transaction (1,066 samples, 0.22%)</title><rect x="33.2073%" y="693" width="0.2208%" height="15" fill="rgb(240,139,39)" fg:x="160317" fg:w="1066"/><text x="33.4573%" y="703.50"></text></g><g><title>kmem_cache_free (253 samples, 0.05%)</title><rect x="33.3757%" y="677" width="0.0524%" height="15" fill="rgb(235,10,37)" fg:x="161130" fg:w="253"/><text x="33.6257%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (66 samples, 0.01%)</title><rect x="33.4144%" y="661" width="0.0137%" height="15" fill="rgb(249,171,38)" fg:x="161317" fg:w="66"/><text x="33.6644%" y="671.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.02%)</title><rect x="33.4465%" y="677" width="0.0201%" height="15" fill="rgb(242,144,32)" fg:x="161472" fg:w="97"/><text x="33.6965%" y="687.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="33.4666%" y="677" width="0.0170%" height="15" fill="rgb(217,117,21)" fg:x="161569" fg:w="82"/><text x="33.7166%" y="687.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="33.4836%" y="677" width="0.0114%" height="15" fill="rgb(249,87,1)" fg:x="161651" fg:w="55"/><text x="33.7336%" y="687.50"></text></g><g><title>__radix_tree_delete (104 samples, 0.02%)</title><rect x="33.4975%" y="661" width="0.0215%" height="15" fill="rgb(248,196,48)" fg:x="161718" fg:w="104"/><text x="33.7475%" y="671.50"></text></g><g><title>__radix_tree_lookup (414 samples, 0.09%)</title><rect x="33.5190%" y="661" width="0.0858%" height="15" fill="rgb(251,206,33)" fg:x="161822" fg:w="414"/><text x="33.7690%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (869 samples, 0.18%)</title><rect x="33.4281%" y="693" width="0.1800%" height="15" fill="rgb(232,141,28)" fg:x="161383" fg:w="869"/><text x="33.6781%" y="703.50"></text></g><g><title>radix_tree_delete_item (546 samples, 0.11%)</title><rect x="33.4950%" y="677" width="0.1131%" height="15" fill="rgb(209,167,14)" fg:x="161706" fg:w="546"/><text x="33.7450%" y="687.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="33.6081%" y="693" width="0.0122%" height="15" fill="rgb(225,11,50)" fg:x="162252" fg:w="59"/><text x="33.8581%" y="703.50"></text></g><g><title>_raw_write_lock (60 samples, 0.01%)</title><rect x="33.6203%" y="693" width="0.0124%" height="15" fill="rgb(209,50,20)" fg:x="162311" fg:w="60"/><text x="33.8703%" y="703.50"></text></g><g><title>memset_erms (50 samples, 0.01%)</title><rect x="33.6646%" y="661" width="0.0104%" height="15" fill="rgb(212,17,46)" fg:x="162525" fg:w="50"/><text x="33.9146%" y="671.50"></text></g><g><title>btrfs_alloc_block_rsv (220 samples, 0.05%)</title><rect x="33.6331%" y="693" width="0.0456%" height="15" fill="rgb(216,101,39)" fg:x="162373" fg:w="220"/><text x="33.8831%" y="703.50"></text></g><g><title>kmem_cache_alloc_trace (144 samples, 0.03%)</title><rect x="33.6489%" y="677" width="0.0298%" height="15" fill="rgb(212,228,48)" fg:x="162449" fg:w="144"/><text x="33.8989%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (54 samples, 0.01%)</title><rect x="33.6787%" y="693" width="0.0112%" height="15" fill="rgb(250,6,50)" fg:x="162593" fg:w="54"/><text x="33.9287%" y="703.50"></text></g><g><title>btrfs_put_transaction (66 samples, 0.01%)</title><rect x="33.7413%" y="661" width="0.0137%" height="15" fill="rgb(250,160,48)" fg:x="162895" fg:w="66"/><text x="33.9913%" y="671.50"></text></g><g><title>__btrfs_end_transaction (377 samples, 0.08%)</title><rect x="33.7023%" y="677" width="0.0781%" height="15" fill="rgb(244,216,33)" fg:x="162707" fg:w="377"/><text x="33.9523%" y="687.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="33.7572%" y="661" width="0.0232%" height="15" fill="rgb(207,157,5)" fg:x="162972" fg:w="112"/><text x="34.0072%" y="671.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="33.8200%" y="661" width="0.0122%" height="15" fill="rgb(228,199,8)" fg:x="163275" fg:w="59"/><text x="34.0700%" y="671.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="33.8322%" y="661" width="0.0133%" height="15" fill="rgb(227,80,20)" fg:x="163334" fg:w="64"/><text x="34.0822%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (362 samples, 0.07%)</title><rect x="33.7804%" y="677" width="0.0750%" height="15" fill="rgb(222,9,33)" fg:x="163084" fg:w="362"/><text x="34.0304%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (64 samples, 0.01%)</title><rect x="34.0536%" y="581" width="0.0133%" height="15" fill="rgb(239,44,28)" fg:x="164403" fg:w="64"/><text x="34.3036%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (76 samples, 0.02%)</title><rect x="34.0524%" y="597" width="0.0157%" height="15" fill="rgb(249,187,43)" fg:x="164397" fg:w="76"/><text x="34.3024%" y="607.50"></text></g><g><title>__btrfs_add_free_space (92 samples, 0.02%)</title><rect x="34.0505%" y="613" width="0.0191%" height="15" fill="rgb(216,141,28)" fg:x="164388" fg:w="92"/><text x="34.3005%" y="623.50"></text></g><g><title>btrfs_free_tree_block (144 samples, 0.03%)</title><rect x="34.0505%" y="629" width="0.0298%" height="15" fill="rgb(230,154,53)" fg:x="164388" fg:w="144"/><text x="34.3005%" y="639.50"></text></g><g><title>btrfs_del_leaf (160 samples, 0.03%)</title><rect x="34.0495%" y="645" width="0.0331%" height="15" fill="rgb(227,82,4)" fg:x="164383" fg:w="160"/><text x="34.2995%" y="655.50"></text></g><g><title>btrfs_get_32 (78 samples, 0.02%)</title><rect x="34.0826%" y="645" width="0.0162%" height="15" fill="rgb(220,107,16)" fg:x="164543" fg:w="78"/><text x="34.3326%" y="655.50"></text></g><g><title>btrfs_get_token_32 (2,107 samples, 0.44%)</title><rect x="34.0988%" y="645" width="0.4364%" height="15" fill="rgb(207,187,2)" fg:x="164621" fg:w="2107"/><text x="34.3488%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (317 samples, 0.07%)</title><rect x="34.4695%" y="629" width="0.0657%" height="15" fill="rgb(210,162,52)" fg:x="166411" fg:w="317"/><text x="34.7195%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (151 samples, 0.03%)</title><rect x="34.5352%" y="645" width="0.0313%" height="15" fill="rgb(217,216,49)" fg:x="166728" fg:w="151"/><text x="34.7852%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="34.5441%" y="629" width="0.0224%" height="15" fill="rgb(218,146,49)" fg:x="166771" fg:w="108"/><text x="34.7941%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (397 samples, 0.08%)</title><rect x="34.8766%" y="629" width="0.0822%" height="15" fill="rgb(216,55,40)" fg:x="168376" fg:w="397"/><text x="35.1266%" y="639.50"></text></g><g><title>btrfs_set_token_32 (1,882 samples, 0.39%)</title><rect x="34.5692%" y="645" width="0.3898%" height="15" fill="rgb(208,196,21)" fg:x="166892" fg:w="1882"/><text x="34.8192%" y="655.50"></text></g><g><title>leaf_space_used (112 samples, 0.02%)</title><rect x="34.9623%" y="645" width="0.0232%" height="15" fill="rgb(242,117,42)" fg:x="168790" fg:w="112"/><text x="35.2123%" y="655.50"></text></g><g><title>btrfs_get_32 (76 samples, 0.02%)</title><rect x="34.9698%" y="629" width="0.0157%" height="15" fill="rgb(210,11,23)" fg:x="168826" fg:w="76"/><text x="35.2198%" y="639.50"></text></g><g><title>memcpy_extent_buffer (311 samples, 0.06%)</title><rect x="34.9855%" y="645" width="0.0644%" height="15" fill="rgb(217,110,2)" fg:x="168902" fg:w="311"/><text x="35.2355%" y="655.50"></text></g><g><title>memmove (257 samples, 0.05%)</title><rect x="34.9967%" y="629" width="0.0532%" height="15" fill="rgb(229,77,54)" fg:x="168956" fg:w="257"/><text x="35.2467%" y="639.50"></text></g><g><title>copy_pages (297 samples, 0.06%)</title><rect x="35.0798%" y="629" width="0.0615%" height="15" fill="rgb(218,53,16)" fg:x="169357" fg:w="297"/><text x="35.3298%" y="639.50"></text></g><g><title>memmove_extent_buffer (2,787 samples, 0.58%)</title><rect x="35.0499%" y="645" width="0.5773%" height="15" fill="rgb(215,38,13)" fg:x="169213" fg:w="2787"/><text x="35.2999%" y="655.50"></text></g><g><title>memmove (2,346 samples, 0.49%)</title><rect x="35.1413%" y="629" width="0.4859%" height="15" fill="rgb(235,42,18)" fg:x="169654" fg:w="2346"/><text x="35.3913%" y="639.50"></text></g><g><title>__push_leaf_left (104 samples, 0.02%)</title><rect x="35.6318%" y="629" width="0.0215%" height="15" fill="rgb(219,66,54)" fg:x="172022" fg:w="104"/><text x="35.8818%" y="639.50"></text></g><g><title>push_leaf_left (178 samples, 0.04%)</title><rect x="35.6272%" y="645" width="0.0369%" height="15" fill="rgb(222,205,4)" fg:x="172000" fg:w="178"/><text x="35.8772%" y="655.50"></text></g><g><title>__push_leaf_right (99 samples, 0.02%)</title><rect x="35.6697%" y="629" width="0.0205%" height="15" fill="rgb(227,213,46)" fg:x="172205" fg:w="99"/><text x="35.9197%" y="639.50"></text></g><g><title>alloc_extent_buffer (63 samples, 0.01%)</title><rect x="35.7065%" y="597" width="0.0130%" height="15" fill="rgb(250,145,42)" fg:x="172383" fg:w="63"/><text x="35.9565%" y="607.50"></text></g><g><title>find_extent_buffer (57 samples, 0.01%)</title><rect x="35.7078%" y="581" width="0.0118%" height="15" fill="rgb(219,15,2)" fg:x="172389" fg:w="57"/><text x="35.9578%" y="591.50"></text></g><g><title>btrfs_read_node_slot (123 samples, 0.03%)</title><rect x="35.6995%" y="629" width="0.0255%" height="15" fill="rgb(231,181,52)" fg:x="172349" fg:w="123"/><text x="35.9495%" y="639.50"></text></g><g><title>read_tree_block (92 samples, 0.02%)</title><rect x="35.7059%" y="613" width="0.0191%" height="15" fill="rgb(235,1,42)" fg:x="172380" fg:w="92"/><text x="35.9559%" y="623.50"></text></g><g><title>push_leaf_right (327 samples, 0.07%)</title><rect x="35.6641%" y="645" width="0.0677%" height="15" fill="rgb(249,88,27)" fg:x="172178" fg:w="327"/><text x="35.9141%" y="655.50"></text></g><g><title>btrfs_del_items (8,939 samples, 1.85%)</title><rect x="33.8844%" y="661" width="1.8516%" height="15" fill="rgb(235,145,16)" fg:x="163586" fg:w="8939"/><text x="34.1344%" y="671.50">b..</text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="35.7519%" y="629" width="0.0222%" height="15" fill="rgb(237,114,19)" fg:x="172602" fg:w="107"/><text x="36.0019%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (201 samples, 0.04%)</title><rect x="35.7399%" y="645" width="0.0416%" height="15" fill="rgb(238,51,50)" fg:x="172544" fg:w="201"/><text x="35.9899%" y="655.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (237 samples, 0.05%)</title><rect x="35.7360%" y="661" width="0.0491%" height="15" fill="rgb(205,194,25)" fg:x="172525" fg:w="237"/><text x="35.9860%" y="671.50"></text></g><g><title>btrfs_get_32 (63 samples, 0.01%)</title><rect x="35.7851%" y="661" width="0.0130%" height="15" fill="rgb(215,203,17)" fg:x="172762" fg:w="63"/><text x="36.0351%" y="671.50"></text></g><g><title>_raw_read_lock (65 samples, 0.01%)</title><rect x="35.8654%" y="597" width="0.0135%" height="15" fill="rgb(233,112,49)" fg:x="173150" fg:w="65"/><text x="36.1154%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (80 samples, 0.02%)</title><rect x="35.8627%" y="613" width="0.0166%" height="15" fill="rgb(241,130,26)" fg:x="173137" fg:w="80"/><text x="36.1127%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (180 samples, 0.04%)</title><rect x="35.8607%" y="629" width="0.0373%" height="15" fill="rgb(252,223,19)" fg:x="173127" fg:w="180"/><text x="36.1107%" y="639.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="35.8795%" y="613" width="0.0184%" height="15" fill="rgb(211,95,25)" fg:x="173218" fg:w="89"/><text x="36.1295%" y="623.50"></text></g><g><title>alloc_extent_buffer (51 samples, 0.01%)</title><rect x="35.9201%" y="581" width="0.0106%" height="15" fill="rgb(251,182,27)" fg:x="173414" fg:w="51"/><text x="36.1701%" y="591.50"></text></g><g><title>find_extent_buffer (50 samples, 0.01%)</title><rect x="35.9203%" y="565" width="0.0104%" height="15" fill="rgb(238,24,4)" fg:x="173415" fg:w="50"/><text x="36.1703%" y="575.50"></text></g><g><title>btrfs_read_node_slot (98 samples, 0.02%)</title><rect x="35.9155%" y="613" width="0.0203%" height="15" fill="rgb(224,220,25)" fg:x="173392" fg:w="98"/><text x="36.1655%" y="623.50"></text></g><g><title>read_tree_block (77 samples, 0.02%)</title><rect x="35.9199%" y="597" width="0.0159%" height="15" fill="rgb(239,133,26)" fg:x="173413" fg:w="77"/><text x="36.1699%" y="607.50"></text></g><g><title>balance_level (225 samples, 0.05%)</title><rect x="35.8981%" y="629" width="0.0466%" height="15" fill="rgb(211,94,48)" fg:x="173308" fg:w="225"/><text x="36.1481%" y="639.50"></text></g><g><title>_raw_write_lock (56 samples, 0.01%)</title><rect x="35.9651%" y="597" width="0.0116%" height="15" fill="rgb(239,87,6)" fg:x="173631" fg:w="56"/><text x="36.2151%" y="607.50"></text></g><g><title>__btrfs_tree_lock (91 samples, 0.02%)</title><rect x="35.9580%" y="613" width="0.0188%" height="15" fill="rgb(227,62,0)" fg:x="173597" fg:w="91"/><text x="36.2080%" y="623.50"></text></g><g><title>btrfs_lock_root_node (143 samples, 0.03%)</title><rect x="35.9557%" y="629" width="0.0296%" height="15" fill="rgb(211,226,4)" fg:x="173586" fg:w="143"/><text x="36.2057%" y="639.50"></text></g><g><title>_raw_write_lock (99 samples, 0.02%)</title><rect x="36.0096%" y="613" width="0.0205%" height="15" fill="rgb(253,38,52)" fg:x="173846" fg:w="99"/><text x="36.2596%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (127 samples, 0.03%)</title><rect x="36.0044%" y="629" width="0.0263%" height="15" fill="rgb(229,126,40)" fg:x="173821" fg:w="127"/><text x="36.2544%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (68 samples, 0.01%)</title><rect x="36.0307%" y="629" width="0.0141%" height="15" fill="rgb(229,165,44)" fg:x="173948" fg:w="68"/><text x="36.2807%" y="639.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="36.0322%" y="613" width="0.0126%" height="15" fill="rgb(247,95,47)" fg:x="173955" fg:w="61"/><text x="36.2822%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (513 samples, 0.11%)</title><rect x="36.0448%" y="629" width="0.1063%" height="15" fill="rgb(216,140,30)" fg:x="174016" fg:w="513"/><text x="36.2948%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (63 samples, 0.01%)</title><rect x="36.1817%" y="613" width="0.0130%" height="15" fill="rgb(246,214,8)" fg:x="174677" fg:w="63"/><text x="36.4317%" y="623.50"></text></g><g><title>btrfs_get_64 (175 samples, 0.04%)</title><rect x="36.1948%" y="613" width="0.0362%" height="15" fill="rgb(227,224,15)" fg:x="174740" fg:w="175"/><text x="36.4448%" y="623.50"></text></g><g><title>__radix_tree_lookup (466 samples, 0.10%)</title><rect x="36.2824%" y="597" width="0.0965%" height="15" fill="rgb(233,175,4)" fg:x="175163" fg:w="466"/><text x="36.5324%" y="607.50"></text></g><g><title>check_buffer_tree_ref (58 samples, 0.01%)</title><rect x="36.3866%" y="581" width="0.0120%" height="15" fill="rgb(221,66,45)" fg:x="175666" fg:w="58"/><text x="36.6366%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (295 samples, 0.06%)</title><rect x="36.3789%" y="597" width="0.0611%" height="15" fill="rgb(221,178,18)" fg:x="175629" fg:w="295"/><text x="36.6289%" y="607.50"></text></g><g><title>mark_page_accessed (200 samples, 0.04%)</title><rect x="36.3986%" y="581" width="0.0414%" height="15" fill="rgb(213,81,29)" fg:x="175724" fg:w="200"/><text x="36.6486%" y="591.50"></text></g><g><title>find_extent_buffer (958 samples, 0.20%)</title><rect x="36.2432%" y="613" width="0.1984%" height="15" fill="rgb(220,89,49)" fg:x="174974" fg:w="958"/><text x="36.4932%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,550 samples, 0.32%)</title><rect x="36.1511%" y="629" width="0.3211%" height="15" fill="rgb(227,60,33)" fg:x="174529" fg:w="1550"/><text x="36.4011%" y="639.50"></text></g><g><title>read_extent_buffer (147 samples, 0.03%)</title><rect x="36.4417%" y="613" width="0.0304%" height="15" fill="rgb(205,113,12)" fg:x="175932" fg:w="147"/><text x="36.6917%" y="623.50"></text></g><g><title>btrfs_get_64 (50 samples, 0.01%)</title><rect x="36.4837%" y="613" width="0.0104%" height="15" fill="rgb(211,32,1)" fg:x="176135" fg:w="50"/><text x="36.7337%" y="623.50"></text></g><g><title>__radix_tree_lookup (162 samples, 0.03%)</title><rect x="36.5051%" y="597" width="0.0336%" height="15" fill="rgb(246,2,12)" fg:x="176238" fg:w="162"/><text x="36.7551%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (95 samples, 0.02%)</title><rect x="36.5386%" y="597" width="0.0197%" height="15" fill="rgb(243,37,27)" fg:x="176400" fg:w="95"/><text x="36.7886%" y="607.50"></text></g><g><title>mark_page_accessed (57 samples, 0.01%)</title><rect x="36.5465%" y="581" width="0.0118%" height="15" fill="rgb(248,211,31)" fg:x="176438" fg:w="57"/><text x="36.7965%" y="591.50"></text></g><g><title>find_extent_buffer (312 samples, 0.06%)</title><rect x="36.4941%" y="613" width="0.0646%" height="15" fill="rgb(242,146,47)" fg:x="176185" fg:w="312"/><text x="36.7441%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (50 samples, 0.01%)</title><rect x="36.5589%" y="613" width="0.0104%" height="15" fill="rgb(206,70,20)" fg:x="176498" fg:w="50"/><text x="36.8089%" y="623.50"></text></g><g><title>reada_for_balance (516 samples, 0.11%)</title><rect x="36.4721%" y="629" width="0.1069%" height="15" fill="rgb(215,10,51)" fg:x="176079" fg:w="516"/><text x="36.7221%" y="639.50"></text></g><g><title>release_extent_buffer (61 samples, 0.01%)</title><rect x="36.5790%" y="629" width="0.0126%" height="15" fill="rgb(243,178,53)" fg:x="176595" fg:w="61"/><text x="36.8290%" y="639.50"></text></g><g><title>btrfs_lookup_inode (4,012 samples, 0.83%)</title><rect x="35.7981%" y="661" width="0.8310%" height="15" fill="rgb(233,221,20)" fg:x="172825" fg:w="4012"/><text x="36.0481%" y="671.50"></text></g><g><title>btrfs_search_slot (3,992 samples, 0.83%)</title><rect x="35.8022%" y="645" width="0.8269%" height="15" fill="rgb(218,95,35)" fg:x="172845" fg:w="3992"/><text x="36.0522%" y="655.50"></text></g><g><title>unlock_up (181 samples, 0.04%)</title><rect x="36.5916%" y="629" width="0.0375%" height="15" fill="rgb(229,13,5)" fg:x="176656" fg:w="181"/><text x="36.8416%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (147 samples, 0.03%)</title><rect x="36.6291%" y="661" width="0.0304%" height="15" fill="rgb(252,164,30)" fg:x="176837" fg:w="147"/><text x="36.8791%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="36.6372%" y="645" width="0.0224%" height="15" fill="rgb(232,68,36)" fg:x="176876" fg:w="108"/><text x="36.8872%" y="655.50"></text></g><g><title>btrfs_release_delayed_inode (64 samples, 0.01%)</title><rect x="36.6596%" y="661" width="0.0133%" height="15" fill="rgb(219,59,54)" fg:x="176984" fg:w="64"/><text x="36.9096%" y="671.50"></text></g><g><title>btrfs_tree_unlock (59 samples, 0.01%)</title><rect x="36.6834%" y="645" width="0.0122%" height="15" fill="rgb(250,92,33)" fg:x="177099" fg:w="59"/><text x="36.9334%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (188 samples, 0.04%)</title><rect x="36.6971%" y="645" width="0.0389%" height="15" fill="rgb(229,162,54)" fg:x="177165" fg:w="188"/><text x="36.9471%" y="655.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="36.7018%" y="629" width="0.0342%" height="15" fill="rgb(244,114,52)" fg:x="177188" fg:w="165"/><text x="36.9518%" y="639.50"></text></g><g><title>btrfs_release_path (478 samples, 0.10%)</title><rect x="36.6728%" y="661" width="0.0990%" height="15" fill="rgb(212,211,43)" fg:x="177048" fg:w="478"/><text x="36.9228%" y="671.50"></text></g><g><title>release_extent_buffer (173 samples, 0.04%)</title><rect x="36.7360%" y="645" width="0.0358%" height="15" fill="rgb(226,147,8)" fg:x="177353" fg:w="173"/><text x="36.9860%" y="655.50"></text></g><g><title>btrfs_search_slot (68 samples, 0.01%)</title><rect x="36.7718%" y="661" width="0.0141%" height="15" fill="rgb(226,23,13)" fg:x="177526" fg:w="68"/><text x="37.0218%" y="671.50"></text></g><g><title>finish_one_item (234 samples, 0.05%)</title><rect x="36.7859%" y="661" width="0.0485%" height="15" fill="rgb(240,63,4)" fg:x="177594" fg:w="234"/><text x="37.0359%" y="671.50"></text></g><g><title>read_extent_buffer (71 samples, 0.01%)</title><rect x="36.8344%" y="661" width="0.0147%" height="15" fill="rgb(221,1,32)" fg:x="177828" fg:w="71"/><text x="37.0844%" y="671.50"></text></g><g><title>__btrfs_update_delayed_inode (14,691 samples, 3.04%)</title><rect x="33.8554%" y="677" width="3.0430%" height="15" fill="rgb(242,117,10)" fg:x="163446" fg:w="14691"/><text x="34.1054%" y="687.50">__b..</text></g><g><title>write_extent_buffer (238 samples, 0.05%)</title><rect x="36.8491%" y="661" width="0.0493%" height="15" fill="rgb(249,172,44)" fg:x="177899" fg:w="238"/><text x="37.0991%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (67 samples, 0.01%)</title><rect x="36.9148%" y="677" width="0.0139%" height="15" fill="rgb(244,46,45)" fg:x="178216" fg:w="67"/><text x="37.1648%" y="687.50"></text></g><g><title>memset_erms (50 samples, 0.01%)</title><rect x="36.9442%" y="661" width="0.0104%" height="15" fill="rgb(206,43,17)" fg:x="178358" fg:w="50"/><text x="37.1942%" y="671.50"></text></g><g><title>kmem_cache_alloc (148 samples, 0.03%)</title><rect x="36.9303%" y="677" width="0.0307%" height="15" fill="rgb(239,218,39)" fg:x="178291" fg:w="148"/><text x="37.1803%" y="687.50"></text></g><g><title>kmem_cache_free (98 samples, 0.02%)</title><rect x="36.9610%" y="677" width="0.0203%" height="15" fill="rgb(208,169,54)" fg:x="178439" fg:w="98"/><text x="37.2110%" y="687.50"></text></g><g><title>mutex_lock (113 samples, 0.02%)</title><rect x="36.9813%" y="677" width="0.0234%" height="15" fill="rgb(247,25,42)" fg:x="178537" fg:w="113"/><text x="37.2313%" y="687.50"></text></g><g><title>mutex_unlock (92 samples, 0.02%)</title><rect x="37.0047%" y="677" width="0.0191%" height="15" fill="rgb(226,23,31)" fg:x="178650" fg:w="92"/><text x="37.2547%" y="687.50"></text></g><g><title>join_transaction (184 samples, 0.04%)</title><rect x="37.0515%" y="661" width="0.0381%" height="15" fill="rgb(247,16,28)" fg:x="178876" fg:w="184"/><text x="37.3015%" y="671.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="37.0751%" y="645" width="0.0145%" height="15" fill="rgb(231,147,38)" fg:x="178990" fg:w="70"/><text x="37.3251%" y="655.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (16,589 samples, 3.44%)</title><rect x="33.6899%" y="693" width="3.4362%" height="15" fill="rgb(253,81,48)" fg:x="162647" fg:w="16589"/><text x="33.9399%" y="703.50">btr..</text></g><g><title>start_transaction (494 samples, 0.10%)</title><rect x="37.0237%" y="677" width="0.1023%" height="15" fill="rgb(249,222,43)" fg:x="178742" fg:w="494"/><text x="37.2737%" y="687.50"></text></g><g><title>kmem_cache_alloc (176 samples, 0.04%)</title><rect x="37.0896%" y="661" width="0.0365%" height="15" fill="rgb(221,3,27)" fg:x="179060" fg:w="176"/><text x="37.3396%" y="671.50"></text></g><g><title>btrfs_get_32 (81 samples, 0.02%)</title><rect x="37.1523%" y="661" width="0.0168%" height="15" fill="rgb(228,180,5)" fg:x="179363" fg:w="81"/><text x="37.4023%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (176 samples, 0.04%)</title><rect x="37.1691%" y="661" width="0.0365%" height="15" fill="rgb(227,131,42)" fg:x="179444" fg:w="176"/><text x="37.4191%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (115 samples, 0.02%)</title><rect x="37.1818%" y="645" width="0.0238%" height="15" fill="rgb(212,3,39)" fg:x="179505" fg:w="115"/><text x="37.4318%" y="655.50"></text></g><g><title>leaf_space_used (127 samples, 0.03%)</title><rect x="37.2062%" y="661" width="0.0263%" height="15" fill="rgb(226,45,5)" fg:x="179623" fg:w="127"/><text x="37.4562%" y="671.50"></text></g><g><title>btrfs_get_32 (85 samples, 0.02%)</title><rect x="37.2149%" y="645" width="0.0176%" height="15" fill="rgb(215,167,45)" fg:x="179665" fg:w="85"/><text x="37.4649%" y="655.50"></text></g><g><title>btrfs_del_items (490 samples, 0.10%)</title><rect x="37.1316%" y="677" width="0.1015%" height="15" fill="rgb(250,218,53)" fg:x="179263" fg:w="490"/><text x="37.3816%" y="687.50"></text></g><g><title>btrfs_tree_unlock (129 samples, 0.03%)</title><rect x="37.2445%" y="645" width="0.0267%" height="15" fill="rgb(207,140,0)" fg:x="179808" fg:w="129"/><text x="37.4945%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (186 samples, 0.04%)</title><rect x="37.2721%" y="645" width="0.0385%" height="15" fill="rgb(238,133,51)" fg:x="179941" fg:w="186"/><text x="37.5221%" y="655.50"></text></g><g><title>_raw_spin_lock (157 samples, 0.03%)</title><rect x="37.2781%" y="629" width="0.0325%" height="15" fill="rgb(218,203,53)" fg:x="179970" fg:w="157"/><text x="37.5281%" y="639.50"></text></g><g><title>btrfs_free_path (538 samples, 0.11%)</title><rect x="37.2331%" y="677" width="0.1114%" height="15" fill="rgb(226,184,25)" fg:x="179753" fg:w="538"/><text x="37.4831%" y="687.50"></text></g><g><title>btrfs_release_path (532 samples, 0.11%)</title><rect x="37.2344%" y="661" width="0.1102%" height="15" fill="rgb(231,121,21)" fg:x="179759" fg:w="532"/><text x="37.4844%" y="671.50"></text></g><g><title>release_extent_buffer (164 samples, 0.03%)</title><rect x="37.3106%" y="645" width="0.0340%" height="15" fill="rgb(251,14,34)" fg:x="180127" fg:w="164"/><text x="37.5606%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (77 samples, 0.02%)</title><rect x="37.4111%" y="645" width="0.0159%" height="15" fill="rgb(249,193,11)" fg:x="180612" fg:w="77"/><text x="37.6611%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (155 samples, 0.03%)</title><rect x="37.4088%" y="661" width="0.0321%" height="15" fill="rgb(220,172,37)" fg:x="180601" fg:w="155"/><text x="37.6588%" y="671.50"></text></g><g><title>btrfs_root_node (67 samples, 0.01%)</title><rect x="37.4270%" y="645" width="0.0139%" height="15" fill="rgb(231,229,43)" fg:x="180689" fg:w="67"/><text x="37.6770%" y="655.50"></text></g><g><title>btrfs_read_node_slot (66 samples, 0.01%)</title><rect x="37.4591%" y="645" width="0.0137%" height="15" fill="rgb(250,161,5)" fg:x="180844" fg:w="66"/><text x="37.7091%" y="655.50"></text></g><g><title>balance_level (195 samples, 0.04%)</title><rect x="37.4421%" y="661" width="0.0404%" height="15" fill="rgb(218,225,18)" fg:x="180762" fg:w="195"/><text x="37.6921%" y="671.50"></text></g><g><title>_raw_write_lock (65 samples, 0.01%)</title><rect x="37.4993%" y="629" width="0.0135%" height="15" fill="rgb(245,45,42)" fg:x="181038" fg:w="65"/><text x="37.7493%" y="639.50"></text></g><g><title>__btrfs_tree_lock (125 samples, 0.03%)</title><rect x="37.4885%" y="645" width="0.0259%" height="15" fill="rgb(211,115,1)" fg:x="180986" fg:w="125"/><text x="37.7385%" y="655.50"></text></g><g><title>btrfs_lock_root_node (194 samples, 0.04%)</title><rect x="37.4871%" y="661" width="0.0402%" height="15" fill="rgb(248,133,52)" fg:x="180979" fg:w="194"/><text x="37.7371%" y="671.50"></text></g><g><title>btrfs_root_node (62 samples, 0.01%)</title><rect x="37.5144%" y="645" width="0.0128%" height="15" fill="rgb(238,100,21)" fg:x="181111" fg:w="62"/><text x="37.7644%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (150 samples, 0.03%)</title><rect x="37.5273%" y="661" width="0.0311%" height="15" fill="rgb(247,144,11)" fg:x="181173" fg:w="150"/><text x="37.7773%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (62 samples, 0.01%)</title><rect x="37.5583%" y="661" width="0.0128%" height="15" fill="rgb(206,164,16)" fg:x="181323" fg:w="62"/><text x="37.8083%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (119 samples, 0.02%)</title><rect x="37.5712%" y="661" width="0.0246%" height="15" fill="rgb(222,34,3)" fg:x="181385" fg:w="119"/><text x="37.8212%" y="671.50"></text></g><g><title>_raw_write_lock (91 samples, 0.02%)</title><rect x="37.5770%" y="645" width="0.0188%" height="15" fill="rgb(248,82,4)" fg:x="181413" fg:w="91"/><text x="37.8270%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (55 samples, 0.01%)</title><rect x="37.5958%" y="661" width="0.0114%" height="15" fill="rgb(228,81,46)" fg:x="181504" fg:w="55"/><text x="37.8458%" y="671.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.01%)</title><rect x="37.5969%" y="645" width="0.0104%" height="15" fill="rgb(227,67,47)" fg:x="181509" fg:w="50"/><text x="37.8469%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (777 samples, 0.16%)</title><rect x="37.6072%" y="661" width="0.1609%" height="15" fill="rgb(215,93,53)" fg:x="181559" fg:w="777"/><text x="37.8572%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (61 samples, 0.01%)</title><rect x="37.7988%" y="645" width="0.0126%" height="15" fill="rgb(248,194,39)" fg:x="182484" fg:w="61"/><text x="38.0488%" y="655.50"></text></g><g><title>btrfs_get_64 (160 samples, 0.03%)</title><rect x="37.8115%" y="645" width="0.0331%" height="15" fill="rgb(215,5,19)" fg:x="182545" fg:w="160"/><text x="38.0615%" y="655.50"></text></g><g><title>__radix_tree_lookup (460 samples, 0.10%)</title><rect x="37.8823%" y="629" width="0.0953%" height="15" fill="rgb(226,215,51)" fg:x="182887" fg:w="460"/><text x="38.1323%" y="639.50"></text></g><g><title>check_buffer_tree_ref (59 samples, 0.01%)</title><rect x="37.9881%" y="613" width="0.0122%" height="15" fill="rgb(225,56,26)" fg:x="183398" fg:w="59"/><text x="38.2381%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (255 samples, 0.05%)</title><rect x="37.9776%" y="629" width="0.0528%" height="15" fill="rgb(222,75,29)" fg:x="183347" fg:w="255"/><text x="38.2276%" y="639.50"></text></g><g><title>mark_page_accessed (145 samples, 0.03%)</title><rect x="38.0004%" y="613" width="0.0300%" height="15" fill="rgb(236,139,6)" fg:x="183457" fg:w="145"/><text x="38.2504%" y="623.50"></text></g><g><title>find_extent_buffer (854 samples, 0.18%)</title><rect x="37.8560%" y="645" width="0.1769%" height="15" fill="rgb(223,137,36)" fg:x="182760" fg:w="854"/><text x="38.1060%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,446 samples, 0.30%)</title><rect x="37.7682%" y="661" width="0.2995%" height="15" fill="rgb(226,99,2)" fg:x="182336" fg:w="1446"/><text x="38.0182%" y="671.50"></text></g><g><title>read_extent_buffer (168 samples, 0.03%)</title><rect x="38.0329%" y="645" width="0.0348%" height="15" fill="rgb(206,133,23)" fg:x="183614" fg:w="168"/><text x="38.2829%" y="655.50"></text></g><g><title>btrfs_get_64 (55 samples, 0.01%)</title><rect x="38.0782%" y="645" width="0.0114%" height="15" fill="rgb(243,173,15)" fg:x="183833" fg:w="55"/><text x="38.3282%" y="655.50"></text></g><g><title>__radix_tree_lookup (126 samples, 0.03%)</title><rect x="38.0963%" y="629" width="0.0261%" height="15" fill="rgb(228,69,28)" fg:x="183920" fg:w="126"/><text x="38.3463%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (96 samples, 0.02%)</title><rect x="38.1224%" y="629" width="0.0199%" height="15" fill="rgb(212,51,22)" fg:x="184046" fg:w="96"/><text x="38.3724%" y="639.50"></text></g><g><title>mark_page_accessed (53 samples, 0.01%)</title><rect x="38.1313%" y="613" width="0.0110%" height="15" fill="rgb(227,113,0)" fg:x="184089" fg:w="53"/><text x="38.3813%" y="623.50"></text></g><g><title>find_extent_buffer (258 samples, 0.05%)</title><rect x="38.0896%" y="645" width="0.0534%" height="15" fill="rgb(252,84,27)" fg:x="183888" fg:w="258"/><text x="38.3396%" y="655.50"></text></g><g><title>reada_for_balance (438 samples, 0.09%)</title><rect x="38.0677%" y="661" width="0.0907%" height="15" fill="rgb(223,145,39)" fg:x="183782" fg:w="438"/><text x="38.3177%" y="671.50"></text></g><g><title>release_extent_buffer (53 samples, 0.01%)</title><rect x="38.1584%" y="661" width="0.0110%" height="15" fill="rgb(239,219,30)" fg:x="184220" fg:w="53"/><text x="38.4084%" y="671.50"></text></g><g><title>btrfs_search_slot (4,196 samples, 0.87%)</title><rect x="37.3446%" y="677" width="0.8691%" height="15" fill="rgb(224,196,39)" fg:x="180291" fg:w="4196"/><text x="37.5946%" y="687.50"></text></g><g><title>unlock_up (214 samples, 0.04%)</title><rect x="38.1694%" y="661" width="0.0443%" height="15" fill="rgb(205,35,43)" fg:x="184273" fg:w="214"/><text x="38.4194%" y="671.50"></text></g><g><title>memset_erms (59 samples, 0.01%)</title><rect x="38.2282%" y="661" width="0.0122%" height="15" fill="rgb(228,201,21)" fg:x="184557" fg:w="59"/><text x="38.4782%" y="671.50"></text></g><g><title>kmem_cache_alloc (155 samples, 0.03%)</title><rect x="38.2137%" y="677" width="0.0321%" height="15" fill="rgb(237,118,16)" fg:x="184487" fg:w="155"/><text x="38.4637%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (5,516 samples, 1.14%)</title><rect x="37.1260%" y="693" width="1.1426%" height="15" fill="rgb(241,17,19)" fg:x="179236" fg:w="5516"/><text x="37.3760%" y="703.50"></text></g><g><title>kmem_cache_free (110 samples, 0.02%)</title><rect x="38.2458%" y="677" width="0.0228%" height="15" fill="rgb(214,10,25)" fg:x="184642" fg:w="110"/><text x="38.4958%" y="687.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.03%)</title><rect x="38.2827%" y="661" width="0.0251%" height="15" fill="rgb(238,37,29)" fg:x="184820" fg:w="121"/><text x="38.5327%" y="671.50"></text></g><g><title>btrfs_free_block_rsv (215 samples, 0.04%)</title><rect x="38.2694%" y="693" width="0.0445%" height="15" fill="rgb(253,83,25)" fg:x="184756" fg:w="215"/><text x="38.5194%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (209 samples, 0.04%)</title><rect x="38.2707%" y="677" width="0.0433%" height="15" fill="rgb(234,192,12)" fg:x="184762" fg:w="209"/><text x="38.5207%" y="687.50"></text></g><g><title>mutex_lock (72 samples, 0.01%)</title><rect x="38.3987%" y="661" width="0.0149%" height="15" fill="rgb(241,216,45)" fg:x="185380" fg:w="72"/><text x="38.6487%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (242 samples, 0.05%)</title><rect x="38.3753%" y="677" width="0.0501%" height="15" fill="rgb(242,22,33)" fg:x="185267" fg:w="242"/><text x="38.6253%" y="687.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="38.4136%" y="661" width="0.0118%" height="15" fill="rgb(231,105,49)" fg:x="185452" fg:w="57"/><text x="38.6636%" y="671.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="38.4550%" y="661" width="0.0122%" height="15" fill="rgb(218,204,15)" fg:x="185652" fg:w="59"/><text x="38.7050%" y="671.50"></text></g><g><title>memset_erms (53 samples, 0.01%)</title><rect x="38.4865%" y="629" width="0.0110%" height="15" fill="rgb(235,138,41)" fg:x="185804" fg:w="53"/><text x="38.7365%" y="639.50"></text></g><g><title>alloc_extent_state (191 samples, 0.04%)</title><rect x="38.4672%" y="661" width="0.0396%" height="15" fill="rgb(246,0,9)" fg:x="185711" fg:w="191"/><text x="38.7172%" y="671.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.04%)</title><rect x="38.4718%" y="645" width="0.0350%" height="15" fill="rgb(210,74,4)" fg:x="185733" fg:w="169"/><text x="38.7218%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (68 samples, 0.01%)</title><rect x="38.5341%" y="629" width="0.0141%" height="15" fill="rgb(250,60,41)" fg:x="186034" fg:w="68"/><text x="38.7841%" y="639.50"></text></g><g><title>__wake_up_common_lock (178 samples, 0.04%)</title><rect x="38.5174%" y="645" width="0.0369%" height="15" fill="rgb(220,115,12)" fg:x="185953" fg:w="178"/><text x="38.7674%" y="655.50"></text></g><g><title>free_extent_state (56 samples, 0.01%)</title><rect x="38.5592%" y="645" width="0.0116%" height="15" fill="rgb(237,100,13)" fg:x="186155" fg:w="56"/><text x="38.8092%" y="655.50"></text></g><g><title>kmem_cache_free (126 samples, 0.03%)</title><rect x="38.5708%" y="645" width="0.0261%" height="15" fill="rgb(213,55,26)" fg:x="186211" fg:w="126"/><text x="38.8208%" y="655.50"></text></g><g><title>clear_state_bit (454 samples, 0.09%)</title><rect x="38.5068%" y="661" width="0.0940%" height="15" fill="rgb(216,17,4)" fg:x="185902" fg:w="454"/><text x="38.7568%" y="671.50"></text></g><g><title>free_extent_state (53 samples, 0.01%)</title><rect x="38.6008%" y="661" width="0.0110%" height="15" fill="rgb(220,153,47)" fg:x="186356" fg:w="53"/><text x="38.8508%" y="671.50"></text></g><g><title>__clear_extent_bit (1,032 samples, 0.21%)</title><rect x="38.4254%" y="677" width="0.2138%" height="15" fill="rgb(215,131,9)" fg:x="185509" fg:w="1032"/><text x="38.6754%" y="687.50"></text></g><g><title>kmem_cache_free (132 samples, 0.03%)</title><rect x="38.6118%" y="661" width="0.0273%" height="15" fill="rgb(233,46,42)" fg:x="186409" fg:w="132"/><text x="38.8618%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (213 samples, 0.04%)</title><rect x="38.8119%" y="597" width="0.0441%" height="15" fill="rgb(226,86,7)" fg:x="187375" fg:w="213"/><text x="39.0619%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (256 samples, 0.05%)</title><rect x="38.8069%" y="613" width="0.0530%" height="15" fill="rgb(239,226,21)" fg:x="187351" fg:w="256"/><text x="39.0569%" y="623.50"></text></g><g><title>__btrfs_add_free_space (314 samples, 0.07%)</title><rect x="38.8007%" y="629" width="0.0650%" height="15" fill="rgb(244,137,22)" fg:x="187321" fg:w="314"/><text x="39.0507%" y="639.50"></text></g><g><title>btrfs_add_delayed_tree_ref (80 samples, 0.02%)</title><rect x="38.8685%" y="629" width="0.0166%" height="15" fill="rgb(211,139,35)" fg:x="187648" fg:w="80"/><text x="39.1185%" y="639.50"></text></g><g><title>btrfs_free_tree_block (466 samples, 0.10%)</title><rect x="38.7995%" y="645" width="0.0965%" height="15" fill="rgb(214,62,50)" fg:x="187315" fg:w="466"/><text x="39.0495%" y="655.50"></text></g><g><title>check_ref_cleanup (49 samples, 0.01%)</title><rect x="38.8859%" y="629" width="0.0101%" height="15" fill="rgb(212,113,44)" fg:x="187732" fg:w="49"/><text x="39.1359%" y="639.50"></text></g><g><title>btrfs_del_leaf (521 samples, 0.11%)</title><rect x="38.7987%" y="661" width="0.1079%" height="15" fill="rgb(226,150,43)" fg:x="187311" fg:w="521"/><text x="39.0487%" y="671.50"></text></g><g><title>btrfs_get_32 (161 samples, 0.03%)</title><rect x="38.9066%" y="661" width="0.0333%" height="15" fill="rgb(250,71,37)" fg:x="187832" fg:w="161"/><text x="39.1566%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,992 samples, 0.41%)</title><rect x="38.9399%" y="661" width="0.4126%" height="15" fill="rgb(219,76,19)" fg:x="187993" fg:w="1992"/><text x="39.1899%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (342 samples, 0.07%)</title><rect x="39.2817%" y="645" width="0.0708%" height="15" fill="rgb(250,39,11)" fg:x="189643" fg:w="342"/><text x="39.5317%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (134 samples, 0.03%)</title><rect x="39.3525%" y="661" width="0.0278%" height="15" fill="rgb(230,64,31)" fg:x="189985" fg:w="134"/><text x="39.6025%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="39.3583%" y="645" width="0.0220%" height="15" fill="rgb(208,222,23)" fg:x="190013" fg:w="106"/><text x="39.6083%" y="655.50"></text></g><g><title>btrfs_set_token_32 (1,905 samples, 0.39%)</title><rect x="39.3836%" y="661" width="0.3946%" height="15" fill="rgb(227,125,18)" fg:x="190135" fg:w="1905"/><text x="39.6336%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (433 samples, 0.09%)</title><rect x="39.6885%" y="645" width="0.0897%" height="15" fill="rgb(234,210,9)" fg:x="191607" fg:w="433"/><text x="39.9385%" y="655.50"></text></g><g><title>clear_extent_buffer_dirty (51 samples, 0.01%)</title><rect x="39.7782%" y="661" width="0.0106%" height="15" fill="rgb(217,127,24)" fg:x="192040" fg:w="51"/><text x="40.0282%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (136 samples, 0.03%)</title><rect x="39.7933%" y="645" width="0.0282%" height="15" fill="rgb(239,141,48)" fg:x="192113" fg:w="136"/><text x="40.0433%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (85 samples, 0.02%)</title><rect x="39.8039%" y="629" width="0.0176%" height="15" fill="rgb(227,109,8)" fg:x="192164" fg:w="85"/><text x="40.0539%" y="639.50"></text></g><g><title>tree_mod_log_insert_key (53 samples, 0.01%)</title><rect x="39.8215%" y="645" width="0.0110%" height="15" fill="rgb(235,184,23)" fg:x="192249" fg:w="53"/><text x="40.0715%" y="655.50"></text></g><g><title>fixup_low_keys (307 samples, 0.06%)</title><rect x="39.7888%" y="661" width="0.0636%" height="15" fill="rgb(227,226,48)" fg:x="192091" fg:w="307"/><text x="40.0388%" y="671.50"></text></g><g><title>write_extent_buffer (96 samples, 0.02%)</title><rect x="39.8325%" y="645" width="0.0199%" height="15" fill="rgb(206,150,11)" fg:x="192302" fg:w="96"/><text x="40.0825%" y="655.50"></text></g><g><title>leaf_space_used (102 samples, 0.02%)</title><rect x="39.8557%" y="661" width="0.0211%" height="15" fill="rgb(254,2,33)" fg:x="192414" fg:w="102"/><text x="40.1057%" y="671.50"></text></g><g><title>btrfs_get_32 (69 samples, 0.01%)</title><rect x="39.8625%" y="645" width="0.0143%" height="15" fill="rgb(243,160,20)" fg:x="192447" fg:w="69"/><text x="40.1125%" y="655.50"></text></g><g><title>memcpy_extent_buffer (285 samples, 0.06%)</title><rect x="39.8768%" y="661" width="0.0590%" height="15" fill="rgb(218,208,30)" fg:x="192516" fg:w="285"/><text x="40.1268%" y="671.50"></text></g><g><title>memmove (234 samples, 0.05%)</title><rect x="39.8874%" y="645" width="0.0485%" height="15" fill="rgb(224,120,49)" fg:x="192567" fg:w="234"/><text x="40.1374%" y="655.50"></text></g><g><title>copy_pages (293 samples, 0.06%)</title><rect x="39.9594%" y="645" width="0.0607%" height="15" fill="rgb(246,12,2)" fg:x="192915" fg:w="293"/><text x="40.2094%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,345 samples, 0.49%)</title><rect x="39.9358%" y="661" width="0.4857%" height="15" fill="rgb(236,117,3)" fg:x="192801" fg:w="2345"/><text x="40.1858%" y="671.50"></text></g><g><title>memmove (1,938 samples, 0.40%)</title><rect x="40.0201%" y="645" width="0.4014%" height="15" fill="rgb(216,128,52)" fg:x="193208" fg:w="1938"/><text x="40.2701%" y="655.50"></text></g><g><title>clear_extent_buffer_dirty (60 samples, 0.01%)</title><rect x="40.4452%" y="629" width="0.0124%" height="15" fill="rgb(246,145,19)" fg:x="195260" fg:w="60"/><text x="40.6952%" y="639.50"></text></g><g><title>__push_leaf_left (204 samples, 0.04%)</title><rect x="40.4236%" y="645" width="0.0423%" height="15" fill="rgb(222,11,46)" fg:x="195156" fg:w="204"/><text x="40.6736%" y="655.50"></text></g><g><title>push_leaf_left (278 samples, 0.06%)</title><rect x="40.4216%" y="661" width="0.0576%" height="15" fill="rgb(245,82,36)" fg:x="195146" fg:w="278"/><text x="40.6716%" y="671.50"></text></g><g><title>__push_leaf_right (224 samples, 0.05%)</title><rect x="40.4831%" y="645" width="0.0464%" height="15" fill="rgb(250,73,51)" fg:x="195443" fg:w="224"/><text x="40.7331%" y="655.50"></text></g><g><title>alloc_extent_buffer (64 samples, 0.01%)</title><rect x="40.5518%" y="613" width="0.0133%" height="15" fill="rgb(221,189,23)" fg:x="195775" fg:w="64"/><text x="40.8018%" y="623.50"></text></g><g><title>find_extent_buffer (58 samples, 0.01%)</title><rect x="40.5531%" y="597" width="0.0120%" height="15" fill="rgb(210,33,7)" fg:x="195781" fg:w="58"/><text x="40.8031%" y="607.50"></text></g><g><title>btrfs_read_node_slot (120 samples, 0.02%)</title><rect x="40.5452%" y="645" width="0.0249%" height="15" fill="rgb(210,107,22)" fg:x="195743" fg:w="120"/><text x="40.7952%" y="655.50"></text></g><g><title>read_tree_block (91 samples, 0.02%)</title><rect x="40.5512%" y="629" width="0.0188%" height="15" fill="rgb(222,116,37)" fg:x="195772" fg:w="91"/><text x="40.8012%" y="639.50"></text></g><g><title>push_leaf_right (479 samples, 0.10%)</title><rect x="40.4791%" y="661" width="0.0992%" height="15" fill="rgb(254,17,48)" fg:x="195424" fg:w="479"/><text x="40.7291%" y="671.50"></text></g><g><title>read_extent_buffer (74 samples, 0.02%)</title><rect x="40.5784%" y="661" width="0.0153%" height="15" fill="rgb(224,36,32)" fg:x="195903" fg:w="74"/><text x="40.8284%" y="671.50"></text></g><g><title>btrfs_del_items (9,458 samples, 1.96%)</title><rect x="38.6400%" y="677" width="1.9591%" height="15" fill="rgb(232,90,46)" fg:x="186545" fg:w="9458"/><text x="38.8900%" y="687.50">b..</text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="40.6107%" y="661" width="0.0122%" height="15" fill="rgb(241,66,40)" fg:x="196059" fg:w="59"/><text x="40.8607%" y="671.50"></text></g><g><title>memset_erms (136 samples, 0.03%)</title><rect x="40.6784%" y="629" width="0.0282%" height="15" fill="rgb(249,184,29)" fg:x="196386" fg:w="136"/><text x="40.9284%" y="639.50"></text></g><g><title>alloc_extent_map (467 samples, 0.10%)</title><rect x="40.6229%" y="661" width="0.0967%" height="15" fill="rgb(231,181,1)" fg:x="196118" fg:w="467"/><text x="40.8729%" y="671.50"></text></g><g><title>kmem_cache_alloc (421 samples, 0.09%)</title><rect x="40.6324%" y="645" width="0.0872%" height="15" fill="rgb(224,94,2)" fg:x="196164" fg:w="421"/><text x="40.8824%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="40.7066%" y="629" width="0.0130%" height="15" fill="rgb(229,170,15)" fg:x="196522" fg:w="63"/><text x="40.9566%" y="639.50"></text></g><g><title>free_extent_map (129 samples, 0.03%)</title><rect x="40.7196%" y="661" width="0.0267%" height="15" fill="rgb(240,127,35)" fg:x="196585" fg:w="129"/><text x="40.9696%" y="671.50"></text></g><g><title>kmem_cache_free (242 samples, 0.05%)</title><rect x="40.7463%" y="661" width="0.0501%" height="15" fill="rgb(248,196,34)" fg:x="196714" fg:w="242"/><text x="40.9963%" y="671.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (60 samples, 0.01%)</title><rect x="40.7840%" y="645" width="0.0124%" height="15" fill="rgb(236,137,7)" fg:x="196896" fg:w="60"/><text x="41.0340%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (955 samples, 0.20%)</title><rect x="40.5991%" y="677" width="0.1978%" height="15" fill="rgb(235,127,16)" fg:x="196003" fg:w="955"/><text x="40.8491%" y="687.50"></text></g><g><title>btrfs_tree_unlock (121 samples, 0.03%)</title><rect x="40.8149%" y="645" width="0.0251%" height="15" fill="rgb(250,192,54)" fg:x="197045" fg:w="121"/><text x="41.0649%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (155 samples, 0.03%)</title><rect x="40.8420%" y="645" width="0.0321%" height="15" fill="rgb(218,98,20)" fg:x="197176" fg:w="155"/><text x="41.0920%" y="655.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.03%)</title><rect x="40.8491%" y="629" width="0.0251%" height="15" fill="rgb(230,176,47)" fg:x="197210" fg:w="121"/><text x="41.0991%" y="639.50"></text></g><g><title>btrfs_free_path (565 samples, 0.12%)</title><rect x="40.7969%" y="677" width="0.1170%" height="15" fill="rgb(244,2,33)" fg:x="196958" fg:w="565"/><text x="41.0469%" y="687.50"></text></g><g><title>btrfs_release_path (557 samples, 0.12%)</title><rect x="40.7985%" y="661" width="0.1154%" height="15" fill="rgb(231,100,17)" fg:x="196966" fg:w="557"/><text x="41.0485%" y="671.50"></text></g><g><title>release_extent_buffer (192 samples, 0.04%)</title><rect x="40.8742%" y="645" width="0.0398%" height="15" fill="rgb(245,23,12)" fg:x="197331" fg:w="192"/><text x="41.1242%" y="655.50"></text></g><g><title>_raw_spin_lock (80 samples, 0.02%)</title><rect x="40.9589%" y="629" width="0.0166%" height="15" fill="rgb(249,55,22)" fg:x="197740" fg:w="80"/><text x="41.2089%" y="639.50"></text></g><g><title>memset_erms (60 samples, 0.01%)</title><rect x="41.0069%" y="597" width="0.0124%" height="15" fill="rgb(207,134,9)" fg:x="197972" fg:w="60"/><text x="41.2569%" y="607.50"></text></g><g><title>alloc_extent_state (242 samples, 0.05%)</title><rect x="40.9754%" y="629" width="0.0501%" height="15" fill="rgb(218,134,0)" fg:x="197820" fg:w="242"/><text x="41.2254%" y="639.50"></text></g><g><title>kmem_cache_alloc (213 samples, 0.04%)</title><rect x="40.9814%" y="613" width="0.0441%" height="15" fill="rgb(213,212,33)" fg:x="197849" fg:w="213"/><text x="41.2314%" y="623.50"></text></g><g><title>free_extent_state (60 samples, 0.01%)</title><rect x="41.0258%" y="629" width="0.0124%" height="15" fill="rgb(252,106,18)" fg:x="198063" fg:w="60"/><text x="41.2758%" y="639.50"></text></g><g><title>__clear_extent_bit (564 samples, 0.12%)</title><rect x="40.9493%" y="645" width="0.1168%" height="15" fill="rgb(208,126,42)" fg:x="197694" fg:w="564"/><text x="41.1993%" y="655.50"></text></g><g><title>kmem_cache_free (135 samples, 0.03%)</title><rect x="41.0382%" y="629" width="0.0280%" height="15" fill="rgb(246,175,29)" fg:x="198123" fg:w="135"/><text x="41.2882%" y="639.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (616 samples, 0.13%)</title><rect x="40.9388%" y="677" width="0.1276%" height="15" fill="rgb(215,13,50)" fg:x="197643" fg:w="616"/><text x="41.1888%" y="687.50"></text></g><g><title>clear_extent_bit (573 samples, 0.12%)</title><rect x="40.9477%" y="661" width="0.1187%" height="15" fill="rgb(216,172,15)" fg:x="197686" fg:w="573"/><text x="41.1977%" y="671.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="41.0738%" y="661" width="0.0101%" height="15" fill="rgb(212,103,13)" fg:x="198295" fg:w="49"/><text x="41.3238%" y="671.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="41.0896%" y="645" width="0.0110%" height="15" fill="rgb(231,171,36)" fg:x="198371" fg:w="53"/><text x="41.3396%" y="655.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (171 samples, 0.04%)</title><rect x="41.0664%" y="677" width="0.0354%" height="15" fill="rgb(250,123,20)" fg:x="198259" fg:w="171"/><text x="41.3164%" y="687.50"></text></g><g><title>find_contiguous_extent_bit (86 samples, 0.02%)</title><rect x="41.0840%" y="661" width="0.0178%" height="15" fill="rgb(212,53,50)" fg:x="198344" fg:w="86"/><text x="41.3340%" y="671.50"></text></g><g><title>__btrfs_kill_delayed_node (85 samples, 0.02%)</title><rect x="41.1088%" y="661" width="0.0176%" height="15" fill="rgb(243,54,12)" fg:x="198464" fg:w="85"/><text x="41.3588%" y="671.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="41.1130%" y="645" width="0.0135%" height="15" fill="rgb(234,101,34)" fg:x="198484" fg:w="65"/><text x="41.3630%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (88 samples, 0.02%)</title><rect x="41.1266%" y="661" width="0.0182%" height="15" fill="rgb(254,67,22)" fg:x="198550" fg:w="88"/><text x="41.3766%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (257 samples, 0.05%)</title><rect x="41.1018%" y="677" width="0.0532%" height="15" fill="rgb(250,35,47)" fg:x="198430" fg:w="257"/><text x="41.3518%" y="687.50"></text></g><g><title>mutex_unlock (49 samples, 0.01%)</title><rect x="41.1449%" y="661" width="0.0101%" height="15" fill="rgb(226,126,38)" fg:x="198638" fg:w="49"/><text x="41.3949%" y="671.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="41.2310%" y="629" width="0.0110%" height="15" fill="rgb(216,138,53)" fg:x="199054" fg:w="53"/><text x="41.4810%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="41.2259%" y="645" width="0.0180%" height="15" fill="rgb(246,199,43)" fg:x="199029" fg:w="87"/><text x="41.4759%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (187 samples, 0.04%)</title><rect x="41.2236%" y="661" width="0.0387%" height="15" fill="rgb(232,125,11)" fg:x="199018" fg:w="187"/><text x="41.4736%" y="671.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="41.2439%" y="645" width="0.0184%" height="15" fill="rgb(218,219,45)" fg:x="199116" fg:w="89"/><text x="41.4939%" y="655.50"></text></g><g><title>btrfs_read_node_slot (70 samples, 0.01%)</title><rect x="41.2845%" y="645" width="0.0145%" height="15" fill="rgb(216,102,54)" fg:x="199312" fg:w="70"/><text x="41.5345%" y="655.50"></text></g><g><title>read_tree_block (54 samples, 0.01%)</title><rect x="41.2878%" y="629" width="0.0112%" height="15" fill="rgb(250,228,7)" fg:x="199328" fg:w="54"/><text x="41.5378%" y="639.50"></text></g><g><title>balance_level (221 samples, 0.05%)</title><rect x="41.2632%" y="661" width="0.0458%" height="15" fill="rgb(226,125,25)" fg:x="199209" fg:w="221"/><text x="41.5132%" y="671.50"></text></g><g><title>_raw_write_lock (49 samples, 0.01%)</title><rect x="41.3284%" y="629" width="0.0101%" height="15" fill="rgb(224,165,27)" fg:x="199524" fg:w="49"/><text x="41.5784%" y="639.50"></text></g><g><title>__btrfs_tree_lock (99 samples, 0.02%)</title><rect x="41.3197%" y="645" width="0.0205%" height="15" fill="rgb(233,86,3)" fg:x="199482" fg:w="99"/><text x="41.5697%" y="655.50"></text></g><g><title>btrfs_lock_root_node (171 samples, 0.04%)</title><rect x="41.3182%" y="661" width="0.0354%" height="15" fill="rgb(228,116,20)" fg:x="199475" fg:w="171"/><text x="41.5682%" y="671.50"></text></g><g><title>btrfs_root_node (65 samples, 0.01%)</title><rect x="41.3402%" y="645" width="0.0135%" height="15" fill="rgb(209,192,17)" fg:x="199581" fg:w="65"/><text x="41.5902%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (144 samples, 0.03%)</title><rect x="41.3537%" y="661" width="0.0298%" height="15" fill="rgb(224,88,34)" fg:x="199646" fg:w="144"/><text x="41.6037%" y="671.50"></text></g><g><title>_raw_write_lock (82 samples, 0.02%)</title><rect x="41.4005%" y="645" width="0.0170%" height="15" fill="rgb(233,38,6)" fg:x="199872" fg:w="82"/><text x="41.6505%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (119 samples, 0.02%)</title><rect x="41.3932%" y="661" width="0.0246%" height="15" fill="rgb(212,59,30)" fg:x="199837" fg:w="119"/><text x="41.6432%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.01%)</title><rect x="41.4179%" y="661" width="0.0124%" height="15" fill="rgb(213,80,3)" fg:x="199956" fg:w="60"/><text x="41.6679%" y="671.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="41.4195%" y="645" width="0.0108%" height="15" fill="rgb(251,178,7)" fg:x="199964" fg:w="52"/><text x="41.6695%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (804 samples, 0.17%)</title><rect x="41.4303%" y="661" width="0.1665%" height="15" fill="rgb(213,154,26)" fg:x="200016" fg:w="804"/><text x="41.6803%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (59 samples, 0.01%)</title><rect x="41.6227%" y="645" width="0.0122%" height="15" fill="rgb(238,165,49)" fg:x="200945" fg:w="59"/><text x="41.8727%" y="655.50"></text></g><g><title>btrfs_get_64 (124 samples, 0.03%)</title><rect x="41.6350%" y="645" width="0.0257%" height="15" fill="rgb(248,91,46)" fg:x="201004" fg:w="124"/><text x="41.8850%" y="655.50"></text></g><g><title>__radix_tree_lookup (453 samples, 0.09%)</title><rect x="41.6983%" y="629" width="0.0938%" height="15" fill="rgb(244,21,52)" fg:x="201310" fg:w="453"/><text x="41.9483%" y="639.50"></text></g><g><title>check_buffer_tree_ref (72 samples, 0.01%)</title><rect x="41.8019%" y="613" width="0.0149%" height="15" fill="rgb(247,122,20)" fg:x="201810" fg:w="72"/><text x="42.0519%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (253 samples, 0.05%)</title><rect x="41.7924%" y="629" width="0.0524%" height="15" fill="rgb(218,27,9)" fg:x="201764" fg:w="253"/><text x="42.0424%" y="639.50"></text></g><g><title>mark_page_accessed (135 samples, 0.03%)</title><rect x="41.8168%" y="613" width="0.0280%" height="15" fill="rgb(246,7,6)" fg:x="201882" fg:w="135"/><text x="42.0668%" y="623.50"></text></g><g><title>find_extent_buffer (840 samples, 0.17%)</title><rect x="41.6722%" y="645" width="0.1740%" height="15" fill="rgb(227,135,54)" fg:x="201184" fg:w="840"/><text x="41.9222%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,366 samples, 0.28%)</title><rect x="41.5968%" y="661" width="0.2829%" height="15" fill="rgb(247,14,11)" fg:x="200820" fg:w="1366"/><text x="41.8468%" y="671.50"></text></g><g><title>read_extent_buffer (162 samples, 0.03%)</title><rect x="41.8462%" y="645" width="0.0336%" height="15" fill="rgb(206,149,34)" fg:x="202024" fg:w="162"/><text x="42.0962%" y="655.50"></text></g><g><title>btrfs_get_64 (51 samples, 0.01%)</title><rect x="41.8941%" y="645" width="0.0106%" height="15" fill="rgb(227,228,4)" fg:x="202255" fg:w="51"/><text x="42.1441%" y="655.50"></text></g><g><title>__radix_tree_lookup (176 samples, 0.04%)</title><rect x="41.9121%" y="629" width="0.0365%" height="15" fill="rgb(238,218,28)" fg:x="202342" fg:w="176"/><text x="42.1621%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (93 samples, 0.02%)</title><rect x="41.9486%" y="629" width="0.0193%" height="15" fill="rgb(252,86,40)" fg:x="202518" fg:w="93"/><text x="42.1986%" y="639.50"></text></g><g><title>mark_page_accessed (53 samples, 0.01%)</title><rect x="41.9568%" y="613" width="0.0110%" height="15" fill="rgb(251,225,11)" fg:x="202558" fg:w="53"/><text x="42.2068%" y="623.50"></text></g><g><title>find_extent_buffer (313 samples, 0.06%)</title><rect x="41.9046%" y="645" width="0.0648%" height="15" fill="rgb(206,46,49)" fg:x="202306" fg:w="313"/><text x="42.1546%" y="655.50"></text></g><g><title>reada_for_balance (511 samples, 0.11%)</title><rect x="41.8798%" y="661" width="0.1058%" height="15" fill="rgb(245,128,24)" fg:x="202186" fg:w="511"/><text x="42.1298%" y="671.50"></text></g><g><title>release_extent_buffer (54 samples, 0.01%)</title><rect x="41.9856%" y="661" width="0.0112%" height="15" fill="rgb(219,177,34)" fg:x="202697" fg:w="54"/><text x="42.2356%" y="671.50"></text></g><g><title>btrfs_search_slot (4,249 samples, 0.88%)</title><rect x="41.1579%" y="677" width="0.8801%" height="15" fill="rgb(218,60,48)" fg:x="198701" fg:w="4249"/><text x="41.4079%" y="687.50"></text></g><g><title>unlock_up (199 samples, 0.04%)</title><rect x="41.9968%" y="661" width="0.0412%" height="15" fill="rgb(221,11,5)" fg:x="202751" fg:w="199"/><text x="42.2468%" y="671.50"></text></g><g><title>inode_sub_bytes (71 samples, 0.01%)</title><rect x="42.0380%" y="677" width="0.0147%" height="15" fill="rgb(220,148,13)" fg:x="202950" fg:w="71"/><text x="42.2880%" y="687.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="42.0416%" y="661" width="0.0112%" height="15" fill="rgb(210,16,3)" fg:x="202967" fg:w="54"/><text x="42.2916%" y="671.50"></text></g><g><title>memset_erms (53 samples, 0.01%)</title><rect x="42.0701%" y="661" width="0.0110%" height="15" fill="rgb(236,80,2)" fg:x="203105" fg:w="53"/><text x="42.3201%" y="671.50"></text></g><g><title>kmem_cache_alloc (171 samples, 0.04%)</title><rect x="42.0527%" y="677" width="0.0354%" height="15" fill="rgb(239,129,19)" fg:x="203021" fg:w="171"/><text x="42.3027%" y="687.50"></text></g><g><title>kmem_cache_free (138 samples, 0.03%)</title><rect x="42.0882%" y="677" width="0.0286%" height="15" fill="rgb(220,106,35)" fg:x="203192" fg:w="138"/><text x="42.3382%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (72 samples, 0.01%)</title><rect x="42.1018%" y="661" width="0.0149%" height="15" fill="rgb(252,139,45)" fg:x="203258" fg:w="72"/><text x="42.3518%" y="671.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="42.1439%" y="645" width="0.0143%" height="15" fill="rgb(229,8,36)" fg:x="203461" fg:w="69"/><text x="42.3939%" y="655.50"></text></g><g><title>alloc_extent_state (351 samples, 0.07%)</title><rect x="42.1582%" y="645" width="0.0727%" height="15" fill="rgb(230,126,33)" fg:x="203530" fg:w="351"/><text x="42.4082%" y="655.50"></text></g><g><title>kmem_cache_alloc (244 samples, 0.05%)</title><rect x="42.1803%" y="629" width="0.0505%" height="15" fill="rgb(239,140,21)" fg:x="203637" fg:w="244"/><text x="42.4303%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (61 samples, 0.01%)</title><rect x="42.2182%" y="613" width="0.0126%" height="15" fill="rgb(254,104,9)" fg:x="203820" fg:w="61"/><text x="42.4682%" y="623.50"></text></g><g><title>cache_state_if_flags (63 samples, 0.01%)</title><rect x="42.2309%" y="645" width="0.0130%" height="15" fill="rgb(239,52,14)" fg:x="203881" fg:w="63"/><text x="42.4809%" y="655.50"></text></g><g><title>__set_extent_bit (666 samples, 0.14%)</title><rect x="42.1234%" y="661" width="0.1380%" height="15" fill="rgb(208,227,44)" fg:x="203362" fg:w="666"/><text x="42.3734%" y="671.50"></text></g><g><title>insert_state (84 samples, 0.02%)</title><rect x="42.2439%" y="645" width="0.0174%" height="15" fill="rgb(246,18,19)" fg:x="203944" fg:w="84"/><text x="42.4939%" y="655.50"></text></g><g><title>set_state_bits (52 samples, 0.01%)</title><rect x="42.2506%" y="629" width="0.0108%" height="15" fill="rgb(235,228,25)" fg:x="203976" fg:w="52"/><text x="42.5006%" y="639.50"></text></g><g><title>lock_extent_bits (699 samples, 0.14%)</title><rect x="42.1168%" y="677" width="0.1448%" height="15" fill="rgb(240,156,20)" fg:x="203330" fg:w="699"/><text x="42.3668%" y="687.50"></text></g><g><title>btrfs_truncate_inode_items (19,232 samples, 3.98%)</title><rect x="38.3187%" y="693" width="3.9836%" height="15" fill="rgb(224,8,20)" fg:x="184994" fg:w="19232"/><text x="38.5687%" y="703.50">btrf..</text></g><g><title>read_extent_buffer (197 samples, 0.04%)</title><rect x="42.2615%" y="677" width="0.0408%" height="15" fill="rgb(214,12,52)" fg:x="204029" fg:w="197"/><text x="42.5115%" y="687.50"></text></g><g><title>clear_extent_bit (52 samples, 0.01%)</title><rect x="42.3023%" y="693" width="0.0108%" height="15" fill="rgb(211,220,47)" fg:x="204226" fg:w="52"/><text x="42.5523%" y="703.50"></text></g><g><title>__clear_extent_bit (52 samples, 0.01%)</title><rect x="42.3023%" y="677" width="0.0108%" height="15" fill="rgb(250,173,5)" fg:x="204226" fg:w="52"/><text x="42.5523%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (299 samples, 0.06%)</title><rect x="42.3181%" y="677" width="0.0619%" height="15" fill="rgb(250,125,52)" fg:x="204302" fg:w="299"/><text x="42.5681%" y="687.50"></text></g><g><title>_raw_spin_lock (231 samples, 0.05%)</title><rect x="42.3322%" y="661" width="0.0478%" height="15" fill="rgb(209,133,18)" fg:x="204370" fg:w="231"/><text x="42.5822%" y="671.50"></text></g><g><title>_raw_spin_lock (143 samples, 0.03%)</title><rect x="42.3960%" y="661" width="0.0296%" height="15" fill="rgb(216,173,22)" fg:x="204678" fg:w="143"/><text x="42.6460%" y="671.50"></text></g><g><title>_raw_spin_lock (108 samples, 0.02%)</title><rect x="42.4320%" y="645" width="0.0224%" height="15" fill="rgb(205,3,22)" fg:x="204852" fg:w="108"/><text x="42.6820%" y="655.50"></text></g><g><title>btrfs_block_rsv_add_bytes (141 samples, 0.03%)</title><rect x="42.4256%" y="661" width="0.0292%" height="15" fill="rgb(248,22,20)" fg:x="204821" fg:w="141"/><text x="42.6756%" y="671.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="42.4844%" y="629" width="0.0222%" height="15" fill="rgb(233,6,29)" fg:x="205105" fg:w="107"/><text x="42.7344%" y="639.50"></text></g><g><title>btrfs_get_alloc_profile (56 samples, 0.01%)</title><rect x="42.5762%" y="613" width="0.0116%" height="15" fill="rgb(240,22,54)" fg:x="205548" fg:w="56"/><text x="42.8262%" y="623.50"></text></g><g><title>_raw_spin_lock (241 samples, 0.05%)</title><rect x="42.6516%" y="597" width="0.0499%" height="15" fill="rgb(231,133,32)" fg:x="205912" fg:w="241"/><text x="42.9016%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (945 samples, 0.20%)</title><rect x="42.5068%" y="629" width="0.1957%" height="15" fill="rgb(248,193,4)" fg:x="205213" fg:w="945"/><text x="42.7568%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (554 samples, 0.11%)</title><rect x="42.5878%" y="613" width="0.1148%" height="15" fill="rgb(211,178,46)" fg:x="205604" fg:w="554"/><text x="42.8378%" y="623.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="42.7734%" y="597" width="0.0203%" height="15" fill="rgb(224,5,42)" fg:x="206500" fg:w="98"/><text x="43.0234%" y="607.50"></text></g><g><title>btrfs_block_rsv_refill (1,998 samples, 0.41%)</title><rect x="42.3800%" y="677" width="0.4139%" height="15" fill="rgb(239,176,25)" fg:x="204601" fg:w="1998"/><text x="42.6300%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,637 samples, 0.34%)</title><rect x="42.4548%" y="661" width="0.3391%" height="15" fill="rgb(245,187,50)" fg:x="204962" fg:w="1637"/><text x="42.7048%" y="671.50"></text></g><g><title>__reserve_bytes (1,617 samples, 0.33%)</title><rect x="42.4589%" y="645" width="0.3349%" height="15" fill="rgb(248,24,15)" fg:x="204982" fg:w="1617"/><text x="42.7089%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (441 samples, 0.09%)</title><rect x="42.7025%" y="629" width="0.0913%" height="15" fill="rgb(205,166,13)" fg:x="206158" fg:w="441"/><text x="42.9525%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (238 samples, 0.05%)</title><rect x="42.7446%" y="613" width="0.0493%" height="15" fill="rgb(208,114,23)" fg:x="206361" fg:w="238"/><text x="42.9946%" y="623.50"></text></g><g><title>join_transaction (338 samples, 0.07%)</title><rect x="42.8521%" y="661" width="0.0700%" height="15" fill="rgb(239,127,18)" fg:x="206880" fg:w="338"/><text x="43.1021%" y="671.50"></text></g><g><title>_raw_spin_lock (119 samples, 0.02%)</title><rect x="42.8974%" y="645" width="0.0246%" height="15" fill="rgb(219,154,28)" fg:x="207099" fg:w="119"/><text x="43.1474%" y="655.50"></text></g><g><title>memset_erms (95 samples, 0.02%)</title><rect x="42.9567%" y="645" width="0.0197%" height="15" fill="rgb(225,157,23)" fg:x="207385" fg:w="95"/><text x="43.2067%" y="655.50"></text></g><g><title>evict_refill_and_join (3,269 samples, 0.68%)</title><rect x="42.3131%" y="693" width="0.6771%" height="15" fill="rgb(219,8,6)" fg:x="204278" fg:w="3269"/><text x="42.5631%" y="703.50"></text></g><g><title>start_transaction (938 samples, 0.19%)</title><rect x="42.7959%" y="677" width="0.1943%" height="15" fill="rgb(212,47,6)" fg:x="206609" fg:w="938"/><text x="43.0459%" y="687.50"></text></g><g><title>kmem_cache_alloc (329 samples, 0.07%)</title><rect x="42.9221%" y="661" width="0.0681%" height="15" fill="rgb(224,190,4)" fg:x="207218" fg:w="329"/><text x="43.1721%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (67 samples, 0.01%)</title><rect x="42.9764%" y="645" width="0.0139%" height="15" fill="rgb(239,183,29)" fg:x="207480" fg:w="67"/><text x="43.2264%" y="655.50"></text></g><g><title>kfree (137 samples, 0.03%)</title><rect x="42.9911%" y="693" width="0.0284%" height="15" fill="rgb(213,57,7)" fg:x="207551" fg:w="137"/><text x="43.2411%" y="703.50"></text></g><g><title>__slab_free (138 samples, 0.03%)</title><rect x="43.0418%" y="677" width="0.0286%" height="15" fill="rgb(216,148,1)" fg:x="207796" fg:w="138"/><text x="43.2918%" y="687.50"></text></g><g><title>kmem_cache_free (315 samples, 0.07%)</title><rect x="43.0194%" y="693" width="0.0652%" height="15" fill="rgb(236,182,29)" fg:x="207688" fg:w="315"/><text x="43.2694%" y="703.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (51 samples, 0.01%)</title><rect x="43.0741%" y="677" width="0.0106%" height="15" fill="rgb(244,120,48)" fg:x="207952" fg:w="51"/><text x="43.3241%" y="687.50"></text></g><g><title>lock_extent_bits (51 samples, 0.01%)</title><rect x="43.0847%" y="693" width="0.0106%" height="15" fill="rgb(206,71,34)" fg:x="208003" fg:w="51"/><text x="43.3347%" y="703.50"></text></g><g><title>__set_extent_bit (51 samples, 0.01%)</title><rect x="43.0847%" y="677" width="0.0106%" height="15" fill="rgb(242,32,6)" fg:x="208003" fg:w="51"/><text x="43.3347%" y="687.50"></text></g><g><title>truncate_inode_pages_final (79 samples, 0.02%)</title><rect x="43.0992%" y="693" width="0.0164%" height="15" fill="rgb(241,35,3)" fg:x="208073" fg:w="79"/><text x="43.3492%" y="703.50"></text></g><g><title>__pagevec_release (122 samples, 0.03%)</title><rect x="43.1205%" y="677" width="0.0253%" height="15" fill="rgb(222,62,19)" fg:x="208176" fg:w="122"/><text x="43.3705%" y="687.50"></text></g><g><title>release_pages (112 samples, 0.02%)</title><rect x="43.1226%" y="661" width="0.0232%" height="15" fill="rgb(223,110,41)" fg:x="208186" fg:w="112"/><text x="43.3726%" y="671.50"></text></g><g><title>delete_from_page_cache_batch (52 samples, 0.01%)</title><rect x="43.1462%" y="677" width="0.0108%" height="15" fill="rgb(208,224,4)" fg:x="208300" fg:w="52"/><text x="43.3962%" y="687.50"></text></g><g><title>btrfs_evict_inode (48,228 samples, 9.99%)</title><rect x="33.1803%" y="709" width="9.9897%" height="15" fill="rgb(241,137,19)" fg:x="160187" fg:w="48228"/><text x="33.4303%" y="719.50">btrfs_evict_in..</text></g><g><title>truncate_inode_pages_range (263 samples, 0.05%)</title><rect x="43.1156%" y="693" width="0.0545%" height="15" fill="rgb(244,24,17)" fg:x="208152" fg:w="263"/><text x="43.3656%" y="703.50"></text></g><g><title>clear_inode (59 samples, 0.01%)</title><rect x="43.1700%" y="709" width="0.0122%" height="15" fill="rgb(245,178,49)" fg:x="208415" fg:w="59"/><text x="43.4200%" y="719.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.03%)</title><rect x="43.1907%" y="693" width="0.0251%" height="15" fill="rgb(219,160,38)" fg:x="208515" fg:w="121"/><text x="43.4407%" y="703.50"></text></g><g><title>inode_wait_for_writeback (163 samples, 0.03%)</title><rect x="43.1823%" y="709" width="0.0338%" height="15" fill="rgb(228,137,14)" fg:x="208474" fg:w="163"/><text x="43.4323%" y="719.50"></text></g><g><title>evict (49,178 samples, 10.19%)</title><rect x="33.0326%" y="725" width="10.1865%" height="15" fill="rgb(237,134,11)" fg:x="159474" fg:w="49178"/><text x="33.2826%" y="735.50">evict</text></g><g><title>__legitimize_mnt (78 samples, 0.02%)</title><rect x="43.2519%" y="645" width="0.0162%" height="15" fill="rgb(211,126,44)" fg:x="208810" fg:w="78"/><text x="43.5019%" y="655.50"></text></g><g><title>__legitimize_path (164 samples, 0.03%)</title><rect x="43.2485%" y="661" width="0.0340%" height="15" fill="rgb(226,171,33)" fg:x="208794" fg:w="164"/><text x="43.4985%" y="671.50"></text></g><g><title>lockref_get_not_dead (70 samples, 0.01%)</title><rect x="43.2680%" y="645" width="0.0145%" height="15" fill="rgb(253,99,13)" fg:x="208888" fg:w="70"/><text x="43.5180%" y="655.50"></text></g><g><title>complete_walk (220 samples, 0.05%)</title><rect x="43.2409%" y="693" width="0.0456%" height="15" fill="rgb(244,48,7)" fg:x="208757" fg:w="220"/><text x="43.4909%" y="703.50"></text></g><g><title>try_to_unlazy (209 samples, 0.04%)</title><rect x="43.2432%" y="677" width="0.0433%" height="15" fill="rgb(244,217,54)" fg:x="208768" fg:w="209"/><text x="43.4932%" y="687.50"></text></g><g><title>link_path_walk.part.0 (120 samples, 0.02%)</title><rect x="43.2864%" y="693" width="0.0249%" height="15" fill="rgb(224,15,18)" fg:x="208977" fg:w="120"/><text x="43.5364%" y="703.50"></text></g><g><title>__fget_light (228 samples, 0.05%)</title><rect x="43.3237%" y="677" width="0.0472%" height="15" fill="rgb(244,99,12)" fg:x="209157" fg:w="228"/><text x="43.5737%" y="687.50"></text></g><g><title>__fget_files (167 samples, 0.03%)</title><rect x="43.3364%" y="661" width="0.0346%" height="15" fill="rgb(233,226,8)" fg:x="209218" fg:w="167"/><text x="43.5864%" y="671.50"></text></g><g><title>path_init (321 samples, 0.07%)</title><rect x="43.3113%" y="693" width="0.0665%" height="15" fill="rgb(229,211,3)" fg:x="209097" fg:w="321"/><text x="43.5613%" y="703.50"></text></g><g><title>filename_parentat (798 samples, 0.17%)</title><rect x="43.2191%" y="725" width="0.1653%" height="15" fill="rgb(216,140,21)" fg:x="208652" fg:w="798"/><text x="43.4691%" y="735.50"></text></g><g><title>path_parentat (727 samples, 0.15%)</title><rect x="43.2338%" y="709" width="0.1506%" height="15" fill="rgb(234,122,30)" fg:x="208723" fg:w="727"/><text x="43.4838%" y="719.50"></text></g><g><title>ihold (164 samples, 0.03%)</title><rect x="43.3844%" y="725" width="0.0340%" height="15" fill="rgb(236,25,46)" fg:x="209450" fg:w="164"/><text x="43.6344%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (111 samples, 0.02%)</title><rect x="43.4254%" y="709" width="0.0230%" height="15" fill="rgb(217,52,54)" fg:x="209648" fg:w="111"/><text x="43.6754%" y="719.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="43.4377%" y="693" width="0.0108%" height="15" fill="rgb(222,29,26)" fg:x="209707" fg:w="52"/><text x="43.6877%" y="703.50"></text></g><g><title>iput.part.0 (155 samples, 0.03%)</title><rect x="43.4184%" y="725" width="0.0321%" height="15" fill="rgb(216,177,29)" fg:x="209614" fg:w="155"/><text x="43.6684%" y="735.50"></text></g><g><title>kmem_cache_free (182 samples, 0.04%)</title><rect x="43.4505%" y="725" width="0.0377%" height="15" fill="rgb(247,136,51)" fg:x="209769" fg:w="182"/><text x="43.7005%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (74 samples, 0.02%)</title><rect x="43.4729%" y="709" width="0.0153%" height="15" fill="rgb(231,47,47)" fg:x="209877" fg:w="74"/><text x="43.7229%" y="719.50"></text></g><g><title>mnt_drop_write (114 samples, 0.02%)</title><rect x="43.4882%" y="725" width="0.0236%" height="15" fill="rgb(211,192,36)" fg:x="209951" fg:w="114"/><text x="43.7382%" y="735.50"></text></g><g><title>__mnt_want_write (73 samples, 0.02%)</title><rect x="43.5172%" y="709" width="0.0151%" height="15" fill="rgb(229,156,32)" fg:x="210091" fg:w="73"/><text x="43.7672%" y="719.50"></text></g><g><title>mnt_want_write (105 samples, 0.02%)</title><rect x="43.5118%" y="725" width="0.0217%" height="15" fill="rgb(248,213,20)" fg:x="210065" fg:w="105"/><text x="43.7618%" y="735.50"></text></g><g><title>apparmor_path_unlink (119 samples, 0.02%)</title><rect x="43.5460%" y="709" width="0.0246%" height="15" fill="rgb(217,64,7)" fg:x="210230" fg:w="119"/><text x="43.7960%" y="719.50"></text></g><g><title>security_path_unlink (323 samples, 0.07%)</title><rect x="43.5443%" y="725" width="0.0669%" height="15" fill="rgb(232,142,8)" fg:x="210222" fg:w="323"/><text x="43.7943%" y="735.50"></text></g><g><title>tomoyo_path_unlink (196 samples, 0.04%)</title><rect x="43.5706%" y="709" width="0.0406%" height="15" fill="rgb(224,92,44)" fg:x="210349" fg:w="196"/><text x="43.8206%" y="719.50"></text></g><g><title>tomoyo_path_perm (185 samples, 0.04%)</title><rect x="43.5729%" y="693" width="0.0383%" height="15" fill="rgb(214,169,17)" fg:x="210360" fg:w="185"/><text x="43.8229%" y="703.50"></text></g><g><title>tomoyo_init_request_info (95 samples, 0.02%)</title><rect x="43.5916%" y="677" width="0.0197%" height="15" fill="rgb(210,59,37)" fg:x="210450" fg:w="95"/><text x="43.8416%" y="687.50"></text></g><g><title>up_write (68 samples, 0.01%)</title><rect x="43.6112%" y="725" width="0.0141%" height="15" fill="rgb(214,116,48)" fg:x="210545" fg:w="68"/><text x="43.8612%" y="735.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="43.6533%" y="709" width="0.0126%" height="15" fill="rgb(244,191,6)" fg:x="210748" fg:w="61"/><text x="43.9033%" y="719.50"></text></g><g><title>btrfs_put_transaction (59 samples, 0.01%)</title><rect x="43.7152%" y="677" width="0.0122%" height="15" fill="rgb(241,50,52)" fg:x="211047" fg:w="59"/><text x="43.9652%" y="687.50"></text></g><g><title>_raw_spin_lock (106 samples, 0.02%)</title><rect x="43.7426%" y="645" width="0.0220%" height="15" fill="rgb(236,75,39)" fg:x="211179" fg:w="106"/><text x="43.9926%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (204 samples, 0.04%)</title><rect x="43.7291%" y="677" width="0.0423%" height="15" fill="rgb(236,99,0)" fg:x="211114" fg:w="204"/><text x="43.9791%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (192 samples, 0.04%)</title><rect x="43.7316%" y="661" width="0.0398%" height="15" fill="rgb(207,202,15)" fg:x="211126" fg:w="192"/><text x="43.9816%" y="671.50"></text></g><g><title>__btrfs_end_transaction (597 samples, 0.12%)</title><rect x="43.6750%" y="693" width="0.1237%" height="15" fill="rgb(233,207,14)" fg:x="210853" fg:w="597"/><text x="43.9250%" y="703.50"></text></g><g><title>kmem_cache_free (132 samples, 0.03%)</title><rect x="43.7713%" y="677" width="0.0273%" height="15" fill="rgb(226,27,51)" fg:x="211318" fg:w="132"/><text x="44.0213%" y="687.50"></text></g><g><title>btrfs_end_log_trans (55 samples, 0.01%)</title><rect x="43.9043%" y="661" width="0.0114%" height="15" fill="rgb(206,104,42)" fg:x="211960" fg:w="55"/><text x="44.1543%" y="671.50"></text></g><g><title>btrfs_tree_unlock (62 samples, 0.01%)</title><rect x="43.9271%" y="629" width="0.0128%" height="15" fill="rgb(212,225,4)" fg:x="212070" fg:w="62"/><text x="44.1771%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (66 samples, 0.01%)</title><rect x="43.9402%" y="629" width="0.0137%" height="15" fill="rgb(233,96,42)" fg:x="212133" fg:w="66"/><text x="44.1902%" y="639.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="43.9416%" y="613" width="0.0122%" height="15" fill="rgb(229,21,32)" fg:x="212140" fg:w="59"/><text x="44.1916%" y="623.50"></text></g><g><title>btrfs_free_path (227 samples, 0.05%)</title><rect x="43.9157%" y="661" width="0.0470%" height="15" fill="rgb(226,216,24)" fg:x="212015" fg:w="227"/><text x="44.1657%" y="671.50"></text></g><g><title>btrfs_release_path (220 samples, 0.05%)</title><rect x="43.9172%" y="645" width="0.0456%" height="15" fill="rgb(221,163,17)" fg:x="212022" fg:w="220"/><text x="44.1672%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (71 samples, 0.01%)</title><rect x="43.9895%" y="613" width="0.0147%" height="15" fill="rgb(216,216,42)" fg:x="212371" fg:w="71"/><text x="44.2395%" y="623.50"></text></g><g><title>_raw_read_lock (52 samples, 0.01%)</title><rect x="43.9934%" y="597" width="0.0108%" height="15" fill="rgb(240,118,7)" fg:x="212390" fg:w="52"/><text x="44.2434%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (153 samples, 0.03%)</title><rect x="43.9878%" y="629" width="0.0317%" height="15" fill="rgb(221,67,37)" fg:x="212363" fg:w="153"/><text x="44.2378%" y="639.50"></text></g><g><title>btrfs_root_node (74 samples, 0.02%)</title><rect x="44.0042%" y="613" width="0.0153%" height="15" fill="rgb(241,32,44)" fg:x="212442" fg:w="74"/><text x="44.2542%" y="623.50"></text></g><g><title>__btrfs_tree_lock (82 samples, 0.02%)</title><rect x="44.0236%" y="613" width="0.0170%" height="15" fill="rgb(235,204,43)" fg:x="212536" fg:w="82"/><text x="44.2736%" y="623.50"></text></g><g><title>btrfs_lock_root_node (154 samples, 0.03%)</title><rect x="44.0205%" y="629" width="0.0319%" height="15" fill="rgb(213,116,10)" fg:x="212521" fg:w="154"/><text x="44.2705%" y="639.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="44.0406%" y="613" width="0.0118%" height="15" fill="rgb(239,15,48)" fg:x="212618" fg:w="57"/><text x="44.2906%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (59 samples, 0.01%)</title><rect x="44.0524%" y="629" width="0.0122%" height="15" fill="rgb(207,123,36)" fg:x="212675" fg:w="59"/><text x="44.3024%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (49 samples, 0.01%)</title><rect x="44.0647%" y="629" width="0.0101%" height="15" fill="rgb(209,103,30)" fg:x="212734" fg:w="49"/><text x="44.3147%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (74 samples, 0.02%)</title><rect x="44.0748%" y="629" width="0.0153%" height="15" fill="rgb(238,100,19)" fg:x="212783" fg:w="74"/><text x="44.3248%" y="639.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="44.0773%" y="613" width="0.0128%" height="15" fill="rgb(244,30,14)" fg:x="212795" fg:w="62"/><text x="44.3273%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.02%)</title><rect x="44.0901%" y="629" width="0.0151%" height="15" fill="rgb(249,174,6)" fg:x="212857" fg:w="73"/><text x="44.3401%" y="639.50"></text></g><g><title>release_extent_buffer (52 samples, 0.01%)</title><rect x="44.1052%" y="629" width="0.0108%" height="15" fill="rgb(235,213,41)" fg:x="212930" fg:w="52"/><text x="44.3552%" y="639.50"></text></g><g><title>btrfs_lookup_dir_index_item (769 samples, 0.16%)</title><rect x="43.9627%" y="661" width="0.1593%" height="15" fill="rgb(213,118,6)" fg:x="212242" fg:w="769"/><text x="44.2127%" y="671.50"></text></g><g><title>btrfs_search_slot (756 samples, 0.16%)</title><rect x="43.9654%" y="645" width="0.1566%" height="15" fill="rgb(235,44,51)" fg:x="212255" fg:w="756"/><text x="44.2154%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (81 samples, 0.02%)</title><rect x="44.1581%" y="613" width="0.0168%" height="15" fill="rgb(217,9,53)" fg:x="213185" fg:w="81"/><text x="44.4081%" y="623.50"></text></g><g><title>_raw_read_lock (59 samples, 0.01%)</title><rect x="44.1626%" y="597" width="0.0122%" height="15" fill="rgb(237,172,34)" fg:x="213207" fg:w="59"/><text x="44.4126%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (162 samples, 0.03%)</title><rect x="44.1558%" y="629" width="0.0336%" height="15" fill="rgb(206,206,11)" fg:x="213174" fg:w="162"/><text x="44.4058%" y="639.50"></text></g><g><title>btrfs_root_node (70 samples, 0.01%)</title><rect x="44.1748%" y="613" width="0.0145%" height="15" fill="rgb(214,149,29)" fg:x="213266" fg:w="70"/><text x="44.4248%" y="623.50"></text></g><g><title>__btrfs_tree_lock (94 samples, 0.02%)</title><rect x="44.1933%" y="613" width="0.0195%" height="15" fill="rgb(208,123,3)" fg:x="213355" fg:w="94"/><text x="44.4433%" y="623.50"></text></g><g><title>btrfs_lock_root_node (161 samples, 0.03%)</title><rect x="44.1900%" y="629" width="0.0333%" height="15" fill="rgb(229,126,4)" fg:x="213339" fg:w="161"/><text x="44.4400%" y="639.50"></text></g><g><title>btrfs_root_node (51 samples, 0.01%)</title><rect x="44.2128%" y="613" width="0.0106%" height="15" fill="rgb(222,92,36)" fg:x="213449" fg:w="51"/><text x="44.4628%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.02%)</title><rect x="44.2233%" y="629" width="0.0157%" height="15" fill="rgb(216,39,41)" fg:x="213500" fg:w="76"/><text x="44.4733%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (68 samples, 0.01%)</title><rect x="44.2478%" y="629" width="0.0141%" height="15" fill="rgb(253,127,28)" fg:x="213618" fg:w="68"/><text x="44.4978%" y="639.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="44.2511%" y="613" width="0.0108%" height="15" fill="rgb(249,152,51)" fg:x="213634" fg:w="52"/><text x="44.5011%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.02%)</title><rect x="44.2618%" y="629" width="0.0151%" height="15" fill="rgb(209,123,42)" fg:x="213686" fg:w="73"/><text x="44.5118%" y="639.50"></text></g><g><title>release_extent_buffer (67 samples, 0.01%)</title><rect x="44.2770%" y="629" width="0.0139%" height="15" fill="rgb(241,118,22)" fg:x="213759" fg:w="67"/><text x="44.5270%" y="639.50"></text></g><g><title>btrfs_search_slot (806 samples, 0.17%)</title><rect x="44.1295%" y="645" width="0.1670%" height="15" fill="rgb(208,25,7)" fg:x="213047" fg:w="806"/><text x="44.3795%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (871 samples, 0.18%)</title><rect x="44.1220%" y="661" width="0.1804%" height="15" fill="rgb(243,144,39)" fg:x="213011" fg:w="871"/><text x="44.3720%" y="671.50"></text></g><g><title>btrfs_tree_unlock (72 samples, 0.01%)</title><rect x="44.3180%" y="645" width="0.0149%" height="15" fill="rgb(250,50,5)" fg:x="213957" fg:w="72"/><text x="44.5680%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (73 samples, 0.02%)</title><rect x="44.3337%" y="645" width="0.0151%" height="15" fill="rgb(207,67,11)" fg:x="214033" fg:w="73"/><text x="44.5837%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="44.3354%" y="629" width="0.0135%" height="15" fill="rgb(245,204,40)" fg:x="214041" fg:w="65"/><text x="44.5854%" y="639.50"></text></g><g><title>btrfs_release_path (281 samples, 0.06%)</title><rect x="44.3024%" y="661" width="0.0582%" height="15" fill="rgb(238,228,24)" fg:x="213882" fg:w="281"/><text x="44.5524%" y="671.50"></text></g><g><title>release_extent_buffer (57 samples, 0.01%)</title><rect x="44.3488%" y="645" width="0.0118%" height="15" fill="rgb(217,116,22)" fg:x="214106" fg:w="57"/><text x="44.5988%" y="655.50"></text></g><g><title>memset_erms (59 samples, 0.01%)</title><rect x="44.3760%" y="645" width="0.0122%" height="15" fill="rgb(234,98,12)" fg:x="214237" fg:w="59"/><text x="44.6260%" y="655.50"></text></g><g><title>kmem_cache_alloc (158 samples, 0.03%)</title><rect x="44.3606%" y="661" width="0.0327%" height="15" fill="rgb(242,170,50)" fg:x="214163" fg:w="158"/><text x="44.6106%" y="671.50"></text></g><g><title>kmem_cache_free (98 samples, 0.02%)</title><rect x="44.3934%" y="661" width="0.0203%" height="15" fill="rgb(235,7,5)" fg:x="214321" fg:w="98"/><text x="44.6434%" y="671.50"></text></g><g><title>mutex_lock (121 samples, 0.03%)</title><rect x="44.4137%" y="661" width="0.0251%" height="15" fill="rgb(241,114,28)" fg:x="214419" fg:w="121"/><text x="44.6637%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,811 samples, 0.58%)</title><rect x="43.8782%" y="677" width="0.5823%" height="15" fill="rgb(246,112,42)" fg:x="211834" fg:w="2811"/><text x="44.1282%" y="687.50"></text></g><g><title>mutex_unlock (105 samples, 0.02%)</title><rect x="44.4387%" y="661" width="0.0217%" height="15" fill="rgb(248,228,14)" fg:x="214540" fg:w="105"/><text x="44.6887%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (98 samples, 0.02%)</title><rect x="44.5061%" y="613" width="0.0203%" height="15" fill="rgb(208,133,18)" fg:x="214865" fg:w="98"/><text x="44.7561%" y="623.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.02%)</title><rect x="44.5102%" y="597" width="0.0162%" height="15" fill="rgb(207,35,49)" fg:x="214885" fg:w="78"/><text x="44.7602%" y="607.50"></text></g><g><title>btrfs_free_path (297 samples, 0.06%)</title><rect x="44.4849%" y="645" width="0.0615%" height="15" fill="rgb(205,68,36)" fg:x="214763" fg:w="297"/><text x="44.7349%" y="655.50"></text></g><g><title>btrfs_release_path (288 samples, 0.06%)</title><rect x="44.4868%" y="629" width="0.0597%" height="15" fill="rgb(245,62,40)" fg:x="214772" fg:w="288"/><text x="44.7368%" y="639.50"></text></g><g><title>release_extent_buffer (97 samples, 0.02%)</title><rect x="44.5264%" y="613" width="0.0201%" height="15" fill="rgb(228,27,24)" fg:x="214963" fg:w="97"/><text x="44.7764%" y="623.50"></text></g><g><title>_raw_read_lock (119 samples, 0.02%)</title><rect x="44.6057%" y="597" width="0.0246%" height="15" fill="rgb(253,19,12)" fg:x="215346" fg:w="119"/><text x="44.8557%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (169 samples, 0.04%)</title><rect x="44.5955%" y="613" width="0.0350%" height="15" fill="rgb(232,28,20)" fg:x="215297" fg:w="169"/><text x="44.8455%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (344 samples, 0.07%)</title><rect x="44.5937%" y="629" width="0.0713%" height="15" fill="rgb(218,35,51)" fg:x="215288" fg:w="344"/><text x="44.8437%" y="639.50"></text></g><g><title>btrfs_root_node (166 samples, 0.03%)</title><rect x="44.6305%" y="613" width="0.0344%" height="15" fill="rgb(212,90,40)" fg:x="215466" fg:w="166"/><text x="44.8805%" y="623.50"></text></g><g><title>__btrfs_tree_lock (154 samples, 0.03%)</title><rect x="44.6732%" y="613" width="0.0319%" height="15" fill="rgb(220,172,12)" fg:x="215672" fg:w="154"/><text x="44.9232%" y="623.50"></text></g><g><title>_raw_write_lock (86 samples, 0.02%)</title><rect x="44.6873%" y="597" width="0.0178%" height="15" fill="rgb(226,159,20)" fg:x="215740" fg:w="86"/><text x="44.9373%" y="607.50"></text></g><g><title>btrfs_lock_root_node (266 samples, 0.06%)</title><rect x="44.6684%" y="629" width="0.0551%" height="15" fill="rgb(234,205,16)" fg:x="215649" fg:w="266"/><text x="44.9184%" y="639.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="44.7051%" y="613" width="0.0184%" height="15" fill="rgb(207,9,39)" fg:x="215826" fg:w="89"/><text x="44.9551%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (97 samples, 0.02%)</title><rect x="44.7238%" y="629" width="0.0201%" height="15" fill="rgb(249,143,15)" fg:x="215916" fg:w="97"/><text x="44.9738%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (128 samples, 0.03%)</title><rect x="44.7443%" y="629" width="0.0265%" height="15" fill="rgb(253,133,29)" fg:x="216015" fg:w="128"/><text x="44.9943%" y="639.50"></text></g><g><title>_raw_spin_lock (108 samples, 0.02%)</title><rect x="44.7484%" y="613" width="0.0224%" height="15" fill="rgb(221,187,0)" fg:x="216035" fg:w="108"/><text x="44.9984%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (187 samples, 0.04%)</title><rect x="44.7708%" y="629" width="0.0387%" height="15" fill="rgb(205,204,26)" fg:x="216143" fg:w="187"/><text x="45.0208%" y="639.50"></text></g><g><title>release_extent_buffer (79 samples, 0.02%)</title><rect x="44.8095%" y="629" width="0.0164%" height="15" fill="rgb(224,68,54)" fg:x="216330" fg:w="79"/><text x="45.0595%" y="639.50"></text></g><g><title>btrfs_search_slot (1,423 samples, 0.29%)</title><rect x="44.5464%" y="645" width="0.2948%" height="15" fill="rgb(209,67,4)" fg:x="215060" fg:w="1423"/><text x="44.7964%" y="655.50"></text></g><g><title>unlock_up (74 samples, 0.02%)</title><rect x="44.8259%" y="629" width="0.0153%" height="15" fill="rgb(228,229,18)" fg:x="216409" fg:w="74"/><text x="45.0759%" y="639.50"></text></g><g><title>crc32c (61 samples, 0.01%)</title><rect x="44.8412%" y="645" width="0.0126%" height="15" fill="rgb(231,89,13)" fg:x="216483" fg:w="61"/><text x="45.0912%" y="655.50"></text></g><g><title>memset_erms (93 samples, 0.02%)</title><rect x="44.8909%" y="629" width="0.0193%" height="15" fill="rgb(210,182,18)" fg:x="216723" fg:w="93"/><text x="45.1409%" y="639.50"></text></g><g><title>kmem_cache_alloc (323 samples, 0.07%)</title><rect x="44.8538%" y="645" width="0.0669%" height="15" fill="rgb(240,105,2)" fg:x="216544" fg:w="323"/><text x="45.1038%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (51 samples, 0.01%)</title><rect x="44.9102%" y="629" width="0.0106%" height="15" fill="rgb(207,170,50)" fg:x="216816" fg:w="51"/><text x="45.1602%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (2,370 samples, 0.49%)</title><rect x="44.4777%" y="661" width="0.4909%" height="15" fill="rgb(232,133,24)" fg:x="214728" fg:w="2370"/><text x="44.7277%" y="671.50"></text></g><g><title>kmem_cache_free (231 samples, 0.05%)</title><rect x="44.9207%" y="645" width="0.0478%" height="15" fill="rgb(235,166,27)" fg:x="216867" fg:w="231"/><text x="45.1707%" y="655.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (50 samples, 0.01%)</title><rect x="44.9582%" y="629" width="0.0104%" height="15" fill="rgb(209,19,13)" fg:x="217048" fg:w="50"/><text x="45.2082%" y="639.50"></text></g><g><title>btrfs_end_log_trans (50 samples, 0.01%)</title><rect x="44.9686%" y="661" width="0.0104%" height="15" fill="rgb(226,79,39)" fg:x="217098" fg:w="50"/><text x="45.2186%" y="671.50"></text></g><g><title>mutex_lock (106 samples, 0.02%)</title><rect x="44.9789%" y="661" width="0.0220%" height="15" fill="rgb(222,163,10)" fg:x="217148" fg:w="106"/><text x="45.2289%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (2,684 samples, 0.56%)</title><rect x="44.4605%" y="677" width="0.5560%" height="15" fill="rgb(214,44,19)" fg:x="214645" fg:w="2684"/><text x="44.7105%" y="687.50"></text></g><g><title>mutex_unlock (75 samples, 0.02%)</title><rect x="45.0009%" y="661" width="0.0155%" height="15" fill="rgb(210,217,13)" fg:x="217254" fg:w="75"/><text x="45.2509%" y="671.50"></text></g><g><title>steal_from_bitmap.part.0 (50 samples, 0.01%)</title><rect x="45.3027%" y="613" width="0.0104%" height="15" fill="rgb(237,61,54)" fg:x="218711" fg:w="50"/><text x="45.5527%" y="623.50"></text></g><g><title>__btrfs_add_free_space (64 samples, 0.01%)</title><rect x="45.3012%" y="629" width="0.0133%" height="15" fill="rgb(226,184,24)" fg:x="218704" fg:w="64"/><text x="45.5512%" y="639.50"></text></g><g><title>btrfs_free_tree_block (100 samples, 0.02%)</title><rect x="45.3012%" y="645" width="0.0207%" height="15" fill="rgb(223,226,4)" fg:x="218704" fg:w="100"/><text x="45.5512%" y="655.50"></text></g><g><title>btrfs_del_leaf (110 samples, 0.02%)</title><rect x="45.3010%" y="661" width="0.0228%" height="15" fill="rgb(210,26,41)" fg:x="218703" fg:w="110"/><text x="45.5510%" y="671.50"></text></g><g><title>btrfs_get_32 (151 samples, 0.03%)</title><rect x="45.3238%" y="661" width="0.0313%" height="15" fill="rgb(220,221,6)" fg:x="218813" fg:w="151"/><text x="45.5738%" y="671.50"></text></g><g><title>btrfs_get_token_32 (3,860 samples, 0.80%)</title><rect x="45.3551%" y="661" width="0.7995%" height="15" fill="rgb(225,89,49)" fg:x="218964" fg:w="3860"/><text x="45.6051%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (478 samples, 0.10%)</title><rect x="46.0556%" y="645" width="0.0990%" height="15" fill="rgb(218,70,45)" fg:x="222346" fg:w="478"/><text x="46.3056%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (178 samples, 0.04%)</title><rect x="46.1546%" y="661" width="0.0369%" height="15" fill="rgb(238,166,21)" fg:x="222824" fg:w="178"/><text x="46.4046%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (101 samples, 0.02%)</title><rect x="46.1706%" y="645" width="0.0209%" height="15" fill="rgb(224,141,44)" fg:x="222901" fg:w="101"/><text x="46.4206%" y="655.50"></text></g><g><title>btrfs_set_token_32 (3,343 samples, 0.69%)</title><rect x="46.1923%" y="661" width="0.6925%" height="15" fill="rgb(230,12,49)" fg:x="223006" fg:w="3343"/><text x="46.4423%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (725 samples, 0.15%)</title><rect x="46.7346%" y="645" width="0.1502%" height="15" fill="rgb(212,174,12)" fg:x="225624" fg:w="725"/><text x="46.9846%" y="655.50"></text></g><g><title>leaf_space_used (118 samples, 0.02%)</title><rect x="46.8869%" y="661" width="0.0244%" height="15" fill="rgb(246,67,9)" fg:x="226359" fg:w="118"/><text x="47.1369%" y="671.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="46.8939%" y="645" width="0.0174%" height="15" fill="rgb(239,35,23)" fg:x="226393" fg:w="84"/><text x="47.1439%" y="655.50"></text></g><g><title>copy_pages (78 samples, 0.02%)</title><rect x="46.9229%" y="645" width="0.0162%" height="15" fill="rgb(211,167,0)" fg:x="226533" fg:w="78"/><text x="47.1729%" y="655.50"></text></g><g><title>memcpy_extent_buffer (687 samples, 0.14%)</title><rect x="46.9113%" y="661" width="0.1423%" height="15" fill="rgb(225,119,45)" fg:x="226477" fg:w="687"/><text x="47.1613%" y="671.50"></text></g><g><title>memmove (553 samples, 0.11%)</title><rect x="46.9391%" y="645" width="0.1145%" height="15" fill="rgb(210,162,6)" fg:x="226611" fg:w="553"/><text x="47.1891%" y="655.50"></text></g><g><title>copy_pages (191 samples, 0.04%)</title><rect x="47.0791%" y="645" width="0.0396%" height="15" fill="rgb(208,118,35)" fg:x="227287" fg:w="191"/><text x="47.3291%" y="655.50"></text></g><g><title>memmove_extent_buffer (1,835 samples, 0.38%)</title><rect x="47.0536%" y="661" width="0.3801%" height="15" fill="rgb(239,4,53)" fg:x="227164" fg:w="1835"/><text x="47.3036%" y="671.50"></text></g><g><title>memmove (1,521 samples, 0.32%)</title><rect x="47.1186%" y="645" width="0.3151%" height="15" fill="rgb(213,130,21)" fg:x="227478" fg:w="1521"/><text x="47.3686%" y="655.50"></text></g><g><title>__push_leaf_left (102 samples, 0.02%)</title><rect x="47.4345%" y="645" width="0.0211%" height="15" fill="rgb(235,148,0)" fg:x="229003" fg:w="102"/><text x="47.6845%" y="655.50"></text></g><g><title>push_leaf_left (166 samples, 0.03%)</title><rect x="47.4337%" y="661" width="0.0344%" height="15" fill="rgb(244,224,18)" fg:x="228999" fg:w="166"/><text x="47.6837%" y="671.50"></text></g><g><title>__push_leaf_right (130 samples, 0.03%)</title><rect x="47.4699%" y="645" width="0.0269%" height="15" fill="rgb(211,214,4)" fg:x="229174" fg:w="130"/><text x="47.7199%" y="655.50"></text></g><g><title>push_leaf_right (173 samples, 0.04%)</title><rect x="47.4681%" y="661" width="0.0358%" height="15" fill="rgb(206,119,25)" fg:x="229165" fg:w="173"/><text x="47.7181%" y="671.50"></text></g><g><title>btrfs_del_items (12,020 samples, 2.49%)</title><rect x="45.0164%" y="677" width="2.4898%" height="15" fill="rgb(243,93,47)" fg:x="217329" fg:w="12020"/><text x="45.2664%" y="687.50">bt..</text></g><g><title>mutex_lock (59 samples, 0.01%)</title><rect x="47.5899%" y="645" width="0.0122%" height="15" fill="rgb(224,194,6)" fg:x="229753" fg:w="59"/><text x="47.8399%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (362 samples, 0.07%)</title><rect x="47.5362%" y="661" width="0.0750%" height="15" fill="rgb(243,229,6)" fg:x="229494" fg:w="362"/><text x="47.7862%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (281 samples, 0.06%)</title><rect x="47.6112%" y="661" width="0.0582%" height="15" fill="rgb(207,23,50)" fg:x="229856" fg:w="281"/><text x="47.8612%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (266 samples, 0.06%)</title><rect x="47.6143%" y="645" width="0.0551%" height="15" fill="rgb(253,192,32)" fg:x="229871" fg:w="266"/><text x="47.8643%" y="655.50"></text></g><g><title>mutex_lock (88 samples, 0.02%)</title><rect x="47.6694%" y="661" width="0.0182%" height="15" fill="rgb(213,21,6)" fg:x="230137" fg:w="88"/><text x="47.9194%" y="671.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (919 samples, 0.19%)</title><rect x="47.5062%" y="677" width="0.1904%" height="15" fill="rgb(243,151,13)" fg:x="229349" fg:w="919"/><text x="47.7562%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (167 samples, 0.03%)</title><rect x="47.7436%" y="645" width="0.0346%" height="15" fill="rgb(233,165,41)" fg:x="230495" fg:w="167"/><text x="47.9936%" y="655.50"></text></g><g><title>__btrfs_add_delayed_item (463 samples, 0.10%)</title><rect x="47.7098%" y="661" width="0.0959%" height="15" fill="rgb(246,176,45)" fg:x="230332" fg:w="463"/><text x="47.9598%" y="671.50"></text></g><g><title>rb_insert_color (133 samples, 0.03%)</title><rect x="47.7782%" y="645" width="0.0275%" height="15" fill="rgb(217,170,52)" fg:x="230662" fg:w="133"/><text x="48.0282%" y="655.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="47.8329%" y="645" width="0.0133%" height="15" fill="rgb(214,203,54)" fg:x="230926" fg:w="64"/><text x="48.0829%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (245 samples, 0.05%)</title><rect x="47.8057%" y="661" width="0.0507%" height="15" fill="rgb(248,215,49)" fg:x="230795" fg:w="245"/><text x="48.0557%" y="671.50"></text></g><g><title>mutex_unlock (50 samples, 0.01%)</title><rect x="47.8461%" y="645" width="0.0104%" height="15" fill="rgb(208,46,10)" fg:x="230990" fg:w="50"/><text x="48.0961%" y="655.50"></text></g><g><title>mutex_spin_on_owner (177 samples, 0.04%)</title><rect x="47.8581%" y="645" width="0.0367%" height="15" fill="rgb(254,5,31)" fg:x="231048" fg:w="177"/><text x="48.1081%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (190 samples, 0.04%)</title><rect x="47.8565%" y="661" width="0.0394%" height="15" fill="rgb(222,104,33)" fg:x="231040" fg:w="190"/><text x="48.1065%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (202 samples, 0.04%)</title><rect x="47.8960%" y="661" width="0.0418%" height="15" fill="rgb(248,49,16)" fg:x="231231" fg:w="202"/><text x="48.1460%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (182 samples, 0.04%)</title><rect x="47.9002%" y="645" width="0.0377%" height="15" fill="rgb(232,198,41)" fg:x="231251" fg:w="182"/><text x="48.1502%" y="655.50"></text></g><g><title>_raw_spin_lock (156 samples, 0.03%)</title><rect x="47.9056%" y="629" width="0.0323%" height="15" fill="rgb(214,125,3)" fg:x="231277" fg:w="156"/><text x="48.1556%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (73 samples, 0.02%)</title><rect x="47.9379%" y="661" width="0.0151%" height="15" fill="rgb(229,220,28)" fg:x="231433" fg:w="73"/><text x="48.1879%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (57 samples, 0.01%)</title><rect x="47.9412%" y="645" width="0.0118%" height="15" fill="rgb(222,64,37)" fg:x="231449" fg:w="57"/><text x="48.1912%" y="655.50"></text></g><g><title>__slab_alloc (54 samples, 0.01%)</title><rect x="47.9729%" y="645" width="0.0112%" height="15" fill="rgb(249,184,13)" fg:x="231602" fg:w="54"/><text x="48.2229%" y="655.50"></text></g><g><title>memset_erms (57 samples, 0.01%)</title><rect x="47.9874%" y="645" width="0.0118%" height="15" fill="rgb(252,176,6)" fg:x="231672" fg:w="57"/><text x="48.2374%" y="655.50"></text></g><g><title>kmem_cache_alloc_trace (247 samples, 0.05%)</title><rect x="47.9530%" y="661" width="0.0512%" height="15" fill="rgb(228,153,7)" fg:x="231506" fg:w="247"/><text x="48.2030%" y="671.50"></text></g><g><title>mutex_lock (130 samples, 0.03%)</title><rect x="48.0042%" y="661" width="0.0269%" height="15" fill="rgb(242,193,5)" fg:x="231753" fg:w="130"/><text x="48.2542%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,722 samples, 0.36%)</title><rect x="47.6966%" y="677" width="0.3567%" height="15" fill="rgb(232,140,9)" fg:x="230268" fg:w="1722"/><text x="47.9466%" y="687.50"></text></g><g><title>mutex_unlock (107 samples, 0.02%)</title><rect x="48.0311%" y="661" width="0.0222%" height="15" fill="rgb(213,222,16)" fg:x="231883" fg:w="107"/><text x="48.2811%" y="671.50"></text></g><g><title>btrfs_get_16 (70 samples, 0.01%)</title><rect x="48.0669%" y="661" width="0.0145%" height="15" fill="rgb(222,75,50)" fg:x="232056" fg:w="70"/><text x="48.3169%" y="671.50"></text></g><g><title>btrfs_delete_one_dir_name (181 samples, 0.04%)</title><rect x="48.0532%" y="677" width="0.0375%" height="15" fill="rgb(205,180,2)" fg:x="231990" fg:w="181"/><text x="48.3032%" y="687.50"></text></g><g><title>btrfs_get_16 (114 samples, 0.02%)</title><rect x="48.1226%" y="645" width="0.0236%" height="15" fill="rgb(216,34,7)" fg:x="232325" fg:w="114"/><text x="48.3726%" y="655.50"></text></g><g><title>btrfs_get_32 (93 samples, 0.02%)</title><rect x="48.1462%" y="645" width="0.0193%" height="15" fill="rgb(253,16,32)" fg:x="232439" fg:w="93"/><text x="48.3962%" y="655.50"></text></g><g><title>btrfs_match_dir_item_name (436 samples, 0.09%)</title><rect x="48.1090%" y="661" width="0.0903%" height="15" fill="rgb(208,97,28)" fg:x="232259" fg:w="436"/><text x="48.3590%" y="671.50"></text></g><g><title>memcmp_extent_buffer (163 samples, 0.03%)</title><rect x="48.1655%" y="645" width="0.0338%" height="15" fill="rgb(225,92,11)" fg:x="232532" fg:w="163"/><text x="48.4155%" y="655.50"></text></g><g><title>memcmp (91 samples, 0.02%)</title><rect x="48.1804%" y="629" width="0.0188%" height="15" fill="rgb(243,38,12)" fg:x="232604" fg:w="91"/><text x="48.4304%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (80 samples, 0.02%)</title><rect x="48.2629%" y="629" width="0.0166%" height="15" fill="rgb(208,139,16)" fg:x="233002" fg:w="80"/><text x="48.5129%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (188 samples, 0.04%)</title><rect x="48.2593%" y="645" width="0.0389%" height="15" fill="rgb(227,24,9)" fg:x="232985" fg:w="188"/><text x="48.5093%" y="655.50"></text></g><g><title>btrfs_root_node (91 samples, 0.02%)</title><rect x="48.2794%" y="629" width="0.0188%" height="15" fill="rgb(206,62,11)" fg:x="233082" fg:w="91"/><text x="48.5294%" y="639.50"></text></g><g><title>alloc_extent_buffer (56 samples, 0.01%)</title><rect x="48.3281%" y="597" width="0.0116%" height="15" fill="rgb(228,134,27)" fg:x="233317" fg:w="56"/><text x="48.5781%" y="607.50"></text></g><g><title>find_extent_buffer (51 samples, 0.01%)</title><rect x="48.3291%" y="581" width="0.0106%" height="15" fill="rgb(205,55,33)" fg:x="233322" fg:w="51"/><text x="48.5791%" y="591.50"></text></g><g><title>btrfs_read_node_slot (92 samples, 0.02%)</title><rect x="48.3244%" y="629" width="0.0191%" height="15" fill="rgb(243,75,43)" fg:x="233299" fg:w="92"/><text x="48.5744%" y="639.50"></text></g><g><title>read_tree_block (76 samples, 0.02%)</title><rect x="48.3277%" y="613" width="0.0157%" height="15" fill="rgb(223,27,42)" fg:x="233315" fg:w="76"/><text x="48.5777%" y="623.50"></text></g><g><title>balance_level (250 samples, 0.05%)</title><rect x="48.3018%" y="645" width="0.0518%" height="15" fill="rgb(232,189,33)" fg:x="233190" fg:w="250"/><text x="48.5518%" y="655.50"></text></g><g><title>_raw_write_lock (61 samples, 0.01%)</title><rect x="48.3733%" y="613" width="0.0126%" height="15" fill="rgb(210,9,39)" fg:x="233535" fg:w="61"/><text x="48.6233%" y="623.50"></text></g><g><title>__btrfs_tree_lock (101 samples, 0.02%)</title><rect x="48.3656%" y="629" width="0.0209%" height="15" fill="rgb(242,85,26)" fg:x="233498" fg:w="101"/><text x="48.6156%" y="639.50"></text></g><g><title>btrfs_lock_root_node (164 samples, 0.03%)</title><rect x="48.3639%" y="645" width="0.0340%" height="15" fill="rgb(248,44,4)" fg:x="233490" fg:w="164"/><text x="48.6139%" y="655.50"></text></g><g><title>btrfs_root_node (55 samples, 0.01%)</title><rect x="48.3865%" y="629" width="0.0114%" height="15" fill="rgb(250,96,46)" fg:x="233599" fg:w="55"/><text x="48.6365%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.02%)</title><rect x="48.3979%" y="645" width="0.0157%" height="15" fill="rgb(229,116,26)" fg:x="233654" fg:w="76"/><text x="48.6479%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (57 samples, 0.01%)</title><rect x="48.4137%" y="645" width="0.0118%" height="15" fill="rgb(246,94,34)" fg:x="233730" fg:w="57"/><text x="48.6637%" y="655.50"></text></g><g><title>_raw_write_lock (110 samples, 0.02%)</title><rect x="48.4321%" y="629" width="0.0228%" height="15" fill="rgb(251,73,21)" fg:x="233819" fg:w="110"/><text x="48.6821%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (147 samples, 0.03%)</title><rect x="48.4255%" y="645" width="0.0304%" height="15" fill="rgb(254,121,25)" fg:x="233787" fg:w="147"/><text x="48.6755%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (97 samples, 0.02%)</title><rect x="48.4565%" y="645" width="0.0201%" height="15" fill="rgb(215,161,49)" fg:x="233937" fg:w="97"/><text x="48.7065%" y="655.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.02%)</title><rect x="48.4605%" y="629" width="0.0162%" height="15" fill="rgb(221,43,13)" fg:x="233956" fg:w="78"/><text x="48.7105%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,153 samples, 0.24%)</title><rect x="48.4766%" y="645" width="0.2388%" height="15" fill="rgb(249,5,37)" fg:x="234034" fg:w="1153"/><text x="48.7266%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (76 samples, 0.02%)</title><rect x="48.7451%" y="629" width="0.0157%" height="15" fill="rgb(226,25,44)" fg:x="235330" fg:w="76"/><text x="48.9951%" y="639.50"></text></g><g><title>btrfs_get_64 (117 samples, 0.02%)</title><rect x="48.7608%" y="629" width="0.0242%" height="15" fill="rgb(238,189,16)" fg:x="235406" fg:w="117"/><text x="49.0108%" y="639.50"></text></g><g><title>__radix_tree_lookup (587 samples, 0.12%)</title><rect x="48.8343%" y="613" width="0.1216%" height="15" fill="rgb(251,186,8)" fg:x="235761" fg:w="587"/><text x="49.0843%" y="623.50"></text></g><g><title>check_buffer_tree_ref (52 samples, 0.01%)</title><rect x="48.9673%" y="597" width="0.0108%" height="15" fill="rgb(254,34,31)" fg:x="236403" fg:w="52"/><text x="49.2173%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (266 samples, 0.06%)</title><rect x="48.9564%" y="613" width="0.0551%" height="15" fill="rgb(225,215,27)" fg:x="236350" fg:w="266"/><text x="49.2064%" y="623.50"></text></g><g><title>mark_page_accessed (161 samples, 0.03%)</title><rect x="48.9781%" y="597" width="0.0333%" height="15" fill="rgb(221,192,48)" fg:x="236455" fg:w="161"/><text x="49.2281%" y="607.50"></text></g><g><title>find_extent_buffer (1,059 samples, 0.22%)</title><rect x="48.7946%" y="629" width="0.2194%" height="15" fill="rgb(219,137,20)" fg:x="235569" fg:w="1059"/><text x="49.0446%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,600 samples, 0.33%)</title><rect x="48.7155%" y="645" width="0.3314%" height="15" fill="rgb(219,84,11)" fg:x="235187" fg:w="1600"/><text x="48.9655%" y="655.50"></text></g><g><title>read_extent_buffer (159 samples, 0.03%)</title><rect x="49.0139%" y="629" width="0.0329%" height="15" fill="rgb(224,10,23)" fg:x="236628" fg:w="159"/><text x="49.2639%" y="639.50"></text></g><g><title>btrfs_get_64 (117 samples, 0.02%)</title><rect x="49.0709%" y="629" width="0.0242%" height="15" fill="rgb(248,22,39)" fg:x="236903" fg:w="117"/><text x="49.3209%" y="639.50"></text></g><g><title>__radix_tree_lookup (364 samples, 0.08%)</title><rect x="49.1241%" y="613" width="0.0754%" height="15" fill="rgb(212,154,20)" fg:x="237160" fg:w="364"/><text x="49.3741%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (216 samples, 0.04%)</title><rect x="49.1995%" y="613" width="0.0447%" height="15" fill="rgb(236,199,50)" fg:x="237524" fg:w="216"/><text x="49.4495%" y="623.50"></text></g><g><title>mark_page_accessed (140 samples, 0.03%)</title><rect x="49.2153%" y="597" width="0.0290%" height="15" fill="rgb(211,9,17)" fg:x="237600" fg:w="140"/><text x="49.4653%" y="607.50"></text></g><g><title>find_extent_buffer (726 samples, 0.15%)</title><rect x="49.0951%" y="629" width="0.1504%" height="15" fill="rgb(243,216,36)" fg:x="237020" fg:w="726"/><text x="49.3451%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (50 samples, 0.01%)</title><rect x="49.2461%" y="629" width="0.0104%" height="15" fill="rgb(250,2,10)" fg:x="237749" fg:w="50"/><text x="49.4961%" y="639.50"></text></g><g><title>reada_for_balance (1,056 samples, 0.22%)</title><rect x="49.0469%" y="645" width="0.2187%" height="15" fill="rgb(226,50,48)" fg:x="236787" fg:w="1056"/><text x="49.2969%" y="655.50"></text></g><g><title>release_extent_buffer (81 samples, 0.02%)</title><rect x="49.2656%" y="645" width="0.0168%" height="15" fill="rgb(243,81,16)" fg:x="237843" fg:w="81"/><text x="49.5156%" y="655.50"></text></g><g><title>btrfs_search_slot (5,449 samples, 1.13%)</title><rect x="48.1993%" y="661" width="1.1287%" height="15" fill="rgb(250,14,2)" fg:x="232695" fg:w="5449"/><text x="48.4493%" y="671.50"></text></g><g><title>unlock_up (220 samples, 0.05%)</title><rect x="49.2824%" y="645" width="0.0456%" height="15" fill="rgb(233,135,29)" fg:x="237924" fg:w="220"/><text x="49.5324%" y="655.50"></text></g><g><title>btrfs_tree_unlock (54 samples, 0.01%)</title><rect x="49.3168%" y="629" width="0.0112%" height="15" fill="rgb(224,64,43)" fg:x="238090" fg:w="54"/><text x="49.5668%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (6,073 samples, 1.26%)</title><rect x="48.0974%" y="677" width="1.2579%" height="15" fill="rgb(238,84,13)" fg:x="232203" fg:w="6073"/><text x="48.3474%" y="687.50"></text></g><g><title>crc32c (132 samples, 0.03%)</title><rect x="49.3280%" y="661" width="0.0273%" height="15" fill="rgb(253,48,26)" fg:x="238144" fg:w="132"/><text x="49.5780%" y="671.50"></text></g><g><title>crypto_shash_update (106 samples, 0.02%)</title><rect x="49.3333%" y="645" width="0.0220%" height="15" fill="rgb(205,223,31)" fg:x="238170" fg:w="106"/><text x="49.5833%" y="655.50"></text></g><g><title>btrfs_tree_unlock (77 samples, 0.02%)</title><rect x="49.3648%" y="661" width="0.0159%" height="15" fill="rgb(221,41,32)" fg:x="238322" fg:w="77"/><text x="49.6148%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (231 samples, 0.05%)</title><rect x="49.3830%" y="661" width="0.0478%" height="15" fill="rgb(213,158,31)" fg:x="238410" fg:w="231"/><text x="49.6330%" y="671.50"></text></g><g><title>_raw_spin_lock (188 samples, 0.04%)</title><rect x="49.3920%" y="645" width="0.0389%" height="15" fill="rgb(245,126,43)" fg:x="238453" fg:w="188"/><text x="49.6420%" y="655.50"></text></g><g><title>btrfs_release_path (555 samples, 0.11%)</title><rect x="49.3553%" y="677" width="0.1150%" height="15" fill="rgb(227,7,22)" fg:x="238276" fg:w="555"/><text x="49.6053%" y="687.50"></text></g><g><title>release_extent_buffer (190 samples, 0.04%)</title><rect x="49.4309%" y="661" width="0.0394%" height="15" fill="rgb(252,90,44)" fg:x="238641" fg:w="190"/><text x="49.6809%" y="671.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="49.5119%" y="629" width="0.0101%" height="15" fill="rgb(253,91,0)" fg:x="239032" fg:w="49"/><text x="49.7619%" y="639.50"></text></g><g><title>mutex_lock (62 samples, 0.01%)</title><rect x="49.5222%" y="629" width="0.0128%" height="15" fill="rgb(252,175,49)" fg:x="239082" fg:w="62"/><text x="49.7722%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (260 samples, 0.05%)</title><rect x="49.4926%" y="645" width="0.0539%" height="15" fill="rgb(246,150,1)" fg:x="238939" fg:w="260"/><text x="49.7426%" y="655.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="49.5351%" y="629" width="0.0114%" height="15" fill="rgb(241,192,25)" fg:x="239144" fg:w="55"/><text x="49.7851%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (97 samples, 0.02%)</title><rect x="49.5514%" y="645" width="0.0201%" height="15" fill="rgb(239,187,11)" fg:x="239223" fg:w="97"/><text x="49.8014%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (84 samples, 0.02%)</title><rect x="49.5541%" y="629" width="0.0174%" height="15" fill="rgb(218,202,51)" fg:x="239236" fg:w="84"/><text x="49.8041%" y="639.50"></text></g><g><title>inode_get_bytes (63 samples, 0.01%)</title><rect x="49.5794%" y="629" width="0.0130%" height="15" fill="rgb(225,176,8)" fg:x="239358" fg:w="63"/><text x="49.8294%" y="639.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="49.5811%" y="613" width="0.0114%" height="15" fill="rgb(219,122,41)" fg:x="239366" fg:w="55"/><text x="49.8311%" y="623.50"></text></g><g><title>fill_stack_inode_item (154 samples, 0.03%)</title><rect x="49.5715%" y="645" width="0.0319%" height="15" fill="rgb(248,140,20)" fg:x="239320" fg:w="154"/><text x="49.8215%" y="655.50"></text></g><g><title>map_id_up (53 samples, 0.01%)</title><rect x="49.5925%" y="629" width="0.0110%" height="15" fill="rgb(245,41,37)" fg:x="239421" fg:w="53"/><text x="49.8425%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (693 samples, 0.14%)</title><rect x="49.4854%" y="661" width="0.1435%" height="15" fill="rgb(235,82,39)" fg:x="238904" fg:w="693"/><text x="49.7354%" y="671.50"></text></g><g><title>mutex_unlock (78 samples, 0.02%)</title><rect x="49.6128%" y="645" width="0.0162%" height="15" fill="rgb(230,108,42)" fg:x="239519" fg:w="78"/><text x="49.8628%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="49.6329%" y="645" width="0.0135%" height="15" fill="rgb(215,150,50)" fg:x="239616" fg:w="65"/><text x="49.8829%" y="655.50"></text></g><g><title>btrfs_update_inode (955 samples, 0.20%)</title><rect x="49.4703%" y="677" width="0.1978%" height="15" fill="rgb(233,212,5)" fg:x="238831" fg:w="955"/><text x="49.7203%" y="687.50"></text></g><g><title>btrfs_update_root_times (189 samples, 0.04%)</title><rect x="49.6289%" y="661" width="0.0391%" height="15" fill="rgb(245,80,22)" fg:x="239597" fg:w="189"/><text x="49.8789%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (105 samples, 0.02%)</title><rect x="49.6463%" y="645" width="0.0217%" height="15" fill="rgb(238,129,16)" fg:x="239681" fg:w="105"/><text x="49.8963%" y="655.50"></text></g><g><title>read_tsc (61 samples, 0.01%)</title><rect x="49.6554%" y="629" width="0.0126%" height="15" fill="rgb(240,19,0)" fg:x="239725" fg:w="61"/><text x="49.9054%" y="639.50"></text></g><g><title>current_time (70 samples, 0.01%)</title><rect x="49.6681%" y="677" width="0.0145%" height="15" fill="rgb(232,42,35)" fg:x="239786" fg:w="70"/><text x="49.9181%" y="687.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="49.7000%" y="661" width="0.0114%" height="15" fill="rgb(223,130,24)" fg:x="239940" fg:w="55"/><text x="49.9500%" y="671.50"></text></g><g><title>kmem_cache_alloc (173 samples, 0.04%)</title><rect x="49.6826%" y="677" width="0.0358%" height="15" fill="rgb(237,16,22)" fg:x="239856" fg:w="173"/><text x="49.9326%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (28,721 samples, 5.95%)</title><rect x="43.7987%" y="693" width="5.9491%" height="15" fill="rgb(248,192,20)" fg:x="211450" fg:w="28721"/><text x="44.0487%" y="703.50">__btrfs_..</text></g><g><title>kmem_cache_free (142 samples, 0.03%)</title><rect x="49.7184%" y="677" width="0.0294%" height="15" fill="rgb(233,167,2)" fg:x="240029" fg:w="142"/><text x="49.9684%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (87 samples, 0.02%)</title><rect x="49.7480%" y="693" width="0.0180%" height="15" fill="rgb(252,71,44)" fg:x="240172" fg:w="87"/><text x="49.9980%" y="703.50"></text></g><g><title>btrfs_tree_unlock (60 samples, 0.01%)</title><rect x="49.7820%" y="629" width="0.0124%" height="15" fill="rgb(238,37,47)" fg:x="240336" fg:w="60"/><text x="50.0320%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (165 samples, 0.03%)</title><rect x="49.7957%" y="629" width="0.0342%" height="15" fill="rgb(214,202,54)" fg:x="240402" fg:w="165"/><text x="50.0457%" y="639.50"></text></g><g><title>_raw_spin_lock (143 samples, 0.03%)</title><rect x="49.8002%" y="613" width="0.0296%" height="15" fill="rgb(254,165,40)" fg:x="240424" fg:w="143"/><text x="50.0502%" y="623.50"></text></g><g><title>btrfs_free_path (488 samples, 0.10%)</title><rect x="49.7723%" y="661" width="0.1011%" height="15" fill="rgb(246,173,38)" fg:x="240289" fg:w="488"/><text x="50.0223%" y="671.50"></text></g><g><title>btrfs_release_path (482 samples, 0.10%)</title><rect x="49.7735%" y="645" width="0.0998%" height="15" fill="rgb(215,3,27)" fg:x="240295" fg:w="482"/><text x="50.0235%" y="655.50"></text></g><g><title>release_extent_buffer (210 samples, 0.04%)</title><rect x="49.8298%" y="629" width="0.0435%" height="15" fill="rgb(239,169,51)" fg:x="240567" fg:w="210"/><text x="50.0798%" y="639.50"></text></g><g><title>_raw_read_lock (51 samples, 0.01%)</title><rect x="49.9481%" y="597" width="0.0106%" height="15" fill="rgb(212,5,25)" fg:x="241138" fg:w="51"/><text x="50.1981%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (82 samples, 0.02%)</title><rect x="49.9433%" y="613" width="0.0170%" height="15" fill="rgb(243,45,17)" fg:x="241115" fg:w="82"/><text x="50.1933%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (171 samples, 0.04%)</title><rect x="49.9400%" y="629" width="0.0354%" height="15" fill="rgb(242,97,9)" fg:x="241099" fg:w="171"/><text x="50.1900%" y="639.50"></text></g><g><title>btrfs_root_node (73 samples, 0.02%)</title><rect x="49.9603%" y="613" width="0.0151%" height="15" fill="rgb(228,71,31)" fg:x="241197" fg:w="73"/><text x="50.2103%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (186 samples, 0.04%)</title><rect x="49.9806%" y="629" width="0.0385%" height="15" fill="rgb(252,184,16)" fg:x="241295" fg:w="186"/><text x="50.2306%" y="639.50"></text></g><g><title>leaf_space_used (154 samples, 0.03%)</title><rect x="49.9873%" y="613" width="0.0319%" height="15" fill="rgb(236,169,46)" fg:x="241327" fg:w="154"/><text x="50.2373%" y="623.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="49.9976%" y="597" width="0.0215%" height="15" fill="rgb(207,17,47)" fg:x="241377" fg:w="104"/><text x="50.2476%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (74 samples, 0.02%)</title><rect x="50.0192%" y="629" width="0.0153%" height="15" fill="rgb(206,201,28)" fg:x="241481" fg:w="74"/><text x="50.2692%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (127 samples, 0.03%)</title><rect x="50.0345%" y="629" width="0.0263%" height="15" fill="rgb(224,184,23)" fg:x="241555" fg:w="127"/><text x="50.2845%" y="639.50"></text></g><g><title>_raw_write_lock (102 samples, 0.02%)</title><rect x="50.0397%" y="613" width="0.0211%" height="15" fill="rgb(208,139,48)" fg:x="241580" fg:w="102"/><text x="50.2897%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (654 samples, 0.14%)</title><rect x="50.0608%" y="629" width="0.1355%" height="15" fill="rgb(208,130,10)" fg:x="241682" fg:w="654"/><text x="50.3108%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (63 samples, 0.01%)</title><rect x="50.2277%" y="613" width="0.0130%" height="15" fill="rgb(211,213,45)" fg:x="242488" fg:w="63"/><text x="50.4777%" y="623.50"></text></g><g><title>btrfs_get_64 (143 samples, 0.03%)</title><rect x="50.2408%" y="613" width="0.0296%" height="15" fill="rgb(235,100,30)" fg:x="242551" fg:w="143"/><text x="50.4908%" y="623.50"></text></g><g><title>__radix_tree_lookup (507 samples, 0.11%)</title><rect x="50.3197%" y="597" width="0.1050%" height="15" fill="rgb(206,144,31)" fg:x="242932" fg:w="507"/><text x="50.5697%" y="607.50"></text></g><g><title>check_buffer_tree_ref (55 samples, 0.01%)</title><rect x="50.4347%" y="581" width="0.0114%" height="15" fill="rgb(224,200,26)" fg:x="243487" fg:w="55"/><text x="50.6847%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (264 samples, 0.05%)</title><rect x="50.4251%" y="597" width="0.0547%" height="15" fill="rgb(247,104,53)" fg:x="243441" fg:w="264"/><text x="50.6751%" y="607.50"></text></g><g><title>mark_page_accessed (163 samples, 0.03%)</title><rect x="50.4461%" y="581" width="0.0338%" height="15" fill="rgb(220,14,17)" fg:x="243542" fg:w="163"/><text x="50.6961%" y="591.50"></text></g><g><title>find_extent_buffer (962 samples, 0.20%)</title><rect x="50.2826%" y="613" width="0.1993%" height="15" fill="rgb(230,140,40)" fg:x="242753" fg:w="962"/><text x="50.5326%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,518 samples, 0.31%)</title><rect x="50.1963%" y="629" width="0.3144%" height="15" fill="rgb(229,2,41)" fg:x="242336" fg:w="1518"/><text x="50.4463%" y="639.50"></text></g><g><title>read_extent_buffer (139 samples, 0.03%)</title><rect x="50.4819%" y="613" width="0.0288%" height="15" fill="rgb(232,89,16)" fg:x="243715" fg:w="139"/><text x="50.7319%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (62 samples, 0.01%)</title><rect x="50.5480%" y="613" width="0.0128%" height="15" fill="rgb(247,59,52)" fg:x="244034" fg:w="62"/><text x="50.7980%" y="623.50"></text></g><g><title>btrfs_search_slot (3,296 samples, 0.68%)</title><rect x="49.8798%" y="645" width="0.6827%" height="15" fill="rgb(226,110,21)" fg:x="240808" fg:w="3296"/><text x="50.1298%" y="655.50"></text></g><g><title>unlock_up (250 samples, 0.05%)</title><rect x="50.5107%" y="629" width="0.0518%" height="15" fill="rgb(224,176,43)" fg:x="243854" fg:w="250"/><text x="50.7607%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (265 samples, 0.05%)</title><rect x="50.6170%" y="629" width="0.0549%" height="15" fill="rgb(221,73,6)" fg:x="244367" fg:w="265"/><text x="50.8670%" y="639.50"></text></g><g><title>leaf_space_used (230 samples, 0.05%)</title><rect x="50.6242%" y="613" width="0.0476%" height="15" fill="rgb(232,78,19)" fg:x="244402" fg:w="230"/><text x="50.8742%" y="623.50"></text></g><g><title>btrfs_get_32 (155 samples, 0.03%)</title><rect x="50.6397%" y="597" width="0.0321%" height="15" fill="rgb(233,112,48)" fg:x="244477" fg:w="155"/><text x="50.8897%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (142 samples, 0.03%)</title><rect x="50.6718%" y="629" width="0.0294%" height="15" fill="rgb(243,131,47)" fg:x="244632" fg:w="142"/><text x="50.9218%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (97 samples, 0.02%)</title><rect x="50.6812%" y="613" width="0.0201%" height="15" fill="rgb(226,51,1)" fg:x="244677" fg:w="97"/><text x="50.9312%" y="623.50"></text></g><g><title>btrfs_set_token_32 (90 samples, 0.02%)</title><rect x="50.7013%" y="629" width="0.0186%" height="15" fill="rgb(247,58,7)" fg:x="244774" fg:w="90"/><text x="50.9513%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (53 samples, 0.01%)</title><rect x="50.7199%" y="629" width="0.0110%" height="15" fill="rgb(209,7,32)" fg:x="244864" fg:w="53"/><text x="50.9699%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (4,277 samples, 0.89%)</title><rect x="49.8733%" y="661" width="0.8859%" height="15" fill="rgb(209,39,41)" fg:x="240777" fg:w="4277"/><text x="50.1233%" y="671.50"></text></g><g><title>setup_items_for_insert (950 samples, 0.20%)</title><rect x="50.5625%" y="645" width="0.1968%" height="15" fill="rgb(226,182,46)" fg:x="244104" fg:w="950"/><text x="50.8125%" y="655.50"></text></g><g><title>write_extent_buffer (135 samples, 0.03%)</title><rect x="50.7313%" y="629" width="0.0280%" height="15" fill="rgb(230,219,10)" fg:x="244919" fg:w="135"/><text x="50.9813%" y="639.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="50.7706%" y="645" width="0.0112%" height="15" fill="rgb(227,175,30)" fg:x="245109" fg:w="54"/><text x="51.0206%" y="655.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.03%)</title><rect x="50.7593%" y="661" width="0.0304%" height="15" fill="rgb(217,2,50)" fg:x="245054" fg:w="147"/><text x="51.0093%" y="671.50"></text></g><g><title>btrfs_orphan_add (5,060 samples, 1.05%)</title><rect x="49.7671%" y="693" width="1.0481%" height="15" fill="rgb(229,160,0)" fg:x="240264" fg:w="5060"/><text x="50.0171%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (5,050 samples, 1.05%)</title><rect x="49.7691%" y="677" width="1.0460%" height="15" fill="rgb(207,78,37)" fg:x="240274" fg:w="5050"/><text x="50.0191%" y="687.50"></text></g><g><title>kmem_cache_free (123 samples, 0.03%)</title><rect x="50.7897%" y="661" width="0.0255%" height="15" fill="rgb(225,57,0)" fg:x="245201" fg:w="123"/><text x="51.0397%" y="671.50"></text></g><g><title>mutex_lock (127 samples, 0.03%)</title><rect x="50.8179%" y="677" width="0.0263%" height="15" fill="rgb(232,154,2)" fg:x="245337" fg:w="127"/><text x="51.0679%" y="687.50"></text></g><g><title>btrfs_record_unlink_dir (249 samples, 0.05%)</title><rect x="50.8152%" y="693" width="0.0516%" height="15" fill="rgb(241,212,25)" fg:x="245324" fg:w="249"/><text x="51.0652%" y="703.50"></text></g><g><title>mutex_unlock (109 samples, 0.02%)</title><rect x="50.8442%" y="677" width="0.0226%" height="15" fill="rgb(226,69,20)" fg:x="245464" fg:w="109"/><text x="51.0942%" y="687.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="50.8742%" y="677" width="0.0116%" height="15" fill="rgb(247,184,54)" fg:x="245609" fg:w="56"/><text x="51.1242%" y="687.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="50.9415%" y="645" width="0.0106%" height="15" fill="rgb(210,145,0)" fg:x="245934" fg:w="51"/><text x="51.1915%" y="655.50"></text></g><g><title>mutex_lock (78 samples, 0.02%)</title><rect x="50.9523%" y="645" width="0.0162%" height="15" fill="rgb(253,82,12)" fg:x="245986" fg:w="78"/><text x="51.2023%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (299 samples, 0.06%)</title><rect x="50.9194%" y="661" width="0.0619%" height="15" fill="rgb(245,42,11)" fg:x="245827" fg:w="299"/><text x="51.1694%" y="671.50"></text></g><g><title>mutex_unlock (62 samples, 0.01%)</title><rect x="50.9685%" y="645" width="0.0128%" height="15" fill="rgb(219,147,32)" fg:x="246064" fg:w="62"/><text x="51.2185%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (165 samples, 0.03%)</title><rect x="50.9813%" y="661" width="0.0342%" height="15" fill="rgb(246,12,7)" fg:x="246126" fg:w="165"/><text x="51.2313%" y="671.50"></text></g><g><title>_raw_spin_lock (129 samples, 0.03%)</title><rect x="50.9888%" y="645" width="0.0267%" height="15" fill="rgb(243,50,9)" fg:x="246162" fg:w="129"/><text x="51.2388%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (76 samples, 0.02%)</title><rect x="51.0155%" y="661" width="0.0157%" height="15" fill="rgb(219,149,6)" fg:x="246291" fg:w="76"/><text x="51.2655%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (63 samples, 0.01%)</title><rect x="51.0182%" y="645" width="0.0130%" height="15" fill="rgb(241,51,42)" fg:x="246304" fg:w="63"/><text x="51.2682%" y="655.50"></text></g><g><title>inode_get_bytes (79 samples, 0.02%)</title><rect x="51.0416%" y="645" width="0.0164%" height="15" fill="rgb(226,128,27)" fg:x="246417" fg:w="79"/><text x="51.2916%" y="655.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="51.0441%" y="629" width="0.0139%" height="15" fill="rgb(244,144,4)" fg:x="246429" fg:w="67"/><text x="51.2941%" y="639.50"></text></g><g><title>fill_stack_inode_item (168 samples, 0.03%)</title><rect x="51.0312%" y="661" width="0.0348%" height="15" fill="rgb(221,4,13)" fg:x="246367" fg:w="168"/><text x="51.2812%" y="671.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="51.0660%" y="661" width="0.0112%" height="15" fill="rgb(208,170,28)" fg:x="246535" fg:w="54"/><text x="51.3160%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (975 samples, 0.20%)</title><rect x="50.8860%" y="677" width="0.2020%" height="15" fill="rgb(226,131,13)" fg:x="245666" fg:w="975"/><text x="51.1360%" y="687.50"></text></g><g><title>mutex_unlock (52 samples, 0.01%)</title><rect x="51.0772%" y="661" width="0.0108%" height="15" fill="rgb(215,72,41)" fg:x="246589" fg:w="52"/><text x="51.3272%" y="671.50"></text></g><g><title>btrfs_update_inode (1,230 samples, 0.25%)</title><rect x="50.8670%" y="693" width="0.2548%" height="15" fill="rgb(243,108,20)" fg:x="245574" fg:w="1230"/><text x="51.1170%" y="703.50"></text></g><g><title>btrfs_update_root_times (163 samples, 0.03%)</title><rect x="51.0880%" y="677" width="0.0338%" height="15" fill="rgb(230,189,17)" fg:x="246641" fg:w="163"/><text x="51.3380%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (103 samples, 0.02%)</title><rect x="51.1004%" y="661" width="0.0213%" height="15" fill="rgb(220,50,17)" fg:x="246701" fg:w="103"/><text x="51.3504%" y="671.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="51.1087%" y="645" width="0.0130%" height="15" fill="rgb(248,152,48)" fg:x="246741" fg:w="63"/><text x="51.3587%" y="655.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="51.1688%" y="661" width="0.0137%" height="15" fill="rgb(244,91,11)" fg:x="247031" fg:w="66"/><text x="51.4188%" y="671.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="51.1971%" y="629" width="0.0211%" height="15" fill="rgb(220,157,5)" fg:x="247168" fg:w="102"/><text x="51.4471%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (423 samples, 0.09%)</title><rect x="51.2183%" y="629" width="0.0876%" height="15" fill="rgb(253,137,8)" fg:x="247270" fg:w="423"/><text x="51.4683%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (251 samples, 0.05%)</title><rect x="51.2539%" y="613" width="0.0520%" height="15" fill="rgb(217,137,51)" fg:x="247442" fg:w="251"/><text x="51.5039%" y="623.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="51.2823%" y="597" width="0.0236%" height="15" fill="rgb(218,209,53)" fg:x="247579" fg:w="114"/><text x="51.5323%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (914 samples, 0.19%)</title><rect x="51.1663%" y="677" width="0.1893%" height="15" fill="rgb(249,137,25)" fg:x="247019" fg:w="914"/><text x="51.4163%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (836 samples, 0.17%)</title><rect x="51.1824%" y="661" width="0.1732%" height="15" fill="rgb(239,155,26)" fg:x="247097" fg:w="836"/><text x="51.4324%" y="671.50"></text></g><g><title>__reserve_bytes (826 samples, 0.17%)</title><rect x="51.1845%" y="645" width="0.1711%" height="15" fill="rgb(227,85,46)" fg:x="247107" fg:w="826"/><text x="51.4345%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (240 samples, 0.05%)</title><rect x="51.3059%" y="629" width="0.0497%" height="15" fill="rgb(251,107,43)" fg:x="247693" fg:w="240"/><text x="51.5559%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (127 samples, 0.03%)</title><rect x="51.3293%" y="613" width="0.0263%" height="15" fill="rgb(234,170,33)" fg:x="247806" fg:w="127"/><text x="51.5793%" y="623.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="51.3442%" y="597" width="0.0114%" height="15" fill="rgb(206,29,35)" fg:x="247878" fg:w="55"/><text x="51.5942%" y="607.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.02%)</title><rect x="51.3945%" y="661" width="0.0151%" height="15" fill="rgb(227,138,25)" fg:x="248121" fg:w="73"/><text x="51.6445%" y="671.50"></text></g><g><title>join_transaction (256 samples, 0.05%)</title><rect x="51.3568%" y="677" width="0.0530%" height="15" fill="rgb(249,131,35)" fg:x="247939" fg:w="256"/><text x="51.6068%" y="687.50"></text></g><g><title>kmem_cache_alloc (170 samples, 0.04%)</title><rect x="51.4099%" y="677" width="0.0352%" height="15" fill="rgb(239,6,40)" fg:x="248195" fg:w="170"/><text x="51.6599%" y="687.50"></text></g><g><title>btrfs_unlink (37,640 samples, 7.80%)</title><rect x="43.6661%" y="709" width="7.7966%" height="15" fill="rgb(246,136,47)" fg:x="210810" fg:w="37640"/><text x="43.9161%" y="719.50">btrfs_unlink</text></g><g><title>start_transaction (1,605 samples, 0.33%)</title><rect x="51.1302%" y="693" width="0.3325%" height="15" fill="rgb(253,58,26)" fg:x="246845" fg:w="1605"/><text x="51.3802%" y="703.50"></text></g><g><title>wait_current_trans (85 samples, 0.02%)</title><rect x="51.4451%" y="677" width="0.0176%" height="15" fill="rgb(237,141,10)" fg:x="248365" fg:w="85"/><text x="51.6951%" y="687.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="51.4507%" y="661" width="0.0120%" height="15" fill="rgb(234,156,12)" fg:x="248392" fg:w="58"/><text x="51.7007%" y="671.50"></text></g><g><title>d_delete (117 samples, 0.02%)</title><rect x="51.4627%" y="709" width="0.0242%" height="15" fill="rgb(243,224,36)" fg:x="248450" fg:w="117"/><text x="51.7127%" y="719.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="51.4674%" y="693" width="0.0195%" height="15" fill="rgb(205,229,51)" fg:x="248473" fg:w="94"/><text x="51.7174%" y="703.50"></text></g><g><title>__srcu_read_lock (102 samples, 0.02%)</title><rect x="51.5141%" y="661" width="0.0211%" height="15" fill="rgb(223,189,4)" fg:x="248698" fg:w="102"/><text x="51.7641%" y="671.50"></text></g><g><title>dentry_unlink_inode (285 samples, 0.06%)</title><rect x="51.4869%" y="709" width="0.0590%" height="15" fill="rgb(249,167,54)" fg:x="248567" fg:w="285"/><text x="51.7369%" y="719.50"></text></g><g><title>fsnotify_destroy_marks (183 samples, 0.04%)</title><rect x="51.5080%" y="693" width="0.0379%" height="15" fill="rgb(218,34,28)" fg:x="248669" fg:w="183"/><text x="51.7580%" y="703.50"></text></g><g><title>fsnotify_grab_connector (169 samples, 0.04%)</title><rect x="51.5109%" y="677" width="0.0350%" height="15" fill="rgb(232,109,42)" fg:x="248683" fg:w="169"/><text x="51.7609%" y="687.50"></text></g><g><title>__srcu_read_unlock (52 samples, 0.01%)</title><rect x="51.5352%" y="661" width="0.0108%" height="15" fill="rgb(248,214,46)" fg:x="248800" fg:w="52"/><text x="51.7852%" y="671.50"></text></g><g><title>down_write (350 samples, 0.07%)</title><rect x="51.5460%" y="709" width="0.0725%" height="15" fill="rgb(244,216,40)" fg:x="248852" fg:w="350"/><text x="51.7960%" y="719.50"></text></g><g><title>fsnotify (227 samples, 0.05%)</title><rect x="51.6184%" y="709" width="0.0470%" height="15" fill="rgb(231,226,31)" fg:x="249202" fg:w="227"/><text x="51.8684%" y="719.50"></text></g><g><title>ihold (60 samples, 0.01%)</title><rect x="51.6655%" y="709" width="0.0124%" height="15" fill="rgb(238,38,43)" fg:x="249429" fg:w="60"/><text x="51.9155%" y="719.50"></text></g><g><title>iput.part.0 (124 samples, 0.03%)</title><rect x="51.6793%" y="709" width="0.0257%" height="15" fill="rgb(208,88,43)" fg:x="249496" fg:w="124"/><text x="51.9293%" y="719.50"></text></g><g><title>_atomic_dec_and_lock (111 samples, 0.02%)</title><rect x="51.6820%" y="693" width="0.0230%" height="15" fill="rgb(205,136,37)" fg:x="249509" fg:w="111"/><text x="51.9320%" y="703.50"></text></g><g><title>inode_permission.part.0 (66 samples, 0.01%)</title><rect x="51.7137%" y="693" width="0.0137%" height="15" fill="rgb(237,34,14)" fg:x="249662" fg:w="66"/><text x="51.9637%" y="703.50"></text></g><g><title>may_delete (117 samples, 0.02%)</title><rect x="51.7050%" y="709" width="0.0242%" height="15" fill="rgb(236,193,44)" fg:x="249620" fg:w="117"/><text x="51.9550%" y="719.50"></text></g><g><title>do_unlinkat (95,694 samples, 19.82%)</title><rect x="31.9265%" y="741" width="19.8216%" height="15" fill="rgb(231,48,10)" fg:x="154134" fg:w="95694"/><text x="32.1765%" y="751.50">do_unlinkat</text></g><g><title>vfs_unlink (39,215 samples, 8.12%)</title><rect x="43.6253%" y="725" width="8.1228%" height="15" fill="rgb(213,141,34)" fg:x="210613" fg:w="39215"/><text x="43.8753%" y="735.50">vfs_unlink</text></g><g><title>up_write (81 samples, 0.02%)</title><rect x="51.7313%" y="709" width="0.0168%" height="15" fill="rgb(249,130,34)" fg:x="249747" fg:w="81"/><text x="51.9813%" y="719.50"></text></g><g><title>do_syscall_64 (107,696 samples, 22.31%)</title><rect x="29.4438%" y="757" width="22.3076%" height="15" fill="rgb(219,42,41)" fg:x="142148" fg:w="107696"/><text x="29.6938%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (107,801 samples, 22.33%)</title><rect x="29.4366%" y="773" width="22.3294%" height="15" fill="rgb(224,100,54)" fg:x="142113" fg:w="107801"/><text x="29.6866%" y="783.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (70 samples, 0.01%)</title><rect x="51.7514%" y="757" width="0.0145%" height="15" fill="rgb(229,200,27)" fg:x="249844" fg:w="70"/><text x="52.0014%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (57 samples, 0.01%)</title><rect x="51.7541%" y="741" width="0.0118%" height="15" fill="rgb(217,118,10)" fg:x="249857" fg:w="57"/><text x="52.0041%" y="751.50"></text></g><g><title>syscall_return_via_sysret (90 samples, 0.02%)</title><rect x="51.7680%" y="773" width="0.0186%" height="15" fill="rgb(206,22,3)" fg:x="249924" fg:w="90"/><text x="52.0180%" y="783.50"></text></g><g><title>__GI_unlinkat (108,344 samples, 22.44%)</title><rect x="29.3454%" y="789" width="22.4418%" height="15" fill="rgb(232,163,46)" fg:x="141673" fg:w="108344"/><text x="29.5954%" y="799.50">__GI_unlinkat</text></g><g><title>__closedir (72 samples, 0.01%)</title><rect x="51.7885%" y="789" width="0.0149%" height="15" fill="rgb(206,95,13)" fg:x="250023" fg:w="72"/><text x="52.0385%" y="799.50"></text></g><g><title>_int_free (61 samples, 0.01%)</title><rect x="51.7908%" y="773" width="0.0126%" height="15" fill="rgb(253,154,18)" fg:x="250034" fg:w="61"/><text x="52.0408%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (49 samples, 0.01%)</title><rect x="51.8105%" y="773" width="0.0101%" height="15" fill="rgb(219,32,23)" fg:x="250129" fg:w="49"/><text x="52.0605%" y="783.50"></text></g><g><title>__fcntl64_nocancel_adjusted (49 samples, 0.01%)</title><rect x="51.8105%" y="757" width="0.0101%" height="15" fill="rgb(230,191,45)" fg:x="250129" fg:w="49"/><text x="52.0605%" y="767.50"></text></g><g><title>btrfs_getattr (60 samples, 0.01%)</title><rect x="51.8376%" y="693" width="0.0124%" height="15" fill="rgb(229,64,36)" fg:x="250260" fg:w="60"/><text x="52.0876%" y="703.50"></text></g><g><title>do_syscall_64 (146 samples, 0.03%)</title><rect x="51.8264%" y="741" width="0.0302%" height="15" fill="rgb(205,129,25)" fg:x="250206" fg:w="146"/><text x="52.0764%" y="751.50"></text></g><g><title>__do_sys_newfstat (139 samples, 0.03%)</title><rect x="51.8279%" y="725" width="0.0288%" height="15" fill="rgb(254,112,7)" fg:x="250213" fg:w="139"/><text x="52.0779%" y="735.50"></text></g><g><title>vfs_fstat (99 samples, 0.02%)</title><rect x="51.8361%" y="709" width="0.0205%" height="15" fill="rgb(226,53,48)" fg:x="250253" fg:w="99"/><text x="52.0861%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (154 samples, 0.03%)</title><rect x="51.8250%" y="757" width="0.0319%" height="15" fill="rgb(214,153,38)" fg:x="250199" fg:w="154"/><text x="52.0750%" y="767.50"></text></g><g><title>__GI___fxstat (180 samples, 0.04%)</title><rect x="51.8206%" y="773" width="0.0373%" height="15" fill="rgb(243,101,7)" fg:x="250178" fg:w="180"/><text x="52.0706%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (52 samples, 0.01%)</title><rect x="51.8583%" y="757" width="0.0108%" height="15" fill="rgb(240,140,22)" fg:x="250360" fg:w="52"/><text x="52.1083%" y="767.50"></text></g><g><title>__fcntl64_nocancel_adjusted (49 samples, 0.01%)</title><rect x="51.8589%" y="741" width="0.0101%" height="15" fill="rgb(235,114,2)" fg:x="250363" fg:w="49"/><text x="52.1089%" y="751.50"></text></g><g><title>__GI___libc_malloc (110 samples, 0.02%)</title><rect x="51.8691%" y="757" width="0.0228%" height="15" fill="rgb(242,59,12)" fg:x="250412" fg:w="110"/><text x="52.1191%" y="767.50"></text></g><g><title>_int_malloc (80 samples, 0.02%)</title><rect x="51.8753%" y="741" width="0.0166%" height="15" fill="rgb(252,134,9)" fg:x="250442" fg:w="80"/><text x="52.1253%" y="751.50"></text></g><g><title>__fdopendir (397 samples, 0.08%)</title><rect x="51.8100%" y="789" width="0.0822%" height="15" fill="rgb(236,4,44)" fg:x="250127" fg:w="397"/><text x="52.0600%" y="799.50"></text></g><g><title>__alloc_dir (166 samples, 0.03%)</title><rect x="51.8579%" y="773" width="0.0344%" height="15" fill="rgb(254,172,41)" fg:x="250358" fg:w="166"/><text x="52.1079%" y="783.50"></text></g><g><title>kmem_cache_alloc (126 samples, 0.03%)</title><rect x="51.9350%" y="645" width="0.0261%" height="15" fill="rgb(244,63,20)" fg:x="250730" fg:w="126"/><text x="52.1850%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (50 samples, 0.01%)</title><rect x="51.9507%" y="629" width="0.0104%" height="15" fill="rgb(250,73,31)" fg:x="250806" fg:w="50"/><text x="52.2007%" y="639.50"></text></g><g><title>__alloc_file (178 samples, 0.04%)</title><rect x="51.9318%" y="661" width="0.0369%" height="15" fill="rgb(241,38,36)" fg:x="250715" fg:w="178"/><text x="52.1818%" y="671.50"></text></g><g><title>alloc_empty_file (193 samples, 0.04%)</title><rect x="51.9298%" y="677" width="0.0400%" height="15" fill="rgb(245,211,2)" fg:x="250705" fg:w="193"/><text x="52.1798%" y="687.50"></text></g><g><title>btrfs_opendir (107 samples, 0.02%)</title><rect x="51.9836%" y="661" width="0.0222%" height="15" fill="rgb(206,120,28)" fg:x="250965" fg:w="107"/><text x="52.2336%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (100 samples, 0.02%)</title><rect x="51.9851%" y="645" width="0.0207%" height="15" fill="rgb(211,59,34)" fg:x="250972" fg:w="100"/><text x="52.2351%" y="655.50"></text></g><g><title>security_file_open (68 samples, 0.01%)</title><rect x="52.0135%" y="661" width="0.0141%" height="15" fill="rgb(233,168,5)" fg:x="251109" fg:w="68"/><text x="52.2635%" y="671.50"></text></g><g><title>do_dentry_open (266 samples, 0.06%)</title><rect x="51.9726%" y="677" width="0.0551%" height="15" fill="rgb(234,33,13)" fg:x="250912" fg:w="266"/><text x="52.2226%" y="687.50"></text></g><g><title>lookup_fast (84 samples, 0.02%)</title><rect x="52.0306%" y="677" width="0.0174%" height="15" fill="rgb(231,150,26)" fg:x="251192" fg:w="84"/><text x="52.2806%" y="687.50"></text></g><g><title>__d_lookup_rcu (80 samples, 0.02%)</title><rect x="52.0315%" y="661" width="0.0166%" height="15" fill="rgb(217,191,4)" fg:x="251196" fg:w="80"/><text x="52.2815%" y="671.50"></text></g><g><title>do_filp_open (683 samples, 0.14%)</title><rect x="51.9240%" y="709" width="0.1415%" height="15" fill="rgb(246,198,38)" fg:x="250677" fg:w="683"/><text x="52.1740%" y="719.50"></text></g><g><title>path_openat (671 samples, 0.14%)</title><rect x="51.9265%" y="693" width="0.1390%" height="15" fill="rgb(245,64,37)" fg:x="250689" fg:w="671"/><text x="52.1765%" y="703.50"></text></g><g><title>getname_flags.part.0 (94 samples, 0.02%)</title><rect x="52.0702%" y="709" width="0.0195%" height="15" fill="rgb(250,30,36)" fg:x="251383" fg:w="94"/><text x="52.3202%" y="719.50"></text></g><g><title>do_syscall_64 (905 samples, 0.19%)</title><rect x="51.9053%" y="757" width="0.1875%" height="15" fill="rgb(217,86,53)" fg:x="250587" fg:w="905"/><text x="52.1553%" y="767.50"></text></g><g><title>__x64_sys_openat (895 samples, 0.19%)</title><rect x="51.9074%" y="741" width="0.1854%" height="15" fill="rgb(228,157,16)" fg:x="250597" fg:w="895"/><text x="52.1574%" y="751.50"></text></g><g><title>do_sys_openat2 (886 samples, 0.18%)</title><rect x="51.9093%" y="725" width="0.1835%" height="15" fill="rgb(217,59,31)" fg:x="250606" fg:w="886"/><text x="52.1593%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (914 samples, 0.19%)</title><rect x="51.9045%" y="773" width="0.1893%" height="15" fill="rgb(237,138,41)" fg:x="250583" fg:w="914"/><text x="52.1545%" y="783.50"></text></g><g><title>__libc_openat64 (963 samples, 0.20%)</title><rect x="51.8958%" y="789" width="0.1995%" height="15" fill="rgb(227,91,49)" fg:x="250541" fg:w="963"/><text x="52.1458%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (159 samples, 0.03%)</title><rect x="52.1379%" y="773" width="0.0329%" height="15" fill="rgb(247,21,44)" fg:x="251710" fg:w="159"/><text x="52.3879%" y="783.50"></text></g><g><title>__list_add_valid (50 samples, 0.01%)</title><rect x="52.2693%" y="677" width="0.0104%" height="15" fill="rgb(219,210,51)" fg:x="252344" fg:w="50"/><text x="52.5193%" y="687.50"></text></g><g><title>_raw_spin_lock (104 samples, 0.02%)</title><rect x="52.2796%" y="677" width="0.0215%" height="15" fill="rgb(209,140,6)" fg:x="252394" fg:w="104"/><text x="52.5296%" y="687.50"></text></g><g><title>d_lru_add (446 samples, 0.09%)</title><rect x="52.2220%" y="709" width="0.0924%" height="15" fill="rgb(221,188,24)" fg:x="252116" fg:w="446"/><text x="52.4720%" y="719.50"></text></g><g><title>list_lru_add (425 samples, 0.09%)</title><rect x="52.2264%" y="693" width="0.0880%" height="15" fill="rgb(232,154,20)" fg:x="252137" fg:w="425"/><text x="52.4764%" y="703.50"></text></g><g><title>mem_cgroup_from_obj (63 samples, 0.01%)</title><rect x="52.3014%" y="677" width="0.0130%" height="15" fill="rgb(244,137,50)" fg:x="252499" fg:w="63"/><text x="52.5514%" y="687.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="52.3316%" y="693" width="0.0122%" height="15" fill="rgb(225,185,43)" fg:x="252645" fg:w="59"/><text x="52.5816%" y="703.50"></text></g><g><title>lockref_put_or_lock (143 samples, 0.03%)</title><rect x="52.3144%" y="709" width="0.0296%" height="15" fill="rgb(213,205,38)" fg:x="252562" fg:w="143"/><text x="52.5644%" y="719.50"></text></g><g><title>dput (699 samples, 0.14%)</title><rect x="52.1999%" y="725" width="0.1448%" height="15" fill="rgb(236,73,12)" fg:x="252009" fg:w="699"/><text x="52.4499%" y="735.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (65 samples, 0.01%)</title><rect x="52.3882%" y="629" width="0.0135%" height="15" fill="rgb(235,219,13)" fg:x="252918" fg:w="65"/><text x="52.6382%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (283 samples, 0.06%)</title><rect x="52.4033%" y="629" width="0.0586%" height="15" fill="rgb(218,59,36)" fg:x="252991" fg:w="283"/><text x="52.6533%" y="639.50"></text></g><g><title>_raw_spin_lock (212 samples, 0.04%)</title><rect x="52.4180%" y="613" width="0.0439%" height="15" fill="rgb(205,110,39)" fg:x="253062" fg:w="212"/><text x="52.6680%" y="623.50"></text></g><g><title>btrfs_free_path (596 samples, 0.12%)</title><rect x="52.3753%" y="661" width="0.1235%" height="15" fill="rgb(218,206,42)" fg:x="252856" fg:w="596"/><text x="52.6253%" y="671.50"></text></g><g><title>btrfs_release_path (581 samples, 0.12%)</title><rect x="52.3784%" y="645" width="0.1203%" height="15" fill="rgb(248,125,24)" fg:x="252871" fg:w="581"/><text x="52.6284%" y="655.50"></text></g><g><title>release_extent_buffer (178 samples, 0.04%)</title><rect x="52.4619%" y="629" width="0.0369%" height="15" fill="rgb(242,28,27)" fg:x="253274" fg:w="178"/><text x="52.7119%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (84 samples, 0.02%)</title><rect x="52.5800%" y="613" width="0.0174%" height="15" fill="rgb(216,228,15)" fg:x="253844" fg:w="84"/><text x="52.8300%" y="623.50"></text></g><g><title>_raw_read_lock (55 samples, 0.01%)</title><rect x="52.5860%" y="597" width="0.0114%" height="15" fill="rgb(235,116,46)" fg:x="253873" fg:w="55"/><text x="52.8360%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (276 samples, 0.06%)</title><rect x="52.5754%" y="629" width="0.0572%" height="15" fill="rgb(224,18,32)" fg:x="253822" fg:w="276"/><text x="52.8254%" y="639.50"></text></g><g><title>btrfs_root_node (170 samples, 0.04%)</title><rect x="52.5974%" y="613" width="0.0352%" height="15" fill="rgb(252,5,12)" fg:x="253928" fg:w="170"/><text x="52.8474%" y="623.50"></text></g><g><title>dequeue_task_fair (64 samples, 0.01%)</title><rect x="52.6477%" y="581" width="0.0133%" height="15" fill="rgb(251,36,5)" fg:x="254171" fg:w="64"/><text x="52.8977%" y="591.50"></text></g><g><title>dequeue_entity (60 samples, 0.01%)</title><rect x="52.6485%" y="565" width="0.0124%" height="15" fill="rgb(217,53,14)" fg:x="254175" fg:w="60"/><text x="52.8985%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (205 samples, 0.04%)</title><rect x="52.6326%" y="629" width="0.0425%" height="15" fill="rgb(215,86,45)" fg:x="254098" fg:w="205"/><text x="52.8826%" y="639.50"></text></g><g><title>schedule (157 samples, 0.03%)</title><rect x="52.6425%" y="613" width="0.0325%" height="15" fill="rgb(242,169,11)" fg:x="254146" fg:w="157"/><text x="52.8925%" y="623.50"></text></g><g><title>__schedule (157 samples, 0.03%)</title><rect x="52.6425%" y="597" width="0.0325%" height="15" fill="rgb(211,213,45)" fg:x="254146" fg:w="157"/><text x="52.8925%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (192 samples, 0.04%)</title><rect x="52.6837%" y="629" width="0.0398%" height="15" fill="rgb(205,88,11)" fg:x="254345" fg:w="192"/><text x="52.9337%" y="639.50"></text></g><g><title>btrfs_set_lock_blocking_read (130 samples, 0.03%)</title><rect x="52.6966%" y="613" width="0.0269%" height="15" fill="rgb(252,69,26)" fg:x="254407" fg:w="130"/><text x="52.9466%" y="623.50"></text></g><g><title>_raw_read_lock (141 samples, 0.03%)</title><rect x="52.7308%" y="613" width="0.0292%" height="15" fill="rgb(246,123,37)" fg:x="254572" fg:w="141"/><text x="52.9808%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (307 samples, 0.06%)</title><rect x="52.7235%" y="629" width="0.0636%" height="15" fill="rgb(212,205,5)" fg:x="254537" fg:w="307"/><text x="52.9735%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (131 samples, 0.03%)</title><rect x="52.7600%" y="613" width="0.0271%" height="15" fill="rgb(253,148,0)" fg:x="254713" fg:w="131"/><text x="53.0100%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (114 samples, 0.02%)</title><rect x="52.7871%" y="629" width="0.0236%" height="15" fill="rgb(239,22,4)" fg:x="254844" fg:w="114"/><text x="53.0371%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,149 samples, 0.24%)</title><rect x="52.8138%" y="629" width="0.2380%" height="15" fill="rgb(226,26,53)" fg:x="254973" fg:w="1149"/><text x="53.0638%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (100 samples, 0.02%)</title><rect x="53.0901%" y="613" width="0.0207%" height="15" fill="rgb(225,229,45)" fg:x="256307" fg:w="100"/><text x="53.3401%" y="623.50"></text></g><g><title>verify_parent_transid (62 samples, 0.01%)</title><rect x="53.0980%" y="597" width="0.0128%" height="15" fill="rgb(220,60,37)" fg:x="256345" fg:w="62"/><text x="53.3480%" y="607.50"></text></g><g><title>btrfs_get_64 (140 samples, 0.03%)</title><rect x="53.1109%" y="613" width="0.0290%" height="15" fill="rgb(217,180,35)" fg:x="256407" fg:w="140"/><text x="53.3609%" y="623.50"></text></g><g><title>btrfs_verify_level_key (65 samples, 0.01%)</title><rect x="53.1430%" y="613" width="0.0135%" height="15" fill="rgb(229,7,53)" fg:x="256562" fg:w="65"/><text x="53.3930%" y="623.50"></text></g><g><title>__radix_tree_lookup (781 samples, 0.16%)</title><rect x="53.2080%" y="597" width="0.1618%" height="15" fill="rgb(254,137,3)" fg:x="256876" fg:w="781"/><text x="53.4580%" y="607.50"></text></g><g><title>check_buffer_tree_ref (62 samples, 0.01%)</title><rect x="53.3832%" y="581" width="0.0128%" height="15" fill="rgb(215,140,41)" fg:x="257722" fg:w="62"/><text x="53.6332%" y="591.50"></text></g><g><title>mark_page_accessed (214 samples, 0.04%)</title><rect x="53.3961%" y="581" width="0.0443%" height="15" fill="rgb(250,80,15)" fg:x="257784" fg:w="214"/><text x="53.6461%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (343 samples, 0.07%)</title><rect x="53.3698%" y="597" width="0.0710%" height="15" fill="rgb(252,191,6)" fg:x="257657" fg:w="343"/><text x="53.6198%" y="607.50"></text></g><g><title>find_extent_buffer (1,381 samples, 0.29%)</title><rect x="53.1564%" y="613" width="0.2861%" height="15" fill="rgb(246,217,18)" fg:x="256627" fg:w="1381"/><text x="53.4064%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,083 samples, 0.43%)</title><rect x="53.0518%" y="629" width="0.4315%" height="15" fill="rgb(223,93,7)" fg:x="256122" fg:w="2083"/><text x="53.3018%" y="639.50"></text></g><g><title>read_extent_buffer (197 samples, 0.04%)</title><rect x="53.4425%" y="613" width="0.0408%" height="15" fill="rgb(225,55,52)" fg:x="258008" fg:w="197"/><text x="53.6925%" y="623.50"></text></g><g><title>btrfs_search_slot (4,853 samples, 1.01%)</title><rect x="52.5040%" y="645" width="1.0052%" height="15" fill="rgb(240,31,24)" fg:x="253477" fg:w="4853"/><text x="52.7540%" y="655.50"></text></g><g><title>unlock_up (125 samples, 0.03%)</title><rect x="53.4833%" y="629" width="0.0259%" height="15" fill="rgb(205,56,52)" fg:x="258205" fg:w="125"/><text x="53.7333%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (5,045 samples, 1.04%)</title><rect x="52.4988%" y="661" width="1.0450%" height="15" fill="rgb(246,146,12)" fg:x="253452" fg:w="5045"/><text x="52.7488%" y="671.50"></text></g><g><title>crc32c (167 samples, 0.03%)</title><rect x="53.5092%" y="645" width="0.0346%" height="15" fill="rgb(239,84,36)" fg:x="258330" fg:w="167"/><text x="53.7592%" y="655.50"></text></g><g><title>crypto_shash_update (130 samples, 0.03%)</title><rect x="53.5168%" y="629" width="0.0269%" height="15" fill="rgb(207,41,40)" fg:x="258367" fg:w="130"/><text x="53.7668%" y="639.50"></text></g><g><title>kmem_cache_alloc (237 samples, 0.05%)</title><rect x="53.5438%" y="661" width="0.0491%" height="15" fill="rgb(241,179,25)" fg:x="258497" fg:w="237"/><text x="53.7938%" y="671.50"></text></g><g><title>btrfs_lookup (6,086 samples, 1.26%)</title><rect x="52.3554%" y="693" width="1.2606%" height="15" fill="rgb(210,0,34)" fg:x="252760" fg:w="6086"/><text x="52.6054%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (6,072 samples, 1.26%)</title><rect x="52.3583%" y="677" width="1.2577%" height="15" fill="rgb(225,217,29)" fg:x="252774" fg:w="6072"/><text x="52.6083%" y="687.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="53.5929%" y="661" width="0.0232%" height="15" fill="rgb(216,191,38)" fg:x="258734" fg:w="112"/><text x="53.8429%" y="671.50"></text></g><g><title>__slab_alloc (136 samples, 0.03%)</title><rect x="53.6923%" y="645" width="0.0282%" height="15" fill="rgb(232,140,52)" fg:x="259214" fg:w="136"/><text x="53.9423%" y="655.50"></text></g><g><title>___slab_alloc (129 samples, 0.03%)</title><rect x="53.6937%" y="629" width="0.0267%" height="15" fill="rgb(223,158,51)" fg:x="259221" fg:w="129"/><text x="53.9437%" y="639.50"></text></g><g><title>get_partial_node.part.0 (55 samples, 0.01%)</title><rect x="53.7091%" y="613" width="0.0114%" height="15" fill="rgb(235,29,51)" fg:x="259295" fg:w="55"/><text x="53.9591%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (124 samples, 0.03%)</title><rect x="53.7911%" y="629" width="0.0257%" height="15" fill="rgb(215,181,18)" fg:x="259691" fg:w="124"/><text x="54.0411%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (83 samples, 0.02%)</title><rect x="53.7996%" y="613" width="0.0172%" height="15" fill="rgb(227,125,34)" fg:x="259732" fg:w="83"/><text x="54.0496%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (487 samples, 0.10%)</title><rect x="53.7205%" y="645" width="0.1009%" height="15" fill="rgb(230,197,49)" fg:x="259350" fg:w="487"/><text x="53.9705%" y="655.50"></text></g><g><title>memset_erms (69 samples, 0.01%)</title><rect x="53.8220%" y="645" width="0.0143%" height="15" fill="rgb(239,141,16)" fg:x="259840" fg:w="69"/><text x="54.0720%" y="655.50"></text></g><g><title>obj_cgroup_charge (160 samples, 0.03%)</title><rect x="53.8555%" y="629" width="0.0331%" height="15" fill="rgb(225,105,43)" fg:x="260002" fg:w="160"/><text x="54.1055%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,137 samples, 0.24%)</title><rect x="53.6533%" y="661" width="0.2355%" height="15" fill="rgb(214,131,14)" fg:x="259026" fg:w="1137"/><text x="53.9033%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (251 samples, 0.05%)</title><rect x="53.8369%" y="645" width="0.0520%" height="15" fill="rgb(229,177,11)" fg:x="259912" fg:w="251"/><text x="54.0869%" y="655.50"></text></g><g><title>__d_alloc (1,336 samples, 0.28%)</title><rect x="53.6225%" y="677" width="0.2767%" height="15" fill="rgb(231,180,14)" fg:x="258877" fg:w="1336"/><text x="53.8725%" y="687.50"></text></g><g><title>d_alloc (1,439 samples, 0.30%)</title><rect x="53.6161%" y="693" width="0.2981%" height="15" fill="rgb(232,88,2)" fg:x="258846" fg:w="1439"/><text x="53.8661%" y="703.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.01%)</title><rect x="53.9038%" y="677" width="0.0104%" height="15" fill="rgb(205,220,8)" fg:x="260235" fg:w="50"/><text x="54.1538%" y="687.50"></text></g><g><title>__d_rehash (95 samples, 0.02%)</title><rect x="53.9218%" y="661" width="0.0197%" height="15" fill="rgb(225,23,53)" fg:x="260322" fg:w="95"/><text x="54.1718%" y="671.50"></text></g><g><title>d_splice_alias (208 samples, 0.04%)</title><rect x="53.9141%" y="693" width="0.0431%" height="15" fill="rgb(213,62,29)" fg:x="260285" fg:w="208"/><text x="54.1641%" y="703.50"></text></g><g><title>__d_add (192 samples, 0.04%)</title><rect x="53.9174%" y="677" width="0.0398%" height="15" fill="rgb(227,75,7)" fg:x="260301" fg:w="192"/><text x="54.1674%" y="687.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.02%)</title><rect x="53.9415%" y="661" width="0.0157%" height="15" fill="rgb(207,105,14)" fg:x="260417" fg:w="76"/><text x="54.1915%" y="671.50"></text></g><g><title>__lookup_hash (8,319 samples, 1.72%)</title><rect x="52.3515%" y="709" width="1.7232%" height="15" fill="rgb(245,62,29)" fg:x="252741" fg:w="8319"/><text x="52.6015%" y="719.50"></text></g><g><title>lookup_dcache (567 samples, 0.12%)</title><rect x="53.9572%" y="693" width="0.1174%" height="15" fill="rgb(236,202,4)" fg:x="260493" fg:w="567"/><text x="54.2072%" y="703.50"></text></g><g><title>d_lookup (556 samples, 0.12%)</title><rect x="53.9595%" y="677" width="0.1152%" height="15" fill="rgb(250,67,1)" fg:x="260504" fg:w="556"/><text x="54.2095%" y="687.50"></text></g><g><title>__d_lookup (532 samples, 0.11%)</title><rect x="53.9645%" y="661" width="0.1102%" height="15" fill="rgb(253,115,44)" fg:x="260528" fg:w="532"/><text x="54.2145%" y="671.50"></text></g><g><title>down_write (67 samples, 0.01%)</title><rect x="54.0747%" y="709" width="0.0139%" height="15" fill="rgb(251,139,18)" fg:x="261060" fg:w="67"/><text x="54.3247%" y="719.50"></text></g><g><title>__legitimize_mnt (137 samples, 0.03%)</title><rect x="54.1291%" y="629" width="0.0284%" height="15" fill="rgb(218,22,32)" fg:x="261323" fg:w="137"/><text x="54.3791%" y="639.50"></text></g><g><title>__legitimize_path (250 samples, 0.05%)</title><rect x="54.1237%" y="645" width="0.0518%" height="15" fill="rgb(243,53,5)" fg:x="261297" fg:w="250"/><text x="54.3737%" y="655.50"></text></g><g><title>lockref_get_not_dead (87 samples, 0.02%)</title><rect x="54.1575%" y="629" width="0.0180%" height="15" fill="rgb(227,56,16)" fg:x="261460" fg:w="87"/><text x="54.4075%" y="639.50"></text></g><g><title>complete_walk (334 samples, 0.07%)</title><rect x="54.1128%" y="677" width="0.0692%" height="15" fill="rgb(245,53,0)" fg:x="261244" fg:w="334"/><text x="54.3628%" y="687.50"></text></g><g><title>try_to_unlazy (317 samples, 0.07%)</title><rect x="54.1163%" y="661" width="0.0657%" height="15" fill="rgb(216,170,35)" fg:x="261261" fg:w="317"/><text x="54.3663%" y="671.50"></text></g><g><title>btrfs_permission (85 samples, 0.02%)</title><rect x="54.5877%" y="645" width="0.0176%" height="15" fill="rgb(211,200,8)" fg:x="263537" fg:w="85"/><text x="54.8377%" y="655.50"></text></g><g><title>inode_permission.part.0 (1,290 samples, 0.27%)</title><rect x="54.4154%" y="661" width="0.2672%" height="15" fill="rgb(228,204,44)" fg:x="262705" fg:w="1290"/><text x="54.6654%" y="671.50"></text></g><g><title>generic_permission (373 samples, 0.08%)</title><rect x="54.6053%" y="645" width="0.0773%" height="15" fill="rgb(214,121,17)" fg:x="263622" fg:w="373"/><text x="54.8553%" y="655.50"></text></g><g><title>security_inode_permission (136 samples, 0.03%)</title><rect x="54.6826%" y="661" width="0.0282%" height="15" fill="rgb(233,64,38)" fg:x="263995" fg:w="136"/><text x="54.9326%" y="671.50"></text></g><g><title>__d_lookup_rcu (2,200 samples, 0.46%)</title><rect x="54.9142%" y="629" width="0.4557%" height="15" fill="rgb(253,54,19)" fg:x="265113" fg:w="2200"/><text x="55.1642%" y="639.50"></text></g><g><title>lookup_fast (2,758 samples, 0.57%)</title><rect x="54.7990%" y="645" width="0.5713%" height="15" fill="rgb(253,94,18)" fg:x="264557" fg:w="2758"/><text x="55.0490%" y="655.50"></text></g><g><title>link_path_walk.part.0 (6,359 samples, 1.32%)</title><rect x="54.1820%" y="677" width="1.3172%" height="15" fill="rgb(227,57,52)" fg:x="261578" fg:w="6359"/><text x="54.4320%" y="687.50"></text></g><g><title>walk_component (3,806 samples, 0.79%)</title><rect x="54.7108%" y="661" width="0.7884%" height="15" fill="rgb(230,228,50)" fg:x="264131" fg:w="3806"/><text x="54.9608%" y="671.50"></text></g><g><title>step_into (622 samples, 0.13%)</title><rect x="55.3703%" y="645" width="0.1288%" height="15" fill="rgb(217,205,27)" fg:x="267315" fg:w="622"/><text x="55.6203%" y="655.50"></text></g><g><title>__lookup_mnt (64 samples, 0.01%)</title><rect x="55.4859%" y="629" width="0.0133%" height="15" fill="rgb(252,71,50)" fg:x="267873" fg:w="64"/><text x="55.7359%" y="639.50"></text></g><g><title>path_init (357 samples, 0.07%)</title><rect x="55.4991%" y="677" width="0.0739%" height="15" fill="rgb(209,86,4)" fg:x="267937" fg:w="357"/><text x="55.7491%" y="687.50"></text></g><g><title>nd_jump_root (273 samples, 0.06%)</title><rect x="55.5165%" y="661" width="0.0565%" height="15" fill="rgb(229,94,0)" fg:x="268021" fg:w="273"/><text x="55.7665%" y="671.50"></text></g><g><title>set_root (227 samples, 0.05%)</title><rect x="55.5261%" y="645" width="0.0470%" height="15" fill="rgb(252,223,21)" fg:x="268067" fg:w="227"/><text x="55.7761%" y="655.50"></text></g><g><title>filename_parentat (7,190 samples, 1.49%)</title><rect x="54.0885%" y="709" width="1.4893%" height="15" fill="rgb(230,210,4)" fg:x="261127" fg:w="7190"/><text x="54.3385%" y="719.50"></text></g><g><title>path_parentat (7,103 samples, 1.47%)</title><rect x="54.1066%" y="693" width="1.4713%" height="15" fill="rgb(240,149,38)" fg:x="261214" fg:w="7103"/><text x="54.3566%" y="703.50"></text></g><g><title>kmem_cache_free (125 samples, 0.03%)</title><rect x="55.5778%" y="709" width="0.0259%" height="15" fill="rgb(254,105,20)" fg:x="268317" fg:w="125"/><text x="55.8278%" y="719.50"></text></g><g><title>__mnt_want_write (84 samples, 0.02%)</title><rect x="55.6166%" y="693" width="0.0174%" height="15" fill="rgb(253,87,46)" fg:x="268504" fg:w="84"/><text x="55.8666%" y="703.50"></text></g><g><title>mnt_want_write (163 samples, 0.03%)</title><rect x="55.6037%" y="709" width="0.0338%" height="15" fill="rgb(253,116,33)" fg:x="268442" fg:w="163"/><text x="55.8537%" y="719.50"></text></g><g><title>filename_create (15,907 samples, 3.29%)</title><rect x="52.3447%" y="725" width="3.2949%" height="15" fill="rgb(229,198,5)" fg:x="252708" fg:w="15907"/><text x="52.5947%" y="735.50">fil..</text></g><g><title>memcg_slab_post_alloc_hook (69 samples, 0.01%)</title><rect x="55.7116%" y="693" width="0.0143%" height="15" fill="rgb(242,38,37)" fg:x="268963" fg:w="69"/><text x="55.9616%" y="703.50"></text></g><g><title>memset_erms (854 samples, 0.18%)</title><rect x="55.7272%" y="693" width="0.1769%" height="15" fill="rgb(242,69,53)" fg:x="269038" fg:w="854"/><text x="55.9772%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,261 samples, 0.26%)</title><rect x="55.6644%" y="709" width="0.2612%" height="15" fill="rgb(249,80,16)" fg:x="268735" fg:w="1261"/><text x="55.9144%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (104 samples, 0.02%)</title><rect x="55.9041%" y="693" width="0.0215%" height="15" fill="rgb(206,128,11)" fg:x="269892" fg:w="104"/><text x="56.1541%" y="703.50"></text></g><g><title>__check_heap_object (163 samples, 0.03%)</title><rect x="56.1199%" y="677" width="0.0338%" height="15" fill="rgb(212,35,20)" fg:x="270934" fg:w="163"/><text x="56.3699%" y="687.50"></text></g><g><title>__virt_addr_valid (264 samples, 0.05%)</title><rect x="56.1537%" y="677" width="0.0547%" height="15" fill="rgb(236,79,13)" fg:x="271097" fg:w="264"/><text x="56.4037%" y="687.50"></text></g><g><title>__check_object_size (594 samples, 0.12%)</title><rect x="56.0882%" y="693" width="0.1230%" height="15" fill="rgb(233,123,3)" fg:x="270781" fg:w="594"/><text x="56.3382%" y="703.50"></text></g><g><title>getname_flags.part.0 (2,733 samples, 0.57%)</title><rect x="55.6458%" y="725" width="0.5661%" height="15" fill="rgb(214,93,52)" fg:x="268645" fg:w="2733"/><text x="55.8958%" y="735.50"></text></g><g><title>strncpy_from_user (1,382 samples, 0.29%)</title><rect x="55.9256%" y="709" width="0.2863%" height="15" fill="rgb(251,37,40)" fg:x="269996" fg:w="1382"/><text x="56.1756%" y="719.50"></text></g><g><title>kmem_cache_free (174 samples, 0.04%)</title><rect x="56.2119%" y="725" width="0.0360%" height="15" fill="rgb(227,80,54)" fg:x="271378" fg:w="174"/><text x="56.4619%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (53 samples, 0.01%)</title><rect x="56.2369%" y="709" width="0.0110%" height="15" fill="rgb(254,48,11)" fg:x="271499" fg:w="53"/><text x="56.4869%" y="719.50"></text></g><g><title>apparmor_path_symlink (120 samples, 0.02%)</title><rect x="56.2722%" y="709" width="0.0249%" height="15" fill="rgb(235,193,26)" fg:x="271669" fg:w="120"/><text x="56.5222%" y="719.50"></text></g><g><title>security_path_symlink (413 samples, 0.09%)</title><rect x="56.2587%" y="725" width="0.0855%" height="15" fill="rgb(229,99,21)" fg:x="271604" fg:w="413"/><text x="56.5087%" y="735.50"></text></g><g><title>tomoyo_path_symlink (228 samples, 0.05%)</title><rect x="56.2970%" y="709" width="0.0472%" height="15" fill="rgb(211,140,41)" fg:x="271789" fg:w="228"/><text x="56.5470%" y="719.50"></text></g><g><title>tomoyo_path_perm (217 samples, 0.04%)</title><rect x="56.2993%" y="693" width="0.0449%" height="15" fill="rgb(240,227,30)" fg:x="271800" fg:w="217"/><text x="56.5493%" y="703.50"></text></g><g><title>tomoyo_init_request_info (119 samples, 0.02%)</title><rect x="56.3196%" y="677" width="0.0246%" height="15" fill="rgb(215,224,45)" fg:x="271898" fg:w="119"/><text x="56.5696%" y="687.50"></text></g><g><title>up_write (72 samples, 0.01%)</title><rect x="56.3442%" y="725" width="0.0149%" height="15" fill="rgb(206,123,31)" fg:x="272017" fg:w="72"/><text x="56.5942%" y="735.50"></text></g><g><title>btrfs_put_transaction (88 samples, 0.02%)</title><rect x="56.4648%" y="677" width="0.0182%" height="15" fill="rgb(210,138,16)" fg:x="272599" fg:w="88"/><text x="56.7148%" y="687.50"></text></g><g><title>_raw_spin_lock (159 samples, 0.03%)</title><rect x="56.5000%" y="645" width="0.0329%" height="15" fill="rgb(228,57,28)" fg:x="272769" fg:w="159"/><text x="56.7500%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (267 samples, 0.06%)</title><rect x="56.4853%" y="677" width="0.0553%" height="15" fill="rgb(242,170,10)" fg:x="272698" fg:w="267"/><text x="56.7353%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (248 samples, 0.05%)</title><rect x="56.4892%" y="661" width="0.0514%" height="15" fill="rgb(228,214,39)" fg:x="272717" fg:w="248"/><text x="56.7392%" y="671.50"></text></g><g><title>__btrfs_end_transaction (684 samples, 0.14%)</title><rect x="56.4200%" y="693" width="0.1417%" height="15" fill="rgb(218,179,33)" fg:x="272383" fg:w="684"/><text x="56.6700%" y="703.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="56.5406%" y="677" width="0.0211%" height="15" fill="rgb(235,193,39)" fg:x="272965" fg:w="102"/><text x="56.7906%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (152 samples, 0.03%)</title><rect x="56.6829%" y="629" width="0.0315%" height="15" fill="rgb(219,221,36)" fg:x="273652" fg:w="152"/><text x="56.9329%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (455 samples, 0.09%)</title><rect x="56.6467%" y="645" width="0.0942%" height="15" fill="rgb(248,218,19)" fg:x="273477" fg:w="455"/><text x="56.8967%" y="655.50"></text></g><g><title>rb_insert_color (128 samples, 0.03%)</title><rect x="56.7144%" y="629" width="0.0265%" height="15" fill="rgb(205,50,9)" fg:x="273804" fg:w="128"/><text x="56.9644%" y="639.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="56.7658%" y="629" width="0.0110%" height="15" fill="rgb(238,81,28)" fg:x="274052" fg:w="53"/><text x="57.0158%" y="639.50"></text></g><g><title>mutex_lock (79 samples, 0.02%)</title><rect x="56.7769%" y="629" width="0.0164%" height="15" fill="rgb(235,110,19)" fg:x="274106" fg:w="79"/><text x="57.0269%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (319 samples, 0.07%)</title><rect x="56.7409%" y="645" width="0.0661%" height="15" fill="rgb(214,7,14)" fg:x="273932" fg:w="319"/><text x="56.9909%" y="655.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="56.7933%" y="629" width="0.0137%" height="15" fill="rgb(211,77,3)" fg:x="274185" fg:w="66"/><text x="57.0433%" y="639.50"></text></g><g><title>__slab_alloc (133 samples, 0.03%)</title><rect x="56.8339%" y="629" width="0.0275%" height="15" fill="rgb(229,5,9)" fg:x="274381" fg:w="133"/><text x="57.0839%" y="639.50"></text></g><g><title>___slab_alloc (125 samples, 0.03%)</title><rect x="56.8356%" y="613" width="0.0259%" height="15" fill="rgb(225,90,11)" fg:x="274389" fg:w="125"/><text x="57.0856%" y="623.50"></text></g><g><title>get_partial_node.part.0 (53 samples, 0.01%)</title><rect x="56.8505%" y="597" width="0.0110%" height="15" fill="rgb(242,56,8)" fg:x="274461" fg:w="53"/><text x="57.1005%" y="607.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="56.8693%" y="629" width="0.0112%" height="15" fill="rgb(249,212,39)" fg:x="274552" fg:w="54"/><text x="57.1193%" y="639.50"></text></g><g><title>__kmalloc (386 samples, 0.08%)</title><rect x="56.8070%" y="645" width="0.0800%" height="15" fill="rgb(236,90,9)" fg:x="274251" fg:w="386"/><text x="57.0570%" y="655.50"></text></g><g><title>mutex_spin_on_owner (459 samples, 0.10%)</title><rect x="56.8888%" y="629" width="0.0951%" height="15" fill="rgb(206,88,35)" fg:x="274646" fg:w="459"/><text x="57.1388%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (470 samples, 0.10%)</title><rect x="56.8869%" y="645" width="0.0974%" height="15" fill="rgb(205,126,30)" fg:x="274637" fg:w="470"/><text x="57.1369%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (310 samples, 0.06%)</title><rect x="56.9843%" y="645" width="0.0642%" height="15" fill="rgb(230,176,12)" fg:x="275107" fg:w="310"/><text x="57.2343%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (260 samples, 0.05%)</title><rect x="56.9946%" y="629" width="0.0539%" height="15" fill="rgb(243,19,9)" fg:x="275157" fg:w="260"/><text x="57.2446%" y="639.50"></text></g><g><title>_raw_spin_lock (224 samples, 0.05%)</title><rect x="57.0021%" y="613" width="0.0464%" height="15" fill="rgb(245,171,17)" fg:x="275193" fg:w="224"/><text x="57.2521%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (144 samples, 0.03%)</title><rect x="57.0485%" y="645" width="0.0298%" height="15" fill="rgb(227,52,21)" fg:x="275417" fg:w="144"/><text x="57.2985%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (129 samples, 0.03%)</title><rect x="57.0516%" y="629" width="0.0267%" height="15" fill="rgb(238,69,14)" fg:x="275432" fg:w="129"/><text x="57.3016%" y="639.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="57.0868%" y="645" width="0.0170%" height="15" fill="rgb(241,156,39)" fg:x="275602" fg:w="82"/><text x="57.3368%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,332 samples, 0.48%)</title><rect x="56.6295%" y="661" width="0.4830%" height="15" fill="rgb(212,227,28)" fg:x="273394" fg:w="2332"/><text x="56.8795%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (175 samples, 0.04%)</title><rect x="57.1125%" y="661" width="0.0362%" height="15" fill="rgb(209,118,27)" fg:x="275726" fg:w="175"/><text x="57.3625%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (119 samples, 0.02%)</title><rect x="57.1241%" y="645" width="0.0246%" height="15" fill="rgb(226,102,5)" fg:x="275782" fg:w="119"/><text x="57.3741%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (254 samples, 0.05%)</title><rect x="57.1589%" y="645" width="0.0526%" height="15" fill="rgb(223,34,3)" fg:x="275950" fg:w="254"/><text x="57.4089%" y="655.50"></text></g><g><title>_raw_spin_lock (191 samples, 0.04%)</title><rect x="57.1719%" y="629" width="0.0396%" height="15" fill="rgb(221,81,38)" fg:x="276013" fg:w="191"/><text x="57.4219%" y="639.50"></text></g><g><title>btrfs_release_path (491 samples, 0.10%)</title><rect x="57.1487%" y="661" width="0.1017%" height="15" fill="rgb(236,219,28)" fg:x="275901" fg:w="491"/><text x="57.3987%" y="671.50"></text></g><g><title>release_extent_buffer (188 samples, 0.04%)</title><rect x="57.2115%" y="645" width="0.0389%" height="15" fill="rgb(213,200,14)" fg:x="276204" fg:w="188"/><text x="57.4615%" y="655.50"></text></g><g><title>btrfs_set_16 (61 samples, 0.01%)</title><rect x="57.2504%" y="661" width="0.0126%" height="15" fill="rgb(240,33,19)" fg:x="276392" fg:w="61"/><text x="57.5004%" y="671.50"></text></g><g><title>btrfs_get_32 (94 samples, 0.02%)</title><rect x="57.2927%" y="645" width="0.0195%" height="15" fill="rgb(233,113,27)" fg:x="276596" fg:w="94"/><text x="57.5427%" y="655.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="57.3942%" y="581" width="0.0110%" height="15" fill="rgb(220,221,18)" fg:x="277086" fg:w="53"/><text x="57.6442%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (78 samples, 0.02%)</title><rect x="57.3892%" y="597" width="0.0162%" height="15" fill="rgb(238,92,8)" fg:x="277062" fg:w="78"/><text x="57.6392%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (198 samples, 0.04%)</title><rect x="57.3867%" y="613" width="0.0410%" height="15" fill="rgb(222,164,16)" fg:x="277050" fg:w="198"/><text x="57.6367%" y="623.50"></text></g><g><title>btrfs_root_node (108 samples, 0.02%)</title><rect x="57.4054%" y="597" width="0.0224%" height="15" fill="rgb(241,119,3)" fg:x="277140" fg:w="108"/><text x="57.6554%" y="607.50"></text></g><g><title>dequeue_task_fair (66 samples, 0.01%)</title><rect x="57.4439%" y="565" width="0.0137%" height="15" fill="rgb(241,44,8)" fg:x="277326" fg:w="66"/><text x="57.6939%" y="575.50"></text></g><g><title>dequeue_entity (58 samples, 0.01%)</title><rect x="57.4456%" y="549" width="0.0120%" height="15" fill="rgb(230,36,40)" fg:x="277334" fg:w="58"/><text x="57.6956%" y="559.50"></text></g><g><title>__btrfs_tree_lock (228 samples, 0.05%)</title><rect x="57.4278%" y="613" width="0.0472%" height="15" fill="rgb(243,16,36)" fg:x="277248" fg:w="228"/><text x="57.6778%" y="623.50"></text></g><g><title>schedule (181 samples, 0.04%)</title><rect x="57.4375%" y="597" width="0.0375%" height="15" fill="rgb(231,4,26)" fg:x="277295" fg:w="181"/><text x="57.6875%" y="607.50"></text></g><g><title>__schedule (178 samples, 0.04%)</title><rect x="57.4381%" y="581" width="0.0369%" height="15" fill="rgb(240,9,31)" fg:x="277298" fg:w="178"/><text x="57.6881%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (210 samples, 0.04%)</title><rect x="57.4797%" y="613" width="0.0435%" height="15" fill="rgb(207,173,15)" fg:x="277499" fg:w="210"/><text x="57.7297%" y="623.50"></text></g><g><title>leaf_space_used (179 samples, 0.04%)</title><rect x="57.4862%" y="597" width="0.0371%" height="15" fill="rgb(224,192,53)" fg:x="277530" fg:w="179"/><text x="57.7362%" y="607.50"></text></g><g><title>btrfs_get_32 (146 samples, 0.03%)</title><rect x="57.4930%" y="581" width="0.0302%" height="15" fill="rgb(223,67,28)" fg:x="277563" fg:w="146"/><text x="57.7430%" y="591.50"></text></g><g><title>_raw_write_lock (101 samples, 0.02%)</title><rect x="57.5319%" y="597" width="0.0209%" height="15" fill="rgb(211,20,47)" fg:x="277751" fg:w="101"/><text x="57.7819%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (267 samples, 0.06%)</title><rect x="57.5255%" y="613" width="0.0553%" height="15" fill="rgb(240,228,2)" fg:x="277720" fg:w="267"/><text x="57.7755%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (135 samples, 0.03%)</title><rect x="57.5529%" y="597" width="0.0280%" height="15" fill="rgb(248,151,12)" fg:x="277852" fg:w="135"/><text x="57.8029%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,243 samples, 0.26%)</title><rect x="57.5808%" y="613" width="0.2575%" height="15" fill="rgb(244,8,39)" fg:x="277987" fg:w="1243"/><text x="57.8308%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (68 samples, 0.01%)</title><rect x="57.8663%" y="597" width="0.0141%" height="15" fill="rgb(222,26,8)" fg:x="279365" fg:w="68"/><text x="58.1163%" y="607.50"></text></g><g><title>btrfs_get_64 (126 samples, 0.03%)</title><rect x="57.8803%" y="597" width="0.0261%" height="15" fill="rgb(213,106,44)" fg:x="279433" fg:w="126"/><text x="58.1303%" y="607.50"></text></g><g><title>btrfs_verify_level_key (53 samples, 0.01%)</title><rect x="57.9096%" y="597" width="0.0110%" height="15" fill="rgb(214,129,20)" fg:x="279574" fg:w="53"/><text x="58.1596%" y="607.50"></text></g><g><title>__radix_tree_lookup (481 samples, 0.10%)</title><rect x="57.9570%" y="581" width="0.0996%" height="15" fill="rgb(212,32,13)" fg:x="279803" fg:w="481"/><text x="58.2070%" y="591.50"></text></g><g><title>check_buffer_tree_ref (65 samples, 0.01%)</title><rect x="58.0666%" y="565" width="0.0135%" height="15" fill="rgb(208,168,33)" fg:x="280332" fg:w="65"/><text x="58.3166%" y="575.50"></text></g><g><title>mark_page_accessed (171 samples, 0.04%)</title><rect x="58.0800%" y="565" width="0.0354%" height="15" fill="rgb(231,207,8)" fg:x="280397" fg:w="171"/><text x="58.3300%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (285 samples, 0.06%)</title><rect x="58.0566%" y="581" width="0.0590%" height="15" fill="rgb(235,219,23)" fg:x="280284" fg:w="285"/><text x="58.3066%" y="591.50"></text></g><g><title>find_extent_buffer (950 samples, 0.20%)</title><rect x="57.9205%" y="597" width="0.1968%" height="15" fill="rgb(226,216,26)" fg:x="279627" fg:w="950"/><text x="58.1705%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,499 samples, 0.31%)</title><rect x="57.8383%" y="613" width="0.3105%" height="15" fill="rgb(239,137,16)" fg:x="279230" fg:w="1499"/><text x="58.0883%" y="623.50"></text></g><g><title>read_extent_buffer (152 samples, 0.03%)</title><rect x="58.1173%" y="597" width="0.0315%" height="15" fill="rgb(207,12,36)" fg:x="280577" fg:w="152"/><text x="58.3673%" y="607.50"></text></g><g><title>alloc_extent_buffer (57 samples, 0.01%)</title><rect x="58.1517%" y="565" width="0.0118%" height="15" fill="rgb(210,214,24)" fg:x="280743" fg:w="57"/><text x="58.4017%" y="575.50"></text></g><g><title>alloc_tree_block_no_bg_flush (141 samples, 0.03%)</title><rect x="58.1513%" y="597" width="0.0292%" height="15" fill="rgb(206,56,30)" fg:x="280741" fg:w="141"/><text x="58.4013%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (141 samples, 0.03%)</title><rect x="58.1513%" y="581" width="0.0292%" height="15" fill="rgb(228,143,26)" fg:x="280741" fg:w="141"/><text x="58.4013%" y="591.50"></text></g><g><title>copy_for_split (117 samples, 0.02%)</title><rect x="58.1838%" y="597" width="0.0242%" height="15" fill="rgb(216,218,46)" fg:x="280898" fg:w="117"/><text x="58.4338%" y="607.50"></text></g><g><title>btrfs_get_token_32 (102 samples, 0.02%)</title><rect x="58.2327%" y="565" width="0.0211%" height="15" fill="rgb(206,6,19)" fg:x="281134" fg:w="102"/><text x="58.4827%" y="575.50"></text></g><g><title>btrfs_set_token_32 (141 samples, 0.03%)</title><rect x="58.2551%" y="565" width="0.0292%" height="15" fill="rgb(239,177,51)" fg:x="281242" fg:w="141"/><text x="58.5051%" y="575.50"></text></g><g><title>memmove_extent_buffer (98 samples, 0.02%)</title><rect x="58.2950%" y="565" width="0.0203%" height="15" fill="rgb(216,55,25)" fg:x="281435" fg:w="98"/><text x="58.5450%" y="575.50"></text></g><g><title>memmove (57 samples, 0.01%)</title><rect x="58.3035%" y="549" width="0.0118%" height="15" fill="rgb(231,163,29)" fg:x="281476" fg:w="57"/><text x="58.5535%" y="559.50"></text></g><g><title>__push_leaf_left (501 samples, 0.10%)</title><rect x="58.2120%" y="581" width="0.1038%" height="15" fill="rgb(232,149,50)" fg:x="281034" fg:w="501"/><text x="58.4620%" y="591.50"></text></g><g><title>push_leaf_left (573 samples, 0.12%)</title><rect x="58.2082%" y="597" width="0.1187%" height="15" fill="rgb(223,142,48)" fg:x="281016" fg:w="573"/><text x="58.4582%" y="607.50"></text></g><g><title>btrfs_get_token_32 (78 samples, 0.02%)</title><rect x="58.3485%" y="565" width="0.0162%" height="15" fill="rgb(245,83,23)" fg:x="281693" fg:w="78"/><text x="58.5985%" y="575.50"></text></g><g><title>btrfs_set_token_32 (119 samples, 0.02%)</title><rect x="58.3667%" y="565" width="0.0246%" height="15" fill="rgb(224,63,2)" fg:x="281781" fg:w="119"/><text x="58.6167%" y="575.50"></text></g><g><title>memcpy_extent_buffer (52 samples, 0.01%)</title><rect x="58.3942%" y="565" width="0.0108%" height="15" fill="rgb(218,65,53)" fg:x="281914" fg:w="52"/><text x="58.6442%" y="575.50"></text></g><g><title>__push_leaf_right (393 samples, 0.08%)</title><rect x="58.3313%" y="581" width="0.0814%" height="15" fill="rgb(221,84,29)" fg:x="281610" fg:w="393"/><text x="58.5813%" y="591.50"></text></g><g><title>btrfs_read_node_slot (66 samples, 0.01%)</title><rect x="58.4191%" y="581" width="0.0137%" height="15" fill="rgb(234,0,32)" fg:x="282034" fg:w="66"/><text x="58.6691%" y="591.50"></text></g><g><title>read_tree_block (50 samples, 0.01%)</title><rect x="58.4224%" y="565" width="0.0104%" height="15" fill="rgb(206,20,16)" fg:x="282050" fg:w="50"/><text x="58.6724%" y="575.50"></text></g><g><title>split_leaf (1,391 samples, 0.29%)</title><rect x="58.1490%" y="613" width="0.2881%" height="15" fill="rgb(244,172,18)" fg:x="280730" fg:w="1391"/><text x="58.3990%" y="623.50"></text></g><g><title>push_leaf_right (532 samples, 0.11%)</title><rect x="58.3269%" y="597" width="0.1102%" height="15" fill="rgb(254,133,1)" fg:x="281589" fg:w="532"/><text x="58.5769%" y="607.50"></text></g><g><title>__wake_up_common (80 samples, 0.02%)</title><rect x="58.4711%" y="581" width="0.0166%" height="15" fill="rgb(222,206,41)" fg:x="282285" fg:w="80"/><text x="58.7211%" y="591.50"></text></g><g><title>autoremove_wake_function (77 samples, 0.02%)</title><rect x="58.4717%" y="565" width="0.0159%" height="15" fill="rgb(212,3,42)" fg:x="282288" fg:w="77"/><text x="58.7217%" y="575.50"></text></g><g><title>try_to_wake_up (77 samples, 0.02%)</title><rect x="58.4717%" y="549" width="0.0159%" height="15" fill="rgb(241,11,4)" fg:x="282288" fg:w="77"/><text x="58.7217%" y="559.50"></text></g><g><title>__wake_up_common_lock (88 samples, 0.02%)</title><rect x="58.4705%" y="597" width="0.0182%" height="15" fill="rgb(205,19,26)" fg:x="282282" fg:w="88"/><text x="58.7205%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (88 samples, 0.02%)</title><rect x="58.4887%" y="597" width="0.0182%" height="15" fill="rgb(210,179,32)" fg:x="282370" fg:w="88"/><text x="58.7387%" y="607.50"></text></g><g><title>btrfs_search_slot (5,771 samples, 1.20%)</title><rect x="57.3180%" y="629" width="1.1954%" height="15" fill="rgb(227,116,49)" fg:x="276718" fg:w="5771"/><text x="57.5680%" y="639.50"></text></g><g><title>unlock_up (367 samples, 0.08%)</title><rect x="58.4373%" y="613" width="0.0760%" height="15" fill="rgb(211,146,6)" fg:x="282122" fg:w="367"/><text x="58.6873%" y="623.50"></text></g><g><title>btrfs_get_32 (128 samples, 0.03%)</title><rect x="58.7012%" y="613" width="0.0265%" height="15" fill="rgb(219,44,39)" fg:x="283396" fg:w="128"/><text x="58.9512%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,479 samples, 0.72%)</title><rect x="58.7277%" y="613" width="0.7206%" height="15" fill="rgb(234,128,11)" fg:x="283524" fg:w="3479"/><text x="58.9777%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (755 samples, 0.16%)</title><rect x="59.2920%" y="597" width="0.1564%" height="15" fill="rgb(220,183,53)" fg:x="286248" fg:w="755"/><text x="59.5420%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (255 samples, 0.05%)</title><rect x="59.4484%" y="613" width="0.0528%" height="15" fill="rgb(213,219,32)" fg:x="287003" fg:w="255"/><text x="59.6984%" y="623.50"></text></g><g><title>leaf_space_used (220 samples, 0.05%)</title><rect x="59.4556%" y="597" width="0.0456%" height="15" fill="rgb(232,156,16)" fg:x="287038" fg:w="220"/><text x="59.7056%" y="607.50"></text></g><g><title>btrfs_get_32 (157 samples, 0.03%)</title><rect x="59.4687%" y="581" width="0.0325%" height="15" fill="rgb(246,135,34)" fg:x="287101" fg:w="157"/><text x="59.7187%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (186 samples, 0.04%)</title><rect x="59.5012%" y="613" width="0.0385%" height="15" fill="rgb(241,99,0)" fg:x="287258" fg:w="186"/><text x="59.7512%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="59.5173%" y="597" width="0.0224%" height="15" fill="rgb(222,103,45)" fg:x="287336" fg:w="108"/><text x="59.7673%" y="607.50"></text></g><g><title>btrfs_set_token_32 (3,153 samples, 0.65%)</title><rect x="59.5397%" y="613" width="0.6531%" height="15" fill="rgb(212,57,4)" fg:x="287444" fg:w="3153"/><text x="59.7897%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (662 samples, 0.14%)</title><rect x="60.0557%" y="597" width="0.1371%" height="15" fill="rgb(215,68,47)" fg:x="289935" fg:w="662"/><text x="60.3057%" y="607.50"></text></g><g><title>btrfs_unlock_up_safe (49 samples, 0.01%)</title><rect x="60.1928%" y="613" width="0.0101%" height="15" fill="rgb(230,84,2)" fg:x="290597" fg:w="49"/><text x="60.4428%" y="623.50"></text></g><g><title>copy_pages (125 samples, 0.03%)</title><rect x="60.2168%" y="597" width="0.0259%" height="15" fill="rgb(220,102,14)" fg:x="290713" fg:w="125"/><text x="60.4668%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,059 samples, 0.22%)</title><rect x="60.2036%" y="613" width="0.2194%" height="15" fill="rgb(240,10,32)" fg:x="290649" fg:w="1059"/><text x="60.4536%" y="623.50"></text></g><g><title>memmove (870 samples, 0.18%)</title><rect x="60.2427%" y="597" width="0.1802%" height="15" fill="rgb(215,47,27)" fg:x="290838" fg:w="870"/><text x="60.4927%" y="607.50"></text></g><g><title>copy_pages (126 samples, 0.03%)</title><rect x="60.4463%" y="597" width="0.0261%" height="15" fill="rgb(233,188,43)" fg:x="291821" fg:w="126"/><text x="60.6963%" y="607.50"></text></g><g><title>memmove_extent_buffer (1,032 samples, 0.21%)</title><rect x="60.4229%" y="613" width="0.2138%" height="15" fill="rgb(253,190,1)" fg:x="291708" fg:w="1032"/><text x="60.6729%" y="623.50"></text></g><g><title>memmove (793 samples, 0.16%)</title><rect x="60.4724%" y="597" width="0.1643%" height="15" fill="rgb(206,114,52)" fg:x="291947" fg:w="793"/><text x="60.7224%" y="607.50"></text></g><g><title>insert_with_overflow (16,334 samples, 3.38%)</title><rect x="57.2815%" y="661" width="3.3833%" height="15" fill="rgb(233,120,37)" fg:x="276542" fg:w="16334"/><text x="57.5315%" y="671.50">ins..</text></g><g><title>btrfs_insert_empty_items (16,186 samples, 3.35%)</title><rect x="57.3122%" y="645" width="3.3527%" height="15" fill="rgb(214,52,39)" fg:x="276690" fg:w="16186"/><text x="57.5622%" y="655.50">btr..</text></g><g><title>setup_items_for_insert (10,387 samples, 2.15%)</title><rect x="58.5134%" y="629" width="2.1515%" height="15" fill="rgb(223,80,29)" fg:x="282489" fg:w="10387"/><text x="58.7634%" y="639.50">s..</text></g><g><title>write_extent_buffer (136 samples, 0.03%)</title><rect x="60.6367%" y="613" width="0.0282%" height="15" fill="rgb(230,101,40)" fg:x="292740" fg:w="136"/><text x="60.8867%" y="623.50"></text></g><g><title>memset_erms (67 samples, 0.01%)</title><rect x="60.6889%" y="645" width="0.0139%" height="15" fill="rgb(219,211,8)" fg:x="292992" fg:w="67"/><text x="60.9389%" y="655.50"></text></g><g><title>kmem_cache_alloc (211 samples, 0.04%)</title><rect x="60.6649%" y="661" width="0.0437%" height="15" fill="rgb(252,126,28)" fg:x="292876" fg:w="211"/><text x="60.9149%" y="671.50"></text></g><g><title>kmem_cache_free (142 samples, 0.03%)</title><rect x="60.7086%" y="661" width="0.0294%" height="15" fill="rgb(215,56,38)" fg:x="293087" fg:w="142"/><text x="60.9586%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (20,228 samples, 4.19%)</title><rect x="56.6009%" y="677" width="4.1899%" height="15" fill="rgb(249,55,44)" fg:x="273256" fg:w="20228"/><text x="56.8509%" y="687.50">btrfs..</text></g><g><title>write_extent_buffer (255 samples, 0.05%)</title><rect x="60.7380%" y="661" width="0.0528%" height="15" fill="rgb(220,221,32)" fg:x="293229" fg:w="255"/><text x="60.9880%" y="671.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="60.7983%" y="661" width="0.0128%" height="15" fill="rgb(212,216,41)" fg:x="293520" fg:w="62"/><text x="61.0483%" y="671.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="60.8393%" y="629" width="0.0130%" height="15" fill="rgb(228,213,43)" fg:x="293718" fg:w="63"/><text x="61.0893%" y="639.50"></text></g><g><title>mutex_lock (71 samples, 0.01%)</title><rect x="60.8523%" y="629" width="0.0147%" height="15" fill="rgb(211,31,26)" fg:x="293781" fg:w="71"/><text x="61.1023%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (301 samples, 0.06%)</title><rect x="60.8181%" y="645" width="0.0623%" height="15" fill="rgb(229,202,19)" fg:x="293616" fg:w="301"/><text x="61.0681%" y="655.50"></text></g><g><title>mutex_unlock (65 samples, 0.01%)</title><rect x="60.8670%" y="629" width="0.0135%" height="15" fill="rgb(229,105,46)" fg:x="293852" fg:w="65"/><text x="61.1170%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (90 samples, 0.02%)</title><rect x="60.8921%" y="645" width="0.0186%" height="15" fill="rgb(235,108,1)" fg:x="293973" fg:w="90"/><text x="61.1421%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (77 samples, 0.02%)</title><rect x="60.8948%" y="629" width="0.0159%" height="15" fill="rgb(245,111,35)" fg:x="293986" fg:w="77"/><text x="61.1448%" y="639.50"></text></g><g><title>inode_get_bytes (103 samples, 0.02%)</title><rect x="60.9192%" y="629" width="0.0213%" height="15" fill="rgb(219,185,31)" fg:x="294104" fg:w="103"/><text x="61.1692%" y="639.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="60.9211%" y="613" width="0.0195%" height="15" fill="rgb(214,4,43)" fg:x="294113" fg:w="94"/><text x="61.1711%" y="623.50"></text></g><g><title>fill_stack_inode_item (178 samples, 0.04%)</title><rect x="60.9107%" y="645" width="0.0369%" height="15" fill="rgb(235,227,40)" fg:x="294063" fg:w="178"/><text x="61.1607%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (766 samples, 0.16%)</title><rect x="60.8111%" y="661" width="0.1587%" height="15" fill="rgb(230,88,30)" fg:x="293582" fg:w="766"/><text x="61.0611%" y="671.50"></text></g><g><title>mutex_unlock (62 samples, 0.01%)</title><rect x="60.9569%" y="645" width="0.0128%" height="15" fill="rgb(216,217,1)" fg:x="294286" fg:w="62"/><text x="61.2069%" y="655.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="60.9745%" y="645" width="0.0108%" height="15" fill="rgb(248,139,50)" fg:x="294371" fg:w="52"/><text x="61.2245%" y="655.50"></text></g><g><title>btrfs_update_inode (1,061 samples, 0.22%)</title><rect x="60.7908%" y="677" width="0.2198%" height="15" fill="rgb(233,1,21)" fg:x="293484" fg:w="1061"/><text x="61.0408%" y="687.50"></text></g><g><title>btrfs_update_root_times (197 samples, 0.04%)</title><rect x="60.9698%" y="661" width="0.0408%" height="15" fill="rgb(215,183,12)" fg:x="294348" fg:w="197"/><text x="61.2198%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (122 samples, 0.03%)</title><rect x="60.9853%" y="645" width="0.0253%" height="15" fill="rgb(229,104,42)" fg:x="294423" fg:w="122"/><text x="61.2353%" y="655.50"></text></g><g><title>read_tsc (84 samples, 0.02%)</title><rect x="60.9932%" y="629" width="0.0174%" height="15" fill="rgb(243,34,48)" fg:x="294461" fg:w="84"/><text x="61.2432%" y="639.50"></text></g><g><title>btrfs_add_link (21,507 samples, 4.45%)</title><rect x="56.5619%" y="693" width="4.4549%" height="15" fill="rgb(239,11,44)" fg:x="273068" fg:w="21507"/><text x="56.8119%" y="703.50">btrfs..</text></g><g><title>btrfs_balance_delayed_items (74 samples, 0.02%)</title><rect x="61.0240%" y="677" width="0.0153%" height="15" fill="rgb(231,98,35)" fg:x="294610" fg:w="74"/><text x="61.2740%" y="687.50"></text></g><g><title>enqueue_task_fair (72 samples, 0.01%)</title><rect x="61.0729%" y="613" width="0.0149%" height="15" fill="rgb(233,28,25)" fg:x="294846" fg:w="72"/><text x="61.3229%" y="623.50"></text></g><g><title>enqueue_entity (58 samples, 0.01%)</title><rect x="61.0758%" y="597" width="0.0120%" height="15" fill="rgb(234,123,11)" fg:x="294860" fg:w="58"/><text x="61.3258%" y="607.50"></text></g><g><title>ttwu_do_activate (122 samples, 0.03%)</title><rect x="61.0702%" y="629" width="0.0253%" height="15" fill="rgb(220,69,3)" fg:x="294833" fg:w="122"/><text x="61.3202%" y="639.50"></text></g><g><title>try_to_wake_up (212 samples, 0.04%)</title><rect x="61.0584%" y="645" width="0.0439%" height="15" fill="rgb(214,64,36)" fg:x="294776" fg:w="212"/><text x="61.3084%" y="655.50"></text></g><g><title>__queue_work (277 samples, 0.06%)</title><rect x="61.0452%" y="661" width="0.0574%" height="15" fill="rgb(211,138,32)" fg:x="294712" fg:w="277"/><text x="61.2952%" y="671.50"></text></g><g><title>btrfs_btree_balance_dirty (410 samples, 0.08%)</title><rect x="61.0178%" y="693" width="0.0849%" height="15" fill="rgb(213,118,47)" fg:x="294580" fg:w="410"/><text x="61.2678%" y="703.50"></text></g><g><title>queue_work_on (292 samples, 0.06%)</title><rect x="61.0423%" y="677" width="0.0605%" height="15" fill="rgb(243,124,49)" fg:x="294698" fg:w="292"/><text x="61.2923%" y="687.50"></text></g><g><title>btrfs_find_free_ino (117 samples, 0.02%)</title><rect x="61.1032%" y="693" width="0.0242%" height="15" fill="rgb(221,30,28)" fg:x="294992" fg:w="117"/><text x="61.3532%" y="703.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="61.1162%" y="677" width="0.0112%" height="15" fill="rgb(246,37,13)" fg:x="295055" fg:w="54"/><text x="61.3662%" y="687.50"></text></g><g><title>__wake_up_common (86 samples, 0.02%)</title><rect x="61.1369%" y="645" width="0.0178%" height="15" fill="rgb(249,66,14)" fg:x="295155" fg:w="86"/><text x="61.3869%" y="655.50"></text></g><g><title>autoremove_wake_function (83 samples, 0.02%)</title><rect x="61.1375%" y="629" width="0.0172%" height="15" fill="rgb(213,166,5)" fg:x="295158" fg:w="83"/><text x="61.3875%" y="639.50"></text></g><g><title>try_to_wake_up (83 samples, 0.02%)</title><rect x="61.1375%" y="613" width="0.0172%" height="15" fill="rgb(221,66,24)" fg:x="295158" fg:w="83"/><text x="61.3875%" y="623.50"></text></g><g><title>__wake_up_common_lock (91 samples, 0.02%)</title><rect x="61.1367%" y="661" width="0.0188%" height="15" fill="rgb(210,132,17)" fg:x="295154" fg:w="91"/><text x="61.3867%" y="671.50"></text></g><g><title>btrfs_tree_unlock (67 samples, 0.01%)</title><rect x="61.1556%" y="661" width="0.0139%" height="15" fill="rgb(243,202,5)" fg:x="295245" fg:w="67"/><text x="61.4056%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (211 samples, 0.04%)</title><rect x="61.1701%" y="661" width="0.0437%" height="15" fill="rgb(233,70,48)" fg:x="295315" fg:w="211"/><text x="61.4201%" y="671.50"></text></g><g><title>_raw_spin_lock (146 samples, 0.03%)</title><rect x="61.1835%" y="645" width="0.0302%" height="15" fill="rgb(238,41,26)" fg:x="295380" fg:w="146"/><text x="61.4335%" y="655.50"></text></g><g><title>btrfs_free_path (601 samples, 0.12%)</title><rect x="61.1274%" y="693" width="0.1245%" height="15" fill="rgb(241,19,31)" fg:x="295109" fg:w="601"/><text x="61.3774%" y="703.50"></text></g><g><title>btrfs_release_path (599 samples, 0.12%)</title><rect x="61.1278%" y="677" width="0.1241%" height="15" fill="rgb(214,76,10)" fg:x="295111" fg:w="599"/><text x="61.3778%" y="687.50"></text></g><g><title>release_extent_buffer (184 samples, 0.04%)</title><rect x="61.2138%" y="661" width="0.0381%" height="15" fill="rgb(254,202,22)" fg:x="295526" fg:w="184"/><text x="61.4638%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="61.3441%" y="645" width="0.0186%" height="15" fill="rgb(214,72,24)" fg:x="296155" fg:w="90"/><text x="61.5941%" y="655.50"></text></g><g><title>_raw_read_lock (64 samples, 0.01%)</title><rect x="61.3494%" y="629" width="0.0133%" height="15" fill="rgb(221,92,46)" fg:x="296181" fg:w="64"/><text x="61.5994%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (230 samples, 0.05%)</title><rect x="61.3403%" y="661" width="0.0476%" height="15" fill="rgb(246,13,50)" fg:x="296137" fg:w="230"/><text x="61.5903%" y="671.50"></text></g><g><title>btrfs_root_node (122 samples, 0.03%)</title><rect x="61.3627%" y="645" width="0.0253%" height="15" fill="rgb(240,165,38)" fg:x="296245" fg:w="122"/><text x="61.6127%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (160 samples, 0.03%)</title><rect x="61.3963%" y="661" width="0.0331%" height="15" fill="rgb(241,24,51)" fg:x="296407" fg:w="160"/><text x="61.6463%" y="671.50"></text></g><g><title>leaf_space_used (135 samples, 0.03%)</title><rect x="61.4014%" y="645" width="0.0280%" height="15" fill="rgb(227,51,44)" fg:x="296432" fg:w="135"/><text x="61.6514%" y="655.50"></text></g><g><title>btrfs_get_32 (98 samples, 0.02%)</title><rect x="61.4091%" y="629" width="0.0203%" height="15" fill="rgb(231,121,3)" fg:x="296469" fg:w="98"/><text x="61.6591%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (153 samples, 0.03%)</title><rect x="61.4294%" y="661" width="0.0317%" height="15" fill="rgb(245,3,41)" fg:x="296567" fg:w="153"/><text x="61.6794%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_write (62 samples, 0.01%)</title><rect x="61.4482%" y="645" width="0.0128%" height="15" fill="rgb(214,13,26)" fg:x="296658" fg:w="62"/><text x="61.6982%" y="655.50"></text></g><g><title>_raw_write_lock (130 samples, 0.03%)</title><rect x="61.4692%" y="645" width="0.0269%" height="15" fill="rgb(252,75,11)" fg:x="296759" fg:w="130"/><text x="61.7192%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (203 samples, 0.04%)</title><rect x="61.4611%" y="661" width="0.0420%" height="15" fill="rgb(218,226,17)" fg:x="296720" fg:w="203"/><text x="61.7111%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (806 samples, 0.17%)</title><rect x="61.5031%" y="661" width="0.1670%" height="15" fill="rgb(248,89,38)" fg:x="296923" fg:w="806"/><text x="61.7531%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (57 samples, 0.01%)</title><rect x="61.6999%" y="645" width="0.0118%" height="15" fill="rgb(237,73,46)" fg:x="297873" fg:w="57"/><text x="61.9499%" y="655.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="61.7117%" y="645" width="0.0246%" height="15" fill="rgb(242,78,33)" fg:x="297930" fg:w="119"/><text x="61.9617%" y="655.50"></text></g><g><title>__radix_tree_lookup (451 samples, 0.09%)</title><rect x="61.7875%" y="629" width="0.0934%" height="15" fill="rgb(235,60,3)" fg:x="298296" fg:w="451"/><text x="62.0375%" y="639.50"></text></g><g><title>check_buffer_tree_ref (67 samples, 0.01%)</title><rect x="61.8940%" y="613" width="0.0139%" height="15" fill="rgb(216,172,19)" fg:x="298810" fg:w="67"/><text x="62.1440%" y="623.50"></text></g><g><title>mark_page_accessed (165 samples, 0.03%)</title><rect x="61.9079%" y="613" width="0.0342%" height="15" fill="rgb(227,6,42)" fg:x="298877" fg:w="165"/><text x="62.1579%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (298 samples, 0.06%)</title><rect x="61.8810%" y="629" width="0.0617%" height="15" fill="rgb(223,207,42)" fg:x="298747" fg:w="298"/><text x="62.1310%" y="639.50"></text></g><g><title>find_extent_buffer (946 samples, 0.20%)</title><rect x="61.7486%" y="645" width="0.1959%" height="15" fill="rgb(246,138,30)" fg:x="298108" fg:w="946"/><text x="61.9986%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,496 samples, 0.31%)</title><rect x="61.6701%" y="661" width="0.3099%" height="15" fill="rgb(251,199,47)" fg:x="297729" fg:w="1496"/><text x="61.9201%" y="671.50"></text></g><g><title>read_extent_buffer (171 samples, 0.04%)</title><rect x="61.9445%" y="645" width="0.0354%" height="15" fill="rgb(228,218,44)" fg:x="299054" fg:w="171"/><text x="62.1945%" y="655.50"></text></g><g><title>pagecache_get_page (64 samples, 0.01%)</title><rect x="61.9909%" y="597" width="0.0133%" height="15" fill="rgb(220,68,6)" fg:x="299278" fg:w="64"/><text x="62.2409%" y="607.50"></text></g><g><title>alloc_extent_buffer (101 samples, 0.02%)</title><rect x="61.9851%" y="613" width="0.0209%" height="15" fill="rgb(240,60,26)" fg:x="299250" fg:w="101"/><text x="62.2351%" y="623.50"></text></g><g><title>btrfs_add_delayed_tree_ref (67 samples, 0.01%)</title><rect x="62.0061%" y="613" width="0.0139%" height="15" fill="rgb(211,200,19)" fg:x="299351" fg:w="67"/><text x="62.2561%" y="623.50"></text></g><g><title>btrfs_reserve_extent (60 samples, 0.01%)</title><rect x="62.0226%" y="613" width="0.0124%" height="15" fill="rgb(242,145,30)" fg:x="299431" fg:w="60"/><text x="62.2726%" y="623.50"></text></g><g><title>find_free_extent (55 samples, 0.01%)</title><rect x="62.0237%" y="597" width="0.0114%" height="15" fill="rgb(225,64,13)" fg:x="299436" fg:w="55"/><text x="62.2737%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (308 samples, 0.06%)</title><rect x="61.9827%" y="645" width="0.0638%" height="15" fill="rgb(218,103,35)" fg:x="299238" fg:w="308"/><text x="62.2327%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (306 samples, 0.06%)</title><rect x="61.9831%" y="629" width="0.0634%" height="15" fill="rgb(216,93,46)" fg:x="299240" fg:w="306"/><text x="62.2331%" y="639.50"></text></g><g><title>__set_page_dirty_nobuffers (74 samples, 0.02%)</title><rect x="62.0605%" y="597" width="0.0153%" height="15" fill="rgb(225,159,27)" fg:x="299614" fg:w="74"/><text x="62.3105%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (83 samples, 0.02%)</title><rect x="62.0593%" y="629" width="0.0172%" height="15" fill="rgb(225,204,11)" fg:x="299608" fg:w="83"/><text x="62.3093%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (80 samples, 0.02%)</title><rect x="62.0599%" y="613" width="0.0166%" height="15" fill="rgb(205,56,4)" fg:x="299611" fg:w="80"/><text x="62.3099%" y="623.50"></text></g><g><title>copy_extent_buffer (55 samples, 0.01%)</title><rect x="62.0821%" y="629" width="0.0114%" height="15" fill="rgb(206,6,35)" fg:x="299718" fg:w="55"/><text x="62.3321%" y="639.50"></text></g><g><title>read_extent_buffer (52 samples, 0.01%)</title><rect x="62.0827%" y="613" width="0.0108%" height="15" fill="rgb(247,73,52)" fg:x="299721" fg:w="52"/><text x="62.3327%" y="623.50"></text></g><g><title>copy_for_split (219 samples, 0.05%)</title><rect x="62.0504%" y="645" width="0.0454%" height="15" fill="rgb(246,97,4)" fg:x="299565" fg:w="219"/><text x="62.3004%" y="655.50"></text></g><g><title>btrfs_get_token_32 (63 samples, 0.01%)</title><rect x="62.1100%" y="613" width="0.0130%" height="15" fill="rgb(212,37,15)" fg:x="299853" fg:w="63"/><text x="62.3600%" y="623.50"></text></g><g><title>btrfs_set_token_32 (82 samples, 0.02%)</title><rect x="62.1239%" y="613" width="0.0170%" height="15" fill="rgb(208,130,40)" fg:x="299920" fg:w="82"/><text x="62.3739%" y="623.50"></text></g><g><title>__push_leaf_left (293 samples, 0.06%)</title><rect x="62.0974%" y="629" width="0.0607%" height="15" fill="rgb(236,55,29)" fg:x="299792" fg:w="293"/><text x="62.3474%" y="639.50"></text></g><g><title>push_leaf_left (350 samples, 0.07%)</title><rect x="62.0964%" y="645" width="0.0725%" height="15" fill="rgb(209,156,45)" fg:x="299787" fg:w="350"/><text x="62.3464%" y="655.50"></text></g><g><title>split_leaf (918 samples, 0.19%)</title><rect x="61.9800%" y="661" width="0.1901%" height="15" fill="rgb(249,107,4)" fg:x="299225" fg:w="918"/><text x="62.2300%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (82 samples, 0.02%)</title><rect x="62.2026%" y="645" width="0.0170%" height="15" fill="rgb(227,7,13)" fg:x="300300" fg:w="82"/><text x="62.4526%" y="655.50"></text></g><g><title>btrfs_search_slot (4,594 samples, 0.95%)</title><rect x="61.2738%" y="677" width="0.9516%" height="15" fill="rgb(250,129,14)" fg:x="295816" fg:w="4594"/><text x="61.5238%" y="687.50"></text></g><g><title>unlock_up (267 samples, 0.06%)</title><rect x="62.1701%" y="661" width="0.0553%" height="15" fill="rgb(229,92,13)" fg:x="300143" fg:w="267"/><text x="62.4201%" y="671.50"></text></g><g><title>btrfs_get_32 (111 samples, 0.02%)</title><rect x="62.3292%" y="661" width="0.0230%" height="15" fill="rgb(245,98,39)" fg:x="300911" fg:w="111"/><text x="62.5792%" y="671.50"></text></g><g><title>btrfs_get_token_32 (751 samples, 0.16%)</title><rect x="62.3522%" y="661" width="0.1556%" height="15" fill="rgb(234,135,48)" fg:x="301022" fg:w="751"/><text x="62.6022%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (190 samples, 0.04%)</title><rect x="62.4684%" y="645" width="0.0394%" height="15" fill="rgb(230,98,28)" fg:x="301583" fg:w="190"/><text x="62.7184%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (290 samples, 0.06%)</title><rect x="62.5077%" y="661" width="0.0601%" height="15" fill="rgb(223,121,0)" fg:x="301773" fg:w="290"/><text x="62.7577%" y="671.50"></text></g><g><title>leaf_space_used (259 samples, 0.05%)</title><rect x="62.5142%" y="645" width="0.0536%" height="15" fill="rgb(234,173,33)" fg:x="301804" fg:w="259"/><text x="62.7642%" y="655.50"></text></g><g><title>btrfs_get_32 (174 samples, 0.04%)</title><rect x="62.5318%" y="629" width="0.0360%" height="15" fill="rgb(245,47,8)" fg:x="301889" fg:w="174"/><text x="62.7818%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (149 samples, 0.03%)</title><rect x="62.5678%" y="661" width="0.0309%" height="15" fill="rgb(205,17,20)" fg:x="302063" fg:w="149"/><text x="62.8178%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="62.5775%" y="645" width="0.0211%" height="15" fill="rgb(232,151,16)" fg:x="302110" fg:w="102"/><text x="62.8275%" y="655.50"></text></g><g><title>btrfs_set_token_32 (874 samples, 0.18%)</title><rect x="62.5987%" y="661" width="0.1810%" height="15" fill="rgb(208,30,32)" fg:x="302212" fg:w="874"/><text x="62.8487%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (171 samples, 0.04%)</title><rect x="62.7443%" y="645" width="0.0354%" height="15" fill="rgb(254,26,3)" fg:x="302915" fg:w="171"/><text x="62.9943%" y="655.50"></text></g><g><title>memmove_extent_buffer (268 samples, 0.06%)</title><rect x="62.7915%" y="661" width="0.0555%" height="15" fill="rgb(240,177,30)" fg:x="303143" fg:w="268"/><text x="63.0415%" y="671.50"></text></g><g><title>memmove (187 samples, 0.04%)</title><rect x="62.8083%" y="645" width="0.0387%" height="15" fill="rgb(248,76,44)" fg:x="303224" fg:w="187"/><text x="63.0583%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (7,750 samples, 1.61%)</title><rect x="61.2649%" y="693" width="1.6053%" height="15" fill="rgb(241,186,54)" fg:x="295773" fg:w="7750"/><text x="61.5149%" y="703.50"></text></g><g><title>setup_items_for_insert (3,113 samples, 0.64%)</title><rect x="62.2254%" y="677" width="0.6448%" height="15" fill="rgb(249,171,29)" fg:x="300410" fg:w="3113"/><text x="62.4754%" y="687.50"></text></g><g><title>write_extent_buffer (112 samples, 0.02%)</title><rect x="62.8470%" y="661" width="0.0232%" height="15" fill="rgb(237,151,44)" fg:x="303411" fg:w="112"/><text x="63.0970%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (198 samples, 0.04%)</title><rect x="62.8702%" y="693" width="0.0410%" height="15" fill="rgb(228,174,30)" fg:x="303523" fg:w="198"/><text x="63.1202%" y="703.50"></text></g><g><title>set_extent_buffer_dirty (148 samples, 0.03%)</title><rect x="62.8806%" y="677" width="0.0307%" height="15" fill="rgb(252,14,37)" fg:x="303573" fg:w="148"/><text x="63.1306%" y="687.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="62.9707%" y="677" width="0.0141%" height="15" fill="rgb(207,111,40)" fg:x="304008" fg:w="68"/><text x="63.2207%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (218 samples, 0.05%)</title><rect x="62.9984%" y="645" width="0.0452%" height="15" fill="rgb(248,171,54)" fg:x="304142" fg:w="218"/><text x="63.2484%" y="655.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="63.0094%" y="629" width="0.0342%" height="15" fill="rgb(211,127,2)" fg:x="304195" fg:w="165"/><text x="63.2594%" y="639.50"></text></g><g><title>btrfs_free_path (462 samples, 0.10%)</title><rect x="62.9856%" y="677" width="0.0957%" height="15" fill="rgb(236,87,47)" fg:x="304080" fg:w="462"/><text x="63.2356%" y="687.50"></text></g><g><title>btrfs_release_path (454 samples, 0.09%)</title><rect x="62.9873%" y="661" width="0.0940%" height="15" fill="rgb(223,190,45)" fg:x="304088" fg:w="454"/><text x="63.2373%" y="671.50"></text></g><g><title>release_extent_buffer (182 samples, 0.04%)</title><rect x="63.0436%" y="645" width="0.0377%" height="15" fill="rgb(215,5,16)" fg:x="304360" fg:w="182"/><text x="63.2936%" y="655.50"></text></g><g><title>btrfs_get_32 (92 samples, 0.02%)</title><rect x="63.0813%" y="677" width="0.0191%" height="15" fill="rgb(252,82,33)" fg:x="304542" fg:w="92"/><text x="63.3313%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (102 samples, 0.02%)</title><rect x="63.1755%" y="629" width="0.0211%" height="15" fill="rgb(247,213,44)" fg:x="304997" fg:w="102"/><text x="63.4255%" y="639.50"></text></g><g><title>_raw_read_lock (71 samples, 0.01%)</title><rect x="63.1820%" y="613" width="0.0147%" height="15" fill="rgb(205,196,44)" fg:x="305028" fg:w="71"/><text x="63.4320%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (209 samples, 0.04%)</title><rect x="63.1729%" y="645" width="0.0433%" height="15" fill="rgb(237,96,54)" fg:x="304984" fg:w="209"/><text x="63.4229%" y="655.50"></text></g><g><title>btrfs_root_node (94 samples, 0.02%)</title><rect x="63.1967%" y="629" width="0.0195%" height="15" fill="rgb(230,113,34)" fg:x="305099" fg:w="94"/><text x="63.4467%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (183 samples, 0.04%)</title><rect x="63.2288%" y="645" width="0.0379%" height="15" fill="rgb(221,224,12)" fg:x="305254" fg:w="183"/><text x="63.4788%" y="655.50"></text></g><g><title>leaf_space_used (153 samples, 0.03%)</title><rect x="63.2350%" y="629" width="0.0317%" height="15" fill="rgb(219,112,44)" fg:x="305284" fg:w="153"/><text x="63.4850%" y="639.50"></text></g><g><title>btrfs_get_32 (108 samples, 0.02%)</title><rect x="63.2443%" y="613" width="0.0224%" height="15" fill="rgb(210,31,13)" fg:x="305329" fg:w="108"/><text x="63.4943%" y="623.50"></text></g><g><title>_raw_write_lock (110 samples, 0.02%)</title><rect x="63.2723%" y="629" width="0.0228%" height="15" fill="rgb(230,25,16)" fg:x="305464" fg:w="110"/><text x="63.5223%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (189 samples, 0.04%)</title><rect x="63.2677%" y="645" width="0.0391%" height="15" fill="rgb(246,108,53)" fg:x="305442" fg:w="189"/><text x="63.5177%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (57 samples, 0.01%)</title><rect x="63.2951%" y="629" width="0.0118%" height="15" fill="rgb(241,172,50)" fg:x="305574" fg:w="57"/><text x="63.5451%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (807 samples, 0.17%)</title><rect x="63.3069%" y="645" width="0.1672%" height="15" fill="rgb(235,141,10)" fg:x="305631" fg:w="807"/><text x="63.5569%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (78 samples, 0.02%)</title><rect x="63.4966%" y="629" width="0.0162%" height="15" fill="rgb(220,174,43)" fg:x="306547" fg:w="78"/><text x="63.7466%" y="639.50"></text></g><g><title>verify_parent_transid (56 samples, 0.01%)</title><rect x="63.5012%" y="613" width="0.0116%" height="15" fill="rgb(215,181,40)" fg:x="306569" fg:w="56"/><text x="63.7512%" y="623.50"></text></g><g><title>btrfs_get_64 (135 samples, 0.03%)</title><rect x="63.5128%" y="629" width="0.0280%" height="15" fill="rgb(230,97,2)" fg:x="306625" fg:w="135"/><text x="63.7628%" y="639.50"></text></g><g><title>btrfs_verify_level_key (50 samples, 0.01%)</title><rect x="63.5428%" y="629" width="0.0104%" height="15" fill="rgb(211,25,27)" fg:x="306770" fg:w="50"/><text x="63.7928%" y="639.50"></text></g><g><title>__radix_tree_lookup (474 samples, 0.10%)</title><rect x="63.6099%" y="613" width="0.0982%" height="15" fill="rgb(230,87,26)" fg:x="307094" fg:w="474"/><text x="63.8599%" y="623.50"></text></g><g><title>check_buffer_tree_ref (62 samples, 0.01%)</title><rect x="63.7180%" y="597" width="0.0128%" height="15" fill="rgb(227,160,17)" fg:x="307616" fg:w="62"/><text x="63.9680%" y="607.50"></text></g><g><title>mark_page_accessed (193 samples, 0.04%)</title><rect x="63.7309%" y="597" width="0.0400%" height="15" fill="rgb(244,85,34)" fg:x="307678" fg:w="193"/><text x="63.9809%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (309 samples, 0.06%)</title><rect x="63.7083%" y="613" width="0.0640%" height="15" fill="rgb(207,70,0)" fg:x="307569" fg:w="309"/><text x="63.9583%" y="623.50"></text></g><g><title>find_extent_buffer (1,066 samples, 0.22%)</title><rect x="63.5532%" y="629" width="0.2208%" height="15" fill="rgb(223,129,7)" fg:x="306820" fg:w="1066"/><text x="63.8032%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,593 samples, 0.33%)</title><rect x="63.4740%" y="645" width="0.3300%" height="15" fill="rgb(246,105,7)" fg:x="306438" fg:w="1593"/><text x="63.7240%" y="655.50"></text></g><g><title>read_extent_buffer (145 samples, 0.03%)</title><rect x="63.7740%" y="629" width="0.0300%" height="15" fill="rgb(215,154,42)" fg:x="307886" fg:w="145"/><text x="64.0240%" y="639.50"></text></g><g><title>pagecache_get_page (73 samples, 0.02%)</title><rect x="63.8193%" y="581" width="0.0151%" height="15" fill="rgb(220,215,30)" fg:x="308105" fg:w="73"/><text x="64.0693%" y="591.50"></text></g><g><title>alloc_extent_buffer (133 samples, 0.03%)</title><rect x="63.8098%" y="597" width="0.0275%" height="15" fill="rgb(228,81,51)" fg:x="308059" fg:w="133"/><text x="64.0598%" y="607.50"></text></g><g><title>btrfs_add_delayed_tree_ref (61 samples, 0.01%)</title><rect x="63.8373%" y="597" width="0.0126%" height="15" fill="rgb(247,71,54)" fg:x="308192" fg:w="61"/><text x="64.0873%" y="607.50"></text></g><g><title>btrfs_reserve_extent (75 samples, 0.02%)</title><rect x="63.8533%" y="597" width="0.0155%" height="15" fill="rgb(234,176,34)" fg:x="308269" fg:w="75"/><text x="64.1033%" y="607.50"></text></g><g><title>find_free_extent (65 samples, 0.01%)</title><rect x="63.8554%" y="581" width="0.0135%" height="15" fill="rgb(241,103,54)" fg:x="308279" fg:w="65"/><text x="64.1054%" y="591.50"></text></g><g><title>set_extent_bit (70 samples, 0.01%)</title><rect x="63.8707%" y="597" width="0.0145%" height="15" fill="rgb(228,22,34)" fg:x="308353" fg:w="70"/><text x="64.1207%" y="607.50"></text></g><g><title>__set_extent_bit (70 samples, 0.01%)</title><rect x="63.8707%" y="581" width="0.0145%" height="15" fill="rgb(241,179,48)" fg:x="308353" fg:w="70"/><text x="64.1207%" y="591.50"></text></g><g><title>alloc_tree_block_no_bg_flush (383 samples, 0.08%)</title><rect x="63.8069%" y="629" width="0.0793%" height="15" fill="rgb(235,167,37)" fg:x="308045" fg:w="383"/><text x="64.0569%" y="639.50"></text></g><g><title>btrfs_alloc_tree_block (382 samples, 0.08%)</title><rect x="63.8071%" y="613" width="0.0791%" height="15" fill="rgb(213,109,30)" fg:x="308046" fg:w="382"/><text x="64.0571%" y="623.50"></text></g><g><title>__set_page_dirty_nobuffers (52 samples, 0.01%)</title><rect x="63.8991%" y="581" width="0.0108%" height="15" fill="rgb(222,172,16)" fg:x="308490" fg:w="52"/><text x="64.1491%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (67 samples, 0.01%)</title><rect x="63.8968%" y="613" width="0.0139%" height="15" fill="rgb(233,192,5)" fg:x="308479" fg:w="67"/><text x="64.1468%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (63 samples, 0.01%)</title><rect x="63.8976%" y="597" width="0.0130%" height="15" fill="rgb(247,189,41)" fg:x="308483" fg:w="63"/><text x="64.1476%" y="607.50"></text></g><g><title>copy_extent_buffer (59 samples, 0.01%)</title><rect x="63.9171%" y="613" width="0.0122%" height="15" fill="rgb(218,134,47)" fg:x="308577" fg:w="59"/><text x="64.1671%" y="623.50"></text></g><g><title>read_extent_buffer (57 samples, 0.01%)</title><rect x="63.9175%" y="597" width="0.0118%" height="15" fill="rgb(216,29,3)" fg:x="308579" fg:w="57"/><text x="64.1675%" y="607.50"></text></g><g><title>copy_for_split (201 samples, 0.04%)</title><rect x="63.8900%" y="629" width="0.0416%" height="15" fill="rgb(246,140,12)" fg:x="308446" fg:w="201"/><text x="64.1400%" y="639.50"></text></g><g><title>btrfs_get_token_32 (54 samples, 0.01%)</title><rect x="63.9486%" y="597" width="0.0112%" height="15" fill="rgb(230,136,11)" fg:x="308729" fg:w="54"/><text x="64.1986%" y="607.50"></text></g><g><title>btrfs_set_token_32 (82 samples, 0.02%)</title><rect x="63.9610%" y="597" width="0.0170%" height="15" fill="rgb(247,22,47)" fg:x="308789" fg:w="82"/><text x="64.2110%" y="607.50"></text></g><g><title>__push_leaf_left (302 samples, 0.06%)</title><rect x="63.9349%" y="613" width="0.0626%" height="15" fill="rgb(218,84,22)" fg:x="308663" fg:w="302"/><text x="64.1849%" y="623.50"></text></g><g><title>push_leaf_left (376 samples, 0.08%)</title><rect x="63.9320%" y="629" width="0.0779%" height="15" fill="rgb(216,87,39)" fg:x="308649" fg:w="376"/><text x="64.1820%" y="639.50"></text></g><g><title>split_leaf (1,005 samples, 0.21%)</title><rect x="63.8040%" y="645" width="0.2082%" height="15" fill="rgb(221,178,8)" fg:x="308031" fg:w="1005"/><text x="64.0540%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (88 samples, 0.02%)</title><rect x="64.0501%" y="629" width="0.0182%" height="15" fill="rgb(230,42,11)" fg:x="309219" fg:w="88"/><text x="64.3001%" y="639.50"></text></g><g><title>btrfs_search_slot (4,649 samples, 0.96%)</title><rect x="63.1091%" y="661" width="0.9630%" height="15" fill="rgb(237,229,4)" fg:x="304676" fg:w="4649"/><text x="63.3591%" y="671.50"></text></g><g><title>unlock_up (289 samples, 0.06%)</title><rect x="64.0122%" y="645" width="0.0599%" height="15" fill="rgb(222,31,33)" fg:x="309036" fg:w="289"/><text x="64.2622%" y="655.50"></text></g><g><title>btrfs_get_32 (135 samples, 0.03%)</title><rect x="64.1874%" y="645" width="0.0280%" height="15" fill="rgb(210,17,39)" fg:x="309882" fg:w="135"/><text x="64.4374%" y="655.50"></text></g><g><title>btrfs_get_token_32 (838 samples, 0.17%)</title><rect x="64.2154%" y="645" width="0.1736%" height="15" fill="rgb(244,93,20)" fg:x="310017" fg:w="838"/><text x="64.4654%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (186 samples, 0.04%)</title><rect x="64.3504%" y="629" width="0.0385%" height="15" fill="rgb(210,40,47)" fg:x="310669" fg:w="186"/><text x="64.6004%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (315 samples, 0.07%)</title><rect x="64.3889%" y="645" width="0.0652%" height="15" fill="rgb(239,211,47)" fg:x="310855" fg:w="315"/><text x="64.6389%" y="655.50"></text></g><g><title>leaf_space_used (268 samples, 0.06%)</title><rect x="64.3987%" y="629" width="0.0555%" height="15" fill="rgb(251,223,49)" fg:x="310902" fg:w="268"/><text x="64.6487%" y="639.50"></text></g><g><title>btrfs_get_32 (175 samples, 0.04%)</title><rect x="64.4179%" y="613" width="0.0362%" height="15" fill="rgb(221,149,5)" fg:x="310995" fg:w="175"/><text x="64.6679%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (265 samples, 0.05%)</title><rect x="64.4542%" y="645" width="0.0549%" height="15" fill="rgb(219,224,51)" fg:x="311170" fg:w="265"/><text x="64.7042%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (119 samples, 0.02%)</title><rect x="64.4844%" y="629" width="0.0246%" height="15" fill="rgb(223,7,8)" fg:x="311316" fg:w="119"/><text x="64.7344%" y="639.50"></text></g><g><title>btrfs_set_token_32 (877 samples, 0.18%)</title><rect x="64.5091%" y="645" width="0.1817%" height="15" fill="rgb(241,217,22)" fg:x="311435" fg:w="877"/><text x="64.7591%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (170 samples, 0.04%)</title><rect x="64.6555%" y="629" width="0.0352%" height="15" fill="rgb(248,209,0)" fg:x="312142" fg:w="170"/><text x="64.9055%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (58 samples, 0.01%)</title><rect x="64.6907%" y="645" width="0.0120%" height="15" fill="rgb(217,205,4)" fg:x="312312" fg:w="58"/><text x="64.9407%" y="655.50"></text></g><g><title>memmove_extent_buffer (314 samples, 0.07%)</title><rect x="64.7059%" y="645" width="0.0650%" height="15" fill="rgb(228,124,39)" fg:x="312385" fg:w="314"/><text x="64.9559%" y="655.50"></text></g><g><title>memmove (193 samples, 0.04%)</title><rect x="64.7309%" y="629" width="0.0400%" height="15" fill="rgb(250,116,42)" fg:x="312506" fg:w="193"/><text x="64.9809%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (8,286 samples, 1.72%)</title><rect x="63.1026%" y="677" width="1.7163%" height="15" fill="rgb(223,202,9)" fg:x="304645" fg:w="8286"/><text x="63.3526%" y="687.50"></text></g><g><title>setup_items_for_insert (3,606 samples, 0.75%)</title><rect x="64.0720%" y="661" width="0.7469%" height="15" fill="rgb(242,222,40)" fg:x="309325" fg:w="3606"/><text x="64.3220%" y="671.50"></text></g><g><title>write_extent_buffer (232 samples, 0.05%)</title><rect x="64.7709%" y="645" width="0.0481%" height="15" fill="rgb(229,99,46)" fg:x="312699" fg:w="232"/><text x="65.0209%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (167 samples, 0.03%)</title><rect x="64.8190%" y="677" width="0.0346%" height="15" fill="rgb(225,56,46)" fg:x="312931" fg:w="167"/><text x="65.0690%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (109 samples, 0.02%)</title><rect x="64.8310%" y="661" width="0.0226%" height="15" fill="rgb(227,94,5)" fg:x="312989" fg:w="109"/><text x="65.0810%" y="671.50"></text></g><g><title>btrfs_set_16 (59 samples, 0.01%)</title><rect x="64.8535%" y="677" width="0.0122%" height="15" fill="rgb(205,112,38)" fg:x="313098" fg:w="59"/><text x="65.1035%" y="687.50"></text></g><g><title>btrfs_set_64 (50 samples, 0.01%)</title><rect x="64.8658%" y="677" width="0.0104%" height="15" fill="rgb(231,133,46)" fg:x="313157" fg:w="50"/><text x="65.1158%" y="687.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (88 samples, 0.02%)</title><rect x="64.8761%" y="677" width="0.0182%" height="15" fill="rgb(217,16,9)" fg:x="313207" fg:w="88"/><text x="65.1261%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="64.8989%" y="661" width="0.0133%" height="15" fill="rgb(249,173,9)" fg:x="313317" fg:w="64"/><text x="65.1489%" y="671.50"></text></g><g><title>btrfs_update_root_times (215 samples, 0.04%)</title><rect x="64.8944%" y="677" width="0.0445%" height="15" fill="rgb(205,163,53)" fg:x="313295" fg:w="215"/><text x="65.1444%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (129 samples, 0.03%)</title><rect x="64.9122%" y="661" width="0.0267%" height="15" fill="rgb(217,54,41)" fg:x="313381" fg:w="129"/><text x="65.1622%" y="671.50"></text></g><g><title>read_tsc (80 samples, 0.02%)</title><rect x="64.9223%" y="645" width="0.0166%" height="15" fill="rgb(228,216,12)" fg:x="313430" fg:w="80"/><text x="65.1723%" y="655.50"></text></g><g><title>current_time (122 samples, 0.03%)</title><rect x="64.9389%" y="677" width="0.0253%" height="15" fill="rgb(244,228,15)" fg:x="313510" fg:w="122"/><text x="65.1889%" y="687.50"></text></g><g><title>ktime_get_coarse_real_ts64 (66 samples, 0.01%)</title><rect x="64.9505%" y="661" width="0.0137%" height="15" fill="rgb(221,176,53)" fg:x="313566" fg:w="66"/><text x="65.2005%" y="671.50"></text></g><g><title>btrfs_set_token_32 (348 samples, 0.07%)</title><rect x="65.0118%" y="661" width="0.0721%" height="15" fill="rgb(205,94,34)" fg:x="313862" fg:w="348"/><text x="65.2618%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (67 samples, 0.01%)</title><rect x="65.0700%" y="645" width="0.0139%" height="15" fill="rgb(213,110,48)" fg:x="314143" fg:w="67"/><text x="65.3200%" y="655.50"></text></g><g><title>btrfs_set_token_64 (519 samples, 0.11%)</title><rect x="65.0839%" y="661" width="0.1075%" height="15" fill="rgb(236,142,28)" fg:x="314210" fg:w="519"/><text x="65.3339%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (94 samples, 0.02%)</title><rect x="65.1719%" y="645" width="0.0195%" height="15" fill="rgb(225,135,29)" fg:x="314635" fg:w="94"/><text x="65.4219%" y="655.50"></text></g><g><title>inode_get_bytes (66 samples, 0.01%)</title><rect x="65.1926%" y="661" width="0.0137%" height="15" fill="rgb(252,45,31)" fg:x="314735" fg:w="66"/><text x="65.4426%" y="671.50"></text></g><g><title>fill_inode_item (1,223 samples, 0.25%)</title><rect x="64.9642%" y="677" width="0.2533%" height="15" fill="rgb(211,187,50)" fg:x="313632" fg:w="1223"/><text x="65.2142%" y="687.50"></text></g><g><title>map_id_up (54 samples, 0.01%)</title><rect x="65.2063%" y="661" width="0.0112%" height="15" fill="rgb(229,109,7)" fg:x="314801" fg:w="54"/><text x="65.4563%" y="671.50"></text></g><g><title>inode_init_owner (72 samples, 0.01%)</title><rect x="65.2235%" y="677" width="0.0149%" height="15" fill="rgb(251,131,51)" fg:x="314884" fg:w="72"/><text x="65.4735%" y="687.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="65.5721%" y="661" width="0.0110%" height="15" fill="rgb(251,180,35)" fg:x="316567" fg:w="53"/><text x="65.8221%" y="671.50"></text></g><g><title>inode_tree_add (1,880 samples, 0.39%)</title><rect x="65.2392%" y="677" width="0.3894%" height="15" fill="rgb(211,46,32)" fg:x="314960" fg:w="1880"/><text x="65.4892%" y="687.50"></text></g><g><title>rb_insert_color (217 samples, 0.04%)</title><rect x="65.5837%" y="661" width="0.0449%" height="15" fill="rgb(248,123,17)" fg:x="316623" fg:w="217"/><text x="65.8337%" y="671.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.03%)</title><rect x="65.6407%" y="645" width="0.0259%" height="15" fill="rgb(227,141,18)" fg:x="316898" fg:w="125"/><text x="65.8907%" y="655.50"></text></g><g><title>insert_inode_locked4 (506 samples, 0.10%)</title><rect x="65.6286%" y="677" width="0.1048%" height="15" fill="rgb(216,102,9)" fg:x="316840" fg:w="506"/><text x="65.8786%" y="687.50"></text></g><g><title>inode_insert5 (502 samples, 0.10%)</title><rect x="65.6295%" y="661" width="0.1040%" height="15" fill="rgb(253,47,13)" fg:x="316844" fg:w="502"/><text x="65.8795%" y="671.50"></text></g><g><title>find_inode (323 samples, 0.07%)</title><rect x="65.6665%" y="645" width="0.0669%" height="15" fill="rgb(226,93,23)" fg:x="317023" fg:w="323"/><text x="65.9165%" y="655.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="65.7506%" y="661" width="0.0126%" height="15" fill="rgb(247,104,17)" fg:x="317429" fg:w="61"/><text x="66.0006%" y="671.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.04%)</title><rect x="65.7335%" y="677" width="0.0350%" height="15" fill="rgb(233,203,26)" fg:x="317346" fg:w="169"/><text x="65.9835%" y="687.50"></text></g><g><title>kmem_cache_free (105 samples, 0.02%)</title><rect x="65.7685%" y="677" width="0.0217%" height="15" fill="rgb(244,98,49)" fg:x="317515" fg:w="105"/><text x="66.0185%" y="687.50"></text></g><g><title>memzero_extent_buffer (154 samples, 0.03%)</title><rect x="65.7902%" y="677" width="0.0319%" height="15" fill="rgb(235,134,22)" fg:x="317620" fg:w="154"/><text x="66.0402%" y="687.50"></text></g><g><title>_raw_spin_lock (337 samples, 0.07%)</title><rect x="65.8292%" y="661" width="0.0698%" height="15" fill="rgb(221,70,32)" fg:x="317808" fg:w="337"/><text x="66.0792%" y="671.50"></text></g><g><title>btrfs_init_metadata_block_rsv (138 samples, 0.03%)</title><rect x="65.9387%" y="629" width="0.0286%" height="15" fill="rgb(238,15,50)" fg:x="318337" fg:w="138"/><text x="66.1887%" y="639.50"></text></g><g><title>btrfs_find_space_info (79 samples, 0.02%)</title><rect x="65.9509%" y="613" width="0.0164%" height="15" fill="rgb(215,221,48)" fg:x="318396" fg:w="79"/><text x="66.2009%" y="623.50"></text></g><g><title>__slab_alloc (106 samples, 0.02%)</title><rect x="66.0201%" y="613" width="0.0220%" height="15" fill="rgb(236,73,3)" fg:x="318730" fg:w="106"/><text x="66.2701%" y="623.50"></text></g><g><title>___slab_alloc (98 samples, 0.02%)</title><rect x="66.0218%" y="597" width="0.0203%" height="15" fill="rgb(250,107,11)" fg:x="318738" fg:w="98"/><text x="66.2718%" y="607.50"></text></g><g><title>__mod_memcg_lruvec_state (79 samples, 0.02%)</title><rect x="66.0978%" y="597" width="0.0164%" height="15" fill="rgb(242,39,14)" fg:x="319105" fg:w="79"/><text x="66.3478%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (363 samples, 0.08%)</title><rect x="66.0423%" y="613" width="0.0752%" height="15" fill="rgb(248,164,37)" fg:x="318837" fg:w="363"/><text x="66.2923%" y="623.50"></text></g><g><title>get_obj_cgroup_from_current (109 samples, 0.02%)</title><rect x="66.1268%" y="597" width="0.0226%" height="15" fill="rgb(217,60,12)" fg:x="319245" fg:w="109"/><text x="66.3768%" y="607.50"></text></g><g><title>obj_cgroup_charge (209 samples, 0.04%)</title><rect x="66.1494%" y="597" width="0.0433%" height="15" fill="rgb(240,125,29)" fg:x="319354" fg:w="209"/><text x="66.3994%" y="607.50"></text></g><g><title>btrfs_alloc_inode (1,355 samples, 0.28%)</title><rect x="65.9126%" y="645" width="0.2807%" height="15" fill="rgb(208,207,28)" fg:x="318211" fg:w="1355"/><text x="66.1626%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,044 samples, 0.22%)</title><rect x="65.9770%" y="629" width="0.2162%" height="15" fill="rgb(209,159,27)" fg:x="318522" fg:w="1044"/><text x="66.2270%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (366 samples, 0.08%)</title><rect x="66.1175%" y="613" width="0.0758%" height="15" fill="rgb(251,176,53)" fg:x="319200" fg:w="366"/><text x="66.3675%" y="623.50"></text></g><g><title>alloc_inode (1,877 samples, 0.39%)</title><rect x="65.8990%" y="661" width="0.3888%" height="15" fill="rgb(211,85,7)" fg:x="318145" fg:w="1877"/><text x="66.1490%" y="671.50"></text></g><g><title>inode_init_always (456 samples, 0.09%)</title><rect x="66.1933%" y="645" width="0.0945%" height="15" fill="rgb(216,64,54)" fg:x="319566" fg:w="456"/><text x="66.4433%" y="655.50"></text></g><g><title>security_inode_alloc (84 samples, 0.02%)</title><rect x="66.2703%" y="629" width="0.0174%" height="15" fill="rgb(217,54,24)" fg:x="319938" fg:w="84"/><text x="66.5203%" y="639.50"></text></g><g><title>new_inode (2,333 samples, 0.48%)</title><rect x="65.8221%" y="677" width="0.4832%" height="15" fill="rgb(208,206,53)" fg:x="317774" fg:w="2333"/><text x="66.0721%" y="687.50"></text></g><g><title>inode_sb_list_add (85 samples, 0.02%)</title><rect x="66.2877%" y="661" width="0.0176%" height="15" fill="rgb(251,74,39)" fg:x="320022" fg:w="85"/><text x="66.5377%" y="671.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="66.2940%" y="645" width="0.0114%" height="15" fill="rgb(226,47,5)" fg:x="320052" fg:w="55"/><text x="66.5440%" y="655.50"></text></g><g><title>btrfs_new_inode (16,537 samples, 3.43%)</title><rect x="62.9112%" y="693" width="3.4254%" height="15" fill="rgb(234,111,33)" fg:x="303721" fg:w="16537"/><text x="63.1612%" y="703.50">btr..</text></g><g><title>write_extent_buffer (151 samples, 0.03%)</title><rect x="66.3054%" y="677" width="0.0313%" height="15" fill="rgb(251,14,10)" fg:x="320107" fg:w="151"/><text x="66.5554%" y="687.50"></text></g><g><title>btrfs_set_64 (78 samples, 0.02%)</title><rect x="66.3439%" y="693" width="0.0162%" height="15" fill="rgb(232,43,0)" fg:x="320293" fg:w="78"/><text x="66.5939%" y="703.50"></text></g><g><title>btrfs_set_8 (80 samples, 0.02%)</title><rect x="66.3600%" y="693" width="0.0166%" height="15" fill="rgb(222,68,43)" fg:x="320371" fg:w="80"/><text x="66.6100%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="66.4897%" y="645" width="0.0128%" height="15" fill="rgb(217,24,23)" fg:x="320997" fg:w="62"/><text x="66.7397%" y="655.50"></text></g><g><title>mutex_lock (78 samples, 0.02%)</title><rect x="66.5025%" y="645" width="0.0162%" height="15" fill="rgb(229,209,14)" fg:x="321059" fg:w="78"/><text x="66.7525%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (432 samples, 0.09%)</title><rect x="66.4387%" y="661" width="0.0895%" height="15" fill="rgb(250,149,48)" fg:x="320751" fg:w="432"/><text x="66.6887%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (140 samples, 0.03%)</title><rect x="66.5282%" y="661" width="0.0290%" height="15" fill="rgb(210,120,37)" fg:x="321183" fg:w="140"/><text x="66.7782%" y="671.50"></text></g><g><title>_raw_spin_lock (122 samples, 0.03%)</title><rect x="66.5320%" y="645" width="0.0253%" height="15" fill="rgb(210,21,8)" fg:x="321201" fg:w="122"/><text x="66.7820%" y="655.50"></text></g><g><title>_raw_spin_lock (293 samples, 0.06%)</title><rect x="66.5773%" y="645" width="0.0607%" height="15" fill="rgb(243,145,7)" fg:x="321420" fg:w="293"/><text x="66.8273%" y="655.50"></text></g><g><title>__radix_tree_lookup (567 samples, 0.12%)</title><rect x="66.6451%" y="629" width="0.1174%" height="15" fill="rgb(238,178,32)" fg:x="321747" fg:w="567"/><text x="66.8951%" y="639.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="66.7625%" y="629" width="0.0116%" height="15" fill="rgb(222,4,10)" fg:x="322314" fg:w="56"/><text x="67.0125%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (660 samples, 0.14%)</title><rect x="66.6382%" y="645" width="0.1367%" height="15" fill="rgb(239,7,37)" fg:x="321714" fg:w="660"/><text x="66.8882%" y="655.50"></text></g><g><title>__slab_alloc (117 samples, 0.02%)</title><rect x="66.7975%" y="629" width="0.0242%" height="15" fill="rgb(215,31,37)" fg:x="322483" fg:w="117"/><text x="67.0475%" y="639.50"></text></g><g><title>___slab_alloc (111 samples, 0.02%)</title><rect x="66.7987%" y="613" width="0.0230%" height="15" fill="rgb(224,83,33)" fg:x="322489" fg:w="111"/><text x="67.0487%" y="623.50"></text></g><g><title>memset_erms (92 samples, 0.02%)</title><rect x="66.8242%" y="629" width="0.0191%" height="15" fill="rgb(239,55,3)" fg:x="322612" fg:w="92"/><text x="67.0742%" y="639.50"></text></g><g><title>kmem_cache_alloc (367 samples, 0.08%)</title><rect x="66.7749%" y="645" width="0.0760%" height="15" fill="rgb(247,92,11)" fg:x="322374" fg:w="367"/><text x="67.0249%" y="655.50"></text></g><g><title>radix_tree_insert (178 samples, 0.04%)</title><rect x="66.8509%" y="645" width="0.0369%" height="15" fill="rgb(239,200,7)" fg:x="322741" fg:w="178"/><text x="67.1009%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,598 samples, 0.33%)</title><rect x="66.5572%" y="661" width="0.3310%" height="15" fill="rgb(227,115,8)" fg:x="321323" fg:w="1598"/><text x="66.8072%" y="671.50"></text></g><g><title>inode_get_bytes (104 samples, 0.02%)</title><rect x="66.8930%" y="645" width="0.0215%" height="15" fill="rgb(215,189,27)" fg:x="322944" fg:w="104"/><text x="67.1430%" y="655.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="66.8951%" y="629" width="0.0195%" height="15" fill="rgb(251,216,39)" fg:x="322954" fg:w="94"/><text x="67.1451%" y="639.50"></text></g><g><title>fill_stack_inode_item (160 samples, 0.03%)</title><rect x="66.8882%" y="661" width="0.0331%" height="15" fill="rgb(207,29,47)" fg:x="322921" fg:w="160"/><text x="67.1382%" y="671.50"></text></g><g><title>mutex_lock (120 samples, 0.02%)</title><rect x="66.9214%" y="661" width="0.0249%" height="15" fill="rgb(210,71,34)" fg:x="323081" fg:w="120"/><text x="67.1714%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (2,684 samples, 0.56%)</title><rect x="66.4000%" y="677" width="0.5560%" height="15" fill="rgb(253,217,51)" fg:x="320564" fg:w="2684"/><text x="66.6500%" y="687.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="66.9607%" y="661" width="0.0114%" height="15" fill="rgb(222,117,46)" fg:x="323271" fg:w="55"/><text x="67.2107%" y="671.50"></text></g><g><title>btrfs_update_inode (2,973 samples, 0.62%)</title><rect x="66.3799%" y="693" width="0.6158%" height="15" fill="rgb(226,132,6)" fg:x="320467" fg:w="2973"/><text x="66.6299%" y="703.50"></text></g><g><title>btrfs_update_root_times (192 samples, 0.04%)</title><rect x="66.9560%" y="677" width="0.0398%" height="15" fill="rgb(254,145,51)" fg:x="323248" fg:w="192"/><text x="67.2060%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (114 samples, 0.02%)</title><rect x="66.9721%" y="661" width="0.0236%" height="15" fill="rgb(231,199,27)" fg:x="323326" fg:w="114"/><text x="67.2221%" y="671.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="66.9827%" y="645" width="0.0130%" height="15" fill="rgb(245,158,14)" fg:x="323377" fg:w="63"/><text x="67.2327%" y="655.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="67.0272%" y="661" width="0.0106%" height="15" fill="rgb(240,113,14)" fg:x="323592" fg:w="51"/><text x="67.2772%" y="671.50"></text></g><g><title>__d_instantiate (119 samples, 0.02%)</title><rect x="67.0167%" y="677" width="0.0246%" height="15" fill="rgb(210,20,13)" fg:x="323541" fg:w="119"/><text x="67.2667%" y="687.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="67.0413%" y="677" width="0.0106%" height="15" fill="rgb(241,144,13)" fg:x="323660" fg:w="51"/><text x="67.2913%" y="687.50"></text></g><g><title>d_instantiate_new (297 samples, 0.06%)</title><rect x="66.9980%" y="693" width="0.0615%" height="15" fill="rgb(235,43,34)" fg:x="323451" fg:w="297"/><text x="67.2480%" y="703.50"></text></g><g><title>memset_erms (64 samples, 0.01%)</title><rect x="67.0863%" y="677" width="0.0133%" height="15" fill="rgb(208,36,20)" fg:x="323877" fg:w="64"/><text x="67.3363%" y="687.50"></text></g><g><title>kmem_cache_alloc (220 samples, 0.05%)</title><rect x="67.0616%" y="693" width="0.0456%" height="15" fill="rgb(239,204,10)" fg:x="323758" fg:w="220"/><text x="67.3116%" y="703.50"></text></g><g><title>kmem_cache_free (123 samples, 0.03%)</title><rect x="67.1072%" y="693" width="0.0255%" height="15" fill="rgb(217,84,43)" fg:x="323978" fg:w="123"/><text x="67.3572%" y="703.50"></text></g><g><title>security_inode_init_security (128 samples, 0.03%)</title><rect x="67.1327%" y="693" width="0.0265%" height="15" fill="rgb(241,170,50)" fg:x="324101" fg:w="128"/><text x="67.3827%" y="703.50"></text></g><g><title>_raw_spin_lock (75 samples, 0.02%)</title><rect x="67.2455%" y="661" width="0.0155%" height="15" fill="rgb(226,205,29)" fg:x="324646" fg:w="75"/><text x="67.4955%" y="671.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="67.2822%" y="629" width="0.0217%" height="15" fill="rgb(233,113,1)" fg:x="324823" fg:w="105"/><text x="67.5322%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (531 samples, 0.11%)</title><rect x="67.3040%" y="629" width="0.1100%" height="15" fill="rgb(253,98,13)" fg:x="324928" fg:w="531"/><text x="67.5540%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (270 samples, 0.06%)</title><rect x="67.3580%" y="613" width="0.0559%" height="15" fill="rgb(211,115,12)" fg:x="325189" fg:w="270"/><text x="67.6080%" y="623.50"></text></g><g><title>_raw_spin_lock (113 samples, 0.02%)</title><rect x="67.3905%" y="597" width="0.0234%" height="15" fill="rgb(208,12,16)" fg:x="325346" fg:w="113"/><text x="67.6405%" y="607.50"></text></g><g><title>_raw_spin_lock (77 samples, 0.02%)</title><rect x="67.4562%" y="597" width="0.0159%" height="15" fill="rgb(237,193,54)" fg:x="325663" fg:w="77"/><text x="67.7062%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (1,118 samples, 0.23%)</title><rect x="67.2408%" y="677" width="0.2316%" height="15" fill="rgb(243,22,42)" fg:x="324623" fg:w="1118"/><text x="67.4908%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,020 samples, 0.21%)</title><rect x="67.2611%" y="661" width="0.2113%" height="15" fill="rgb(233,151,36)" fg:x="324721" fg:w="1020"/><text x="67.5111%" y="671.50"></text></g><g><title>__reserve_bytes (992 samples, 0.21%)</title><rect x="67.2669%" y="645" width="0.2055%" height="15" fill="rgb(237,57,45)" fg:x="324749" fg:w="992"/><text x="67.5169%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (282 samples, 0.06%)</title><rect x="67.4139%" y="629" width="0.0584%" height="15" fill="rgb(221,88,17)" fg:x="325459" fg:w="282"/><text x="67.6639%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (165 samples, 0.03%)</title><rect x="67.4382%" y="613" width="0.0342%" height="15" fill="rgb(230,79,15)" fg:x="325576" fg:w="165"/><text x="67.6882%" y="623.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="67.5142%" y="661" width="0.0178%" height="15" fill="rgb(213,57,13)" fg:x="325943" fg:w="86"/><text x="67.7642%" y="671.50"></text></g><g><title>join_transaction (276 samples, 0.06%)</title><rect x="67.4753%" y="677" width="0.0572%" height="15" fill="rgb(222,116,39)" fg:x="325755" fg:w="276"/><text x="67.7253%" y="687.50"></text></g><g><title>memset_erms (53 samples, 0.01%)</title><rect x="67.5589%" y="661" width="0.0110%" height="15" fill="rgb(245,107,2)" fg:x="326159" fg:w="53"/><text x="67.8089%" y="671.50"></text></g><g><title>kmem_cache_alloc (225 samples, 0.05%)</title><rect x="67.5324%" y="677" width="0.0466%" height="15" fill="rgb(238,1,10)" fg:x="326031" fg:w="225"/><text x="67.7824%" y="687.50"></text></g><g><title>start_transaction (2,155 samples, 0.45%)</title><rect x="67.1592%" y="693" width="0.4464%" height="15" fill="rgb(249,4,48)" fg:x="324229" fg:w="2155"/><text x="67.4092%" y="703.50"></text></g><g><title>wait_current_trans (128 samples, 0.03%)</title><rect x="67.5790%" y="677" width="0.0265%" height="15" fill="rgb(223,151,18)" fg:x="326256" fg:w="128"/><text x="67.8290%" y="687.50"></text></g><g><title>_raw_spin_lock (91 samples, 0.02%)</title><rect x="67.5867%" y="661" width="0.0188%" height="15" fill="rgb(227,65,43)" fg:x="326293" fg:w="91"/><text x="67.8367%" y="671.50"></text></g><g><title>strlen (746 samples, 0.15%)</title><rect x="67.6055%" y="693" width="0.1545%" height="15" fill="rgb(218,40,45)" fg:x="326384" fg:w="746"/><text x="67.8555%" y="703.50"></text></g><g><title>btrfs_symlink (55,130 samples, 11.42%)</title><rect x="56.3768%" y="709" width="11.4194%" height="15" fill="rgb(252,121,31)" fg:x="272174" fg:w="55130"/><text x="56.6268%" y="719.50">btrfs_symlink</text></g><g><title>write_extent_buffer (174 samples, 0.04%)</title><rect x="67.7601%" y="693" width="0.0360%" height="15" fill="rgb(219,158,43)" fg:x="327130" fg:w="174"/><text x="68.0101%" y="703.50"></text></g><g><title>btrfs_permission (52 samples, 0.01%)</title><rect x="67.8129%" y="693" width="0.0108%" height="15" fill="rgb(231,162,42)" fg:x="327385" fg:w="52"/><text x="68.0629%" y="703.50"></text></g><g><title>inode_permission.part.0 (104 samples, 0.02%)</title><rect x="67.8058%" y="709" width="0.0215%" height="15" fill="rgb(217,179,25)" fg:x="327351" fg:w="104"/><text x="68.0558%" y="719.50"></text></g><g><title>do_symlinkat (75,553 samples, 15.65%)</title><rect x="52.1879%" y="741" width="15.6497%" height="15" fill="rgb(206,212,31)" fg:x="251951" fg:w="75553"/><text x="52.4379%" y="751.50">do_symlinkat</text></g><g><title>vfs_symlink (55,415 samples, 11.48%)</title><rect x="56.3591%" y="725" width="11.4784%" height="15" fill="rgb(235,144,12)" fg:x="272089" fg:w="55415"/><text x="56.6091%" y="735.50">vfs_symlink</text></g><g><title>do_syscall_64 (75,613 samples, 15.66%)</title><rect x="52.1796%" y="757" width="15.6621%" height="15" fill="rgb(213,51,10)" fg:x="251911" fg:w="75613"/><text x="52.4296%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (75,700 samples, 15.68%)</title><rect x="52.1709%" y="773" width="15.6801%" height="15" fill="rgb(231,145,14)" fg:x="251869" fg:w="75700"/><text x="52.4209%" y="783.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_return_via_sysret (62 samples, 0.01%)</title><rect x="67.8595%" y="773" width="0.0128%" height="15" fill="rgb(235,15,28)" fg:x="327610" fg:w="62"/><text x="68.1095%" y="783.50"></text></g><g><title>__symlink (76,118 samples, 15.77%)</title><rect x="52.1063%" y="789" width="15.7667%" height="15" fill="rgb(237,206,10)" fg:x="251557" fg:w="76118"/><text x="52.3563%" y="799.50">__symlink</text></g><g><title>_int_free (145 samples, 0.03%)</title><rect x="67.8730%" y="789" width="0.0300%" height="15" fill="rgb(236,227,27)" fg:x="327675" fg:w="145"/><text x="68.1230%" y="799.50"></text></g><g><title>free@plt (66 samples, 0.01%)</title><rect x="67.9032%" y="789" width="0.0137%" height="15" fill="rgb(246,83,35)" fg:x="327821" fg:w="66"/><text x="68.1532%" y="799.50"></text></g><g><title>jni_ExceptionOccurred (96 samples, 0.02%)</title><rect x="67.9169%" y="789" width="0.0199%" height="15" fill="rgb(220,136,24)" fg:x="327887" fg:w="96"/><text x="68.1669%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (197 samples, 0.04%)</title><rect x="67.9759%" y="773" width="0.0408%" height="15" fill="rgb(217,3,25)" fg:x="328172" fg:w="197"/><text x="68.2259%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (147 samples, 0.03%)</title><rect x="68.0167%" y="773" width="0.0304%" height="15" fill="rgb(239,24,14)" fg:x="328369" fg:w="147"/><text x="68.2667%" y="783.50"></text></g><g><title>[libc-2.31.so] (125 samples, 0.03%)</title><rect x="68.0472%" y="773" width="0.0259%" height="15" fill="rgb(244,16,53)" fg:x="328516" fg:w="125"/><text x="68.2972%" y="783.50"></text></g><g><title>check_bounds (169 samples, 0.04%)</title><rect x="68.0730%" y="773" width="0.0350%" height="15" fill="rgb(208,175,44)" fg:x="328641" fg:w="169"/><text x="68.3230%" y="783.50"></text></g><g><title>jni_GetByteArrayRegion (856 samples, 0.18%)</title><rect x="67.9367%" y="789" width="0.1773%" height="15" fill="rgb(252,18,48)" fg:x="327983" fg:w="856"/><text x="68.1867%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch<G1BarrierSet::AccessBarrier<802934ul, G1BarrierSet>, (AccessInternal::BarrierType)3, 802934ul>::oop_access_barrier (139 samples, 0.03%)</title><rect x="68.1381%" y="773" width="0.0288%" height="15" fill="rgb(234,199,32)" fg:x="328955" fg:w="139"/><text x="68.3881%" y="783.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (111 samples, 0.02%)</title><rect x="68.1439%" y="757" width="0.0230%" height="15" fill="rgb(225,77,54)" fg:x="328983" fg:w="111"/><text x="68.3939%" y="767.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (92 samples, 0.02%)</title><rect x="68.1478%" y="741" width="0.0191%" height="15" fill="rgb(225,42,25)" fg:x="329002" fg:w="92"/><text x="68.3978%" y="751.50"></text></g><g><title>HandleMark::pop_and_restore (141 samples, 0.03%)</title><rect x="68.1669%" y="773" width="0.0292%" height="15" fill="rgb(242,227,46)" fg:x="329094" fg:w="141"/><text x="68.4169%" y="783.50"></text></g><g><title>JNIHandles::make_local (123 samples, 0.03%)</title><rect x="68.1961%" y="773" width="0.0255%" height="15" fill="rgb(246,197,35)" fg:x="329235" fg:w="123"/><text x="68.4461%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (171 samples, 0.04%)</title><rect x="68.2228%" y="773" width="0.0354%" height="15" fill="rgb(215,159,26)" fg:x="329364" fg:w="171"/><text x="68.4728%" y="783.50"></text></g><g><title>jni_GetObjectField (867 samples, 0.18%)</title><rect x="68.1141%" y="789" width="0.1796%" height="15" fill="rgb(212,194,50)" fg:x="328839" fg:w="867"/><text x="68.3641%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (171 samples, 0.04%)</title><rect x="68.2582%" y="773" width="0.0354%" height="15" fill="rgb(246,132,1)" fg:x="329535" fg:w="171"/><text x="68.5082%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (135 samples, 0.03%)</title><rect x="68.3239%" y="773" width="0.0280%" height="15" fill="rgb(217,71,7)" fg:x="329852" fg:w="135"/><text x="68.5739%" y="783.50"></text></g><g><title>jni_GetStringLength (497 samples, 0.10%)</title><rect x="68.2936%" y="789" width="0.1029%" height="15" fill="rgb(252,59,32)" fg:x="329706" fg:w="497"/><text x="68.5436%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (216 samples, 0.04%)</title><rect x="68.3518%" y="773" width="0.0447%" height="15" fill="rgb(253,204,25)" fg:x="329987" fg:w="216"/><text x="68.6018%" y="783.50"></text></g><g><title>jni_NewObjectV (171 samples, 0.04%)</title><rect x="68.3976%" y="789" width="0.0354%" height="15" fill="rgb(232,21,16)" fg:x="330208" fg:w="171"/><text x="68.6476%" y="799.50"></text></g><g><title>jni_invoke_nonstatic (81 samples, 0.02%)</title><rect x="68.4163%" y="773" width="0.0168%" height="15" fill="rgb(248,90,29)" fg:x="330298" fg:w="81"/><text x="68.6663%" y="783.50"></text></g><g><title>operator delete@plt (66 samples, 0.01%)</title><rect x="68.4430%" y="789" width="0.0137%" height="15" fill="rgb(249,223,7)" fg:x="330427" fg:w="66"/><text x="68.6930%" y="799.50"></text></g><g><title>__GI___libc_malloc (198 samples, 0.04%)</title><rect x="68.4610%" y="773" width="0.0410%" height="15" fill="rgb(231,119,42)" fg:x="330514" fg:w="198"/><text x="68.7110%" y="783.50"></text></g><g><title>tcache_get (82 samples, 0.02%)</title><rect x="68.4850%" y="757" width="0.0170%" height="15" fill="rgb(215,41,35)" fg:x="330630" fg:w="82"/><text x="68.7350%" y="767.50"></text></g><g><title>operator new (250 samples, 0.05%)</title><rect x="68.4598%" y="789" width="0.0518%" height="15" fill="rgb(220,44,45)" fg:x="330508" fg:w="250"/><text x="68.7098%" y="799.50"></text></g><g><title>_int_malloc (120 samples, 0.02%)</title><rect x="68.5509%" y="741" width="0.0249%" height="15" fill="rgb(253,197,36)" fg:x="330948" fg:w="120"/><text x="68.8009%" y="751.50"></text></g><g><title>__GI___libc_malloc (234 samples, 0.05%)</title><rect x="68.5321%" y="757" width="0.0485%" height="15" fill="rgb(245,225,54)" fg:x="330857" fg:w="234"/><text x="68.7821%" y="767.50"></text></g><g><title>operator new (253 samples, 0.05%)</title><rect x="68.5316%" y="773" width="0.0524%" height="15" fill="rgb(239,94,37)" fg:x="330855" fg:w="253"/><text x="68.7816%" y="783.50"></text></g><g><title>std::string::_Rep::_S_create (278 samples, 0.06%)</title><rect x="68.5294%" y="789" width="0.0576%" height="15" fill="rgb(242,217,10)" fg:x="330844" fg:w="278"/><text x="68.7794%" y="799.50"></text></g><g><title>[libunix_jni.so] (199,384 samples, 41.30%)</title><rect x="27.2878%" y="805" width="41.2994%" height="15" fill="rgb(250,193,7)" fg:x="131739" fg:w="199384"/><text x="27.5378%" y="815.50">[libunix_jni.so]</text></g><g><title>InstanceKlass::link_class_impl (75 samples, 0.02%)</title><rect x="81.0262%" y="757" width="0.0155%" height="15" fill="rgb(230,104,19)" fg:x="391176" fg:w="75"/><text x="81.2762%" y="767.50"></text></g><g><title>InterpreterRuntime::_new (120 samples, 0.02%)</title><rect x="81.0173%" y="789" width="0.0249%" height="15" fill="rgb(230,181,4)" fg:x="391133" fg:w="120"/><text x="81.2673%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (81 samples, 0.02%)</title><rect x="81.0254%" y="773" width="0.0168%" height="15" fill="rgb(216,219,49)" fg:x="391172" fg:w="81"/><text x="81.2754%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (68 samples, 0.01%)</title><rect x="81.0484%" y="773" width="0.0141%" height="15" fill="rgb(254,144,0)" fg:x="391283" fg:w="68"/><text x="81.2984%" y="783.50"></text></g><g><title>InterpreterRuntime::anewarray (101 samples, 0.02%)</title><rect x="81.0422%" y="789" width="0.0209%" height="15" fill="rgb(205,209,38)" fg:x="391253" fg:w="101"/><text x="81.2922%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (54 samples, 0.01%)</title><rect x="81.0871%" y="725" width="0.0112%" height="15" fill="rgb(240,21,42)" fg:x="391470" fg:w="54"/><text x="81.3371%" y="735.50"></text></g><g><title>TieredThresholdPolicy::event (148 samples, 0.03%)</title><rect x="81.0772%" y="757" width="0.0307%" height="15" fill="rgb(241,132,3)" fg:x="391422" fg:w="148"/><text x="81.3272%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (121 samples, 0.03%)</title><rect x="81.0828%" y="741" width="0.0251%" height="15" fill="rgb(225,14,2)" fg:x="391449" fg:w="121"/><text x="81.3328%" y="751.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (177 samples, 0.04%)</title><rect x="81.0716%" y="789" width="0.0367%" height="15" fill="rgb(210,141,35)" fg:x="391395" fg:w="177"/><text x="81.3216%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (177 samples, 0.04%)</title><rect x="81.0716%" y="773" width="0.0367%" height="15" fill="rgb(251,14,44)" fg:x="391395" fg:w="177"/><text x="81.3216%" y="783.50"></text></g><g><title>InterpreterRuntime::ldc (83 samples, 0.02%)</title><rect x="81.1083%" y="789" width="0.0172%" height="15" fill="rgb(247,48,18)" fg:x="391572" fg:w="83"/><text x="81.3583%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (50 samples, 0.01%)</title><rect x="81.1824%" y="741" width="0.0104%" height="15" fill="rgb(225,0,40)" fg:x="391930" fg:w="50"/><text x="81.4324%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (71 samples, 0.01%)</title><rect x="81.1928%" y="741" width="0.0147%" height="15" fill="rgb(221,31,33)" fg:x="391980" fg:w="71"/><text x="81.4428%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (243 samples, 0.05%)</title><rect x="81.1582%" y="757" width="0.0503%" height="15" fill="rgb(237,42,40)" fg:x="391813" fg:w="243"/><text x="81.4082%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (307 samples, 0.06%)</title><rect x="81.1474%" y="773" width="0.0636%" height="15" fill="rgb(233,51,29)" fg:x="391761" fg:w="307"/><text x="81.3974%" y="783.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (51 samples, 0.01%)</title><rect x="81.2112%" y="725" width="0.0106%" height="15" fill="rgb(226,58,20)" fg:x="392069" fg:w="51"/><text x="81.4612%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (60 samples, 0.01%)</title><rect x="81.2110%" y="773" width="0.0124%" height="15" fill="rgb(208,98,7)" fg:x="392068" fg:w="60"/><text x="81.4610%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (59 samples, 0.01%)</title><rect x="81.2112%" y="757" width="0.0122%" height="15" fill="rgb(228,143,44)" fg:x="392069" fg:w="59"/><text x="81.4612%" y="767.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (59 samples, 0.01%)</title><rect x="81.2112%" y="741" width="0.0122%" height="15" fill="rgb(246,55,38)" fg:x="392069" fg:w="59"/><text x="81.4612%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (424 samples, 0.09%)</title><rect x="81.1375%" y="789" width="0.0878%" height="15" fill="rgb(247,87,16)" fg:x="391713" fg:w="424"/><text x="81.3875%" y="799.50"></text></g><g><title>JVM_IHashCode (60 samples, 0.01%)</title><rect x="81.2696%" y="789" width="0.0124%" height="15" fill="rgb(234,129,42)" fg:x="392351" fg:w="60"/><text x="81.5196%" y="799.50"></text></g><g><title>JVM_IsInterrupted (67 samples, 0.01%)</title><rect x="81.2976%" y="789" width="0.0139%" height="15" fill="rgb(220,82,16)" fg:x="392486" fg:w="67"/><text x="81.5476%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (314 samples, 0.07%)</title><rect x="81.3421%" y="645" width="0.0650%" height="15" fill="rgb(211,88,4)" fg:x="392701" fg:w="314"/><text x="81.5921%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (346 samples, 0.07%)</title><rect x="81.3357%" y="661" width="0.0717%" height="15" fill="rgb(248,151,21)" fg:x="392670" fg:w="346"/><text x="81.5857%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (356 samples, 0.07%)</title><rect x="81.3342%" y="677" width="0.0737%" height="15" fill="rgb(238,163,6)" fg:x="392663" fg:w="356"/><text x="81.5842%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (81 samples, 0.02%)</title><rect x="81.4090%" y="677" width="0.0168%" height="15" fill="rgb(209,183,11)" fg:x="393024" fg:w="81"/><text x="81.6590%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (80 samples, 0.02%)</title><rect x="81.4092%" y="661" width="0.0166%" height="15" fill="rgb(219,37,20)" fg:x="393025" fg:w="80"/><text x="81.6592%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (453 samples, 0.09%)</title><rect x="81.3322%" y="709" width="0.0938%" height="15" fill="rgb(210,158,4)" fg:x="392653" fg:w="453"/><text x="81.5822%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (450 samples, 0.09%)</title><rect x="81.3328%" y="693" width="0.0932%" height="15" fill="rgb(221,167,53)" fg:x="392656" fg:w="450"/><text x="81.5828%" y="703.50"></text></g><g><title>DefaultMethods::generate_default_methods (49 samples, 0.01%)</title><rect x="81.4270%" y="677" width="0.0101%" height="15" fill="rgb(237,151,45)" fg:x="393111" fg:w="49"/><text x="81.6770%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (79 samples, 0.02%)</title><rect x="81.4260%" y="693" width="0.0164%" height="15" fill="rgb(231,39,3)" fg:x="393106" fg:w="79"/><text x="81.6760%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (82 samples, 0.02%)</title><rect x="81.4260%" y="709" width="0.0170%" height="15" fill="rgb(212,167,28)" fg:x="393106" fg:w="82"/><text x="81.6760%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (564 samples, 0.12%)</title><rect x="81.3322%" y="725" width="0.1168%" height="15" fill="rgb(232,178,8)" fg:x="392653" fg:w="564"/><text x="81.5822%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (604 samples, 0.13%)</title><rect x="81.3303%" y="773" width="0.1251%" height="15" fill="rgb(225,151,20)" fg:x="392644" fg:w="604"/><text x="81.5803%" y="783.50"></text></g><g><title>jvm_define_class_common (604 samples, 0.13%)</title><rect x="81.3303%" y="757" width="0.1251%" height="15" fill="rgb(238,3,37)" fg:x="392644" fg:w="604"/><text x="81.5803%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (596 samples, 0.12%)</title><rect x="81.3320%" y="741" width="0.1235%" height="15" fill="rgb(251,147,42)" fg:x="392652" fg:w="596"/><text x="81.5820%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (624 samples, 0.13%)</title><rect x="81.3301%" y="789" width="0.1293%" height="15" fill="rgb(208,173,10)" fg:x="392643" fg:w="624"/><text x="81.5801%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (313 samples, 0.06%)</title><rect x="81.4977%" y="693" width="0.0648%" height="15" fill="rgb(246,225,4)" fg:x="393452" fg:w="313"/><text x="81.7477%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (313 samples, 0.06%)</title><rect x="81.4977%" y="677" width="0.0648%" height="15" fill="rgb(248,102,6)" fg:x="393452" fg:w="313"/><text x="81.7477%" y="687.50"></text></g><g><title>native_write_msr (313 samples, 0.06%)</title><rect x="81.4977%" y="661" width="0.0648%" height="15" fill="rgb(232,6,21)" fg:x="393452" fg:w="313"/><text x="81.7477%" y="671.50"></text></g><g><title>schedule_tail (341 samples, 0.07%)</title><rect x="81.4933%" y="725" width="0.0706%" height="15" fill="rgb(221,179,22)" fg:x="393431" fg:w="341"/><text x="81.7433%" y="735.50"></text></g><g><title>finish_task_switch (335 samples, 0.07%)</title><rect x="81.4946%" y="709" width="0.0694%" height="15" fill="rgb(252,50,20)" fg:x="393437" fg:w="335"/><text x="81.7446%" y="719.50"></text></g><g><title>__libc_vfork (415 samples, 0.09%)</title><rect x="81.4782%" y="757" width="0.0860%" height="15" fill="rgb(222,56,38)" fg:x="393358" fg:w="415"/><text x="81.7282%" y="767.50"></text></g><g><title>ret_from_fork (373 samples, 0.08%)</title><rect x="81.4869%" y="741" width="0.0773%" height="15" fill="rgb(206,193,29)" fg:x="393400" fg:w="373"/><text x="81.7369%" y="751.50"></text></g><g><title>bprm_execve (120 samples, 0.02%)</title><rect x="81.5681%" y="645" width="0.0249%" height="15" fill="rgb(239,192,45)" fg:x="393792" fg:w="120"/><text x="81.8181%" y="655.50"></text></g><g><title>JDK_execvpe (159 samples, 0.03%)</title><rect x="81.5644%" y="741" width="0.0329%" height="15" fill="rgb(254,18,36)" fg:x="393774" fg:w="159"/><text x="81.8144%" y="751.50"></text></g><g><title>__GI_execve (159 samples, 0.03%)</title><rect x="81.5644%" y="725" width="0.0329%" height="15" fill="rgb(221,127,11)" fg:x="393774" fg:w="159"/><text x="81.8144%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (158 samples, 0.03%)</title><rect x="81.5646%" y="709" width="0.0327%" height="15" fill="rgb(234,146,35)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="719.50"></text></g><g><title>do_syscall_64 (158 samples, 0.03%)</title><rect x="81.5646%" y="693" width="0.0327%" height="15" fill="rgb(254,201,37)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="703.50"></text></g><g><title>__x64_sys_execve (158 samples, 0.03%)</title><rect x="81.5646%" y="677" width="0.0327%" height="15" fill="rgb(211,202,23)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="687.50"></text></g><g><title>do_execveat_common (158 samples, 0.03%)</title><rect x="81.5646%" y="661" width="0.0327%" height="15" fill="rgb(237,91,2)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="671.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (661 samples, 0.14%)</title><rect x="81.4751%" y="789" width="0.1369%" height="15" fill="rgb(226,228,36)" fg:x="393343" fg:w="661"/><text x="81.7251%" y="799.50"></text></g><g><title>vforkChild (646 samples, 0.13%)</title><rect x="81.4782%" y="773" width="0.1338%" height="15" fill="rgb(213,63,50)" fg:x="393358" fg:w="646"/><text x="81.7282%" y="783.50"></text></g><g><title>childProcess (231 samples, 0.05%)</title><rect x="81.5642%" y="757" width="0.0478%" height="15" fill="rgb(235,194,19)" fg:x="393773" fg:w="231"/><text x="81.8142%" y="767.50"></text></g><g><title>OptoRuntime::new_array_C (59 samples, 0.01%)</title><rect x="81.6197%" y="789" width="0.0122%" height="15" fill="rgb(207,204,18)" fg:x="394041" fg:w="59"/><text x="81.8697%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (86 samples, 0.02%)</title><rect x="81.6478%" y="773" width="0.0178%" height="15" fill="rgb(248,8,7)" fg:x="394177" fg:w="86"/><text x="81.8978%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (68 samples, 0.01%)</title><rect x="81.6516%" y="757" width="0.0141%" height="15" fill="rgb(223,145,47)" fg:x="394195" fg:w="68"/><text x="81.9016%" y="767.50"></text></g><g><title>Runtime1::counter_overflow (170 samples, 0.04%)</title><rect x="81.6406%" y="789" width="0.0352%" height="15" fill="rgb(228,84,11)" fg:x="394142" fg:w="170"/><text x="81.8906%" y="799.50"></text></g><g><title>ObjectMonitor::enter (61 samples, 0.01%)</title><rect x="81.6841%" y="773" width="0.0126%" height="15" fill="rgb(218,76,45)" fg:x="394352" fg:w="61"/><text x="81.9341%" y="783.50"></text></g><g><title>Runtime1::monitorenter (121 samples, 0.03%)</title><rect x="81.6770%" y="789" width="0.0251%" height="15" fill="rgb(223,80,15)" fg:x="394318" fg:w="121"/><text x="81.9270%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (74 samples, 0.02%)</title><rect x="81.7487%" y="773" width="0.0153%" height="15" fill="rgb(219,218,33)" fg:x="394664" fg:w="74"/><text x="81.9987%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.01%)</title><rect x="81.7533%" y="757" width="0.0108%" height="15" fill="rgb(208,51,11)" fg:x="394686" fg:w="52"/><text x="82.0033%" y="767.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (82 samples, 0.02%)</title><rect x="81.7475%" y="789" width="0.0170%" height="15" fill="rgb(229,165,39)" fg:x="394658" fg:w="82"/><text x="81.9975%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (139 samples, 0.03%)</title><rect x="81.7796%" y="565" width="0.0288%" height="15" fill="rgb(241,100,24)" fg:x="394813" fg:w="139"/><text x="82.0296%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (138 samples, 0.03%)</title><rect x="81.7798%" y="549" width="0.0286%" height="15" fill="rgb(228,14,23)" fg:x="394814" fg:w="138"/><text x="82.0298%" y="559.50"></text></g><g><title>native_write_msr (138 samples, 0.03%)</title><rect x="81.7798%" y="533" width="0.0286%" height="15" fill="rgb(247,116,52)" fg:x="394814" fg:w="138"/><text x="82.0298%" y="543.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="81.7796%" y="581" width="0.0298%" height="15" fill="rgb(216,149,33)" fg:x="394813" fg:w="144"/><text x="82.0296%" y="591.50"></text></g><g><title>futex_wait_queue_me (169 samples, 0.04%)</title><rect x="81.7767%" y="629" width="0.0350%" height="15" fill="rgb(238,142,29)" fg:x="394799" fg:w="169"/><text x="82.0267%" y="639.50"></text></g><g><title>schedule (169 samples, 0.04%)</title><rect x="81.7767%" y="613" width="0.0350%" height="15" fill="rgb(224,83,40)" fg:x="394799" fg:w="169"/><text x="82.0267%" y="623.50"></text></g><g><title>__schedule (169 samples, 0.04%)</title><rect x="81.7767%" y="597" width="0.0350%" height="15" fill="rgb(234,165,11)" fg:x="394799" fg:w="169"/><text x="82.0267%" y="607.50"></text></g><g><title>do_syscall_64 (175 samples, 0.04%)</title><rect x="81.7756%" y="693" width="0.0362%" height="15" fill="rgb(215,96,23)" fg:x="394794" fg:w="175"/><text x="82.0256%" y="703.50"></text></g><g><title>__x64_sys_futex (175 samples, 0.04%)</title><rect x="81.7756%" y="677" width="0.0362%" height="15" fill="rgb(233,179,26)" fg:x="394794" fg:w="175"/><text x="82.0256%" y="687.50"></text></g><g><title>do_futex (174 samples, 0.04%)</title><rect x="81.7759%" y="661" width="0.0360%" height="15" fill="rgb(225,129,33)" fg:x="394795" fg:w="174"/><text x="82.0259%" y="671.50"></text></g><g><title>futex_wait (171 samples, 0.04%)</title><rect x="81.7765%" y="645" width="0.0354%" height="15" fill="rgb(237,49,13)" fg:x="394798" fg:w="171"/><text x="82.0265%" y="655.50"></text></g><g><title>__pthread_cond_wait (188 samples, 0.04%)</title><rect x="81.7738%" y="757" width="0.0389%" height="15" fill="rgb(211,3,31)" fg:x="394785" fg:w="188"/><text x="82.0238%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (187 samples, 0.04%)</title><rect x="81.7740%" y="741" width="0.0387%" height="15" fill="rgb(216,152,19)" fg:x="394786" fg:w="187"/><text x="82.0240%" y="751.50"></text></g><g><title>futex_wait_cancelable (183 samples, 0.04%)</title><rect x="81.7748%" y="725" width="0.0379%" height="15" fill="rgb(251,121,35)" fg:x="394790" fg:w="183"/><text x="82.0248%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (179 samples, 0.04%)</title><rect x="81.7756%" y="709" width="0.0371%" height="15" fill="rgb(210,217,47)" fg:x="394794" fg:w="179"/><text x="82.0256%" y="719.50"></text></g><g><title>Parker::park (213 samples, 0.04%)</title><rect x="81.7713%" y="773" width="0.0441%" height="15" fill="rgb(244,116,22)" fg:x="394773" fg:w="213"/><text x="82.0213%" y="783.50"></text></g><g><title>Unsafe_Park (218 samples, 0.05%)</title><rect x="81.7705%" y="789" width="0.0452%" height="15" fill="rgb(228,17,21)" fg:x="394769" fg:w="218"/><text x="82.0205%" y="799.50"></text></g><g><title>enqueue_entity (55 samples, 0.01%)</title><rect x="81.8488%" y="597" width="0.0114%" height="15" fill="rgb(240,149,34)" fg:x="395147" fg:w="55"/><text x="82.0988%" y="607.50"></text></g><g><title>enqueue_task_fair (65 samples, 0.01%)</title><rect x="81.8471%" y="613" width="0.0135%" height="15" fill="rgb(208,125,47)" fg:x="395139" fg:w="65"/><text x="82.0971%" y="623.50"></text></g><g><title>ttwu_do_activate (106 samples, 0.02%)</title><rect x="81.8465%" y="629" width="0.0220%" height="15" fill="rgb(249,186,39)" fg:x="395136" fg:w="106"/><text x="82.0965%" y="639.50"></text></g><g><title>__x64_sys_futex (200 samples, 0.04%)</title><rect x="81.8299%" y="709" width="0.0414%" height="15" fill="rgb(240,220,33)" fg:x="395056" fg:w="200"/><text x="82.0799%" y="719.50"></text></g><g><title>do_futex (200 samples, 0.04%)</title><rect x="81.8299%" y="693" width="0.0414%" height="15" fill="rgb(243,110,23)" fg:x="395056" fg:w="200"/><text x="82.0799%" y="703.50"></text></g><g><title>futex_wake (199 samples, 0.04%)</title><rect x="81.8301%" y="677" width="0.0412%" height="15" fill="rgb(219,163,46)" fg:x="395057" fg:w="199"/><text x="82.0801%" y="687.50"></text></g><g><title>wake_up_q (167 samples, 0.03%)</title><rect x="81.8367%" y="661" width="0.0346%" height="15" fill="rgb(216,126,30)" fg:x="395089" fg:w="167"/><text x="82.0867%" y="671.50"></text></g><g><title>try_to_wake_up (164 samples, 0.03%)</title><rect x="81.8374%" y="645" width="0.0340%" height="15" fill="rgb(208,139,11)" fg:x="395092" fg:w="164"/><text x="82.0874%" y="655.50"></text></g><g><title>do_syscall_64 (202 samples, 0.04%)</title><rect x="81.8297%" y="725" width="0.0418%" height="15" fill="rgb(213,118,36)" fg:x="395055" fg:w="202"/><text x="82.0797%" y="735.50"></text></g><g><title>__pthread_cond_signal (221 samples, 0.05%)</title><rect x="81.8272%" y="773" width="0.0458%" height="15" fill="rgb(226,43,17)" fg:x="395043" fg:w="221"/><text x="82.0772%" y="783.50"></text></g><g><title>futex_wake (213 samples, 0.04%)</title><rect x="81.8289%" y="757" width="0.0441%" height="15" fill="rgb(254,217,4)" fg:x="395051" fg:w="213"/><text x="82.0789%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (211 samples, 0.04%)</title><rect x="81.8293%" y="741" width="0.0437%" height="15" fill="rgb(210,134,47)" fg:x="395053" fg:w="211"/><text x="82.0793%" y="751.50"></text></g><g><title>Unsafe_Unpark (279 samples, 0.06%)</title><rect x="81.8162%" y="789" width="0.0578%" height="15" fill="rgb(237,24,49)" fg:x="394990" fg:w="279"/><text x="82.0662%" y="799.50"></text></g><g><title>kernel_init_free_pages (80 samples, 0.02%)</title><rect x="81.9382%" y="661" width="0.0166%" height="15" fill="rgb(251,39,46)" fg:x="395579" fg:w="80"/><text x="82.1882%" y="671.50"></text></g><g><title>clear_page_erms (79 samples, 0.02%)</title><rect x="81.9385%" y="645" width="0.0164%" height="15" fill="rgb(251,220,3)" fg:x="395580" fg:w="79"/><text x="82.1885%" y="655.50"></text></g><g><title>get_page_from_freelist (141 samples, 0.03%)</title><rect x="81.9258%" y="693" width="0.0292%" height="15" fill="rgb(228,105,12)" fg:x="395519" fg:w="141"/><text x="82.1758%" y="703.50"></text></g><g><title>prep_new_page (84 samples, 0.02%)</title><rect x="81.9376%" y="677" width="0.0174%" height="15" fill="rgb(215,196,1)" fg:x="395576" fg:w="84"/><text x="82.1876%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (183 samples, 0.04%)</title><rect x="81.9175%" y="709" width="0.0379%" height="15" fill="rgb(214,33,39)" fg:x="395479" fg:w="183"/><text x="82.1675%" y="719.50"></text></g><g><title>alloc_pages_vma (194 samples, 0.04%)</title><rect x="81.9159%" y="725" width="0.0402%" height="15" fill="rgb(220,19,52)" fg:x="395471" fg:w="194"/><text x="82.1659%" y="735.50"></text></g><g><title>lru_cache_add (63 samples, 0.01%)</title><rect x="81.9617%" y="725" width="0.0130%" height="15" fill="rgb(221,78,38)" fg:x="395692" fg:w="63"/><text x="82.2117%" y="735.50"></text></g><g><title>pagevec_lru_move_fn (51 samples, 0.01%)</title><rect x="81.9641%" y="709" width="0.0106%" height="15" fill="rgb(253,30,16)" fg:x="395704" fg:w="51"/><text x="82.2141%" y="719.50"></text></g><g><title>mem_cgroup_charge (56 samples, 0.01%)</title><rect x="81.9749%" y="725" width="0.0116%" height="15" fill="rgb(242,65,0)" fg:x="395756" fg:w="56"/><text x="82.2249%" y="735.50"></text></g><g><title>handle_mm_fault (459 samples, 0.10%)</title><rect x="81.8993%" y="741" width="0.0951%" height="15" fill="rgb(235,201,12)" fg:x="395391" fg:w="459"/><text x="82.1493%" y="751.50"></text></g><g><title>exc_page_fault (512 samples, 0.11%)</title><rect x="81.8910%" y="773" width="0.1061%" height="15" fill="rgb(233,161,9)" fg:x="395351" fg:w="512"/><text x="82.1410%" y="783.50"></text></g><g><title>do_user_addr_fault (501 samples, 0.10%)</title><rect x="81.8933%" y="757" width="0.1038%" height="15" fill="rgb(241,207,41)" fg:x="395362" fg:w="501"/><text x="82.1433%" y="767.50"></text></g><g><title>asm_exc_page_fault (527 samples, 0.11%)</title><rect x="81.8902%" y="789" width="0.1092%" height="15" fill="rgb(212,69,46)" fg:x="395347" fg:w="527"/><text x="82.1402%" y="799.50"></text></g><g><title>tick_sched_handle (49 samples, 0.01%)</title><rect x="82.0060%" y="693" width="0.0101%" height="15" fill="rgb(239,69,45)" fg:x="395906" fg:w="49"/><text x="82.2560%" y="703.50"></text></g><g><title>tick_sched_timer (57 samples, 0.01%)</title><rect x="82.0054%" y="709" width="0.0118%" height="15" fill="rgb(242,117,48)" fg:x="395903" fg:w="57"/><text x="82.2554%" y="719.50"></text></g><g><title>__hrtimer_run_queues (72 samples, 0.01%)</title><rect x="82.0029%" y="725" width="0.0149%" height="15" fill="rgb(228,41,36)" fg:x="395891" fg:w="72"/><text x="82.2529%" y="735.50"></text></g><g><title>__sysvec_apic_timer_interrupt (79 samples, 0.02%)</title><rect x="82.0018%" y="757" width="0.0164%" height="15" fill="rgb(212,3,32)" fg:x="395886" fg:w="79"/><text x="82.2518%" y="767.50"></text></g><g><title>hrtimer_interrupt (77 samples, 0.02%)</title><rect x="82.0022%" y="741" width="0.0159%" height="15" fill="rgb(233,41,49)" fg:x="395888" fg:w="77"/><text x="82.2522%" y="751.50"></text></g><g><title>rcu_core (67 samples, 0.01%)</title><rect x="82.0184%" y="693" width="0.0139%" height="15" fill="rgb(252,170,49)" fg:x="395966" fg:w="67"/><text x="82.2684%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (176 samples, 0.04%)</title><rect x="81.9993%" y="789" width="0.0365%" height="15" fill="rgb(229,53,26)" fg:x="395874" fg:w="176"/><text x="82.2493%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (164 samples, 0.03%)</title><rect x="82.0018%" y="773" width="0.0340%" height="15" fill="rgb(217,157,12)" fg:x="395886" fg:w="164"/><text x="82.2518%" y="783.50"></text></g><g><title>irq_exit_rcu (85 samples, 0.02%)</title><rect x="82.0182%" y="757" width="0.0176%" height="15" fill="rgb(227,17,9)" fg:x="395965" fg:w="85"/><text x="82.2682%" y="767.50"></text></g><g><title>do_softirq_own_stack (84 samples, 0.02%)</title><rect x="82.0184%" y="741" width="0.0174%" height="15" fill="rgb(218,84,12)" fg:x="395966" fg:w="84"/><text x="82.2684%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (84 samples, 0.02%)</title><rect x="82.0184%" y="725" width="0.0174%" height="15" fill="rgb(212,79,24)" fg:x="395966" fg:w="84"/><text x="82.2684%" y="735.50"></text></g><g><title>__softirqentry_text_start (84 samples, 0.02%)</title><rect x="82.0184%" y="709" width="0.0174%" height="15" fill="rgb(217,222,37)" fg:x="395966" fg:w="84"/><text x="82.2684%" y="719.50"></text></g><g><title>error_entry (78 samples, 0.02%)</title><rect x="82.0447%" y="789" width="0.0162%" height="15" fill="rgb(246,208,8)" fg:x="396093" fg:w="78"/><text x="82.2947%" y="799.50"></text></g><g><title>sync_regs (73 samples, 0.02%)</title><rect x="82.0457%" y="773" width="0.0151%" height="15" fill="rgb(244,133,10)" fg:x="396098" fg:w="73"/><text x="82.2957%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="82.0625%" y="757" width="0.0139%" height="15" fill="rgb(209,219,41)" fg:x="396179" fg:w="67"/><text x="82.3125%" y="767.50"></text></g><g><title>__close (73 samples, 0.02%)</title><rect x="82.0615%" y="773" width="0.0151%" height="15" fill="rgb(253,175,45)" fg:x="396174" fg:w="73"/><text x="82.3115%" y="783.50"></text></g><g><title>fileDescriptorClose (91 samples, 0.02%)</title><rect x="82.0613%" y="789" width="0.0188%" height="15" fill="rgb(235,100,37)" fg:x="396173" fg:w="91"/><text x="82.3113%" y="799.50"></text></g><g><title>JNU_GetStringPlatformChars (55 samples, 0.01%)</title><rect x="82.0808%" y="773" width="0.0114%" height="15" fill="rgb(225,87,19)" fg:x="396267" fg:w="55"/><text x="82.3308%" y="783.50"></text></g><g><title>link_path_walk.part.0 (64 samples, 0.01%)</title><rect x="82.1265%" y="661" width="0.0133%" height="15" fill="rgb(217,152,17)" fg:x="396488" fg:w="64"/><text x="82.3765%" y="671.50"></text></g><g><title>do_filp_open (172 samples, 0.04%)</title><rect x="82.1069%" y="693" width="0.0356%" height="15" fill="rgb(235,72,13)" fg:x="396393" fg:w="172"/><text x="82.3569%" y="703.50"></text></g><g><title>path_openat (170 samples, 0.04%)</title><rect x="82.1073%" y="677" width="0.0352%" height="15" fill="rgb(233,140,18)" fg:x="396395" fg:w="170"/><text x="82.3573%" y="687.50"></text></g><g><title>do_syscall_64 (223 samples, 0.05%)</title><rect x="82.1021%" y="741" width="0.0462%" height="15" fill="rgb(207,212,28)" fg:x="396370" fg:w="223"/><text x="82.3521%" y="751.50"></text></g><g><title>__x64_sys_openat (222 samples, 0.05%)</title><rect x="82.1023%" y="725" width="0.0460%" height="15" fill="rgb(220,130,25)" fg:x="396371" fg:w="222"/><text x="82.3523%" y="735.50"></text></g><g><title>do_sys_openat2 (220 samples, 0.05%)</title><rect x="82.1027%" y="709" width="0.0456%" height="15" fill="rgb(205,55,34)" fg:x="396373" fg:w="220"/><text x="82.3527%" y="719.50"></text></g><g><title>__libc_open64 (234 samples, 0.05%)</title><rect x="82.1000%" y="773" width="0.0485%" height="15" fill="rgb(237,54,35)" fg:x="396360" fg:w="234"/><text x="82.3500%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (226 samples, 0.05%)</title><rect x="82.1017%" y="757" width="0.0468%" height="15" fill="rgb(208,67,23)" fg:x="396368" fg:w="226"/><text x="82.3517%" y="767.50"></text></g><g><title>fileOpen (349 samples, 0.07%)</title><rect x="82.0801%" y="789" width="0.0723%" height="15" fill="rgb(206,207,50)" fg:x="396264" fg:w="349"/><text x="82.3301%" y="799.50"></text></g><g><title>jni_IsAssignableFrom (105 samples, 0.02%)</title><rect x="82.1595%" y="789" width="0.0217%" height="15" fill="rgb(213,211,42)" fg:x="396647" fg:w="105"/><text x="82.4095%" y="799.50"></text></g><g><title>os::javaTimeNanos (64 samples, 0.01%)</title><rect x="82.1837%" y="789" width="0.0133%" height="15" fill="rgb(252,197,50)" fg:x="396764" fg:w="64"/><text x="82.4337%" y="799.50"></text></g><g><title>__GI___clock_gettime (54 samples, 0.01%)</title><rect x="82.1858%" y="773" width="0.0112%" height="15" fill="rgb(251,211,41)" fg:x="396774" fg:w="54"/><text x="82.4358%" y="783.50"></text></g><g><title>[perf-987172.map] (65,709 samples, 13.61%)</title><rect x="68.5872%" y="805" width="13.6106%" height="15" fill="rgb(229,211,5)" fg:x="331123" fg:w="65709"/><text x="68.8372%" y="815.50">[perf-987172.map]</text></g><g><title>Bytecode_invoke::static_target (49 samples, 0.01%)</title><rect x="82.2351%" y="757" width="0.0101%" height="15" fill="rgb(239,36,31)" fg:x="397012" fg:w="49"/><text x="82.4851%" y="767.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (167 samples, 0.03%)</title><rect x="82.2347%" y="773" width="0.0346%" height="15" fill="rgb(248,67,31)" fg:x="397010" fg:w="167"/><text x="82.4847%" y="783.50"></text></g><g><title>frame::sender (51 samples, 0.01%)</title><rect x="82.2587%" y="757" width="0.0106%" height="15" fill="rgb(249,55,44)" fg:x="397126" fg:w="51"/><text x="82.5087%" y="767.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (251 samples, 0.05%)</title><rect x="82.2220%" y="789" width="0.0520%" height="15" fill="rgb(216,82,12)" fg:x="396949" fg:w="251"/><text x="82.4720%" y="799.50"></text></g><g><title>copy_user_enhanced_fast_string (92 samples, 0.02%)</title><rect x="82.3152%" y="613" width="0.0191%" height="15" fill="rgb(242,174,1)" fg:x="397399" fg:w="92"/><text x="82.5652%" y="623.50"></text></g><g><title>copy_page_to_iter (100 samples, 0.02%)</title><rect x="82.3138%" y="629" width="0.0207%" height="15" fill="rgb(208,120,29)" fg:x="397392" fg:w="100"/><text x="82.5638%" y="639.50"></text></g><g><title>get_page_from_freelist (57 samples, 0.01%)</title><rect x="82.3399%" y="597" width="0.0118%" height="15" fill="rgb(221,105,43)" fg:x="397518" fg:w="57"/><text x="82.5899%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (67 samples, 0.01%)</title><rect x="82.3380%" y="613" width="0.0139%" height="15" fill="rgb(234,124,22)" fg:x="397509" fg:w="67"/><text x="82.5880%" y="623.50"></text></g><g><title>__add_to_page_cache_locked (89 samples, 0.02%)</title><rect x="82.3527%" y="597" width="0.0184%" height="15" fill="rgb(212,23,30)" fg:x="397580" fg:w="89"/><text x="82.6027%" y="607.50"></text></g><g><title>add_to_page_cache_lru (156 samples, 0.03%)</title><rect x="82.3523%" y="613" width="0.0323%" height="15" fill="rgb(219,122,53)" fg:x="397578" fg:w="156"/><text x="82.6023%" y="623.50"></text></g><g><title>blk_mq_flush_plug_list (65 samples, 0.01%)</title><rect x="82.3863%" y="581" width="0.0135%" height="15" fill="rgb(248,84,24)" fg:x="397742" fg:w="65"/><text x="82.6363%" y="591.50"></text></g><g><title>blk_mq_sched_insert_requests (65 samples, 0.01%)</title><rect x="82.3863%" y="565" width="0.0135%" height="15" fill="rgb(245,115,18)" fg:x="397742" fg:w="65"/><text x="82.6363%" y="575.50"></text></g><g><title>blk_mq_try_issue_list_directly (65 samples, 0.01%)</title><rect x="82.3863%" y="549" width="0.0135%" height="15" fill="rgb(227,176,51)" fg:x="397742" fg:w="65"/><text x="82.6363%" y="559.50"></text></g><g><title>__blk_mq_try_issue_directly (63 samples, 0.01%)</title><rect x="82.3867%" y="533" width="0.0130%" height="15" fill="rgb(229,63,42)" fg:x="397744" fg:w="63"/><text x="82.6367%" y="543.50"></text></g><g><title>nvme_queue_rq (62 samples, 0.01%)</title><rect x="82.3869%" y="517" width="0.0128%" height="15" fill="rgb(247,202,24)" fg:x="397745" fg:w="62"/><text x="82.6369%" y="527.50"></text></g><g><title>blk_finish_plug (67 samples, 0.01%)</title><rect x="82.3861%" y="597" width="0.0139%" height="15" fill="rgb(244,173,20)" fg:x="397741" fg:w="67"/><text x="82.6361%" y="607.50"></text></g><g><title>btrfs_lookup_file_extent (71 samples, 0.01%)</title><rect x="82.4151%" y="549" width="0.0147%" height="15" fill="rgb(242,81,47)" fg:x="397881" fg:w="71"/><text x="82.6651%" y="559.50"></text></g><g><title>btrfs_search_slot (71 samples, 0.01%)</title><rect x="82.4151%" y="533" width="0.0147%" height="15" fill="rgb(231,185,54)" fg:x="397881" fg:w="71"/><text x="82.6651%" y="543.50"></text></g><g><title>btrfs_get_extent (133 samples, 0.03%)</title><rect x="82.4072%" y="565" width="0.0275%" height="15" fill="rgb(243,55,32)" fg:x="397843" fg:w="133"/><text x="82.6572%" y="575.50"></text></g><g><title>btrfs_do_readpage (207 samples, 0.04%)</title><rect x="82.4026%" y="581" width="0.0429%" height="15" fill="rgb(208,167,19)" fg:x="397821" fg:w="207"/><text x="82.6526%" y="591.50"></text></g><g><title>btrfs_search_slot (64 samples, 0.01%)</title><rect x="82.4563%" y="517" width="0.0133%" height="15" fill="rgb(231,72,35)" fg:x="398080" fg:w="64"/><text x="82.7063%" y="527.50"></text></g><g><title>btrfs_lookup_csum (69 samples, 0.01%)</title><rect x="82.4557%" y="533" width="0.0143%" height="15" fill="rgb(250,173,51)" fg:x="398077" fg:w="69"/><text x="82.7057%" y="543.50"></text></g><g><title>btrfs_lookup_bio_sums (84 samples, 0.02%)</title><rect x="82.4548%" y="549" width="0.0174%" height="15" fill="rgb(209,5,22)" fg:x="398073" fg:w="84"/><text x="82.7048%" y="559.50"></text></g><g><title>submit_one_bio (181 samples, 0.04%)</title><rect x="82.4544%" y="581" width="0.0375%" height="15" fill="rgb(250,174,19)" fg:x="398071" fg:w="181"/><text x="82.7044%" y="591.50"></text></g><g><title>btrfs_submit_data_bio (181 samples, 0.04%)</title><rect x="82.4544%" y="565" width="0.0375%" height="15" fill="rgb(217,3,49)" fg:x="398071" fg:w="181"/><text x="82.7044%" y="575.50"></text></g><g><title>btrfs_map_bio (95 samples, 0.02%)</title><rect x="82.4722%" y="549" width="0.0197%" height="15" fill="rgb(218,225,5)" fg:x="398157" fg:w="95"/><text x="82.7222%" y="559.50"></text></g><g><title>submit_bio_noacct (74 samples, 0.02%)</title><rect x="82.4766%" y="533" width="0.0153%" height="15" fill="rgb(236,89,11)" fg:x="398178" fg:w="74"/><text x="82.7266%" y="543.50"></text></g><g><title>read_pages (515 samples, 0.11%)</title><rect x="82.3859%" y="613" width="0.1067%" height="15" fill="rgb(206,33,28)" fg:x="397740" fg:w="515"/><text x="82.6359%" y="623.50"></text></g><g><title>extent_readahead (445 samples, 0.09%)</title><rect x="82.4004%" y="597" width="0.0922%" height="15" fill="rgb(241,56,42)" fg:x="397810" fg:w="445"/><text x="82.6504%" y="607.50"></text></g><g><title>page_cache_ra_unbounded (756 samples, 0.16%)</title><rect x="82.3366%" y="629" width="0.1566%" height="15" fill="rgb(222,44,11)" fg:x="397502" fg:w="756"/><text x="82.5866%" y="639.50"></text></g><g><title>wait_on_page_bit_common (77 samples, 0.02%)</title><rect x="82.5060%" y="629" width="0.0159%" height="15" fill="rgb(234,111,20)" fg:x="398320" fg:w="77"/><text x="82.7560%" y="639.50"></text></g><g><title>io_schedule (65 samples, 0.01%)</title><rect x="82.5085%" y="613" width="0.0135%" height="15" fill="rgb(237,77,6)" fg:x="398332" fg:w="65"/><text x="82.7585%" y="623.50"></text></g><g><title>schedule (65 samples, 0.01%)</title><rect x="82.5085%" y="597" width="0.0135%" height="15" fill="rgb(235,111,23)" fg:x="398332" fg:w="65"/><text x="82.7585%" y="607.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="82.5085%" y="581" width="0.0135%" height="15" fill="rgb(251,135,29)" fg:x="398332" fg:w="65"/><text x="82.7585%" y="591.50"></text></g><g><title>new_sync_read (1,038 samples, 0.22%)</title><rect x="82.3072%" y="661" width="0.2150%" height="15" fill="rgb(217,57,1)" fg:x="397360" fg:w="1038"/><text x="82.5572%" y="671.50"></text></g><g><title>generic_file_buffered_read (1,033 samples, 0.21%)</title><rect x="82.3082%" y="645" width="0.2140%" height="15" fill="rgb(249,119,31)" fg:x="397365" fg:w="1033"/><text x="82.5582%" y="655.50"></text></g><g><title>ksys_read (1,084 samples, 0.22%)</title><rect x="82.3016%" y="693" width="0.2245%" height="15" fill="rgb(233,164,33)" fg:x="397333" fg:w="1084"/><text x="82.5516%" y="703.50"></text></g><g><title>vfs_read (1,068 samples, 0.22%)</title><rect x="82.3049%" y="677" width="0.2212%" height="15" fill="rgb(250,217,43)" fg:x="397349" fg:w="1068"/><text x="82.5549%" y="687.50"></text></g><g><title>do_syscall_64 (1,093 samples, 0.23%)</title><rect x="82.3001%" y="709" width="0.2264%" height="15" fill="rgb(232,154,50)" fg:x="397326" fg:w="1093"/><text x="82.5501%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,100 samples, 0.23%)</title><rect x="82.2999%" y="725" width="0.2278%" height="15" fill="rgb(227,190,8)" fg:x="397325" fg:w="1100"/><text x="82.5499%" y="735.50"></text></g><g><title>__libc_read (1,121 samples, 0.23%)</title><rect x="82.2972%" y="757" width="0.2322%" height="15" fill="rgb(209,217,32)" fg:x="397312" fg:w="1121"/><text x="82.5472%" y="767.50"></text></g><g><title>__libc_read (1,120 samples, 0.23%)</title><rect x="82.2974%" y="741" width="0.2320%" height="15" fill="rgb(243,203,50)" fg:x="397313" fg:w="1120"/><text x="82.5474%" y="751.50"></text></g><g><title>handleRead (1,127 samples, 0.23%)</title><rect x="82.2970%" y="773" width="0.2334%" height="15" fill="rgb(232,152,27)" fg:x="397311" fg:w="1127"/><text x="82.5470%" y="783.50"></text></g><g><title>readBytes (1,236 samples, 0.26%)</title><rect x="82.2947%" y="789" width="0.2560%" height="15" fill="rgb(240,34,29)" fg:x="397300" fg:w="1236"/><text x="82.5447%" y="799.50"></text></g><g><title>[unknown] (1,718 samples, 0.36%)</title><rect x="82.1978%" y="805" width="0.3559%" height="15" fill="rgb(215,185,52)" fg:x="396832" fg:w="1718"/><text x="82.4478%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="82.5565%" y="741" width="0.0114%" height="15" fill="rgb(240,89,49)" fg:x="398564" fg:w="55"/><text x="82.8065%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="82.5565%" y="725" width="0.0114%" height="15" fill="rgb(225,12,52)" fg:x="398564" fg:w="55"/><text x="82.8065%" y="735.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="82.5565%" y="709" width="0.0114%" height="15" fill="rgb(239,128,45)" fg:x="398564" fg:w="55"/><text x="82.8065%" y="719.50"></text></g><g><title>schedule_tail (60 samples, 0.01%)</title><rect x="82.5559%" y="773" width="0.0124%" height="15" fill="rgb(211,78,47)" fg:x="398561" fg:w="60"/><text x="82.8059%" y="783.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="82.5559%" y="757" width="0.0124%" height="15" fill="rgb(232,31,21)" fg:x="398561" fg:w="60"/><text x="82.8059%" y="767.50"></text></g><g><title>ret_from_fork (63 samples, 0.01%)</title><rect x="82.5555%" y="789" width="0.0130%" height="15" fill="rgb(222,168,14)" fg:x="398559" fg:w="63"/><text x="82.8055%" y="799.50"></text></g><g><title>__GI___clone (103 samples, 0.02%)</title><rect x="82.5536%" y="805" width="0.0213%" height="15" fill="rgb(209,128,24)" fg:x="398550" fg:w="103"/><text x="82.8036%" y="815.50"></text></g><g><title>asm_exc_page_fault (156 samples, 0.03%)</title><rect x="82.5793%" y="805" width="0.0323%" height="15" fill="rgb(249,35,13)" fg:x="398674" fg:w="156"/><text x="82.8293%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="82.6164%" y="805" width="0.0112%" height="15" fill="rgb(218,7,2)" fg:x="398853" fg:w="54"/><text x="82.8664%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (81 samples, 0.02%)</title><rect x="82.6276%" y="805" width="0.0168%" height="15" fill="rgb(238,107,27)" fg:x="398907" fg:w="81"/><text x="82.8776%" y="815.50"></text></g><g><title>skyframe-evalua (268,244 samples, 55.56%)</title><rect x="27.0943%" y="821" width="55.5627%" height="15" fill="rgb(217,88,38)" fg:x="130805" fg:w="268244"/><text x="27.3443%" y="831.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (60 samples, 0.01%)</title><rect x="82.6732%" y="565" width="0.0124%" height="15" fill="rgb(230,207,0)" fg:x="399127" fg:w="60"/><text x="82.9232%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="82.6734%" y="549" width="0.0122%" height="15" fill="rgb(249,64,54)" fg:x="399128" fg:w="59"/><text x="82.9234%" y="559.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="82.6734%" y="533" width="0.0122%" height="15" fill="rgb(231,7,11)" fg:x="399128" fg:w="59"/><text x="82.9234%" y="543.50"></text></g><g><title>do_syscall_64 (65 samples, 0.01%)</title><rect x="82.6723%" y="693" width="0.0135%" height="15" fill="rgb(205,149,21)" fg:x="399123" fg:w="65"/><text x="82.9223%" y="703.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="82.6723%" y="677" width="0.0135%" height="15" fill="rgb(215,126,34)" fg:x="399123" fg:w="65"/><text x="82.9223%" y="687.50"></text></g><g><title>do_futex (65 samples, 0.01%)</title><rect x="82.6723%" y="661" width="0.0135%" height="15" fill="rgb(241,132,45)" fg:x="399123" fg:w="65"/><text x="82.9223%" y="671.50"></text></g><g><title>futex_wait (63 samples, 0.01%)</title><rect x="82.6727%" y="645" width="0.0130%" height="15" fill="rgb(252,69,32)" fg:x="399125" fg:w="63"/><text x="82.9227%" y="655.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.01%)</title><rect x="82.6727%" y="629" width="0.0130%" height="15" fill="rgb(232,204,19)" fg:x="399125" fg:w="63"/><text x="82.9227%" y="639.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="82.6730%" y="613" width="0.0128%" height="15" fill="rgb(249,15,47)" fg:x="399126" fg:w="62"/><text x="82.9230%" y="623.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="82.6730%" y="597" width="0.0128%" height="15" fill="rgb(209,227,23)" fg:x="399126" fg:w="62"/><text x="82.9230%" y="607.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="82.6732%" y="581" width="0.0126%" height="15" fill="rgb(248,92,24)" fg:x="399127" fg:w="61"/><text x="82.9232%" y="591.50"></text></g><g><title>__pthread_cond_wait (66 samples, 0.01%)</title><rect x="82.6723%" y="757" width="0.0137%" height="15" fill="rgb(247,59,2)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (66 samples, 0.01%)</title><rect x="82.6723%" y="741" width="0.0137%" height="15" fill="rgb(221,30,5)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="751.50"></text></g><g><title>futex_wait_cancelable (66 samples, 0.01%)</title><rect x="82.6723%" y="725" width="0.0137%" height="15" fill="rgb(208,108,53)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.01%)</title><rect x="82.6723%" y="709" width="0.0137%" height="15" fill="rgb(211,183,26)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="719.50"></text></g><g><title>Parker::park (75 samples, 0.02%)</title><rect x="82.6711%" y="773" width="0.0155%" height="15" fill="rgb(232,132,4)" fg:x="399117" fg:w="75"/><text x="82.9211%" y="783.50"></text></g><g><title>Unsafe_Park (76 samples, 0.02%)</title><rect x="82.6711%" y="789" width="0.0157%" height="15" fill="rgb(253,128,37)" fg:x="399117" fg:w="76"/><text x="82.9211%" y="799.50"></text></g><g><title>[perf-987172.map] (148 samples, 0.03%)</title><rect x="82.6576%" y="805" width="0.0307%" height="15" fill="rgb(221,58,24)" fg:x="399052" fg:w="148"/><text x="82.9076%" y="815.50"></text></g><g><title>skyframe-invali (164 samples, 0.03%)</title><rect x="82.6570%" y="821" width="0.0340%" height="15" fill="rgb(230,54,45)" fg:x="399049" fg:w="164"/><text x="82.9070%" y="831.50"></text></g><g><title>[unknown] (77 samples, 0.02%)</title><rect x="82.6978%" y="805" width="0.0159%" height="15" fill="rgb(254,21,18)" fg:x="399246" fg:w="77"/><text x="82.9478%" y="815.50"></text></g><g><title>[zig] (77 samples, 0.02%)</title><rect x="82.6978%" y="789" width="0.0159%" height="15" fill="rgb(221,108,0)" fg:x="399246" fg:w="77"/><text x="82.9478%" y="799.50"></text></g><g><title>find_vma (56 samples, 0.01%)</title><rect x="88.4678%" y="741" width="0.0116%" height="15" fill="rgb(206,95,1)" fg:x="427102" fg:w="56"/><text x="88.7178%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="88.5324%" y="613" width="0.0139%" height="15" fill="rgb(237,52,5)" fg:x="427414" fg:w="67"/><text x="88.7824%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="88.5326%" y="597" width="0.0137%" height="15" fill="rgb(218,150,34)" fg:x="427415" fg:w="66"/><text x="88.7826%" y="607.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="88.5328%" y="581" width="0.0135%" height="15" fill="rgb(235,194,28)" fg:x="427416" fg:w="65"/><text x="88.7828%" y="591.50"></text></g><g><title>finish_task_switch (73 samples, 0.02%)</title><rect x="88.5316%" y="629" width="0.0151%" height="15" fill="rgb(245,92,18)" fg:x="427410" fg:w="73"/><text x="88.7816%" y="639.50"></text></g><g><title>wait_on_page_bit_common (92 samples, 0.02%)</title><rect x="88.5303%" y="693" width="0.0191%" height="15" fill="rgb(253,203,53)" fg:x="427404" fg:w="92"/><text x="88.7803%" y="703.50"></text></g><g><title>io_schedule (90 samples, 0.02%)</title><rect x="88.5307%" y="677" width="0.0186%" height="15" fill="rgb(249,185,47)" fg:x="427406" fg:w="90"/><text x="88.7807%" y="687.50"></text></g><g><title>schedule (90 samples, 0.02%)</title><rect x="88.5307%" y="661" width="0.0186%" height="15" fill="rgb(252,194,52)" fg:x="427406" fg:w="90"/><text x="88.7807%" y="671.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="88.5307%" y="645" width="0.0186%" height="15" fill="rgb(210,53,36)" fg:x="427406" fg:w="90"/><text x="88.7807%" y="655.50"></text></g><g><title>__do_fault (144 samples, 0.03%)</title><rect x="88.5251%" y="725" width="0.0298%" height="15" fill="rgb(237,37,25)" fg:x="427379" fg:w="144"/><text x="88.7751%" y="735.50"></text></g><g><title>filemap_fault (143 samples, 0.03%)</title><rect x="88.5253%" y="709" width="0.0296%" height="15" fill="rgb(242,116,27)" fg:x="427380" fg:w="143"/><text x="88.7753%" y="719.50"></text></g><g><title>__list_del_entry_valid (118 samples, 0.02%)</title><rect x="88.5920%" y="677" width="0.0244%" height="15" fill="rgb(213,185,26)" fg:x="427702" fg:w="118"/><text x="88.8420%" y="687.50"></text></g><g><title>kernel_init_free_pages (236 samples, 0.05%)</title><rect x="88.6198%" y="661" width="0.0489%" height="15" fill="rgb(225,204,8)" fg:x="427836" fg:w="236"/><text x="88.8698%" y="671.50"></text></g><g><title>clear_page_erms (230 samples, 0.05%)</title><rect x="88.6210%" y="645" width="0.0476%" height="15" fill="rgb(254,111,37)" fg:x="427842" fg:w="230"/><text x="88.8710%" y="655.50"></text></g><g><title>get_page_from_freelist (439 samples, 0.09%)</title><rect x="88.5782%" y="693" width="0.0909%" height="15" fill="rgb(242,35,9)" fg:x="427635" fg:w="439"/><text x="88.8282%" y="703.50"></text></g><g><title>prep_new_page (251 samples, 0.05%)</title><rect x="88.6171%" y="677" width="0.0520%" height="15" fill="rgb(232,138,49)" fg:x="427823" fg:w="251"/><text x="88.8671%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (495 samples, 0.10%)</title><rect x="88.5670%" y="709" width="0.1025%" height="15" fill="rgb(247,56,4)" fg:x="427581" fg:w="495"/><text x="88.8170%" y="719.50"></text></g><g><title>alloc_pages_vma (524 samples, 0.11%)</title><rect x="88.5632%" y="725" width="0.1085%" height="15" fill="rgb(226,179,17)" fg:x="427563" fg:w="524"/><text x="88.8132%" y="735.50"></text></g><g><title>do_page_mkwrite (224 samples, 0.05%)</title><rect x="88.6869%" y="725" width="0.0464%" height="15" fill="rgb(216,163,45)" fg:x="428160" fg:w="224"/><text x="88.9369%" y="735.50"></text></g><g><title>btrfs_page_mkwrite (224 samples, 0.05%)</title><rect x="88.6869%" y="709" width="0.0464%" height="15" fill="rgb(211,157,3)" fg:x="428160" fg:w="224"/><text x="88.9369%" y="719.50"></text></g><g><title>__mod_memcg_lruvec_state (60 samples, 0.01%)</title><rect x="88.8740%" y="677" width="0.0124%" height="15" fill="rgb(234,44,20)" fg:x="429063" fg:w="60"/><text x="89.1240%" y="687.50"></text></g><g><title>page_add_file_rmap (199 samples, 0.04%)</title><rect x="88.8495%" y="693" width="0.0412%" height="15" fill="rgb(254,138,23)" fg:x="428945" fg:w="199"/><text x="89.0995%" y="703.50"></text></g><g><title>alloc_set_pte (287 samples, 0.06%)</title><rect x="88.8325%" y="709" width="0.0594%" height="15" fill="rgb(206,119,39)" fg:x="428863" fg:w="287"/><text x="89.0825%" y="719.50"></text></g><g><title>unlock_page (69 samples, 0.01%)</title><rect x="88.8922%" y="709" width="0.0143%" height="15" fill="rgb(231,105,52)" fg:x="429151" fg:w="69"/><text x="89.1422%" y="719.50"></text></g><g><title>filemap_map_pages (850 samples, 0.18%)</title><rect x="88.7422%" y="725" width="0.1761%" height="15" fill="rgb(250,20,5)" fg:x="428427" fg:w="850"/><text x="88.9922%" y="735.50"></text></g><g><title>xas_find (57 samples, 0.01%)</title><rect x="88.9065%" y="709" width="0.0118%" height="15" fill="rgb(215,198,30)" fg:x="429220" fg:w="57"/><text x="89.1565%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (92 samples, 0.02%)</title><rect x="88.9262%" y="693" width="0.0191%" height="15" fill="rgb(246,142,8)" fg:x="429315" fg:w="92"/><text x="89.1762%" y="703.50"></text></g><g><title>lru_cache_add (144 samples, 0.03%)</title><rect x="88.9199%" y="725" width="0.0298%" height="15" fill="rgb(243,26,38)" fg:x="429285" fg:w="144"/><text x="89.1699%" y="735.50"></text></g><g><title>pagevec_lru_move_fn (132 samples, 0.03%)</title><rect x="88.9224%" y="709" width="0.0273%" height="15" fill="rgb(205,133,28)" fg:x="429297" fg:w="132"/><text x="89.1724%" y="719.50"></text></g><g><title>get_mem_cgroup_from_mm (49 samples, 0.01%)</title><rect x="88.9556%" y="709" width="0.0101%" height="15" fill="rgb(212,34,0)" fg:x="429457" fg:w="49"/><text x="89.2056%" y="719.50"></text></g><g><title>mem_cgroup_charge (130 samples, 0.03%)</title><rect x="88.9504%" y="725" width="0.0269%" height="15" fill="rgb(251,226,22)" fg:x="429432" fg:w="130"/><text x="89.2004%" y="735.50"></text></g><g><title>handle_mm_fault (2,522 samples, 0.52%)</title><rect x="88.4794%" y="741" width="0.5224%" height="15" fill="rgb(252,119,9)" fg:x="427158" fg:w="2522"/><text x="88.7294%" y="751.50"></text></g><g><title>do_user_addr_fault (2,665 samples, 0.55%)</title><rect x="88.4562%" y="757" width="0.5520%" height="15" fill="rgb(213,150,50)" fg:x="427046" fg:w="2665"/><text x="88.7062%" y="767.50"></text></g><g><title>exc_page_fault (2,685 samples, 0.56%)</title><rect x="88.4535%" y="773" width="0.5562%" height="15" fill="rgb(212,24,39)" fg:x="427033" fg:w="2685"/><text x="88.7035%" y="783.50"></text></g><g><title>asm_exc_page_fault (2,726 samples, 0.56%)</title><rect x="88.4485%" y="789" width="0.5646%" height="15" fill="rgb(213,46,39)" fg:x="427009" fg:w="2726"/><text x="88.6985%" y="799.50"></text></g><g><title>rcu_core (74 samples, 0.02%)</title><rect x="89.0179%" y="693" width="0.0153%" height="15" fill="rgb(239,106,12)" fg:x="429758" fg:w="74"/><text x="89.2679%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (101 samples, 0.02%)</title><rect x="89.0131%" y="789" width="0.0209%" height="15" fill="rgb(249,229,21)" fg:x="429735" fg:w="101"/><text x="89.2631%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (97 samples, 0.02%)</title><rect x="89.0140%" y="773" width="0.0201%" height="15" fill="rgb(212,158,3)" fg:x="429739" fg:w="97"/><text x="89.2640%" y="783.50"></text></g><g><title>irq_exit_rcu (78 samples, 0.02%)</title><rect x="89.0179%" y="757" width="0.0162%" height="15" fill="rgb(253,26,48)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="767.50"></text></g><g><title>do_softirq_own_stack (78 samples, 0.02%)</title><rect x="89.0179%" y="741" width="0.0162%" height="15" fill="rgb(238,178,20)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (78 samples, 0.02%)</title><rect x="89.0179%" y="725" width="0.0162%" height="15" fill="rgb(208,86,15)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="735.50"></text></g><g><title>__softirqentry_text_start (78 samples, 0.02%)</title><rect x="89.0179%" y="709" width="0.0162%" height="15" fill="rgb(239,42,53)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="719.50"></text></g><g><title>entry_SYSCALL_64 (1,253 samples, 0.26%)</title><rect x="89.0359%" y="789" width="0.2595%" height="15" fill="rgb(245,226,8)" fg:x="429845" fg:w="1253"/><text x="89.2859%" y="799.50"></text></g><g><title>inherit_task_group.isra.0 (56 samples, 0.01%)</title><rect x="89.4102%" y="693" width="0.0116%" height="15" fill="rgb(216,176,32)" fg:x="431652" fg:w="56"/><text x="89.6602%" y="703.50"></text></g><g><title>inherit_event.constprop.0 (51 samples, 0.01%)</title><rect x="89.4113%" y="677" width="0.0106%" height="15" fill="rgb(231,186,21)" fg:x="431657" fg:w="51"/><text x="89.6613%" y="687.50"></text></g><g><title>perf_event_init_task (61 samples, 0.01%)</title><rect x="89.4098%" y="709" width="0.0126%" height="15" fill="rgb(205,95,49)" fg:x="431650" fg:w="61"/><text x="89.6598%" y="719.50"></text></g><g><title>copy_process (138 samples, 0.03%)</title><rect x="89.3947%" y="725" width="0.0286%" height="15" fill="rgb(217,145,8)" fg:x="431577" fg:w="138"/><text x="89.6447%" y="735.50"></text></g><g><title>__do_sys_clone (150 samples, 0.03%)</title><rect x="89.3947%" y="757" width="0.0311%" height="15" fill="rgb(239,144,48)" fg:x="431577" fg:w="150"/><text x="89.6447%" y="767.50"></text></g><g><title>kernel_clone (150 samples, 0.03%)</title><rect x="89.3947%" y="741" width="0.0311%" height="15" fill="rgb(214,189,23)" fg:x="431577" fg:w="150"/><text x="89.6447%" y="751.50"></text></g><g><title>_copy_to_user (165 samples, 0.03%)</title><rect x="89.4413%" y="725" width="0.0342%" height="15" fill="rgb(229,157,17)" fg:x="431802" fg:w="165"/><text x="89.6913%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (151 samples, 0.03%)</title><rect x="89.4442%" y="709" width="0.0313%" height="15" fill="rgb(230,5,48)" fg:x="431816" fg:w="151"/><text x="89.6942%" y="719.50"></text></g><g><title>cp_new_stat (276 samples, 0.06%)</title><rect x="89.4285%" y="741" width="0.0572%" height="15" fill="rgb(224,156,48)" fg:x="431740" fg:w="276"/><text x="89.6785%" y="751.50"></text></g><g><title>__fget_files (102 samples, 0.02%)</title><rect x="89.4929%" y="709" width="0.0211%" height="15" fill="rgb(223,14,29)" fg:x="432051" fg:w="102"/><text x="89.7429%" y="719.50"></text></g><g><title>__fget_light (109 samples, 0.02%)</title><rect x="89.4916%" y="725" width="0.0226%" height="15" fill="rgb(229,96,36)" fg:x="432045" fg:w="109"/><text x="89.7416%" y="735.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="89.6037%" y="709" width="0.0143%" height="15" fill="rgb(231,102,53)" fg:x="432586" fg:w="69"/><text x="89.8537%" y="719.50"></text></g><g><title>btrfs_getattr (618 samples, 0.13%)</title><rect x="89.5144%" y="725" width="0.1280%" height="15" fill="rgb(210,77,38)" fg:x="432155" fg:w="618"/><text x="89.7644%" y="735.50"></text></g><g><title>inode_get_bytes (79 samples, 0.02%)</title><rect x="89.6261%" y="709" width="0.0164%" height="15" fill="rgb(235,131,6)" fg:x="432694" fg:w="79"/><text x="89.8761%" y="719.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="89.6275%" y="693" width="0.0149%" height="15" fill="rgb(252,55,38)" fg:x="432701" fg:w="72"/><text x="89.8775%" y="703.50"></text></g><g><title>fput_many (50 samples, 0.01%)</title><rect x="89.6433%" y="725" width="0.0104%" height="15" fill="rgb(246,38,14)" fg:x="432777" fg:w="50"/><text x="89.8933%" y="735.50"></text></g><g><title>security_inode_getattr (245 samples, 0.05%)</title><rect x="89.6536%" y="725" width="0.0507%" height="15" fill="rgb(242,27,5)" fg:x="432827" fg:w="245"/><text x="89.9036%" y="735.50"></text></g><g><title>tomoyo_path_perm (189 samples, 0.04%)</title><rect x="89.6652%" y="709" width="0.0391%" height="15" fill="rgb(228,65,35)" fg:x="432883" fg:w="189"/><text x="89.9152%" y="719.50"></text></g><g><title>tomoyo_init_request_info (89 samples, 0.02%)</title><rect x="89.6859%" y="693" width="0.0184%" height="15" fill="rgb(245,93,11)" fg:x="432983" fg:w="89"/><text x="89.9359%" y="703.50"></text></g><g><title>__do_sys_newfstat (1,434 samples, 0.30%)</title><rect x="89.4258%" y="757" width="0.2970%" height="15" fill="rgb(213,1,31)" fg:x="431727" fg:w="1434"/><text x="89.6758%" y="767.50"></text></g><g><title>vfs_fstat (1,145 samples, 0.24%)</title><rect x="89.4856%" y="741" width="0.2372%" height="15" fill="rgb(237,205,14)" fg:x="432016" fg:w="1145"/><text x="89.7356%" y="751.50"></text></g><g><title>vfs_getattr_nosec (89 samples, 0.02%)</title><rect x="89.7044%" y="725" width="0.0184%" height="15" fill="rgb(232,118,45)" fg:x="433072" fg:w="89"/><text x="89.9544%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="89.7394%" y="709" width="0.0118%" height="15" fill="rgb(218,5,6)" fg:x="433241" fg:w="57"/><text x="89.9894%" y="719.50"></text></g><g><title>__close_fd (103 samples, 0.02%)</title><rect x="89.7300%" y="741" width="0.0213%" height="15" fill="rgb(251,87,51)" fg:x="433196" fg:w="103"/><text x="89.9800%" y="751.50"></text></g><g><title>pick_file (98 samples, 0.02%)</title><rect x="89.7311%" y="725" width="0.0203%" height="15" fill="rgb(207,225,20)" fg:x="433201" fg:w="98"/><text x="89.9811%" y="735.50"></text></g><g><title>fput_many (201 samples, 0.04%)</title><rect x="89.7561%" y="725" width="0.0416%" height="15" fill="rgb(222,78,54)" fg:x="433322" fg:w="201"/><text x="90.0061%" y="735.50"></text></g><g><title>task_work_add (129 samples, 0.03%)</title><rect x="89.7711%" y="709" width="0.0267%" height="15" fill="rgb(232,85,16)" fg:x="433394" fg:w="129"/><text x="90.0211%" y="719.50"></text></g><g><title>__x64_sys_close (343 samples, 0.07%)</title><rect x="89.7294%" y="757" width="0.0710%" height="15" fill="rgb(244,25,33)" fg:x="433193" fg:w="343"/><text x="89.9794%" y="767.50"></text></g><g><title>filp_close (237 samples, 0.05%)</title><rect x="89.7514%" y="741" width="0.0491%" height="15" fill="rgb(233,24,36)" fg:x="433299" fg:w="237"/><text x="90.0014%" y="751.50"></text></g><g><title>bprm_execve (60 samples, 0.01%)</title><rect x="89.8019%" y="725" width="0.0124%" height="15" fill="rgb(253,49,54)" fg:x="433543" fg:w="60"/><text x="90.0519%" y="735.50"></text></g><g><title>__x64_sys_execve (125 samples, 0.03%)</title><rect x="89.8005%" y="757" width="0.0259%" height="15" fill="rgb(245,12,22)" fg:x="433536" fg:w="125"/><text x="90.0505%" y="767.50"></text></g><g><title>do_execveat_common (124 samples, 0.03%)</title><rect x="89.8007%" y="741" width="0.0257%" height="15" fill="rgb(253,141,28)" fg:x="433537" fg:w="124"/><text x="90.0507%" y="751.50"></text></g><g><title>update_curr (98 samples, 0.02%)</title><rect x="89.9218%" y="629" width="0.0203%" height="15" fill="rgb(225,207,27)" fg:x="434122" fg:w="98"/><text x="90.1718%" y="639.50"></text></g><g><title>dequeue_entity (284 samples, 0.06%)</title><rect x="89.9018%" y="645" width="0.0588%" height="15" fill="rgb(220,84,2)" fg:x="434025" fg:w="284"/><text x="90.1518%" y="655.50"></text></g><g><title>update_load_avg (89 samples, 0.02%)</title><rect x="89.9421%" y="629" width="0.0184%" height="15" fill="rgb(224,37,37)" fg:x="434220" fg:w="89"/><text x="90.1921%" y="639.50"></text></g><g><title>dequeue_task_fair (318 samples, 0.07%)</title><rect x="89.8960%" y="661" width="0.0659%" height="15" fill="rgb(220,143,18)" fg:x="433997" fg:w="318"/><text x="90.1460%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (5,065 samples, 1.05%)</title><rect x="89.9941%" y="645" width="1.0491%" height="15" fill="rgb(210,88,33)" fg:x="434471" fg:w="5065"/><text x="90.2441%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,021 samples, 1.04%)</title><rect x="90.0033%" y="629" width="1.0400%" height="15" fill="rgb(219,87,51)" fg:x="434515" fg:w="5021"/><text x="90.2533%" y="639.50"></text></g><g><title>native_write_msr (4,990 samples, 1.03%)</title><rect x="90.0097%" y="613" width="1.0336%" height="15" fill="rgb(211,7,35)" fg:x="434546" fg:w="4990"/><text x="90.2597%" y="623.50"></text></g><g><title>__wake_up_common (69 samples, 0.01%)</title><rect x="91.0532%" y="485" width="0.0143%" height="15" fill="rgb(232,77,2)" fg:x="439584" fg:w="69"/><text x="91.3032%" y="495.50"></text></g><g><title>pollwake (66 samples, 0.01%)</title><rect x="91.0538%" y="469" width="0.0137%" height="15" fill="rgb(249,94,25)" fg:x="439587" fg:w="66"/><text x="91.3038%" y="479.50"></text></g><g><title>try_to_wake_up (64 samples, 0.01%)</title><rect x="91.0543%" y="453" width="0.0133%" height="15" fill="rgb(215,112,2)" fg:x="439589" fg:w="64"/><text x="91.3043%" y="463.50"></text></g><g><title>asm_call_sysvec_on_stack (79 samples, 0.02%)</title><rect x="91.0520%" y="613" width="0.0164%" height="15" fill="rgb(226,115,48)" fg:x="439578" fg:w="79"/><text x="91.3020%" y="623.50"></text></g><g><title>__sysvec_irq_work (78 samples, 0.02%)</title><rect x="91.0522%" y="597" width="0.0162%" height="15" fill="rgb(249,196,10)" fg:x="439579" fg:w="78"/><text x="91.3022%" y="607.50"></text></g><g><title>irq_work_run (78 samples, 0.02%)</title><rect x="91.0522%" y="581" width="0.0162%" height="15" fill="rgb(237,109,14)" fg:x="439579" fg:w="78"/><text x="91.3022%" y="591.50"></text></g><g><title>irq_work_run_list (78 samples, 0.02%)</title><rect x="91.0522%" y="565" width="0.0162%" height="15" fill="rgb(217,103,53)" fg:x="439579" fg:w="78"/><text x="91.3022%" y="575.50"></text></g><g><title>irq_work_single (77 samples, 0.02%)</title><rect x="91.0524%" y="549" width="0.0159%" height="15" fill="rgb(244,137,9)" fg:x="439580" fg:w="77"/><text x="91.3024%" y="559.50"></text></g><g><title>perf_pending_event (77 samples, 0.02%)</title><rect x="91.0524%" y="533" width="0.0159%" height="15" fill="rgb(227,201,3)" fg:x="439580" fg:w="77"/><text x="91.3024%" y="543.50"></text></g><g><title>perf_event_wakeup (75 samples, 0.02%)</title><rect x="91.0528%" y="517" width="0.0155%" height="15" fill="rgb(243,94,6)" fg:x="439582" fg:w="75"/><text x="91.3028%" y="527.50"></text></g><g><title>__wake_up_common_lock (74 samples, 0.02%)</title><rect x="91.0530%" y="501" width="0.0153%" height="15" fill="rgb(235,118,5)" fg:x="439583" fg:w="74"/><text x="91.3030%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (97 samples, 0.02%)</title><rect x="91.0489%" y="645" width="0.0201%" height="15" fill="rgb(247,10,30)" fg:x="439563" fg:w="97"/><text x="91.2989%" y="655.50"></text></g><g><title>sysvec_irq_work (82 samples, 0.02%)</title><rect x="91.0520%" y="629" width="0.0170%" height="15" fill="rgb(205,26,28)" fg:x="439578" fg:w="82"/><text x="91.3020%" y="639.50"></text></g><g><title>finish_task_switch (5,378 samples, 1.11%)</title><rect x="89.9618%" y="661" width="1.1140%" height="15" fill="rgb(206,99,35)" fg:x="434315" fg:w="5378"/><text x="90.2118%" y="671.50"></text></g><g><title>newidle_balance (56 samples, 0.01%)</title><rect x="91.0764%" y="645" width="0.0116%" height="15" fill="rgb(238,130,40)" fg:x="439696" fg:w="56"/><text x="91.3264%" y="655.50"></text></g><g><title>pick_next_task_fair (62 samples, 0.01%)</title><rect x="91.0758%" y="661" width="0.0128%" height="15" fill="rgb(224,126,31)" fg:x="439693" fg:w="62"/><text x="91.3258%" y="671.50"></text></g><g><title>psi_task_change (195 samples, 0.04%)</title><rect x="91.0963%" y="661" width="0.0404%" height="15" fill="rgb(254,105,17)" fg:x="439792" fg:w="195"/><text x="91.3463%" y="671.50"></text></g><g><title>psi_group_change (166 samples, 0.03%)</title><rect x="91.1023%" y="645" width="0.0344%" height="15" fill="rgb(216,87,36)" fg:x="439821" fg:w="166"/><text x="91.3523%" y="655.50"></text></g><g><title>record_times (51 samples, 0.01%)</title><rect x="91.1261%" y="629" width="0.0106%" height="15" fill="rgb(240,21,12)" fg:x="439936" fg:w="51"/><text x="91.3761%" y="639.50"></text></g><g><title>futex_wait_queue_me (6,227 samples, 1.29%)</title><rect x="89.8572%" y="709" width="1.2898%" height="15" fill="rgb(245,192,34)" fg:x="433810" fg:w="6227"/><text x="90.1072%" y="719.50"></text></g><g><title>schedule (6,173 samples, 1.28%)</title><rect x="89.8684%" y="693" width="1.2786%" height="15" fill="rgb(226,100,49)" fg:x="433864" fg:w="6173"/><text x="90.1184%" y="703.50"></text></g><g><title>__schedule (6,148 samples, 1.27%)</title><rect x="89.8736%" y="677" width="1.2735%" height="15" fill="rgb(245,188,27)" fg:x="433889" fg:w="6148"/><text x="90.1236%" y="687.50"></text></g><g><title>futex_wait (6,376 samples, 1.32%)</title><rect x="89.8454%" y="725" width="1.3207%" height="15" fill="rgb(212,170,8)" fg:x="433753" fg:w="6376"/><text x="90.0954%" y="735.50"></text></g><g><title>futex_wait_setup (92 samples, 0.02%)</title><rect x="91.1471%" y="709" width="0.0191%" height="15" fill="rgb(217,113,29)" fg:x="440037" fg:w="92"/><text x="91.3971%" y="719.50"></text></g><g><title>select_task_rq_fair (76 samples, 0.02%)</title><rect x="91.1928%" y="677" width="0.0157%" height="15" fill="rgb(237,30,3)" fg:x="440258" fg:w="76"/><text x="91.4428%" y="687.50"></text></g><g><title>enqueue_entity (51 samples, 0.01%)</title><rect x="91.2135%" y="645" width="0.0106%" height="15" fill="rgb(227,19,28)" fg:x="440358" fg:w="51"/><text x="91.4635%" y="655.50"></text></g><g><title>enqueue_task_fair (66 samples, 0.01%)</title><rect x="91.2108%" y="661" width="0.0137%" height="15" fill="rgb(239,172,45)" fg:x="440345" fg:w="66"/><text x="91.4608%" y="671.50"></text></g><g><title>ttwu_do_activate (157 samples, 0.03%)</title><rect x="91.2096%" y="677" width="0.0325%" height="15" fill="rgb(254,55,39)" fg:x="440339" fg:w="157"/><text x="91.4596%" y="687.50"></text></g><g><title>psi_task_change (85 samples, 0.02%)</title><rect x="91.2245%" y="661" width="0.0176%" height="15" fill="rgb(249,208,12)" fg:x="440411" fg:w="85"/><text x="91.4745%" y="671.50"></text></g><g><title>psi_group_change (78 samples, 0.02%)</title><rect x="91.2260%" y="645" width="0.0162%" height="15" fill="rgb(240,52,13)" fg:x="440418" fg:w="78"/><text x="91.4760%" y="655.50"></text></g><g><title>__x64_sys_futex (6,818 samples, 1.41%)</title><rect x="89.8359%" y="757" width="1.4122%" height="15" fill="rgb(252,149,13)" fg:x="433707" fg:w="6818"/><text x="90.0859%" y="767.50"></text></g><g><title>do_futex (6,795 samples, 1.41%)</title><rect x="89.8407%" y="741" width="1.4075%" height="15" fill="rgb(232,81,48)" fg:x="433730" fg:w="6795"/><text x="90.0907%" y="751.50"></text></g><g><title>futex_wake (396 samples, 0.08%)</title><rect x="91.1661%" y="725" width="0.0820%" height="15" fill="rgb(222,144,2)" fg:x="440129" fg:w="396"/><text x="91.4161%" y="735.50"></text></g><g><title>wake_up_q (318 samples, 0.07%)</title><rect x="91.1823%" y="709" width="0.0659%" height="15" fill="rgb(216,81,32)" fg:x="440207" fg:w="318"/><text x="91.4323%" y="719.50"></text></g><g><title>try_to_wake_up (309 samples, 0.06%)</title><rect x="91.1841%" y="693" width="0.0640%" height="15" fill="rgb(244,78,51)" fg:x="440216" fg:w="309"/><text x="91.4341%" y="703.50"></text></g><g><title>__split_vma (74 samples, 0.02%)</title><rect x="91.2601%" y="709" width="0.0153%" height="15" fill="rgb(217,66,21)" fg:x="440583" fg:w="74"/><text x="91.5101%" y="719.50"></text></g><g><title>flush_tlb_mm_range (58 samples, 0.01%)</title><rect x="91.2910%" y="677" width="0.0120%" height="15" fill="rgb(247,101,42)" fg:x="440732" fg:w="58"/><text x="91.5410%" y="687.50"></text></g><g><title>free_pcppages_bulk (57 samples, 0.01%)</title><rect x="91.3254%" y="645" width="0.0118%" height="15" fill="rgb(227,81,39)" fg:x="440898" fg:w="57"/><text x="91.5754%" y="655.50"></text></g><g><title>free_unref_page_list (110 samples, 0.02%)</title><rect x="91.3179%" y="661" width="0.0228%" height="15" fill="rgb(220,223,44)" fg:x="440862" fg:w="110"/><text x="91.5679%" y="671.50"></text></g><g><title>tlb_finish_mmu (278 samples, 0.06%)</title><rect x="91.2898%" y="693" width="0.0576%" height="15" fill="rgb(205,218,2)" fg:x="440726" fg:w="278"/><text x="91.5398%" y="703.50"></text></g><g><title>release_pages (208 samples, 0.04%)</title><rect x="91.3043%" y="677" width="0.0431%" height="15" fill="rgb(212,207,28)" fg:x="440796" fg:w="208"/><text x="91.5543%" y="687.50"></text></g><g><title>unmap_page_range (148 samples, 0.03%)</title><rect x="91.3484%" y="677" width="0.0307%" height="15" fill="rgb(224,12,41)" fg:x="441009" fg:w="148"/><text x="91.5984%" y="687.50"></text></g><g><title>unmap_region (474 samples, 0.10%)</title><rect x="91.2811%" y="709" width="0.0982%" height="15" fill="rgb(216,118,12)" fg:x="440684" fg:w="474"/><text x="91.5311%" y="719.50"></text></g><g><title>unmap_vmas (154 samples, 0.03%)</title><rect x="91.3474%" y="693" width="0.0319%" height="15" fill="rgb(252,97,46)" fg:x="441004" fg:w="154"/><text x="91.5974%" y="703.50"></text></g><g><title>__do_munmap (589 samples, 0.12%)</title><rect x="91.2577%" y="725" width="0.1220%" height="15" fill="rgb(244,206,19)" fg:x="440571" fg:w="589"/><text x="91.5077%" y="735.50"></text></g><g><title>__vm_munmap (596 samples, 0.12%)</title><rect x="91.2577%" y="741" width="0.1235%" height="15" fill="rgb(231,84,31)" fg:x="440571" fg:w="596"/><text x="91.5077%" y="751.50"></text></g><g><title>__x64_sys_munmap (599 samples, 0.12%)</title><rect x="91.2575%" y="757" width="0.1241%" height="15" fill="rgb(244,133,0)" fg:x="440570" fg:w="599"/><text x="91.5075%" y="767.50"></text></g><g><title>do_filp_open (117 samples, 0.02%)</title><rect x="91.3821%" y="725" width="0.0242%" height="15" fill="rgb(223,15,50)" fg:x="441172" fg:w="117"/><text x="91.6321%" y="735.50"></text></g><g><title>path_openat (117 samples, 0.02%)</title><rect x="91.3821%" y="709" width="0.0242%" height="15" fill="rgb(250,118,49)" fg:x="441172" fg:w="117"/><text x="91.6321%" y="719.50"></text></g><g><title>__x64_sys_open (126 samples, 0.03%)</title><rect x="91.3815%" y="757" width="0.0261%" height="15" fill="rgb(248,25,38)" fg:x="441169" fg:w="126"/><text x="91.6315%" y="767.50"></text></g><g><title>do_sys_openat2 (126 samples, 0.03%)</title><rect x="91.3815%" y="741" width="0.0261%" height="15" fill="rgb(215,70,14)" fg:x="441169" fg:w="126"/><text x="91.6315%" y="751.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="91.4517%" y="709" width="0.0135%" height="15" fill="rgb(215,28,15)" fg:x="441508" fg:w="65"/><text x="91.7017%" y="719.50"></text></g><g><title>__alloc_fd (197 samples, 0.04%)</title><rect x="91.4321%" y="725" width="0.0408%" height="15" fill="rgb(243,6,28)" fg:x="441413" fg:w="197"/><text x="91.6821%" y="735.50"></text></g><g><title>__fd_install (54 samples, 0.01%)</title><rect x="91.4729%" y="725" width="0.0112%" height="15" fill="rgb(222,130,1)" fg:x="441610" fg:w="54"/><text x="91.7229%" y="735.50"></text></g><g><title>build_open_flags (53 samples, 0.01%)</title><rect x="91.4938%" y="725" width="0.0110%" height="15" fill="rgb(236,166,44)" fg:x="441711" fg:w="53"/><text x="91.7438%" y="735.50"></text></g><g><title>get_partial_node.part.0 (55 samples, 0.01%)</title><rect x="91.6411%" y="613" width="0.0114%" height="15" fill="rgb(221,108,14)" fg:x="442422" fg:w="55"/><text x="91.8911%" y="623.50"></text></g><g><title>__slab_alloc (191 samples, 0.04%)</title><rect x="91.6131%" y="645" width="0.0396%" height="15" fill="rgb(252,3,45)" fg:x="442287" fg:w="191"/><text x="91.8631%" y="655.50"></text></g><g><title>___slab_alloc (179 samples, 0.04%)</title><rect x="91.6156%" y="629" width="0.0371%" height="15" fill="rgb(237,68,30)" fg:x="442299" fg:w="179"/><text x="91.8656%" y="639.50"></text></g><g><title>__mod_memcg_lruvec_state (85 samples, 0.02%)</title><rect x="91.7190%" y="629" width="0.0176%" height="15" fill="rgb(211,79,22)" fg:x="442798" fg:w="85"/><text x="91.9690%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (49 samples, 0.01%)</title><rect x="91.7264%" y="613" width="0.0101%" height="15" fill="rgb(252,185,21)" fg:x="442834" fg:w="49"/><text x="91.9764%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (432 samples, 0.09%)</title><rect x="91.6527%" y="645" width="0.0895%" height="15" fill="rgb(225,189,26)" fg:x="442478" fg:w="432"/><text x="91.9027%" y="655.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="91.7422%" y="645" width="0.0135%" height="15" fill="rgb(241,30,40)" fg:x="442910" fg:w="65"/><text x="91.9922%" y="655.50"></text></g><g><title>get_obj_cgroup_from_current (203 samples, 0.04%)</title><rect x="91.7645%" y="629" width="0.0420%" height="15" fill="rgb(235,215,44)" fg:x="443018" fg:w="203"/><text x="92.0145%" y="639.50"></text></g><g><title>obj_cgroup_charge (137 samples, 0.03%)</title><rect x="91.8066%" y="629" width="0.0284%" height="15" fill="rgb(205,8,29)" fg:x="443221" fg:w="137"/><text x="92.0566%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,241 samples, 0.26%)</title><rect x="91.5781%" y="661" width="0.2571%" height="15" fill="rgb(241,137,42)" fg:x="442118" fg:w="1241"/><text x="91.8281%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (384 samples, 0.08%)</title><rect x="91.7556%" y="645" width="0.0795%" height="15" fill="rgb(237,155,2)" fg:x="442975" fg:w="384"/><text x="92.0056%" y="655.50"></text></g><g><title>apparmor_file_alloc_security (137 samples, 0.03%)</title><rect x="91.8393%" y="645" width="0.0284%" height="15" fill="rgb(245,29,42)" fg:x="443379" fg:w="137"/><text x="92.0893%" y="655.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="91.8865%" y="629" width="0.0126%" height="15" fill="rgb(234,101,35)" fg:x="443607" fg:w="61"/><text x="92.1365%" y="639.50"></text></g><g><title>__alloc_file (1,711 samples, 0.35%)</title><rect x="91.5514%" y="677" width="0.3544%" height="15" fill="rgb(228,64,37)" fg:x="441989" fg:w="1711"/><text x="91.8014%" y="687.50"></text></g><g><title>security_file_alloc (341 samples, 0.07%)</title><rect x="91.8352%" y="661" width="0.0706%" height="15" fill="rgb(217,214,36)" fg:x="443359" fg:w="341"/><text x="92.0852%" y="671.50"></text></g><g><title>kmem_cache_alloc (184 samples, 0.04%)</title><rect x="91.8677%" y="645" width="0.0381%" height="15" fill="rgb(243,70,3)" fg:x="443516" fg:w="184"/><text x="92.1177%" y="655.50"></text></g><g><title>alloc_empty_file (1,745 samples, 0.36%)</title><rect x="91.5477%" y="693" width="0.3615%" height="15" fill="rgb(253,158,52)" fg:x="441971" fg:w="1745"/><text x="91.7977%" y="703.50"></text></g><g><title>errseq_sample (95 samples, 0.02%)</title><rect x="91.9601%" y="677" width="0.0197%" height="15" fill="rgb(234,111,54)" fg:x="443962" fg:w="95"/><text x="92.2101%" y="687.50"></text></g><g><title>lockref_get (75 samples, 0.02%)</title><rect x="91.9826%" y="677" width="0.0155%" height="15" fill="rgb(217,70,32)" fg:x="444071" fg:w="75"/><text x="92.2326%" y="687.50"></text></g><g><title>apparmor_file_open (150 samples, 0.03%)</title><rect x="92.0067%" y="661" width="0.0311%" height="15" fill="rgb(234,18,33)" fg:x="444187" fg:w="150"/><text x="92.2567%" y="671.50"></text></g><g><title>__srcu_read_lock (73 samples, 0.02%)</title><rect x="92.0603%" y="645" width="0.0151%" height="15" fill="rgb(234,12,49)" fg:x="444446" fg:w="73"/><text x="92.3103%" y="655.50"></text></g><g><title>__srcu_read_unlock (67 samples, 0.01%)</title><rect x="92.0754%" y="645" width="0.0139%" height="15" fill="rgb(236,10,21)" fg:x="444519" fg:w="67"/><text x="92.3254%" y="655.50"></text></g><g><title>tomoyo_check_open_permission (343 samples, 0.07%)</title><rect x="92.0377%" y="661" width="0.0710%" height="15" fill="rgb(248,182,45)" fg:x="444337" fg:w="343"/><text x="92.2877%" y="671.50"></text></g><g><title>tomoyo_init_request_info (74 samples, 0.02%)</title><rect x="92.0935%" y="645" width="0.0153%" height="15" fill="rgb(217,95,36)" fg:x="444606" fg:w="74"/><text x="92.3435%" y="655.50"></text></g><g><title>security_file_open (541 samples, 0.11%)</title><rect x="92.0002%" y="677" width="0.1121%" height="15" fill="rgb(212,110,31)" fg:x="444156" fg:w="541"/><text x="92.2502%" y="687.50"></text></g><g><title>do_dentry_open (975 samples, 0.20%)</title><rect x="91.9112%" y="693" width="0.2020%" height="15" fill="rgb(206,32,53)" fg:x="443726" fg:w="975"/><text x="92.1612%" y="703.50"></text></g><g><title>btrfs_dentry_delete (56 samples, 0.01%)</title><rect x="92.1256%" y="677" width="0.0116%" height="15" fill="rgb(246,141,37)" fg:x="444761" fg:w="56"/><text x="92.3756%" y="687.50"></text></g><g><title>dput (164 samples, 0.03%)</title><rect x="92.1173%" y="693" width="0.0340%" height="15" fill="rgb(219,16,7)" fg:x="444721" fg:w="164"/><text x="92.3673%" y="703.50"></text></g><g><title>lockref_put_or_lock (68 samples, 0.01%)</title><rect x="92.1372%" y="677" width="0.0141%" height="15" fill="rgb(230,205,45)" fg:x="444817" fg:w="68"/><text x="92.3872%" y="687.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="92.1386%" y="661" width="0.0126%" height="15" fill="rgb(231,43,49)" fg:x="444824" fg:w="61"/><text x="92.3886%" y="671.50"></text></g><g><title>btrfs_permission (110 samples, 0.02%)</title><rect x="92.6970%" y="661" width="0.0228%" height="15" fill="rgb(212,106,34)" fg:x="447520" fg:w="110"/><text x="92.9470%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,632 samples, 0.34%)</title><rect x="92.5185%" y="677" width="0.3380%" height="15" fill="rgb(206,83,17)" fg:x="446658" fg:w="1632"/><text x="92.7685%" y="687.50"></text></g><g><title>generic_permission (660 samples, 0.14%)</title><rect x="92.7198%" y="661" width="0.1367%" height="15" fill="rgb(244,154,49)" fg:x="447630" fg:w="660"/><text x="92.9698%" y="671.50"></text></g><g><title>security_inode_permission (178 samples, 0.04%)</title><rect x="92.8565%" y="677" width="0.0369%" height="15" fill="rgb(244,149,49)" fg:x="448290" fg:w="178"/><text x="93.1065%" y="687.50"></text></g><g><title>lockref_put_or_lock (91 samples, 0.02%)</title><rect x="93.0278%" y="645" width="0.0188%" height="15" fill="rgb(227,134,18)" fg:x="449117" fg:w="91"/><text x="93.2778%" y="655.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.02%)</title><rect x="93.0316%" y="629" width="0.0151%" height="15" fill="rgb(237,116,36)" fg:x="449135" fg:w="73"/><text x="93.2816%" y="639.50"></text></g><g><title>dput (148 samples, 0.03%)</title><rect x="93.0169%" y="661" width="0.0307%" height="15" fill="rgb(205,129,40)" fg:x="449064" fg:w="148"/><text x="93.2669%" y="671.50"></text></g><g><title>_raw_spin_lock (833 samples, 0.17%)</title><rect x="93.3723%" y="629" width="0.1725%" height="15" fill="rgb(236,178,4)" fg:x="450780" fg:w="833"/><text x="93.6223%" y="639.50"></text></g><g><title>__d_lookup (1,684 samples, 0.35%)</title><rect x="93.2022%" y="645" width="0.3488%" height="15" fill="rgb(251,76,53)" fg:x="449959" fg:w="1684"/><text x="93.4522%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,369 samples, 0.28%)</title><rect x="93.5511%" y="645" width="0.2836%" height="15" fill="rgb(242,92,40)" fg:x="451643" fg:w="1369"/><text x="93.8011%" y="655.50"></text></g><g><title>lookup_fast (3,802 samples, 0.79%)</title><rect x="93.0475%" y="661" width="0.7875%" height="15" fill="rgb(209,45,30)" fg:x="449212" fg:w="3802"/><text x="93.2975%" y="671.50"></text></g><g><title>__traverse_mounts (84 samples, 0.02%)</title><rect x="94.0619%" y="645" width="0.0174%" height="15" fill="rgb(218,157,36)" fg:x="454109" fg:w="84"/><text x="94.3119%" y="655.50"></text></g><g><title>atime_needs_update (64 samples, 0.01%)</title><rect x="94.0807%" y="645" width="0.0133%" height="15" fill="rgb(222,186,16)" fg:x="454200" fg:w="64"/><text x="94.3307%" y="655.50"></text></g><g><title>_cond_resched (131 samples, 0.03%)</title><rect x="94.1346%" y="629" width="0.0271%" height="15" fill="rgb(254,72,35)" fg:x="454460" fg:w="131"/><text x="94.3846%" y="639.50"></text></g><g><title>rcu_all_qs (55 samples, 0.01%)</title><rect x="94.1503%" y="613" width="0.0114%" height="15" fill="rgb(224,25,35)" fg:x="454536" fg:w="55"/><text x="94.4003%" y="623.50"></text></g><g><title>dput (1,137 samples, 0.24%)</title><rect x="94.0940%" y="645" width="0.2355%" height="15" fill="rgb(206,135,52)" fg:x="454264" fg:w="1137"/><text x="94.3440%" y="655.50"></text></g><g><title>lockref_put_or_lock (810 samples, 0.17%)</title><rect x="94.1617%" y="629" width="0.1678%" height="15" fill="rgb(229,174,47)" fg:x="454591" fg:w="810"/><text x="94.4117%" y="639.50"></text></g><g><title>dput (118 samples, 0.02%)</title><rect x="94.3347%" y="629" width="0.0244%" height="15" fill="rgb(242,184,21)" fg:x="455426" fg:w="118"/><text x="94.5847%" y="639.50"></text></g><g><title>lockref_put_or_lock (89 samples, 0.02%)</title><rect x="94.3407%" y="613" width="0.0184%" height="15" fill="rgb(213,22,45)" fg:x="455455" fg:w="89"/><text x="94.5907%" y="623.50"></text></g><g><title>lockref_get (65 samples, 0.01%)</title><rect x="94.3591%" y="629" width="0.0135%" height="15" fill="rgb(237,81,54)" fg:x="455544" fg:w="65"/><text x="94.6091%" y="639.50"></text></g><g><title>nd_jump_root (245 samples, 0.05%)</title><rect x="94.3295%" y="645" width="0.0507%" height="15" fill="rgb(248,177,18)" fg:x="455401" fg:w="245"/><text x="94.5795%" y="655.50"></text></g><g><title>do_read_cache_page (200 samples, 0.04%)</title><rect x="94.3850%" y="629" width="0.0414%" height="15" fill="rgb(254,31,16)" fg:x="455669" fg:w="200"/><text x="94.6350%" y="639.50"></text></g><g><title>pagecache_get_page (154 samples, 0.03%)</title><rect x="94.3945%" y="613" width="0.0319%" height="15" fill="rgb(235,20,31)" fg:x="455715" fg:w="154"/><text x="94.6445%" y="623.50"></text></g><g><title>find_get_entry (113 samples, 0.02%)</title><rect x="94.4030%" y="597" width="0.0234%" height="15" fill="rgb(240,56,43)" fg:x="455756" fg:w="113"/><text x="94.6530%" y="607.50"></text></g><g><title>page_get_link (226 samples, 0.05%)</title><rect x="94.3802%" y="645" width="0.0468%" height="15" fill="rgb(237,197,51)" fg:x="455646" fg:w="226"/><text x="94.6302%" y="655.50"></text></g><g><title>__mnt_want_write (79 samples, 0.02%)</title><rect x="94.4337%" y="629" width="0.0164%" height="15" fill="rgb(241,162,44)" fg:x="455904" fg:w="79"/><text x="94.6837%" y="639.50"></text></g><g><title>touch_atime (163 samples, 0.03%)</title><rect x="94.4287%" y="645" width="0.0338%" height="15" fill="rgb(224,23,20)" fg:x="455880" fg:w="163"/><text x="94.6787%" y="655.50"></text></g><g><title>atime_needs_update (60 samples, 0.01%)</title><rect x="94.4500%" y="629" width="0.0124%" height="15" fill="rgb(250,109,34)" fg:x="455983" fg:w="60"/><text x="94.7000%" y="639.50"></text></g><g><title>__legitimize_mnt (90 samples, 0.02%)</title><rect x="94.4693%" y="613" width="0.0186%" height="15" fill="rgb(214,175,50)" fg:x="456076" fg:w="90"/><text x="94.7193%" y="623.50"></text></g><g><title>__legitimize_path (272 samples, 0.06%)</title><rect x="94.4658%" y="629" width="0.0563%" height="15" fill="rgb(213,182,5)" fg:x="456059" fg:w="272"/><text x="94.7158%" y="639.50"></text></g><g><title>lockref_get_not_dead (165 samples, 0.03%)</title><rect x="94.4879%" y="613" width="0.0342%" height="15" fill="rgb(209,199,19)" fg:x="456166" fg:w="165"/><text x="94.7379%" y="623.50"></text></g><g><title>__legitimize_mnt (144 samples, 0.03%)</title><rect x="94.5331%" y="597" width="0.0298%" height="15" fill="rgb(236,224,42)" fg:x="456384" fg:w="144"/><text x="94.7831%" y="607.50"></text></g><g><title>legitimize_links (327 samples, 0.07%)</title><rect x="94.5221%" y="629" width="0.0677%" height="15" fill="rgb(246,226,29)" fg:x="456331" fg:w="327"/><text x="94.7721%" y="639.50"></text></g><g><title>__legitimize_path (302 samples, 0.06%)</title><rect x="94.5273%" y="613" width="0.0626%" height="15" fill="rgb(227,223,11)" fg:x="456356" fg:w="302"/><text x="94.7773%" y="623.50"></text></g><g><title>lockref_get_not_dead (129 samples, 0.03%)</title><rect x="94.5631%" y="597" width="0.0267%" height="15" fill="rgb(219,7,51)" fg:x="456529" fg:w="129"/><text x="94.8131%" y="607.50"></text></g><g><title>link_path_walk.part.0 (11,781 samples, 2.44%)</title><rect x="92.1512%" y="693" width="2.4403%" height="15" fill="rgb(245,167,10)" fg:x="444885" fg:w="11781"/><text x="92.4012%" y="703.50">li..</text></g><g><title>walk_component (8,198 samples, 1.70%)</title><rect x="92.8934%" y="677" width="1.6981%" height="15" fill="rgb(237,224,16)" fg:x="448468" fg:w="8198"/><text x="93.1434%" y="687.50"></text></g><g><title>step_into (3,573 samples, 0.74%)</title><rect x="93.8514%" y="661" width="0.7401%" height="15" fill="rgb(226,132,13)" fg:x="453093" fg:w="3573"/><text x="94.1014%" y="671.50"></text></g><g><title>try_to_unlazy (623 samples, 0.13%)</title><rect x="94.4625%" y="645" width="0.1290%" height="15" fill="rgb(214,140,3)" fg:x="456043" fg:w="623"/><text x="94.7125%" y="655.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="94.7114%" y="661" width="0.0232%" height="15" fill="rgb(221,177,4)" fg:x="457245" fg:w="112"/><text x="94.9614%" y="671.50"></text></g><g><title>__d_lookup (642 samples, 0.13%)</title><rect x="94.6025%" y="677" width="0.1330%" height="15" fill="rgb(238,139,3)" fg:x="456719" fg:w="642"/><text x="94.8525%" y="687.50"></text></g><g><title>__d_lookup_rcu (575 samples, 0.12%)</title><rect x="94.7355%" y="677" width="0.1191%" height="15" fill="rgb(216,17,39)" fg:x="457361" fg:w="575"/><text x="94.9855%" y="687.50"></text></g><g><title>lookup_fast (1,271 samples, 0.26%)</title><rect x="94.5915%" y="693" width="0.2633%" height="15" fill="rgb(238,120,9)" fg:x="456666" fg:w="1271"/><text x="94.8415%" y="703.50"></text></g><g><title>inode_permission.part.0 (189 samples, 0.04%)</title><rect x="94.9047%" y="677" width="0.0391%" height="15" fill="rgb(244,92,53)" fg:x="458178" fg:w="189"/><text x="95.1547%" y="687.50"></text></g><g><title>may_open (435 samples, 0.09%)</title><rect x="94.8548%" y="693" width="0.0901%" height="15" fill="rgb(224,148,33)" fg:x="457937" fg:w="435"/><text x="95.1048%" y="703.50"></text></g><g><title>page_put_link (55 samples, 0.01%)</title><rect x="94.9515%" y="693" width="0.0114%" height="15" fill="rgb(243,6,36)" fg:x="458404" fg:w="55"/><text x="95.2015%" y="703.50"></text></g><g><title>__fget_light (169 samples, 0.04%)</title><rect x="94.9732%" y="677" width="0.0350%" height="15" fill="rgb(230,102,11)" fg:x="458509" fg:w="169"/><text x="95.2232%" y="687.50"></text></g><g><title>__fget_files (159 samples, 0.03%)</title><rect x="94.9753%" y="661" width="0.0329%" height="15" fill="rgb(234,148,36)" fg:x="458519" fg:w="159"/><text x="95.2253%" y="671.50"></text></g><g><title>path_init (274 samples, 0.06%)</title><rect x="94.9629%" y="693" width="0.0568%" height="15" fill="rgb(251,153,25)" fg:x="458459" fg:w="274"/><text x="95.2129%" y="703.50"></text></g><g><title>fput_many (54 samples, 0.01%)</title><rect x="95.0085%" y="677" width="0.0112%" height="15" fill="rgb(215,129,8)" fg:x="458679" fg:w="54"/><text x="95.2585%" y="687.50"></text></g><g><title>atime_needs_update (232 samples, 0.05%)</title><rect x="95.1261%" y="677" width="0.0481%" height="15" fill="rgb(224,128,35)" fg:x="459247" fg:w="232"/><text x="95.3761%" y="687.50"></text></g><g><title>dput (98 samples, 0.02%)</title><rect x="95.1742%" y="677" width="0.0203%" height="15" fill="rgb(237,56,52)" fg:x="459479" fg:w="98"/><text x="95.4242%" y="687.50"></text></g><g><title>lockref_put_or_lock (77 samples, 0.02%)</title><rect x="95.1785%" y="661" width="0.0159%" height="15" fill="rgb(234,213,19)" fg:x="459500" fg:w="77"/><text x="95.4285%" y="671.50"></text></g><g><title>nd_jump_root (78 samples, 0.02%)</title><rect x="95.1945%" y="677" width="0.0162%" height="15" fill="rgb(252,82,23)" fg:x="459577" fg:w="78"/><text x="95.4445%" y="687.50"></text></g><g><title>kernel_init_free_pages (53 samples, 0.01%)</title><rect x="95.2411%" y="597" width="0.0110%" height="15" fill="rgb(254,201,21)" fg:x="459802" fg:w="53"/><text x="95.4911%" y="607.50"></text></g><g><title>clear_page_erms (52 samples, 0.01%)</title><rect x="95.2413%" y="581" width="0.0108%" height="15" fill="rgb(250,186,11)" fg:x="459803" fg:w="52"/><text x="95.4913%" y="591.50"></text></g><g><title>get_page_from_freelist (95 samples, 0.02%)</title><rect x="95.2326%" y="629" width="0.0197%" height="15" fill="rgb(211,174,5)" fg:x="459761" fg:w="95"/><text x="95.4826%" y="639.50"></text></g><g><title>prep_new_page (56 samples, 0.01%)</title><rect x="95.2407%" y="613" width="0.0116%" height="15" fill="rgb(214,121,10)" fg:x="459800" fg:w="56"/><text x="95.4907%" y="623.50"></text></g><g><title>__alloc_pages_nodemask (111 samples, 0.02%)</title><rect x="95.2297%" y="645" width="0.0230%" height="15" fill="rgb(241,66,2)" fg:x="459747" fg:w="111"/><text x="95.4797%" y="655.50"></text></g><g><title>__add_to_page_cache_locked (72 samples, 0.01%)</title><rect x="95.2527%" y="629" width="0.0149%" height="15" fill="rgb(220,167,19)" fg:x="459858" fg:w="72"/><text x="95.5027%" y="639.50"></text></g><g><title>add_to_page_cache_lru (99 samples, 0.02%)</title><rect x="95.2527%" y="645" width="0.0205%" height="15" fill="rgb(231,54,50)" fg:x="459858" fg:w="99"/><text x="95.5027%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.02%)</title><rect x="95.3250%" y="565" width="0.0151%" height="15" fill="rgb(239,217,53)" fg:x="460207" fg:w="73"/><text x="95.5750%" y="575.50"></text></g><g><title>find_extent_buffer (80 samples, 0.02%)</title><rect x="95.3455%" y="549" width="0.0166%" height="15" fill="rgb(248,8,0)" fg:x="460306" fg:w="80"/><text x="95.5955%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (111 samples, 0.02%)</title><rect x="95.3401%" y="565" width="0.0230%" height="15" fill="rgb(229,118,37)" fg:x="460280" fg:w="111"/><text x="95.5901%" y="575.50"></text></g><g><title>btrfs_lookup_file_extent (233 samples, 0.05%)</title><rect x="95.3156%" y="597" width="0.0483%" height="15" fill="rgb(253,223,43)" fg:x="460162" fg:w="233"/><text x="95.5656%" y="607.50"></text></g><g><title>btrfs_search_slot (232 samples, 0.05%)</title><rect x="95.3158%" y="581" width="0.0481%" height="15" fill="rgb(211,77,36)" fg:x="460163" fg:w="232"/><text x="95.5658%" y="591.50"></text></g><g><title>btrfs_get_extent (508 samples, 0.11%)</title><rect x="95.2858%" y="613" width="0.1052%" height="15" fill="rgb(219,3,53)" fg:x="460018" fg:w="508"/><text x="95.5358%" y="623.50"></text></g><g><title>btrfs_do_readpage (578 samples, 0.12%)</title><rect x="95.2750%" y="629" width="0.1197%" height="15" fill="rgb(244,45,42)" fg:x="459966" fg:w="578"/><text x="95.5250%" y="639.50"></text></g><g><title>btrfs_readpage (641 samples, 0.13%)</title><rect x="95.2748%" y="645" width="0.1328%" height="15" fill="rgb(225,95,27)" fg:x="459965" fg:w="641"/><text x="95.5248%" y="655.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (62 samples, 0.01%)</title><rect x="95.3948%" y="629" width="0.0128%" height="15" fill="rgb(207,74,8)" fg:x="460544" fg:w="62"/><text x="95.6448%" y="639.50"></text></g><g><title>do_read_cache_page (874 samples, 0.18%)</title><rect x="95.2286%" y="661" width="0.1810%" height="15" fill="rgb(243,63,36)" fg:x="459742" fg:w="874"/><text x="95.4786%" y="671.50"></text></g><g><title>page_get_link (1,325 samples, 0.27%)</title><rect x="95.2106%" y="677" width="0.2745%" height="15" fill="rgb(211,180,12)" fg:x="459655" fg:w="1325"/><text x="95.4606%" y="687.50"></text></g><g><title>pagecache_get_page (364 samples, 0.08%)</title><rect x="95.4097%" y="661" width="0.0754%" height="15" fill="rgb(254,166,49)" fg:x="460616" fg:w="364"/><text x="95.6597%" y="671.50"></text></g><g><title>find_get_entry (329 samples, 0.07%)</title><rect x="95.4169%" y="645" width="0.0681%" height="15" fill="rgb(205,19,0)" fg:x="460651" fg:w="329"/><text x="95.6669%" y="655.50"></text></g><g><title>xas_load (83 samples, 0.02%)</title><rect x="95.4679%" y="629" width="0.0172%" height="15" fill="rgb(224,172,32)" fg:x="460897" fg:w="83"/><text x="95.7179%" y="639.50"></text></g><g><title>xas_start (79 samples, 0.02%)</title><rect x="95.4687%" y="613" width="0.0164%" height="15" fill="rgb(254,136,30)" fg:x="460901" fg:w="79"/><text x="95.7187%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (49 samples, 0.01%)</title><rect x="95.5012%" y="613" width="0.0101%" height="15" fill="rgb(246,19,35)" fg:x="461058" fg:w="49"/><text x="95.7512%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (155 samples, 0.03%)</title><rect x="95.4952%" y="629" width="0.0321%" height="15" fill="rgb(219,24,36)" fg:x="461029" fg:w="155"/><text x="95.7452%" y="639.50"></text></g><g><title>btrfs_update_inode (164 samples, 0.03%)</title><rect x="95.4948%" y="645" width="0.0340%" height="15" fill="rgb(251,55,1)" fg:x="461027" fg:w="164"/><text x="95.7448%" y="655.50"></text></g><g><title>btrfs_dirty_inode (224 samples, 0.05%)</title><rect x="95.4886%" y="661" width="0.0464%" height="15" fill="rgb(218,117,39)" fg:x="460997" fg:w="224"/><text x="95.7386%" y="671.50"></text></g><g><title>touch_atime (250 samples, 0.05%)</title><rect x="95.4878%" y="677" width="0.0518%" height="15" fill="rgb(248,169,11)" fg:x="460993" fg:w="250"/><text x="95.7378%" y="687.50"></text></g><g><title>step_into (2,522 samples, 0.52%)</title><rect x="95.0201%" y="693" width="0.5224%" height="15" fill="rgb(244,40,44)" fg:x="458735" fg:w="2522"/><text x="95.2701%" y="703.50"></text></g><g><title>dput (172 samples, 0.04%)</title><rect x="95.5478%" y="677" width="0.0356%" height="15" fill="rgb(234,62,37)" fg:x="461283" fg:w="172"/><text x="95.7978%" y="687.50"></text></g><g><title>lockref_put_or_lock (120 samples, 0.02%)</title><rect x="95.5586%" y="661" width="0.0249%" height="15" fill="rgb(207,117,42)" fg:x="461335" fg:w="120"/><text x="95.8086%" y="671.50"></text></g><g><title>terminate_walk (263 samples, 0.05%)</title><rect x="95.5425%" y="693" width="0.0545%" height="15" fill="rgb(213,43,2)" fg:x="461257" fg:w="263"/><text x="95.7925%" y="703.50"></text></g><g><title>mntput_no_expire (54 samples, 0.01%)</title><rect x="95.5857%" y="677" width="0.0112%" height="15" fill="rgb(244,202,51)" fg:x="461466" fg:w="54"/><text x="95.8357%" y="687.50"></text></g><g><title>do_filp_open (19,771 samples, 4.10%)</title><rect x="91.5048%" y="725" width="4.0953%" height="15" fill="rgb(253,174,46)" fg:x="441764" fg:w="19771"/><text x="91.7548%" y="735.50">do_f..</text></g><g><title>path_openat (19,718 samples, 4.08%)</title><rect x="91.5158%" y="709" width="4.0843%" height="15" fill="rgb(251,23,1)" fg:x="441817" fg:w="19718"/><text x="91.7658%" y="719.50">path..</text></g><g><title>get_unused_fd_flags (54 samples, 0.01%)</title><rect x="95.6021%" y="725" width="0.0112%" height="15" fill="rgb(253,26,1)" fg:x="461545" fg:w="54"/><text x="95.8521%" y="735.50"></text></g><g><title>memset_erms (613 samples, 0.13%)</title><rect x="95.6585%" y="693" width="0.1270%" height="15" fill="rgb(216,89,31)" fg:x="461817" fg:w="613"/><text x="95.9085%" y="703.50"></text></g><g><title>kmem_cache_alloc (870 samples, 0.18%)</title><rect x="95.6249%" y="709" width="0.1802%" height="15" fill="rgb(209,109,5)" fg:x="461655" fg:w="870"/><text x="95.8749%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (95 samples, 0.02%)</title><rect x="95.7854%" y="693" width="0.0197%" height="15" fill="rgb(229,63,13)" fg:x="462430" fg:w="95"/><text x="96.0354%" y="703.50"></text></g><g><title>__check_heap_object (69 samples, 0.01%)</title><rect x="95.8668%" y="677" width="0.0143%" height="15" fill="rgb(238,137,54)" fg:x="462823" fg:w="69"/><text x="96.1168%" y="687.50"></text></g><g><title>__virt_addr_valid (164 samples, 0.03%)</title><rect x="95.8811%" y="677" width="0.0340%" height="15" fill="rgb(228,1,9)" fg:x="462892" fg:w="164"/><text x="96.1311%" y="687.50"></text></g><g><title>__check_object_size (298 samples, 0.06%)</title><rect x="95.8556%" y="693" width="0.0617%" height="15" fill="rgb(249,120,48)" fg:x="462769" fg:w="298"/><text x="96.1056%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,458 samples, 0.30%)</title><rect x="95.6156%" y="725" width="0.3020%" height="15" fill="rgb(209,72,36)" fg:x="461610" fg:w="1458"/><text x="95.8656%" y="735.50"></text></g><g><title>strncpy_from_user (543 samples, 0.11%)</title><rect x="95.8051%" y="709" width="0.1125%" height="15" fill="rgb(247,98,49)" fg:x="462525" fg:w="543"/><text x="96.0551%" y="719.50"></text></g><g><title>kmem_cache_free (218 samples, 0.05%)</title><rect x="95.9176%" y="725" width="0.0452%" height="15" fill="rgb(233,75,36)" fg:x="463068" fg:w="218"/><text x="96.1676%" y="735.50"></text></g><g><title>__x64_sys_openat (22,014 samples, 4.56%)</title><rect x="91.4076%" y="757" width="4.5599%" height="15" fill="rgb(225,14,24)" fg:x="441295" fg:w="22014"/><text x="91.6576%" y="767.50">__x64..</text></g><g><title>do_sys_openat2 (21,964 samples, 4.55%)</title><rect x="91.4180%" y="741" width="4.5495%" height="15" fill="rgb(237,193,20)" fg:x="441345" fg:w="21964"/><text x="91.6680%" y="751.50">do_sy..</text></g><g><title>__fget_light (703 samples, 0.15%)</title><rect x="96.0909%" y="725" width="0.1456%" height="15" fill="rgb(239,122,19)" fg:x="463905" fg:w="703"/><text x="96.3409%" y="735.50"></text></g><g><title>__fget_files (624 samples, 0.13%)</title><rect x="96.1073%" y="709" width="0.1293%" height="15" fill="rgb(231,220,10)" fg:x="463984" fg:w="624"/><text x="96.3573%" y="719.50"></text></g><g><title>_cond_resched (70 samples, 0.01%)</title><rect x="96.3107%" y="709" width="0.0145%" height="15" fill="rgb(220,66,15)" fg:x="464966" fg:w="70"/><text x="96.5607%" y="719.50"></text></g><g><title>__fdget_pos (1,366 samples, 0.28%)</title><rect x="96.0427%" y="741" width="0.2829%" height="15" fill="rgb(215,171,52)" fg:x="463672" fg:w="1366"/><text x="96.2927%" y="751.50"></text></g><g><title>mutex_lock (429 samples, 0.09%)</title><rect x="96.2368%" y="725" width="0.0889%" height="15" fill="rgb(241,169,50)" fg:x="464609" fg:w="429"/><text x="96.4868%" y="735.50"></text></g><g><title>fput_many (339 samples, 0.07%)</title><rect x="96.3292%" y="741" width="0.0702%" height="15" fill="rgb(236,189,0)" fg:x="465055" fg:w="339"/><text x="96.5792%" y="751.50"></text></g><g><title>mutex_unlock (404 samples, 0.08%)</title><rect x="96.3994%" y="741" width="0.0837%" height="15" fill="rgb(217,147,20)" fg:x="465394" fg:w="404"/><text x="96.6494%" y="751.50"></text></g><g><title>__fsnotify_parent (503 samples, 0.10%)</title><rect x="96.6165%" y="725" width="0.1042%" height="15" fill="rgb(206,188,39)" fg:x="466442" fg:w="503"/><text x="96.8665%" y="735.50"></text></g><g><title>btrfs_file_read_iter (83 samples, 0.02%)</title><rect x="96.8039%" y="709" width="0.0172%" height="15" fill="rgb(227,118,25)" fg:x="467347" fg:w="83"/><text x="97.0539%" y="719.50"></text></g><g><title>_cond_resched (73 samples, 0.02%)</title><rect x="97.0674%" y="693" width="0.0151%" height="15" fill="rgb(248,171,40)" fg:x="468619" fg:w="73"/><text x="97.3174%" y="703.50"></text></g><g><title>_cond_resched (59 samples, 0.01%)</title><rect x="97.1968%" y="677" width="0.0122%" height="15" fill="rgb(251,90,54)" fg:x="469244" fg:w="59"/><text x="97.4468%" y="687.50"></text></g><g><title>exc_page_fault (77 samples, 0.02%)</title><rect x="97.9272%" y="645" width="0.0159%" height="15" fill="rgb(234,11,46)" fg:x="472770" fg:w="77"/><text x="98.1772%" y="655.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.02%)</title><rect x="97.9272%" y="629" width="0.0159%" height="15" fill="rgb(229,134,13)" fg:x="472770" fg:w="77"/><text x="98.1772%" y="639.50"></text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="97.9289%" y="613" width="0.0143%" height="15" fill="rgb(223,129,3)" fg:x="472778" fg:w="69"/><text x="98.1789%" y="623.50"></text></g><g><title>asm_exc_page_fault (195 samples, 0.04%)</title><rect x="97.9030%" y="661" width="0.0404%" height="15" fill="rgb(221,124,13)" fg:x="472653" fg:w="195"/><text x="98.1530%" y="671.50"></text></g><g><title>copy_user_enhanced_fast_string (3,559 samples, 0.74%)</title><rect x="97.2095%" y="677" width="0.7372%" height="15" fill="rgb(234,3,18)" fg:x="469305" fg:w="3559"/><text x="97.4595%" y="687.50"></text></g><g><title>copy_page_to_iter (4,207 samples, 0.87%)</title><rect x="97.0840%" y="693" width="0.8714%" height="15" fill="rgb(249,199,20)" fg:x="468699" fg:w="4207"/><text x="97.3340%" y="703.50"></text></g><g><title>mark_page_accessed (72 samples, 0.01%)</title><rect x="97.9554%" y="693" width="0.0149%" height="15" fill="rgb(224,134,6)" fg:x="472906" fg:w="72"/><text x="98.2054%" y="703.50"></text></g><g><title>pagecache_get_page (1,620 samples, 0.34%)</title><rect x="97.9703%" y="693" width="0.3356%" height="15" fill="rgb(254,83,26)" fg:x="472978" fg:w="1620"/><text x="98.2203%" y="703.50"></text></g><g><title>find_get_entry (1,364 samples, 0.28%)</title><rect x="98.0233%" y="677" width="0.2825%" height="15" fill="rgb(217,88,9)" fg:x="473234" fg:w="1364"/><text x="98.2733%" y="687.50"></text></g><g><title>xas_load (398 samples, 0.08%)</title><rect x="98.2234%" y="661" width="0.0824%" height="15" fill="rgb(225,73,2)" fg:x="474200" fg:w="398"/><text x="98.4734%" y="671.50"></text></g><g><title>xas_start (268 samples, 0.06%)</title><rect x="98.2503%" y="645" width="0.0555%" height="15" fill="rgb(226,44,39)" fg:x="474330" fg:w="268"/><text x="98.5003%" y="655.50"></text></g><g><title>generic_file_buffered_read (7,727 samples, 1.60%)</title><rect x="96.8211%" y="709" width="1.6005%" height="15" fill="rgb(228,53,17)" fg:x="467430" fg:w="7727"/><text x="97.0711%" y="719.50"></text></g><g><title>touch_atime (559 samples, 0.12%)</title><rect x="98.3058%" y="693" width="0.1158%" height="15" fill="rgb(212,27,27)" fg:x="474598" fg:w="559"/><text x="98.5558%" y="703.50"></text></g><g><title>atime_needs_update (432 samples, 0.09%)</title><rect x="98.3321%" y="677" width="0.0895%" height="15" fill="rgb(241,50,6)" fg:x="474725" fg:w="432"/><text x="98.5821%" y="687.50"></text></g><g><title>current_time (255 samples, 0.05%)</title><rect x="98.3688%" y="661" width="0.0528%" height="15" fill="rgb(225,28,51)" fg:x="474902" fg:w="255"/><text x="98.6188%" y="671.50"></text></g><g><title>ktime_get_coarse_real_ts64 (61 samples, 0.01%)</title><rect x="98.4090%" y="645" width="0.0126%" height="15" fill="rgb(215,33,16)" fg:x="475096" fg:w="61"/><text x="98.6590%" y="655.50"></text></g><g><title>new_sync_read (8,265 samples, 1.71%)</title><rect x="96.7217%" y="725" width="1.7120%" height="15" fill="rgb(243,40,39)" fg:x="466950" fg:w="8265"/><text x="96.9717%" y="735.50"></text></g><g><title>iov_iter_init (57 samples, 0.01%)</title><rect x="98.4218%" y="709" width="0.0118%" height="15" fill="rgb(225,11,42)" fg:x="475158" fg:w="57"/><text x="98.6718%" y="719.50"></text></g><g><title>rw_verify_area (101 samples, 0.02%)</title><rect x="98.4336%" y="725" width="0.0209%" height="15" fill="rgb(241,220,38)" fg:x="475215" fg:w="101"/><text x="98.6836%" y="735.50"></text></g><g><title>aa_file_perm (159 samples, 0.03%)</title><rect x="98.5227%" y="693" width="0.0329%" height="15" fill="rgb(244,52,35)" fg:x="475645" fg:w="159"/><text x="98.7727%" y="703.50"></text></g><g><title>apparmor_file_permission (310 samples, 0.06%)</title><rect x="98.4916%" y="709" width="0.0642%" height="15" fill="rgb(246,42,46)" fg:x="475495" fg:w="310"/><text x="98.7416%" y="719.50"></text></g><g><title>security_file_permission (492 samples, 0.10%)</title><rect x="98.4546%" y="725" width="0.1019%" height="15" fill="rgb(205,184,13)" fg:x="475316" fg:w="492"/><text x="98.7046%" y="735.50"></text></g><g><title>ksys_read (12,379 samples, 2.56%)</title><rect x="95.9928%" y="757" width="2.5641%" height="15" fill="rgb(209,48,36)" fg:x="463431" fg:w="12379"/><text x="96.2428%" y="767.50">ks..</text></g><g><title>vfs_read (10,012 samples, 2.07%)</title><rect x="96.4831%" y="741" width="2.0738%" height="15" fill="rgb(244,34,51)" fg:x="465798" fg:w="10012"/><text x="96.7331%" y="751.50">v..</text></g><g><title>syscall_enter_from_user_mode (141 samples, 0.03%)</title><rect x="98.5583%" y="757" width="0.0292%" height="15" fill="rgb(221,107,33)" fg:x="475817" fg:w="141"/><text x="98.8083%" y="767.50"></text></g><g><title>perf_iterate_sb (59 samples, 0.01%)</title><rect x="98.5996%" y="693" width="0.0122%" height="15" fill="rgb(224,203,12)" fg:x="476016" fg:w="59"/><text x="98.8496%" y="703.50"></text></g><g><title>perf_iterate_ctx (49 samples, 0.01%)</title><rect x="98.6016%" y="677" width="0.0101%" height="15" fill="rgb(230,215,18)" fg:x="476026" fg:w="49"/><text x="98.8516%" y="687.50"></text></g><g><title>perf_event_mmap (72 samples, 0.01%)</title><rect x="98.5971%" y="709" width="0.0149%" height="15" fill="rgb(206,185,35)" fg:x="476004" fg:w="72"/><text x="98.8471%" y="719.50"></text></g><g><title>do_mmap (178 samples, 0.04%)</title><rect x="98.5875%" y="741" width="0.0369%" height="15" fill="rgb(228,140,34)" fg:x="475958" fg:w="178"/><text x="98.8375%" y="751.50"></text></g><g><title>mmap_region (146 samples, 0.03%)</title><rect x="98.5942%" y="725" width="0.0302%" height="15" fill="rgb(208,93,13)" fg:x="475990" fg:w="146"/><text x="98.8442%" y="735.50"></text></g><g><title>do_syscall_64 (44,743 samples, 9.27%)</title><rect x="89.3601%" y="773" width="9.2678%" height="15" fill="rgb(221,193,39)" fg:x="431410" fg:w="44743"/><text x="89.6101%" y="783.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (195 samples, 0.04%)</title><rect x="98.5875%" y="757" width="0.0404%" height="15" fill="rgb(241,132,34)" fg:x="475958" fg:w="195"/><text x="98.8375%" y="767.50"></text></g><g><title>arch_do_signal (63 samples, 0.01%)</title><rect x="98.7015%" y="741" width="0.0130%" height="15" fill="rgb(221,141,10)" fg:x="476508" fg:w="63"/><text x="98.9515%" y="751.50"></text></g><g><title>get_signal (63 samples, 0.01%)</title><rect x="98.7015%" y="725" width="0.0130%" height="15" fill="rgb(226,90,31)" fg:x="476508" fg:w="63"/><text x="98.9515%" y="735.50"></text></g><g><title>fpregs_assert_state_consistent (107 samples, 0.02%)</title><rect x="98.7187%" y="741" width="0.0222%" height="15" fill="rgb(243,75,5)" fg:x="476591" fg:w="107"/><text x="98.9687%" y="751.50"></text></g><g><title>switch_fpu_return (71 samples, 0.01%)</title><rect x="98.7495%" y="741" width="0.0147%" height="15" fill="rgb(227,156,21)" fg:x="476740" fg:w="71"/><text x="98.9995%" y="751.50"></text></g><g><title>btrfs_release_file (166 samples, 0.03%)</title><rect x="98.8222%" y="709" width="0.0344%" height="15" fill="rgb(250,195,8)" fg:x="477091" fg:w="166"/><text x="99.0722%" y="719.50"></text></g><g><title>lockref_put_or_lock (68 samples, 0.01%)</title><rect x="98.8661%" y="693" width="0.0141%" height="15" fill="rgb(220,134,5)" fg:x="477303" fg:w="68"/><text x="99.1161%" y="703.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="98.8682%" y="677" width="0.0120%" height="15" fill="rgb(246,106,34)" fg:x="477313" fg:w="58"/><text x="99.1182%" y="687.50"></text></g><g><title>dput (117 samples, 0.02%)</title><rect x="98.8566%" y="709" width="0.0242%" height="15" fill="rgb(205,1,4)" fg:x="477257" fg:w="117"/><text x="99.1066%" y="719.50"></text></g><g><title>kmem_cache_free (125 samples, 0.03%)</title><rect x="98.8811%" y="709" width="0.0259%" height="15" fill="rgb(224,151,29)" fg:x="477375" fg:w="125"/><text x="99.1311%" y="719.50"></text></g><g><title>__fput (750 samples, 0.16%)</title><rect x="98.7825%" y="725" width="0.1554%" height="15" fill="rgb(251,196,0)" fg:x="476899" fg:w="750"/><text x="99.0325%" y="735.50"></text></g><g><title>security_file_free (77 samples, 0.02%)</title><rect x="98.9219%" y="709" width="0.0159%" height="15" fill="rgb(212,127,0)" fg:x="477572" fg:w="77"/><text x="99.1719%" y="719.50"></text></g><g><title>apparmor_file_free_security (55 samples, 0.01%)</title><rect x="98.9264%" y="693" width="0.0114%" height="15" fill="rgb(236,71,53)" fg:x="477594" fg:w="55"/><text x="99.1764%" y="703.50"></text></g><g><title>_raw_spin_lock_irq (61 samples, 0.01%)</title><rect x="98.9403%" y="725" width="0.0126%" height="15" fill="rgb(227,99,0)" fg:x="477661" fg:w="61"/><text x="99.1903%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46,886 samples, 9.71%)</title><rect x="89.2955%" y="789" width="9.7117%" height="15" fill="rgb(239,89,21)" fg:x="431098" fg:w="46886"/><text x="89.5455%" y="799.50">entry_SYSCALL_..</text></g><g><title>syscall_exit_to_user_mode (1,831 samples, 0.38%)</title><rect x="98.6279%" y="773" width="0.3793%" height="15" fill="rgb(243,122,19)" fg:x="476153" fg:w="1831"/><text x="98.8779%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (1,699 samples, 0.35%)</title><rect x="98.6553%" y="757" width="0.3519%" height="15" fill="rgb(229,192,45)" fg:x="476285" fg:w="1699"/><text x="98.9053%" y="767.50"></text></g><g><title>task_work_run (1,173 samples, 0.24%)</title><rect x="98.7642%" y="741" width="0.2430%" height="15" fill="rgb(235,165,35)" fg:x="476811" fg:w="1173"/><text x="99.0142%" y="751.50"></text></g><g><title>call_rcu (261 samples, 0.05%)</title><rect x="98.9531%" y="725" width="0.0541%" height="15" fill="rgb(253,202,0)" fg:x="477723" fg:w="261"/><text x="99.2031%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (144 samples, 0.03%)</title><rect x="98.9774%" y="709" width="0.0298%" height="15" fill="rgb(235,51,20)" fg:x="477840" fg:w="144"/><text x="99.2274%" y="719.50"></text></g><g><title>error_entry (218 samples, 0.05%)</title><rect x="99.0072%" y="789" width="0.0452%" height="15" fill="rgb(218,95,46)" fg:x="477984" fg:w="218"/><text x="99.2572%" y="799.50"></text></g><g><title>sync_regs (201 samples, 0.04%)</title><rect x="99.0107%" y="773" width="0.0416%" height="15" fill="rgb(212,81,10)" fg:x="478001" fg:w="201"/><text x="99.2607%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (1,787 samples, 0.37%)</title><rect x="99.0884%" y="741" width="0.3702%" height="15" fill="rgb(240,59,0)" fg:x="478376" fg:w="1787"/><text x="99.3384%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,740 samples, 0.36%)</title><rect x="99.0981%" y="725" width="0.3604%" height="15" fill="rgb(212,191,42)" fg:x="478423" fg:w="1740"/><text x="99.3481%" y="735.50"></text></g><g><title>native_write_msr (1,734 samples, 0.36%)</title><rect x="99.0994%" y="709" width="0.3592%" height="15" fill="rgb(233,140,3)" fg:x="478429" fg:w="1734"/><text x="99.3494%" y="719.50"></text></g><g><title>schedule_tail (1,958 samples, 0.41%)</title><rect x="99.0621%" y="773" width="0.4056%" height="15" fill="rgb(215,69,23)" fg:x="478249" fg:w="1958"/><text x="99.3121%" y="783.50"></text></g><g><title>finish_task_switch (1,948 samples, 0.40%)</title><rect x="99.0642%" y="757" width="0.4035%" height="15" fill="rgb(240,202,20)" fg:x="478259" fg:w="1948"/><text x="99.3142%" y="767.50"></text></g><g><title>ret_from_fork (2,001 samples, 0.41%)</title><rect x="99.0586%" y="789" width="0.4145%" height="15" fill="rgb(209,146,50)" fg:x="478232" fg:w="2001"/><text x="99.3086%" y="799.50"></text></g><g><title>syscall_return_via_sysret (331 samples, 0.07%)</title><rect x="99.4730%" y="789" width="0.0686%" height="15" fill="rgb(253,102,54)" fg:x="480233" fg:w="331"/><text x="99.7230%" y="799.50"></text></g><g><title>[zig] (81,242 samples, 16.83%)</title><rect x="82.7138%" y="805" width="16.8281%" height="15" fill="rgb(250,173,47)" fg:x="399323" fg:w="81242"/><text x="82.9638%" y="815.50">[zig]</text></g><g><title>asm_exc_page_fault (596 samples, 0.12%)</title><rect x="99.5429%" y="805" width="0.1235%" height="15" fill="rgb(232,142,7)" fg:x="480570" fg:w="596"/><text x="99.7929%" y="815.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.01%)</title><rect x="99.7098%" y="661" width="0.0112%" height="15" fill="rgb(230,157,47)" fg:x="481376" fg:w="54"/><text x="99.9598%" y="671.50"></text></g><g><title>page_remove_rmap (96 samples, 0.02%)</title><rect x="99.7434%" y="629" width="0.0199%" height="15" fill="rgb(214,177,35)" fg:x="481538" fg:w="96"/><text x="99.9934%" y="639.50"></text></g><g><title>exit_mmap (282 samples, 0.06%)</title><rect x="99.7084%" y="677" width="0.0584%" height="15" fill="rgb(234,119,46)" fg:x="481369" fg:w="282"/><text x="99.9584%" y="687.50"></text></g><g><title>unmap_vmas (221 samples, 0.05%)</title><rect x="99.7210%" y="661" width="0.0458%" height="15" fill="rgb(241,180,50)" fg:x="481430" fg:w="221"/><text x="99.9710%" y="671.50"></text></g><g><title>unmap_page_range (221 samples, 0.05%)</title><rect x="99.7210%" y="645" width="0.0458%" height="15" fill="rgb(221,54,25)" fg:x="481430" fg:w="221"/><text x="99.9710%" y="655.50"></text></g><g><title>mmput (285 samples, 0.06%)</title><rect x="99.7081%" y="693" width="0.0590%" height="15" fill="rgb(209,157,44)" fg:x="481368" fg:w="285"/><text x="99.9581%" y="703.50"></text></g><g><title>begin_new_exec (292 samples, 0.06%)</title><rect x="99.7073%" y="709" width="0.0605%" height="15" fill="rgb(246,115,41)" fg:x="481364" fg:w="292"/><text x="99.9573%" y="719.50"></text></g><g><title>bprm_execve (345 samples, 0.07%)</title><rect x="99.7050%" y="741" width="0.0715%" height="15" fill="rgb(229,86,1)" fg:x="481353" fg:w="345"/><text x="99.9550%" y="751.50"></text></g><g><title>load_elf_binary (345 samples, 0.07%)</title><rect x="99.7050%" y="725" width="0.0715%" height="15" fill="rgb(240,108,53)" fg:x="481353" fg:w="345"/><text x="99.9550%" y="735.50"></text></g><g><title>__x64_sys_execve (347 samples, 0.07%)</title><rect x="99.7050%" y="773" width="0.0719%" height="15" fill="rgb(227,134,2)" fg:x="481353" fg:w="347"/><text x="99.9550%" y="783.50"></text></g><g><title>do_execveat_common (347 samples, 0.07%)</title><rect x="99.7050%" y="757" width="0.0719%" height="15" fill="rgb(213,129,25)" fg:x="481353" fg:w="347"/><text x="99.9550%" y="767.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.02%)</title><rect x="99.7823%" y="693" width="0.0155%" height="15" fill="rgb(226,35,21)" fg:x="481726" fg:w="75"/><text x="100.0323%" y="703.50"></text></g><g><title>release_pages (52 samples, 0.01%)</title><rect x="99.7871%" y="677" width="0.0108%" height="15" fill="rgb(208,129,26)" fg:x="481749" fg:w="52"/><text x="100.0371%" y="687.50"></text></g><g><title>page_remove_rmap (89 samples, 0.02%)</title><rect x="99.8281%" y="661" width="0.0184%" height="15" fill="rgb(224,83,6)" fg:x="481947" fg:w="89"/><text x="100.0781%" y="671.50"></text></g><g><title>exit_mmap (359 samples, 0.07%)</title><rect x="99.7802%" y="709" width="0.0744%" height="15" fill="rgb(227,52,39)" fg:x="481716" fg:w="359"/><text x="100.0302%" y="719.50"></text></g><g><title>unmap_vmas (274 samples, 0.06%)</title><rect x="99.7978%" y="693" width="0.0568%" height="15" fill="rgb(241,30,17)" fg:x="481801" fg:w="274"/><text x="100.0478%" y="703.50"></text></g><g><title>unmap_page_range (273 samples, 0.06%)</title><rect x="99.7980%" y="677" width="0.0565%" height="15" fill="rgb(246,186,42)" fg:x="481802" fg:w="273"/><text x="100.0480%" y="687.50"></text></g><g><title>__x64_sys_exit_group (370 samples, 0.08%)</title><rect x="99.7782%" y="773" width="0.0766%" height="15" fill="rgb(221,169,15)" fg:x="481706" fg:w="370"/><text x="100.0282%" y="783.50"></text></g><g><title>do_group_exit (370 samples, 0.08%)</title><rect x="99.7782%" y="757" width="0.0766%" height="15" fill="rgb(235,108,21)" fg:x="481706" fg:w="370"/><text x="100.0282%" y="767.50"></text></g><g><title>do_exit (370 samples, 0.08%)</title><rect x="99.7782%" y="741" width="0.0766%" height="15" fill="rgb(219,148,30)" fg:x="481706" fg:w="370"/><text x="100.0282%" y="751.50"></text></g><g><title>mmput (360 samples, 0.07%)</title><rect x="99.7802%" y="725" width="0.0746%" height="15" fill="rgb(220,109,5)" fg:x="481716" fg:w="360"/><text x="100.0302%" y="735.50"></text></g><g><title>do_syscall_64 (748 samples, 0.15%)</title><rect x="99.7048%" y="789" width="0.1549%" height="15" fill="rgb(213,203,48)" fg:x="481352" fg:w="748"/><text x="99.9548%" y="799.50"></text></g><g><title>tlb_finish_mmu (59 samples, 0.01%)</title><rect x="99.8668%" y="661" width="0.0122%" height="15" fill="rgb(244,71,33)" fg:x="482134" fg:w="59"/><text x="100.1168%" y="671.50"></text></g><g><title>page_remove_rmap (119 samples, 0.02%)</title><rect x="99.9000%" y="629" width="0.0246%" height="15" fill="rgb(209,23,2)" fg:x="482294" fg:w="119"/><text x="100.1500%" y="639.50"></text></g><g><title>mmput (299 samples, 0.06%)</title><rect x="99.8662%" y="693" width="0.0619%" height="15" fill="rgb(219,97,7)" fg:x="482131" fg:w="299"/><text x="100.1162%" y="703.50"></text></g><g><title>exit_mmap (298 samples, 0.06%)</title><rect x="99.8664%" y="677" width="0.0617%" height="15" fill="rgb(216,161,23)" fg:x="482132" fg:w="298"/><text x="100.1164%" y="687.50"></text></g><g><title>unmap_vmas (237 samples, 0.05%)</title><rect x="99.8790%" y="661" width="0.0491%" height="15" fill="rgb(207,45,42)" fg:x="482193" fg:w="237"/><text x="100.1290%" y="671.50"></text></g><g><title>unmap_page_range (237 samples, 0.05%)</title><rect x="99.8790%" y="645" width="0.0491%" height="15" fill="rgb(241,61,4)" fg:x="482193" fg:w="237"/><text x="100.1290%" y="655.50"></text></g><g><title>arch_do_signal (336 samples, 0.07%)</title><rect x="99.8598%" y="757" width="0.0696%" height="15" fill="rgb(236,170,1)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="767.50"></text></g><g><title>get_signal (336 samples, 0.07%)</title><rect x="99.8598%" y="741" width="0.0696%" height="15" fill="rgb(239,72,5)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="751.50"></text></g><g><title>do_group_exit (336 samples, 0.07%)</title><rect x="99.8598%" y="725" width="0.0696%" height="15" fill="rgb(214,13,50)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="735.50"></text></g><g><title>do_exit (336 samples, 0.07%)</title><rect x="99.8598%" y="709" width="0.0696%" height="15" fill="rgb(224,88,9)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,268 samples, 0.26%)</title><rect x="99.6669%" y="805" width="0.2626%" height="15" fill="rgb(238,192,34)" fg:x="481169" fg:w="1268"/><text x="99.9169%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (337 samples, 0.07%)</title><rect x="99.8598%" y="789" width="0.0698%" height="15" fill="rgb(217,203,50)" fg:x="482100" fg:w="337"/><text x="100.1098%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (337 samples, 0.07%)</title><rect x="99.8598%" y="773" width="0.0698%" height="15" fill="rgb(241,123,32)" fg:x="482100" fg:w="337"/><text x="100.1098%" y="783.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (253 samples, 0.05%)</title><rect x="99.9296%" y="805" width="0.0524%" height="15" fill="rgb(248,151,39)" fg:x="482437" fg:w="253"/><text x="100.1796%" y="815.50"></text></g><g><title>all (482,777 samples, 100%)</title><rect x="0.0000%" y="837" width="100.0000%" height="15" fill="rgb(208,89,6)" fg:x="0" fg:w="482777"/><text x="0.2500%" y="847.50"></text></g><g><title>zig (83,563 samples, 17.31%)</title><rect x="82.6912%" y="821" width="17.3088%" height="15" fill="rgb(254,43,26)" fg:x="399214" fg:w="83563"/><text x="82.9412%" y="831.50">zig</text></g><g><title>syscall_return_via_sysret (69 samples, 0.01%)</title><rect x="99.9857%" y="805" width="0.0143%" height="15" fill="rgb(216,158,13)" fg:x="482708" fg:w="69"/><text x="100.2357%" y="815.50"></text></g></svg></svg> |