test-zig-cc/results/zigcc-j1.svg

491 lines
915 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="517577"><g><title>_dl_update_slotinfo (144 samples, 0.03%)</title><rect x="0.1847%" y="789" width="0.0278%" height="15" fill="rgb(227,0,7)" fg:x="956" fg:w="144"/><text x="0.4347%" y="799.50"></text></g><g><title>[anon] (1,215 samples, 0.23%)</title><rect x="0.0176%" y="805" width="0.2347%" height="15" fill="rgb(217,0,24)" fg:x="91" fg:w="1215"/><text x="0.2676%" y="815.50"></text></g><g><title>[perf-965379.map] (172 samples, 0.03%)</title><rect x="0.2531%" y="805" width="0.0332%" height="15" fill="rgb(221,193,54)" fg:x="1310" fg:w="172"/><text x="0.5031%" y="815.50"></text></g><g><title>[unknown] (132 samples, 0.03%)</title><rect x="0.2863%" y="805" width="0.0255%" height="15" fill="rgb(248,212,6)" fg:x="1482" fg:w="132"/><text x="0.5363%" y="815.50"></text></g><g><title>CompileBroker::post_compile (72 samples, 0.01%)</title><rect x="0.3314%" y="693" width="0.0139%" height="15" fill="rgb(208,68,35)" fg:x="1715" fg:w="72"/><text x="0.5814%" y="703.50"></text></g><g><title>StringEventLog::log (69 samples, 0.01%)</title><rect x="0.3319%" y="677" width="0.0133%" height="15" fill="rgb(232,128,0)" fg:x="1718" fg:w="69"/><text x="0.5819%" y="687.50"></text></g><g><title>jio_vsnprintf (62 samples, 0.01%)</title><rect x="0.3333%" y="661" width="0.0120%" height="15" fill="rgb(207,160,47)" fg:x="1725" fg:w="62"/><text x="0.5833%" y="671.50"></text></g><g><title>os::vsnprintf (62 samples, 0.01%)</title><rect x="0.3333%" y="645" width="0.0120%" height="15" fill="rgb(228,23,34)" fg:x="1725" fg:w="62"/><text x="0.5833%" y="655.50"></text></g><g><title>__vsnprintf_internal (60 samples, 0.01%)</title><rect x="0.3337%" y="629" width="0.0116%" height="15" fill="rgb(218,30,26)" fg:x="1727" fg:w="60"/><text x="0.5837%" y="639.50"></text></g><g><title>__vfprintf_internal (58 samples, 0.01%)</title><rect x="0.3341%" y="613" width="0.0112%" height="15" fill="rgb(220,122,19)" fg:x="1729" fg:w="58"/><text x="0.5841%" y="623.50"></text></g><g><title>CompileTask::print (83 samples, 0.02%)</title><rect x="0.3485%" y="693" width="0.0160%" height="15" fill="rgb(250,228,42)" fg:x="1804" fg:w="83"/><text x="0.5985%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (54 samples, 0.01%)</title><rect x="0.3882%" y="533" width="0.0104%" height="15" fill="rgb(240,193,28)" fg:x="2009" fg:w="54"/><text x="0.6382%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (73 samples, 0.01%)</title><rect x="0.3882%" y="549" width="0.0141%" height="15" fill="rgb(216,20,37)" fg:x="2009" fg:w="73"/><text x="0.6382%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (123 samples, 0.02%)</title><rect x="0.3876%" y="565" width="0.0238%" height="15" fill="rgb(206,188,39)" fg:x="2006" fg:w="123"/><text x="0.6376%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (195 samples, 0.04%)</title><rect x="0.3862%" y="581" width="0.0377%" height="15" fill="rgb(217,207,13)" fg:x="1999" fg:w="195"/><text x="0.6362%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (65 samples, 0.01%)</title><rect x="0.4113%" y="565" width="0.0126%" height="15" fill="rgb(231,73,38)" fg:x="2129" fg:w="65"/><text x="0.6613%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (196 samples, 0.04%)</title><rect x="0.3862%" y="597" width="0.0379%" height="15" fill="rgb(225,20,46)" fg:x="1999" fg:w="196"/><text x="0.6362%" y="607.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (363 samples, 0.07%)</title><rect x="0.3744%" y="613" width="0.0701%" height="15" fill="rgb(210,31,41)" fg:x="1938" fg:w="363"/><text x="0.6244%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (69 samples, 0.01%)</title><rect x="0.4484%" y="549" width="0.0133%" height="15" fill="rgb(221,200,47)" fg:x="2321" fg:w="69"/><text x="0.6984%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (93 samples, 0.02%)</title><rect x="0.4459%" y="565" width="0.0180%" height="15" fill="rgb(226,26,5)" fg:x="2308" fg:w="93"/><text x="0.6959%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (95 samples, 0.02%)</title><rect x="0.4457%" y="581" width="0.0184%" height="15" fill="rgb(249,33,26)" fg:x="2307" fg:w="95"/><text x="0.6957%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (71 samples, 0.01%)</title><rect x="0.4821%" y="517" width="0.0137%" height="15" fill="rgb(235,183,28)" fg:x="2495" fg:w="71"/><text x="0.7321%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (136 samples, 0.03%)</title><rect x="0.4697%" y="565" width="0.0263%" height="15" fill="rgb(221,5,38)" fg:x="2431" fg:w="136"/><text x="0.7197%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (97 samples, 0.02%)</title><rect x="0.4772%" y="549" width="0.0187%" height="15" fill="rgb(247,18,42)" fg:x="2470" fg:w="97"/><text x="0.7272%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (95 samples, 0.02%)</title><rect x="0.4776%" y="533" width="0.0184%" height="15" fill="rgb(241,131,45)" fg:x="2472" fg:w="95"/><text x="0.7276%" y="543.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (155 samples, 0.03%)</title><rect x="0.4664%" y="581" width="0.0299%" height="15" fill="rgb(249,31,29)" fg:x="2414" fg:w="155"/><text x="0.7164%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (65 samples, 0.01%)</title><rect x="0.5414%" y="485" width="0.0126%" height="15" fill="rgb(225,111,53)" fg:x="2802" fg:w="65"/><text x="0.7914%" y="495.50"></text></g><g><title>ciField::ciField (106 samples, 0.02%)</title><rect x="0.5377%" y="501" width="0.0205%" height="15" fill="rgb(238,160,17)" fg:x="2783" fg:w="106"/><text x="0.7877%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (121 samples, 0.02%)</title><rect x="0.5352%" y="517" width="0.0234%" height="15" fill="rgb(214,148,48)" fg:x="2770" fg:w="121"/><text x="0.7852%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (137 samples, 0.03%)</title><rect x="0.5350%" y="533" width="0.0265%" height="15" fill="rgb(232,36,49)" fg:x="2769" fg:w="137"/><text x="0.7850%" y="543.50"></text></g><g><title>GraphBuilder::access_field (188 samples, 0.04%)</title><rect x="0.5280%" y="549" width="0.0363%" height="15" fill="rgb(209,103,24)" fg:x="2733" fg:w="188"/><text x="0.7780%" y="559.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (53 samples, 0.01%)</title><rect x="0.6407%" y="405" width="0.0102%" height="15" fill="rgb(229,88,8)" fg:x="3316" fg:w="53"/><text x="0.8907%" y="415.50"></text></g><g><title>ciField::ciField (79 samples, 0.02%)</title><rect x="0.6378%" y="421" width="0.0153%" height="15" fill="rgb(213,181,19)" fg:x="3301" fg:w="79"/><text x="0.8878%" y="431.50"></text></g><g><title>ciEnv::get_field_by_index (86 samples, 0.02%)</title><rect x="0.6366%" y="437" width="0.0166%" height="15" fill="rgb(254,191,54)" fg:x="3295" fg:w="86"/><text x="0.8866%" y="447.50"></text></g><g><title>ciBytecodeStream::get_field (102 samples, 0.02%)</title><rect x="0.6364%" y="453" width="0.0197%" height="15" fill="rgb(241,83,37)" fg:x="3294" fg:w="102"/><text x="0.8864%" y="463.50"></text></g><g><title>GraphBuilder::access_field (151 samples, 0.03%)</title><rect x="0.6285%" y="469" width="0.0292%" height="15" fill="rgb(233,36,39)" fg:x="3253" fg:w="151"/><text x="0.8785%" y="479.50"></text></g><g><title>GraphBuilder::invoke (53 samples, 0.01%)</title><rect x="0.7299%" y="229" width="0.0102%" height="15" fill="rgb(226,3,54)" fg:x="3778" fg:w="53"/><text x="0.9799%" y="239.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (87 samples, 0.02%)</title><rect x="0.7259%" y="261" width="0.0168%" height="15" fill="rgb(245,192,40)" fg:x="3757" fg:w="87"/><text x="0.9759%" y="271.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (87 samples, 0.02%)</title><rect x="0.7259%" y="245" width="0.0168%" height="15" fill="rgb(238,167,29)" fg:x="3757" fg:w="87"/><text x="0.9759%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (123 samples, 0.02%)</title><rect x="0.7247%" y="277" width="0.0238%" height="15" fill="rgb(232,182,51)" fg:x="3751" fg:w="123"/><text x="0.9747%" y="287.50"></text></g><g><title>GraphBuilder::try_inline (129 samples, 0.02%)</title><rect x="0.7241%" y="293" width="0.0249%" height="15" fill="rgb(231,60,39)" fg:x="3748" fg:w="129"/><text x="0.9741%" y="303.50"></text></g><g><title>GraphBuilder::invoke (192 samples, 0.04%)</title><rect x="0.7222%" y="309" width="0.0371%" height="15" fill="rgb(208,69,12)" fg:x="3738" fg:w="192"/><text x="0.9722%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (280 samples, 0.05%)</title><rect x="0.7085%" y="341" width="0.0541%" height="15" fill="rgb(235,93,37)" fg:x="3667" fg:w="280"/><text x="0.9585%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (280 samples, 0.05%)</title><rect x="0.7085%" y="325" width="0.0541%" height="15" fill="rgb(213,116,39)" fg:x="3667" fg:w="280"/><text x="0.9585%" y="335.50"></text></g><g><title>GraphBuilder::try_inline_full (367 samples, 0.07%)</title><rect x="0.7069%" y="357" width="0.0709%" height="15" fill="rgb(222,207,29)" fg:x="3659" fg:w="367"/><text x="0.9569%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (402 samples, 0.08%)</title><rect x="0.7056%" y="373" width="0.0777%" height="15" fill="rgb(206,96,30)" fg:x="3652" fg:w="402"/><text x="0.9556%" y="383.50"></text></g><g><title>ciBytecodeStream::get_method (102 samples, 0.02%)</title><rect x="0.7867%" y="373" width="0.0197%" height="15" fill="rgb(218,138,4)" fg:x="4072" fg:w="102"/><text x="1.0367%" y="383.50"></text></g><g><title>ciEnv::get_method_by_index_impl (93 samples, 0.02%)</title><rect x="0.7885%" y="357" width="0.0180%" height="15" fill="rgb(250,191,14)" fg:x="4081" fg:w="93"/><text x="1.0385%" y="367.50"></text></g><g><title>GraphBuilder::invoke (568 samples, 0.11%)</title><rect x="0.7021%" y="389" width="0.1097%" height="15" fill="rgb(239,60,40)" fg:x="3634" fg:w="568"/><text x="0.9521%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (732 samples, 0.14%)</title><rect x="0.6778%" y="421" width="0.1414%" height="15" fill="rgb(206,27,48)" fg:x="3508" fg:w="732"/><text x="0.9278%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (725 samples, 0.14%)</title><rect x="0.6791%" y="405" width="0.1401%" height="15" fill="rgb(225,35,8)" fg:x="3515" fg:w="725"/><text x="0.9291%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (73 samples, 0.01%)</title><rect x="0.8196%" y="421" width="0.0141%" height="15" fill="rgb(250,213,24)" fg:x="4242" fg:w="73"/><text x="1.0696%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (73 samples, 0.01%)</title><rect x="0.8352%" y="421" width="0.0141%" height="15" fill="rgb(247,123,22)" fg:x="4323" fg:w="73"/><text x="1.0852%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (69 samples, 0.01%)</title><rect x="0.8360%" y="405" width="0.0133%" height="15" fill="rgb(231,138,38)" fg:x="4327" fg:w="69"/><text x="1.0860%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (921 samples, 0.18%)</title><rect x="0.6720%" y="437" width="0.1779%" height="15" fill="rgb(231,145,46)" fg:x="3478" fg:w="921"/><text x="0.9220%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (964 samples, 0.19%)</title><rect x="0.6700%" y="453" width="0.1863%" height="15" fill="rgb(251,118,11)" fg:x="3468" fg:w="964"/><text x="0.9200%" y="463.50"></text></g><g><title>ciSignature::ciSignature (64 samples, 0.01%)</title><rect x="0.8816%" y="373" width="0.0124%" height="15" fill="rgb(217,147,25)" fg:x="4563" fg:w="64"/><text x="1.1316%" y="383.50"></text></g><g><title>ciMethod::ciMethod (83 samples, 0.02%)</title><rect x="0.8781%" y="389" width="0.0160%" height="15" fill="rgb(247,81,37)" fg:x="4545" fg:w="83"/><text x="1.1281%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (97 samples, 0.02%)</title><rect x="0.8760%" y="421" width="0.0187%" height="15" fill="rgb(209,12,38)" fg:x="4534" fg:w="97"/><text x="1.1260%" y="431.50"></text></g><g><title>ciObjectFactory::create_new_metadata (90 samples, 0.02%)</title><rect x="0.8774%" y="405" width="0.0174%" height="15" fill="rgb(227,1,9)" fg:x="4541" fg:w="90"/><text x="1.1274%" y="415.50"></text></g><g><title>ciBytecodeStream::get_method (182 samples, 0.04%)</title><rect x="0.8605%" y="453" width="0.0352%" height="15" fill="rgb(248,47,43)" fg:x="4454" fg:w="182"/><text x="1.1105%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (170 samples, 0.03%)</title><rect x="0.8629%" y="437" width="0.0328%" height="15" fill="rgb(221,10,30)" fg:x="4466" fg:w="170"/><text x="1.1129%" y="447.50"></text></g><g><title>GraphBuilder::invoke (1,247 samples, 0.24%)</title><rect x="0.6614%" y="469" width="0.2409%" height="15" fill="rgb(210,229,1)" fg:x="3423" fg:w="1247"/><text x="0.9114%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,594 samples, 0.31%)</title><rect x="0.6100%" y="501" width="0.3080%" height="15" fill="rgb(222,148,37)" fg:x="3157" fg:w="1594"/><text x="0.8600%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,579 samples, 0.31%)</title><rect x="0.6129%" y="485" width="0.3051%" height="15" fill="rgb(234,67,33)" fg:x="3172" fg:w="1579"/><text x="0.8629%" y="495.50"></text></g><g><title>MethodLiveness::init_basic_blocks (53 samples, 0.01%)</title><rect x="0.9307%" y="421" width="0.0102%" height="15" fill="rgb(247,98,35)" fg:x="4817" fg:w="53"/><text x="1.1807%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (81 samples, 0.02%)</title><rect x="0.9255%" y="469" width="0.0156%" height="15" fill="rgb(247,138,52)" fg:x="4790" fg:w="81"/><text x="1.1755%" y="479.50"></text></g><g><title>ciMethod::bci_block_start (70 samples, 0.01%)</title><rect x="0.9276%" y="453" width="0.0135%" height="15" fill="rgb(213,79,30)" fg:x="4801" fg:w="70"/><text x="1.1776%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (69 samples, 0.01%)</title><rect x="0.9278%" y="437" width="0.0133%" height="15" fill="rgb(246,177,23)" fg:x="4802" fg:w="69"/><text x="1.1778%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (98 samples, 0.02%)</title><rect x="0.9224%" y="485" width="0.0189%" height="15" fill="rgb(230,62,27)" fg:x="4774" fg:w="98"/><text x="1.1724%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (156 samples, 0.03%)</title><rect x="0.9212%" y="501" width="0.0301%" height="15" fill="rgb(216,154,8)" fg:x="4768" fg:w="156"/><text x="1.1712%" y="511.50"></text></g><g><title>MethodData::allocate (54 samples, 0.01%)</title><rect x="0.9554%" y="453" width="0.0104%" height="15" fill="rgb(244,35,45)" fg:x="4945" fg:w="54"/><text x="1.2054%" y="463.50"></text></g><g><title>Method::build_interpreter_method_data (57 samples, 0.01%)</title><rect x="0.9552%" y="469" width="0.0110%" height="15" fill="rgb(251,115,12)" fg:x="4944" fg:w="57"/><text x="1.2052%" y="479.50"></text></g><g><title>ciMethodData::load_data (58 samples, 0.01%)</title><rect x="0.9664%" y="469" width="0.0112%" height="15" fill="rgb(240,54,50)" fg:x="5002" fg:w="58"/><text x="1.2164%" y="479.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.03%)</title><rect x="0.9550%" y="485" width="0.0263%" height="15" fill="rgb(233,84,52)" fg:x="4943" fg:w="136"/><text x="1.2050%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (141 samples, 0.03%)</title><rect x="0.9543%" y="501" width="0.0272%" height="15" fill="rgb(207,117,47)" fg:x="4939" fg:w="141"/><text x="1.2043%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (1,988 samples, 0.38%)</title><rect x="0.5997%" y="517" width="0.3841%" height="15" fill="rgb(249,43,39)" fg:x="3104" fg:w="1988"/><text x="0.8497%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (2,015 samples, 0.39%)</title><rect x="0.5970%" y="533" width="0.3893%" height="15" fill="rgb(209,38,44)" fg:x="3090" fg:w="2015"/><text x="0.8470%" y="543.50"></text></g><g><title>ciEnv::lookup_method (90 samples, 0.02%)</title><rect x="1.0068%" y="501" width="0.0174%" height="15" fill="rgb(236,212,23)" fg:x="5211" fg:w="90"/><text x="1.2568%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (65 samples, 0.01%)</title><rect x="1.0451%" y="437" width="0.0126%" height="15" fill="rgb(242,79,21)" fg:x="5409" fg:w="65"/><text x="1.2951%" y="447.50"></text></g><g><title>ciMethod::ciMethod (161 samples, 0.03%)</title><rect x="1.0296%" y="469" width="0.0311%" height="15" fill="rgb(211,96,35)" fg:x="5329" fg:w="161"/><text x="1.2796%" y="479.50"></text></g><g><title>ciSignature::ciSignature (136 samples, 0.03%)</title><rect x="1.0344%" y="453" width="0.0263%" height="15" fill="rgb(253,215,40)" fg:x="5354" fg:w="136"/><text x="1.2844%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (194 samples, 0.04%)</title><rect x="1.0242%" y="501" width="0.0375%" height="15" fill="rgb(211,81,21)" fg:x="5301" fg:w="194"/><text x="1.2742%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (176 samples, 0.03%)</title><rect x="1.0277%" y="485" width="0.0340%" height="15" fill="rgb(208,190,38)" fg:x="5319" fg:w="176"/><text x="1.2777%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (322 samples, 0.06%)</title><rect x="1.0004%" y="517" width="0.0622%" height="15" fill="rgb(235,213,38)" fg:x="5178" fg:w="322"/><text x="1.2504%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (345 samples, 0.07%)</title><rect x="0.9962%" y="533" width="0.0667%" height="15" fill="rgb(237,122,38)" fg:x="5156" fg:w="345"/><text x="1.2462%" y="543.50"></text></g><g><title>GraphBuilder::invoke (2,555 samples, 0.49%)</title><rect x="0.5816%" y="549" width="0.4936%" height="15" fill="rgb(244,218,35)" fg:x="3010" fg:w="2555"/><text x="0.8316%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,022 samples, 0.58%)</title><rect x="0.5074%" y="565" width="0.5839%" height="15" fill="rgb(240,68,47)" fg:x="2626" fg:w="3022"/><text x="0.7574%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,077 samples, 0.59%)</title><rect x="0.4998%" y="581" width="0.5945%" height="15" fill="rgb(210,16,53)" fg:x="2587" fg:w="3077"/><text x="0.7498%" y="591.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,406 samples, 0.66%)</title><rect x="0.4453%" y="597" width="0.6581%" height="15" fill="rgb(235,124,12)" fg:x="2305" fg:w="3406"/><text x="0.6953%" y="607.50"></text></g><g><title>IR::IR (3,426 samples, 0.66%)</title><rect x="0.4446%" y="613" width="0.6619%" height="15" fill="rgb(224,169,11)" fg:x="2301" fg:w="3426"/><text x="0.6946%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (69 samples, 0.01%)</title><rect x="1.1065%" y="597" width="0.0133%" height="15" fill="rgb(250,166,2)" fg:x="5727" fg:w="69"/><text x="1.3565%" y="607.50"></text></g><g><title>IR::compute_code (78 samples, 0.02%)</title><rect x="1.1065%" y="613" width="0.0151%" height="15" fill="rgb(242,216,29)" fg:x="5727" fg:w="78"/><text x="1.3565%" y="623.50"></text></g><g><title>BlockList::iterate_backward (60 samples, 0.01%)</title><rect x="1.1223%" y="597" width="0.0116%" height="15" fill="rgb(230,116,27)" fg:x="5809" fg:w="60"/><text x="1.3723%" y="607.50"></text></g><g><title>UseCountComputer::block_do (57 samples, 0.01%)</title><rect x="1.1229%" y="581" width="0.0110%" height="15" fill="rgb(228,99,48)" fg:x="5812" fg:w="57"/><text x="1.3729%" y="591.50"></text></g><g><title>IR::compute_use_counts (100 samples, 0.02%)</title><rect x="1.1216%" y="613" width="0.0193%" height="15" fill="rgb(253,11,6)" fg:x="5805" fg:w="100"/><text x="1.3716%" y="623.50"></text></g><g><title>NullCheckEliminator::iterate_one (141 samples, 0.03%)</title><rect x="1.1421%" y="581" width="0.0272%" height="15" fill="rgb(247,143,39)" fg:x="5911" fg:w="141"/><text x="1.3921%" y="591.50"></text></g><g><title>IR::eliminate_null_checks (159 samples, 0.03%)</title><rect x="1.1409%" y="613" width="0.0307%" height="15" fill="rgb(236,97,10)" fg:x="5905" fg:w="159"/><text x="1.3909%" y="623.50"></text></g><g><title>Optimizer::eliminate_null_checks (159 samples, 0.03%)</title><rect x="1.1409%" y="597" width="0.0307%" height="15" fill="rgb(233,208,19)" fg:x="5905" fg:w="159"/><text x="1.3909%" y="607.50"></text></g><g><title>IR::optimize_blocks (62 samples, 0.01%)</title><rect x="1.1716%" y="613" width="0.0120%" height="15" fill="rgb(216,164,2)" fg:x="6064" fg:w="62"/><text x="1.4216%" y="623.50"></text></g><g><title>IR::split_critical_edges (56 samples, 0.01%)</title><rect x="1.1836%" y="613" width="0.0108%" height="15" fill="rgb(220,129,5)" fg:x="6126" fg:w="56"/><text x="1.4336%" y="623.50"></text></g><g><title>Compilation::build_hir (4,300 samples, 0.83%)</title><rect x="0.3721%" y="629" width="0.8308%" height="15" fill="rgb(242,17,10)" fg:x="1926" fg:w="4300"/><text x="0.6221%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (105 samples, 0.02%)</title><rect x="1.2313%" y="565" width="0.0203%" height="15" fill="rgb(242,107,0)" fg:x="6373" fg:w="105"/><text x="1.4813%" y="575.50"></text></g><g><title>CodeEmitInfo::record_debug_info (105 samples, 0.02%)</title><rect x="1.2313%" y="549" width="0.0203%" height="15" fill="rgb(251,28,31)" fg:x="6373" fg:w="105"/><text x="1.4813%" y="559.50"></text></g><g><title>LIR_Assembler::call (115 samples, 0.02%)</title><rect x="1.2303%" y="581" width="0.0222%" height="15" fill="rgb(233,223,10)" fg:x="6368" fg:w="115"/><text x="1.4803%" y="591.50"></text></g><g><title>LIR_Assembler::emit_call (182 samples, 0.04%)</title><rect x="1.2236%" y="597" width="0.0352%" height="15" fill="rgb(215,21,27)" fg:x="6333" fg:w="182"/><text x="1.4736%" y="607.50"></text></g><g><title>LIR_Assembler::emit_op1 (151 samples, 0.03%)</title><rect x="1.2655%" y="597" width="0.0292%" height="15" fill="rgb(232,23,21)" fg:x="6550" fg:w="151"/><text x="1.5155%" y="607.50"></text></g><g><title>LIR_Assembler::emit_profile_call (74 samples, 0.01%)</title><rect x="1.2989%" y="597" width="0.0143%" height="15" fill="rgb(244,5,23)" fg:x="6723" fg:w="74"/><text x="1.5489%" y="607.50"></text></g><g><title>LIR_Assembler::emit_code (679 samples, 0.13%)</title><rect x="1.2060%" y="613" width="0.1312%" height="15" fill="rgb(226,81,46)" fg:x="6242" fg:w="679"/><text x="1.4560%" y="623.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (52 samples, 0.01%)</title><rect x="1.3565%" y="549" width="0.0100%" height="15" fill="rgb(247,70,30)" fg:x="7021" fg:w="52"/><text x="1.6065%" y="559.50"></text></g><g><title>LIR_Assembler::add_call_info (132 samples, 0.03%)</title><rect x="1.3526%" y="581" width="0.0255%" height="15" fill="rgb(212,68,19)" fg:x="7001" fg:w="132"/><text x="1.6026%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (132 samples, 0.03%)</title><rect x="1.3526%" y="565" width="0.0255%" height="15" fill="rgb(240,187,13)" fg:x="7001" fg:w="132"/><text x="1.6026%" y="575.50"></text></g><g><title>CounterOverflowStub::emit_code (162 samples, 0.03%)</title><rect x="1.3515%" y="597" width="0.0313%" height="15" fill="rgb(223,113,26)" fg:x="6995" fg:w="162"/><text x="1.6015%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (52 samples, 0.01%)</title><rect x="1.3896%" y="565" width="0.0100%" height="15" fill="rgb(206,192,2)" fg:x="7192" fg:w="52"/><text x="1.6396%" y="575.50"></text></g><g><title>LIR_Assembler::add_call_info (53 samples, 0.01%)</title><rect x="1.3896%" y="581" width="0.0102%" height="15" fill="rgb(241,108,4)" fg:x="7192" fg:w="53"/><text x="1.6396%" y="591.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (69 samples, 0.01%)</title><rect x="1.3872%" y="597" width="0.0133%" height="15" fill="rgb(247,173,49)" fg:x="7180" fg:w="69"/><text x="1.6372%" y="607.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (374 samples, 0.07%)</title><rect x="1.3496%" y="613" width="0.0723%" height="15" fill="rgb(224,114,35)" fg:x="6985" fg:w="374"/><text x="1.5996%" y="623.50"></text></g><g><title>Compilation::emit_code_body (1,145 samples, 0.22%)</title><rect x="1.2029%" y="629" width="0.2212%" height="15" fill="rgb(245,159,27)" fg:x="6226" fg:w="1145"/><text x="1.4529%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (75 samples, 0.01%)</title><rect x="1.4373%" y="581" width="0.0145%" height="15" fill="rgb(245,172,44)" fg:x="7439" fg:w="75"/><text x="1.6873%" y="591.50"></text></g><g><title>LIRGenerator::move_to_phi (224 samples, 0.04%)</title><rect x="1.4558%" y="565" width="0.0433%" height="15" fill="rgb(236,23,11)" fg:x="7535" fg:w="224"/><text x="1.7058%" y="575.50"></text></g><g><title>PhiResolverState::reset (154 samples, 0.03%)</title><rect x="1.4693%" y="549" width="0.0298%" height="15" fill="rgb(205,117,38)" fg:x="7605" fg:w="154"/><text x="1.7193%" y="559.50"></text></g><g><title>LIRGenerator::do_Goto (245 samples, 0.05%)</title><rect x="1.4531%" y="581" width="0.0473%" height="15" fill="rgb(237,72,25)" fg:x="7521" fg:w="245"/><text x="1.7031%" y="591.50"></text></g><g><title>LIRGenerator::do_If (59 samples, 0.01%)</title><rect x="1.5005%" y="581" width="0.0114%" height="15" fill="rgb(244,70,9)" fg:x="7766" fg:w="59"/><text x="1.7505%" y="591.50"></text></g><g><title>LIRGenerator::state_for (60 samples, 0.01%)</title><rect x="1.5269%" y="565" width="0.0116%" height="15" fill="rgb(217,125,39)" fg:x="7903" fg:w="60"/><text x="1.7769%" y="575.50"></text></g><g><title>LIRGenerator::do_Invoke (141 samples, 0.03%)</title><rect x="1.5128%" y="581" width="0.0272%" height="15" fill="rgb(235,36,10)" fg:x="7830" fg:w="141"/><text x="1.7628%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (99 samples, 0.02%)</title><rect x="1.5665%" y="581" width="0.0191%" height="15" fill="rgb(251,123,47)" fg:x="8108" fg:w="99"/><text x="1.8165%" y="591.50"></text></g><g><title>LIRGenerator::block_do (892 samples, 0.17%)</title><rect x="1.4255%" y="597" width="0.1723%" height="15" fill="rgb(221,13,13)" fg:x="7378" fg:w="892"/><text x="1.6755%" y="607.50"></text></g><g><title>BlockList::iterate_forward (898 samples, 0.17%)</title><rect x="1.4247%" y="613" width="0.1735%" height="15" fill="rgb(238,131,9)" fg:x="7374" fg:w="898"/><text x="1.6747%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (126 samples, 0.02%)</title><rect x="1.6251%" y="565" width="0.0243%" height="15" fill="rgb(211,50,8)" fg:x="8411" fg:w="126"/><text x="1.8751%" y="575.50"></text></g><g><title>LinearScanWalker::find_free_reg (107 samples, 0.02%)</title><rect x="1.6697%" y="533" width="0.0207%" height="15" fill="rgb(245,182,24)" fg:x="8642" fg:w="107"/><text x="1.9197%" y="543.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (140 samples, 0.03%)</title><rect x="1.6948%" y="533" width="0.0270%" height="15" fill="rgb(242,14,37)" fg:x="8772" fg:w="140"/><text x="1.9448%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (69 samples, 0.01%)</title><rect x="1.7219%" y="533" width="0.0133%" height="15" fill="rgb(246,228,12)" fg:x="8912" fg:w="69"/><text x="1.9719%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (425 samples, 0.08%)</title><rect x="1.6541%" y="549" width="0.0821%" height="15" fill="rgb(213,55,15)" fg:x="8561" fg:w="425"/><text x="1.9041%" y="559.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (72 samples, 0.01%)</title><rect x="1.7423%" y="533" width="0.0139%" height="15" fill="rgb(209,9,3)" fg:x="9018" fg:w="72"/><text x="1.9923%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (123 samples, 0.02%)</title><rect x="1.7362%" y="549" width="0.0238%" height="15" fill="rgb(230,59,30)" fg:x="8986" fg:w="123"/><text x="1.9862%" y="559.50"></text></g><g><title>LinearScanWalker::activate_current (652 samples, 0.13%)</title><rect x="1.6494%" y="565" width="0.1260%" height="15" fill="rgb(209,121,21)" fg:x="8537" fg:w="652"/><text x="1.8994%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (831 samples, 0.16%)</title><rect x="1.6150%" y="581" width="0.1606%" height="15" fill="rgb(220,109,13)" fg:x="8359" fg:w="831"/><text x="1.8650%" y="591.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (65 samples, 0.01%)</title><rect x="1.7765%" y="581" width="0.0126%" height="15" fill="rgb(232,18,1)" fg:x="9195" fg:w="65"/><text x="2.0265%" y="591.50"></text></g><g><title>LinearScan::allocate_registers (927 samples, 0.18%)</title><rect x="1.6104%" y="597" width="0.1791%" height="15" fill="rgb(215,41,42)" fg:x="8335" fg:w="927"/><text x="1.8604%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (84 samples, 0.02%)</title><rect x="1.8225%" y="565" width="0.0162%" height="15" fill="rgb(224,123,36)" fg:x="9433" fg:w="84"/><text x="2.0725%" y="575.50"></text></g><g><title>LinearScan::color_lir_opr (67 samples, 0.01%)</title><rect x="1.8390%" y="565" width="0.0129%" height="15" fill="rgb(240,125,3)" fg:x="9518" fg:w="67"/><text x="2.0890%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (93 samples, 0.02%)</title><rect x="1.8616%" y="549" width="0.0180%" height="15" fill="rgb(205,98,50)" fg:x="9635" fg:w="93"/><text x="2.1116%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (161 samples, 0.03%)</title><rect x="1.8519%" y="565" width="0.0311%" height="15" fill="rgb(205,185,37)" fg:x="9585" fg:w="161"/><text x="2.1019%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (86 samples, 0.02%)</title><rect x="1.8917%" y="533" width="0.0166%" height="15" fill="rgb(238,207,15)" fg:x="9791" fg:w="86"/><text x="2.1417%" y="543.50"></text></g><g><title>LinearScan::assign_reg_num (665 samples, 0.13%)</title><rect x="1.7903%" y="581" width="0.1285%" height="15" fill="rgb(213,199,42)" fg:x="9266" fg:w="665"/><text x="2.0403%" y="591.50"></text></g><g><title>LinearScan::compute_oop_map (185 samples, 0.04%)</title><rect x="1.8830%" y="565" width="0.0357%" height="15" fill="rgb(235,201,11)" fg:x="9746" fg:w="185"/><text x="2.1330%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (172 samples, 0.03%)</title><rect x="1.8855%" y="549" width="0.0332%" height="15" fill="rgb(207,46,11)" fg:x="9759" fg:w="172"/><text x="2.1355%" y="559.50"></text></g><g><title>LinearScan::assign_reg_num (696 samples, 0.13%)</title><rect x="1.7895%" y="597" width="0.1345%" height="15" fill="rgb(241,35,35)" fg:x="9262" fg:w="696"/><text x="2.0395%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (84 samples, 0.02%)</title><rect x="1.9848%" y="581" width="0.0162%" height="15" fill="rgb(243,32,47)" fg:x="10273" fg:w="84"/><text x="2.2348%" y="591.50"></text></g><g><title>LinearScan::add_def (66 samples, 0.01%)</title><rect x="2.0011%" y="581" width="0.0128%" height="15" fill="rgb(247,202,23)" fg:x="10357" fg:w="66"/><text x="2.2511%" y="591.50"></text></g><g><title>LinearScan::create_interval (73 samples, 0.01%)</title><rect x="2.0304%" y="565" width="0.0141%" height="15" fill="rgb(219,102,11)" fg:x="10509" fg:w="73"/><text x="2.2804%" y="575.50"></text></g><g><title>LinearScan::add_temp (132 samples, 0.03%)</title><rect x="2.0194%" y="581" width="0.0255%" height="15" fill="rgb(243,110,44)" fg:x="10452" fg:w="132"/><text x="2.2694%" y="591.50"></text></g><g><title>Interval::Interval (70 samples, 0.01%)</title><rect x="2.0714%" y="549" width="0.0135%" height="15" fill="rgb(222,74,54)" fg:x="10721" fg:w="70"/><text x="2.3214%" y="559.50"></text></g><g><title>LinearScan::create_interval (116 samples, 0.02%)</title><rect x="2.0638%" y="565" width="0.0224%" height="15" fill="rgb(216,99,12)" fg:x="10682" fg:w="116"/><text x="2.3138%" y="575.50"></text></g><g><title>LinearScan::add_use (217 samples, 0.04%)</title><rect x="2.0449%" y="581" width="0.0419%" height="15" fill="rgb(226,22,26)" fg:x="10584" fg:w="217"/><text x="2.2949%" y="591.50"></text></g><g><title>LinearScan::build_intervals (920 samples, 0.18%)</title><rect x="1.9240%" y="597" width="0.1778%" height="15" fill="rgb(217,163,10)" fg:x="9958" fg:w="920"/><text x="2.1740%" y="607.50"></text></g><g><title>LinearScan::compute_global_live_sets (56 samples, 0.01%)</title><rect x="2.1017%" y="597" width="0.0108%" height="15" fill="rgb(213,25,53)" fg:x="10878" fg:w="56"/><text x="2.3517%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (71 samples, 0.01%)</title><rect x="2.1357%" y="581" width="0.0137%" height="15" fill="rgb(252,105,26)" fg:x="11054" fg:w="71"/><text x="2.3857%" y="591.50"></text></g><g><title>LinearScan::compute_local_live_sets (258 samples, 0.05%)</title><rect x="2.1125%" y="597" width="0.0498%" height="15" fill="rgb(220,39,43)" fg:x="10934" fg:w="258"/><text x="2.3625%" y="607.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (52 samples, 0.01%)</title><rect x="2.1523%" y="581" width="0.0100%" height="15" fill="rgb(229,68,48)" fg:x="11140" fg:w="52"/><text x="2.4023%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (75 samples, 0.01%)</title><rect x="2.1624%" y="597" width="0.0145%" height="15" fill="rgb(252,8,32)" fg:x="11192" fg:w="75"/><text x="2.4124%" y="607.50"></text></g><g><title>LinearScan::number_instructions (53 samples, 0.01%)</title><rect x="2.1769%" y="597" width="0.0102%" height="15" fill="rgb(223,20,43)" fg:x="11267" fg:w="53"/><text x="2.4269%" y="607.50"></text></g><g><title>Interval::split_child_at_op_id (54 samples, 0.01%)</title><rect x="2.2035%" y="565" width="0.0104%" height="15" fill="rgb(229,81,49)" fg:x="11405" fg:w="54"/><text x="2.4535%" y="575.50"></text></g><g><title>LinearScan::resolve_collect_mappings (110 samples, 0.02%)</title><rect x="2.1929%" y="581" width="0.0213%" height="15" fill="rgb(236,28,36)" fg:x="11350" fg:w="110"/><text x="2.4429%" y="591.50"></text></g><g><title>LinearScan::resolve_data_flow (154 samples, 0.03%)</title><rect x="2.1875%" y="597" width="0.0298%" height="15" fill="rgb(249,185,26)" fg:x="11322" fg:w="154"/><text x="2.4375%" y="607.50"></text></g><g><title>LinearScan::do_linear_scan (3,319 samples, 0.64%)</title><rect x="1.6040%" y="613" width="0.6413%" height="15" fill="rgb(249,174,33)" fg:x="8302" fg:w="3319"/><text x="1.8540%" y="623.50"></text></g><g><title>Compilation::emit_lir (4,255 samples, 0.82%)</title><rect x="1.4241%" y="629" width="0.8221%" height="15" fill="rgb(233,201,37)" fg:x="7371" fg:w="4255"/><text x="1.6741%" y="639.50"></text></g><g><title>Compilation::compile_java_method (9,849 samples, 1.90%)</title><rect x="0.3706%" y="645" width="1.9029%" height="15" fill="rgb(221,78,26)" fg:x="1918" fg:w="9849"/><text x="0.6206%" y="655.50">C..</text></g><g><title>ciMethod::ensure_method_data (110 samples, 0.02%)</title><rect x="2.2522%" y="629" width="0.0213%" height="15" fill="rgb(250,127,30)" fg:x="11657" fg:w="110"/><text x="2.5022%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (107 samples, 0.02%)</title><rect x="2.2528%" y="613" width="0.0207%" height="15" fill="rgb(230,49,44)" fg:x="11660" fg:w="107"/><text x="2.5028%" y="623.50"></text></g><g><title>CodeBuffer::finalize_oop_references (80 samples, 0.02%)</title><rect x="2.2980%" y="613" width="0.0155%" height="15" fill="rgb(229,67,23)" fg:x="11894" fg:w="80"/><text x="2.5480%" y="623.50"></text></g><g><title>CodeBuffer::relocate_code_to (119 samples, 0.02%)</title><rect x="2.3361%" y="581" width="0.0230%" height="15" fill="rgb(249,83,47)" fg:x="12091" fg:w="119"/><text x="2.5861%" y="591.50"></text></g><g><title>CodeBuffer::copy_code_to (129 samples, 0.02%)</title><rect x="2.3357%" y="597" width="0.0249%" height="15" fill="rgb(215,43,3)" fg:x="12089" fg:w="129"/><text x="2.5857%" y="607.50"></text></g><g><title>nmethod::new_nmethod (464 samples, 0.09%)</title><rect x="2.2967%" y="629" width="0.0896%" height="15" fill="rgb(238,154,13)" fg:x="11887" fg:w="464"/><text x="2.5467%" y="639.50"></text></g><g><title>nmethod::nmethod (265 samples, 0.05%)</title><rect x="2.3351%" y="613" width="0.0512%" height="15" fill="rgb(219,56,2)" fg:x="12086" fg:w="265"/><text x="2.5851%" y="623.50"></text></g><g><title>Compilation::compile_method (10,440 samples, 2.02%)</title><rect x="0.3694%" y="661" width="2.0171%" height="15" fill="rgb(233,0,4)" fg:x="1912" fg:w="10440"/><text x="0.6194%" y="671.50">C..</text></g><g><title>ciEnv::register_method (536 samples, 0.10%)</title><rect x="2.2829%" y="645" width="0.1036%" height="15" fill="rgb(235,30,7)" fg:x="11816" fg:w="536"/><text x="2.5329%" y="655.50"></text></g><g><title>Compilation::Compilation (10,453 samples, 2.02%)</title><rect x="0.3686%" y="677" width="2.0196%" height="15" fill="rgb(250,79,13)" fg:x="1908" fg:w="10453"/><text x="0.6186%" y="687.50">C..</text></g><g><title>Compiler::compile_method (10,476 samples, 2.02%)</title><rect x="0.3646%" y="693" width="2.0240%" height="15" fill="rgb(211,146,34)" fg:x="1887" fg:w="10476"/><text x="0.6146%" y="703.50">C..</text></g><g><title>ciObjectFactory::get (62 samples, 0.01%)</title><rect x="2.4002%" y="677" width="0.0120%" height="15" fill="rgb(228,22,38)" fg:x="12423" fg:w="62"/><text x="2.6502%" y="687.50"></text></g><g><title>ciEnv::ciEnv (96 samples, 0.02%)</title><rect x="2.3940%" y="693" width="0.0185%" height="15" fill="rgb(235,168,5)" fg:x="12391" fg:w="96"/><text x="2.6440%" y="703.50"></text></g><g><title>ciSignature::ciSignature (88 samples, 0.02%)</title><rect x="2.4174%" y="629" width="0.0170%" height="15" fill="rgb(221,155,16)" fg:x="12512" fg:w="88"/><text x="2.6674%" y="639.50"></text></g><g><title>ciMethod::ciMethod (100 samples, 0.02%)</title><rect x="2.4153%" y="645" width="0.0193%" height="15" fill="rgb(215,215,53)" fg:x="12501" fg:w="100"/><text x="2.6653%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (124 samples, 0.02%)</title><rect x="2.4126%" y="693" width="0.0240%" height="15" fill="rgb(223,4,10)" fg:x="12487" fg:w="124"/><text x="2.6626%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (120 samples, 0.02%)</title><rect x="2.4134%" y="677" width="0.0232%" height="15" fill="rgb(234,103,6)" fg:x="12491" fg:w="120"/><text x="2.6634%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (116 samples, 0.02%)</title><rect x="2.4141%" y="661" width="0.0224%" height="15" fill="rgb(227,97,0)" fg:x="12495" fg:w="116"/><text x="2.6641%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,976 samples, 2.12%)</title><rect x="0.3223%" y="709" width="2.1207%" height="15" fill="rgb(234,150,53)" fg:x="1668" fg:w="10976"/><text x="0.5723%" y="719.50">C..</text></g><g><title>futex_wait_queue_me (53 samples, 0.01%)</title><rect x="2.4601%" y="517" width="0.0102%" height="15" fill="rgb(228,201,54)" fg:x="12733" fg:w="53"/><text x="2.7101%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="2.4595%" y="597" width="0.0112%" height="15" fill="rgb(222,22,37)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="607.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="2.4595%" y="581" width="0.0112%" height="15" fill="rgb(237,53,32)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="591.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="2.4595%" y="565" width="0.0112%" height="15" fill="rgb(233,25,53)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="575.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="2.4595%" y="549" width="0.0112%" height="15" fill="rgb(210,40,34)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="559.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="2.4599%" y="533" width="0.0108%" height="15" fill="rgb(241,220,44)" fg:x="12732" fg:w="56"/><text x="2.7099%" y="543.50"></text></g><g><title>__pthread_cond_timedwait (64 samples, 0.01%)</title><rect x="2.4588%" y="645" width="0.0124%" height="15" fill="rgb(235,28,35)" fg:x="12726" fg:w="64"/><text x="2.7088%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.01%)</title><rect x="2.4588%" y="629" width="0.0124%" height="15" fill="rgb(210,56,17)" fg:x="12726" fg:w="64"/><text x="2.7088%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.01%)</title><rect x="2.4590%" y="613" width="0.0122%" height="15" fill="rgb(224,130,29)" fg:x="12727" fg:w="63"/><text x="2.7090%" y="623.50"></text></g><g><title>Monitor::wait (74 samples, 0.01%)</title><rect x="2.4572%" y="693" width="0.0143%" height="15" fill="rgb(235,212,8)" fg:x="12718" fg:w="74"/><text x="2.7072%" y="703.50"></text></g><g><title>Monitor::IWait (71 samples, 0.01%)</title><rect x="2.4578%" y="677" width="0.0137%" height="15" fill="rgb(223,33,50)" fg:x="12721" fg:w="71"/><text x="2.7078%" y="687.50"></text></g><g><title>os::PlatformEvent::park (67 samples, 0.01%)</title><rect x="2.4586%" y="661" width="0.0129%" height="15" fill="rgb(219,149,13)" fg:x="12725" fg:w="67"/><text x="2.7086%" y="671.50"></text></g><g><title>TieredThresholdPolicy::select_task (61 samples, 0.01%)</title><rect x="2.4715%" y="693" width="0.0118%" height="15" fill="rgb(250,156,29)" fg:x="12792" fg:w="61"/><text x="2.7215%" y="703.50"></text></g><g><title>CompileQueue::get (167 samples, 0.03%)</title><rect x="2.4524%" y="709" width="0.0323%" height="15" fill="rgb(216,193,19)" fg:x="12693" fg:w="167"/><text x="2.7024%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,218 samples, 2.17%)</title><rect x="0.3209%" y="725" width="2.1674%" height="15" fill="rgb(216,135,14)" fg:x="1661" fg:w="11218"/><text x="0.5709%" y="735.50">C..</text></g><g><title>__GI___clone (11,259 samples, 2.18%)</title><rect x="0.3132%" y="805" width="2.1753%" height="15" fill="rgb(241,47,5)" fg:x="1621" fg:w="11259"/><text x="0.5632%" y="815.50">_..</text></g><g><title>start_thread (11,225 samples, 2.17%)</title><rect x="0.3198%" y="789" width="2.1688%" height="15" fill="rgb(233,42,35)" fg:x="1655" fg:w="11225"/><text x="0.5698%" y="799.50">s..</text></g><g><title>thread_native_entry (11,223 samples, 2.17%)</title><rect x="0.3201%" y="773" width="2.1684%" height="15" fill="rgb(231,13,6)" fg:x="1657" fg:w="11223"/><text x="0.5701%" y="783.50">t..</text></g><g><title>Thread::call_run (11,221 samples, 2.17%)</title><rect x="0.3205%" y="757" width="2.1680%" height="15" fill="rgb(207,181,40)" fg:x="1659" fg:w="11221"/><text x="0.5705%" y="767.50">T..</text></g><g><title>JavaThread::thread_main_inner (11,219 samples, 2.17%)</title><rect x="0.3209%" y="741" width="2.1676%" height="15" fill="rgb(254,173,49)" fg:x="1661" fg:w="11219"/><text x="0.5709%" y="751.50">J..</text></g><g><title>C1_CompilerThre (12,872 samples, 2.49%)</title><rect x="0.0085%" y="821" width="2.4870%" height="15" fill="rgb(221,1,38)" fg:x="44" fg:w="12872"/><text x="0.2585%" y="831.50">C1..</text></g><g><title>ProjNode::pinned (71 samples, 0.01%)</title><rect x="2.5440%" y="789" width="0.0137%" height="15" fill="rgb(206,124,46)" fg:x="13167" fg:w="71"/><text x="2.7940%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (75 samples, 0.01%)</title><rect x="2.5434%" y="805" width="0.0145%" height="15" fill="rgb(249,21,11)" fg:x="13164" fg:w="75"/><text x="2.7934%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (52 samples, 0.01%)</title><rect x="2.7180%" y="789" width="0.0100%" height="15" fill="rgb(222,201,40)" fg:x="14068" fg:w="52"/><text x="2.9680%" y="799.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.01%)</title><rect x="2.8135%" y="789" width="0.0128%" height="15" fill="rgb(235,61,29)" fg:x="14562" fg:w="66"/><text x="3.0635%" y="799.50"></text></g><g><title>Node::is_CFG (83 samples, 0.02%)</title><rect x="2.8425%" y="789" width="0.0160%" height="15" fill="rgb(219,207,3)" fg:x="14712" fg:w="83"/><text x="3.0925%" y="799.50"></text></g><g><title>_dl_update_slotinfo (237 samples, 0.05%)</title><rect x="3.1035%" y="789" width="0.0458%" height="15" fill="rgb(222,56,46)" fg:x="16063" fg:w="237"/><text x="3.3535%" y="799.50"></text></g><g><title>update_get_addr (78 samples, 0.02%)</title><rect x="3.2635%" y="789" width="0.0151%" height="15" fill="rgb(239,76,54)" fg:x="16891" fg:w="78"/><text x="3.5135%" y="799.50"></text></g><g><title>[anon] (3,696 samples, 0.71%)</title><rect x="2.5650%" y="805" width="0.7141%" height="15" fill="rgb(231,124,27)" fg:x="13276" fg:w="3696"/><text x="2.8150%" y="815.50"></text></g><g><title>ciBytecodeStream::get_method (65 samples, 0.01%)</title><rect x="3.3139%" y="517" width="0.0126%" height="15" fill="rgb(249,195,6)" fg:x="17152" fg:w="65"/><text x="3.5639%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (62 samples, 0.01%)</title><rect x="3.3145%" y="501" width="0.0120%" height="15" fill="rgb(237,174,47)" fg:x="17155" fg:w="62"/><text x="3.5645%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (66 samples, 0.01%)</title><rect x="3.3139%" y="533" width="0.0128%" height="15" fill="rgb(206,201,31)" fg:x="17152" fg:w="66"/><text x="3.5639%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (119 samples, 0.02%)</title><rect x="3.3058%" y="549" width="0.0230%" height="15" fill="rgb(231,57,52)" fg:x="17110" fg:w="119"/><text x="3.5558%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (144 samples, 0.03%)</title><rect x="3.3015%" y="565" width="0.0278%" height="15" fill="rgb(248,177,22)" fg:x="17088" fg:w="144"/><text x="3.5515%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (145 samples, 0.03%)</title><rect x="3.3015%" y="581" width="0.0280%" height="15" fill="rgb(215,211,37)" fg:x="17088" fg:w="145"/><text x="3.5515%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (156 samples, 0.03%)</title><rect x="3.3004%" y="645" width="0.0301%" height="15" fill="rgb(241,128,51)" fg:x="17082" fg:w="156"/><text x="3.5504%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (153 samples, 0.03%)</title><rect x="3.3010%" y="629" width="0.0296%" height="15" fill="rgb(227,165,31)" fg:x="17085" fg:w="153"/><text x="3.5510%" y="639.50"></text></g><g><title>ciTypeFlow::do_flow (153 samples, 0.03%)</title><rect x="3.3010%" y="613" width="0.0296%" height="15" fill="rgb(228,167,24)" fg:x="17085" fg:w="153"/><text x="3.5510%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (153 samples, 0.03%)</title><rect x="3.3010%" y="597" width="0.0296%" height="15" fill="rgb(228,143,12)" fg:x="17085" fg:w="153"/><text x="3.5510%" y="607.50"></text></g><g><title>Compile::call_generator (192 samples, 0.04%)</title><rect x="3.2940%" y="661" width="0.0371%" height="15" fill="rgb(249,149,8)" fg:x="17049" fg:w="192"/><text x="3.5440%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (53 samples, 0.01%)</title><rect x="3.3616%" y="437" width="0.0102%" height="15" fill="rgb(243,35,44)" fg:x="17399" fg:w="53"/><text x="3.6116%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.01%)</title><rect x="3.3616%" y="421" width="0.0102%" height="15" fill="rgb(246,89,9)" fg:x="17399" fg:w="53"/><text x="3.6116%" y="431.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (78 samples, 0.02%)</title><rect x="3.3587%" y="453" width="0.0151%" height="15" fill="rgb(233,213,13)" fg:x="17384" fg:w="78"/><text x="3.6087%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (102 samples, 0.02%)</title><rect x="3.3547%" y="485" width="0.0197%" height="15" fill="rgb(233,141,41)" fg:x="17363" fg:w="102"/><text x="3.6047%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (91 samples, 0.02%)</title><rect x="3.3568%" y="469" width="0.0176%" height="15" fill="rgb(239,167,4)" fg:x="17374" fg:w="91"/><text x="3.6068%" y="479.50"></text></g><g><title>InlineTree::ok_to_inline (148 samples, 0.03%)</title><rect x="3.3469%" y="549" width="0.0286%" height="15" fill="rgb(209,217,16)" fg:x="17323" fg:w="148"/><text x="3.5969%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (120 samples, 0.02%)</title><rect x="3.3524%" y="533" width="0.0232%" height="15" fill="rgb(219,88,35)" fg:x="17351" fg:w="120"/><text x="3.6024%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (110 samples, 0.02%)</title><rect x="3.3543%" y="517" width="0.0213%" height="15" fill="rgb(220,193,23)" fg:x="17361" fg:w="110"/><text x="3.6043%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (110 samples, 0.02%)</title><rect x="3.3543%" y="501" width="0.0213%" height="15" fill="rgb(230,90,52)" fg:x="17361" fg:w="110"/><text x="3.6043%" y="511.50"></text></g><g><title>Compile::call_generator (183 samples, 0.04%)</title><rect x="3.3415%" y="565" width="0.0354%" height="15" fill="rgb(252,106,19)" fg:x="17295" fg:w="183"/><text x="3.5915%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (68 samples, 0.01%)</title><rect x="3.4161%" y="453" width="0.0131%" height="15" fill="rgb(206,74,20)" fg:x="17681" fg:w="68"/><text x="3.6661%" y="463.50"></text></g><g><title>ciMethod::get_flow_analysis (56 samples, 0.01%)</title><rect x="3.4184%" y="437" width="0.0108%" height="15" fill="rgb(230,138,44)" fg:x="17693" fg:w="56"/><text x="3.6684%" y="447.50"></text></g><g><title>Compile::call_generator (86 samples, 0.02%)</title><rect x="3.4138%" y="469" width="0.0166%" height="15" fill="rgb(235,182,43)" fg:x="17669" fg:w="86"/><text x="3.6638%" y="479.50"></text></g><g><title>ParseGenerator::generate (89 samples, 0.02%)</title><rect x="3.4665%" y="373" width="0.0172%" height="15" fill="rgb(242,16,51)" fg:x="17942" fg:w="89"/><text x="3.7165%" y="383.50"></text></g><g><title>Parse::Parse (89 samples, 0.02%)</title><rect x="3.4665%" y="357" width="0.0172%" height="15" fill="rgb(248,9,4)" fg:x="17942" fg:w="89"/><text x="3.7165%" y="367.50"></text></g><g><title>Parse::do_call (182 samples, 0.04%)</title><rect x="3.4559%" y="389" width="0.0352%" height="15" fill="rgb(210,31,22)" fg:x="17887" fg:w="182"/><text x="3.7059%" y="399.50"></text></g><g><title>Parse::do_field_access (57 samples, 0.01%)</title><rect x="3.4920%" y="389" width="0.0110%" height="15" fill="rgb(239,54,39)" fg:x="18074" fg:w="57"/><text x="3.7420%" y="399.50"></text></g><g><title>Parse::do_one_block (340 samples, 0.07%)</title><rect x="3.4484%" y="421" width="0.0657%" height="15" fill="rgb(230,99,41)" fg:x="17848" fg:w="340"/><text x="3.6984%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (333 samples, 0.06%)</title><rect x="3.4497%" y="405" width="0.0643%" height="15" fill="rgb(253,106,12)" fg:x="17855" fg:w="333"/><text x="3.6997%" y="415.50"></text></g><g><title>Parse::do_all_blocks (352 samples, 0.07%)</title><rect x="3.4484%" y="437" width="0.0680%" height="15" fill="rgb(213,46,41)" fg:x="17848" fg:w="352"/><text x="3.6984%" y="447.50"></text></g><g><title>ParseGenerator::generate (412 samples, 0.08%)</title><rect x="3.4408%" y="469" width="0.0796%" height="15" fill="rgb(215,133,35)" fg:x="17809" fg:w="412"/><text x="3.6908%" y="479.50"></text></g><g><title>Parse::Parse (412 samples, 0.08%)</title><rect x="3.4408%" y="453" width="0.0796%" height="15" fill="rgb(213,28,5)" fg:x="17809" fg:w="412"/><text x="3.6908%" y="463.50"></text></g><g><title>Parse::do_call (628 samples, 0.12%)</title><rect x="3.4130%" y="485" width="0.1213%" height="15" fill="rgb(215,77,49)" fg:x="17665" fg:w="628"/><text x="3.6630%" y="495.50"></text></g><g><title>Parse::do_put_xxx (55 samples, 0.01%)</title><rect x="3.5471%" y="469" width="0.0106%" height="15" fill="rgb(248,100,22)" fg:x="18359" fg:w="55"/><text x="3.7971%" y="479.50"></text></g><g><title>Parse::do_field_access (124 samples, 0.02%)</title><rect x="3.5359%" y="485" width="0.0240%" height="15" fill="rgb(208,67,9)" fg:x="18301" fg:w="124"/><text x="3.7859%" y="495.50"></text></g><g><title>Parse::do_one_block (912 samples, 0.18%)</title><rect x="3.4028%" y="517" width="0.1762%" height="15" fill="rgb(219,133,21)" fg:x="17612" fg:w="912"/><text x="3.6528%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (898 samples, 0.17%)</title><rect x="3.4055%" y="501" width="0.1735%" height="15" fill="rgb(246,46,29)" fg:x="17626" fg:w="898"/><text x="3.6555%" y="511.50"></text></g><g><title>Parse::do_all_blocks (928 samples, 0.18%)</title><rect x="3.4012%" y="533" width="0.1793%" height="15" fill="rgb(246,185,52)" fg:x="17604" fg:w="928"/><text x="3.6512%" y="543.50"></text></g><g><title>ParseGenerator::generate (1,004 samples, 0.19%)</title><rect x="3.3920%" y="565" width="0.1940%" height="15" fill="rgb(252,136,11)" fg:x="17556" fg:w="1004"/><text x="3.6420%" y="575.50"></text></g><g><title>Parse::Parse (1,004 samples, 0.19%)</title><rect x="3.3920%" y="549" width="0.1940%" height="15" fill="rgb(219,138,53)" fg:x="17556" fg:w="1004"/><text x="3.6420%" y="559.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="3.5970%" y="453" width="0.0110%" height="15" fill="rgb(211,51,23)" fg:x="18617" fg:w="57"/><text x="3.8470%" y="463.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="3.5970%" y="437" width="0.0110%" height="15" fill="rgb(247,221,28)" fg:x="18617" fg:w="57"/><text x="3.8470%" y="447.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="3.5917%" y="469" width="0.0199%" height="15" fill="rgb(251,222,45)" fg:x="18590" fg:w="103"/><text x="3.8417%" y="479.50"></text></g><g><title>Parse::do_one_block (132 samples, 0.03%)</title><rect x="3.5912%" y="501" width="0.0255%" height="15" fill="rgb(217,162,53)" fg:x="18587" fg:w="132"/><text x="3.8412%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (131 samples, 0.03%)</title><rect x="3.5913%" y="485" width="0.0253%" height="15" fill="rgb(229,93,14)" fg:x="18588" fg:w="131"/><text x="3.8413%" y="495.50"></text></g><g><title>Parse::do_all_blocks (135 samples, 0.03%)</title><rect x="3.5912%" y="517" width="0.0261%" height="15" fill="rgb(209,67,49)" fg:x="18587" fg:w="135"/><text x="3.8412%" y="527.50"></text></g><g><title>ParseGenerator::generate (149 samples, 0.03%)</title><rect x="3.5900%" y="549" width="0.0288%" height="15" fill="rgb(213,87,29)" fg:x="18581" fg:w="149"/><text x="3.8400%" y="559.50"></text></g><g><title>Parse::Parse (149 samples, 0.03%)</title><rect x="3.5900%" y="533" width="0.0288%" height="15" fill="rgb(205,151,52)" fg:x="18581" fg:w="149"/><text x="3.8400%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (210 samples, 0.04%)</title><rect x="3.5859%" y="565" width="0.0406%" height="15" fill="rgb(253,215,39)" fg:x="18560" fg:w="210"/><text x="3.8359%" y="575.50"></text></g><g><title>Parse::do_call (1,505 samples, 0.29%)</title><rect x="3.3415%" y="581" width="0.2908%" height="15" fill="rgb(221,220,41)" fg:x="17295" fg:w="1505"/><text x="3.5915%" y="591.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="3.6352%" y="565" width="0.0108%" height="15" fill="rgb(218,133,21)" fg:x="18815" fg:w="56"/><text x="3.8852%" y="575.50"></text></g><g><title>GraphKit::access_store_at (61 samples, 0.01%)</title><rect x="3.6460%" y="549" width="0.0118%" height="15" fill="rgb(221,193,43)" fg:x="18871" fg:w="61"/><text x="3.8960%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (61 samples, 0.01%)</title><rect x="3.6460%" y="533" width="0.0118%" height="15" fill="rgb(240,128,52)" fg:x="18871" fg:w="61"/><text x="3.8960%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (56 samples, 0.01%)</title><rect x="3.6470%" y="517" width="0.0108%" height="15" fill="rgb(253,114,12)" fg:x="18876" fg:w="56"/><text x="3.8970%" y="527.50"></text></g><g><title>Parse::do_put_xxx (64 samples, 0.01%)</title><rect x="3.6460%" y="565" width="0.0124%" height="15" fill="rgb(215,223,47)" fg:x="18871" fg:w="64"/><text x="3.8960%" y="575.50"></text></g><g><title>Parse::do_field_access (130 samples, 0.03%)</title><rect x="3.6340%" y="581" width="0.0251%" height="15" fill="rgb(248,225,23)" fg:x="18809" fg:w="130"/><text x="3.8840%" y="591.50"></text></g><g><title>Parse::do_one_block (1,736 samples, 0.34%)</title><rect x="3.3350%" y="613" width="0.3354%" height="15" fill="rgb(250,108,0)" fg:x="17261" fg:w="1736"/><text x="3.5850%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (1,733 samples, 0.33%)</title><rect x="3.3355%" y="597" width="0.3348%" height="15" fill="rgb(228,208,7)" fg:x="17264" fg:w="1733"/><text x="3.5855%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,751 samples, 0.34%)</title><rect x="3.3325%" y="661" width="0.3383%" height="15" fill="rgb(244,45,10)" fg:x="17248" fg:w="1751"/><text x="3.5825%" y="671.50"></text></g><g><title>Parse::Parse (1,751 samples, 0.34%)</title><rect x="3.3325%" y="645" width="0.3383%" height="15" fill="rgb(207,125,25)" fg:x="17248" fg:w="1751"/><text x="3.5825%" y="655.50"></text></g><g><title>Parse::do_all_blocks (1,740 samples, 0.34%)</title><rect x="3.3346%" y="629" width="0.3362%" height="15" fill="rgb(210,195,18)" fg:x="17259" fg:w="1740"/><text x="3.5846%" y="639.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.01%)</title><rect x="3.6903%" y="453" width="0.0149%" height="15" fill="rgb(249,80,12)" fg:x="19100" fg:w="77"/><text x="3.9403%" y="463.50"></text></g><g><title>Parse::Parse (76 samples, 0.01%)</title><rect x="3.6905%" y="437" width="0.0147%" height="15" fill="rgb(221,65,9)" fg:x="19101" fg:w="76"/><text x="3.9405%" y="447.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.01%)</title><rect x="3.6914%" y="421" width="0.0137%" height="15" fill="rgb(235,49,36)" fg:x="19106" fg:w="71"/><text x="3.9414%" y="431.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.01%)</title><rect x="3.6914%" y="405" width="0.0137%" height="15" fill="rgb(225,32,20)" fg:x="19106" fg:w="71"/><text x="3.9414%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="3.6918%" y="389" width="0.0133%" height="15" fill="rgb(215,141,46)" fg:x="19108" fg:w="69"/><text x="3.9418%" y="399.50"></text></g><g><title>Parse::do_call (109 samples, 0.02%)</title><rect x="3.6864%" y="469" width="0.0211%" height="15" fill="rgb(250,160,47)" fg:x="19080" fg:w="109"/><text x="3.9364%" y="479.50"></text></g><g><title>Parse::do_one_block (158 samples, 0.03%)</title><rect x="3.6843%" y="501" width="0.0305%" height="15" fill="rgb(216,222,40)" fg:x="19069" fg:w="158"/><text x="3.9343%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="3.6847%" y="485" width="0.0301%" height="15" fill="rgb(234,217,39)" fg:x="19071" fg:w="156"/><text x="3.9347%" y="495.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.03%)</title><rect x="3.6843%" y="517" width="0.0309%" height="15" fill="rgb(207,178,40)" fg:x="19069" fg:w="160"/><text x="3.9343%" y="527.50"></text></g><g><title>ParseGenerator::generate (186 samples, 0.04%)</title><rect x="3.6810%" y="549" width="0.0359%" height="15" fill="rgb(221,136,13)" fg:x="19052" fg:w="186"/><text x="3.9310%" y="559.50"></text></g><g><title>Parse::Parse (185 samples, 0.04%)</title><rect x="3.6812%" y="533" width="0.0357%" height="15" fill="rgb(249,199,10)" fg:x="19053" fg:w="185"/><text x="3.9312%" y="543.50"></text></g><g><title>Parse::do_call (265 samples, 0.05%)</title><rect x="3.6737%" y="565" width="0.0512%" height="15" fill="rgb(249,222,13)" fg:x="19014" fg:w="265"/><text x="3.9237%" y="575.50"></text></g><g><title>Parse::do_all_blocks (315 samples, 0.06%)</title><rect x="3.6723%" y="613" width="0.0609%" height="15" fill="rgb(244,185,38)" fg:x="19007" fg:w="315"/><text x="3.9223%" y="623.50"></text></g><g><title>Parse::do_one_block (315 samples, 0.06%)</title><rect x="3.6723%" y="597" width="0.0609%" height="15" fill="rgb(236,202,9)" fg:x="19007" fg:w="315"/><text x="3.9223%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (312 samples, 0.06%)</title><rect x="3.6729%" y="581" width="0.0603%" height="15" fill="rgb(250,229,37)" fg:x="19010" fg:w="312"/><text x="3.9229%" y="591.50"></text></g><g><title>ParseGenerator::generate (325 samples, 0.06%)</title><rect x="3.6713%" y="645" width="0.0628%" height="15" fill="rgb(206,174,23)" fg:x="19002" fg:w="325"/><text x="3.9213%" y="655.50"></text></g><g><title>Parse::Parse (325 samples, 0.06%)</title><rect x="3.6713%" y="629" width="0.0628%" height="15" fill="rgb(211,33,43)" fg:x="19002" fg:w="325"/><text x="3.9213%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (379 samples, 0.07%)</title><rect x="3.6708%" y="661" width="0.0732%" height="15" fill="rgb(245,58,50)" fg:x="18999" fg:w="379"/><text x="3.9208%" y="671.50"></text></g><g><title>Parse::do_call (2,343 samples, 0.45%)</title><rect x="3.2940%" y="677" width="0.4527%" height="15" fill="rgb(244,68,36)" fg:x="17049" fg:w="2343"/><text x="3.5440%" y="687.50"></text></g><g><title>C2Compiler::compile_method (2,398 samples, 0.46%)</title><rect x="3.2859%" y="789" width="0.4633%" height="15" fill="rgb(232,229,15)" fg:x="17007" fg:w="2398"/><text x="3.5359%" y="799.50"></text></g><g><title>Compile::Compile (2,398 samples, 0.46%)</title><rect x="3.2859%" y="773" width="0.4633%" height="15" fill="rgb(254,30,23)" fg:x="17007" fg:w="2398"/><text x="3.5359%" y="783.50"></text></g><g><title>ParseGenerator::generate (2,356 samples, 0.46%)</title><rect x="3.2940%" y="757" width="0.4552%" height="15" fill="rgb(235,160,14)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="767.50"></text></g><g><title>Parse::Parse (2,356 samples, 0.46%)</title><rect x="3.2940%" y="741" width="0.4552%" height="15" fill="rgb(212,155,44)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="751.50"></text></g><g><title>Parse::do_all_blocks (2,356 samples, 0.46%)</title><rect x="3.2940%" y="725" width="0.4552%" height="15" fill="rgb(226,2,50)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="735.50"></text></g><g><title>Parse::do_one_block (2,356 samples, 0.46%)</title><rect x="3.2940%" y="709" width="0.4552%" height="15" fill="rgb(234,177,6)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (2,356 samples, 0.46%)</title><rect x="3.2940%" y="693" width="0.4552%" height="15" fill="rgb(217,24,9)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="703.50"></text></g><g><title>PhaseCFG::sched_call (203 samples, 0.04%)</title><rect x="3.7705%" y="725" width="0.0392%" height="15" fill="rgb(220,13,46)" fg:x="19515" fg:w="203"/><text x="4.0205%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (204 samples, 0.04%)</title><rect x="3.7705%" y="741" width="0.0394%" height="15" fill="rgb(239,221,27)" fg:x="19515" fg:w="204"/><text x="4.0205%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (254 samples, 0.05%)</title><rect x="3.7621%" y="773" width="0.0491%" height="15" fill="rgb(222,198,25)" fg:x="19472" fg:w="254"/><text x="4.0121%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (254 samples, 0.05%)</title><rect x="3.7621%" y="757" width="0.0491%" height="15" fill="rgb(211,99,13)" fg:x="19472" fg:w="254"/><text x="4.0121%" y="767.50"></text></g><g><title>Compile::Code_Gen (367 samples, 0.07%)</title><rect x="3.7500%" y="789" width="0.0709%" height="15" fill="rgb(232,111,31)" fg:x="19409" fg:w="367"/><text x="4.0000%" y="799.50"></text></g><g><title>OopFlow::compute_reach (206 samples, 0.04%)</title><rect x="3.9316%" y="725" width="0.0398%" height="15" fill="rgb(245,82,37)" fg:x="20349" fg:w="206"/><text x="4.1816%" y="735.50"></text></g><g><title>OopFlow::build_oop_map (112 samples, 0.02%)</title><rect x="3.9498%" y="709" width="0.0216%" height="15" fill="rgb(227,149,46)" fg:x="20443" fg:w="112"/><text x="4.1998%" y="719.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (103 samples, 0.02%)</title><rect x="3.9727%" y="725" width="0.0199%" height="15" fill="rgb(218,36,50)" fg:x="20562" fg:w="103"/><text x="4.2227%" y="735.50"></text></g><g><title>Compile::BuildOopMaps (882 samples, 0.17%)</title><rect x="3.8228%" y="741" width="0.1704%" height="15" fill="rgb(226,80,48)" fg:x="19786" fg:w="882"/><text x="4.0728%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (162 samples, 0.03%)</title><rect x="4.0357%" y="709" width="0.0313%" height="15" fill="rgb(238,224,15)" fg:x="20888" fg:w="162"/><text x="4.2857%" y="719.50"></text></g><g><title>Compile::shorten_branches (360 samples, 0.07%)</title><rect x="4.0037%" y="725" width="0.0696%" height="15" fill="rgb(241,136,10)" fg:x="20722" fg:w="360"/><text x="4.2537%" y="735.50"></text></g><g><title>Compile::init_buffer (416 samples, 0.08%)</title><rect x="3.9932%" y="741" width="0.0804%" height="15" fill="rgb(208,32,45)" fg:x="20668" fg:w="416"/><text x="4.2432%" y="751.50"></text></g><g><title>Compile::Output (1,308 samples, 0.25%)</title><rect x="3.8215%" y="757" width="0.2527%" height="15" fill="rgb(207,135,9)" fg:x="19779" fg:w="1308"/><text x="4.0715%" y="767.50"></text></g><g><title>Compile::FillLocArray (58 samples, 0.01%)</title><rect x="4.1101%" y="725" width="0.0112%" height="15" fill="rgb(206,86,44)" fg:x="21273" fg:w="58"/><text x="4.3601%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (72 samples, 0.01%)</title><rect x="4.1219%" y="725" width="0.0139%" height="15" fill="rgb(245,177,15)" fg:x="21334" fg:w="72"/><text x="4.3719%" y="735.50"></text></g><g><title>Compile::Process_OopMap_Node (257 samples, 0.05%)</title><rect x="4.1051%" y="741" width="0.0497%" height="15" fill="rgb(206,64,50)" fg:x="21247" fg:w="257"/><text x="4.3551%" y="751.50"></text></g><g><title>Compile::valid_bundle_info (70 samples, 0.01%)</title><rect x="4.1561%" y="741" width="0.0135%" height="15" fill="rgb(234,36,40)" fg:x="21511" fg:w="70"/><text x="4.4061%" y="751.50"></text></g><g><title>Compile::fill_buffer (611 samples, 0.12%)</title><rect x="4.0744%" y="757" width="0.1181%" height="15" fill="rgb(213,64,8)" fg:x="21088" fg:w="611"/><text x="4.3244%" y="767.50"></text></g><g><title>Matcher::find_shared (396 samples, 0.08%)</title><rect x="4.2090%" y="741" width="0.0765%" height="15" fill="rgb(210,75,36)" fg:x="21785" fg:w="396"/><text x="4.4590%" y="751.50"></text></g><g><title>Arena::contains (645 samples, 0.12%)</title><rect x="4.3582%" y="725" width="0.1246%" height="15" fill="rgb(229,88,21)" fg:x="22557" fg:w="645"/><text x="4.6082%" y="735.50"></text></g><g><title>Matcher::match_tree (102 samples, 0.02%)</title><rect x="4.4940%" y="709" width="0.0197%" height="15" fill="rgb(252,204,47)" fg:x="23260" fg:w="102"/><text x="4.7440%" y="719.50"></text></g><g><title>Matcher::match_sfpt (138 samples, 0.03%)</title><rect x="4.4888%" y="725" width="0.0267%" height="15" fill="rgb(208,77,27)" fg:x="23233" fg:w="138"/><text x="4.7388%" y="735.50"></text></g><g><title>Matcher::Label_Root (62 samples, 0.01%)</title><rect x="4.6005%" y="661" width="0.0120%" height="15" fill="rgb(221,76,26)" fg:x="23811" fg:w="62"/><text x="4.8505%" y="671.50"></text></g><g><title>State::DFA (59 samples, 0.01%)</title><rect x="4.6125%" y="661" width="0.0114%" height="15" fill="rgb(225,139,18)" fg:x="23873" fg:w="59"/><text x="4.8625%" y="671.50"></text></g><g><title>Matcher::Label_Root (160 samples, 0.03%)</title><rect x="4.5939%" y="677" width="0.0309%" height="15" fill="rgb(230,137,11)" fg:x="23777" fg:w="160"/><text x="4.8439%" y="687.50"></text></g><g><title>State::DFA (88 samples, 0.02%)</title><rect x="4.6268%" y="677" width="0.0170%" height="15" fill="rgb(212,28,1)" fg:x="23947" fg:w="88"/><text x="4.8768%" y="687.50"></text></g><g><title>Matcher::Label_Root (358 samples, 0.07%)</title><rect x="4.5771%" y="693" width="0.0692%" height="15" fill="rgb(248,164,17)" fg:x="23690" fg:w="358"/><text x="4.8271%" y="703.50"></text></g><g><title>State::DFA (59 samples, 0.01%)</title><rect x="4.6472%" y="693" width="0.0114%" height="15" fill="rgb(222,171,42)" fg:x="24053" fg:w="59"/><text x="4.8972%" y="703.50"></text></g><g><title>Matcher::Label_Root (545 samples, 0.11%)</title><rect x="4.5589%" y="709" width="0.1053%" height="15" fill="rgb(243,84,45)" fg:x="23596" fg:w="545"/><text x="4.8089%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (79 samples, 0.02%)</title><rect x="4.6733%" y="661" width="0.0153%" height="15" fill="rgb(252,49,23)" fg:x="24188" fg:w="79"/><text x="4.9233%" y="671.50"></text></g><g><title>Matcher::ReduceInst (124 samples, 0.02%)</title><rect x="4.6716%" y="677" width="0.0240%" height="15" fill="rgb(215,19,7)" fg:x="24179" fg:w="124"/><text x="4.9216%" y="687.50"></text></g><g><title>Matcher::ReduceInst_Interior (199 samples, 0.04%)</title><rect x="4.6696%" y="693" width="0.0384%" height="15" fill="rgb(238,81,41)" fg:x="24169" fg:w="199"/><text x="4.9196%" y="703.50"></text></g><g><title>State::MachNodeGenerator (65 samples, 0.01%)</title><rect x="4.7133%" y="693" width="0.0126%" height="15" fill="rgb(210,199,37)" fg:x="24395" fg:w="65"/><text x="4.9633%" y="703.50"></text></g><g><title>Matcher::ReduceInst (343 samples, 0.07%)</title><rect x="4.6642%" y="709" width="0.0663%" height="15" fill="rgb(244,192,49)" fg:x="24141" fg:w="343"/><text x="4.9142%" y="719.50"></text></g><g><title>Matcher::match_tree (1,129 samples, 0.22%)</title><rect x="4.5155%" y="725" width="0.2181%" height="15" fill="rgb(226,211,11)" fg:x="23371" fg:w="1129"/><text x="4.7655%" y="735.50"></text></g><g><title>Node::clone (93 samples, 0.02%)</title><rect x="4.7351%" y="725" width="0.0180%" height="15" fill="rgb(236,162,54)" fg:x="24508" fg:w="93"/><text x="4.9851%" y="735.50"></text></g><g><title>Node::out_grow (52 samples, 0.01%)</title><rect x="4.7531%" y="725" width="0.0100%" height="15" fill="rgb(220,229,9)" fg:x="24601" fg:w="52"/><text x="5.0031%" y="735.50"></text></g><g><title>Matcher::xform (2,465 samples, 0.48%)</title><rect x="4.2875%" y="741" width="0.4763%" height="15" fill="rgb(250,87,22)" fg:x="22191" fg:w="2465"/><text x="4.5375%" y="751.50"></text></g><g><title>Matcher::match (2,960 samples, 0.57%)</title><rect x="4.1942%" y="757" width="0.5719%" height="15" fill="rgb(239,43,17)" fg:x="21708" fg:w="2960"/><text x="4.4442%" y="767.50"></text></g><g><title>PhaseBlockLayout::find_edges (75 samples, 0.01%)</title><rect x="4.7664%" y="741" width="0.0145%" height="15" fill="rgb(231,177,25)" fg:x="24670" fg:w="75"/><text x="5.0164%" y="751.50"></text></g><g><title>PhaseBlockLayout::grow_traces (70 samples, 0.01%)</title><rect x="4.7809%" y="741" width="0.0135%" height="15" fill="rgb(219,179,1)" fg:x="24745" fg:w="70"/><text x="5.0309%" y="751.50"></text></g><g><title>__GI___qsort_r (54 samples, 0.01%)</title><rect x="4.7840%" y="725" width="0.0104%" height="15" fill="rgb(238,219,53)" fg:x="24761" fg:w="54"/><text x="5.0340%" y="735.50"></text></g><g><title>msort_with_tmp (52 samples, 0.01%)</title><rect x="4.7844%" y="709" width="0.0100%" height="15" fill="rgb(232,167,36)" fg:x="24763" fg:w="52"/><text x="5.0344%" y="719.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (184 samples, 0.04%)</title><rect x="4.7661%" y="757" width="0.0356%" height="15" fill="rgb(244,19,51)" fg:x="24668" fg:w="184"/><text x="5.0161%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (142 samples, 0.03%)</title><rect x="4.8016%" y="757" width="0.0274%" height="15" fill="rgb(224,6,22)" fg:x="24852" fg:w="142"/><text x="5.0516%" y="767.50"></text></g><g><title>PhaseCFG::build_cfg (137 samples, 0.03%)</title><rect x="4.8026%" y="741" width="0.0265%" height="15" fill="rgb(224,145,5)" fg:x="24857" fg:w="137"/><text x="5.0526%" y="751.50"></text></g><g><title>PhaseCFG::build_dominator_tree (90 samples, 0.02%)</title><rect x="4.8294%" y="741" width="0.0174%" height="15" fill="rgb(234,130,49)" fg:x="24996" fg:w="90"/><text x="5.0794%" y="751.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (74 samples, 0.01%)</title><rect x="4.8468%" y="741" width="0.0143%" height="15" fill="rgb(254,6,2)" fg:x="25086" fg:w="74"/><text x="5.0968%" y="751.50"></text></g><g><title>PhaseCFG::implicit_null_check (57 samples, 0.01%)</title><rect x="4.9380%" y="725" width="0.0110%" height="15" fill="rgb(208,96,46)" fg:x="25558" fg:w="57"/><text x="5.1880%" y="735.50"></text></g><g><title>Node_Backward_Iterator::next (294 samples, 0.06%)</title><rect x="4.9819%" y="709" width="0.0568%" height="15" fill="rgb(239,3,39)" fg:x="25785" fg:w="294"/><text x="5.2319%" y="719.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (110 samples, 0.02%)</title><rect x="5.0387%" y="709" width="0.0213%" height="15" fill="rgb(233,210,1)" fg:x="26079" fg:w="110"/><text x="5.2887%" y="719.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (173 samples, 0.03%)</title><rect x="5.0599%" y="709" width="0.0334%" height="15" fill="rgb(244,137,37)" fg:x="26189" fg:w="173"/><text x="5.3099%" y="719.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (54 samples, 0.01%)</title><rect x="5.0933%" y="709" width="0.0104%" height="15" fill="rgb(240,136,2)" fg:x="26362" fg:w="54"/><text x="5.3433%" y="719.50"></text></g><g><title>PhaseCFG::schedule_late (762 samples, 0.15%)</title><rect x="4.9575%" y="725" width="0.1472%" height="15" fill="rgb(239,18,37)" fg:x="25659" fg:w="762"/><text x="5.2075%" y="735.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (52 samples, 0.01%)</title><rect x="5.1635%" y="709" width="0.0100%" height="15" fill="rgb(218,185,22)" fg:x="26725" fg:w="52"/><text x="5.4135%" y="719.50"></text></g><g><title>PhaseCFG::select (97 samples, 0.02%)</title><rect x="5.1786%" y="709" width="0.0187%" height="15" fill="rgb(225,218,4)" fg:x="26803" fg:w="97"/><text x="5.4286%" y="719.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (72 samples, 0.01%)</title><rect x="5.1973%" y="709" width="0.0139%" height="15" fill="rgb(230,182,32)" fg:x="26900" fg:w="72"/><text x="5.4473%" y="719.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (59 samples, 0.01%)</title><rect x="5.2112%" y="709" width="0.0114%" height="15" fill="rgb(242,56,43)" fg:x="26972" fg:w="59"/><text x="5.4612%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (622 samples, 0.12%)</title><rect x="5.1047%" y="725" width="0.1202%" height="15" fill="rgb(233,99,24)" fg:x="26421" fg:w="622"/><text x="5.3547%" y="735.50"></text></g><g><title>RegMask::Size (99 samples, 0.02%)</title><rect x="5.2883%" y="709" width="0.0191%" height="15" fill="rgb(234,209,42)" fg:x="27371" fg:w="99"/><text x="5.5383%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (463 samples, 0.09%)</title><rect x="5.2317%" y="725" width="0.0895%" height="15" fill="rgb(227,7,12)" fg:x="27078" fg:w="463"/><text x="5.4817%" y="735.50"></text></g><g><title>PhaseChaitin::mark_ssa (107 samples, 0.02%)</title><rect x="5.3211%" y="725" width="0.0207%" height="15" fill="rgb(245,203,43)" fg:x="27541" fg:w="107"/><text x="5.5711%" y="735.50"></text></g><g><title>IndexSet::initialize (112 samples, 0.02%)</title><rect x="5.3538%" y="709" width="0.0216%" height="15" fill="rgb(238,205,33)" fg:x="27710" fg:w="112"/><text x="5.6038%" y="719.50"></text></g><g><title>PhaseIFG::init (212 samples, 0.04%)</title><rect x="5.3418%" y="725" width="0.0410%" height="15" fill="rgb(231,56,7)" fg:x="27648" fg:w="212"/><text x="5.5918%" y="735.50"></text></g><g><title>IndexSet::initialize (68 samples, 0.01%)</title><rect x="5.4363%" y="709" width="0.0131%" height="15" fill="rgb(244,186,29)" fg:x="28137" fg:w="68"/><text x="5.6863%" y="719.50"></text></g><g><title>PhaseLive::add_livein (180 samples, 0.03%)</title><rect x="5.4502%" y="709" width="0.0348%" height="15" fill="rgb(234,111,31)" fg:x="28209" fg:w="180"/><text x="5.7002%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (59 samples, 0.01%)</title><rect x="5.4736%" y="693" width="0.0114%" height="15" fill="rgb(241,149,10)" fg:x="28330" fg:w="59"/><text x="5.7236%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (78 samples, 0.02%)</title><rect x="5.5188%" y="693" width="0.0151%" height="15" fill="rgb(249,206,44)" fg:x="28564" fg:w="78"/><text x="5.7688%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (96 samples, 0.02%)</title><rect x="5.5399%" y="693" width="0.0185%" height="15" fill="rgb(251,153,30)" fg:x="28673" fg:w="96"/><text x="5.7899%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (389 samples, 0.08%)</title><rect x="5.4850%" y="709" width="0.0752%" height="15" fill="rgb(239,152,38)" fg:x="28389" fg:w="389"/><text x="5.7350%" y="719.50"></text></g><g><title>PhaseLive::compute (925 samples, 0.18%)</title><rect x="5.3828%" y="725" width="0.1787%" height="15" fill="rgb(249,139,47)" fg:x="27860" fg:w="925"/><text x="5.6328%" y="735.50"></text></g><g><title>PhaseCFG::global_code_motion (3,650 samples, 0.71%)</title><rect x="4.8611%" y="741" width="0.7052%" height="15" fill="rgb(244,64,35)" fg:x="25160" fg:w="3650"/><text x="5.1111%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,817 samples, 0.74%)</title><rect x="4.8290%" y="757" width="0.7375%" height="15" fill="rgb(216,46,15)" fg:x="24994" fg:w="3817"/><text x="5.0790%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (75 samples, 0.01%)</title><rect x="5.5717%" y="757" width="0.0145%" height="15" fill="rgb(250,74,19)" fg:x="28838" fg:w="75"/><text x="5.8217%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,053 samples, 0.20%)</title><rect x="5.6140%" y="741" width="0.2034%" height="15" fill="rgb(249,42,33)" fg:x="29057" fg:w="1053"/><text x="5.8640%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (357 samples, 0.07%)</title><rect x="5.9437%" y="725" width="0.0690%" height="15" fill="rgb(242,149,17)" fg:x="30763" fg:w="357"/><text x="6.1937%" y="735.50"></text></g><g><title>PhaseChaitin::bias_color (174 samples, 0.03%)</title><rect x="6.0126%" y="725" width="0.0336%" height="15" fill="rgb(244,29,21)" fg:x="31120" fg:w="174"/><text x="6.2626%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (58 samples, 0.01%)</title><rect x="6.1174%" y="709" width="0.0112%" height="15" fill="rgb(220,130,37)" fg:x="31662" fg:w="58"/><text x="6.3674%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (69 samples, 0.01%)</title><rect x="6.1286%" y="709" width="0.0133%" height="15" fill="rgb(211,67,2)" fg:x="31720" fg:w="69"/><text x="6.3786%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (437 samples, 0.08%)</title><rect x="6.1419%" y="709" width="0.0844%" height="15" fill="rgb(235,68,52)" fg:x="31789" fg:w="437"/><text x="6.3919%" y="719.50"></text></g><g><title>PhaseIFG::re_insert (939 samples, 0.18%)</title><rect x="6.0482%" y="725" width="0.1814%" height="15" fill="rgb(246,142,3)" fg:x="31304" fg:w="939"/><text x="6.2982%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (174 samples, 0.03%)</title><rect x="6.2296%" y="725" width="0.0336%" height="15" fill="rgb(241,25,7)" fg:x="32243" fg:w="174"/><text x="6.4796%" y="735.50"></text></g><g><title>PhaseChaitin::Select (2,315 samples, 0.45%)</title><rect x="5.8175%" y="741" width="0.4473%" height="15" fill="rgb(242,119,39)" fg:x="30110" fg:w="2315"/><text x="6.0675%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (338 samples, 0.07%)</title><rect x="6.3229%" y="725" width="0.0653%" height="15" fill="rgb(241,98,45)" fg:x="32726" fg:w="338"/><text x="6.5729%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (58 samples, 0.01%)</title><rect x="6.4817%" y="709" width="0.0112%" height="15" fill="rgb(254,28,30)" fg:x="33548" fg:w="58"/><text x="6.7317%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (464 samples, 0.09%)</title><rect x="6.4929%" y="709" width="0.0896%" height="15" fill="rgb(241,142,54)" fg:x="33606" fg:w="464"/><text x="6.7429%" y="719.50"></text></g><g><title>PhaseIFG::remove_node (1,007 samples, 0.19%)</title><rect x="6.3882%" y="725" width="0.1946%" height="15" fill="rgb(222,85,15)" fg:x="33064" fg:w="1007"/><text x="6.6382%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,647 samples, 0.32%)</title><rect x="6.2648%" y="741" width="0.3182%" height="15" fill="rgb(210,85,47)" fg:x="32425" fg:w="1647"/><text x="6.5148%" y="751.50"></text></g><g><title>MachNode::rematerialize (169 samples, 0.03%)</title><rect x="7.0961%" y="725" width="0.0327%" height="15" fill="rgb(224,206,25)" fg:x="36728" fg:w="169"/><text x="7.3461%" y="735.50"></text></g><g><title>Node::rematerialize (122 samples, 0.02%)</title><rect x="7.1357%" y="725" width="0.0236%" height="15" fill="rgb(243,201,19)" fg:x="36933" fg:w="122"/><text x="7.3857%" y="735.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (100 samples, 0.02%)</title><rect x="7.1991%" y="709" width="0.0193%" height="15" fill="rgb(236,59,4)" fg:x="37261" fg:w="100"/><text x="7.4491%" y="719.50"></text></g><g><title>PhaseChaitin::split_USE (180 samples, 0.03%)</title><rect x="7.1869%" y="725" width="0.0348%" height="15" fill="rgb(254,179,45)" fg:x="37198" fg:w="180"/><text x="7.4369%" y="735.50"></text></g><g><title>PhaseChaitin::Split (3,395 samples, 0.66%)</title><rect x="6.5830%" y="741" width="0.6559%" height="15" fill="rgb(226,14,10)" fg:x="34072" fg:w="3395"/><text x="6.8330%" y="751.50"></text></g><g><title>IndexSet::IndexSet (309 samples, 0.06%)</title><rect x="7.4271%" y="725" width="0.0597%" height="15" fill="rgb(244,27,41)" fg:x="38441" fg:w="309"/><text x="7.6771%" y="735.50"></text></g><g><title>MachNode::rematerialize (69 samples, 0.01%)</title><rect x="7.4893%" y="725" width="0.0133%" height="15" fill="rgb(235,35,32)" fg:x="38763" fg:w="69"/><text x="7.7393%" y="735.50"></text></g><g><title>MachNode::rematerialize (115 samples, 0.02%)</title><rect x="7.6054%" y="709" width="0.0222%" height="15" fill="rgb(218,68,31)" fg:x="39364" fg:w="115"/><text x="7.8554%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (136 samples, 0.03%)</title><rect x="7.6317%" y="709" width="0.0263%" height="15" fill="rgb(207,120,37)" fg:x="39500" fg:w="136"/><text x="7.8817%" y="719.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (798 samples, 0.15%)</title><rect x="7.5048%" y="725" width="0.1542%" height="15" fill="rgb(227,98,0)" fg:x="38843" fg:w="798"/><text x="7.7548%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (180 samples, 0.03%)</title><rect x="7.7281%" y="709" width="0.0348%" height="15" fill="rgb(207,7,3)" fg:x="39999" fg:w="180"/><text x="7.9781%" y="719.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (534 samples, 0.10%)</title><rect x="7.6758%" y="725" width="0.1032%" height="15" fill="rgb(206,98,19)" fg:x="39728" fg:w="534"/><text x="7.9258%" y="735.50"></text></g><g><title>RegMask::is_UP (83 samples, 0.02%)</title><rect x="7.7629%" y="709" width="0.0160%" height="15" fill="rgb(217,5,26)" fg:x="40179" fg:w="83"/><text x="8.0129%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (130 samples, 0.03%)</title><rect x="8.1827%" y="709" width="0.0251%" height="15" fill="rgb(235,190,38)" fg:x="42352" fg:w="130"/><text x="8.4327%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (931 samples, 0.18%)</title><rect x="8.2110%" y="709" width="0.1799%" height="15" fill="rgb(247,86,24)" fg:x="42498" fg:w="931"/><text x="8.4610%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,175 samples, 0.61%)</title><rect x="7.7789%" y="725" width="0.6134%" height="15" fill="rgb(205,101,16)" fg:x="40262" fg:w="3175"/><text x="8.0289%" y="735.50"></text></g><g><title>PhaseChaitin::lower_pressure (101 samples, 0.02%)</title><rect x="8.3924%" y="725" width="0.0195%" height="15" fill="rgb(246,168,33)" fg:x="43437" fg:w="101"/><text x="8.6424%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (207 samples, 0.04%)</title><rect x="8.5131%" y="709" width="0.0400%" height="15" fill="rgb(231,114,1)" fg:x="44062" fg:w="207"/><text x="8.7631%" y="719.50"></text></g><g><title>RegMask::Size (338 samples, 0.07%)</title><rect x="8.5531%" y="709" width="0.0653%" height="15" fill="rgb(207,184,53)" fg:x="44269" fg:w="338"/><text x="8.8031%" y="719.50"></text></g><g><title>RegMask::smear_to_sets (650 samples, 0.13%)</title><rect x="8.6184%" y="709" width="0.1256%" height="15" fill="rgb(224,95,51)" fg:x="44607" fg:w="650"/><text x="8.8684%" y="719.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,733 samples, 0.33%)</title><rect x="8.4119%" y="725" width="0.3348%" height="15" fill="rgb(212,188,45)" fg:x="43538" fg:w="1733"/><text x="8.6619%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,914 samples, 1.53%)</title><rect x="7.2393%" y="741" width="1.5290%" height="15" fill="rgb(223,154,38)" fg:x="37469" fg:w="7914"/><text x="7.4893%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (59 samples, 0.01%)</title><rect x="8.8547%" y="709" width="0.0114%" height="15" fill="rgb(251,22,52)" fg:x="45830" fg:w="59"/><text x="9.1047%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (354 samples, 0.07%)</title><rect x="8.7979%" y="725" width="0.0684%" height="15" fill="rgb(229,209,22)" fg:x="45536" fg:w="354"/><text x="9.0479%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (513 samples, 0.10%)</title><rect x="8.7684%" y="741" width="0.0991%" height="15" fill="rgb(234,138,34)" fg:x="45383" fg:w="513"/><text x="9.0184%" y="751.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (135 samples, 0.03%)</title><rect x="8.8675%" y="741" width="0.0261%" height="15" fill="rgb(212,95,11)" fg:x="45896" fg:w="135"/><text x="9.1175%" y="751.50"></text></g><g><title>PhaseChaitin::de_ssa (82 samples, 0.02%)</title><rect x="8.9009%" y="741" width="0.0158%" height="15" fill="rgb(240,179,47)" fg:x="46069" fg:w="82"/><text x="9.1509%" y="751.50"></text></g><g><title>PhaseChaitin::fixup_spills (66 samples, 0.01%)</title><rect x="8.9171%" y="741" width="0.0128%" height="15" fill="rgb(240,163,11)" fg:x="46153" fg:w="66"/><text x="9.1671%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (79 samples, 0.02%)</title><rect x="9.2900%" y="725" width="0.0153%" height="15" fill="rgb(236,37,12)" fg:x="48083" fg:w="79"/><text x="9.5400%" y="735.50"></text></g><g><title>MachNode::ideal_reg (72 samples, 0.01%)</title><rect x="9.3061%" y="725" width="0.0139%" height="15" fill="rgb(232,164,16)" fg:x="48166" fg:w="72"/><text x="9.5561%" y="735.50"></text></g><g><title>MachNode::in_RegMask (62 samples, 0.01%)</title><rect x="9.3200%" y="725" width="0.0120%" height="15" fill="rgb(244,205,15)" fg:x="48238" fg:w="62"/><text x="9.5700%" y="735.50"></text></g><g><title>RegMask::Size (1,160 samples, 0.22%)</title><rect x="9.3553%" y="725" width="0.2241%" height="15" fill="rgb(223,117,47)" fg:x="48421" fg:w="1160"/><text x="9.6053%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (216 samples, 0.04%)</title><rect x="9.5794%" y="725" width="0.0417%" height="15" fill="rgb(244,107,35)" fg:x="49581" fg:w="216"/><text x="9.8294%" y="735.50"></text></g><g><title>RegMask::is_aligned_pairs (92 samples, 0.02%)</title><rect x="9.6212%" y="725" width="0.0178%" height="15" fill="rgb(205,140,8)" fg:x="49797" fg:w="92"/><text x="9.8712%" y="735.50"></text></g><g><title>RegMask::is_bound1 (171 samples, 0.03%)</title><rect x="9.6390%" y="725" width="0.0330%" height="15" fill="rgb(228,84,46)" fg:x="49889" fg:w="171"/><text x="9.8890%" y="735.50"></text></g><g><title>RegMask::is_bound_pair (96 samples, 0.02%)</title><rect x="9.6720%" y="725" width="0.0185%" height="15" fill="rgb(254,188,9)" fg:x="50060" fg:w="96"/><text x="9.9220%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,105 samples, 0.79%)</title><rect x="8.9299%" y="741" width="0.7931%" height="15" fill="rgb(206,112,54)" fg:x="46219" fg:w="4105"/><text x="9.1799%" y="751.50"></text></g><g><title>PhaseChaitin::merge_multidefs (535 samples, 0.10%)</title><rect x="9.7234%" y="741" width="0.1034%" height="15" fill="rgb(216,84,49)" fg:x="50326" fg:w="535"/><text x="9.9734%" y="751.50"></text></g><g><title>PhaseChaitin::use_prior_register (104 samples, 0.02%)</title><rect x="10.6009%" y="709" width="0.0201%" height="15" fill="rgb(214,194,35)" fg:x="54868" fg:w="104"/><text x="10.8509%" y="719.50"></text></g><g><title>PhaseChaitin::elide_copy (2,198 samples, 0.42%)</title><rect x="10.2060%" y="725" width="0.4247%" height="15" fill="rgb(249,28,3)" fg:x="52824" fg:w="2198"/><text x="10.4560%" y="735.50"></text></g><g><title>[libc-2.31.so] (68 samples, 0.01%)</title><rect x="10.6411%" y="725" width="0.0131%" height="15" fill="rgb(222,56,52)" fg:x="55076" fg:w="68"/><text x="10.8911%" y="735.50"></text></g><g><title>find_lowest_bit (366 samples, 0.07%)</title><rect x="10.6558%" y="725" width="0.0707%" height="15" fill="rgb(245,217,50)" fg:x="55152" fg:w="366"/><text x="10.9058%" y="735.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,660 samples, 0.90%)</title><rect x="9.8268%" y="741" width="0.9003%" height="15" fill="rgb(213,201,24)" fg:x="50861" fg:w="4660"/><text x="10.0768%" y="751.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (200 samples, 0.04%)</title><rect x="10.7271%" y="741" width="0.0386%" height="15" fill="rgb(248,116,28)" fg:x="55521" fg:w="200"/><text x="10.9771%" y="751.50"></text></g><g><title>PhaseIFG::Union (54 samples, 0.01%)</title><rect x="10.7889%" y="693" width="0.0104%" height="15" fill="rgb(219,72,43)" fg:x="55841" fg:w="54"/><text x="11.0389%" y="703.50"></text></g><g><title>PhaseCoalesce::combine_these_two (77 samples, 0.01%)</title><rect x="10.7851%" y="709" width="0.0149%" height="15" fill="rgb(209,138,14)" fg:x="55821" fg:w="77"/><text x="11.0351%" y="719.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (171 samples, 0.03%)</title><rect x="10.7671%" y="725" width="0.0330%" height="15" fill="rgb(222,18,33)" fg:x="55728" fg:w="171"/><text x="11.0171%" y="735.50"></text></g><g><title>PhaseCFG::is_uncommon (139 samples, 0.03%)</title><rect x="10.8110%" y="709" width="0.0269%" height="15" fill="rgb(213,199,7)" fg:x="55955" fg:w="139"/><text x="11.0610%" y="719.50"></text></g><g><title>IndexSet::lrg_union (419 samples, 0.08%)</title><rect x="10.8480%" y="693" width="0.0810%" height="15" fill="rgb(250,110,10)" fg:x="56147" fg:w="419"/><text x="11.0980%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (482 samples, 0.09%)</title><rect x="10.9333%" y="693" width="0.0931%" height="15" fill="rgb(248,123,6)" fg:x="56588" fg:w="482"/><text x="11.1833%" y="703.50"></text></g><g><title>PhaseIFG::effective_degree (118 samples, 0.02%)</title><rect x="11.0264%" y="693" width="0.0228%" height="15" fill="rgb(206,91,31)" fg:x="57070" fg:w="118"/><text x="11.2764%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,124 samples, 0.22%)</title><rect x="10.8378%" y="709" width="0.2172%" height="15" fill="rgb(211,154,13)" fg:x="56094" fg:w="1124"/><text x="11.0878%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,322 samples, 0.26%)</title><rect x="10.8001%" y="725" width="0.2554%" height="15" fill="rgb(225,148,7)" fg:x="55899" fg:w="1322"/><text x="11.0501%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,501 samples, 0.29%)</title><rect x="10.7657%" y="741" width="0.2900%" height="15" fill="rgb(220,160,43)" fg:x="55721" fg:w="1501"/><text x="11.0157%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (521 samples, 0.10%)</title><rect x="11.1599%" y="725" width="0.1007%" height="15" fill="rgb(213,52,39)" fg:x="57761" fg:w="521"/><text x="11.4099%" y="735.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,060 samples, 0.20%)</title><rect x="11.0561%" y="741" width="0.2048%" height="15" fill="rgb(243,137,7)" fg:x="57224" fg:w="1060"/><text x="11.3061%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (59 samples, 0.01%)</title><rect x="11.3299%" y="725" width="0.0114%" height="15" fill="rgb(230,79,13)" fg:x="58641" fg:w="59"/><text x="11.5799%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (83 samples, 0.02%)</title><rect x="11.3413%" y="725" width="0.0160%" height="15" fill="rgb(247,105,23)" fg:x="58700" fg:w="83"/><text x="11.5913%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (458 samples, 0.09%)</title><rect x="11.3573%" y="725" width="0.0885%" height="15" fill="rgb(223,179,41)" fg:x="58783" fg:w="458"/><text x="11.6073%" y="735.50"></text></g><g><title>PhaseIFG::SquareUp (958 samples, 0.19%)</title><rect x="11.2611%" y="741" width="0.1851%" height="15" fill="rgb(218,9,34)" fg:x="58285" fg:w="958"/><text x="11.5111%" y="751.50"></text></g><g><title>IndexSet::initialize (221 samples, 0.04%)</title><rect x="11.4681%" y="725" width="0.0427%" height="15" fill="rgb(222,106,8)" fg:x="59356" fg:w="221"/><text x="11.7181%" y="735.50"></text></g><g><title>PhaseIFG::init (393 samples, 0.08%)</title><rect x="11.4462%" y="741" width="0.0759%" height="15" fill="rgb(211,220,0)" fg:x="59243" fg:w="393"/><text x="11.6962%" y="751.50"></text></g><g><title>[libc-2.31.so] (59 samples, 0.01%)</title><rect x="11.5108%" y="725" width="0.0114%" height="15" fill="rgb(229,52,16)" fg:x="59577" fg:w="59"/><text x="11.7608%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (86 samples, 0.02%)</title><rect x="11.7625%" y="725" width="0.0166%" height="15" fill="rgb(212,155,18)" fg:x="60880" fg:w="86"/><text x="12.0125%" y="735.50"></text></g><g><title>IndexSet::free_block (61 samples, 0.01%)</title><rect x="11.7791%" y="725" width="0.0118%" height="15" fill="rgb(242,21,14)" fg:x="60966" fg:w="61"/><text x="12.0291%" y="735.50"></text></g><g><title>IndexSet::initialize (120 samples, 0.02%)</title><rect x="11.7909%" y="725" width="0.0232%" height="15" fill="rgb(222,19,48)" fg:x="61027" fg:w="120"/><text x="12.0409%" y="735.50"></text></g><g><title>__tls_get_addr (78 samples, 0.02%)</title><rect x="11.9775%" y="693" width="0.0151%" height="15" fill="rgb(232,45,27)" fg:x="61993" fg:w="78"/><text x="12.2275%" y="703.50"></text></g><g><title>update_get_addr (53 samples, 0.01%)</title><rect x="11.9824%" y="677" width="0.0102%" height="15" fill="rgb(249,103,42)" fg:x="62018" fg:w="53"/><text x="12.2324%" y="687.50"></text></g><g><title>IndexSet::alloc_block_containing (209 samples, 0.04%)</title><rect x="11.9532%" y="709" width="0.0404%" height="15" fill="rgb(246,81,33)" fg:x="61867" fg:w="209"/><text x="12.2032%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (285 samples, 0.06%)</title><rect x="12.0009%" y="709" width="0.0551%" height="15" fill="rgb(252,33,42)" fg:x="62114" fg:w="285"/><text x="12.2509%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (1,275 samples, 0.25%)</title><rect x="11.8147%" y="725" width="0.2463%" height="15" fill="rgb(209,212,41)" fg:x="61150" fg:w="1275"/><text x="12.0647%" y="735.50"></text></g><g><title>PhaseLive::compute (2,795 samples, 0.54%)</title><rect x="11.5231%" y="741" width="0.5400%" height="15" fill="rgb(207,154,6)" fg:x="59641" fg:w="2795"/><text x="11.7731%" y="751.50"></text></g><g><title>RegMask::Size (70 samples, 0.01%)</title><rect x="12.0639%" y="741" width="0.0135%" height="15" fill="rgb(223,64,47)" fg:x="62440" fg:w="70"/><text x="12.3139%" y="751.50"></text></g><g><title>PhaseChaitin::Register_Allocate (33,679 samples, 6.51%)</title><rect x="5.5891%" y="757" width="6.5071%" height="15" fill="rgb(211,161,38)" fg:x="28928" fg:w="33679"/><text x="5.8391%" y="767.50">PhaseChai..</text></g><g><title>Compile::Code_Gen (42,892 samples, 8.29%)</title><rect x="3.8209%" y="773" width="8.2871%" height="15" fill="rgb(219,138,40)" fg:x="19776" fg:w="42892"/><text x="4.0709%" y="783.50">Compile::Cod..</text></g><g><title>PhasePeephole::do_transform (57 samples, 0.01%)</title><rect x="12.0969%" y="757" width="0.0110%" height="15" fill="rgb(241,228,46)" fg:x="62611" fg:w="57"/><text x="12.3469%" y="767.50"></text></g><g><title>Parse::do_call (60 samples, 0.01%)</title><rect x="12.1520%" y="117" width="0.0116%" height="15" fill="rgb(223,209,38)" fg:x="62896" fg:w="60"/><text x="12.4020%" y="127.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.02%)</title><rect x="12.1495%" y="149" width="0.0220%" height="15" fill="rgb(236,164,45)" fg:x="62883" fg:w="114"/><text x="12.3995%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="12.1505%" y="133" width="0.0211%" height="15" fill="rgb(231,15,5)" fg:x="62888" fg:w="109"/><text x="12.4005%" y="143.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.02%)</title><rect x="12.1495%" y="165" width="0.0222%" height="15" fill="rgb(252,35,15)" fg:x="62883" fg:w="115"/><text x="12.3995%" y="175.50"></text></g><g><title>ParseGenerator::generate (129 samples, 0.02%)</title><rect x="12.1481%" y="197" width="0.0249%" height="15" fill="rgb(248,181,18)" fg:x="62876" fg:w="129"/><text x="12.3981%" y="207.50"></text></g><g><title>Parse::Parse (129 samples, 0.02%)</title><rect x="12.1481%" y="181" width="0.0249%" height="15" fill="rgb(233,39,42)" fg:x="62876" fg:w="129"/><text x="12.3981%" y="191.50"></text></g><g><title>Parse::do_call (188 samples, 0.04%)</title><rect x="12.1406%" y="213" width="0.0363%" height="15" fill="rgb(238,110,33)" fg:x="62837" fg:w="188"/><text x="12.3906%" y="223.50"></text></g><g><title>Parse::do_one_block (258 samples, 0.05%)</title><rect x="12.1391%" y="245" width="0.0498%" height="15" fill="rgb(233,195,10)" fg:x="62829" fg:w="258"/><text x="12.3891%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (255 samples, 0.05%)</title><rect x="12.1396%" y="229" width="0.0493%" height="15" fill="rgb(254,105,3)" fg:x="62832" fg:w="255"/><text x="12.3896%" y="239.50"></text></g><g><title>Parse::do_all_blocks (263 samples, 0.05%)</title><rect x="12.1387%" y="261" width="0.0508%" height="15" fill="rgb(221,225,9)" fg:x="62827" fg:w="263"/><text x="12.3887%" y="271.50"></text></g><g><title>ParseGenerator::generate (276 samples, 0.05%)</title><rect x="12.1377%" y="293" width="0.0533%" height="15" fill="rgb(224,227,45)" fg:x="62822" fg:w="276"/><text x="12.3877%" y="303.50"></text></g><g><title>Parse::Parse (276 samples, 0.05%)</title><rect x="12.1377%" y="277" width="0.0533%" height="15" fill="rgb(229,198,43)" fg:x="62822" fg:w="276"/><text x="12.3877%" y="287.50"></text></g><g><title>Parse::do_call (373 samples, 0.07%)</title><rect x="12.1246%" y="309" width="0.0721%" height="15" fill="rgb(206,209,35)" fg:x="62754" fg:w="373"/><text x="12.3746%" y="319.50"></text></g><g><title>ParseGenerator::generate (438 samples, 0.08%)</title><rect x="12.1221%" y="389" width="0.0846%" height="15" fill="rgb(245,195,53)" fg:x="62741" fg:w="438"/><text x="12.3721%" y="399.50"></text></g><g><title>Parse::Parse (438 samples, 0.08%)</title><rect x="12.1221%" y="373" width="0.0846%" height="15" fill="rgb(240,92,26)" fg:x="62741" fg:w="438"/><text x="12.3721%" y="383.50"></text></g><g><title>Parse::do_all_blocks (433 samples, 0.08%)</title><rect x="12.1230%" y="357" width="0.0837%" height="15" fill="rgb(207,40,23)" fg:x="62746" fg:w="433"/><text x="12.3730%" y="367.50"></text></g><g><title>Parse::do_one_block (433 samples, 0.08%)</title><rect x="12.1230%" y="341" width="0.0837%" height="15" fill="rgb(223,111,35)" fg:x="62746" fg:w="433"/><text x="12.3730%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (432 samples, 0.08%)</title><rect x="12.1232%" y="325" width="0.0835%" height="15" fill="rgb(229,147,28)" fg:x="62747" fg:w="432"/><text x="12.3732%" y="335.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.01%)</title><rect x="12.2067%" y="373" width="0.0106%" height="15" fill="rgb(211,29,28)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="383.50"></text></g><g><title>Parse::Parse (55 samples, 0.01%)</title><rect x="12.2067%" y="357" width="0.0106%" height="15" fill="rgb(228,72,33)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="367.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="12.2067%" y="341" width="0.0106%" height="15" fill="rgb(205,214,31)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="351.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="12.2067%" y="325" width="0.0106%" height="15" fill="rgb(224,111,15)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="12.2067%" y="309" width="0.0106%" height="15" fill="rgb(253,21,26)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="319.50"></text></g><g><title>PredictedCallGenerator::generate (62 samples, 0.01%)</title><rect x="12.2067%" y="389" width="0.0120%" height="15" fill="rgb(245,139,43)" fg:x="63179" fg:w="62"/><text x="12.4567%" y="399.50"></text></g><g><title>Parse::do_call (533 samples, 0.10%)</title><rect x="12.1168%" y="405" width="0.1030%" height="15" fill="rgb(252,170,7)" fg:x="62714" fg:w="533"/><text x="12.3668%" y="415.50"></text></g><g><title>Parse::do_all_blocks (548 samples, 0.11%)</title><rect x="12.1167%" y="453" width="0.1059%" height="15" fill="rgb(231,118,14)" fg:x="62713" fg:w="548"/><text x="12.3667%" y="463.50"></text></g><g><title>Parse::do_one_block (548 samples, 0.11%)</title><rect x="12.1167%" y="437" width="0.1059%" height="15" fill="rgb(238,83,0)" fg:x="62713" fg:w="548"/><text x="12.3667%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (548 samples, 0.11%)</title><rect x="12.1167%" y="421" width="0.1059%" height="15" fill="rgb(221,39,39)" fg:x="62713" fg:w="548"/><text x="12.3667%" y="431.50"></text></g><g><title>ParseGenerator::generate (550 samples, 0.11%)</title><rect x="12.1165%" y="485" width="0.1063%" height="15" fill="rgb(222,119,46)" fg:x="62712" fg:w="550"/><text x="12.3665%" y="495.50"></text></g><g><title>Parse::Parse (550 samples, 0.11%)</title><rect x="12.1165%" y="469" width="0.1063%" height="15" fill="rgb(222,165,49)" fg:x="62712" fg:w="550"/><text x="12.3665%" y="479.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="12.2279%" y="229" width="0.0108%" height="15" fill="rgb(219,113,52)" fg:x="63289" fg:w="56"/><text x="12.4779%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="12.2281%" y="213" width="0.0106%" height="15" fill="rgb(214,7,15)" fg:x="63290" fg:w="55"/><text x="12.4781%" y="223.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="12.2279%" y="245" width="0.0112%" height="15" fill="rgb(235,32,4)" fg:x="63289" fg:w="58"/><text x="12.4779%" y="255.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.01%)</title><rect x="12.2272%" y="277" width="0.0122%" height="15" fill="rgb(238,90,54)" fg:x="63285" fg:w="63"/><text x="12.4772%" y="287.50"></text></g><g><title>Parse::Parse (63 samples, 0.01%)</title><rect x="12.2272%" y="261" width="0.0122%" height="15" fill="rgb(213,208,19)" fg:x="63285" fg:w="63"/><text x="12.4772%" y="271.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="12.2252%" y="293" width="0.0158%" height="15" fill="rgb(233,156,4)" fg:x="63275" fg:w="82"/><text x="12.4752%" y="303.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.02%)</title><rect x="12.2239%" y="373" width="0.0216%" height="15" fill="rgb(207,194,5)" fg:x="63268" fg:w="112"/><text x="12.4739%" y="383.50"></text></g><g><title>Parse::Parse (112 samples, 0.02%)</title><rect x="12.2239%" y="357" width="0.0216%" height="15" fill="rgb(206,111,30)" fg:x="63268" fg:w="112"/><text x="12.4739%" y="367.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="12.2245%" y="341" width="0.0211%" height="15" fill="rgb(243,70,54)" fg:x="63271" fg:w="109"/><text x="12.4745%" y="351.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.02%)</title><rect x="12.2245%" y="325" width="0.0211%" height="15" fill="rgb(242,28,8)" fg:x="63271" fg:w="109"/><text x="12.4745%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="12.2245%" y="309" width="0.0211%" height="15" fill="rgb(219,106,18)" fg:x="63271" fg:w="109"/><text x="12.4745%" y="319.50"></text></g><g><title>Parse::do_call (124 samples, 0.02%)</title><rect x="12.2227%" y="389" width="0.0240%" height="15" fill="rgb(244,222,10)" fg:x="63262" fg:w="124"/><text x="12.4727%" y="399.50"></text></g><g><title>ParseGenerator::generate (126 samples, 0.02%)</title><rect x="12.2227%" y="469" width="0.0243%" height="15" fill="rgb(236,179,52)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="479.50"></text></g><g><title>Parse::Parse (126 samples, 0.02%)</title><rect x="12.2227%" y="453" width="0.0243%" height="15" fill="rgb(213,23,39)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="463.50"></text></g><g><title>Parse::do_all_blocks (126 samples, 0.02%)</title><rect x="12.2227%" y="437" width="0.0243%" height="15" fill="rgb(238,48,10)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="447.50"></text></g><g><title>Parse::do_one_block (126 samples, 0.02%)</title><rect x="12.2227%" y="421" width="0.0243%" height="15" fill="rgb(251,196,23)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (126 samples, 0.02%)</title><rect x="12.2227%" y="405" width="0.0243%" height="15" fill="rgb(250,152,24)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="415.50"></text></g><g><title>Parse::do_call (728 samples, 0.14%)</title><rect x="12.1105%" y="501" width="0.1407%" height="15" fill="rgb(209,150,17)" fg:x="62681" fg:w="728"/><text x="12.3605%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (147 samples, 0.03%)</title><rect x="12.2227%" y="485" width="0.0284%" height="15" fill="rgb(234,202,34)" fg:x="63262" fg:w="147"/><text x="12.4727%" y="495.50"></text></g><g><title>ParseGenerator::generate (730 samples, 0.14%)</title><rect x="12.1105%" y="581" width="0.1410%" height="15" fill="rgb(253,148,53)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="591.50"></text></g><g><title>Parse::Parse (730 samples, 0.14%)</title><rect x="12.1105%" y="565" width="0.1410%" height="15" fill="rgb(218,129,16)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="575.50"></text></g><g><title>Parse::do_all_blocks (730 samples, 0.14%)</title><rect x="12.1105%" y="549" width="0.1410%" height="15" fill="rgb(216,85,19)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="559.50"></text></g><g><title>Parse::do_one_block (730 samples, 0.14%)</title><rect x="12.1105%" y="533" width="0.1410%" height="15" fill="rgb(235,228,7)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (730 samples, 0.14%)</title><rect x="12.1105%" y="517" width="0.1410%" height="15" fill="rgb(245,175,0)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="527.50"></text></g><g><title>Parse::do_call (72 samples, 0.01%)</title><rect x="12.2577%" y="293" width="0.0139%" height="15" fill="rgb(208,168,36)" fg:x="63443" fg:w="72"/><text x="12.5077%" y="303.50"></text></g><g><title>Parse::do_one_block (100 samples, 0.02%)</title><rect x="12.2565%" y="325" width="0.0193%" height="15" fill="rgb(246,171,24)" fg:x="63437" fg:w="100"/><text x="12.5065%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.02%)</title><rect x="12.2567%" y="309" width="0.0191%" height="15" fill="rgb(215,142,24)" fg:x="63438" fg:w="99"/><text x="12.5067%" y="319.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.02%)</title><rect x="12.2565%" y="341" width="0.0195%" height="15" fill="rgb(250,187,7)" fg:x="63437" fg:w="101"/><text x="12.5065%" y="351.50"></text></g><g><title>ParseGenerator::generate (102 samples, 0.02%)</title><rect x="12.2565%" y="373" width="0.0197%" height="15" fill="rgb(228,66,33)" fg:x="63437" fg:w="102"/><text x="12.5065%" y="383.50"></text></g><g><title>Parse::Parse (102 samples, 0.02%)</title><rect x="12.2565%" y="357" width="0.0197%" height="15" fill="rgb(234,215,21)" fg:x="63437" fg:w="102"/><text x="12.5065%" y="367.50"></text></g><g><title>Parse::do_call (134 samples, 0.03%)</title><rect x="12.2542%" y="389" width="0.0259%" height="15" fill="rgb(222,191,20)" fg:x="63425" fg:w="134"/><text x="12.5042%" y="399.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.03%)</title><rect x="12.2540%" y="469" width="0.0272%" height="15" fill="rgb(245,79,54)" fg:x="63424" fg:w="141"/><text x="12.5040%" y="479.50"></text></g><g><title>Parse::Parse (141 samples, 0.03%)</title><rect x="12.2540%" y="453" width="0.0272%" height="15" fill="rgb(240,10,37)" fg:x="63424" fg:w="141"/><text x="12.5040%" y="463.50"></text></g><g><title>Parse::do_all_blocks (140 samples, 0.03%)</title><rect x="12.2542%" y="437" width="0.0270%" height="15" fill="rgb(214,192,32)" fg:x="63425" fg:w="140"/><text x="12.5042%" y="447.50"></text></g><g><title>Parse::do_one_block (140 samples, 0.03%)</title><rect x="12.2542%" y="421" width="0.0270%" height="15" fill="rgb(209,36,54)" fg:x="63425" fg:w="140"/><text x="12.5042%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (140 samples, 0.03%)</title><rect x="12.2542%" y="405" width="0.0270%" height="15" fill="rgb(220,10,11)" fg:x="63425" fg:w="140"/><text x="12.5042%" y="415.50"></text></g><g><title>ParseGenerator::generate (167 samples, 0.03%)</title><rect x="12.2515%" y="565" width="0.0323%" height="15" fill="rgb(221,106,17)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="575.50"></text></g><g><title>Parse::Parse (167 samples, 0.03%)</title><rect x="12.2515%" y="549" width="0.0323%" height="15" fill="rgb(251,142,44)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="559.50"></text></g><g><title>Parse::do_all_blocks (167 samples, 0.03%)</title><rect x="12.2515%" y="533" width="0.0323%" height="15" fill="rgb(238,13,15)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="543.50"></text></g><g><title>Parse::do_one_block (167 samples, 0.03%)</title><rect x="12.2515%" y="517" width="0.0323%" height="15" fill="rgb(208,107,27)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (167 samples, 0.03%)</title><rect x="12.2515%" y="501" width="0.0323%" height="15" fill="rgb(205,136,37)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="511.50"></text></g><g><title>Parse::do_call (167 samples, 0.03%)</title><rect x="12.2515%" y="485" width="0.0323%" height="15" fill="rgb(250,205,27)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="495.50"></text></g><g><title>Parse::do_call (919 samples, 0.18%)</title><rect x="12.1095%" y="597" width="0.1776%" height="15" fill="rgb(210,80,43)" fg:x="62676" fg:w="919"/><text x="12.3595%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (184 samples, 0.04%)</title><rect x="12.2515%" y="581" width="0.0356%" height="15" fill="rgb(247,160,36)" fg:x="63411" fg:w="184"/><text x="12.5015%" y="591.50"></text></g><g><title>ParseGenerator::generate (920 samples, 0.18%)</title><rect x="12.1095%" y="677" width="0.1778%" height="15" fill="rgb(234,13,49)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="687.50"></text></g><g><title>Parse::Parse (920 samples, 0.18%)</title><rect x="12.1095%" y="661" width="0.1778%" height="15" fill="rgb(234,122,0)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="671.50"></text></g><g><title>Parse::do_all_blocks (920 samples, 0.18%)</title><rect x="12.1095%" y="645" width="0.1778%" height="15" fill="rgb(207,146,38)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="655.50"></text></g><g><title>Parse::do_one_block (920 samples, 0.18%)</title><rect x="12.1095%" y="629" width="0.1778%" height="15" fill="rgb(207,177,25)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (920 samples, 0.18%)</title><rect x="12.1095%" y="613" width="0.1778%" height="15" fill="rgb(211,178,42)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="623.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="12.2948%" y="277" width="0.0114%" height="15" fill="rgb(230,69,54)" fg:x="63635" fg:w="59"/><text x="12.5448%" y="287.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="12.2948%" y="261" width="0.0114%" height="15" fill="rgb(214,135,41)" fg:x="63635" fg:w="59"/><text x="12.5448%" y="271.50"></text></g><g><title>Parse::do_call (84 samples, 0.02%)</title><rect x="12.2915%" y="293" width="0.0162%" height="15" fill="rgb(237,67,25)" fg:x="63618" fg:w="84"/><text x="12.5415%" y="303.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.02%)</title><rect x="12.2905%" y="373" width="0.0216%" height="15" fill="rgb(222,189,50)" fg:x="63613" fg:w="112"/><text x="12.5405%" y="383.50"></text></g><g><title>Parse::Parse (112 samples, 0.02%)</title><rect x="12.2905%" y="357" width="0.0216%" height="15" fill="rgb(245,148,34)" fg:x="63613" fg:w="112"/><text x="12.5405%" y="367.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.02%)</title><rect x="12.2913%" y="341" width="0.0209%" height="15" fill="rgb(222,29,6)" fg:x="63617" fg:w="108"/><text x="12.5413%" y="351.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.02%)</title><rect x="12.2913%" y="325" width="0.0209%" height="15" fill="rgb(221,189,43)" fg:x="63617" fg:w="108"/><text x="12.5413%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.02%)</title><rect x="12.2913%" y="309" width="0.0209%" height="15" fill="rgb(207,36,27)" fg:x="63617" fg:w="108"/><text x="12.5413%" y="319.50"></text></g><g><title>Parse::do_call (138 samples, 0.03%)</title><rect x="12.2894%" y="389" width="0.0267%" height="15" fill="rgb(217,90,24)" fg:x="63607" fg:w="138"/><text x="12.5394%" y="399.50"></text></g><g><title>ParseGenerator::generate (146 samples, 0.03%)</title><rect x="12.2894%" y="469" width="0.0282%" height="15" fill="rgb(224,66,35)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="479.50"></text></g><g><title>Parse::Parse (146 samples, 0.03%)</title><rect x="12.2894%" y="453" width="0.0282%" height="15" fill="rgb(221,13,50)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="463.50"></text></g><g><title>Parse::do_all_blocks (146 samples, 0.03%)</title><rect x="12.2894%" y="437" width="0.0282%" height="15" fill="rgb(236,68,49)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="447.50"></text></g><g><title>Parse::do_one_block (146 samples, 0.03%)</title><rect x="12.2894%" y="421" width="0.0282%" height="15" fill="rgb(229,146,28)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (146 samples, 0.03%)</title><rect x="12.2894%" y="405" width="0.0282%" height="15" fill="rgb(225,31,38)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="415.50"></text></g><g><title>Parse::do_call (170 samples, 0.03%)</title><rect x="12.2874%" y="485" width="0.0328%" height="15" fill="rgb(250,208,3)" fg:x="63597" fg:w="170"/><text x="12.5374%" y="495.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.03%)</title><rect x="12.2874%" y="565" width="0.0330%" height="15" fill="rgb(246,54,23)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="575.50"></text></g><g><title>Parse::Parse (171 samples, 0.03%)</title><rect x="12.2874%" y="549" width="0.0330%" height="15" fill="rgb(243,76,11)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="559.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.03%)</title><rect x="12.2874%" y="533" width="0.0330%" height="15" fill="rgb(245,21,50)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="543.50"></text></g><g><title>Parse::do_one_block (171 samples, 0.03%)</title><rect x="12.2874%" y="517" width="0.0330%" height="15" fill="rgb(228,9,43)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.03%)</title><rect x="12.2874%" y="501" width="0.0330%" height="15" fill="rgb(208,100,47)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="511.50"></text></g><g><title>ParseGenerator::generate (220 samples, 0.04%)</title><rect x="12.2873%" y="661" width="0.0425%" height="15" fill="rgb(232,26,8)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="671.50"></text></g><g><title>Parse::Parse (220 samples, 0.04%)</title><rect x="12.2873%" y="645" width="0.0425%" height="15" fill="rgb(216,166,38)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="655.50"></text></g><g><title>Parse::do_all_blocks (220 samples, 0.04%)</title><rect x="12.2873%" y="629" width="0.0425%" height="15" fill="rgb(251,202,51)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="639.50"></text></g><g><title>Parse::do_one_block (220 samples, 0.04%)</title><rect x="12.2873%" y="613" width="0.0425%" height="15" fill="rgb(254,216,34)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (220 samples, 0.04%)</title><rect x="12.2873%" y="597" width="0.0425%" height="15" fill="rgb(251,32,27)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="607.50"></text></g><g><title>Parse::do_call (220 samples, 0.04%)</title><rect x="12.2873%" y="581" width="0.0425%" height="15" fill="rgb(208,127,28)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="591.50"></text></g><g><title>Compile::Compile (44,081 samples, 8.52%)</title><rect x="3.8209%" y="789" width="8.5168%" height="15" fill="rgb(224,137,22)" fg:x="19776" fg:w="44081"/><text x="4.0709%" y="799.50">Compile::Com..</text></g><g><title>ParseGenerator::generate (1,181 samples, 0.23%)</title><rect x="12.1095%" y="773" width="0.2282%" height="15" fill="rgb(254,70,32)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="783.50"></text></g><g><title>Parse::Parse (1,181 samples, 0.23%)</title><rect x="12.1095%" y="757" width="0.2282%" height="15" fill="rgb(229,75,37)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="767.50"></text></g><g><title>Parse::do_all_blocks (1,181 samples, 0.23%)</title><rect x="12.1095%" y="741" width="0.2282%" height="15" fill="rgb(252,64,23)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="751.50"></text></g><g><title>Parse::do_one_block (1,181 samples, 0.23%)</title><rect x="12.1095%" y="725" width="0.2282%" height="15" fill="rgb(232,162,48)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,181 samples, 0.23%)</title><rect x="12.1095%" y="709" width="0.2282%" height="15" fill="rgb(246,160,12)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="719.50"></text></g><g><title>Parse::do_call (1,181 samples, 0.23%)</title><rect x="12.1095%" y="693" width="0.2282%" height="15" fill="rgb(247,166,0)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (261 samples, 0.05%)</title><rect x="12.2873%" y="677" width="0.0504%" height="15" fill="rgb(249,219,21)" fg:x="63596" fg:w="261"/><text x="12.5373%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_impl (127 samples, 0.02%)</title><rect x="12.3705%" y="741" width="0.0245%" height="15" fill="rgb(205,209,3)" fg:x="64027" fg:w="127"/><text x="12.6205%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping (311 samples, 0.06%)</title><rect x="12.3390%" y="773" width="0.0601%" height="15" fill="rgb(243,44,1)" fg:x="63864" fg:w="311"/><text x="12.5890%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping_walk (303 samples, 0.06%)</title><rect x="12.3406%" y="757" width="0.0585%" height="15" fill="rgb(206,159,16)" fg:x="63872" fg:w="303"/><text x="12.5906%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (55 samples, 0.01%)</title><rect x="12.4495%" y="757" width="0.0106%" height="15" fill="rgb(244,77,30)" fg:x="64436" fg:w="55"/><text x="12.6995%" y="767.50"></text></g><g><title>Compile::remove_speculative_types (272 samples, 0.05%)</title><rect x="12.4084%" y="773" width="0.0526%" height="15" fill="rgb(218,69,12)" fg:x="64223" fg:w="272"/><text x="12.6584%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (79 samples, 0.02%)</title><rect x="12.4948%" y="741" width="0.0153%" height="15" fill="rgb(212,87,7)" fg:x="64670" fg:w="79"/><text x="12.7448%" y="751.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (90 samples, 0.02%)</title><rect x="12.5176%" y="725" width="0.0174%" height="15" fill="rgb(245,114,25)" fg:x="64788" fg:w="90"/><text x="12.7676%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (188 samples, 0.04%)</title><rect x="12.5104%" y="741" width="0.0363%" height="15" fill="rgb(210,61,42)" fg:x="64751" fg:w="188"/><text x="12.7604%" y="751.50"></text></g><g><title>ConnectionGraph::split_memory_phi (67 samples, 0.01%)</title><rect x="12.5541%" y="709" width="0.0129%" height="15" fill="rgb(211,52,33)" fg:x="64977" fg:w="67"/><text x="12.8041%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (52 samples, 0.01%)</title><rect x="12.5570%" y="693" width="0.0100%" height="15" fill="rgb(234,58,33)" fg:x="64992" fg:w="52"/><text x="12.8070%" y="703.50"></text></g><g><title>ConnectionGraph::find_inst_mem (84 samples, 0.02%)</title><rect x="12.5512%" y="725" width="0.0162%" height="15" fill="rgb(220,115,36)" fg:x="64962" fg:w="84"/><text x="12.8012%" y="735.50"></text></g><g><title>ConnectionGraph::split_unique_types (120 samples, 0.02%)</title><rect x="12.5492%" y="741" width="0.0232%" height="15" fill="rgb(243,153,54)" fg:x="64952" fg:w="120"/><text x="12.7992%" y="751.50"></text></g><g><title>ConnectionGraph::do_analysis (582 samples, 0.11%)</title><rect x="12.4613%" y="773" width="0.1124%" height="15" fill="rgb(251,47,18)" fg:x="64497" fg:w="582"/><text x="12.7113%" y="783.50"></text></g><g><title>ConnectionGraph::compute_escape (577 samples, 0.11%)</title><rect x="12.4623%" y="757" width="0.1115%" height="15" fill="rgb(242,102,42)" fg:x="64502" fg:w="577"/><text x="12.7123%" y="767.50"></text></g><g><title>PhaseCCP::analyze (720 samples, 0.14%)</title><rect x="12.5747%" y="773" width="0.1391%" height="15" fill="rgb(234,31,38)" fg:x="65084" fg:w="720"/><text x="12.8247%" y="783.50"></text></g><g><title>PhaseCCP::transform_once (109 samples, 0.02%)</title><rect x="12.7374%" y="741" width="0.0211%" height="15" fill="rgb(221,117,51)" fg:x="65926" fg:w="109"/><text x="12.9874%" y="751.50"></text></g><g><title>PhaseCCP::do_transform (234 samples, 0.05%)</title><rect x="12.7139%" y="773" width="0.0452%" height="15" fill="rgb(212,20,18)" fg:x="65804" fg:w="234"/><text x="12.9639%" y="783.50"></text></g><g><title>PhaseCCP::transform (234 samples, 0.05%)</title><rect x="12.7139%" y="757" width="0.0452%" height="15" fill="rgb(245,133,36)" fg:x="65804" fg:w="234"/><text x="12.9639%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (53 samples, 0.01%)</title><rect x="12.7850%" y="677" width="0.0102%" height="15" fill="rgb(212,6,19)" fg:x="66172" fg:w="53"/><text x="13.0350%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (66 samples, 0.01%)</title><rect x="12.7848%" y="693" width="0.0128%" height="15" fill="rgb(218,1,36)" fg:x="66171" fg:w="66"/><text x="13.0348%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (89 samples, 0.02%)</title><rect x="12.7846%" y="709" width="0.0172%" height="15" fill="rgb(246,84,54)" fg:x="66170" fg:w="89"/><text x="13.0346%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (144 samples, 0.03%)</title><rect x="12.7832%" y="725" width="0.0278%" height="15" fill="rgb(242,110,6)" fg:x="66163" fg:w="144"/><text x="13.0332%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (206 samples, 0.04%)</title><rect x="12.7823%" y="741" width="0.0398%" height="15" fill="rgb(214,47,5)" fg:x="66158" fg:w="206"/><text x="13.0323%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (229 samples, 0.04%)</title><rect x="12.7815%" y="757" width="0.0442%" height="15" fill="rgb(218,159,25)" fg:x="66154" fg:w="229"/><text x="13.0315%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (74 samples, 0.01%)</title><rect x="12.8259%" y="741" width="0.0143%" height="15" fill="rgb(215,211,28)" fg:x="66384" fg:w="74"/><text x="13.0759%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (83 samples, 0.02%)</title><rect x="12.8470%" y="725" width="0.0160%" height="15" fill="rgb(238,59,32)" fg:x="66493" fg:w="83"/><text x="13.0970%" y="735.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (52 samples, 0.01%)</title><rect x="12.8630%" y="725" width="0.0100%" height="15" fill="rgb(226,82,3)" fg:x="66576" fg:w="52"/><text x="13.1130%" y="735.50"></text></g><g><title>IdealLoopTree::loop_predication (267 samples, 0.05%)</title><rect x="12.8257%" y="757" width="0.0516%" height="15" fill="rgb(240,164,32)" fg:x="66383" fg:w="267"/><text x="13.0757%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (192 samples, 0.04%)</title><rect x="12.8402%" y="741" width="0.0371%" height="15" fill="rgb(232,46,7)" fg:x="66458" fg:w="192"/><text x="13.0902%" y="751.50"></text></g><g><title>NTarjan::DFS (322 samples, 0.06%)</title><rect x="13.0218%" y="741" width="0.0622%" height="15" fill="rgb(229,129,53)" fg:x="67398" fg:w="322"/><text x="13.2718%" y="751.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,095 samples, 0.21%)</title><rect x="12.8847%" y="757" width="0.2116%" height="15" fill="rgb(234,188,29)" fg:x="66688" fg:w="1095"/><text x="13.1347%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (63 samples, 0.01%)</title><rect x="13.3659%" y="709" width="0.0122%" height="15" fill="rgb(246,141,4)" fg:x="69179" fg:w="63"/><text x="13.6159%" y="719.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (437 samples, 0.08%)</title><rect x="13.3288%" y="741" width="0.0844%" height="15" fill="rgb(229,23,39)" fg:x="68987" fg:w="437"/><text x="13.5788%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (389 samples, 0.08%)</title><rect x="13.3381%" y="725" width="0.0752%" height="15" fill="rgb(206,12,3)" fg:x="69035" fg:w="389"/><text x="13.5881%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (182 samples, 0.04%)</title><rect x="13.3781%" y="709" width="0.0352%" height="15" fill="rgb(252,226,20)" fg:x="69242" fg:w="182"/><text x="13.6281%" y="719.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,734 samples, 0.34%)</title><rect x="13.0962%" y="757" width="0.3350%" height="15" fill="rgb(216,123,35)" fg:x="67783" fg:w="1734"/><text x="13.3462%" y="767.50"></text></g><g><title>Node::unique_ctrl_out (62 samples, 0.01%)</title><rect x="13.8028%" y="725" width="0.0120%" height="15" fill="rgb(212,68,40)" fg:x="71440" fg:w="62"/><text x="14.0528%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (79 samples, 0.02%)</title><rect x="13.8148%" y="725" width="0.0153%" height="15" fill="rgb(254,125,32)" fg:x="71502" fg:w="79"/><text x="14.0648%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (53 samples, 0.01%)</title><rect x="13.9572%" y="677" width="0.0102%" height="15" fill="rgb(253,97,22)" fg:x="72239" fg:w="53"/><text x="14.2072%" y="687.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (255 samples, 0.05%)</title><rect x="13.9425%" y="693" width="0.0493%" height="15" fill="rgb(241,101,14)" fg:x="72163" fg:w="255"/><text x="14.1925%" y="703.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (126 samples, 0.02%)</title><rect x="13.9674%" y="677" width="0.0243%" height="15" fill="rgb(238,103,29)" fg:x="72292" fg:w="126"/><text x="14.2174%" y="687.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (397 samples, 0.08%)</title><rect x="13.9216%" y="709" width="0.0767%" height="15" fill="rgb(233,195,47)" fg:x="72055" fg:w="397"/><text x="14.1716%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (149 samples, 0.03%)</title><rect x="13.9989%" y="709" width="0.0288%" height="15" fill="rgb(246,218,30)" fg:x="72455" fg:w="149"/><text x="14.2489%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (736 samples, 0.14%)</title><rect x="14.5746%" y="693" width="0.1422%" height="15" fill="rgb(219,145,47)" fg:x="75435" fg:w="736"/><text x="14.8246%" y="703.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,550 samples, 0.69%)</title><rect x="14.0317%" y="709" width="0.6859%" height="15" fill="rgb(243,12,26)" fg:x="72625" fg:w="3550"/><text x="14.2817%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,615 samples, 0.89%)</title><rect x="13.8300%" y="725" width="0.8917%" height="15" fill="rgb(214,87,16)" fg:x="71581" fg:w="4615"/><text x="14.0800%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,466 samples, 1.06%)</title><rect x="13.6814%" y="741" width="1.0561%" height="15" fill="rgb(208,99,42)" fg:x="70812" fg:w="5466"/><text x="13.9314%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,781 samples, 1.31%)</title><rect x="13.4312%" y="757" width="1.3101%" height="15" fill="rgb(253,99,2)" fg:x="69517" fg:w="6781"/><text x="13.6812%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (241 samples, 0.05%)</title><rect x="14.8660%" y="741" width="0.0466%" height="15" fill="rgb(220,168,23)" fg:x="76943" fg:w="241"/><text x="15.1160%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (897 samples, 0.17%)</title><rect x="14.7418%" y="757" width="0.1733%" height="15" fill="rgb(242,38,24)" fg:x="76300" fg:w="897"/><text x="14.9918%" y="767.50"></text></g><g><title>PhaseIdealLoop::do_split_if (115 samples, 0.02%)</title><rect x="15.0192%" y="741" width="0.0222%" height="15" fill="rgb(225,182,9)" fg:x="77736" fg:w="115"/><text x="15.2692%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (277 samples, 0.05%)</title><rect x="15.0426%" y="741" width="0.0535%" height="15" fill="rgb(243,178,37)" fg:x="77857" fg:w="277"/><text x="15.2926%" y="751.50"></text></g><g><title>ConstraintCastNode::dominating_cast (54 samples, 0.01%)</title><rect x="15.1181%" y="725" width="0.0104%" height="15" fill="rgb(232,139,19)" fg:x="78248" fg:w="54"/><text x="15.3681%" y="735.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (87 samples, 0.02%)</title><rect x="15.1440%" y="725" width="0.0168%" height="15" fill="rgb(225,201,24)" fg:x="78382" fg:w="87"/><text x="15.3940%" y="735.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (165 samples, 0.03%)</title><rect x="15.1610%" y="725" width="0.0319%" height="15" fill="rgb(221,47,46)" fg:x="78470" fg:w="165"/><text x="15.4110%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (64 samples, 0.01%)</title><rect x="15.2176%" y="709" width="0.0124%" height="15" fill="rgb(249,23,13)" fg:x="78763" fg:w="64"/><text x="15.4676%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (218 samples, 0.04%)</title><rect x="15.1929%" y="725" width="0.0421%" height="15" fill="rgb(219,9,5)" fg:x="78635" fg:w="218"/><text x="15.4429%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (778 samples, 0.15%)</title><rect x="15.0961%" y="741" width="0.1503%" height="15" fill="rgb(254,171,16)" fg:x="78134" fg:w="778"/><text x="15.3461%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,661 samples, 0.32%)</title><rect x="14.9267%" y="757" width="0.3209%" height="15" fill="rgb(230,171,20)" fg:x="77257" fg:w="1661"/><text x="15.1767%" y="767.50"></text></g><g><title>LoadNode::Ideal (98 samples, 0.02%)</title><rect x="15.3328%" y="725" width="0.0189%" height="15" fill="rgb(210,71,41)" fg:x="79359" fg:w="98"/><text x="15.5828%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (115 samples, 0.02%)</title><rect x="15.3602%" y="725" width="0.0222%" height="15" fill="rgb(206,173,20)" fg:x="79501" fg:w="115"/><text x="15.6102%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (61 samples, 0.01%)</title><rect x="15.3826%" y="725" width="0.0118%" height="15" fill="rgb(233,88,34)" fg:x="79617" fg:w="61"/><text x="15.6326%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (58 samples, 0.01%)</title><rect x="15.4045%" y="709" width="0.0112%" height="15" fill="rgb(223,209,46)" fg:x="79730" fg:w="58"/><text x="15.6545%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (121 samples, 0.02%)</title><rect x="15.3946%" y="725" width="0.0234%" height="15" fill="rgb(250,43,18)" fg:x="79679" fg:w="121"/><text x="15.6446%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (111 samples, 0.02%)</title><rect x="15.4557%" y="709" width="0.0214%" height="15" fill="rgb(208,13,10)" fg:x="79995" fg:w="111"/><text x="15.7057%" y="719.50"></text></g><g><title>RegionNode::Ideal (219 samples, 0.04%)</title><rect x="15.4352%" y="725" width="0.0423%" height="15" fill="rgb(212,200,36)" fg:x="79889" fg:w="219"/><text x="15.6852%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (55 samples, 0.01%)</title><rect x="15.4819%" y="629" width="0.0106%" height="15" fill="rgb(225,90,30)" fg:x="80131" fg:w="55"/><text x="15.7319%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (59 samples, 0.01%)</title><rect x="15.4819%" y="645" width="0.0114%" height="15" fill="rgb(236,182,39)" fg:x="80131" fg:w="59"/><text x="15.7319%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (63 samples, 0.01%)</title><rect x="15.4819%" y="661" width="0.0122%" height="15" fill="rgb(212,144,35)" fg:x="80131" fg:w="63"/><text x="15.7319%" y="671.50"></text></g><g><title>InitializeNode::can_capture_store (69 samples, 0.01%)</title><rect x="15.4819%" y="709" width="0.0133%" height="15" fill="rgb(228,63,44)" fg:x="80131" fg:w="69"/><text x="15.7319%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.01%)</title><rect x="15.4819%" y="693" width="0.0133%" height="15" fill="rgb(228,109,6)" fg:x="80131" fg:w="69"/><text x="15.7319%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.01%)</title><rect x="15.4819%" y="677" width="0.0133%" height="15" fill="rgb(238,117,24)" fg:x="80131" fg:w="69"/><text x="15.7319%" y="687.50"></text></g><g><title>StoreNode::Ideal (77 samples, 0.01%)</title><rect x="15.4818%" y="725" width="0.0149%" height="15" fill="rgb(242,26,26)" fg:x="80130" fg:w="77"/><text x="15.7318%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (1,279 samples, 0.25%)</title><rect x="15.2580%" y="741" width="0.2471%" height="15" fill="rgb(221,92,48)" fg:x="78972" fg:w="1279"/><text x="15.5080%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (1,344 samples, 0.26%)</title><rect x="15.2478%" y="757" width="0.2597%" height="15" fill="rgb(209,209,32)" fg:x="78919" fg:w="1344"/><text x="15.4978%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (14,331 samples, 2.77%)</title><rect x="12.7629%" y="773" width="2.7689%" height="15" fill="rgb(221,70,22)" fg:x="66058" fg:w="14331"/><text x="13.0129%" y="783.50">Ph..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (137 samples, 0.03%)</title><rect x="15.5318%" y="773" width="0.0265%" height="15" fill="rgb(248,145,5)" fg:x="80389" fg:w="137"/><text x="15.7818%" y="783.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (62 samples, 0.01%)</title><rect x="15.5463%" y="757" width="0.0120%" height="15" fill="rgb(226,116,26)" fg:x="80464" fg:w="62"/><text x="15.7963%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (90 samples, 0.02%)</title><rect x="15.6626%" y="709" width="0.0174%" height="15" fill="rgb(244,5,17)" fg:x="81066" fg:w="90"/><text x="15.9126%" y="719.50"></text></g><g><title>Unique_Node_List::remove (77 samples, 0.01%)</title><rect x="15.6651%" y="693" width="0.0149%" height="15" fill="rgb(252,159,33)" fg:x="81079" fg:w="77"/><text x="15.9151%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (98 samples, 0.02%)</title><rect x="15.6620%" y="725" width="0.0189%" height="15" fill="rgb(206,71,0)" fg:x="81063" fg:w="98"/><text x="15.9120%" y="735.50"></text></g><g><title>IfNode::Ideal (303 samples, 0.06%)</title><rect x="15.6400%" y="741" width="0.0585%" height="15" fill="rgb(233,118,54)" fg:x="80949" fg:w="303"/><text x="15.8900%" y="751.50"></text></g><g><title>split_if (70 samples, 0.01%)</title><rect x="15.6850%" y="725" width="0.0135%" height="15" fill="rgb(234,83,48)" fg:x="81182" fg:w="70"/><text x="15.9350%" y="735.50"></text></g><g><title>MemNode::Ideal_common (54 samples, 0.01%)</title><rect x="15.7126%" y="725" width="0.0104%" height="15" fill="rgb(228,3,54)" fg:x="81325" fg:w="54"/><text x="15.9626%" y="735.50"></text></g><g><title>MemNode::find_previous_store (80 samples, 0.02%)</title><rect x="15.7244%" y="725" width="0.0155%" height="15" fill="rgb(226,155,13)" fg:x="81386" fg:w="80"/><text x="15.9744%" y="735.50"></text></g><g><title>LoadNode::Ideal (194 samples, 0.04%)</title><rect x="15.7038%" y="741" width="0.0375%" height="15" fill="rgb(241,28,37)" fg:x="81279" fg:w="194"/><text x="15.9538%" y="751.50"></text></g><g><title>NodeHash::grow (58 samples, 0.01%)</title><rect x="15.8004%" y="725" width="0.0112%" height="15" fill="rgb(233,93,10)" fg:x="81779" fg:w="58"/><text x="16.0504%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (204 samples, 0.04%)</title><rect x="15.7731%" y="741" width="0.0394%" height="15" fill="rgb(225,113,19)" fg:x="81638" fg:w="204"/><text x="16.0231%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (63 samples, 0.01%)</title><rect x="15.8127%" y="741" width="0.0122%" height="15" fill="rgb(241,2,18)" fg:x="81843" fg:w="63"/><text x="16.0627%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (92 samples, 0.02%)</title><rect x="15.8475%" y="725" width="0.0178%" height="15" fill="rgb(228,207,21)" fg:x="82023" fg:w="92"/><text x="16.0975%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (230 samples, 0.04%)</title><rect x="15.8249%" y="741" width="0.0444%" height="15" fill="rgb(213,211,35)" fg:x="81906" fg:w="230"/><text x="16.0749%" y="751.50"></text></g><g><title>PhiNode::Ideal (134 samples, 0.03%)</title><rect x="15.8697%" y="741" width="0.0259%" height="15" fill="rgb(209,83,10)" fg:x="82138" fg:w="134"/><text x="16.1197%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (111 samples, 0.02%)</title><rect x="15.9381%" y="709" width="0.0214%" height="15" fill="rgb(209,164,1)" fg:x="82492" fg:w="111"/><text x="16.1881%" y="719.50"></text></g><g><title>Unique_Node_List::remove (98 samples, 0.02%)</title><rect x="15.9406%" y="693" width="0.0189%" height="15" fill="rgb(213,184,43)" fg:x="82505" fg:w="98"/><text x="16.1906%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (135 samples, 0.03%)</title><rect x="15.9342%" y="725" width="0.0261%" height="15" fill="rgb(231,61,34)" fg:x="82472" fg:w="135"/><text x="16.1842%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (91 samples, 0.02%)</title><rect x="15.9659%" y="725" width="0.0176%" height="15" fill="rgb(235,75,3)" fg:x="82636" fg:w="91"/><text x="16.2159%" y="735.50"></text></g><g><title>RegionNode::Ideal (347 samples, 0.07%)</title><rect x="15.9172%" y="741" width="0.0670%" height="15" fill="rgb(220,106,47)" fg:x="82384" fg:w="347"/><text x="16.1672%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.01%)</title><rect x="15.9858%" y="421" width="0.0102%" height="15" fill="rgb(210,196,33)" fg:x="82739" fg:w="53"/><text x="16.2358%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (72 samples, 0.01%)</title><rect x="15.9858%" y="437" width="0.0139%" height="15" fill="rgb(229,154,42)" fg:x="82739" fg:w="72"/><text x="16.2358%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (93 samples, 0.02%)</title><rect x="15.9858%" y="453" width="0.0180%" height="15" fill="rgb(228,114,26)" fg:x="82739" fg:w="93"/><text x="16.2358%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (112 samples, 0.02%)</title><rect x="15.9858%" y="469" width="0.0216%" height="15" fill="rgb(208,144,1)" fg:x="82739" fg:w="112"/><text x="16.2358%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (129 samples, 0.02%)</title><rect x="15.9858%" y="485" width="0.0249%" height="15" fill="rgb(239,112,37)" fg:x="82739" fg:w="129"/><text x="16.2358%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (154 samples, 0.03%)</title><rect x="15.9858%" y="501" width="0.0298%" height="15" fill="rgb(210,96,50)" fg:x="82739" fg:w="154"/><text x="16.2358%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (176 samples, 0.03%)</title><rect x="15.9856%" y="517" width="0.0340%" height="15" fill="rgb(222,178,2)" fg:x="82738" fg:w="176"/><text x="16.2356%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (201 samples, 0.04%)</title><rect x="15.9856%" y="533" width="0.0388%" height="15" fill="rgb(226,74,18)" fg:x="82738" fg:w="201"/><text x="16.2356%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (220 samples, 0.04%)</title><rect x="15.9856%" y="549" width="0.0425%" height="15" fill="rgb(225,67,54)" fg:x="82738" fg:w="220"/><text x="16.2356%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (238 samples, 0.05%)</title><rect x="15.9856%" y="565" width="0.0460%" height="15" fill="rgb(251,92,32)" fg:x="82738" fg:w="238"/><text x="16.2356%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (264 samples, 0.05%)</title><rect x="15.9856%" y="581" width="0.0510%" height="15" fill="rgb(228,149,22)" fg:x="82738" fg:w="264"/><text x="16.2356%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (287 samples, 0.06%)</title><rect x="15.9856%" y="597" width="0.0555%" height="15" fill="rgb(243,54,13)" fg:x="82738" fg:w="287"/><text x="16.2356%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (311 samples, 0.06%)</title><rect x="15.9856%" y="613" width="0.0601%" height="15" fill="rgb(243,180,28)" fg:x="82738" fg:w="311"/><text x="16.2356%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (333 samples, 0.06%)</title><rect x="15.9856%" y="629" width="0.0643%" height="15" fill="rgb(208,167,24)" fg:x="82738" fg:w="333"/><text x="16.2356%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (355 samples, 0.07%)</title><rect x="15.9856%" y="645" width="0.0686%" height="15" fill="rgb(245,73,45)" fg:x="82738" fg:w="355"/><text x="16.2356%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (376 samples, 0.07%)</title><rect x="15.9854%" y="661" width="0.0726%" height="15" fill="rgb(237,203,48)" fg:x="82737" fg:w="376"/><text x="16.2354%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (416 samples, 0.08%)</title><rect x="15.9854%" y="677" width="0.0804%" height="15" fill="rgb(211,197,16)" fg:x="82737" fg:w="416"/><text x="16.2354%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (448 samples, 0.09%)</title><rect x="15.9853%" y="725" width="0.0866%" height="15" fill="rgb(243,99,51)" fg:x="82736" fg:w="448"/><text x="16.2353%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (447 samples, 0.09%)</title><rect x="15.9854%" y="709" width="0.0864%" height="15" fill="rgb(215,123,29)" fg:x="82737" fg:w="447"/><text x="16.2354%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (447 samples, 0.09%)</title><rect x="15.9854%" y="693" width="0.0864%" height="15" fill="rgb(239,186,37)" fg:x="82737" fg:w="447"/><text x="16.2354%" y="703.50"></text></g><g><title>StoreNode::Ideal (474 samples, 0.09%)</title><rect x="15.9853%" y="741" width="0.0916%" height="15" fill="rgb(252,136,39)" fg:x="82736" fg:w="474"/><text x="16.2353%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (2,657 samples, 0.51%)</title><rect x="15.5753%" y="757" width="0.5134%" height="15" fill="rgb(223,213,32)" fg:x="80614" fg:w="2657"/><text x="15.8253%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (2,762 samples, 0.53%)</title><rect x="15.5583%" y="773" width="0.5336%" height="15" fill="rgb(233,115,5)" fg:x="80526" fg:w="2762"/><text x="15.8083%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (253 samples, 0.05%)</title><rect x="16.1047%" y="741" width="0.0489%" height="15" fill="rgb(207,226,44)" fg:x="83354" fg:w="253"/><text x="16.3547%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (272 samples, 0.05%)</title><rect x="16.1025%" y="757" width="0.0526%" height="15" fill="rgb(208,126,0)" fg:x="83343" fg:w="272"/><text x="16.3525%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (75 samples, 0.01%)</title><rect x="16.1562%" y="757" width="0.0145%" height="15" fill="rgb(244,66,21)" fg:x="83621" fg:w="75"/><text x="16.4062%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (397 samples, 0.08%)</title><rect x="16.1016%" y="773" width="0.0767%" height="15" fill="rgb(222,97,12)" fg:x="83338" fg:w="397"/><text x="16.3516%" y="783.50"></text></g><g><title>Compile::identify_useful_nodes (73 samples, 0.01%)</title><rect x="16.1839%" y="741" width="0.0141%" height="15" fill="rgb(219,213,19)" fg:x="83764" fg:w="73"/><text x="16.4339%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (52 samples, 0.01%)</title><rect x="16.1980%" y="741" width="0.0100%" height="15" fill="rgb(252,169,30)" fg:x="83837" fg:w="52"/><text x="16.4480%" y="751.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (153 samples, 0.03%)</title><rect x="16.1810%" y="757" width="0.0296%" height="15" fill="rgb(206,32,51)" fg:x="83749" fg:w="153"/><text x="16.4310%" y="767.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (168 samples, 0.03%)</title><rect x="16.1783%" y="773" width="0.0325%" height="15" fill="rgb(250,172,42)" fg:x="83735" fg:w="168"/><text x="16.4283%" y="783.50"></text></g><g><title>Compile::Optimize (20,054 samples, 3.87%)</title><rect x="12.3379%" y="789" width="3.8746%" height="15" fill="rgb(209,34,43)" fg:x="63858" fg:w="20054"/><text x="12.5879%" y="799.50">Comp..</text></g><g><title>Parse::do_call (53 samples, 0.01%)</title><rect x="16.2262%" y="645" width="0.0102%" height="15" fill="rgb(223,11,35)" fg:x="83983" fg:w="53"/><text x="16.4762%" y="655.50"></text></g><g><title>Parse::do_one_block (201 samples, 0.04%)</title><rect x="16.2179%" y="677" width="0.0388%" height="15" fill="rgb(251,219,26)" fg:x="83940" fg:w="201"/><text x="16.4679%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (187 samples, 0.04%)</title><rect x="16.2206%" y="661" width="0.0361%" height="15" fill="rgb(231,119,3)" fg:x="83954" fg:w="187"/><text x="16.4706%" y="671.50"></text></g><g><title>Parse::do_all_blocks (205 samples, 0.04%)</title><rect x="16.2177%" y="693" width="0.0396%" height="15" fill="rgb(216,97,11)" fg:x="83939" fg:w="205"/><text x="16.4677%" y="703.50"></text></g><g><title>ParseGenerator::generate (213 samples, 0.04%)</title><rect x="16.2177%" y="725" width="0.0412%" height="15" fill="rgb(223,59,9)" fg:x="83939" fg:w="213"/><text x="16.4677%" y="735.50"></text></g><g><title>Parse::Parse (213 samples, 0.04%)</title><rect x="16.2177%" y="709" width="0.0412%" height="15" fill="rgb(233,93,31)" fg:x="83939" fg:w="213"/><text x="16.4677%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (251 samples, 0.05%)</title><rect x="16.2132%" y="789" width="0.0485%" height="15" fill="rgb(239,81,33)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (251 samples, 0.05%)</title><rect x="16.2132%" y="773" width="0.0485%" height="15" fill="rgb(213,120,34)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="783.50"></text></g><g><title>C2Compiler::compile_method (251 samples, 0.05%)</title><rect x="16.2132%" y="757" width="0.0485%" height="15" fill="rgb(243,49,53)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="767.50"></text></g><g><title>Compile::Compile (251 samples, 0.05%)</title><rect x="16.2132%" y="741" width="0.0485%" height="15" fill="rgb(247,216,33)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (73 samples, 0.01%)</title><rect x="16.2617%" y="661" width="0.0141%" height="15" fill="rgb(226,26,14)" fg:x="84167" fg:w="73"/><text x="16.5117%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (73 samples, 0.01%)</title><rect x="16.2617%" y="645" width="0.0141%" height="15" fill="rgb(215,49,53)" fg:x="84167" fg:w="73"/><text x="16.5117%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (73 samples, 0.01%)</title><rect x="16.2617%" y="629" width="0.0141%" height="15" fill="rgb(245,162,40)" fg:x="84167" fg:w="73"/><text x="16.5117%" y="639.50"></text></g><g><title>CallGenerator::for_inline (74 samples, 0.01%)</title><rect x="16.2617%" y="741" width="0.0143%" height="15" fill="rgb(229,68,17)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="751.50"></text></g><g><title>InlineTree::check_can_parse (74 samples, 0.01%)</title><rect x="16.2617%" y="725" width="0.0143%" height="15" fill="rgb(213,182,10)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (74 samples, 0.01%)</title><rect x="16.2617%" y="709" width="0.0143%" height="15" fill="rgb(245,125,30)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (74 samples, 0.01%)</title><rect x="16.2617%" y="693" width="0.0143%" height="15" fill="rgb(232,202,2)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (74 samples, 0.01%)</title><rect x="16.2617%" y="677" width="0.0143%" height="15" fill="rgb(237,140,51)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="687.50"></text></g><g><title>Compile::call_generator (71 samples, 0.01%)</title><rect x="16.2867%" y="645" width="0.0137%" height="15" fill="rgb(236,157,25)" fg:x="84296" fg:w="71"/><text x="16.5367%" y="655.50"></text></g><g><title>Parse::do_one_block (129 samples, 0.02%)</title><rect x="16.3226%" y="597" width="0.0249%" height="15" fill="rgb(219,209,0)" fg:x="84482" fg:w="129"/><text x="16.5726%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (122 samples, 0.02%)</title><rect x="16.3239%" y="581" width="0.0236%" height="15" fill="rgb(240,116,54)" fg:x="84489" fg:w="122"/><text x="16.5739%" y="591.50"></text></g><g><title>Parse::do_all_blocks (137 samples, 0.03%)</title><rect x="16.3226%" y="613" width="0.0265%" height="15" fill="rgb(216,10,36)" fg:x="84482" fg:w="137"/><text x="16.5726%" y="623.50"></text></g><g><title>Parse::Parse (230 samples, 0.04%)</title><rect x="16.3124%" y="629" width="0.0444%" height="15" fill="rgb(222,72,44)" fg:x="84429" fg:w="230"/><text x="16.5624%" y="639.50"></text></g><g><title>ParseGenerator::generate (231 samples, 0.04%)</title><rect x="16.3124%" y="645" width="0.0446%" height="15" fill="rgb(232,159,9)" fg:x="84429" fg:w="231"/><text x="16.5624%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (75 samples, 0.01%)</title><rect x="16.3570%" y="645" width="0.0145%" height="15" fill="rgb(210,39,32)" fg:x="84660" fg:w="75"/><text x="16.6070%" y="655.50"></text></g><g><title>Parse::do_call (464 samples, 0.09%)</title><rect x="16.2867%" y="661" width="0.0896%" height="15" fill="rgb(216,194,45)" fg:x="84296" fg:w="464"/><text x="16.5367%" y="671.50"></text></g><g><title>Parse::do_field_access (94 samples, 0.02%)</title><rect x="16.3798%" y="661" width="0.0182%" height="15" fill="rgb(218,18,35)" fg:x="84778" fg:w="94"/><text x="16.6298%" y="671.50"></text></g><g><title>Parse::do_all_blocks (668 samples, 0.13%)</title><rect x="16.2776%" y="709" width="0.1291%" height="15" fill="rgb(207,83,51)" fg:x="84249" fg:w="668"/><text x="16.5276%" y="719.50"></text></g><g><title>Parse::do_one_block (668 samples, 0.13%)</title><rect x="16.2776%" y="693" width="0.1291%" height="15" fill="rgb(225,63,43)" fg:x="84249" fg:w="668"/><text x="16.5276%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (663 samples, 0.13%)</title><rect x="16.2785%" y="677" width="0.1281%" height="15" fill="rgb(207,57,36)" fg:x="84254" fg:w="663"/><text x="16.5285%" y="687.50"></text></g><g><title>ParseGenerator::generate (684 samples, 0.13%)</title><rect x="16.2776%" y="741" width="0.1322%" height="15" fill="rgb(216,99,33)" fg:x="84249" fg:w="684"/><text x="16.5276%" y="751.50"></text></g><g><title>Parse::Parse (684 samples, 0.13%)</title><rect x="16.2776%" y="725" width="0.1322%" height="15" fill="rgb(225,42,16)" fg:x="84249" fg:w="684"/><text x="16.5276%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (790 samples, 0.15%)</title><rect x="16.2617%" y="789" width="0.1526%" height="15" fill="rgb(220,201,45)" fg:x="84167" fg:w="790"/><text x="16.5117%" y="799.50"></text></g><g><title>C2Compiler::compile_method (790 samples, 0.15%)</title><rect x="16.2617%" y="773" width="0.1526%" height="15" fill="rgb(225,33,4)" fg:x="84167" fg:w="790"/><text x="16.5117%" y="783.50"></text></g><g><title>Compile::Compile (790 samples, 0.15%)</title><rect x="16.2617%" y="757" width="0.1526%" height="15" fill="rgb(224,33,50)" fg:x="84167" fg:w="790"/><text x="16.5117%" y="767.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="16.4291%" y="661" width="0.0102%" height="15" fill="rgb(246,198,51)" fg:x="85033" fg:w="53"/><text x="16.6791%" y="671.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="16.4287%" y="677" width="0.0112%" height="15" fill="rgb(205,22,4)" fg:x="85031" fg:w="58"/><text x="16.6787%" y="687.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.01%)</title><rect x="16.4287%" y="709" width="0.0133%" height="15" fill="rgb(206,3,8)" fg:x="85031" fg:w="69"/><text x="16.6787%" y="719.50"></text></g><g><title>Parse::Parse (69 samples, 0.01%)</title><rect x="16.4287%" y="693" width="0.0133%" height="15" fill="rgb(251,23,15)" fg:x="85031" fg:w="69"/><text x="16.6787%" y="703.50"></text></g><g><title>JavaThread::thread_main_inner (88 samples, 0.02%)</title><rect x="16.4263%" y="789" width="0.0170%" height="15" fill="rgb(252,88,28)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (88 samples, 0.02%)</title><rect x="16.4263%" y="773" width="0.0170%" height="15" fill="rgb(212,127,14)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (88 samples, 0.02%)</title><rect x="16.4263%" y="757" width="0.0170%" height="15" fill="rgb(247,145,37)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="767.50"></text></g><g><title>C2Compiler::compile_method (88 samples, 0.02%)</title><rect x="16.4263%" y="741" width="0.0170%" height="15" fill="rgb(209,117,53)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="751.50"></text></g><g><title>Compile::Compile (88 samples, 0.02%)</title><rect x="16.4263%" y="725" width="0.0170%" height="15" fill="rgb(212,90,42)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="735.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="16.4534%" y="789" width="0.0106%" height="15" fill="rgb(218,164,37)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="799.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="16.4534%" y="773" width="0.0106%" height="15" fill="rgb(246,65,34)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="16.4534%" y="757" width="0.0106%" height="15" fill="rgb(231,100,33)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="767.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="16.4534%" y="741" width="0.0106%" height="15" fill="rgb(228,126,14)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="751.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="16.4640%" y="485" width="0.0100%" height="15" fill="rgb(215,173,21)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="495.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="16.4640%" y="469" width="0.0100%" height="15" fill="rgb(210,6,40)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="479.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="16.4640%" y="453" width="0.0100%" height="15" fill="rgb(212,48,18)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="463.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="16.4640%" y="437" width="0.0100%" height="15" fill="rgb(230,214,11)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="16.4640%" y="421" width="0.0100%" height="15" fill="rgb(254,105,39)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="431.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="16.4640%" y="405" width="0.0100%" height="15" fill="rgb(245,158,5)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="415.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="16.4640%" y="581" width="0.0108%" height="15" fill="rgb(249,208,11)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="591.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="16.4640%" y="565" width="0.0108%" height="15" fill="rgb(210,39,28)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="575.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="16.4640%" y="549" width="0.0108%" height="15" fill="rgb(211,56,53)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="559.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="16.4640%" y="533" width="0.0108%" height="15" fill="rgb(226,201,30)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="16.4640%" y="517" width="0.0108%" height="15" fill="rgb(239,101,34)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="527.50"></text></g><g><title>Parse::do_call (56 samples, 0.01%)</title><rect x="16.4640%" y="501" width="0.0108%" height="15" fill="rgb(226,209,5)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="511.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="16.4640%" y="677" width="0.0137%" height="15" fill="rgb(250,105,47)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="687.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="16.4640%" y="661" width="0.0137%" height="15" fill="rgb(230,72,3)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="671.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.01%)</title><rect x="16.4640%" y="645" width="0.0137%" height="15" fill="rgb(232,218,39)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="655.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.01%)</title><rect x="16.4640%" y="629" width="0.0137%" height="15" fill="rgb(248,166,6)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.01%)</title><rect x="16.4640%" y="613" width="0.0137%" height="15" fill="rgb(247,89,20)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="623.50"></text></g><g><title>Parse::do_call (71 samples, 0.01%)</title><rect x="16.4640%" y="597" width="0.0137%" height="15" fill="rgb(248,130,54)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="607.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.02%)</title><rect x="16.4640%" y="773" width="0.0155%" height="15" fill="rgb(234,196,4)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="783.50"></text></g><g><title>Parse::Parse (80 samples, 0.02%)</title><rect x="16.4640%" y="757" width="0.0155%" height="15" fill="rgb(250,143,31)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="767.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.02%)</title><rect x="16.4640%" y="741" width="0.0155%" height="15" fill="rgb(211,110,34)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="751.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.02%)</title><rect x="16.4640%" y="725" width="0.0155%" height="15" fill="rgb(215,124,48)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="16.4640%" y="709" width="0.0155%" height="15" fill="rgb(216,46,13)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="719.50"></text></g><g><title>Parse::do_call (80 samples, 0.02%)</title><rect x="16.4640%" y="693" width="0.0155%" height="15" fill="rgb(205,184,25)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="703.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="16.4640%" y="789" width="0.0199%" height="15" fill="rgb(228,1,10)" fg:x="85214" fg:w="103"/><text x="16.7140%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.01%)</title><rect x="16.4938%" y="789" width="0.0122%" height="15" fill="rgb(213,116,27)" fg:x="85368" fg:w="63"/><text x="16.7438%" y="799.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="16.4938%" y="773" width="0.0122%" height="15" fill="rgb(241,95,50)" fg:x="85368" fg:w="63"/><text x="16.7438%" y="783.50"></text></g><g><title>ParseGenerator::generate (78 samples, 0.02%)</title><rect x="16.5087%" y="117" width="0.0151%" height="15" fill="rgb(238,48,32)" fg:x="85445" fg:w="78"/><text x="16.7587%" y="127.50"></text></g><g><title>Parse::Parse (78 samples, 0.02%)</title><rect x="16.5087%" y="101" width="0.0151%" height="15" fill="rgb(235,113,49)" fg:x="85445" fg:w="78"/><text x="16.7587%" y="111.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.01%)</title><rect x="16.5088%" y="85" width="0.0149%" height="15" fill="rgb(205,127,43)" fg:x="85446" fg:w="77"/><text x="16.7588%" y="95.50"></text></g><g><title>Parse::do_one_block (77 samples, 0.01%)</title><rect x="16.5088%" y="69" width="0.0149%" height="15" fill="rgb(250,162,2)" fg:x="85446" fg:w="77"/><text x="16.7588%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.01%)</title><rect x="16.5090%" y="53" width="0.0147%" height="15" fill="rgb(220,13,41)" fg:x="85447" fg:w="76"/><text x="16.7590%" y="63.50"></text></g><g><title>Parse::do_call (90 samples, 0.02%)</title><rect x="16.5071%" y="133" width="0.0174%" height="15" fill="rgb(249,221,25)" fg:x="85437" fg:w="90"/><text x="16.7571%" y="143.50"></text></g><g><title>ParseGenerator::generate (93 samples, 0.02%)</title><rect x="16.5071%" y="213" width="0.0180%" height="15" fill="rgb(215,208,19)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="223.50"></text></g><g><title>Parse::Parse (93 samples, 0.02%)</title><rect x="16.5071%" y="197" width="0.0180%" height="15" fill="rgb(236,175,2)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="207.50"></text></g><g><title>Parse::do_all_blocks (93 samples, 0.02%)</title><rect x="16.5071%" y="181" width="0.0180%" height="15" fill="rgb(241,52,2)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="191.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="16.5071%" y="165" width="0.0180%" height="15" fill="rgb(248,140,14)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="16.5071%" y="149" width="0.0180%" height="15" fill="rgb(253,22,42)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="159.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.02%)</title><rect x="16.5059%" y="277" width="0.0205%" height="15" fill="rgb(234,61,47)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="287.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.02%)</title><rect x="16.5059%" y="261" width="0.0205%" height="15" fill="rgb(208,226,15)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.02%)</title><rect x="16.5059%" y="245" width="0.0205%" height="15" fill="rgb(217,221,4)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="255.50"></text></g><g><title>Parse::do_call (106 samples, 0.02%)</title><rect x="16.5059%" y="229" width="0.0205%" height="15" fill="rgb(212,174,34)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="239.50"></text></g><g><title>ParseGenerator::generate (107 samples, 0.02%)</title><rect x="16.5059%" y="309" width="0.0207%" height="15" fill="rgb(253,83,4)" fg:x="85431" fg:w="107"/><text x="16.7559%" y="319.50"></text></g><g><title>Parse::Parse (107 samples, 0.02%)</title><rect x="16.5059%" y="293" width="0.0207%" height="15" fill="rgb(250,195,49)" fg:x="85431" fg:w="107"/><text x="16.7559%" y="303.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.02%)</title><rect x="16.5059%" y="405" width="0.0232%" height="15" fill="rgb(241,192,25)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="415.50"></text></g><g><title>Parse::Parse (120 samples, 0.02%)</title><rect x="16.5059%" y="389" width="0.0232%" height="15" fill="rgb(208,124,10)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="399.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.02%)</title><rect x="16.5059%" y="373" width="0.0232%" height="15" fill="rgb(222,33,0)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="383.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="16.5059%" y="357" width="0.0232%" height="15" fill="rgb(234,209,28)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (120 samples, 0.02%)</title><rect x="16.5059%" y="341" width="0.0232%" height="15" fill="rgb(224,11,23)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="351.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="16.5059%" y="325" width="0.0232%" height="15" fill="rgb(232,99,1)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="335.50"></text></g><g><title>ParseGenerator::generate (138 samples, 0.03%)</title><rect x="16.5059%" y="501" width="0.0267%" height="15" fill="rgb(237,95,45)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="511.50"></text></g><g><title>Parse::Parse (138 samples, 0.03%)</title><rect x="16.5059%" y="485" width="0.0267%" height="15" fill="rgb(208,109,11)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="495.50"></text></g><g><title>Parse::do_all_blocks (138 samples, 0.03%)</title><rect x="16.5059%" y="469" width="0.0267%" height="15" fill="rgb(216,190,48)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="479.50"></text></g><g><title>Parse::do_one_block (138 samples, 0.03%)</title><rect x="16.5059%" y="453" width="0.0267%" height="15" fill="rgb(251,171,36)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (138 samples, 0.03%)</title><rect x="16.5059%" y="437" width="0.0267%" height="15" fill="rgb(230,62,22)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="447.50"></text></g><g><title>Parse::do_call (138 samples, 0.03%)</title><rect x="16.5059%" y="421" width="0.0267%" height="15" fill="rgb(225,114,35)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="431.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="16.5059%" y="597" width="0.0301%" height="15" fill="rgb(215,118,42)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="607.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="16.5059%" y="581" width="0.0301%" height="15" fill="rgb(243,119,21)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="591.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="16.5059%" y="565" width="0.0301%" height="15" fill="rgb(252,177,53)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="575.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="16.5059%" y="549" width="0.0301%" height="15" fill="rgb(237,209,29)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="16.5059%" y="533" width="0.0301%" height="15" fill="rgb(212,65,23)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="543.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="16.5059%" y="517" width="0.0301%" height="15" fill="rgb(230,222,46)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="527.50"></text></g><g><title>ParseGenerator::generate (195 samples, 0.04%)</title><rect x="16.5059%" y="693" width="0.0377%" height="15" fill="rgb(215,135,32)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="703.50"></text></g><g><title>Parse::Parse (195 samples, 0.04%)</title><rect x="16.5059%" y="677" width="0.0377%" height="15" fill="rgb(246,101,22)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="687.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.04%)</title><rect x="16.5059%" y="661" width="0.0377%" height="15" fill="rgb(206,107,13)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="671.50"></text></g><g><title>Parse::do_one_block (195 samples, 0.04%)</title><rect x="16.5059%" y="645" width="0.0377%" height="15" fill="rgb(250,100,44)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (195 samples, 0.04%)</title><rect x="16.5059%" y="629" width="0.0377%" height="15" fill="rgb(231,147,38)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="639.50"></text></g><g><title>Parse::do_call (195 samples, 0.04%)</title><rect x="16.5059%" y="613" width="0.0377%" height="15" fill="rgb(229,8,40)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="623.50"></text></g><g><title>ParseGenerator::generate (232 samples, 0.04%)</title><rect x="16.5059%" y="789" width="0.0448%" height="15" fill="rgb(221,135,30)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="799.50"></text></g><g><title>Parse::Parse (232 samples, 0.04%)</title><rect x="16.5059%" y="773" width="0.0448%" height="15" fill="rgb(249,193,18)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="783.50"></text></g><g><title>Parse::do_all_blocks (232 samples, 0.04%)</title><rect x="16.5059%" y="757" width="0.0448%" height="15" fill="rgb(209,133,39)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="767.50"></text></g><g><title>Parse::do_one_block (232 samples, 0.04%)</title><rect x="16.5059%" y="741" width="0.0448%" height="15" fill="rgb(232,100,14)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (232 samples, 0.04%)</title><rect x="16.5059%" y="725" width="0.0448%" height="15" fill="rgb(224,185,1)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="735.50"></text></g><g><title>Parse::do_call (232 samples, 0.04%)</title><rect x="16.5059%" y="709" width="0.0448%" height="15" fill="rgb(223,139,8)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="719.50"></text></g><g><title>Thread::call_run (69 samples, 0.01%)</title><rect x="16.5641%" y="789" width="0.0133%" height="15" fill="rgb(232,213,38)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (69 samples, 0.01%)</title><rect x="16.5641%" y="773" width="0.0133%" height="15" fill="rgb(207,94,22)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (69 samples, 0.01%)</title><rect x="16.5641%" y="757" width="0.0133%" height="15" fill="rgb(219,183,54)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (69 samples, 0.01%)</title><rect x="16.5641%" y="741" width="0.0133%" height="15" fill="rgb(216,185,54)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="751.50"></text></g><g><title>C2Compiler::compile_method (69 samples, 0.01%)</title><rect x="16.5641%" y="725" width="0.0133%" height="15" fill="rgb(254,217,39)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="735.50"></text></g><g><title>Compile::Compile (69 samples, 0.01%)</title><rect x="16.5641%" y="709" width="0.0133%" height="15" fill="rgb(240,178,23)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="719.50"></text></g><g><title>_dl_update_slotinfo (56 samples, 0.01%)</title><rect x="16.5825%" y="789" width="0.0108%" height="15" fill="rgb(218,11,47)" fg:x="85827" fg:w="56"/><text x="16.8325%" y="799.50"></text></g><g><title>start_thread (89 samples, 0.02%)</title><rect x="16.5964%" y="789" width="0.0172%" height="15" fill="rgb(218,51,51)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="799.50"></text></g><g><title>thread_native_entry (89 samples, 0.02%)</title><rect x="16.5964%" y="773" width="0.0172%" height="15" fill="rgb(238,126,27)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="783.50"></text></g><g><title>Thread::call_run (89 samples, 0.02%)</title><rect x="16.5964%" y="757" width="0.0172%" height="15" fill="rgb(249,202,22)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (89 samples, 0.02%)</title><rect x="16.5964%" y="741" width="0.0172%" height="15" fill="rgb(254,195,49)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (89 samples, 0.02%)</title><rect x="16.5964%" y="725" width="0.0172%" height="15" fill="rgb(208,123,14)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (89 samples, 0.02%)</title><rect x="16.5964%" y="709" width="0.0172%" height="15" fill="rgb(224,200,8)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="719.50"></text></g><g><title>C2Compiler::compile_method (89 samples, 0.02%)</title><rect x="16.5964%" y="693" width="0.0172%" height="15" fill="rgb(217,61,36)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="703.50"></text></g><g><title>Compile::Compile (89 samples, 0.02%)</title><rect x="16.5964%" y="677" width="0.0172%" height="15" fill="rgb(206,35,45)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="687.50"></text></g><g><title>[unknown] (69,004 samples, 13.33%)</title><rect x="3.2851%" y="805" width="13.3321%" height="15" fill="rgb(217,65,33)" fg:x="17003" fg:w="69004"/><text x="3.5351%" y="815.50">[unknown]</text></g><g><title>Dict::Insert (65 samples, 0.01%)</title><rect x="16.6441%" y="629" width="0.0126%" height="15" fill="rgb(222,158,48)" fg:x="86146" fg:w="65"/><text x="16.8941%" y="639.50"></text></g><g><title>Type::Initialize (76 samples, 0.01%)</title><rect x="16.6439%" y="645" width="0.0147%" height="15" fill="rgb(254,2,54)" fg:x="86145" fg:w="76"/><text x="16.8939%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (80 samples, 0.02%)</title><rect x="16.6433%" y="661" width="0.0155%" height="15" fill="rgb(250,143,38)" fg:x="86142" fg:w="80"/><text x="16.8933%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (182 samples, 0.04%)</title><rect x="16.6679%" y="645" width="0.0352%" height="15" fill="rgb(248,25,0)" fg:x="86269" fg:w="182"/><text x="16.9179%" y="655.50"></text></g><g><title>Compile::remove_useless_nodes (200 samples, 0.04%)</title><rect x="16.7030%" y="645" width="0.0386%" height="15" fill="rgb(206,152,27)" fg:x="86451" fg:w="200"/><text x="16.9530%" y="655.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (472 samples, 0.09%)</title><rect x="16.6599%" y="661" width="0.0912%" height="15" fill="rgb(240,77,30)" fg:x="86228" fg:w="472"/><text x="16.9099%" y="671.50"></text></g><g><title>C2Compiler::compile_method (696 samples, 0.13%)</title><rect x="16.6259%" y="693" width="0.1345%" height="15" fill="rgb(231,5,3)" fg:x="86052" fg:w="696"/><text x="16.8759%" y="703.50"></text></g><g><title>Compile::Compile (688 samples, 0.13%)</title><rect x="16.6275%" y="677" width="0.1329%" height="15" fill="rgb(207,226,32)" fg:x="86060" fg:w="688"/><text x="16.8775%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (841 samples, 0.16%)</title><rect x="16.6254%" y="709" width="0.1625%" height="15" fill="rgb(222,207,47)" fg:x="86049" fg:w="841"/><text x="16.8754%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (108 samples, 0.02%)</title><rect x="16.8106%" y="453" width="0.0209%" height="15" fill="rgb(229,115,45)" fg:x="87008" fg:w="108"/><text x="17.0606%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (107 samples, 0.02%)</title><rect x="16.8108%" y="437" width="0.0207%" height="15" fill="rgb(224,191,6)" fg:x="87009" fg:w="107"/><text x="17.0608%" y="447.50"></text></g><g><title>native_write_msr (107 samples, 0.02%)</title><rect x="16.8108%" y="421" width="0.0207%" height="15" fill="rgb(230,227,24)" fg:x="87009" fg:w="107"/><text x="17.0608%" y="431.50"></text></g><g><title>finish_task_switch (117 samples, 0.02%)</title><rect x="16.8097%" y="469" width="0.0226%" height="15" fill="rgb(228,80,19)" fg:x="87003" fg:w="117"/><text x="17.0597%" y="479.50"></text></g><g><title>futex_wait_queue_me (165 samples, 0.03%)</title><rect x="16.8035%" y="517" width="0.0319%" height="15" fill="rgb(247,229,0)" fg:x="86971" fg:w="165"/><text x="17.0535%" y="527.50"></text></g><g><title>schedule (156 samples, 0.03%)</title><rect x="16.8052%" y="501" width="0.0301%" height="15" fill="rgb(237,194,15)" fg:x="86980" fg:w="156"/><text x="17.0552%" y="511.50"></text></g><g><title>__schedule (154 samples, 0.03%)</title><rect x="16.8056%" y="485" width="0.0298%" height="15" fill="rgb(219,203,20)" fg:x="86982" fg:w="154"/><text x="17.0556%" y="495.50"></text></g><g><title>do_futex (176 samples, 0.03%)</title><rect x="16.8027%" y="549" width="0.0340%" height="15" fill="rgb(234,128,8)" fg:x="86967" fg:w="176"/><text x="17.0527%" y="559.50"></text></g><g><title>futex_wait (175 samples, 0.03%)</title><rect x="16.8029%" y="533" width="0.0338%" height="15" fill="rgb(248,202,8)" fg:x="86968" fg:w="175"/><text x="17.0529%" y="543.50"></text></g><g><title>do_syscall_64 (180 samples, 0.03%)</title><rect x="16.8027%" y="581" width="0.0348%" height="15" fill="rgb(206,104,37)" fg:x="86967" fg:w="180"/><text x="17.0527%" y="591.50"></text></g><g><title>__x64_sys_futex (180 samples, 0.03%)</title><rect x="16.8027%" y="565" width="0.0348%" height="15" fill="rgb(223,8,27)" fg:x="86967" fg:w="180"/><text x="17.0527%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.04%)</title><rect x="16.8025%" y="597" width="0.0359%" height="15" fill="rgb(216,217,28)" fg:x="86966" fg:w="186"/><text x="17.0525%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (196 samples, 0.04%)</title><rect x="16.8008%" y="645" width="0.0379%" height="15" fill="rgb(249,199,1)" fg:x="86957" fg:w="196"/><text x="17.0508%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (196 samples, 0.04%)</title><rect x="16.8008%" y="629" width="0.0379%" height="15" fill="rgb(240,85,17)" fg:x="86957" fg:w="196"/><text x="17.0508%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (194 samples, 0.04%)</title><rect x="16.8012%" y="613" width="0.0375%" height="15" fill="rgb(206,108,45)" fg:x="86959" fg:w="194"/><text x="17.0512%" y="623.50"></text></g><g><title>os::PlatformEvent::park (211 samples, 0.04%)</title><rect x="16.8004%" y="661" width="0.0408%" height="15" fill="rgb(245,210,41)" fg:x="86955" fg:w="211"/><text x="17.0504%" y="671.50"></text></g><g><title>Monitor::IWait (244 samples, 0.05%)</title><rect x="16.7942%" y="677" width="0.0471%" height="15" fill="rgb(206,13,37)" fg:x="86923" fg:w="244"/><text x="17.0442%" y="687.50"></text></g><g><title>Monitor::wait (256 samples, 0.05%)</title><rect x="16.7934%" y="693" width="0.0495%" height="15" fill="rgb(250,61,18)" fg:x="86919" fg:w="256"/><text x="17.0434%" y="703.50"></text></g><g><title>CompileQueue::get (307 samples, 0.06%)</title><rect x="16.7907%" y="709" width="0.0593%" height="15" fill="rgb(235,172,48)" fg:x="86905" fg:w="307"/><text x="17.0407%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,169 samples, 0.23%)</title><rect x="16.6246%" y="725" width="0.2259%" height="15" fill="rgb(249,201,17)" fg:x="86045" fg:w="1169"/><text x="16.8746%" y="735.50"></text></g><g><title>Thread::call_run (1,175 samples, 0.23%)</title><rect x="16.6244%" y="757" width="0.2270%" height="15" fill="rgb(219,208,6)" fg:x="86044" fg:w="1175"/><text x="16.8744%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (1,174 samples, 0.23%)</title><rect x="16.6246%" y="741" width="0.2268%" height="15" fill="rgb(248,31,23)" fg:x="86045" fg:w="1174"/><text x="16.8746%" y="751.50"></text></g><g><title>__GI___clone (1,203 samples, 0.23%)</title><rect x="16.6196%" y="805" width="0.2324%" height="15" fill="rgb(245,15,42)" fg:x="86019" fg:w="1203"/><text x="16.8696%" y="815.50"></text></g><g><title>start_thread (1,179 samples, 0.23%)</title><rect x="16.6242%" y="789" width="0.2278%" height="15" fill="rgb(222,217,39)" fg:x="86043" fg:w="1179"/><text x="16.8742%" y="799.50"></text></g><g><title>thread_native_entry (1,178 samples, 0.23%)</title><rect x="16.6244%" y="773" width="0.2276%" height="15" fill="rgb(210,219,27)" fg:x="86044" fg:w="1178"/><text x="16.8744%" y="783.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="16.8551%" y="805" width="0.0110%" height="15" fill="rgb(252,166,36)" fg:x="87238" fg:w="57"/><text x="17.1051%" y="815.50"></text></g><g><title>C2_CompilerThre (74,446 samples, 14.38%)</title><rect x="2.4955%" y="821" width="14.3836%" height="15" fill="rgb(245,132,34)" fg:x="12916" fg:w="74446"/><text x="2.7455%" y="831.50">C2_CompilerThre</text></g><g><title>[perf-965379.map] (100 samples, 0.02%)</title><rect x="16.8798%" y="805" width="0.0193%" height="15" fill="rgb(236,54,3)" fg:x="87366" fg:w="100"/><text x="17.1298%" y="815.50"></text></g><g><title>Command-Accumul (124 samples, 0.02%)</title><rect x="16.8790%" y="821" width="0.0240%" height="15" fill="rgb(241,173,43)" fg:x="87362" fg:w="124"/><text x="17.1290%" y="831.50"></text></g><g><title>[anon] (108 samples, 0.02%)</title><rect x="16.9127%" y="805" width="0.0209%" height="15" fill="rgb(215,190,9)" fg:x="87536" fg:w="108"/><text x="17.1627%" y="815.50"></text></g><g><title>JVM_IsInterrupted (95 samples, 0.02%)</title><rect x="17.3174%" y="789" width="0.0184%" height="15" fill="rgb(242,101,16)" fg:x="89631" fg:w="95"/><text x="17.5674%" y="799.50"></text></g><g><title>hrtimer_start_range_ns (67 samples, 0.01%)</title><rect x="17.4440%" y="613" width="0.0129%" height="15" fill="rgb(223,190,21)" fg:x="90286" fg:w="67"/><text x="17.6940%" y="623.50"></text></g><g><title>update_curr (91 samples, 0.02%)</title><rect x="17.5000%" y="549" width="0.0176%" height="15" fill="rgb(215,228,25)" fg:x="90576" fg:w="91"/><text x="17.7500%" y="559.50"></text></g><g><title>dequeue_entity (206 samples, 0.04%)</title><rect x="17.4874%" y="565" width="0.0398%" height="15" fill="rgb(225,36,22)" fg:x="90511" fg:w="206"/><text x="17.7374%" y="575.50"></text></g><g><title>dequeue_task_fair (234 samples, 0.05%)</title><rect x="17.4824%" y="581" width="0.0452%" height="15" fill="rgb(251,106,46)" fg:x="90485" fg:w="234"/><text x="17.7324%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.01%)</title><rect x="17.5309%" y="565" width="0.0141%" height="15" fill="rgb(208,90,1)" fg:x="90736" fg:w="73"/><text x="17.7809%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="17.5327%" y="549" width="0.0124%" height="15" fill="rgb(243,10,4)" fg:x="90745" fg:w="64"/><text x="17.7827%" y="559.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="17.5334%" y="533" width="0.0116%" height="15" fill="rgb(212,137,27)" fg:x="90749" fg:w="60"/><text x="17.7834%" y="543.50"></text></g><g><title>finish_task_switch (91 samples, 0.02%)</title><rect x="17.5276%" y="581" width="0.0176%" height="15" fill="rgb(231,220,49)" fg:x="90719" fg:w="91"/><text x="17.7776%" y="591.50"></text></g><g><title>psi_task_change (160 samples, 0.03%)</title><rect x="17.5616%" y="581" width="0.0309%" height="15" fill="rgb(237,96,20)" fg:x="90895" fg:w="160"/><text x="17.8116%" y="591.50"></text></g><g><title>psi_group_change (120 samples, 0.02%)</title><rect x="17.5694%" y="565" width="0.0232%" height="15" fill="rgb(239,229,30)" fg:x="90935" fg:w="120"/><text x="17.8194%" y="575.50"></text></g><g><title>futex_wait_queue_me (862 samples, 0.17%)</title><rect x="17.4343%" y="629" width="0.1665%" height="15" fill="rgb(219,65,33)" fg:x="90236" fg:w="862"/><text x="17.6843%" y="639.50"></text></g><g><title>schedule (731 samples, 0.14%)</title><rect x="17.4596%" y="613" width="0.1412%" height="15" fill="rgb(243,134,7)" fg:x="90367" fg:w="731"/><text x="17.7096%" y="623.50"></text></g><g><title>__schedule (711 samples, 0.14%)</title><rect x="17.4635%" y="597" width="0.1374%" height="15" fill="rgb(216,177,54)" fg:x="90387" fg:w="711"/><text x="17.7135%" y="607.50"></text></g><g><title>futex_wait_setup (59 samples, 0.01%)</title><rect x="17.6009%" y="629" width="0.0114%" height="15" fill="rgb(211,160,20)" fg:x="91098" fg:w="59"/><text x="17.8509%" y="639.50"></text></g><g><title>hrtimer_cancel (71 samples, 0.01%)</title><rect x="17.6123%" y="629" width="0.0137%" height="15" fill="rgb(239,85,39)" fg:x="91157" fg:w="71"/><text x="17.8623%" y="639.50"></text></g><g><title>hrtimer_try_to_cancel.part.0 (53 samples, 0.01%)</title><rect x="17.6157%" y="613" width="0.0102%" height="15" fill="rgb(232,125,22)" fg:x="91175" fg:w="53"/><text x="17.8657%" y="623.50"></text></g><g><title>do_futex (1,067 samples, 0.21%)</title><rect x="17.4237%" y="661" width="0.2062%" height="15" fill="rgb(244,57,34)" fg:x="90181" fg:w="1067"/><text x="17.6737%" y="671.50"></text></g><g><title>futex_wait (1,055 samples, 0.20%)</title><rect x="17.4260%" y="645" width="0.2038%" height="15" fill="rgb(214,203,32)" fg:x="90193" fg:w="1055"/><text x="17.6760%" y="655.50"></text></g><g><title>__x64_sys_futex (1,099 samples, 0.21%)</title><rect x="17.4219%" y="677" width="0.2123%" height="15" fill="rgb(207,58,43)" fg:x="90172" fg:w="1099"/><text x="17.6719%" y="687.50"></text></g><g><title>do_syscall_64 (1,108 samples, 0.21%)</title><rect x="17.4212%" y="693" width="0.2141%" height="15" fill="rgb(215,193,15)" fg:x="90168" fg:w="1108"/><text x="17.6712%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,155 samples, 0.22%)</title><rect x="17.4175%" y="709" width="0.2232%" height="15" fill="rgb(232,15,44)" fg:x="90149" fg:w="1155"/><text x="17.6675%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (1,304 samples, 0.25%)</title><rect x="17.3899%" y="757" width="0.2519%" height="15" fill="rgb(212,3,48)" fg:x="90006" fg:w="1304"/><text x="17.6399%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (1,300 samples, 0.25%)</title><rect x="17.3906%" y="741" width="0.2512%" height="15" fill="rgb(218,128,7)" fg:x="90010" fg:w="1300"/><text x="17.6406%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (1,228 samples, 0.24%)</title><rect x="17.4046%" y="725" width="0.2373%" height="15" fill="rgb(226,216,39)" fg:x="90082" fg:w="1228"/><text x="17.6546%" y="735.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.01%)</title><rect x="17.6613%" y="709" width="0.0139%" height="15" fill="rgb(243,47,51)" fg:x="91411" fg:w="72"/><text x="17.9113%" y="719.50"></text></g><g><title>do_futex (66 samples, 0.01%)</title><rect x="17.6625%" y="693" width="0.0128%" height="15" fill="rgb(241,183,40)" fg:x="91417" fg:w="66"/><text x="17.9125%" y="703.50"></text></g><g><title>futex_wake (55 samples, 0.01%)</title><rect x="17.6646%" y="677" width="0.0106%" height="15" fill="rgb(231,217,32)" fg:x="91428" fg:w="55"/><text x="17.9146%" y="687.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="17.6596%" y="725" width="0.0162%" height="15" fill="rgb(229,61,38)" fg:x="91402" fg:w="84"/><text x="17.9096%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="17.6586%" y="741" width="0.0178%" height="15" fill="rgb(225,210,5)" fg:x="91397" fg:w="92"/><text x="17.9086%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (138 samples, 0.03%)</title><rect x="17.6505%" y="757" width="0.0267%" height="15" fill="rgb(231,79,45)" fg:x="91355" fg:w="138"/><text x="17.9005%" y="767.50"></text></g><g><title>Parker::park (1,713 samples, 0.33%)</title><rect x="17.3563%" y="773" width="0.3310%" height="15" fill="rgb(224,100,7)" fg:x="89832" fg:w="1713"/><text x="17.6063%" y="783.50"></text></g><g><title>Unsafe_Park (1,806 samples, 0.35%)</title><rect x="17.3447%" y="789" width="0.3489%" height="15" fill="rgb(241,198,18)" fg:x="89772" fg:w="1806"/><text x="17.5947%" y="799.50"></text></g><g><title>[perf-965379.map] (3,964 samples, 0.77%)</title><rect x="16.9335%" y="805" width="0.7659%" height="15" fill="rgb(252,97,53)" fg:x="87644" fg:w="3964"/><text x="17.1835%" y="815.50"></text></g><g><title>[unknown] (60 samples, 0.01%)</title><rect x="17.6994%" y="805" width="0.0116%" height="15" fill="rgb(220,88,7)" fg:x="91608" fg:w="60"/><text x="17.9494%" y="815.50"></text></g><g><title>ForkJoinPool.co (4,169 samples, 0.81%)</title><rect x="16.9125%" y="821" width="0.8055%" height="15" fill="rgb(213,176,14)" fg:x="87535" fg:w="4169"/><text x="17.1625%" y="831.50"></text></g><g><title>OopOopIterateDispatch&lt;G1ConcurrentRefineOopClosure&gt;::Table::oop_oop_iterate&lt;InstanceKlass, unsigned int&gt; (57 samples, 0.01%)</title><rect x="17.7622%" y="677" width="0.0110%" height="15" fill="rgb(246,73,7)" fg:x="91933" fg:w="57"/><text x="18.0122%" y="687.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (169 samples, 0.03%)</title><rect x="17.7456%" y="709" width="0.0327%" height="15" fill="rgb(245,64,36)" fg:x="91847" fg:w="169"/><text x="17.9956%" y="719.50"></text></g><g><title>G1RemSet::refine_card_concurrently (168 samples, 0.03%)</title><rect x="17.7458%" y="693" width="0.0325%" height="15" fill="rgb(245,80,10)" fg:x="91848" fg:w="168"/><text x="17.9958%" y="703.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (201 samples, 0.04%)</title><rect x="17.7456%" y="725" width="0.0388%" height="15" fill="rgb(232,107,50)" fg:x="91847" fg:w="201"/><text x="17.9956%" y="735.50"></text></g><g><title>G1_Refine#0 (223 samples, 0.04%)</title><rect x="17.7433%" y="821" width="0.0431%" height="15" fill="rgb(253,3,0)" fg:x="91835" fg:w="223"/><text x="17.9933%" y="831.50"></text></g><g><title>__GI___clone (211 samples, 0.04%)</title><rect x="17.7456%" y="805" width="0.0408%" height="15" fill="rgb(212,99,53)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="815.50"></text></g><g><title>start_thread (211 samples, 0.04%)</title><rect x="17.7456%" y="789" width="0.0408%" height="15" fill="rgb(249,111,54)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="799.50"></text></g><g><title>thread_native_entry (211 samples, 0.04%)</title><rect x="17.7456%" y="773" width="0.0408%" height="15" fill="rgb(249,55,30)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="783.50"></text></g><g><title>Thread::call_run (211 samples, 0.04%)</title><rect x="17.7456%" y="757" width="0.0408%" height="15" fill="rgb(237,47,42)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (211 samples, 0.04%)</title><rect x="17.7456%" y="741" width="0.0408%" height="15" fill="rgb(211,20,18)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="751.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (53 samples, 0.01%)</title><rect x="17.7871%" y="709" width="0.0102%" height="15" fill="rgb(231,203,46)" fg:x="92062" fg:w="53"/><text x="18.0371%" y="719.50"></text></g><g><title>G1RemSet::refine_card_concurrently (53 samples, 0.01%)</title><rect x="17.7871%" y="693" width="0.0102%" height="15" fill="rgb(237,142,3)" fg:x="92062" fg:w="53"/><text x="18.0371%" y="703.50"></text></g><g><title>G1_Refine#1 (85 samples, 0.02%)</title><rect x="17.7863%" y="821" width="0.0164%" height="15" fill="rgb(241,107,1)" fg:x="92058" fg:w="85"/><text x="18.0363%" y="831.50"></text></g><g><title>__GI___clone (81 samples, 0.02%)</title><rect x="17.7871%" y="805" width="0.0156%" height="15" fill="rgb(229,83,13)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="815.50"></text></g><g><title>start_thread (81 samples, 0.02%)</title><rect x="17.7871%" y="789" width="0.0156%" height="15" fill="rgb(241,91,40)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="799.50"></text></g><g><title>thread_native_entry (81 samples, 0.02%)</title><rect x="17.7871%" y="773" width="0.0156%" height="15" fill="rgb(225,3,45)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="783.50"></text></g><g><title>Thread::call_run (81 samples, 0.02%)</title><rect x="17.7871%" y="757" width="0.0156%" height="15" fill="rgb(244,223,14)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (81 samples, 0.02%)</title><rect x="17.7871%" y="741" width="0.0156%" height="15" fill="rgb(224,124,37)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (81 samples, 0.02%)</title><rect x="17.7871%" y="725" width="0.0156%" height="15" fill="rgb(251,171,30)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="735.50"></text></g><g><title>__GI___clone (74 samples, 0.01%)</title><rect x="17.8031%" y="805" width="0.0143%" height="15" fill="rgb(236,46,54)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="815.50"></text></g><g><title>start_thread (74 samples, 0.01%)</title><rect x="17.8031%" y="789" width="0.0143%" height="15" fill="rgb(245,213,5)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="799.50"></text></g><g><title>thread_native_entry (74 samples, 0.01%)</title><rect x="17.8031%" y="773" width="0.0143%" height="15" fill="rgb(230,144,27)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="783.50"></text></g><g><title>Thread::call_run (74 samples, 0.01%)</title><rect x="17.8031%" y="757" width="0.0143%" height="15" fill="rgb(220,86,6)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (74 samples, 0.01%)</title><rect x="17.8031%" y="741" width="0.0143%" height="15" fill="rgb(240,20,13)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (74 samples, 0.01%)</title><rect x="17.8031%" y="725" width="0.0143%" height="15" fill="rgb(217,89,34)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="735.50"></text></g><g><title>G1_Refine#2 (77 samples, 0.01%)</title><rect x="17.8028%" y="821" width="0.0149%" height="15" fill="rgb(229,13,5)" fg:x="92143" fg:w="77"/><text x="18.0528%" y="831.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (84 samples, 0.02%)</title><rect x="17.8310%" y="693" width="0.0162%" height="15" fill="rgb(244,67,35)" fg:x="92289" fg:w="84"/><text x="18.0810%" y="703.50"></text></g><g><title>G1CollectionSet::iterate (86 samples, 0.02%)</title><rect x="17.8308%" y="709" width="0.0166%" height="15" fill="rgb(221,40,2)" fg:x="92288" fg:w="86"/><text x="18.0808%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (113 samples, 0.02%)</title><rect x="17.8308%" y="725" width="0.0218%" height="15" fill="rgb(237,157,21)" fg:x="92288" fg:w="113"/><text x="18.0808%" y="735.50"></text></g><g><title>G1_Young_RemSet (124 samples, 0.02%)</title><rect x="17.8304%" y="821" width="0.0240%" height="15" fill="rgb(222,94,11)" fg:x="92286" fg:w="124"/><text x="18.0804%" y="831.50"></text></g><g><title>__GI___clone (122 samples, 0.02%)</title><rect x="17.8308%" y="805" width="0.0236%" height="15" fill="rgb(249,113,6)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="815.50"></text></g><g><title>start_thread (122 samples, 0.02%)</title><rect x="17.8308%" y="789" width="0.0236%" height="15" fill="rgb(238,137,36)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="799.50"></text></g><g><title>thread_native_entry (122 samples, 0.02%)</title><rect x="17.8308%" y="773" width="0.0236%" height="15" fill="rgb(210,102,26)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="783.50"></text></g><g><title>Thread::call_run (122 samples, 0.02%)</title><rect x="17.8308%" y="757" width="0.0236%" height="15" fill="rgb(218,30,30)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (122 samples, 0.02%)</title><rect x="17.8308%" y="741" width="0.0236%" height="15" fill="rgb(214,67,26)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.01%)</title><rect x="17.8673%" y="677" width="0.0124%" height="15" fill="rgb(251,9,53)" fg:x="92477" fg:w="64"/><text x="18.1173%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (117 samples, 0.02%)</title><rect x="17.8578%" y="693" width="0.0226%" height="15" fill="rgb(228,204,25)" fg:x="92428" fg:w="117"/><text x="18.1078%" y="703.50"></text></g><g><title>SpinPause (127 samples, 0.02%)</title><rect x="17.8814%" y="693" width="0.0245%" height="15" fill="rgb(207,153,8)" fg:x="92550" fg:w="127"/><text x="18.1314%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (256 samples, 0.05%)</title><rect x="17.8567%" y="709" width="0.0495%" height="15" fill="rgb(242,9,16)" fg:x="92422" fg:w="256"/><text x="18.1067%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (120 samples, 0.02%)</title><rect x="17.9106%" y="613" width="0.0232%" height="15" fill="rgb(217,211,10)" fg:x="92701" fg:w="120"/><text x="18.1606%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (86 samples, 0.02%)</title><rect x="17.9171%" y="597" width="0.0166%" height="15" fill="rgb(219,228,52)" fg:x="92735" fg:w="86"/><text x="18.1671%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (145 samples, 0.03%)</title><rect x="17.9063%" y="629" width="0.0280%" height="15" fill="rgb(231,92,29)" fg:x="92679" fg:w="145"/><text x="18.1563%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (162 samples, 0.03%)</title><rect x="17.9063%" y="677" width="0.0313%" height="15" fill="rgb(232,8,23)" fg:x="92679" fg:w="162"/><text x="18.1563%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (162 samples, 0.03%)</title><rect x="17.9063%" y="661" width="0.0313%" height="15" fill="rgb(216,211,34)" fg:x="92679" fg:w="162"/><text x="18.1563%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (162 samples, 0.03%)</title><rect x="17.9063%" y="645" width="0.0313%" height="15" fill="rgb(236,151,0)" fg:x="92679" fg:w="162"/><text x="18.1563%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (194 samples, 0.04%)</title><rect x="17.9063%" y="709" width="0.0375%" height="15" fill="rgb(209,168,3)" fg:x="92679" fg:w="194"/><text x="18.1563%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (194 samples, 0.04%)</title><rect x="17.9063%" y="693" width="0.0375%" height="15" fill="rgb(208,129,28)" fg:x="92679" fg:w="194"/><text x="18.1563%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (70 samples, 0.01%)</title><rect x="17.9442%" y="629" width="0.0135%" height="15" fill="rgb(229,78,22)" fg:x="92875" fg:w="70"/><text x="18.1942%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (92 samples, 0.02%)</title><rect x="17.9442%" y="645" width="0.0178%" height="15" fill="rgb(228,187,13)" fg:x="92875" fg:w="92"/><text x="18.1942%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (96 samples, 0.02%)</title><rect x="17.9440%" y="661" width="0.0185%" height="15" fill="rgb(240,119,24)" fg:x="92874" fg:w="96"/><text x="18.1940%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (100 samples, 0.02%)</title><rect x="17.9438%" y="709" width="0.0193%" height="15" fill="rgb(209,194,42)" fg:x="92873" fg:w="100"/><text x="18.1938%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (100 samples, 0.02%)</title><rect x="17.9438%" y="693" width="0.0193%" height="15" fill="rgb(247,200,46)" fg:x="92873" fg:w="100"/><text x="18.1938%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (100 samples, 0.02%)</title><rect x="17.9438%" y="677" width="0.0193%" height="15" fill="rgb(218,76,16)" fg:x="92873" fg:w="100"/><text x="18.1938%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (52 samples, 0.01%)</title><rect x="17.9707%" y="613" width="0.0100%" height="15" fill="rgb(225,21,48)" fg:x="93012" fg:w="52"/><text x="18.2207%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (89 samples, 0.02%)</title><rect x="17.9639%" y="677" width="0.0172%" height="15" fill="rgb(239,223,50)" fg:x="92977" fg:w="89"/><text x="18.2139%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (88 samples, 0.02%)</title><rect x="17.9641%" y="661" width="0.0170%" height="15" fill="rgb(244,45,21)" fg:x="92978" fg:w="88"/><text x="18.2141%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (88 samples, 0.02%)</title><rect x="17.9641%" y="645" width="0.0170%" height="15" fill="rgb(232,33,43)" fg:x="92978" fg:w="88"/><text x="18.2141%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (73 samples, 0.01%)</title><rect x="17.9670%" y="629" width="0.0141%" height="15" fill="rgb(209,8,3)" fg:x="92993" fg:w="73"/><text x="18.2170%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (163 samples, 0.03%)</title><rect x="17.9639%" y="693" width="0.0315%" height="15" fill="rgb(214,25,53)" fg:x="92977" fg:w="163"/><text x="18.2139%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (74 samples, 0.01%)</title><rect x="17.9811%" y="677" width="0.0143%" height="15" fill="rgb(254,186,54)" fg:x="93066" fg:w="74"/><text x="18.2311%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (74 samples, 0.01%)</title><rect x="17.9811%" y="661" width="0.0143%" height="15" fill="rgb(208,174,49)" fg:x="93066" fg:w="74"/><text x="18.2311%" y="671.50"></text></g><g><title>JavaThread::oops_do (74 samples, 0.01%)</title><rect x="17.9811%" y="645" width="0.0143%" height="15" fill="rgb(233,191,51)" fg:x="93066" fg:w="74"/><text x="18.2311%" y="655.50"></text></g><g><title>G1ParTask::work (767 samples, 0.15%)</title><rect x="17.8567%" y="725" width="0.1482%" height="15" fill="rgb(222,134,10)" fg:x="92422" fg:w="767"/><text x="18.1067%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (216 samples, 0.04%)</title><rect x="17.9631%" y="709" width="0.0417%" height="15" fill="rgb(230,226,20)" fg:x="92973" fg:w="216"/><text x="18.2131%" y="719.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="18.0263%" y="565" width="0.0108%" height="15" fill="rgb(251,111,25)" fg:x="93300" fg:w="56"/><text x="18.2763%" y="575.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="18.0265%" y="549" width="0.0106%" height="15" fill="rgb(224,40,46)" fg:x="93301" fg:w="55"/><text x="18.2765%" y="559.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="18.0265%" y="533" width="0.0106%" height="15" fill="rgb(236,108,47)" fg:x="93301" fg:w="55"/><text x="18.2765%" y="543.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="18.0253%" y="629" width="0.0120%" height="15" fill="rgb(234,93,0)" fg:x="93295" fg:w="62"/><text x="18.2753%" y="639.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="18.0253%" y="613" width="0.0120%" height="15" fill="rgb(224,213,32)" fg:x="93295" fg:w="62"/><text x="18.2753%" y="623.50"></text></g><g><title>do_futex (59 samples, 0.01%)</title><rect x="18.0259%" y="597" width="0.0114%" height="15" fill="rgb(251,11,48)" fg:x="93298" fg:w="59"/><text x="18.2759%" y="607.50"></text></g><g><title>futex_wait (59 samples, 0.01%)</title><rect x="18.0259%" y="581" width="0.0114%" height="15" fill="rgb(236,173,5)" fg:x="93298" fg:w="59"/><text x="18.2759%" y="591.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.01%)</title><rect x="18.0253%" y="725" width="0.0128%" height="15" fill="rgb(230,95,12)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="735.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.01%)</title><rect x="18.0253%" y="709" width="0.0128%" height="15" fill="rgb(232,209,1)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="719.50"></text></g><g><title>__new_sem_wait_slow (66 samples, 0.01%)</title><rect x="18.0253%" y="693" width="0.0128%" height="15" fill="rgb(232,6,1)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="703.50"></text></g><g><title>do_futex_wait (66 samples, 0.01%)</title><rect x="18.0253%" y="677" width="0.0128%" height="15" fill="rgb(210,224,50)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (66 samples, 0.01%)</title><rect x="18.0253%" y="661" width="0.0128%" height="15" fill="rgb(228,127,35)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.01%)</title><rect x="18.0253%" y="645" width="0.0128%" height="15" fill="rgb(245,102,45)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="655.50"></text></g><g><title>GC_Thread#0 (952 samples, 0.18%)</title><rect x="17.8543%" y="821" width="0.1839%" height="15" fill="rgb(214,1,49)" fg:x="92410" fg:w="952"/><text x="18.1043%" y="831.50"></text></g><g><title>__GI___clone (943 samples, 0.18%)</title><rect x="17.8561%" y="805" width="0.1822%" height="15" fill="rgb(226,163,40)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="815.50"></text></g><g><title>start_thread (943 samples, 0.18%)</title><rect x="17.8561%" y="789" width="0.1822%" height="15" fill="rgb(239,212,28)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="799.50"></text></g><g><title>thread_native_entry (943 samples, 0.18%)</title><rect x="17.8561%" y="773" width="0.1822%" height="15" fill="rgb(220,20,13)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="783.50"></text></g><g><title>Thread::call_run (943 samples, 0.18%)</title><rect x="17.8561%" y="757" width="0.1822%" height="15" fill="rgb(210,164,35)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="767.50"></text></g><g><title>GangWorker::loop (943 samples, 0.18%)</title><rect x="17.8561%" y="741" width="0.1822%" height="15" fill="rgb(248,109,41)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (76 samples, 0.01%)</title><rect x="18.0605%" y="677" width="0.0147%" height="15" fill="rgb(238,23,50)" fg:x="93477" fg:w="76"/><text x="18.3105%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (157 samples, 0.03%)</title><rect x="18.0456%" y="693" width="0.0303%" height="15" fill="rgb(211,48,49)" fg:x="93400" fg:w="157"/><text x="18.2956%" y="703.50"></text></g><g><title>SpinPause (87 samples, 0.02%)</title><rect x="18.0773%" y="693" width="0.0168%" height="15" fill="rgb(223,36,21)" fg:x="93564" fg:w="87"/><text x="18.3273%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (269 samples, 0.05%)</title><rect x="18.0435%" y="709" width="0.0520%" height="15" fill="rgb(207,123,46)" fg:x="93389" fg:w="269"/><text x="18.2935%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.01%)</title><rect x="18.0982%" y="613" width="0.0120%" height="15" fill="rgb(240,218,32)" fg:x="93672" fg:w="62"/><text x="18.3482%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (56 samples, 0.01%)</title><rect x="18.0993%" y="597" width="0.0108%" height="15" fill="rgb(252,5,43)" fg:x="93678" fg:w="56"/><text x="18.3493%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (84 samples, 0.02%)</title><rect x="18.0955%" y="629" width="0.0162%" height="15" fill="rgb(252,84,19)" fg:x="93658" fg:w="84"/><text x="18.3455%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (91 samples, 0.02%)</title><rect x="18.0955%" y="709" width="0.0176%" height="15" fill="rgb(243,152,39)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (91 samples, 0.02%)</title><rect x="18.0955%" y="693" width="0.0176%" height="15" fill="rgb(234,160,15)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (91 samples, 0.02%)</title><rect x="18.0955%" y="677" width="0.0176%" height="15" fill="rgb(237,34,20)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (91 samples, 0.02%)</title><rect x="18.0955%" y="661" width="0.0176%" height="15" fill="rgb(229,97,13)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (91 samples, 0.02%)</title><rect x="18.0955%" y="645" width="0.0176%" height="15" fill="rgb(234,71,50)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.01%)</title><rect x="18.1134%" y="629" width="0.0100%" height="15" fill="rgb(253,155,4)" fg:x="93751" fg:w="52"/><text x="18.3634%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (68 samples, 0.01%)</title><rect x="18.1134%" y="645" width="0.0131%" height="15" fill="rgb(222,185,37)" fg:x="93751" fg:w="68"/><text x="18.3634%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (74 samples, 0.01%)</title><rect x="18.1132%" y="661" width="0.0143%" height="15" fill="rgb(251,177,13)" fg:x="93750" fg:w="74"/><text x="18.3632%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (79 samples, 0.02%)</title><rect x="18.1131%" y="709" width="0.0153%" height="15" fill="rgb(250,179,40)" fg:x="93749" fg:w="79"/><text x="18.3631%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (79 samples, 0.02%)</title><rect x="18.1131%" y="693" width="0.0153%" height="15" fill="rgb(242,44,2)" fg:x="93749" fg:w="79"/><text x="18.3631%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (79 samples, 0.02%)</title><rect x="18.1131%" y="677" width="0.0153%" height="15" fill="rgb(216,177,13)" fg:x="93749" fg:w="79"/><text x="18.3631%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (94 samples, 0.02%)</title><rect x="18.1347%" y="613" width="0.0182%" height="15" fill="rgb(216,106,43)" fg:x="93861" fg:w="94"/><text x="18.3847%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="18.1395%" y="597" width="0.0133%" height="15" fill="rgb(216,183,2)" fg:x="93886" fg:w="69"/><text x="18.3895%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (129 samples, 0.02%)</title><rect x="18.1285%" y="677" width="0.0249%" height="15" fill="rgb(249,75,3)" fg:x="93829" fg:w="129"/><text x="18.3785%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (126 samples, 0.02%)</title><rect x="18.1291%" y="661" width="0.0243%" height="15" fill="rgb(219,67,39)" fg:x="93832" fg:w="126"/><text x="18.3791%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (126 samples, 0.02%)</title><rect x="18.1291%" y="645" width="0.0243%" height="15" fill="rgb(253,228,2)" fg:x="93832" fg:w="126"/><text x="18.3791%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (120 samples, 0.02%)</title><rect x="18.1302%" y="629" width="0.0232%" height="15" fill="rgb(235,138,27)" fg:x="93838" fg:w="120"/><text x="18.3802%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (226 samples, 0.04%)</title><rect x="18.1285%" y="693" width="0.0437%" height="15" fill="rgb(236,97,51)" fg:x="93829" fg:w="226"/><text x="18.3785%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (97 samples, 0.02%)</title><rect x="18.1534%" y="677" width="0.0187%" height="15" fill="rgb(240,80,30)" fg:x="93958" fg:w="97"/><text x="18.4034%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (97 samples, 0.02%)</title><rect x="18.1534%" y="661" width="0.0187%" height="15" fill="rgb(230,178,19)" fg:x="93958" fg:w="97"/><text x="18.4034%" y="671.50"></text></g><g><title>JavaThread::oops_do (97 samples, 0.02%)</title><rect x="18.1534%" y="645" width="0.0187%" height="15" fill="rgb(210,190,27)" fg:x="93958" fg:w="97"/><text x="18.4034%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (79 samples, 0.02%)</title><rect x="18.1569%" y="629" width="0.0153%" height="15" fill="rgb(222,107,31)" fg:x="93976" fg:w="79"/><text x="18.4069%" y="639.50"></text></g><g><title>G1ParTask::work (686 samples, 0.13%)</title><rect x="18.0435%" y="725" width="0.1325%" height="15" fill="rgb(216,127,34)" fg:x="93389" fg:w="686"/><text x="18.2935%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (247 samples, 0.05%)</title><rect x="18.1283%" y="709" width="0.0477%" height="15" fill="rgb(234,116,52)" fg:x="93828" fg:w="247"/><text x="18.3783%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="18.1979%" y="501" width="0.0120%" height="15" fill="rgb(222,124,15)" fg:x="94188" fg:w="62"/><text x="18.4479%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="18.1981%" y="485" width="0.0118%" height="15" fill="rgb(231,179,28)" fg:x="94189" fg:w="61"/><text x="18.4481%" y="495.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="18.1983%" y="469" width="0.0116%" height="15" fill="rgb(226,93,45)" fg:x="94190" fg:w="60"/><text x="18.4483%" y="479.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="18.1979%" y="517" width="0.0126%" height="15" fill="rgb(215,8,51)" fg:x="94188" fg:w="65"/><text x="18.4479%" y="527.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.01%)</title><rect x="18.1971%" y="565" width="0.0141%" height="15" fill="rgb(223,106,5)" fg:x="94184" fg:w="73"/><text x="18.4471%" y="575.50"></text></g><g><title>schedule (72 samples, 0.01%)</title><rect x="18.1973%" y="549" width="0.0139%" height="15" fill="rgb(250,191,5)" fg:x="94185" fg:w="72"/><text x="18.4473%" y="559.50"></text></g><g><title>__schedule (72 samples, 0.01%)</title><rect x="18.1973%" y="533" width="0.0139%" height="15" fill="rgb(242,132,44)" fg:x="94185" fg:w="72"/><text x="18.4473%" y="543.50"></text></g><g><title>do_syscall_64 (75 samples, 0.01%)</title><rect x="18.1969%" y="629" width="0.0145%" height="15" fill="rgb(251,152,29)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="639.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.01%)</title><rect x="18.1969%" y="613" width="0.0145%" height="15" fill="rgb(218,179,5)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="623.50"></text></g><g><title>do_futex (75 samples, 0.01%)</title><rect x="18.1969%" y="597" width="0.0145%" height="15" fill="rgb(227,67,19)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="607.50"></text></g><g><title>futex_wait (75 samples, 0.01%)</title><rect x="18.1969%" y="581" width="0.0145%" height="15" fill="rgb(233,119,31)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="591.50"></text></g><g><title>__new_sem_wait_slow (77 samples, 0.01%)</title><rect x="18.1967%" y="693" width="0.0149%" height="15" fill="rgb(241,120,22)" fg:x="94182" fg:w="77"/><text x="18.4467%" y="703.50"></text></g><g><title>do_futex_wait (77 samples, 0.01%)</title><rect x="18.1967%" y="677" width="0.0149%" height="15" fill="rgb(224,102,30)" fg:x="94182" fg:w="77"/><text x="18.4467%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (77 samples, 0.01%)</title><rect x="18.1967%" y="661" width="0.0149%" height="15" fill="rgb(210,164,37)" fg:x="94182" fg:w="77"/><text x="18.4467%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.01%)</title><rect x="18.1969%" y="645" width="0.0147%" height="15" fill="rgb(226,191,16)" fg:x="94183" fg:w="76"/><text x="18.4469%" y="655.50"></text></g><g><title>__GI___clone (881 samples, 0.17%)</title><rect x="18.0416%" y="805" width="0.1702%" height="15" fill="rgb(214,40,45)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="815.50"></text></g><g><title>start_thread (881 samples, 0.17%)</title><rect x="18.0416%" y="789" width="0.1702%" height="15" fill="rgb(244,29,26)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="799.50"></text></g><g><title>thread_native_entry (881 samples, 0.17%)</title><rect x="18.0416%" y="773" width="0.1702%" height="15" fill="rgb(216,16,5)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="783.50"></text></g><g><title>Thread::call_run (881 samples, 0.17%)</title><rect x="18.0416%" y="757" width="0.1702%" height="15" fill="rgb(249,76,35)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="767.50"></text></g><g><title>GangWorker::loop (881 samples, 0.17%)</title><rect x="18.0416%" y="741" width="0.1702%" height="15" fill="rgb(207,11,44)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (80 samples, 0.02%)</title><rect x="18.1963%" y="725" width="0.0155%" height="15" fill="rgb(228,190,49)" fg:x="94180" fg:w="80"/><text x="18.4463%" y="735.50"></text></g><g><title>PosixSemaphore::wait (80 samples, 0.02%)</title><rect x="18.1963%" y="709" width="0.0155%" height="15" fill="rgb(214,173,12)" fg:x="94180" fg:w="80"/><text x="18.4463%" y="719.50"></text></g><g><title>GC_Thread#1 (903 samples, 0.17%)</title><rect x="18.0383%" y="821" width="0.1745%" height="15" fill="rgb(218,26,35)" fg:x="93362" fg:w="903"/><text x="18.2883%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.01%)</title><rect x="18.2344%" y="677" width="0.0126%" height="15" fill="rgb(220,200,19)" fg:x="94377" fg:w="65"/><text x="18.4844%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (148 samples, 0.03%)</title><rect x="18.2187%" y="693" width="0.0286%" height="15" fill="rgb(239,95,49)" fg:x="94296" fg:w="148"/><text x="18.4687%" y="703.50"></text></g><g><title>SpinPause (100 samples, 0.02%)</title><rect x="18.2477%" y="693" width="0.0193%" height="15" fill="rgb(235,85,53)" fg:x="94446" fg:w="100"/><text x="18.4977%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (265 samples, 0.05%)</title><rect x="18.2168%" y="709" width="0.0512%" height="15" fill="rgb(233,133,31)" fg:x="94286" fg:w="265"/><text x="18.4668%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (116 samples, 0.02%)</title><rect x="18.2725%" y="613" width="0.0224%" height="15" fill="rgb(218,25,20)" fg:x="94574" fg:w="116"/><text x="18.5225%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (92 samples, 0.02%)</title><rect x="18.2771%" y="597" width="0.0178%" height="15" fill="rgb(252,210,38)" fg:x="94598" fg:w="92"/><text x="18.5271%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (141 samples, 0.03%)</title><rect x="18.2682%" y="629" width="0.0272%" height="15" fill="rgb(242,134,21)" fg:x="94552" fg:w="141"/><text x="18.5182%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (165 samples, 0.03%)</title><rect x="18.2680%" y="677" width="0.0319%" height="15" fill="rgb(213,28,48)" fg:x="94551" fg:w="165"/><text x="18.5180%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (165 samples, 0.03%)</title><rect x="18.2680%" y="661" width="0.0319%" height="15" fill="rgb(250,196,2)" fg:x="94551" fg:w="165"/><text x="18.5180%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (165 samples, 0.03%)</title><rect x="18.2680%" y="645" width="0.0319%" height="15" fill="rgb(227,5,17)" fg:x="94551" fg:w="165"/><text x="18.5180%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (166 samples, 0.03%)</title><rect x="18.2680%" y="709" width="0.0321%" height="15" fill="rgb(221,226,24)" fg:x="94551" fg:w="166"/><text x="18.5180%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (166 samples, 0.03%)</title><rect x="18.2680%" y="693" width="0.0321%" height="15" fill="rgb(211,5,48)" fg:x="94551" fg:w="166"/><text x="18.5180%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (63 samples, 0.01%)</title><rect x="18.3022%" y="613" width="0.0122%" height="15" fill="rgb(219,150,6)" fg:x="94728" fg:w="63"/><text x="18.5522%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.02%)</title><rect x="18.3003%" y="629" width="0.0153%" height="15" fill="rgb(251,46,16)" fg:x="94718" fg:w="79"/><text x="18.5503%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (101 samples, 0.02%)</title><rect x="18.3003%" y="645" width="0.0195%" height="15" fill="rgb(220,204,40)" fg:x="94718" fg:w="101"/><text x="18.5503%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (105 samples, 0.02%)</title><rect x="18.3001%" y="661" width="0.0203%" height="15" fill="rgb(211,85,2)" fg:x="94717" fg:w="105"/><text x="18.5501%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (119 samples, 0.02%)</title><rect x="18.3001%" y="709" width="0.0230%" height="15" fill="rgb(229,17,7)" fg:x="94717" fg:w="119"/><text x="18.5501%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (119 samples, 0.02%)</title><rect x="18.3001%" y="693" width="0.0230%" height="15" fill="rgb(239,72,28)" fg:x="94717" fg:w="119"/><text x="18.5501%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (119 samples, 0.02%)</title><rect x="18.3001%" y="677" width="0.0230%" height="15" fill="rgb(230,47,54)" fg:x="94717" fg:w="119"/><text x="18.5501%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.01%)</title><rect x="18.3399%" y="581" width="0.0114%" height="15" fill="rgb(214,50,8)" fg:x="94923" fg:w="59"/><text x="18.5899%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (82 samples, 0.02%)</title><rect x="18.3370%" y="613" width="0.0158%" height="15" fill="rgb(216,198,43)" fg:x="94908" fg:w="82"/><text x="18.5870%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.02%)</title><rect x="18.3376%" y="597" width="0.0153%" height="15" fill="rgb(234,20,35)" fg:x="94911" fg:w="79"/><text x="18.5876%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (93 samples, 0.02%)</title><rect x="18.3368%" y="629" width="0.0180%" height="15" fill="rgb(254,45,19)" fg:x="94907" fg:w="93"/><text x="18.5868%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (166 samples, 0.03%)</title><rect x="18.3231%" y="693" width="0.0321%" height="15" fill="rgb(219,14,44)" fg:x="94836" fg:w="166"/><text x="18.5731%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (149 samples, 0.03%)</title><rect x="18.3264%" y="677" width="0.0288%" height="15" fill="rgb(217,220,26)" fg:x="94853" fg:w="149"/><text x="18.5764%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (149 samples, 0.03%)</title><rect x="18.3264%" y="661" width="0.0288%" height="15" fill="rgb(213,158,28)" fg:x="94853" fg:w="149"/><text x="18.5764%" y="671.50"></text></g><g><title>JavaThread::oops_do (149 samples, 0.03%)</title><rect x="18.3264%" y="645" width="0.0288%" height="15" fill="rgb(252,51,52)" fg:x="94853" fg:w="149"/><text x="18.5764%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (175 samples, 0.03%)</title><rect x="18.3231%" y="709" width="0.0338%" height="15" fill="rgb(246,89,16)" fg:x="94836" fg:w="175"/><text x="18.5731%" y="719.50"></text></g><g><title>G1ParTask::work (726 samples, 0.14%)</title><rect x="18.2168%" y="725" width="0.1403%" height="15" fill="rgb(216,158,49)" fg:x="94286" fg:w="726"/><text x="18.4668%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.02%)</title><rect x="18.3758%" y="501" width="0.0155%" height="15" fill="rgb(236,107,19)" fg:x="95109" fg:w="80"/><text x="18.6258%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.02%)</title><rect x="18.3760%" y="485" width="0.0153%" height="15" fill="rgb(228,185,30)" fg:x="95110" fg:w="79"/><text x="18.6260%" y="495.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="18.3762%" y="469" width="0.0151%" height="15" fill="rgb(246,134,8)" fg:x="95111" fg:w="78"/><text x="18.6262%" y="479.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="18.3758%" y="517" width="0.0160%" height="15" fill="rgb(214,143,50)" fg:x="95109" fg:w="83"/><text x="18.6258%" y="527.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="18.3747%" y="629" width="0.0185%" height="15" fill="rgb(228,75,8)" fg:x="95103" fg:w="96"/><text x="18.6247%" y="639.50"></text></g><g><title>__x64_sys_futex (96 samples, 0.02%)</title><rect x="18.3747%" y="613" width="0.0185%" height="15" fill="rgb(207,175,4)" fg:x="95103" fg:w="96"/><text x="18.6247%" y="623.50"></text></g><g><title>do_futex (96 samples, 0.02%)</title><rect x="18.3747%" y="597" width="0.0185%" height="15" fill="rgb(205,108,24)" fg:x="95103" fg:w="96"/><text x="18.6247%" y="607.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="18.3749%" y="581" width="0.0184%" height="15" fill="rgb(244,120,49)" fg:x="95104" fg:w="95"/><text x="18.6249%" y="591.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.02%)</title><rect x="18.3749%" y="565" width="0.0184%" height="15" fill="rgb(223,47,38)" fg:x="95104" fg:w="95"/><text x="18.6249%" y="575.50"></text></g><g><title>schedule (94 samples, 0.02%)</title><rect x="18.3750%" y="549" width="0.0182%" height="15" fill="rgb(229,179,11)" fg:x="95105" fg:w="94"/><text x="18.6250%" y="559.50"></text></g><g><title>__schedule (94 samples, 0.02%)</title><rect x="18.3750%" y="533" width="0.0182%" height="15" fill="rgb(231,122,1)" fg:x="95105" fg:w="94"/><text x="18.6250%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.02%)</title><rect x="18.3747%" y="645" width="0.0189%" height="15" fill="rgb(245,119,9)" fg:x="95103" fg:w="98"/><text x="18.6247%" y="655.50"></text></g><g><title>GC_Thread#2 (938 samples, 0.18%)</title><rect x="18.2127%" y="821" width="0.1812%" height="15" fill="rgb(241,163,25)" fg:x="94265" fg:w="938"/><text x="18.4627%" y="831.50"></text></g><g><title>__GI___clone (921 samples, 0.18%)</title><rect x="18.2160%" y="805" width="0.1779%" height="15" fill="rgb(217,214,3)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="815.50"></text></g><g><title>start_thread (921 samples, 0.18%)</title><rect x="18.2160%" y="789" width="0.1779%" height="15" fill="rgb(240,86,28)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="799.50"></text></g><g><title>thread_native_entry (921 samples, 0.18%)</title><rect x="18.2160%" y="773" width="0.1779%" height="15" fill="rgb(215,47,9)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="783.50"></text></g><g><title>Thread::call_run (921 samples, 0.18%)</title><rect x="18.2160%" y="757" width="0.1779%" height="15" fill="rgb(252,25,45)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="767.50"></text></g><g><title>GangWorker::loop (921 samples, 0.18%)</title><rect x="18.2160%" y="741" width="0.1779%" height="15" fill="rgb(251,164,9)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (102 samples, 0.02%)</title><rect x="18.3743%" y="725" width="0.0197%" height="15" fill="rgb(233,194,0)" fg:x="95101" fg:w="102"/><text x="18.6243%" y="735.50"></text></g><g><title>PosixSemaphore::wait (102 samples, 0.02%)</title><rect x="18.3743%" y="709" width="0.0197%" height="15" fill="rgb(249,111,24)" fg:x="95101" fg:w="102"/><text x="18.6243%" y="719.50"></text></g><g><title>__new_sem_wait_slow (102 samples, 0.02%)</title><rect x="18.3743%" y="693" width="0.0197%" height="15" fill="rgb(250,223,3)" fg:x="95101" fg:w="102"/><text x="18.6243%" y="703.50"></text></g><g><title>do_futex_wait (101 samples, 0.02%)</title><rect x="18.3745%" y="677" width="0.0195%" height="15" fill="rgb(236,178,37)" fg:x="95102" fg:w="101"/><text x="18.6245%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (101 samples, 0.02%)</title><rect x="18.3745%" y="661" width="0.0195%" height="15" fill="rgb(241,158,50)" fg:x="95102" fg:w="101"/><text x="18.6245%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="18.4166%" y="677" width="0.0133%" height="15" fill="rgb(213,121,41)" fg:x="95320" fg:w="69"/><text x="18.6666%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (156 samples, 0.03%)</title><rect x="18.4000%" y="693" width="0.0301%" height="15" fill="rgb(240,92,3)" fg:x="95234" fg:w="156"/><text x="18.6500%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (221 samples, 0.04%)</title><rect x="18.3980%" y="709" width="0.0427%" height="15" fill="rgb(205,123,3)" fg:x="95224" fg:w="221"/><text x="18.6480%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (87 samples, 0.02%)</title><rect x="18.4454%" y="613" width="0.0168%" height="15" fill="rgb(205,97,47)" fg:x="95469" fg:w="87"/><text x="18.6954%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (57 samples, 0.01%)</title><rect x="18.4512%" y="597" width="0.0110%" height="15" fill="rgb(247,152,14)" fg:x="95499" fg:w="57"/><text x="18.7012%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (113 samples, 0.02%)</title><rect x="18.4409%" y="629" width="0.0218%" height="15" fill="rgb(248,195,53)" fg:x="95446" fg:w="113"/><text x="18.6909%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (139 samples, 0.03%)</title><rect x="18.4407%" y="677" width="0.0269%" height="15" fill="rgb(226,201,16)" fg:x="95445" fg:w="139"/><text x="18.6907%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (139 samples, 0.03%)</title><rect x="18.4407%" y="661" width="0.0269%" height="15" fill="rgb(205,98,0)" fg:x="95445" fg:w="139"/><text x="18.6907%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (139 samples, 0.03%)</title><rect x="18.4407%" y="645" width="0.0269%" height="15" fill="rgb(214,191,48)" fg:x="95445" fg:w="139"/><text x="18.6907%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (156 samples, 0.03%)</title><rect x="18.4407%" y="709" width="0.0301%" height="15" fill="rgb(237,112,39)" fg:x="95445" fg:w="156"/><text x="18.6907%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (156 samples, 0.03%)</title><rect x="18.4407%" y="693" width="0.0301%" height="15" fill="rgb(247,203,27)" fg:x="95445" fg:w="156"/><text x="18.6907%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (69 samples, 0.01%)</title><rect x="18.4753%" y="613" width="0.0133%" height="15" fill="rgb(235,124,28)" fg:x="95624" fg:w="69"/><text x="18.7253%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (93 samples, 0.02%)</title><rect x="18.4718%" y="629" width="0.0180%" height="15" fill="rgb(208,207,46)" fg:x="95606" fg:w="93"/><text x="18.7218%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (123 samples, 0.02%)</title><rect x="18.4713%" y="645" width="0.0238%" height="15" fill="rgb(234,176,4)" fg:x="95603" fg:w="123"/><text x="18.7213%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (129 samples, 0.02%)</title><rect x="18.4709%" y="661" width="0.0249%" height="15" fill="rgb(230,133,28)" fg:x="95601" fg:w="129"/><text x="18.7209%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (146 samples, 0.03%)</title><rect x="18.4709%" y="709" width="0.0282%" height="15" fill="rgb(211,137,40)" fg:x="95601" fg:w="146"/><text x="18.7209%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (146 samples, 0.03%)</title><rect x="18.4709%" y="693" width="0.0282%" height="15" fill="rgb(254,35,13)" fg:x="95601" fg:w="146"/><text x="18.7209%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (146 samples, 0.03%)</title><rect x="18.4709%" y="677" width="0.0282%" height="15" fill="rgb(225,49,51)" fg:x="95601" fg:w="146"/><text x="18.7209%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (87 samples, 0.02%)</title><rect x="18.4991%" y="693" width="0.0168%" height="15" fill="rgb(251,10,15)" fg:x="95747" fg:w="87"/><text x="18.7491%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (58 samples, 0.01%)</title><rect x="18.5047%" y="677" width="0.0112%" height="15" fill="rgb(228,207,15)" fg:x="95776" fg:w="58"/><text x="18.7547%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (58 samples, 0.01%)</title><rect x="18.5047%" y="661" width="0.0112%" height="15" fill="rgb(241,99,19)" fg:x="95776" fg:w="58"/><text x="18.7547%" y="671.50"></text></g><g><title>JavaThread::oops_do (58 samples, 0.01%)</title><rect x="18.5047%" y="645" width="0.0112%" height="15" fill="rgb(207,104,49)" fg:x="95776" fg:w="58"/><text x="18.7547%" y="655.50"></text></g><g><title>G1ParTask::work (627 samples, 0.12%)</title><rect x="18.3980%" y="725" width="0.1211%" height="15" fill="rgb(234,99,18)" fg:x="95224" fg:w="627"/><text x="18.6480%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (104 samples, 0.02%)</title><rect x="18.4991%" y="709" width="0.0201%" height="15" fill="rgb(213,191,49)" fg:x="95747" fg:w="104"/><text x="18.7491%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="18.5350%" y="501" width="0.0120%" height="15" fill="rgb(210,226,19)" fg:x="95933" fg:w="62"/><text x="18.7850%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="18.5350%" y="485" width="0.0120%" height="15" fill="rgb(229,97,18)" fg:x="95933" fg:w="62"/><text x="18.7850%" y="495.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="18.5350%" y="469" width="0.0120%" height="15" fill="rgb(211,167,15)" fg:x="95933" fg:w="62"/><text x="18.7850%" y="479.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="18.5346%" y="517" width="0.0129%" height="15" fill="rgb(210,169,34)" fg:x="95931" fg:w="67"/><text x="18.7846%" y="527.50"></text></g><g><title>futex_wait_queue_me (79 samples, 0.02%)</title><rect x="18.5337%" y="565" width="0.0153%" height="15" fill="rgb(241,121,31)" fg:x="95926" fg:w="79"/><text x="18.7837%" y="575.50"></text></g><g><title>schedule (78 samples, 0.02%)</title><rect x="18.5339%" y="549" width="0.0151%" height="15" fill="rgb(232,40,11)" fg:x="95927" fg:w="78"/><text x="18.7839%" y="559.50"></text></g><g><title>__schedule (78 samples, 0.02%)</title><rect x="18.5339%" y="533" width="0.0151%" height="15" fill="rgb(205,86,26)" fg:x="95927" fg:w="78"/><text x="18.7839%" y="543.50"></text></g><g><title>__GI___clone (783 samples, 0.15%)</title><rect x="18.3978%" y="805" width="0.1513%" height="15" fill="rgb(231,126,28)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="815.50"></text></g><g><title>start_thread (783 samples, 0.15%)</title><rect x="18.3978%" y="789" width="0.1513%" height="15" fill="rgb(219,221,18)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="799.50"></text></g><g><title>thread_native_entry (783 samples, 0.15%)</title><rect x="18.3978%" y="773" width="0.1513%" height="15" fill="rgb(211,40,0)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="783.50"></text></g><g><title>Thread::call_run (783 samples, 0.15%)</title><rect x="18.3978%" y="757" width="0.1513%" height="15" fill="rgb(239,85,43)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="767.50"></text></g><g><title>GangWorker::loop (783 samples, 0.15%)</title><rect x="18.3978%" y="741" width="0.1513%" height="15" fill="rgb(231,55,21)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (84 samples, 0.02%)</title><rect x="18.5329%" y="725" width="0.0162%" height="15" fill="rgb(225,184,43)" fg:x="95922" fg:w="84"/><text x="18.7829%" y="735.50"></text></g><g><title>PosixSemaphore::wait (83 samples, 0.02%)</title><rect x="18.5331%" y="709" width="0.0160%" height="15" fill="rgb(251,158,41)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="719.50"></text></g><g><title>__new_sem_wait_slow (83 samples, 0.02%)</title><rect x="18.5331%" y="693" width="0.0160%" height="15" fill="rgb(234,159,37)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="703.50"></text></g><g><title>do_futex_wait (83 samples, 0.02%)</title><rect x="18.5331%" y="677" width="0.0160%" height="15" fill="rgb(216,204,22)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (83 samples, 0.02%)</title><rect x="18.5331%" y="661" width="0.0160%" height="15" fill="rgb(214,17,3)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="18.5331%" y="645" width="0.0160%" height="15" fill="rgb(212,111,17)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="655.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="18.5333%" y="629" width="0.0158%" height="15" fill="rgb(221,157,24)" fg:x="95924" fg:w="82"/><text x="18.7833%" y="639.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.02%)</title><rect x="18.5335%" y="613" width="0.0156%" height="15" fill="rgb(252,16,13)" fg:x="95925" fg:w="81"/><text x="18.7835%" y="623.50"></text></g><g><title>do_futex (81 samples, 0.02%)</title><rect x="18.5335%" y="597" width="0.0156%" height="15" fill="rgb(221,62,2)" fg:x="95925" fg:w="81"/><text x="18.7835%" y="607.50"></text></g><g><title>futex_wait (80 samples, 0.02%)</title><rect x="18.5337%" y="581" width="0.0155%" height="15" fill="rgb(247,87,22)" fg:x="95926" fg:w="80"/><text x="18.7837%" y="591.50"></text></g><g><title>GC_Thread#3 (807 samples, 0.16%)</title><rect x="18.3940%" y="821" width="0.1559%" height="15" fill="rgb(215,73,9)" fg:x="95203" fg:w="807"/><text x="18.6440%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.01%)</title><rect x="18.5694%" y="677" width="0.0131%" height="15" fill="rgb(207,175,33)" fg:x="96111" fg:w="68"/><text x="18.8194%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (141 samples, 0.03%)</title><rect x="18.5565%" y="693" width="0.0272%" height="15" fill="rgb(243,129,54)" fg:x="96044" fg:w="141"/><text x="18.8065%" y="703.50"></text></g><g><title>SpinPause (137 samples, 0.03%)</title><rect x="18.5851%" y="693" width="0.0265%" height="15" fill="rgb(227,119,45)" fg:x="96192" fg:w="137"/><text x="18.8351%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (303 samples, 0.06%)</title><rect x="18.5543%" y="709" width="0.0585%" height="15" fill="rgb(205,109,36)" fg:x="96033" fg:w="303"/><text x="18.8043%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (86 samples, 0.02%)</title><rect x="18.6204%" y="597" width="0.0166%" height="15" fill="rgb(205,6,39)" fg:x="96375" fg:w="86"/><text x="18.8704%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (110 samples, 0.02%)</title><rect x="18.6162%" y="613" width="0.0213%" height="15" fill="rgb(221,32,16)" fg:x="96353" fg:w="110"/><text x="18.8662%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (135 samples, 0.03%)</title><rect x="18.6129%" y="629" width="0.0261%" height="15" fill="rgb(228,144,50)" fg:x="96336" fg:w="135"/><text x="18.8629%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (145 samples, 0.03%)</title><rect x="18.6129%" y="677" width="0.0280%" height="15" fill="rgb(229,201,53)" fg:x="96336" fg:w="145"/><text x="18.8629%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (145 samples, 0.03%)</title><rect x="18.6129%" y="661" width="0.0280%" height="15" fill="rgb(249,153,27)" fg:x="96336" fg:w="145"/><text x="18.8629%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (145 samples, 0.03%)</title><rect x="18.6129%" y="645" width="0.0280%" height="15" fill="rgb(227,106,25)" fg:x="96336" fg:w="145"/><text x="18.8629%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (172 samples, 0.03%)</title><rect x="18.6129%" y="709" width="0.0332%" height="15" fill="rgb(230,65,29)" fg:x="96336" fg:w="172"/><text x="18.8629%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (172 samples, 0.03%)</title><rect x="18.6129%" y="693" width="0.0332%" height="15" fill="rgb(221,57,46)" fg:x="96336" fg:w="172"/><text x="18.8629%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (62 samples, 0.01%)</title><rect x="18.6467%" y="629" width="0.0120%" height="15" fill="rgb(229,161,17)" fg:x="96511" fg:w="62"/><text x="18.8967%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (83 samples, 0.02%)</title><rect x="18.6467%" y="645" width="0.0160%" height="15" fill="rgb(222,213,11)" fg:x="96511" fg:w="83"/><text x="18.8967%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (87 samples, 0.02%)</title><rect x="18.6465%" y="661" width="0.0168%" height="15" fill="rgb(235,35,13)" fg:x="96510" fg:w="87"/><text x="18.8965%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (93 samples, 0.02%)</title><rect x="18.6461%" y="709" width="0.0180%" height="15" fill="rgb(233,158,34)" fg:x="96508" fg:w="93"/><text x="18.8961%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (93 samples, 0.02%)</title><rect x="18.6461%" y="693" width="0.0180%" height="15" fill="rgb(215,151,48)" fg:x="96508" fg:w="93"/><text x="18.8961%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (93 samples, 0.02%)</title><rect x="18.6461%" y="677" width="0.0180%" height="15" fill="rgb(229,84,14)" fg:x="96508" fg:w="93"/><text x="18.8961%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (68 samples, 0.01%)</title><rect x="18.6643%" y="677" width="0.0131%" height="15" fill="rgb(229,68,14)" fg:x="96602" fg:w="68"/><text x="18.9143%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (67 samples, 0.01%)</title><rect x="18.6645%" y="661" width="0.0129%" height="15" fill="rgb(243,106,26)" fg:x="96603" fg:w="67"/><text x="18.9145%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (67 samples, 0.01%)</title><rect x="18.6645%" y="645" width="0.0129%" height="15" fill="rgb(206,45,38)" fg:x="96603" fg:w="67"/><text x="18.9145%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="18.6664%" y="629" width="0.0110%" height="15" fill="rgb(226,6,15)" fg:x="96613" fg:w="57"/><text x="18.9164%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (162 samples, 0.03%)</title><rect x="18.6643%" y="693" width="0.0313%" height="15" fill="rgb(232,22,54)" fg:x="96602" fg:w="162"/><text x="18.9143%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (94 samples, 0.02%)</title><rect x="18.6774%" y="677" width="0.0182%" height="15" fill="rgb(229,222,32)" fg:x="96670" fg:w="94"/><text x="18.9274%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (94 samples, 0.02%)</title><rect x="18.6774%" y="661" width="0.0182%" height="15" fill="rgb(228,62,29)" fg:x="96670" fg:w="94"/><text x="18.9274%" y="671.50"></text></g><g><title>JavaThread::oops_do (94 samples, 0.02%)</title><rect x="18.6774%" y="645" width="0.0182%" height="15" fill="rgb(251,103,34)" fg:x="96670" fg:w="94"/><text x="18.9274%" y="655.50"></text></g><g><title>G1ParTask::work (745 samples, 0.14%)</title><rect x="18.5543%" y="725" width="0.1439%" height="15" fill="rgb(233,12,30)" fg:x="96033" fg:w="745"/><text x="18.8043%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (177 samples, 0.03%)</title><rect x="18.6641%" y="709" width="0.0342%" height="15" fill="rgb(238,52,0)" fg:x="96601" fg:w="177"/><text x="18.9141%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (89 samples, 0.02%)</title><rect x="18.7170%" y="501" width="0.0172%" height="15" fill="rgb(223,98,5)" fg:x="96875" fg:w="89"/><text x="18.9670%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (87 samples, 0.02%)</title><rect x="18.7174%" y="485" width="0.0168%" height="15" fill="rgb(228,75,37)" fg:x="96877" fg:w="87"/><text x="18.9674%" y="495.50"></text></g><g><title>native_write_msr (87 samples, 0.02%)</title><rect x="18.7174%" y="469" width="0.0168%" height="15" fill="rgb(205,115,49)" fg:x="96877" fg:w="87"/><text x="18.9674%" y="479.50"></text></g><g><title>finish_task_switch (93 samples, 0.02%)</title><rect x="18.7164%" y="517" width="0.0180%" height="15" fill="rgb(250,154,43)" fg:x="96872" fg:w="93"/><text x="18.9664%" y="527.50"></text></g><g><title>futex_wait_queue_me (106 samples, 0.02%)</title><rect x="18.7153%" y="565" width="0.0205%" height="15" fill="rgb(226,43,29)" fg:x="96866" fg:w="106"/><text x="18.9653%" y="575.50"></text></g><g><title>schedule (106 samples, 0.02%)</title><rect x="18.7153%" y="549" width="0.0205%" height="15" fill="rgb(249,228,39)" fg:x="96866" fg:w="106"/><text x="18.9653%" y="559.50"></text></g><g><title>__schedule (106 samples, 0.02%)</title><rect x="18.7153%" y="533" width="0.0205%" height="15" fill="rgb(216,79,43)" fg:x="96866" fg:w="106"/><text x="18.9653%" y="543.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="18.7151%" y="629" width="0.0214%" height="15" fill="rgb(228,95,12)" fg:x="96865" fg:w="111"/><text x="18.9651%" y="639.50"></text></g><g><title>__x64_sys_futex (110 samples, 0.02%)</title><rect x="18.7153%" y="613" width="0.0213%" height="15" fill="rgb(249,221,15)" fg:x="96866" fg:w="110"/><text x="18.9653%" y="623.50"></text></g><g><title>do_futex (110 samples, 0.02%)</title><rect x="18.7153%" y="597" width="0.0213%" height="15" fill="rgb(233,34,13)" fg:x="96866" fg:w="110"/><text x="18.9653%" y="607.50"></text></g><g><title>futex_wait (110 samples, 0.02%)</title><rect x="18.7153%" y="581" width="0.0213%" height="15" fill="rgb(214,103,39)" fg:x="96866" fg:w="110"/><text x="18.9653%" y="591.50"></text></g><g><title>__GI___clone (951 samples, 0.18%)</title><rect x="18.5536%" y="805" width="0.1837%" height="15" fill="rgb(251,126,39)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="815.50"></text></g><g><title>start_thread (951 samples, 0.18%)</title><rect x="18.5536%" y="789" width="0.1837%" height="15" fill="rgb(214,216,36)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="799.50"></text></g><g><title>thread_native_entry (951 samples, 0.18%)</title><rect x="18.5536%" y="773" width="0.1837%" height="15" fill="rgb(220,221,8)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="783.50"></text></g><g><title>Thread::call_run (951 samples, 0.18%)</title><rect x="18.5536%" y="757" width="0.1837%" height="15" fill="rgb(240,216,3)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="767.50"></text></g><g><title>GangWorker::loop (951 samples, 0.18%)</title><rect x="18.5536%" y="741" width="0.1837%" height="15" fill="rgb(232,218,17)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (119 samples, 0.02%)</title><rect x="18.7143%" y="725" width="0.0230%" height="15" fill="rgb(229,163,45)" fg:x="96861" fg:w="119"/><text x="18.9643%" y="735.50"></text></g><g><title>PosixSemaphore::wait (119 samples, 0.02%)</title><rect x="18.7143%" y="709" width="0.0230%" height="15" fill="rgb(231,110,42)" fg:x="96861" fg:w="119"/><text x="18.9643%" y="719.50"></text></g><g><title>__new_sem_wait_slow (118 samples, 0.02%)</title><rect x="18.7145%" y="693" width="0.0228%" height="15" fill="rgb(208,170,48)" fg:x="96862" fg:w="118"/><text x="18.9645%" y="703.50"></text></g><g><title>do_futex_wait (118 samples, 0.02%)</title><rect x="18.7145%" y="677" width="0.0228%" height="15" fill="rgb(239,116,25)" fg:x="96862" fg:w="118"/><text x="18.9645%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (118 samples, 0.02%)</title><rect x="18.7145%" y="661" width="0.0228%" height="15" fill="rgb(219,200,50)" fg:x="96862" fg:w="118"/><text x="18.9645%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="18.7151%" y="645" width="0.0222%" height="15" fill="rgb(245,200,0)" fg:x="96865" fg:w="115"/><text x="18.9651%" y="655.50"></text></g><g><title>GC_Thread#4 (971 samples, 0.19%)</title><rect x="18.5499%" y="821" width="0.1876%" height="15" fill="rgb(245,119,33)" fg:x="96010" fg:w="971"/><text x="18.7999%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (88 samples, 0.02%)</title><rect x="18.7624%" y="677" width="0.0170%" height="15" fill="rgb(231,125,12)" fg:x="97110" fg:w="88"/><text x="19.0124%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (174 samples, 0.03%)</title><rect x="18.7472%" y="693" width="0.0336%" height="15" fill="rgb(216,96,41)" fg:x="97031" fg:w="174"/><text x="18.9972%" y="703.50"></text></g><g><title>SpinPause (137 samples, 0.03%)</title><rect x="18.7831%" y="693" width="0.0265%" height="15" fill="rgb(248,43,45)" fg:x="97217" fg:w="137"/><text x="19.0331%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (339 samples, 0.07%)</title><rect x="18.7448%" y="709" width="0.0655%" height="15" fill="rgb(217,222,7)" fg:x="97019" fg:w="339"/><text x="18.9948%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.02%)</title><rect x="18.8190%" y="597" width="0.0151%" height="15" fill="rgb(233,28,6)" fg:x="97403" fg:w="78"/><text x="19.0690%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (104 samples, 0.02%)</title><rect x="18.8142%" y="613" width="0.0201%" height="15" fill="rgb(231,218,15)" fg:x="97378" fg:w="104"/><text x="19.0642%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (130 samples, 0.03%)</title><rect x="18.8105%" y="629" width="0.0251%" height="15" fill="rgb(226,171,48)" fg:x="97359" fg:w="130"/><text x="19.0605%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (153 samples, 0.03%)</title><rect x="18.8105%" y="677" width="0.0296%" height="15" fill="rgb(235,201,9)" fg:x="97359" fg:w="153"/><text x="19.0605%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (153 samples, 0.03%)</title><rect x="18.8105%" y="661" width="0.0296%" height="15" fill="rgb(217,80,15)" fg:x="97359" fg:w="153"/><text x="19.0605%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (153 samples, 0.03%)</title><rect x="18.8105%" y="645" width="0.0296%" height="15" fill="rgb(219,152,8)" fg:x="97359" fg:w="153"/><text x="19.0605%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (160 samples, 0.03%)</title><rect x="18.8105%" y="709" width="0.0309%" height="15" fill="rgb(243,107,38)" fg:x="97359" fg:w="160"/><text x="19.0605%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (160 samples, 0.03%)</title><rect x="18.8105%" y="693" width="0.0309%" height="15" fill="rgb(231,17,5)" fg:x="97359" fg:w="160"/><text x="19.0605%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (84 samples, 0.02%)</title><rect x="18.8416%" y="629" width="0.0162%" height="15" fill="rgb(209,25,54)" fg:x="97520" fg:w="84"/><text x="19.0916%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (66 samples, 0.01%)</title><rect x="18.8451%" y="613" width="0.0128%" height="15" fill="rgb(219,0,2)" fg:x="97538" fg:w="66"/><text x="19.0951%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (112 samples, 0.02%)</title><rect x="18.8416%" y="645" width="0.0216%" height="15" fill="rgb(246,9,5)" fg:x="97520" fg:w="112"/><text x="19.0916%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (118 samples, 0.02%)</title><rect x="18.8414%" y="661" width="0.0228%" height="15" fill="rgb(226,159,4)" fg:x="97519" fg:w="118"/><text x="19.0914%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (128 samples, 0.02%)</title><rect x="18.8414%" y="709" width="0.0247%" height="15" fill="rgb(219,175,34)" fg:x="97519" fg:w="128"/><text x="19.0914%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (128 samples, 0.02%)</title><rect x="18.8414%" y="693" width="0.0247%" height="15" fill="rgb(236,10,46)" fg:x="97519" fg:w="128"/><text x="19.0914%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (128 samples, 0.02%)</title><rect x="18.8414%" y="677" width="0.0247%" height="15" fill="rgb(240,211,16)" fg:x="97519" fg:w="128"/><text x="19.0914%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (125 samples, 0.02%)</title><rect x="18.8666%" y="693" width="0.0242%" height="15" fill="rgb(205,3,43)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (125 samples, 0.02%)</title><rect x="18.8666%" y="677" width="0.0242%" height="15" fill="rgb(245,7,22)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (125 samples, 0.02%)</title><rect x="18.8666%" y="661" width="0.0242%" height="15" fill="rgb(239,132,32)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="671.50"></text></g><g><title>JavaThread::oops_do (125 samples, 0.02%)</title><rect x="18.8666%" y="645" width="0.0242%" height="15" fill="rgb(228,202,34)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (90 samples, 0.02%)</title><rect x="18.8733%" y="629" width="0.0174%" height="15" fill="rgb(254,200,22)" fg:x="97684" fg:w="90"/><text x="19.1233%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (140 samples, 0.03%)</title><rect x="18.8662%" y="709" width="0.0270%" height="15" fill="rgb(219,10,39)" fg:x="97647" fg:w="140"/><text x="19.1162%" y="719.50"></text></g><g><title>G1ParTask::work (769 samples, 0.15%)</title><rect x="18.7448%" y="725" width="0.1486%" height="15" fill="rgb(226,210,39)" fg:x="97019" fg:w="769"/><text x="18.9948%" y="735.50"></text></g><g><title>__GI___clone (934 samples, 0.18%)</title><rect x="18.7429%" y="805" width="0.1805%" height="15" fill="rgb(208,219,16)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="815.50"></text></g><g><title>start_thread (934 samples, 0.18%)</title><rect x="18.7429%" y="789" width="0.1805%" height="15" fill="rgb(216,158,51)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="799.50"></text></g><g><title>thread_native_entry (934 samples, 0.18%)</title><rect x="18.7429%" y="773" width="0.1805%" height="15" fill="rgb(233,14,44)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="783.50"></text></g><g><title>Thread::call_run (934 samples, 0.18%)</title><rect x="18.7429%" y="757" width="0.1805%" height="15" fill="rgb(237,97,39)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="767.50"></text></g><g><title>GangWorker::loop (934 samples, 0.18%)</title><rect x="18.7429%" y="741" width="0.1805%" height="15" fill="rgb(218,198,43)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="751.50"></text></g><g><title>GC_Thread#5 (963 samples, 0.19%)</title><rect x="18.7375%" y="821" width="0.1861%" height="15" fill="rgb(231,104,20)" fg:x="96981" fg:w="963"/><text x="18.9875%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (100 samples, 0.02%)</title><rect x="18.9431%" y="677" width="0.0193%" height="15" fill="rgb(254,36,13)" fg:x="98045" fg:w="100"/><text x="19.1931%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (176 samples, 0.03%)</title><rect x="18.9290%" y="693" width="0.0340%" height="15" fill="rgb(248,14,50)" fg:x="97972" fg:w="176"/><text x="19.1790%" y="703.50"></text></g><g><title>SpinPause (136 samples, 0.03%)</title><rect x="18.9647%" y="693" width="0.0263%" height="15" fill="rgb(217,107,29)" fg:x="98157" fg:w="136"/><text x="19.2147%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (335 samples, 0.06%)</title><rect x="18.9267%" y="709" width="0.0647%" height="15" fill="rgb(251,169,33)" fg:x="97960" fg:w="335"/><text x="19.1767%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (128 samples, 0.02%)</title><rect x="18.9972%" y="613" width="0.0247%" height="15" fill="rgb(217,108,32)" fg:x="98325" fg:w="128"/><text x="19.2472%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="19.0039%" y="597" width="0.0180%" height="15" fill="rgb(219,66,42)" fg:x="98360" fg:w="93"/><text x="19.2539%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (165 samples, 0.03%)</title><rect x="18.9914%" y="629" width="0.0319%" height="15" fill="rgb(206,180,7)" fg:x="98295" fg:w="165"/><text x="19.2414%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (176 samples, 0.03%)</title><rect x="18.9914%" y="677" width="0.0340%" height="15" fill="rgb(208,226,31)" fg:x="98295" fg:w="176"/><text x="19.2414%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (176 samples, 0.03%)</title><rect x="18.9914%" y="661" width="0.0340%" height="15" fill="rgb(218,26,49)" fg:x="98295" fg:w="176"/><text x="19.2414%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (176 samples, 0.03%)</title><rect x="18.9914%" y="645" width="0.0340%" height="15" fill="rgb(233,197,48)" fg:x="98295" fg:w="176"/><text x="19.2414%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (223 samples, 0.04%)</title><rect x="18.9914%" y="709" width="0.0431%" height="15" fill="rgb(252,181,51)" fg:x="98295" fg:w="223"/><text x="19.2414%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (223 samples, 0.04%)</title><rect x="18.9914%" y="693" width="0.0431%" height="15" fill="rgb(253,90,19)" fg:x="98295" fg:w="223"/><text x="19.2414%" y="703.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="19.0345%" y="709" width="0.0110%" height="15" fill="rgb(215,171,30)" fg:x="98518" fg:w="57"/><text x="19.2845%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="19.0345%" y="693" width="0.0110%" height="15" fill="rgb(214,222,9)" fg:x="98518" fg:w="57"/><text x="19.2845%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="19.0345%" y="677" width="0.0110%" height="15" fill="rgb(223,3,22)" fg:x="98518" fg:w="57"/><text x="19.2845%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (75 samples, 0.01%)</title><rect x="19.0515%" y="613" width="0.0145%" height="15" fill="rgb(225,196,46)" fg:x="98606" fg:w="75"/><text x="19.3015%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.01%)</title><rect x="19.0534%" y="597" width="0.0126%" height="15" fill="rgb(209,110,37)" fg:x="98616" fg:w="65"/><text x="19.3034%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (106 samples, 0.02%)</title><rect x="19.0457%" y="677" width="0.0205%" height="15" fill="rgb(249,89,12)" fg:x="98576" fg:w="106"/><text x="19.2957%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (103 samples, 0.02%)</title><rect x="19.0462%" y="661" width="0.0199%" height="15" fill="rgb(226,27,33)" fg:x="98579" fg:w="103"/><text x="19.2962%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (103 samples, 0.02%)</title><rect x="19.0462%" y="645" width="0.0199%" height="15" fill="rgb(213,82,22)" fg:x="98579" fg:w="103"/><text x="19.2962%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (95 samples, 0.02%)</title><rect x="19.0478%" y="629" width="0.0184%" height="15" fill="rgb(248,140,0)" fg:x="98587" fg:w="95"/><text x="19.2978%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (118 samples, 0.02%)</title><rect x="19.0457%" y="693" width="0.0228%" height="15" fill="rgb(228,106,3)" fg:x="98576" fg:w="118"/><text x="19.2957%" y="703.50"></text></g><g><title>G1ParTask::work (772 samples, 0.15%)</title><rect x="18.9267%" y="725" width="0.1492%" height="15" fill="rgb(209,23,37)" fg:x="97960" fg:w="772"/><text x="19.1767%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (157 samples, 0.03%)</title><rect x="19.0455%" y="709" width="0.0303%" height="15" fill="rgb(241,93,50)" fg:x="98575" fg:w="157"/><text x="19.2955%" y="719.50"></text></g><g><title>finish_task_switch (73 samples, 0.01%)</title><rect x="19.0957%" y="517" width="0.0141%" height="15" fill="rgb(253,46,43)" fg:x="98835" fg:w="73"/><text x="19.3457%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.01%)</title><rect x="19.0959%" y="501" width="0.0139%" height="15" fill="rgb(226,206,43)" fg:x="98836" fg:w="72"/><text x="19.3459%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.01%)</title><rect x="19.0963%" y="485" width="0.0135%" height="15" fill="rgb(217,54,7)" fg:x="98838" fg:w="70"/><text x="19.3463%" y="495.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="19.0965%" y="469" width="0.0133%" height="15" fill="rgb(223,5,52)" fg:x="98839" fg:w="69"/><text x="19.3465%" y="479.50"></text></g><g><title>futex_wait_queue_me (90 samples, 0.02%)</title><rect x="19.0940%" y="565" width="0.0174%" height="15" fill="rgb(206,52,46)" fg:x="98826" fg:w="90"/><text x="19.3440%" y="575.50"></text></g><g><title>schedule (87 samples, 0.02%)</title><rect x="19.0946%" y="549" width="0.0168%" height="15" fill="rgb(253,136,11)" fg:x="98829" fg:w="87"/><text x="19.3446%" y="559.50"></text></g><g><title>__schedule (86 samples, 0.02%)</title><rect x="19.0947%" y="533" width="0.0166%" height="15" fill="rgb(208,106,33)" fg:x="98830" fg:w="86"/><text x="19.3447%" y="543.50"></text></g><g><title>do_syscall_64 (95 samples, 0.02%)</title><rect x="19.0938%" y="629" width="0.0184%" height="15" fill="rgb(206,54,4)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="639.50"></text></g><g><title>__x64_sys_futex (95 samples, 0.02%)</title><rect x="19.0938%" y="613" width="0.0184%" height="15" fill="rgb(213,3,15)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="623.50"></text></g><g><title>do_futex (95 samples, 0.02%)</title><rect x="19.0938%" y="597" width="0.0184%" height="15" fill="rgb(252,211,39)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="607.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="19.0938%" y="581" width="0.0184%" height="15" fill="rgb(223,6,36)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="591.50"></text></g><g><title>__GI___clone (962 samples, 0.19%)</title><rect x="18.9267%" y="805" width="0.1859%" height="15" fill="rgb(252,169,45)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="815.50"></text></g><g><title>start_thread (962 samples, 0.19%)</title><rect x="18.9267%" y="789" width="0.1859%" height="15" fill="rgb(212,48,26)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="799.50"></text></g><g><title>thread_native_entry (962 samples, 0.19%)</title><rect x="18.9267%" y="773" width="0.1859%" height="15" fill="rgb(251,102,48)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="783.50"></text></g><g><title>Thread::call_run (962 samples, 0.19%)</title><rect x="18.9267%" y="757" width="0.1859%" height="15" fill="rgb(243,208,16)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="767.50"></text></g><g><title>GangWorker::loop (962 samples, 0.19%)</title><rect x="18.9267%" y="741" width="0.1859%" height="15" fill="rgb(219,96,24)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (98 samples, 0.02%)</title><rect x="19.0936%" y="725" width="0.0189%" height="15" fill="rgb(219,33,29)" fg:x="98824" fg:w="98"/><text x="19.3436%" y="735.50"></text></g><g><title>PosixSemaphore::wait (98 samples, 0.02%)</title><rect x="19.0936%" y="709" width="0.0189%" height="15" fill="rgb(223,176,5)" fg:x="98824" fg:w="98"/><text x="19.3436%" y="719.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.02%)</title><rect x="19.0938%" y="693" width="0.0187%" height="15" fill="rgb(228,140,14)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="703.50"></text></g><g><title>do_futex_wait (97 samples, 0.02%)</title><rect x="19.0938%" y="677" width="0.0187%" height="15" fill="rgb(217,179,31)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.02%)</title><rect x="19.0938%" y="661" width="0.0187%" height="15" fill="rgb(230,9,30)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.02%)</title><rect x="19.0938%" y="645" width="0.0187%" height="15" fill="rgb(230,136,20)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="655.50"></text></g><g><title>GC_Thread#6 (981 samples, 0.19%)</title><rect x="18.9236%" y="821" width="0.1895%" height="15" fill="rgb(215,210,22)" fg:x="97944" fg:w="981"/><text x="19.1736%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.01%)</title><rect x="19.1338%" y="677" width="0.0135%" height="15" fill="rgb(218,43,5)" fg:x="99032" fg:w="70"/><text x="19.3838%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (134 samples, 0.03%)</title><rect x="19.1220%" y="693" width="0.0259%" height="15" fill="rgb(216,11,5)" fg:x="98971" fg:w="134"/><text x="19.3720%" y="703.50"></text></g><g><title>SpinPause (131 samples, 0.03%)</title><rect x="19.1488%" y="693" width="0.0253%" height="15" fill="rgb(209,82,29)" fg:x="99110" fg:w="131"/><text x="19.3988%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (283 samples, 0.05%)</title><rect x="19.1201%" y="709" width="0.0547%" height="15" fill="rgb(244,115,12)" fg:x="98961" fg:w="283"/><text x="19.3701%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (131 samples, 0.03%)</title><rect x="19.1799%" y="613" width="0.0253%" height="15" fill="rgb(222,82,18)" fg:x="99271" fg:w="131"/><text x="19.4299%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (92 samples, 0.02%)</title><rect x="19.1875%" y="597" width="0.0178%" height="15" fill="rgb(249,227,8)" fg:x="99310" fg:w="92"/><text x="19.4375%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (160 samples, 0.03%)</title><rect x="19.1755%" y="629" width="0.0309%" height="15" fill="rgb(253,141,45)" fg:x="99248" fg:w="160"/><text x="19.4255%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (189 samples, 0.04%)</title><rect x="19.1751%" y="677" width="0.0365%" height="15" fill="rgb(234,184,4)" fg:x="99246" fg:w="189"/><text x="19.4251%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (189 samples, 0.04%)</title><rect x="19.1751%" y="661" width="0.0365%" height="15" fill="rgb(218,194,23)" fg:x="99246" fg:w="189"/><text x="19.4251%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (188 samples, 0.04%)</title><rect x="19.1753%" y="645" width="0.0363%" height="15" fill="rgb(235,66,41)" fg:x="99247" fg:w="188"/><text x="19.4253%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (207 samples, 0.04%)</title><rect x="19.1751%" y="709" width="0.0400%" height="15" fill="rgb(245,217,1)" fg:x="99246" fg:w="207"/><text x="19.4251%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (207 samples, 0.04%)</title><rect x="19.1751%" y="693" width="0.0400%" height="15" fill="rgb(229,91,1)" fg:x="99246" fg:w="207"/><text x="19.4251%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.01%)</title><rect x="19.2186%" y="613" width="0.0114%" height="15" fill="rgb(207,101,30)" fg:x="99471" fg:w="59"/><text x="19.4686%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (83 samples, 0.02%)</title><rect x="19.2151%" y="629" width="0.0160%" height="15" fill="rgb(223,82,49)" fg:x="99453" fg:w="83"/><text x="19.4651%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (108 samples, 0.02%)</title><rect x="19.2151%" y="645" width="0.0209%" height="15" fill="rgb(218,167,17)" fg:x="99453" fg:w="108"/><text x="19.4651%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (110 samples, 0.02%)</title><rect x="19.2151%" y="661" width="0.0213%" height="15" fill="rgb(208,103,14)" fg:x="99453" fg:w="110"/><text x="19.4651%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (130 samples, 0.03%)</title><rect x="19.2151%" y="709" width="0.0251%" height="15" fill="rgb(238,20,8)" fg:x="99453" fg:w="130"/><text x="19.4651%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (130 samples, 0.03%)</title><rect x="19.2151%" y="693" width="0.0251%" height="15" fill="rgb(218,80,54)" fg:x="99453" fg:w="130"/><text x="19.4651%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (130 samples, 0.03%)</title><rect x="19.2151%" y="677" width="0.0251%" height="15" fill="rgb(240,144,17)" fg:x="99453" fg:w="130"/><text x="19.4651%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (53 samples, 0.01%)</title><rect x="19.2453%" y="613" width="0.0102%" height="15" fill="rgb(245,27,50)" fg:x="99609" fg:w="53"/><text x="19.4953%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="19.2453%" y="597" width="0.0102%" height="15" fill="rgb(251,51,7)" fg:x="99609" fg:w="53"/><text x="19.4953%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (60 samples, 0.01%)</title><rect x="19.2447%" y="629" width="0.0116%" height="15" fill="rgb(245,217,29)" fg:x="99606" fg:w="60"/><text x="19.4947%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (77 samples, 0.01%)</title><rect x="19.2416%" y="693" width="0.0149%" height="15" fill="rgb(221,176,29)" fg:x="99590" fg:w="77"/><text x="19.4916%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (76 samples, 0.01%)</title><rect x="19.2418%" y="677" width="0.0147%" height="15" fill="rgb(212,180,24)" fg:x="99591" fg:w="76"/><text x="19.4918%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (76 samples, 0.01%)</title><rect x="19.2418%" y="661" width="0.0147%" height="15" fill="rgb(254,24,2)" fg:x="99591" fg:w="76"/><text x="19.4918%" y="671.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.01%)</title><rect x="19.2418%" y="645" width="0.0147%" height="15" fill="rgb(230,100,2)" fg:x="99591" fg:w="76"/><text x="19.4918%" y="655.50"></text></g><g><title>G1ParTask::work (719 samples, 0.14%)</title><rect x="19.1201%" y="725" width="0.1389%" height="15" fill="rgb(219,142,25)" fg:x="98961" fg:w="719"/><text x="19.3701%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (97 samples, 0.02%)</title><rect x="19.2402%" y="709" width="0.0187%" height="15" fill="rgb(240,73,43)" fg:x="99583" fg:w="97"/><text x="19.4902%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.02%)</title><rect x="19.2812%" y="501" width="0.0199%" height="15" fill="rgb(214,114,15)" fg:x="99795" fg:w="103"/><text x="19.5312%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (103 samples, 0.02%)</title><rect x="19.2812%" y="485" width="0.0199%" height="15" fill="rgb(207,130,4)" fg:x="99795" fg:w="103"/><text x="19.5312%" y="495.50"></text></g><g><title>native_write_msr (103 samples, 0.02%)</title><rect x="19.2812%" y="469" width="0.0199%" height="15" fill="rgb(221,25,40)" fg:x="99795" fg:w="103"/><text x="19.5312%" y="479.50"></text></g><g><title>finish_task_switch (111 samples, 0.02%)</title><rect x="19.2806%" y="517" width="0.0214%" height="15" fill="rgb(241,184,7)" fg:x="99792" fg:w="111"/><text x="19.5306%" y="527.50"></text></g><g><title>do_syscall_64 (129 samples, 0.02%)</title><rect x="19.2791%" y="629" width="0.0249%" height="15" fill="rgb(235,159,4)" fg:x="99784" fg:w="129"/><text x="19.5291%" y="639.50"></text></g><g><title>__x64_sys_futex (129 samples, 0.02%)</title><rect x="19.2791%" y="613" width="0.0249%" height="15" fill="rgb(214,87,48)" fg:x="99784" fg:w="129"/><text x="19.5291%" y="623.50"></text></g><g><title>do_futex (129 samples, 0.02%)</title><rect x="19.2791%" y="597" width="0.0249%" height="15" fill="rgb(246,198,24)" fg:x="99784" fg:w="129"/><text x="19.5291%" y="607.50"></text></g><g><title>futex_wait (128 samples, 0.02%)</title><rect x="19.2793%" y="581" width="0.0247%" height="15" fill="rgb(209,66,40)" fg:x="99785" fg:w="128"/><text x="19.5293%" y="591.50"></text></g><g><title>futex_wait_queue_me (128 samples, 0.02%)</title><rect x="19.2793%" y="565" width="0.0247%" height="15" fill="rgb(233,147,39)" fg:x="99785" fg:w="128"/><text x="19.5293%" y="575.50"></text></g><g><title>schedule (127 samples, 0.02%)</title><rect x="19.2795%" y="549" width="0.0245%" height="15" fill="rgb(231,145,52)" fg:x="99786" fg:w="127"/><text x="19.5295%" y="559.50"></text></g><g><title>__schedule (126 samples, 0.02%)</title><rect x="19.2796%" y="533" width="0.0243%" height="15" fill="rgb(206,20,26)" fg:x="99787" fg:w="126"/><text x="19.5296%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.03%)</title><rect x="19.2791%" y="645" width="0.0251%" height="15" fill="rgb(238,220,4)" fg:x="99784" fg:w="130"/><text x="19.5291%" y="655.50"></text></g><g><title>__GI___clone (964 samples, 0.19%)</title><rect x="19.1181%" y="805" width="0.1863%" height="15" fill="rgb(252,195,42)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="815.50"></text></g><g><title>start_thread (964 samples, 0.19%)</title><rect x="19.1181%" y="789" width="0.1863%" height="15" fill="rgb(209,10,6)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="799.50"></text></g><g><title>thread_native_entry (964 samples, 0.19%)</title><rect x="19.1181%" y="773" width="0.1863%" height="15" fill="rgb(229,3,52)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="783.50"></text></g><g><title>Thread::call_run (964 samples, 0.19%)</title><rect x="19.1181%" y="757" width="0.1863%" height="15" fill="rgb(253,49,37)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="767.50"></text></g><g><title>GangWorker::loop (964 samples, 0.19%)</title><rect x="19.1181%" y="741" width="0.1863%" height="15" fill="rgb(240,103,49)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (133 samples, 0.03%)</title><rect x="19.2787%" y="725" width="0.0257%" height="15" fill="rgb(250,182,30)" fg:x="99782" fg:w="133"/><text x="19.5287%" y="735.50"></text></g><g><title>PosixSemaphore::wait (133 samples, 0.03%)</title><rect x="19.2787%" y="709" width="0.0257%" height="15" fill="rgb(248,8,30)" fg:x="99782" fg:w="133"/><text x="19.5287%" y="719.50"></text></g><g><title>__new_sem_wait_slow (132 samples, 0.03%)</title><rect x="19.2789%" y="693" width="0.0255%" height="15" fill="rgb(237,120,30)" fg:x="99783" fg:w="132"/><text x="19.5289%" y="703.50"></text></g><g><title>do_futex_wait (132 samples, 0.03%)</title><rect x="19.2789%" y="677" width="0.0255%" height="15" fill="rgb(221,146,34)" fg:x="99783" fg:w="132"/><text x="19.5289%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (132 samples, 0.03%)</title><rect x="19.2789%" y="661" width="0.0255%" height="15" fill="rgb(242,55,13)" fg:x="99783" fg:w="132"/><text x="19.5289%" y="671.50"></text></g><g><title>GC_Thread#7 (993 samples, 0.19%)</title><rect x="19.1131%" y="821" width="0.1919%" height="15" fill="rgb(242,112,31)" fg:x="98925" fg:w="993"/><text x="19.3631%" y="831.50"></text></g><g><title>[perf-965379.map] (141 samples, 0.03%)</title><rect x="19.3142%" y="805" width="0.0272%" height="15" fill="rgb(249,192,27)" fg:x="99966" fg:w="141"/><text x="19.5642%" y="815.50"></text></g><g><title>Service_Thread (161 samples, 0.03%)</title><rect x="19.3129%" y="821" width="0.0311%" height="15" fill="rgb(208,204,44)" fg:x="99959" fg:w="161"/><text x="19.5629%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.02%)</title><rect x="19.3811%" y="469" width="0.0156%" height="15" fill="rgb(208,93,54)" fg:x="100312" fg:w="81"/><text x="19.6311%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.02%)</title><rect x="19.3815%" y="453" width="0.0153%" height="15" fill="rgb(242,1,31)" fg:x="100314" fg:w="79"/><text x="19.6315%" y="463.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="19.3817%" y="437" width="0.0151%" height="15" fill="rgb(241,83,25)" fg:x="100315" fg:w="78"/><text x="19.6317%" y="447.50"></text></g><g><title>finish_task_switch (88 samples, 0.02%)</title><rect x="19.3803%" y="485" width="0.0170%" height="15" fill="rgb(205,169,50)" fg:x="100308" fg:w="88"/><text x="19.6303%" y="495.50"></text></g><g><title>futex_wait_queue_me (202 samples, 0.04%)</title><rect x="19.3662%" y="533" width="0.0390%" height="15" fill="rgb(239,186,37)" fg:x="100235" fg:w="202"/><text x="19.6162%" y="543.50"></text></g><g><title>schedule (179 samples, 0.03%)</title><rect x="19.3706%" y="517" width="0.0346%" height="15" fill="rgb(205,221,10)" fg:x="100258" fg:w="179"/><text x="19.6206%" y="527.50"></text></g><g><title>__schedule (177 samples, 0.03%)</title><rect x="19.3710%" y="501" width="0.0342%" height="15" fill="rgb(218,196,15)" fg:x="100260" fg:w="177"/><text x="19.6210%" y="511.50"></text></g><g><title>do_futex (237 samples, 0.05%)</title><rect x="19.3645%" y="565" width="0.0458%" height="15" fill="rgb(218,196,35)" fg:x="100226" fg:w="237"/><text x="19.6145%" y="575.50"></text></g><g><title>futex_wait (232 samples, 0.04%)</title><rect x="19.3654%" y="549" width="0.0448%" height="15" fill="rgb(233,63,24)" fg:x="100231" fg:w="232"/><text x="19.6154%" y="559.50"></text></g><g><title>do_syscall_64 (247 samples, 0.05%)</title><rect x="19.3635%" y="597" width="0.0477%" height="15" fill="rgb(225,8,4)" fg:x="100221" fg:w="247"/><text x="19.6135%" y="607.50"></text></g><g><title>__x64_sys_futex (246 samples, 0.05%)</title><rect x="19.3637%" y="581" width="0.0475%" height="15" fill="rgb(234,105,35)" fg:x="100222" fg:w="246"/><text x="19.6137%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (262 samples, 0.05%)</title><rect x="19.3631%" y="613" width="0.0506%" height="15" fill="rgb(236,21,32)" fg:x="100219" fg:w="262"/><text x="19.6131%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (286 samples, 0.06%)</title><rect x="19.3589%" y="661" width="0.0553%" height="15" fill="rgb(228,109,6)" fg:x="100197" fg:w="286"/><text x="19.6089%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (286 samples, 0.06%)</title><rect x="19.3589%" y="645" width="0.0553%" height="15" fill="rgb(229,215,31)" fg:x="100197" fg:w="286"/><text x="19.6089%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (277 samples, 0.05%)</title><rect x="19.3606%" y="629" width="0.0535%" height="15" fill="rgb(221,52,54)" fg:x="100206" fg:w="277"/><text x="19.6106%" y="639.50"></text></g><g><title>Monitor::wait (383 samples, 0.07%)</title><rect x="19.3527%" y="709" width="0.0740%" height="15" fill="rgb(252,129,43)" fg:x="100165" fg:w="383"/><text x="19.6027%" y="719.50"></text></g><g><title>Monitor::IWait (381 samples, 0.07%)</title><rect x="19.3531%" y="693" width="0.0736%" height="15" fill="rgb(248,183,27)" fg:x="100167" fg:w="381"/><text x="19.6031%" y="703.50"></text></g><g><title>os::PlatformEvent::park (368 samples, 0.07%)</title><rect x="19.3556%" y="677" width="0.0711%" height="15" fill="rgb(250,0,22)" fg:x="100180" fg:w="368"/><text x="19.6056%" y="687.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (149 samples, 0.03%)</title><rect x="19.4348%" y="661" width="0.0288%" height="15" fill="rgb(213,166,10)" fg:x="100590" fg:w="149"/><text x="19.6848%" y="671.50"></text></g><g><title>NMethodSweeper::process_compiled_method (205 samples, 0.04%)</title><rect x="19.4342%" y="677" width="0.0396%" height="15" fill="rgb(207,163,36)" fg:x="100587" fg:w="205"/><text x="19.6842%" y="687.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (241 samples, 0.05%)</title><rect x="19.4288%" y="693" width="0.0466%" height="15" fill="rgb(208,122,22)" fg:x="100559" fg:w="241"/><text x="19.6788%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (253 samples, 0.05%)</title><rect x="19.4267%" y="709" width="0.0489%" height="15" fill="rgb(207,104,49)" fg:x="100548" fg:w="253"/><text x="19.6767%" y="719.50"></text></g><g><title>__GI___clone (663 samples, 0.13%)</title><rect x="19.3494%" y="805" width="0.1281%" height="15" fill="rgb(248,211,50)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="815.50"></text></g><g><title>start_thread (663 samples, 0.13%)</title><rect x="19.3494%" y="789" width="0.1281%" height="15" fill="rgb(217,13,45)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="799.50"></text></g><g><title>thread_native_entry (663 samples, 0.13%)</title><rect x="19.3494%" y="773" width="0.1281%" height="15" fill="rgb(211,216,49)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="783.50"></text></g><g><title>Thread::call_run (663 samples, 0.13%)</title><rect x="19.3494%" y="757" width="0.1281%" height="15" fill="rgb(221,58,53)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (663 samples, 0.13%)</title><rect x="19.3494%" y="741" width="0.1281%" height="15" fill="rgb(220,112,41)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="751.50"></text></g><g><title>NMethodSweeper::sweeper_loop (662 samples, 0.13%)</title><rect x="19.3496%" y="725" width="0.1279%" height="15" fill="rgb(236,38,28)" fg:x="100149" fg:w="662"/><text x="19.5996%" y="735.50"></text></g><g><title>Sweeper_thread (689 samples, 0.13%)</title><rect x="19.3455%" y="821" width="0.1331%" height="15" fill="rgb(227,195,22)" fg:x="100128" fg:w="689"/><text x="19.5955%" y="831.50"></text></g><g><title>get_cpu_load (77 samples, 0.01%)</title><rect x="19.5733%" y="789" width="0.0149%" height="15" fill="rgb(214,55,33)" fg:x="101307" fg:w="77"/><text x="19.8233%" y="799.50"></text></g><g><title>get_cpuload_internal (77 samples, 0.01%)</title><rect x="19.5733%" y="773" width="0.0149%" height="15" fill="rgb(248,80,13)" fg:x="101307" fg:w="77"/><text x="19.8233%" y="783.50"></text></g><g><title>get_totalticks (77 samples, 0.01%)</title><rect x="19.5733%" y="757" width="0.0149%" height="15" fill="rgb(238,52,6)" fg:x="101307" fg:w="77"/><text x="19.8233%" y="767.50"></text></g><g><title>[perf-965379.map] (547 samples, 0.11%)</title><rect x="19.4843%" y="805" width="0.1057%" height="15" fill="rgb(224,198,47)" fg:x="100846" fg:w="547"/><text x="19.7343%" y="815.50"></text></g><g><title>Thread-0 (619 samples, 0.12%)</title><rect x="19.4786%" y="821" width="0.1196%" height="15" fill="rgb(233,171,20)" fg:x="100817" fg:w="619"/><text x="19.7286%" y="831.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="19.6164%" y="533" width="0.0156%" height="15" fill="rgb(241,30,25)" fg:x="101530" fg:w="81"/><text x="19.8664%" y="543.50"></text></g><g><title>schedule (73 samples, 0.01%)</title><rect x="19.6180%" y="517" width="0.0141%" height="15" fill="rgb(207,171,38)" fg:x="101538" fg:w="73"/><text x="19.8680%" y="527.50"></text></g><g><title>__schedule (69 samples, 0.01%)</title><rect x="19.6187%" y="501" width="0.0133%" height="15" fill="rgb(234,70,1)" fg:x="101542" fg:w="69"/><text x="19.8687%" y="511.50"></text></g><g><title>do_futex (87 samples, 0.02%)</title><rect x="19.6154%" y="565" width="0.0168%" height="15" fill="rgb(232,178,18)" fg:x="101525" fg:w="87"/><text x="19.8654%" y="575.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="19.6156%" y="549" width="0.0166%" height="15" fill="rgb(241,78,40)" fg:x="101526" fg:w="86"/><text x="19.8656%" y="559.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="19.6151%" y="597" width="0.0182%" height="15" fill="rgb(222,35,25)" fg:x="101523" fg:w="94"/><text x="19.8651%" y="607.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.02%)</title><rect x="19.6151%" y="581" width="0.0182%" height="15" fill="rgb(207,92,16)" fg:x="101523" fg:w="94"/><text x="19.8651%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (101 samples, 0.02%)</title><rect x="19.6149%" y="613" width="0.0195%" height="15" fill="rgb(216,59,51)" fg:x="101522" fg:w="101"/><text x="19.8649%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (113 samples, 0.02%)</title><rect x="19.6127%" y="661" width="0.0218%" height="15" fill="rgb(213,80,28)" fg:x="101511" fg:w="113"/><text x="19.8627%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (113 samples, 0.02%)</title><rect x="19.6127%" y="645" width="0.0218%" height="15" fill="rgb(220,93,7)" fg:x="101511" fg:w="113"/><text x="19.8627%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="19.6141%" y="629" width="0.0205%" height="15" fill="rgb(225,24,44)" fg:x="101518" fg:w="106"/><text x="19.8641%" y="639.50"></text></g><g><title>Monitor::wait (142 samples, 0.03%)</title><rect x="19.6093%" y="709" width="0.0274%" height="15" fill="rgb(243,74,40)" fg:x="101493" fg:w="142"/><text x="19.8593%" y="719.50"></text></g><g><title>Monitor::IWait (141 samples, 0.03%)</title><rect x="19.6094%" y="693" width="0.0272%" height="15" fill="rgb(228,39,7)" fg:x="101494" fg:w="141"/><text x="19.8594%" y="703.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.03%)</title><rect x="19.6114%" y="677" width="0.0253%" height="15" fill="rgb(227,79,8)" fg:x="101504" fg:w="131"/><text x="19.8614%" y="687.50"></text></g><g><title>__GI___clone (186 samples, 0.04%)</title><rect x="19.6013%" y="805" width="0.0359%" height="15" fill="rgb(236,58,11)" fg:x="101452" fg:w="186"/><text x="19.8513%" y="815.50"></text></g><g><title>start_thread (186 samples, 0.04%)</title><rect x="19.6013%" y="789" width="0.0359%" height="15" fill="rgb(249,63,35)" fg:x="101452" fg:w="186"/><text x="19.8513%" y="799.50"></text></g><g><title>thread_native_entry (185 samples, 0.04%)</title><rect x="19.6015%" y="773" width="0.0357%" height="15" fill="rgb(252,114,16)" fg:x="101453" fg:w="185"/><text x="19.8515%" y="783.50"></text></g><g><title>Thread::call_run (185 samples, 0.04%)</title><rect x="19.6015%" y="757" width="0.0357%" height="15" fill="rgb(254,151,24)" fg:x="101453" fg:w="185"/><text x="19.8515%" y="767.50"></text></g><g><title>WatcherThread::run (185 samples, 0.04%)</title><rect x="19.6015%" y="741" width="0.0357%" height="15" fill="rgb(253,54,39)" fg:x="101453" fg:w="185"/><text x="19.8515%" y="751.50"></text></g><g><title>WatcherThread::sleep (148 samples, 0.03%)</title><rect x="19.6087%" y="725" width="0.0286%" height="15" fill="rgb(243,25,45)" fg:x="101490" fg:w="148"/><text x="19.8587%" y="735.50"></text></g><g><title>VM_Periodic_Tas (206 samples, 0.04%)</title><rect x="19.5982%" y="821" width="0.0398%" height="15" fill="rgb(234,134,9)" fg:x="101436" fg:w="206"/><text x="19.8482%" y="831.50"></text></g><g><title>[unknown] (83 samples, 0.02%)</title><rect x="19.6413%" y="805" width="0.0160%" height="15" fill="rgb(227,166,31)" fg:x="101659" fg:w="83"/><text x="19.8913%" y="815.50"></text></g><g><title>vframe::sender (76 samples, 0.01%)</title><rect x="19.6427%" y="789" width="0.0147%" height="15" fill="rgb(245,143,41)" fg:x="101666" fg:w="76"/><text x="19.8927%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.02%)</title><rect x="19.6678%" y="469" width="0.0164%" height="15" fill="rgb(238,181,32)" fg:x="101796" fg:w="85"/><text x="19.9178%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (83 samples, 0.02%)</title><rect x="19.6682%" y="453" width="0.0160%" height="15" fill="rgb(224,113,18)" fg:x="101798" fg:w="83"/><text x="19.9182%" y="463.50"></text></g><g><title>native_write_msr (83 samples, 0.02%)</title><rect x="19.6682%" y="437" width="0.0160%" height="15" fill="rgb(240,229,28)" fg:x="101798" fg:w="83"/><text x="19.9182%" y="447.50"></text></g><g><title>finish_task_switch (89 samples, 0.02%)</title><rect x="19.6672%" y="485" width="0.0172%" height="15" fill="rgb(250,185,3)" fg:x="101793" fg:w="89"/><text x="19.9172%" y="495.50"></text></g><g><title>futex_wait_queue_me (98 samples, 0.02%)</title><rect x="19.6663%" y="533" width="0.0189%" height="15" fill="rgb(212,59,25)" fg:x="101788" fg:w="98"/><text x="19.9163%" y="543.50"></text></g><g><title>schedule (95 samples, 0.02%)</title><rect x="19.6668%" y="517" width="0.0184%" height="15" fill="rgb(221,87,20)" fg:x="101791" fg:w="95"/><text x="19.9168%" y="527.50"></text></g><g><title>__schedule (95 samples, 0.02%)</title><rect x="19.6668%" y="501" width="0.0184%" height="15" fill="rgb(213,74,28)" fg:x="101791" fg:w="95"/><text x="19.9168%" y="511.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="19.6661%" y="565" width="0.0193%" height="15" fill="rgb(224,132,34)" fg:x="101787" fg:w="100"/><text x="19.9161%" y="575.50"></text></g><g><title>futex_wait (100 samples, 0.02%)</title><rect x="19.6661%" y="549" width="0.0193%" height="15" fill="rgb(222,101,24)" fg:x="101787" fg:w="100"/><text x="19.9161%" y="559.50"></text></g><g><title>do_syscall_64 (101 samples, 0.02%)</title><rect x="19.6661%" y="597" width="0.0195%" height="15" fill="rgb(254,142,4)" fg:x="101787" fg:w="101"/><text x="19.9161%" y="607.50"></text></g><g><title>__x64_sys_futex (101 samples, 0.02%)</title><rect x="19.6661%" y="581" width="0.0195%" height="15" fill="rgb(230,229,49)" fg:x="101787" fg:w="101"/><text x="19.9161%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (106 samples, 0.02%)</title><rect x="19.6653%" y="661" width="0.0205%" height="15" fill="rgb(238,70,47)" fg:x="101783" fg:w="106"/><text x="19.9153%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (105 samples, 0.02%)</title><rect x="19.6655%" y="645" width="0.0203%" height="15" fill="rgb(231,160,17)" fg:x="101784" fg:w="105"/><text x="19.9155%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.02%)</title><rect x="19.6661%" y="629" width="0.0197%" height="15" fill="rgb(218,68,53)" fg:x="101787" fg:w="102"/><text x="19.9161%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.02%)</title><rect x="19.6661%" y="613" width="0.0197%" height="15" fill="rgb(236,111,10)" fg:x="101787" fg:w="102"/><text x="19.9161%" y="623.50"></text></g><g><title>Monitor::wait (113 samples, 0.02%)</title><rect x="19.6647%" y="709" width="0.0218%" height="15" fill="rgb(224,34,41)" fg:x="101780" fg:w="113"/><text x="19.9147%" y="719.50"></text></g><g><title>Monitor::IWait (112 samples, 0.02%)</title><rect x="19.6649%" y="693" width="0.0216%" height="15" fill="rgb(241,118,19)" fg:x="101781" fg:w="112"/><text x="19.9149%" y="703.50"></text></g><g><title>os::PlatformEvent::park (111 samples, 0.02%)</title><rect x="19.6651%" y="677" width="0.0214%" height="15" fill="rgb(238,129,25)" fg:x="101782" fg:w="111"/><text x="19.9151%" y="687.50"></text></g><g><title>Monitor::wait (54 samples, 0.01%)</title><rect x="19.7053%" y="693" width="0.0104%" height="15" fill="rgb(238,22,31)" fg:x="101990" fg:w="54"/><text x="19.9553%" y="703.50"></text></g><g><title>Monitor::IWait (53 samples, 0.01%)</title><rect x="19.7055%" y="677" width="0.0102%" height="15" fill="rgb(222,174,48)" fg:x="101991" fg:w="53"/><text x="19.9555%" y="687.50"></text></g><g><title>PosixSemaphore::signal (60 samples, 0.01%)</title><rect x="19.7192%" y="645" width="0.0116%" height="15" fill="rgb(206,152,40)" fg:x="102062" fg:w="60"/><text x="19.9692%" y="655.50"></text></g><g><title>__new_sem_post (59 samples, 0.01%)</title><rect x="19.7194%" y="629" width="0.0114%" height="15" fill="rgb(218,99,54)" fg:x="102063" fg:w="59"/><text x="19.9694%" y="639.50"></text></g><g><title>futex_wake (59 samples, 0.01%)</title><rect x="19.7194%" y="613" width="0.0114%" height="15" fill="rgb(220,174,26)" fg:x="102063" fg:w="59"/><text x="19.9694%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="19.7200%" y="597" width="0.0108%" height="15" fill="rgb(245,116,9)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="607.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="19.7200%" y="581" width="0.0108%" height="15" fill="rgb(209,72,35)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="591.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="19.7200%" y="565" width="0.0108%" height="15" fill="rgb(226,126,21)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="575.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="19.7200%" y="549" width="0.0108%" height="15" fill="rgb(227,192,1)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="559.50"></text></g><g><title>futex_wake (56 samples, 0.01%)</title><rect x="19.7200%" y="533" width="0.0108%" height="15" fill="rgb(237,180,29)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="543.50"></text></g><g><title>finish_task_switch (71 samples, 0.01%)</title><rect x="19.7319%" y="453" width="0.0137%" height="15" fill="rgb(230,197,35)" fg:x="102128" fg:w="71"/><text x="19.9819%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="19.7325%" y="437" width="0.0131%" height="15" fill="rgb(246,193,31)" fg:x="102131" fg:w="68"/><text x="19.9825%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="19.7331%" y="421" width="0.0126%" height="15" fill="rgb(241,36,4)" fg:x="102134" fg:w="65"/><text x="19.9831%" y="431.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="19.7331%" y="405" width="0.0126%" height="15" fill="rgb(241,130,17)" fg:x="102134" fg:w="65"/><text x="19.9831%" y="415.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="19.7308%" y="565" width="0.0164%" height="15" fill="rgb(206,137,32)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="575.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="19.7308%" y="549" width="0.0164%" height="15" fill="rgb(237,228,51)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="559.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="19.7308%" y="533" width="0.0164%" height="15" fill="rgb(243,6,42)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="543.50"></text></g><g><title>futex_wait (85 samples, 0.02%)</title><rect x="19.7308%" y="517" width="0.0164%" height="15" fill="rgb(251,74,28)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="527.50"></text></g><g><title>futex_wait_queue_me (85 samples, 0.02%)</title><rect x="19.7308%" y="501" width="0.0164%" height="15" fill="rgb(218,20,49)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="511.50"></text></g><g><title>schedule (84 samples, 0.02%)</title><rect x="19.7310%" y="485" width="0.0162%" height="15" fill="rgb(238,28,14)" fg:x="102123" fg:w="84"/><text x="19.9810%" y="495.50"></text></g><g><title>__schedule (84 samples, 0.02%)</title><rect x="19.7310%" y="469" width="0.0162%" height="15" fill="rgb(229,40,46)" fg:x="102123" fg:w="84"/><text x="19.9810%" y="479.50"></text></g><g><title>WorkGang::run_task (146 samples, 0.03%)</title><rect x="19.7192%" y="677" width="0.0282%" height="15" fill="rgb(244,195,20)" fg:x="102062" fg:w="146"/><text x="19.9692%" y="687.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (146 samples, 0.03%)</title><rect x="19.7192%" y="661" width="0.0282%" height="15" fill="rgb(253,56,35)" fg:x="102062" fg:w="146"/><text x="19.9692%" y="671.50"></text></g><g><title>PosixSemaphore::wait (86 samples, 0.02%)</title><rect x="19.7308%" y="645" width="0.0166%" height="15" fill="rgb(210,149,44)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="655.50"></text></g><g><title>__new_sem_wait_slow (86 samples, 0.02%)</title><rect x="19.7308%" y="629" width="0.0166%" height="15" fill="rgb(240,135,12)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="639.50"></text></g><g><title>do_futex_wait (86 samples, 0.02%)</title><rect x="19.7308%" y="613" width="0.0166%" height="15" fill="rgb(251,24,50)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="623.50"></text></g><g><title>futex_abstimed_wait_cancelable (86 samples, 0.02%)</title><rect x="19.7308%" y="597" width="0.0166%" height="15" fill="rgb(243,200,47)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="19.7308%" y="581" width="0.0166%" height="15" fill="rgb(224,166,26)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="591.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (156 samples, 0.03%)</title><rect x="19.7176%" y="693" width="0.0301%" height="15" fill="rgb(233,0,47)" fg:x="102054" fg:w="156"/><text x="19.9676%" y="703.50"></text></g><g><title>SafepointSynchronize::begin (358 samples, 0.07%)</title><rect x="19.6865%" y="709" width="0.0692%" height="15" fill="rgb(253,80,5)" fg:x="101893" fg:w="358"/><text x="19.9365%" y="719.50"></text></g><g><title>VM_Deoptimize::doit (54 samples, 0.01%)</title><rect x="19.7669%" y="677" width="0.0104%" height="15" fill="rgb(214,133,25)" fg:x="102309" fg:w="54"/><text x="20.0169%" y="687.50"></text></g><g><title>VM_G1CollectForAllocation::doit (53 samples, 0.01%)</title><rect x="19.7775%" y="677" width="0.0102%" height="15" fill="rgb(209,27,14)" fg:x="102364" fg:w="53"/><text x="20.0275%" y="687.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (53 samples, 0.01%)</title><rect x="19.7775%" y="661" width="0.0102%" height="15" fill="rgb(219,102,51)" fg:x="102364" fg:w="53"/><text x="20.0275%" y="671.50"></text></g><g><title>VM_Operation::evaluate (163 samples, 0.03%)</title><rect x="19.7605%" y="693" width="0.0315%" height="15" fill="rgb(237,18,16)" fg:x="102276" fg:w="163"/><text x="20.0105%" y="703.50"></text></g><g><title>VMThread::evaluate_operation (171 samples, 0.03%)</title><rect x="19.7600%" y="709" width="0.0330%" height="15" fill="rgb(241,85,17)" fg:x="102273" fg:w="171"/><text x="20.0100%" y="719.50"></text></g><g><title>Thread::call_run (685 samples, 0.13%)</title><rect x="19.6614%" y="757" width="0.1323%" height="15" fill="rgb(236,90,42)" fg:x="101763" fg:w="685"/><text x="19.9114%" y="767.50"></text></g><g><title>VMThread::run (684 samples, 0.13%)</title><rect x="19.6616%" y="741" width="0.1322%" height="15" fill="rgb(249,57,21)" fg:x="101764" fg:w="684"/><text x="19.9116%" y="751.50"></text></g><g><title>VMThread::loop (684 samples, 0.13%)</title><rect x="19.6616%" y="725" width="0.1322%" height="15" fill="rgb(243,12,36)" fg:x="101764" fg:w="684"/><text x="19.9116%" y="735.50"></text></g><g><title>__GI___clone (707 samples, 0.14%)</title><rect x="19.6574%" y="805" width="0.1366%" height="15" fill="rgb(253,128,47)" fg:x="101742" fg:w="707"/><text x="19.9074%" y="815.50"></text></g><g><title>start_thread (688 samples, 0.13%)</title><rect x="19.6610%" y="789" width="0.1329%" height="15" fill="rgb(207,33,20)" fg:x="101761" fg:w="688"/><text x="19.9110%" y="799.50"></text></g><g><title>thread_native_entry (687 samples, 0.13%)</title><rect x="19.6612%" y="773" width="0.1327%" height="15" fill="rgb(233,215,35)" fg:x="101762" fg:w="687"/><text x="19.9112%" y="783.50"></text></g><g><title>VM_Thread (814 samples, 0.16%)</title><rect x="19.6380%" y="821" width="0.1573%" height="15" fill="rgb(249,188,52)" fg:x="101642" fg:w="814"/><text x="19.8880%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="19.8579%" y="645" width="0.0187%" height="15" fill="rgb(225,12,32)" fg:x="102780" fg:w="97"/><text x="20.1079%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.02%)</title><rect x="19.8581%" y="629" width="0.0185%" height="15" fill="rgb(247,98,14)" fg:x="102781" fg:w="96"/><text x="20.1081%" y="639.50"></text></g><g><title>native_write_msr (96 samples, 0.02%)</title><rect x="19.8581%" y="613" width="0.0185%" height="15" fill="rgb(247,219,48)" fg:x="102781" fg:w="96"/><text x="20.1081%" y="623.50"></text></g><g><title>finish_task_switch (110 samples, 0.02%)</title><rect x="19.8573%" y="661" width="0.0213%" height="15" fill="rgb(253,60,48)" fg:x="102777" fg:w="110"/><text x="20.1073%" y="671.50"></text></g><g><title>futex_wait_queue_me (131 samples, 0.03%)</title><rect x="19.8552%" y="709" width="0.0253%" height="15" fill="rgb(245,15,52)" fg:x="102766" fg:w="131"/><text x="20.1052%" y="719.50"></text></g><g><title>schedule (128 samples, 0.02%)</title><rect x="19.8558%" y="693" width="0.0247%" height="15" fill="rgb(220,133,28)" fg:x="102769" fg:w="128"/><text x="20.1058%" y="703.50"></text></g><g><title>__schedule (128 samples, 0.02%)</title><rect x="19.8558%" y="677" width="0.0247%" height="15" fill="rgb(217,180,4)" fg:x="102769" fg:w="128"/><text x="20.1058%" y="687.50"></text></g><g><title>futex_wait (134 samples, 0.03%)</title><rect x="19.8548%" y="725" width="0.0259%" height="15" fill="rgb(251,24,1)" fg:x="102764" fg:w="134"/><text x="20.1048%" y="735.50"></text></g><g><title>__x64_sys_futex (146 samples, 0.03%)</title><rect x="19.8544%" y="757" width="0.0282%" height="15" fill="rgb(212,185,49)" fg:x="102762" fg:w="146"/><text x="20.1044%" y="767.50"></text></g><g><title>do_futex (144 samples, 0.03%)</title><rect x="19.8548%" y="741" width="0.0278%" height="15" fill="rgb(215,175,22)" fg:x="102764" fg:w="144"/><text x="20.1048%" y="751.50"></text></g><g><title>do_syscall_64 (249 samples, 0.05%)</title><rect x="19.8477%" y="773" width="0.0481%" height="15" fill="rgb(250,205,14)" fg:x="102727" fg:w="249"/><text x="20.0977%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (254 samples, 0.05%)</title><rect x="19.8475%" y="789" width="0.0491%" height="15" fill="rgb(225,211,22)" fg:x="102726" fg:w="254"/><text x="20.0975%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (558 samples, 0.11%)</title><rect x="19.7988%" y="805" width="0.1078%" height="15" fill="rgb(251,179,42)" fg:x="102474" fg:w="558"/><text x="20.0488%" y="815.50"></text></g><g><title>bazel (619 samples, 0.12%)</title><rect x="19.7984%" y="821" width="0.1196%" height="15" fill="rgb(208,216,51)" fg:x="102472" fg:w="619"/><text x="20.0484%" y="831.50"></text></g><g><title>elf_machine_rela (79 samples, 0.02%)</title><rect x="19.9354%" y="693" width="0.0153%" height="15" fill="rgb(235,36,11)" fg:x="103181" fg:w="79"/><text x="20.1854%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (56 samples, 0.01%)</title><rect x="19.9398%" y="677" width="0.0108%" height="15" fill="rgb(213,189,28)" fg:x="103204" fg:w="56"/><text x="20.1898%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (105 samples, 0.02%)</title><rect x="19.9331%" y="709" width="0.0203%" height="15" fill="rgb(227,203,42)" fg:x="103169" fg:w="105"/><text x="20.1831%" y="719.50"></text></g><g><title>_dl_relocate_object (113 samples, 0.02%)</title><rect x="19.9319%" y="725" width="0.0218%" height="15" fill="rgb(244,72,36)" fg:x="103163" fg:w="113"/><text x="20.1819%" y="735.50"></text></g><g><title>[ld-2.31.so] (148 samples, 0.03%)</title><rect x="19.9261%" y="741" width="0.0286%" height="15" fill="rgb(213,53,17)" fg:x="103133" fg:w="148"/><text x="20.1761%" y="751.50"></text></g><g><title>_dl_start_final (151 samples, 0.03%)</title><rect x="19.9261%" y="773" width="0.0292%" height="15" fill="rgb(207,167,3)" fg:x="103133" fg:w="151"/><text x="20.1761%" y="783.50"></text></g><g><title>_dl_sysdep_start (151 samples, 0.03%)</title><rect x="19.9261%" y="757" width="0.0292%" height="15" fill="rgb(216,98,30)" fg:x="103133" fg:w="151"/><text x="20.1761%" y="767.50"></text></g><g><title>_start (166 samples, 0.03%)</title><rect x="19.9238%" y="805" width="0.0321%" height="15" fill="rgb(236,123,15)" fg:x="103121" fg:w="166"/><text x="20.1738%" y="815.50"></text></g><g><title>_dl_start (154 samples, 0.03%)</title><rect x="19.9261%" y="789" width="0.0298%" height="15" fill="rgb(248,81,50)" fg:x="103133" fg:w="154"/><text x="20.1761%" y="799.50"></text></g><g><title>build-runfiles (219 samples, 0.04%)</title><rect x="19.9180%" y="821" width="0.0423%" height="15" fill="rgb(214,120,4)" fg:x="103091" fg:w="219"/><text x="20.1680%" y="831.50"></text></g><g><title>[dash] (56 samples, 0.01%)</title><rect x="20.0165%" y="469" width="0.0108%" height="15" fill="rgb(208,179,34)" fg:x="103601" fg:w="56"/><text x="20.2665%" y="479.50"></text></g><g><title>[dash] (110 samples, 0.02%)</title><rect x="20.0160%" y="485" width="0.0213%" height="15" fill="rgb(227,140,7)" fg:x="103598" fg:w="110"/><text x="20.2660%" y="495.50"></text></g><g><title>__GI___libc_write (54 samples, 0.01%)</title><rect x="20.0486%" y="485" width="0.0104%" height="15" fill="rgb(214,22,6)" fg:x="103767" fg:w="54"/><text x="20.2986%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="20.0490%" y="469" width="0.0100%" height="15" fill="rgb(207,137,27)" fg:x="103769" fg:w="52"/><text x="20.2990%" y="479.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="20.0490%" y="453" width="0.0100%" height="15" fill="rgb(210,8,46)" fg:x="103769" fg:w="52"/><text x="20.2990%" y="463.50"></text></g><g><title>alloc_bprm (78 samples, 0.02%)</title><rect x="20.0602%" y="405" width="0.0151%" height="15" fill="rgb(240,16,54)" fg:x="103827" fg:w="78"/><text x="20.3102%" y="415.50"></text></g><g><title>btrfs_getxattr (57 samples, 0.01%)</title><rect x="20.0905%" y="293" width="0.0110%" height="15" fill="rgb(211,209,29)" fg:x="103984" fg:w="57"/><text x="20.3405%" y="303.50"></text></g><g><title>get_vfs_caps_from_disk (59 samples, 0.01%)</title><rect x="20.0905%" y="325" width="0.0114%" height="15" fill="rgb(226,228,24)" fg:x="103984" fg:w="59"/><text x="20.3405%" y="335.50"></text></g><g><title>__vfs_getxattr (59 samples, 0.01%)</title><rect x="20.0905%" y="309" width="0.0114%" height="15" fill="rgb(222,84,9)" fg:x="103984" fg:w="59"/><text x="20.3405%" y="319.50"></text></g><g><title>security_bprm_creds_from_file (62 samples, 0.01%)</title><rect x="20.0902%" y="357" width="0.0120%" height="15" fill="rgb(234,203,30)" fg:x="103982" fg:w="62"/><text x="20.3402%" y="367.50"></text></g><g><title>cap_bprm_creds_from_file (62 samples, 0.01%)</title><rect x="20.0902%" y="341" width="0.0120%" height="15" fill="rgb(238,109,14)" fg:x="103982" fg:w="62"/><text x="20.3402%" y="351.50"></text></g><g><title>begin_new_exec (71 samples, 0.01%)</title><rect x="20.0890%" y="373" width="0.0137%" height="15" fill="rgb(233,206,34)" fg:x="103976" fg:w="71"/><text x="20.3390%" y="383.50"></text></g><g><title>load_elf_binary (124 samples, 0.02%)</title><rect x="20.0874%" y="389" width="0.0240%" height="15" fill="rgb(220,167,47)" fg:x="103968" fg:w="124"/><text x="20.3374%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (220 samples, 0.04%)</title><rect x="20.1228%" y="309" width="0.0425%" height="15" fill="rgb(238,105,10)" fg:x="104151" fg:w="220"/><text x="20.3728%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.04%)</title><rect x="20.1238%" y="293" width="0.0415%" height="15" fill="rgb(213,227,17)" fg:x="104156" fg:w="215"/><text x="20.3738%" y="303.50"></text></g><g><title>native_write_msr (214 samples, 0.04%)</title><rect x="20.1240%" y="277" width="0.0413%" height="15" fill="rgb(217,132,38)" fg:x="104157" fg:w="214"/><text x="20.3740%" y="287.50"></text></g><g><title>_cond_resched (229 samples, 0.04%)</title><rect x="20.1216%" y="357" width="0.0442%" height="15" fill="rgb(242,146,4)" fg:x="104145" fg:w="229"/><text x="20.3716%" y="367.50"></text></g><g><title>__schedule (229 samples, 0.04%)</title><rect x="20.1216%" y="341" width="0.0442%" height="15" fill="rgb(212,61,9)" fg:x="104145" fg:w="229"/><text x="20.3716%" y="351.50"></text></g><g><title>finish_task_switch (228 samples, 0.04%)</title><rect x="20.1218%" y="325" width="0.0441%" height="15" fill="rgb(247,126,22)" fg:x="104146" fg:w="228"/><text x="20.3718%" y="335.50"></text></g><g><title>sched_exec (262 samples, 0.05%)</title><rect x="20.1157%" y="389" width="0.0506%" height="15" fill="rgb(220,196,2)" fg:x="104114" fg:w="262"/><text x="20.3657%" y="399.50"></text></g><g><title>stop_one_cpu (237 samples, 0.05%)</title><rect x="20.1205%" y="373" width="0.0458%" height="15" fill="rgb(208,46,4)" fg:x="104139" fg:w="237"/><text x="20.3705%" y="383.50"></text></g><g><title>apparmor_bprm_creds_for_exec (81 samples, 0.02%)</title><rect x="20.1746%" y="373" width="0.0156%" height="15" fill="rgb(252,104,46)" fg:x="104419" fg:w="81"/><text x="20.4246%" y="383.50"></text></g><g><title>profile_transition (66 samples, 0.01%)</title><rect x="20.1775%" y="357" width="0.0128%" height="15" fill="rgb(237,152,48)" fg:x="104434" fg:w="66"/><text x="20.4275%" y="367.50"></text></g><g><title>security_bprm_creds_for_exec (85 samples, 0.02%)</title><rect x="20.1744%" y="389" width="0.0164%" height="15" fill="rgb(221,59,37)" fg:x="104418" fg:w="85"/><text x="20.4244%" y="399.50"></text></g><g><title>bprm_execve (602 samples, 0.12%)</title><rect x="20.0753%" y="405" width="0.1163%" height="15" fill="rgb(209,202,51)" fg:x="103905" fg:w="602"/><text x="20.3253%" y="415.50"></text></g><g><title>__get_user_pages_remote (82 samples, 0.02%)</title><rect x="20.1918%" y="373" width="0.0158%" height="15" fill="rgb(228,81,30)" fg:x="104508" fg:w="82"/><text x="20.4418%" y="383.50"></text></g><g><title>__get_user_pages (79 samples, 0.02%)</title><rect x="20.1924%" y="357" width="0.0153%" height="15" fill="rgb(227,42,39)" fg:x="104511" fg:w="79"/><text x="20.4424%" y="367.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="20.1947%" y="341" width="0.0129%" height="15" fill="rgb(221,26,2)" fg:x="104523" fg:w="67"/><text x="20.4447%" y="351.50"></text></g><g><title>get_arg_page (86 samples, 0.02%)</title><rect x="20.1916%" y="389" width="0.0166%" height="15" fill="rgb(254,61,31)" fg:x="104507" fg:w="86"/><text x="20.4416%" y="399.50"></text></g><g><title>copy_string_kernel (87 samples, 0.02%)</title><rect x="20.1916%" y="405" width="0.0168%" height="15" fill="rgb(222,173,38)" fg:x="104507" fg:w="87"/><text x="20.4416%" y="415.50"></text></g><g><title>copy_strings.isra.0 (57 samples, 0.01%)</title><rect x="20.2084%" y="405" width="0.0110%" height="15" fill="rgb(218,50,12)" fg:x="104594" fg:w="57"/><text x="20.4584%" y="415.50"></text></g><g><title>do_execveat_common (832 samples, 0.16%)</title><rect x="20.0598%" y="421" width="0.1607%" height="15" fill="rgb(223,88,40)" fg:x="103825" fg:w="832"/><text x="20.3098%" y="431.50"></text></g><g><title>__GI_execve (853 samples, 0.16%)</title><rect x="20.0590%" y="485" width="0.1648%" height="15" fill="rgb(237,54,19)" fg:x="103821" fg:w="853"/><text x="20.3090%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (852 samples, 0.16%)</title><rect x="20.0592%" y="469" width="0.1646%" height="15" fill="rgb(251,129,25)" fg:x="103822" fg:w="852"/><text x="20.3092%" y="479.50"></text></g><g><title>do_syscall_64 (852 samples, 0.16%)</title><rect x="20.0592%" y="453" width="0.1646%" height="15" fill="rgb(238,97,19)" fg:x="103822" fg:w="852"/><text x="20.3092%" y="463.50"></text></g><g><title>__x64_sys_execve (851 samples, 0.16%)</title><rect x="20.0594%" y="437" width="0.1644%" height="15" fill="rgb(240,169,18)" fg:x="103823" fg:w="851"/><text x="20.3094%" y="447.50"></text></g><g><title>__strcspn_sse42 (85 samples, 0.02%)</title><rect x="20.2244%" y="485" width="0.0164%" height="15" fill="rgb(230,187,49)" fg:x="104677" fg:w="85"/><text x="20.4744%" y="495.50"></text></g><g><title>[dash] (1,221 samples, 0.24%)</title><rect x="20.0069%" y="501" width="0.2359%" height="15" fill="rgb(209,44,26)" fg:x="103551" fg:w="1221"/><text x="20.2569%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (1,051 samples, 0.20%)</title><rect x="20.2638%" y="373" width="0.2031%" height="15" fill="rgb(244,0,6)" fg:x="104881" fg:w="1051"/><text x="20.5138%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,022 samples, 0.20%)</title><rect x="20.2694%" y="357" width="0.1975%" height="15" fill="rgb(248,18,21)" fg:x="104910" fg:w="1022"/><text x="20.5194%" y="367.50"></text></g><g><title>native_write_msr (1,013 samples, 0.20%)</title><rect x="20.2712%" y="341" width="0.1957%" height="15" fill="rgb(245,180,19)" fg:x="104919" fg:w="1013"/><text x="20.5212%" y="351.50"></text></g><g><title>finish_task_switch (1,092 samples, 0.21%)</title><rect x="20.2606%" y="389" width="0.2110%" height="15" fill="rgb(252,118,36)" fg:x="104864" fg:w="1092"/><text x="20.5106%" y="399.50"></text></g><g><title>schedule (1,137 samples, 0.22%)</title><rect x="20.2550%" y="421" width="0.2197%" height="15" fill="rgb(210,224,19)" fg:x="104835" fg:w="1137"/><text x="20.5050%" y="431.50"></text></g><g><title>__schedule (1,136 samples, 0.22%)</title><rect x="20.2552%" y="405" width="0.2195%" height="15" fill="rgb(218,30,24)" fg:x="104836" fg:w="1136"/><text x="20.5052%" y="415.50"></text></g><g><title>release_task (131 samples, 0.03%)</title><rect x="20.4779%" y="405" width="0.0253%" height="15" fill="rgb(219,75,50)" fg:x="105989" fg:w="131"/><text x="20.7279%" y="415.50"></text></g><g><title>do_wait (1,302 samples, 0.25%)</title><rect x="20.2528%" y="437" width="0.2516%" height="15" fill="rgb(234,72,50)" fg:x="104824" fg:w="1302"/><text x="20.5028%" y="447.50"></text></g><g><title>wait_consider_task (154 samples, 0.03%)</title><rect x="20.4746%" y="421" width="0.0298%" height="15" fill="rgb(219,100,48)" fg:x="105972" fg:w="154"/><text x="20.7246%" y="431.50"></text></g><g><title>do_syscall_64 (1,313 samples, 0.25%)</title><rect x="20.2509%" y="469" width="0.2537%" height="15" fill="rgb(253,5,41)" fg:x="104814" fg:w="1313"/><text x="20.5009%" y="479.50"></text></g><g><title>kernel_wait4 (1,305 samples, 0.25%)</title><rect x="20.2524%" y="453" width="0.2521%" height="15" fill="rgb(247,181,11)" fg:x="104822" fg:w="1305"/><text x="20.5024%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,367 samples, 0.26%)</title><rect x="20.2509%" y="485" width="0.2641%" height="15" fill="rgb(222,223,25)" fg:x="104814" fg:w="1367"/><text x="20.5009%" y="495.50"></text></g><g><title>syscall_exit_to_user_mode (54 samples, 0.01%)</title><rect x="20.5046%" y="469" width="0.0104%" height="15" fill="rgb(214,198,28)" fg:x="106127" fg:w="54"/><text x="20.7546%" y="479.50"></text></g><g><title>exit_to_user_mode_prepare (53 samples, 0.01%)</title><rect x="20.5048%" y="453" width="0.0102%" height="15" fill="rgb(230,46,43)" fg:x="106128" fg:w="53"/><text x="20.7548%" y="463.50"></text></g><g><title>arch_do_signal (53 samples, 0.01%)</title><rect x="20.5048%" y="437" width="0.0102%" height="15" fill="rgb(233,65,53)" fg:x="106128" fg:w="53"/><text x="20.7548%" y="447.50"></text></g><g><title>__GI___wait4 (1,393 samples, 0.27%)</title><rect x="20.2486%" y="501" width="0.2691%" height="15" fill="rgb(221,121,27)" fg:x="104802" fg:w="1393"/><text x="20.4986%" y="511.50"></text></g><g><title>[dash] (2,801 samples, 0.54%)</title><rect x="20.0022%" y="517" width="0.5412%" height="15" fill="rgb(247,70,47)" fg:x="103527" fg:w="2801"/><text x="20.2522%" y="527.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="20.5595%" y="517" width="0.0112%" height="15" fill="rgb(228,85,35)" fg:x="106411" fg:w="58"/><text x="20.8095%" y="527.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="20.5595%" y="501" width="0.0112%" height="15" fill="rgb(209,50,18)" fg:x="106411" fg:w="58"/><text x="20.8095%" y="511.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="20.5595%" y="485" width="0.0112%" height="15" fill="rgb(250,19,35)" fg:x="106411" fg:w="58"/><text x="20.8095%" y="495.50"></text></g><g><title>[dash] (2,988 samples, 0.58%)</title><rect x="19.9945%" y="533" width="0.5773%" height="15" fill="rgb(253,107,29)" fg:x="103487" fg:w="2988"/><text x="20.2445%" y="543.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.01%)</title><rect x="20.6018%" y="501" width="0.0104%" height="15" fill="rgb(252,179,29)" fg:x="106630" fg:w="54"/><text x="20.8518%" y="511.50"></text></g><g><title>exc_page_fault (54 samples, 0.01%)</title><rect x="20.6018%" y="485" width="0.0104%" height="15" fill="rgb(238,194,6)" fg:x="106630" fg:w="54"/><text x="20.8518%" y="495.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="20.6018%" y="469" width="0.0104%" height="15" fill="rgb(238,164,29)" fg:x="106630" fg:w="54"/><text x="20.8518%" y="479.50"></text></g><g><title>__run_fork_handlers (66 samples, 0.01%)</title><rect x="20.6010%" y="517" width="0.0128%" height="15" fill="rgb(224,25,9)" fg:x="106626" fg:w="66"/><text x="20.8510%" y="527.50"></text></g><g><title>find_vma (54 samples, 0.01%)</title><rect x="20.6387%" y="453" width="0.0104%" height="15" fill="rgb(244,153,23)" fg:x="106821" fg:w="54"/><text x="20.8887%" y="463.50"></text></g><g><title>alloc_set_pte (78 samples, 0.02%)</title><rect x="20.6901%" y="421" width="0.0151%" height="15" fill="rgb(212,203,14)" fg:x="107087" fg:w="78"/><text x="20.9401%" y="431.50"></text></g><g><title>filemap_map_pages (301 samples, 0.06%)</title><rect x="20.6648%" y="437" width="0.0582%" height="15" fill="rgb(220,164,20)" fg:x="106956" fg:w="301"/><text x="20.9148%" y="447.50"></text></g><g><title>xas_find (61 samples, 0.01%)</title><rect x="20.7111%" y="421" width="0.0118%" height="15" fill="rgb(222,203,48)" fg:x="107196" fg:w="61"/><text x="20.9611%" y="431.50"></text></g><g><title>__alloc_pages_nodemask (66 samples, 0.01%)</title><rect x="20.7239%" y="421" width="0.0128%" height="15" fill="rgb(215,159,22)" fg:x="107262" fg:w="66"/><text x="20.9739%" y="431.50"></text></g><g><title>handle_mm_fault (464 samples, 0.09%)</title><rect x="20.6491%" y="453" width="0.0896%" height="15" fill="rgb(216,183,47)" fg:x="106875" fg:w="464"/><text x="20.8991%" y="463.50"></text></g><g><title>pte_alloc_one (82 samples, 0.02%)</title><rect x="20.7229%" y="437" width="0.0158%" height="15" fill="rgb(229,195,25)" fg:x="107257" fg:w="82"/><text x="20.9729%" y="447.50"></text></g><g><title>do_user_addr_fault (548 samples, 0.11%)</title><rect x="20.6333%" y="469" width="0.1059%" height="15" fill="rgb(224,132,51)" fg:x="106793" fg:w="548"/><text x="20.8833%" y="479.50"></text></g><g><title>exc_page_fault (551 samples, 0.11%)</title><rect x="20.6329%" y="485" width="0.1065%" height="15" fill="rgb(240,63,7)" fg:x="106791" fg:w="551"/><text x="20.8829%" y="495.50"></text></g><g><title>asm_exc_page_fault (561 samples, 0.11%)</title><rect x="20.6319%" y="501" width="0.1084%" height="15" fill="rgb(249,182,41)" fg:x="106786" fg:w="561"/><text x="20.8819%" y="511.50"></text></g><g><title>kmem_cache_alloc (79 samples, 0.02%)</title><rect x="20.8037%" y="373" width="0.0153%" height="15" fill="rgb(243,47,26)" fg:x="107675" fg:w="79"/><text x="21.0537%" y="383.50"></text></g><g><title>anon_vma_clone (136 samples, 0.03%)</title><rect x="20.7932%" y="389" width="0.0263%" height="15" fill="rgb(233,48,2)" fg:x="107621" fg:w="136"/><text x="21.0432%" y="399.50"></text></g><g><title>kmem_cache_alloc (65 samples, 0.01%)</title><rect x="20.8207%" y="389" width="0.0126%" height="15" fill="rgb(244,165,34)" fg:x="107763" fg:w="65"/><text x="21.0707%" y="399.50"></text></g><g><title>anon_vma_fork (221 samples, 0.04%)</title><rect x="20.7911%" y="405" width="0.0427%" height="15" fill="rgb(207,89,7)" fg:x="107610" fg:w="221"/><text x="21.0411%" y="415.50"></text></g><g><title>copy_page_range (185 samples, 0.04%)</title><rect x="20.8338%" y="405" width="0.0357%" height="15" fill="rgb(244,117,36)" fg:x="107831" fg:w="185"/><text x="21.0838%" y="415.50"></text></g><g><title>vm_area_dup (152 samples, 0.03%)</title><rect x="20.8800%" y="405" width="0.0294%" height="15" fill="rgb(226,144,34)" fg:x="108070" fg:w="152"/><text x="21.1300%" y="415.50"></text></g><g><title>kmem_cache_alloc (100 samples, 0.02%)</title><rect x="20.8900%" y="389" width="0.0193%" height="15" fill="rgb(213,23,19)" fg:x="108122" fg:w="100"/><text x="21.1400%" y="399.50"></text></g><g><title>dup_mm (697 samples, 0.13%)</title><rect x="20.7755%" y="421" width="0.1347%" height="15" fill="rgb(217,75,12)" fg:x="107529" fg:w="697"/><text x="21.0255%" y="431.50"></text></g><g><title>perf_try_init_event (67 samples, 0.01%)</title><rect x="20.9480%" y="357" width="0.0129%" height="15" fill="rgb(224,159,17)" fg:x="108422" fg:w="67"/><text x="21.1980%" y="367.50"></text></g><g><title>x86_pmu_event_init (67 samples, 0.01%)</title><rect x="20.9480%" y="341" width="0.0129%" height="15" fill="rgb(217,118,1)" fg:x="108422" fg:w="67"/><text x="21.1980%" y="351.50"></text></g><g><title>inherit_task_group.isra.0 (179 samples, 0.03%)</title><rect x="20.9265%" y="405" width="0.0346%" height="15" fill="rgb(232,180,48)" fg:x="108311" fg:w="179"/><text x="21.1765%" y="415.50"></text></g><g><title>inherit_event.constprop.0 (171 samples, 0.03%)</title><rect x="20.9281%" y="389" width="0.0330%" height="15" fill="rgb(230,27,33)" fg:x="108319" fg:w="171"/><text x="21.1781%" y="399.50"></text></g><g><title>perf_event_alloc (141 samples, 0.03%)</title><rect x="20.9339%" y="373" width="0.0272%" height="15" fill="rgb(205,31,21)" fg:x="108349" fg:w="141"/><text x="21.1839%" y="383.50"></text></g><g><title>perf_event_init_task (192 samples, 0.04%)</title><rect x="20.9254%" y="421" width="0.0371%" height="15" fill="rgb(253,59,4)" fg:x="108305" fg:w="192"/><text x="21.1754%" y="431.50"></text></g><g><title>copy_process (1,175 samples, 0.23%)</title><rect x="20.7411%" y="437" width="0.2270%" height="15" fill="rgb(224,201,9)" fg:x="107351" fg:w="1175"/><text x="20.9911%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,259 samples, 0.24%)</title><rect x="20.7405%" y="501" width="0.2432%" height="15" fill="rgb(229,206,30)" fg:x="107348" fg:w="1259"/><text x="20.9905%" y="511.50"></text></g><g><title>do_syscall_64 (1,259 samples, 0.24%)</title><rect x="20.7405%" y="485" width="0.2432%" height="15" fill="rgb(212,67,47)" fg:x="107348" fg:w="1259"/><text x="20.9905%" y="495.50"></text></g><g><title>__do_sys_clone (1,259 samples, 0.24%)</title><rect x="20.7405%" y="469" width="0.2432%" height="15" fill="rgb(211,96,50)" fg:x="107348" fg:w="1259"/><text x="20.9905%" y="479.50"></text></g><g><title>kernel_clone (1,258 samples, 0.24%)</title><rect x="20.7407%" y="453" width="0.2431%" height="15" fill="rgb(252,114,18)" fg:x="107349" fg:w="1258"/><text x="20.9907%" y="463.50"></text></g><g><title>wake_up_new_task (81 samples, 0.02%)</title><rect x="20.9681%" y="437" width="0.0156%" height="15" fill="rgb(223,58,37)" fg:x="108526" fg:w="81"/><text x="21.2181%" y="447.50"></text></g><g><title>calculate_sigpending (54 samples, 0.01%)</title><rect x="20.9955%" y="485" width="0.0104%" height="15" fill="rgb(237,70,4)" fg:x="108668" fg:w="54"/><text x="21.2455%" y="495.50"></text></g><g><title>find_vma (79 samples, 0.02%)</title><rect x="21.0436%" y="405" width="0.0153%" height="15" fill="rgb(244,85,46)" fg:x="108917" fg:w="79"/><text x="21.2936%" y="415.50"></text></g><g><title>do_wp_page (118 samples, 0.02%)</title><rect x="21.0906%" y="389" width="0.0228%" height="15" fill="rgb(223,39,52)" fg:x="109160" fg:w="118"/><text x="21.3406%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (60 samples, 0.01%)</title><rect x="21.1178%" y="357" width="0.0116%" height="15" fill="rgb(218,200,14)" fg:x="109301" fg:w="60"/><text x="21.3678%" y="367.50"></text></g><g><title>alloc_pages_vma (69 samples, 0.01%)</title><rect x="21.1167%" y="373" width="0.0133%" height="15" fill="rgb(208,171,16)" fg:x="109295" fg:w="69"/><text x="21.3667%" y="383.50"></text></g><g><title>handle_mm_fault (432 samples, 0.08%)</title><rect x="21.0589%" y="405" width="0.0835%" height="15" fill="rgb(234,200,18)" fg:x="108996" fg:w="432"/><text x="21.3089%" y="415.50"></text></g><g><title>wp_page_copy (142 samples, 0.03%)</title><rect x="21.1149%" y="389" width="0.0274%" height="15" fill="rgb(228,45,11)" fg:x="109286" fg:w="142"/><text x="21.3649%" y="399.50"></text></g><g><title>exc_page_fault (548 samples, 0.11%)</title><rect x="21.0382%" y="437" width="0.1059%" height="15" fill="rgb(237,182,11)" fg:x="108889" fg:w="548"/><text x="21.2882%" y="447.50"></text></g><g><title>do_user_addr_fault (546 samples, 0.11%)</title><rect x="21.0386%" y="421" width="0.1055%" height="15" fill="rgb(241,175,49)" fg:x="108891" fg:w="546"/><text x="21.2886%" y="431.50"></text></g><g><title>asm_exc_page_fault (635 samples, 0.12%)</title><rect x="21.0220%" y="453" width="0.1227%" height="15" fill="rgb(247,38,35)" fg:x="108805" fg:w="635"/><text x="21.2720%" y="463.50"></text></g><g><title>__put_user_nocheck_4 (705 samples, 0.14%)</title><rect x="21.0092%" y="469" width="0.1362%" height="15" fill="rgb(228,39,49)" fg:x="108739" fg:w="705"/><text x="21.2592%" y="479.50"></text></g><g><title>__task_pid_nr_ns (71 samples, 0.01%)</title><rect x="21.1455%" y="469" width="0.0137%" height="15" fill="rgb(226,101,26)" fg:x="109444" fg:w="71"/><text x="21.3955%" y="479.50"></text></g><g><title>__mmdrop (133 samples, 0.03%)</title><rect x="21.2272%" y="453" width="0.0257%" height="15" fill="rgb(206,141,19)" fg:x="109867" fg:w="133"/><text x="21.4772%" y="463.50"></text></g><g><title>pgd_free (67 samples, 0.01%)</title><rect x="21.2399%" y="437" width="0.0129%" height="15" fill="rgb(211,200,13)" fg:x="109933" fg:w="67"/><text x="21.4899%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (13,173 samples, 2.55%)</title><rect x="21.2529%" y="453" width="2.5451%" height="15" fill="rgb(241,121,6)" fg:x="110000" fg:w="13173"/><text x="21.5029%" y="463.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (12,823 samples, 2.48%)</title><rect x="21.3205%" y="437" width="2.4775%" height="15" fill="rgb(234,221,29)" fg:x="110350" fg:w="12823"/><text x="21.5705%" y="447.50">__..</text></g><g><title>native_write_msr (12,709 samples, 2.46%)</title><rect x="21.3425%" y="421" width="2.4555%" height="15" fill="rgb(229,136,5)" fg:x="110464" fg:w="12709"/><text x="21.5925%" y="431.50">na..</text></g><g><title>ttwu_do_activate (60 samples, 0.01%)</title><rect x="23.8195%" y="245" width="0.0116%" height="15" fill="rgb(238,36,11)" fg:x="123284" fg:w="60"/><text x="24.0695%" y="255.50"></text></g><g><title>__wake_up_common (86 samples, 0.02%)</title><rect x="23.8167%" y="293" width="0.0166%" height="15" fill="rgb(251,55,41)" fg:x="123270" fg:w="86"/><text x="24.0667%" y="303.50"></text></g><g><title>pollwake (85 samples, 0.02%)</title><rect x="23.8169%" y="277" width="0.0164%" height="15" fill="rgb(242,34,40)" fg:x="123271" fg:w="85"/><text x="24.0669%" y="287.50"></text></g><g><title>try_to_wake_up (84 samples, 0.02%)</title><rect x="23.8171%" y="261" width="0.0162%" height="15" fill="rgb(215,42,17)" fg:x="123272" fg:w="84"/><text x="24.0671%" y="271.50"></text></g><g><title>irq_work_run (92 samples, 0.02%)</title><rect x="23.8158%" y="389" width="0.0178%" height="15" fill="rgb(207,44,46)" fg:x="123265" fg:w="92"/><text x="24.0658%" y="399.50"></text></g><g><title>irq_work_run_list (92 samples, 0.02%)</title><rect x="23.8158%" y="373" width="0.0178%" height="15" fill="rgb(211,206,28)" fg:x="123265" fg:w="92"/><text x="24.0658%" y="383.50"></text></g><g><title>irq_work_single (92 samples, 0.02%)</title><rect x="23.8158%" y="357" width="0.0178%" height="15" fill="rgb(237,167,16)" fg:x="123265" fg:w="92"/><text x="24.0658%" y="367.50"></text></g><g><title>perf_pending_event (91 samples, 0.02%)</title><rect x="23.8160%" y="341" width="0.0176%" height="15" fill="rgb(233,66,6)" fg:x="123266" fg:w="91"/><text x="24.0660%" y="351.50"></text></g><g><title>perf_event_wakeup (88 samples, 0.02%)</title><rect x="23.8166%" y="325" width="0.0170%" height="15" fill="rgb(246,123,29)" fg:x="123269" fg:w="88"/><text x="24.0666%" y="335.50"></text></g><g><title>__wake_up_common_lock (87 samples, 0.02%)</title><rect x="23.8167%" y="309" width="0.0168%" height="15" fill="rgb(209,62,40)" fg:x="123270" fg:w="87"/><text x="24.0667%" y="319.50"></text></g><g><title>asm_call_sysvec_on_stack (97 samples, 0.02%)</title><rect x="23.8150%" y="421" width="0.0187%" height="15" fill="rgb(218,4,25)" fg:x="123261" fg:w="97"/><text x="24.0650%" y="431.50"></text></g><g><title>__sysvec_irq_work (94 samples, 0.02%)</title><rect x="23.8156%" y="405" width="0.0182%" height="15" fill="rgb(253,91,49)" fg:x="123264" fg:w="94"/><text x="24.0656%" y="415.50"></text></g><g><title>asm_sysvec_irq_work (177 samples, 0.03%)</title><rect x="23.8003%" y="453" width="0.0342%" height="15" fill="rgb(228,155,29)" fg:x="123185" fg:w="177"/><text x="24.0503%" y="463.50"></text></g><g><title>sysvec_irq_work (108 samples, 0.02%)</title><rect x="23.8137%" y="437" width="0.0209%" height="15" fill="rgb(243,57,37)" fg:x="123254" fg:w="108"/><text x="24.0637%" y="447.50"></text></g><g><title>schedule_tail (14,677 samples, 2.84%)</title><rect x="21.0060%" y="485" width="2.8357%" height="15" fill="rgb(244,167,17)" fg:x="108722" fg:w="14677"/><text x="21.2560%" y="495.50">sc..</text></g><g><title>finish_task_switch (13,884 samples, 2.68%)</title><rect x="21.1592%" y="469" width="2.6825%" height="15" fill="rgb(207,181,38)" fg:x="109515" fg:w="13884"/><text x="21.4092%" y="479.50">fi..</text></g><g><title>ret_from_fork (14,823 samples, 2.86%)</title><rect x="20.9946%" y="501" width="2.8639%" height="15" fill="rgb(211,8,23)" fg:x="108663" fg:w="14823"/><text x="21.2446%" y="511.50">re..</text></g><g><title>syscall_exit_to_user_mode (87 samples, 0.02%)</title><rect x="23.8417%" y="485" width="0.0168%" height="15" fill="rgb(235,11,44)" fg:x="123399" fg:w="87"/><text x="24.0917%" y="495.50"></text></g><g><title>exit_to_user_mode_prepare (87 samples, 0.02%)</title><rect x="23.8417%" y="469" width="0.0168%" height="15" fill="rgb(248,18,52)" fg:x="123399" fg:w="87"/><text x="24.0917%" y="479.50"></text></g><g><title>switch_fpu_return (84 samples, 0.02%)</title><rect x="23.8422%" y="453" width="0.0162%" height="15" fill="rgb(208,4,7)" fg:x="123402" fg:w="84"/><text x="24.0922%" y="463.50"></text></g><g><title>copy_kernel_to_fpregs (58 samples, 0.01%)</title><rect x="23.8473%" y="437" width="0.0112%" height="15" fill="rgb(240,17,39)" fg:x="123428" fg:w="58"/><text x="24.0973%" y="447.50"></text></g><g><title>arch_fork (16,798 samples, 3.25%)</title><rect x="20.6137%" y="517" width="3.2455%" height="15" fill="rgb(207,170,3)" fg:x="106692" fg:w="16798"/><text x="20.8637%" y="527.50">arc..</text></g><g><title>asm_exc_page_fault (198 samples, 0.04%)</title><rect x="23.8593%" y="517" width="0.0383%" height="15" fill="rgb(236,100,52)" fg:x="123490" fg:w="198"/><text x="24.1093%" y="527.50"></text></g><g><title>exc_page_fault (195 samples, 0.04%)</title><rect x="23.8598%" y="501" width="0.0377%" height="15" fill="rgb(246,78,51)" fg:x="123493" fg:w="195"/><text x="24.1098%" y="511.50"></text></g><g><title>do_user_addr_fault (193 samples, 0.04%)</title><rect x="23.8602%" y="485" width="0.0373%" height="15" fill="rgb(211,17,15)" fg:x="123495" fg:w="193"/><text x="24.1102%" y="495.50"></text></g><g><title>handle_mm_fault (172 samples, 0.03%)</title><rect x="23.8643%" y="469" width="0.0332%" height="15" fill="rgb(209,59,46)" fg:x="123516" fg:w="172"/><text x="24.1143%" y="479.50"></text></g><g><title>wp_page_copy (122 samples, 0.02%)</title><rect x="23.8739%" y="453" width="0.0236%" height="15" fill="rgb(210,92,25)" fg:x="123566" fg:w="122"/><text x="24.1239%" y="463.50"></text></g><g><title>__libc_fork (17,178 samples, 3.32%)</title><rect x="20.5815%" y="533" width="3.3189%" height="15" fill="rgb(238,174,52)" fg:x="106525" fg:w="17178"/><text x="20.8315%" y="543.50">__l..</text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="23.9037%" y="485" width="0.0133%" height="15" fill="rgb(230,73,7)" fg:x="123720" fg:w="69"/><text x="24.1537%" y="495.50"></text></g><g><title>filemap_map_pages (61 samples, 0.01%)</title><rect x="23.9052%" y="469" width="0.0118%" height="15" fill="rgb(243,124,40)" fg:x="123728" fg:w="61"/><text x="24.1552%" y="479.50"></text></g><g><title>exc_page_fault (82 samples, 0.02%)</title><rect x="23.9016%" y="517" width="0.0158%" height="15" fill="rgb(244,170,11)" fg:x="123709" fg:w="82"/><text x="24.1516%" y="527.50"></text></g><g><title>do_user_addr_fault (81 samples, 0.02%)</title><rect x="23.9018%" y="501" width="0.0156%" height="15" fill="rgb(207,114,54)" fg:x="123710" fg:w="81"/><text x="24.1518%" y="511.50"></text></g><g><title>asm_exc_page_fault (83 samples, 0.02%)</title><rect x="23.9016%" y="533" width="0.0160%" height="15" fill="rgb(205,42,20)" fg:x="123709" fg:w="83"/><text x="24.1516%" y="543.50"></text></g><g><title>[dash] (20,330 samples, 3.93%)</title><rect x="19.9912%" y="549" width="3.9279%" height="15" fill="rgb(230,30,28)" fg:x="103470" fg:w="20330"/><text x="20.2412%" y="559.50">[das..</text></g><g><title>create_pipe_files (72 samples, 0.01%)</title><rect x="23.9323%" y="469" width="0.0139%" height="15" fill="rgb(205,73,54)" fg:x="123868" fg:w="72"/><text x="24.1823%" y="479.50"></text></g><g><title>__GI_pipe (86 samples, 0.02%)</title><rect x="23.9298%" y="549" width="0.0166%" height="15" fill="rgb(254,227,23)" fg:x="123855" fg:w="86"/><text x="24.1798%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="23.9300%" y="533" width="0.0164%" height="15" fill="rgb(228,202,34)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="543.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="23.9300%" y="517" width="0.0164%" height="15" fill="rgb(222,225,37)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="527.50"></text></g><g><title>__x64_sys_pipe (85 samples, 0.02%)</title><rect x="23.9300%" y="501" width="0.0164%" height="15" fill="rgb(221,14,54)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="511.50"></text></g><g><title>do_pipe2 (85 samples, 0.02%)</title><rect x="23.9300%" y="485" width="0.0164%" height="15" fill="rgb(254,102,2)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="495.50"></text></g><g><title>[dash] (20,484 samples, 3.96%)</title><rect x="19.9895%" y="565" width="3.9577%" height="15" fill="rgb(232,104,17)" fg:x="103461" fg:w="20484"/><text x="20.2395%" y="575.50">[das..</text></g><g><title>[dash] (20,558 samples, 3.97%)</title><rect x="19.9874%" y="581" width="3.9720%" height="15" fill="rgb(250,220,14)" fg:x="103450" fg:w="20558"/><text x="20.2374%" y="591.50">[das..</text></g><g><title>[dash] (20,631 samples, 3.99%)</title><rect x="19.9847%" y="597" width="3.9861%" height="15" fill="rgb(241,158,9)" fg:x="103436" fg:w="20631"/><text x="20.2347%" y="607.50">[das..</text></g><g><title>[dash] (20,754 samples, 4.01%)</title><rect x="19.9820%" y="613" width="4.0098%" height="15" fill="rgb(246,9,43)" fg:x="103422" fg:w="20754"/><text x="20.2320%" y="623.50">[das..</text></g><g><title>filemap_map_pages (122 samples, 0.02%)</title><rect x="24.0188%" y="517" width="0.0236%" height="15" fill="rgb(206,73,33)" fg:x="124316" fg:w="122"/><text x="24.2688%" y="527.50"></text></g><g><title>exc_page_fault (192 samples, 0.04%)</title><rect x="24.0105%" y="565" width="0.0371%" height="15" fill="rgb(222,79,8)" fg:x="124273" fg:w="192"/><text x="24.2605%" y="575.50"></text></g><g><title>do_user_addr_fault (191 samples, 0.04%)</title><rect x="24.0107%" y="549" width="0.0369%" height="15" fill="rgb(234,8,54)" fg:x="124274" fg:w="191"/><text x="24.2607%" y="559.50"></text></g><g><title>handle_mm_fault (174 samples, 0.03%)</title><rect x="24.0140%" y="533" width="0.0336%" height="15" fill="rgb(209,134,38)" fg:x="124291" fg:w="174"/><text x="24.2640%" y="543.50"></text></g><g><title>asm_exc_page_fault (197 samples, 0.04%)</title><rect x="24.0100%" y="581" width="0.0381%" height="15" fill="rgb(230,127,29)" fg:x="124270" fg:w="197"/><text x="24.2600%" y="591.50"></text></g><g><title>copy_page_range (67 samples, 0.01%)</title><rect x="24.0811%" y="485" width="0.0129%" height="15" fill="rgb(242,44,41)" fg:x="124638" fg:w="67"/><text x="24.3311%" y="495.50"></text></g><g><title>dup_mm (200 samples, 0.04%)</title><rect x="24.0675%" y="501" width="0.0386%" height="15" fill="rgb(222,56,43)" fg:x="124568" fg:w="200"/><text x="24.3175%" y="511.50"></text></g><g><title>inherit_task_group.isra.0 (88 samples, 0.02%)</title><rect x="24.1131%" y="485" width="0.0170%" height="15" fill="rgb(238,39,47)" fg:x="124804" fg:w="88"/><text x="24.3631%" y="495.50"></text></g><g><title>inherit_event.constprop.0 (85 samples, 0.02%)</title><rect x="24.1137%" y="469" width="0.0164%" height="15" fill="rgb(226,79,43)" fg:x="124807" fg:w="85"/><text x="24.3637%" y="479.50"></text></g><g><title>perf_event_alloc (73 samples, 0.01%)</title><rect x="24.1160%" y="453" width="0.0141%" height="15" fill="rgb(242,105,53)" fg:x="124819" fg:w="73"/><text x="24.3660%" y="463.50"></text></g><g><title>perf_event_init_task (94 samples, 0.02%)</title><rect x="24.1124%" y="501" width="0.0182%" height="15" fill="rgb(251,132,46)" fg:x="124800" fg:w="94"/><text x="24.3624%" y="511.50"></text></g><g><title>copy_process (436 samples, 0.08%)</title><rect x="24.0482%" y="517" width="0.0842%" height="15" fill="rgb(231,77,14)" fg:x="124468" fg:w="436"/><text x="24.2982%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (462 samples, 0.09%)</title><rect x="24.0480%" y="581" width="0.0893%" height="15" fill="rgb(240,135,9)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="591.50"></text></g><g><title>do_syscall_64 (462 samples, 0.09%)</title><rect x="24.0480%" y="565" width="0.0893%" height="15" fill="rgb(248,109,14)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="575.50"></text></g><g><title>__do_sys_clone (462 samples, 0.09%)</title><rect x="24.0480%" y="549" width="0.0893%" height="15" fill="rgb(227,146,52)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="559.50"></text></g><g><title>kernel_clone (462 samples, 0.09%)</title><rect x="24.0480%" y="533" width="0.0893%" height="15" fill="rgb(232,54,3)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="543.50"></text></g><g><title>get_page_from_freelist (92 samples, 0.02%)</title><rect x="24.1900%" y="421" width="0.0178%" height="15" fill="rgb(229,201,43)" fg:x="125202" fg:w="92"/><text x="24.4400%" y="431.50"></text></g><g><title>__alloc_pages_nodemask (120 samples, 0.02%)</title><rect x="24.1848%" y="437" width="0.0232%" height="15" fill="rgb(252,161,33)" fg:x="125175" fg:w="120"/><text x="24.4348%" y="447.50"></text></g><g><title>alloc_pages_vma (135 samples, 0.03%)</title><rect x="24.1825%" y="453" width="0.0261%" height="15" fill="rgb(226,146,40)" fg:x="125163" fg:w="135"/><text x="24.4325%" y="463.50"></text></g><g><title>ptep_clear_flush (62 samples, 0.01%)</title><rect x="24.2366%" y="453" width="0.0120%" height="15" fill="rgb(219,47,25)" fg:x="125443" fg:w="62"/><text x="24.4866%" y="463.50"></text></g><g><title>flush_tlb_mm_range (56 samples, 0.01%)</title><rect x="24.2377%" y="437" width="0.0108%" height="15" fill="rgb(250,135,13)" fg:x="125449" fg:w="56"/><text x="24.4877%" y="447.50"></text></g><g><title>handle_mm_fault (442 samples, 0.09%)</title><rect x="24.1637%" y="485" width="0.0854%" height="15" fill="rgb(219,229,18)" fg:x="125066" fg:w="442"/><text x="24.4137%" y="495.50"></text></g><g><title>wp_page_copy (370 samples, 0.07%)</title><rect x="24.1777%" y="469" width="0.0715%" height="15" fill="rgb(217,152,27)" fg:x="125138" fg:w="370"/><text x="24.4277%" y="479.50"></text></g><g><title>do_user_addr_fault (488 samples, 0.09%)</title><rect x="24.1558%" y="501" width="0.0943%" height="15" fill="rgb(225,71,47)" fg:x="125025" fg:w="488"/><text x="24.4058%" y="511.50"></text></g><g><title>exc_page_fault (490 samples, 0.09%)</title><rect x="24.1556%" y="517" width="0.0947%" height="15" fill="rgb(220,139,14)" fg:x="125024" fg:w="490"/><text x="24.4056%" y="527.50"></text></g><g><title>asm_exc_page_fault (526 samples, 0.10%)</title><rect x="24.1491%" y="533" width="0.1016%" height="15" fill="rgb(247,54,32)" fg:x="124990" fg:w="526"/><text x="24.3991%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (548 samples, 0.11%)</title><rect x="24.1454%" y="549" width="0.1059%" height="15" fill="rgb(252,131,39)" fg:x="124971" fg:w="548"/><text x="24.3954%" y="559.50"></text></g><g><title>__mmdrop (200 samples, 0.04%)</title><rect x="24.3002%" y="533" width="0.0386%" height="15" fill="rgb(210,108,39)" fg:x="125772" fg:w="200"/><text x="24.5502%" y="543.50"></text></g><g><title>pgd_free (112 samples, 0.02%)</title><rect x="24.3172%" y="517" width="0.0216%" height="15" fill="rgb(205,23,29)" fg:x="125860" fg:w="112"/><text x="24.5672%" y="527.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="24.3286%" y="501" width="0.0102%" height="15" fill="rgb(246,139,46)" fg:x="125919" fg:w="53"/><text x="24.5786%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (6,251 samples, 1.21%)</title><rect x="24.3388%" y="533" width="1.2077%" height="15" fill="rgb(250,81,26)" fg:x="125972" fg:w="6251"/><text x="24.5888%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,049 samples, 1.17%)</title><rect x="24.3778%" y="517" width="1.1687%" height="15" fill="rgb(214,104,7)" fg:x="126174" fg:w="6049"/><text x="24.6278%" y="527.50"></text></g><g><title>native_write_msr (6,009 samples, 1.16%)</title><rect x="24.3856%" y="501" width="1.1610%" height="15" fill="rgb(233,189,8)" fg:x="126214" fg:w="6009"/><text x="24.6356%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (95 samples, 0.02%)</title><rect x="25.5479%" y="533" width="0.0184%" height="15" fill="rgb(228,141,17)" fg:x="132230" fg:w="95"/><text x="25.7979%" y="543.50"></text></g><g><title>schedule_tail (7,378 samples, 1.43%)</title><rect x="24.1450%" y="565" width="1.4255%" height="15" fill="rgb(247,157,1)" fg:x="124969" fg:w="7378"/><text x="24.3950%" y="575.50"></text></g><g><title>finish_task_switch (6,812 samples, 1.32%)</title><rect x="24.2544%" y="549" width="1.3161%" height="15" fill="rgb(249,225,5)" fg:x="125535" fg:w="6812"/><text x="24.5044%" y="559.50"></text></g><g><title>ret_from_fork (7,431 samples, 1.44%)</title><rect x="24.1413%" y="581" width="1.4357%" height="15" fill="rgb(242,55,13)" fg:x="124950" fg:w="7431"/><text x="24.3913%" y="591.50"></text></g><g><title>arch_fork (8,151 samples, 1.57%)</title><rect x="24.0024%" y="597" width="1.5748%" height="15" fill="rgb(230,49,50)" fg:x="124231" fg:w="8151"/><text x="24.2524%" y="607.50"></text></g><g><title>__libc_fork (8,254 samples, 1.59%)</title><rect x="23.9920%" y="613" width="1.5947%" height="15" fill="rgb(241,111,38)" fg:x="124177" fg:w="8254"/><text x="24.2420%" y="623.50"></text></g><g><title>[dash] (29,035 samples, 5.61%)</title><rect x="19.9794%" y="629" width="5.6098%" height="15" fill="rgb(252,155,4)" fg:x="103409" fg:w="29035"/><text x="20.2294%" y="639.50">[dash]</text></g><g><title>[dash] (29,121 samples, 5.63%)</title><rect x="19.9775%" y="645" width="5.6264%" height="15" fill="rgb(212,69,32)" fg:x="103399" fg:w="29121"/><text x="20.2275%" y="655.50">[dash]</text></g><g><title>__perf_event_task_sched_in (465 samples, 0.09%)</title><rect x="25.6300%" y="485" width="0.0898%" height="15" fill="rgb(243,107,47)" fg:x="132655" fg:w="465"/><text x="25.8800%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (459 samples, 0.09%)</title><rect x="25.6312%" y="469" width="0.0887%" height="15" fill="rgb(247,130,12)" fg:x="132661" fg:w="459"/><text x="25.8812%" y="479.50"></text></g><g><title>native_write_msr (459 samples, 0.09%)</title><rect x="25.6312%" y="453" width="0.0887%" height="15" fill="rgb(233,74,16)" fg:x="132661" fg:w="459"/><text x="25.8812%" y="463.50"></text></g><g><title>finish_task_switch (499 samples, 0.10%)</title><rect x="25.6269%" y="501" width="0.0964%" height="15" fill="rgb(208,58,18)" fg:x="132639" fg:w="499"/><text x="25.8769%" y="511.50"></text></g><g><title>schedule (530 samples, 0.10%)</title><rect x="25.6234%" y="533" width="0.1024%" height="15" fill="rgb(242,225,1)" fg:x="132621" fg:w="530"/><text x="25.8734%" y="543.50"></text></g><g><title>__schedule (528 samples, 0.10%)</title><rect x="25.6238%" y="517" width="0.1020%" height="15" fill="rgb(249,39,40)" fg:x="132623" fg:w="528"/><text x="25.8738%" y="527.50"></text></g><g><title>new_sync_read (581 samples, 0.11%)</title><rect x="25.6159%" y="565" width="0.1123%" height="15" fill="rgb(207,72,44)" fg:x="132582" fg:w="581"/><text x="25.8659%" y="575.50"></text></g><g><title>pipe_read (578 samples, 0.11%)</title><rect x="25.6165%" y="549" width="0.1117%" height="15" fill="rgb(215,193,12)" fg:x="132585" fg:w="578"/><text x="25.8665%" y="559.50"></text></g><g><title>do_syscall_64 (605 samples, 0.12%)</title><rect x="25.6130%" y="613" width="0.1169%" height="15" fill="rgb(248,41,39)" fg:x="132567" fg:w="605"/><text x="25.8630%" y="623.50"></text></g><g><title>ksys_read (603 samples, 0.12%)</title><rect x="25.6134%" y="597" width="0.1165%" height="15" fill="rgb(253,85,4)" fg:x="132569" fg:w="603"/><text x="25.8634%" y="607.50"></text></g><g><title>vfs_read (596 samples, 0.12%)</title><rect x="25.6147%" y="581" width="0.1152%" height="15" fill="rgb(243,70,31)" fg:x="132576" fg:w="596"/><text x="25.8647%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (629 samples, 0.12%)</title><rect x="25.6130%" y="629" width="0.1215%" height="15" fill="rgb(253,195,26)" fg:x="132567" fg:w="629"/><text x="25.8630%" y="639.50"></text></g><g><title>__GI___libc_read (659 samples, 0.13%)</title><rect x="25.6115%" y="645" width="0.1273%" height="15" fill="rgb(243,42,11)" fg:x="132559" fg:w="659"/><text x="25.8615%" y="655.50"></text></g><g><title>[dash] (29,893 samples, 5.78%)</title><rect x="19.9752%" y="661" width="5.7756%" height="15" fill="rgb(239,66,17)" fg:x="103387" fg:w="29893"/><text x="20.2252%" y="671.50">[dash]</text></g><g><title>[dash] (29,915 samples, 5.78%)</title><rect x="19.9729%" y="677" width="5.7798%" height="15" fill="rgb(217,132,21)" fg:x="103375" fg:w="29915"/><text x="20.2229%" y="687.50">[dash]</text></g><g><title>[dash] (29,933 samples, 5.78%)</title><rect x="19.9707%" y="693" width="5.7833%" height="15" fill="rgb(252,202,21)" fg:x="103364" fg:w="29933"/><text x="20.2207%" y="703.50">[dash]</text></g><g><title>[dash] (29,936 samples, 5.78%)</title><rect x="19.9704%" y="709" width="5.7839%" height="15" fill="rgb(233,98,36)" fg:x="103362" fg:w="29936"/><text x="20.2204%" y="719.50">[dash]</text></g><g><title>[dash] (29,981 samples, 5.79%)</title><rect x="19.9696%" y="725" width="5.7926%" height="15" fill="rgb(216,153,54)" fg:x="103358" fg:w="29981"/><text x="20.2196%" y="735.50">[dash]</text></g><g><title>[dash] (29,988 samples, 5.79%)</title><rect x="19.9692%" y="741" width="5.7939%" height="15" fill="rgb(250,99,7)" fg:x="103356" fg:w="29988"/><text x="20.2192%" y="751.50">[dash]</text></g><g><title>[dash] (30,057 samples, 5.81%)</title><rect x="19.9692%" y="757" width="5.8073%" height="15" fill="rgb(207,56,50)" fg:x="103356" fg:w="30057"/><text x="20.2192%" y="767.50">[dash]</text></g><g><title>[dash] (30,078 samples, 5.81%)</title><rect x="19.9690%" y="773" width="5.8113%" height="15" fill="rgb(244,61,34)" fg:x="103355" fg:w="30078"/><text x="20.2190%" y="783.50">[dash]</text></g><g><title>__libc_start_main (30,079 samples, 5.81%)</title><rect x="19.9690%" y="789" width="5.8115%" height="15" fill="rgb(241,50,38)" fg:x="103355" fg:w="30079"/><text x="20.2190%" y="799.50">__libc_..</text></g><g><title>[dash] (30,084 samples, 5.81%)</title><rect x="19.9682%" y="805" width="5.8125%" height="15" fill="rgb(212,166,30)" fg:x="103351" fg:w="30084"/><text x="20.2182%" y="815.50">[dash]</text></g><g><title>_dl_start_final (53 samples, 0.01%)</title><rect x="25.7917%" y="773" width="0.0102%" height="15" fill="rgb(249,127,32)" fg:x="133492" fg:w="53"/><text x="26.0417%" y="783.50"></text></g><g><title>_dl_sysdep_start (53 samples, 0.01%)</title><rect x="25.7917%" y="757" width="0.0102%" height="15" fill="rgb(209,103,0)" fg:x="133492" fg:w="53"/><text x="26.0417%" y="767.50"></text></g><g><title>_dl_start (57 samples, 0.01%)</title><rect x="25.7917%" y="789" width="0.0110%" height="15" fill="rgb(238,209,51)" fg:x="133492" fg:w="57"/><text x="26.0417%" y="799.50"></text></g><g><title>_start (61 samples, 0.01%)</title><rect x="25.7915%" y="805" width="0.0118%" height="15" fill="rgb(237,56,23)" fg:x="133491" fg:w="61"/><text x="26.0415%" y="815.50"></text></g><g><title>asm_exc_page_fault (426 samples, 0.08%)</title><rect x="25.8033%" y="805" width="0.0823%" height="15" fill="rgb(215,153,46)" fg:x="133552" fg:w="426"/><text x="26.0533%" y="815.50"></text></g><g><title>kmem_cache_free (61 samples, 0.01%)</title><rect x="25.9046%" y="629" width="0.0118%" height="15" fill="rgb(224,49,31)" fg:x="134076" fg:w="61"/><text x="26.1546%" y="639.50"></text></g><g><title>unlink_anon_vmas (135 samples, 0.03%)</title><rect x="25.8904%" y="645" width="0.0261%" height="15" fill="rgb(250,18,42)" fg:x="134003" fg:w="135"/><text x="26.1404%" y="655.50"></text></g><g><title>free_pgtables (180 samples, 0.03%)</title><rect x="25.8881%" y="661" width="0.0348%" height="15" fill="rgb(215,176,39)" fg:x="133991" fg:w="180"/><text x="26.1381%" y="671.50"></text></g><g><title>tlb_finish_mmu (56 samples, 0.01%)</title><rect x="25.9306%" y="661" width="0.0108%" height="15" fill="rgb(223,77,29)" fg:x="134211" fg:w="56"/><text x="26.1806%" y="671.50"></text></g><g><title>page_remove_rmap (73 samples, 0.01%)</title><rect x="25.9793%" y="629" width="0.0141%" height="15" fill="rgb(234,94,52)" fg:x="134463" fg:w="73"/><text x="26.2293%" y="639.50"></text></g><g><title>unmap_page_range (277 samples, 0.05%)</title><rect x="25.9426%" y="645" width="0.0535%" height="15" fill="rgb(220,154,50)" fg:x="134273" fg:w="277"/><text x="26.1926%" y="655.50"></text></g><g><title>exit_mmap (573 samples, 0.11%)</title><rect x="25.8872%" y="677" width="0.1107%" height="15" fill="rgb(212,11,10)" fg:x="133986" fg:w="573"/><text x="26.1372%" y="687.50"></text></g><g><title>unmap_vmas (292 samples, 0.06%)</title><rect x="25.9415%" y="661" width="0.0564%" height="15" fill="rgb(205,166,19)" fg:x="134267" fg:w="292"/><text x="26.1915%" y="671.50"></text></g><g><title>mmput (576 samples, 0.11%)</title><rect x="25.8872%" y="693" width="0.1113%" height="15" fill="rgb(244,198,16)" fg:x="133986" fg:w="576"/><text x="26.1372%" y="703.50"></text></g><g><title>begin_new_exec (591 samples, 0.11%)</title><rect x="25.8864%" y="709" width="0.1142%" height="15" fill="rgb(219,69,12)" fg:x="133982" fg:w="591"/><text x="26.1364%" y="719.50"></text></g><g><title>load_elf_binary (596 samples, 0.12%)</title><rect x="25.8862%" y="725" width="0.1152%" height="15" fill="rgb(245,30,7)" fg:x="133981" fg:w="596"/><text x="26.1362%" y="735.50"></text></g><g><title>__x64_sys_execve (597 samples, 0.12%)</title><rect x="25.8862%" y="773" width="0.1153%" height="15" fill="rgb(218,221,48)" fg:x="133981" fg:w="597"/><text x="26.1362%" y="783.50"></text></g><g><title>do_execveat_common (597 samples, 0.12%)</title><rect x="25.8862%" y="757" width="0.1153%" height="15" fill="rgb(216,66,15)" fg:x="133981" fg:w="597"/><text x="26.1362%" y="767.50"></text></g><g><title>bprm_execve (597 samples, 0.12%)</title><rect x="25.8862%" y="741" width="0.1153%" height="15" fill="rgb(226,122,50)" fg:x="133981" fg:w="597"/><text x="26.1362%" y="751.50"></text></g><g><title>kmem_cache_free (61 samples, 0.01%)</title><rect x="26.0238%" y="661" width="0.0118%" height="15" fill="rgb(239,156,16)" fg:x="134693" fg:w="61"/><text x="26.2738%" y="671.50"></text></g><g><title>unlink_anon_vmas (124 samples, 0.02%)</title><rect x="26.0120%" y="677" width="0.0240%" height="15" fill="rgb(224,27,38)" fg:x="134632" fg:w="124"/><text x="26.2620%" y="687.50"></text></g><g><title>free_pgtables (166 samples, 0.03%)</title><rect x="26.0089%" y="693" width="0.0321%" height="15" fill="rgb(224,39,27)" fg:x="134616" fg:w="166"/><text x="26.2589%" y="703.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="26.0498%" y="677" width="0.0197%" height="15" fill="rgb(215,92,29)" fg:x="134828" fg:w="102"/><text x="26.2998%" y="687.50"></text></g><g><title>remove_vma (117 samples, 0.02%)</title><rect x="26.0473%" y="693" width="0.0226%" height="15" fill="rgb(207,159,16)" fg:x="134815" fg:w="117"/><text x="26.2973%" y="703.50"></text></g><g><title>tlb_finish_mmu (159 samples, 0.03%)</title><rect x="26.0699%" y="693" width="0.0307%" height="15" fill="rgb(238,163,47)" fg:x="134932" fg:w="159"/><text x="26.3199%" y="703.50"></text></g><g><title>release_pages (126 samples, 0.02%)</title><rect x="26.0763%" y="677" width="0.0243%" height="15" fill="rgb(219,91,49)" fg:x="134965" fg:w="126"/><text x="26.3263%" y="687.50"></text></g><g><title>page_remove_rmap (68 samples, 0.01%)</title><rect x="26.1333%" y="661" width="0.0131%" height="15" fill="rgb(227,167,31)" fg:x="135260" fg:w="68"/><text x="26.3833%" y="671.50"></text></g><g><title>unmap_page_range (246 samples, 0.05%)</title><rect x="26.1016%" y="677" width="0.0475%" height="15" fill="rgb(234,80,54)" fg:x="135096" fg:w="246"/><text x="26.3516%" y="687.50"></text></g><g><title>exit_mmap (742 samples, 0.14%)</title><rect x="26.0071%" y="709" width="0.1434%" height="15" fill="rgb(212,114,2)" fg:x="134607" fg:w="742"/><text x="26.2571%" y="719.50"></text></g><g><title>unmap_vmas (258 samples, 0.05%)</title><rect x="26.1007%" y="693" width="0.0498%" height="15" fill="rgb(234,50,24)" fg:x="135091" fg:w="258"/><text x="26.3507%" y="703.50"></text></g><g><title>mmput (748 samples, 0.14%)</title><rect x="26.0066%" y="725" width="0.1445%" height="15" fill="rgb(221,68,8)" fg:x="134604" fg:w="748"/><text x="26.2566%" y="735.50"></text></g><g><title>__x64_sys_exit_group (853 samples, 0.16%)</title><rect x="26.0015%" y="773" width="0.1648%" height="15" fill="rgb(254,180,31)" fg:x="134578" fg:w="853"/><text x="26.2515%" y="783.50"></text></g><g><title>do_group_exit (853 samples, 0.16%)</title><rect x="26.0015%" y="757" width="0.1648%" height="15" fill="rgb(247,130,50)" fg:x="134578" fg:w="853"/><text x="26.2515%" y="767.50"></text></g><g><title>do_exit (853 samples, 0.16%)</title><rect x="26.0015%" y="741" width="0.1648%" height="15" fill="rgb(211,109,4)" fg:x="134578" fg:w="853"/><text x="26.2515%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,464 samples, 0.28%)</title><rect x="25.8856%" y="805" width="0.2829%" height="15" fill="rgb(238,50,21)" fg:x="133978" fg:w="1464"/><text x="26.1356%" y="815.50"></text></g><g><title>do_syscall_64 (1,463 samples, 0.28%)</title><rect x="25.8858%" y="789" width="0.2827%" height="15" fill="rgb(225,57,45)" fg:x="133979" fg:w="1463"/><text x="26.1358%" y="799.50"></text></g><g><title>c++ (32,243 samples, 6.23%)</title><rect x="19.9603%" y="821" width="6.2296%" height="15" fill="rgb(209,196,50)" fg:x="103310" fg:w="32243"/><text x="20.2103%" y="831.50">c++</text></g><g><title>ret_from_fork (97 samples, 0.02%)</title><rect x="26.1712%" y="805" width="0.0187%" height="15" fill="rgb(242,140,13)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="815.50"></text></g><g><title>schedule_tail (97 samples, 0.02%)</title><rect x="26.1712%" y="789" width="0.0187%" height="15" fill="rgb(217,111,7)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="799.50"></text></g><g><title>finish_task_switch (97 samples, 0.02%)</title><rect x="26.1712%" y="773" width="0.0187%" height="15" fill="rgb(253,193,51)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="26.1712%" y="757" width="0.0187%" height="15" fill="rgb(252,70,29)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (97 samples, 0.02%)</title><rect x="26.1712%" y="741" width="0.0187%" height="15" fill="rgb(232,127,12)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="751.50"></text></g><g><title>native_write_msr (97 samples, 0.02%)</title><rect x="26.1712%" y="725" width="0.0187%" height="15" fill="rgb(211,180,21)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="735.50"></text></g><g><title>[perf-965379.map] (404 samples, 0.08%)</title><rect x="26.1940%" y="805" width="0.0781%" height="15" fill="rgb(229,72,13)" fg:x="135574" fg:w="404"/><text x="26.4440%" y="815.50"></text></g><g><title>find-action-loo (478 samples, 0.09%)</title><rect x="26.1926%" y="821" width="0.0924%" height="15" fill="rgb(240,211,49)" fg:x="135567" fg:w="478"/><text x="26.4426%" y="831.50"></text></g><g><title>[perf-965379.map] (82 samples, 0.02%)</title><rect x="26.2865%" y="805" width="0.0158%" height="15" fill="rgb(219,149,40)" fg:x="136053" fg:w="82"/><text x="26.5365%" y="815.50"></text></g><g><title>globbing_pool-0 (136 samples, 0.03%)</title><rect x="26.2850%" y="821" width="0.0263%" height="15" fill="rgb(210,127,46)" fg:x="136045" fg:w="136"/><text x="26.5350%" y="831.50"></text></g><g><title>JVM_StartThread (66 samples, 0.01%)</title><rect x="26.3509%" y="789" width="0.0128%" height="15" fill="rgb(220,106,7)" fg:x="136386" fg:w="66"/><text x="26.6009%" y="799.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="26.3654%" y="693" width="0.0102%" height="15" fill="rgb(249,31,22)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="703.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.01%)</title><rect x="26.3654%" y="677" width="0.0102%" height="15" fill="rgb(253,1,49)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="687.50"></text></g><g><title>do_futex (53 samples, 0.01%)</title><rect x="26.3654%" y="661" width="0.0102%" height="15" fill="rgb(227,144,33)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="671.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="26.3654%" y="645" width="0.0102%" height="15" fill="rgb(249,163,44)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="655.50"></text></g><g><title>futex_wait_queue_me (53 samples, 0.01%)</title><rect x="26.3654%" y="629" width="0.0102%" height="15" fill="rgb(234,15,39)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="639.50"></text></g><g><title>schedule (52 samples, 0.01%)</title><rect x="26.3655%" y="613" width="0.0100%" height="15" fill="rgb(207,66,16)" fg:x="136462" fg:w="52"/><text x="26.6155%" y="623.50"></text></g><g><title>__schedule (52 samples, 0.01%)</title><rect x="26.3655%" y="597" width="0.0100%" height="15" fill="rgb(233,112,24)" fg:x="136462" fg:w="52"/><text x="26.6155%" y="607.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.01%)</title><rect x="26.3654%" y="757" width="0.0110%" height="15" fill="rgb(230,90,22)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.01%)</title><rect x="26.3654%" y="741" width="0.0110%" height="15" fill="rgb(229,61,13)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="751.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.01%)</title><rect x="26.3654%" y="725" width="0.0110%" height="15" fill="rgb(225,57,24)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="26.3654%" y="709" width="0.0110%" height="15" fill="rgb(208,169,48)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="719.50"></text></g><g><title>Unsafe_Park (59 samples, 0.01%)</title><rect x="26.3652%" y="789" width="0.0114%" height="15" fill="rgb(244,218,51)" fg:x="136460" fg:w="59"/><text x="26.6152%" y="799.50"></text></g><g><title>Parker::park (59 samples, 0.01%)</title><rect x="26.3652%" y="773" width="0.0114%" height="15" fill="rgb(214,148,10)" fg:x="136460" fg:w="59"/><text x="26.6152%" y="783.50"></text></g><g><title>[perf-965379.map] (306 samples, 0.06%)</title><rect x="26.3192%" y="805" width="0.0591%" height="15" fill="rgb(225,174,27)" fg:x="136222" fg:w="306"/><text x="26.5692%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="26.3808%" y="741" width="0.0104%" height="15" fill="rgb(230,96,26)" fg:x="136541" fg:w="54"/><text x="26.6308%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="26.3808%" y="725" width="0.0104%" height="15" fill="rgb(232,10,30)" fg:x="136541" fg:w="54"/><text x="26.6308%" y="735.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="26.3808%" y="709" width="0.0104%" height="15" fill="rgb(222,8,50)" fg:x="136541" fg:w="54"/><text x="26.6308%" y="719.50"></text></g><g><title>schedule_tail (56 samples, 0.01%)</title><rect x="26.3806%" y="773" width="0.0108%" height="15" fill="rgb(213,81,27)" fg:x="136540" fg:w="56"/><text x="26.6306%" y="783.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="26.3806%" y="757" width="0.0108%" height="15" fill="rgb(245,50,10)" fg:x="136540" fg:w="56"/><text x="26.6306%" y="767.50"></text></g><g><title>ret_from_fork (60 samples, 0.01%)</title><rect x="26.3800%" y="789" width="0.0116%" height="15" fill="rgb(216,100,18)" fg:x="136537" fg:w="60"/><text x="26.6300%" y="799.50"></text></g><g><title>__GI___clone (101 samples, 0.02%)</title><rect x="26.3789%" y="805" width="0.0195%" height="15" fill="rgb(236,147,54)" fg:x="136531" fg:w="101"/><text x="26.6289%" y="815.50"></text></g><g><title>globbing_pool-1 (452 samples, 0.09%)</title><rect x="26.3113%" y="821" width="0.0873%" height="15" fill="rgb(205,143,26)" fg:x="136181" fg:w="452"/><text x="26.5613%" y="831.50"></text></g><g><title>[perf-965379.map] (194 samples, 0.04%)</title><rect x="26.4026%" y="805" width="0.0375%" height="15" fill="rgb(236,26,9)" fg:x="136654" fg:w="194"/><text x="26.6526%" y="815.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="26.4417%" y="789" width="0.0106%" height="15" fill="rgb(221,165,53)" fg:x="136856" fg:w="55"/><text x="26.6917%" y="799.50"></text></g><g><title>schedule_tail (54 samples, 0.01%)</title><rect x="26.4419%" y="773" width="0.0104%" height="15" fill="rgb(214,110,17)" fg:x="136857" fg:w="54"/><text x="26.6919%" y="783.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="26.4419%" y="757" width="0.0104%" height="15" fill="rgb(237,197,12)" fg:x="136857" fg:w="54"/><text x="26.6919%" y="767.50"></text></g><g><title>__GI___clone (77 samples, 0.01%)</title><rect x="26.4405%" y="805" width="0.0149%" height="15" fill="rgb(205,84,17)" fg:x="136850" fg:w="77"/><text x="26.6905%" y="815.50"></text></g><g><title>globbing_pool-2 (334 samples, 0.06%)</title><rect x="26.3986%" y="821" width="0.0645%" height="15" fill="rgb(237,18,45)" fg:x="136633" fg:w="334"/><text x="26.6486%" y="831.50"></text></g><g><title>[libunix_jni.so] (52 samples, 0.01%)</title><rect x="26.4656%" y="805" width="0.0100%" height="15" fill="rgb(221,87,14)" fg:x="136980" fg:w="52"/><text x="26.7156%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="26.5514%" y="565" width="0.0129%" height="15" fill="rgb(238,186,15)" fg:x="137424" fg:w="67"/><text x="26.8014%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="26.5516%" y="549" width="0.0128%" height="15" fill="rgb(208,115,11)" fg:x="137425" fg:w="66"/><text x="26.8016%" y="559.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="26.5516%" y="533" width="0.0128%" height="15" fill="rgb(254,175,0)" fg:x="137425" fg:w="66"/><text x="26.8016%" y="543.50"></text></g><g><title>finish_task_switch (72 samples, 0.01%)</title><rect x="26.5514%" y="581" width="0.0139%" height="15" fill="rgb(227,24,42)" fg:x="137424" fg:w="72"/><text x="26.8014%" y="591.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="26.5510%" y="693" width="0.0147%" height="15" fill="rgb(223,211,37)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="703.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.01%)</title><rect x="26.5510%" y="677" width="0.0147%" height="15" fill="rgb(235,49,27)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="687.50"></text></g><g><title>do_futex (76 samples, 0.01%)</title><rect x="26.5510%" y="661" width="0.0147%" height="15" fill="rgb(254,97,51)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="671.50"></text></g><g><title>futex_wait (76 samples, 0.01%)</title><rect x="26.5510%" y="645" width="0.0147%" height="15" fill="rgb(249,51,40)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="655.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.01%)</title><rect x="26.5510%" y="629" width="0.0147%" height="15" fill="rgb(210,128,45)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="639.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="26.5510%" y="613" width="0.0147%" height="15" fill="rgb(224,137,50)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="623.50"></text></g><g><title>__schedule (76 samples, 0.01%)</title><rect x="26.5510%" y="597" width="0.0147%" height="15" fill="rgb(242,15,9)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="607.50"></text></g><g><title>__pthread_cond_wait (77 samples, 0.01%)</title><rect x="26.5510%" y="757" width="0.0149%" height="15" fill="rgb(233,187,41)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (77 samples, 0.01%)</title><rect x="26.5510%" y="741" width="0.0149%" height="15" fill="rgb(227,2,29)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="751.50"></text></g><g><title>futex_wait_cancelable (77 samples, 0.01%)</title><rect x="26.5510%" y="725" width="0.0149%" height="15" fill="rgb(222,70,3)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.01%)</title><rect x="26.5510%" y="709" width="0.0149%" height="15" fill="rgb(213,11,42)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="719.50"></text></g><g><title>Unsafe_Park (85 samples, 0.02%)</title><rect x="26.5503%" y="789" width="0.0164%" height="15" fill="rgb(225,150,9)" fg:x="137418" fg:w="85"/><text x="26.8003%" y="799.50"></text></g><g><title>Parker::park (85 samples, 0.02%)</title><rect x="26.5503%" y="773" width="0.0164%" height="15" fill="rgb(230,162,45)" fg:x="137418" fg:w="85"/><text x="26.8003%" y="783.50"></text></g><g><title>[perf-965379.map] (476 samples, 0.09%)</title><rect x="26.4757%" y="805" width="0.0920%" height="15" fill="rgb(222,14,52)" fg:x="137032" fg:w="476"/><text x="26.7257%" y="815.50"></text></g><g><title>globbing_pool-3 (613 samples, 0.12%)</title><rect x="26.4631%" y="821" width="0.1184%" height="15" fill="rgb(254,198,14)" fg:x="136967" fg:w="613"/><text x="26.7131%" y="831.50"></text></g><g><title>__GI___clone (71 samples, 0.01%)</title><rect x="26.5678%" y="805" width="0.0137%" height="15" fill="rgb(220,217,30)" fg:x="137509" fg:w="71"/><text x="26.8178%" y="815.50"></text></g><g><title>JVM_StartThread (69 samples, 0.01%)</title><rect x="26.6061%" y="789" width="0.0133%" height="15" fill="rgb(215,146,41)" fg:x="137707" fg:w="69"/><text x="26.8561%" y="799.50"></text></g><g><title>[perf-965379.map] (220 samples, 0.04%)</title><rect x="26.5858%" y="805" width="0.0425%" height="15" fill="rgb(217,27,36)" fg:x="137602" fg:w="220"/><text x="26.8358%" y="815.50"></text></g><g><title>globbing_pool-4 (297 samples, 0.06%)</title><rect x="26.5816%" y="821" width="0.0574%" height="15" fill="rgb(219,218,39)" fg:x="137580" fg:w="297"/><text x="26.8316%" y="831.50"></text></g><g><title>[perf-965379.map] (264 samples, 0.05%)</title><rect x="26.6430%" y="805" width="0.0510%" height="15" fill="rgb(219,4,42)" fg:x="137898" fg:w="264"/><text x="26.8930%" y="815.50"></text></g><g><title>globbing_pool-5 (343 samples, 0.07%)</title><rect x="26.6389%" y="821" width="0.0663%" height="15" fill="rgb(249,119,36)" fg:x="137877" fg:w="343"/><text x="26.8889%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="26.7392%" y="565" width="0.0129%" height="15" fill="rgb(209,23,33)" fg:x="138396" fg:w="67"/><text x="26.9892%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="26.7394%" y="549" width="0.0128%" height="15" fill="rgb(211,10,0)" fg:x="138397" fg:w="66"/><text x="26.9894%" y="559.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="26.7396%" y="533" width="0.0126%" height="15" fill="rgb(208,99,37)" fg:x="138398" fg:w="65"/><text x="26.9896%" y="543.50"></text></g><g><title>finish_task_switch (69 samples, 0.01%)</title><rect x="26.7392%" y="581" width="0.0133%" height="15" fill="rgb(213,132,31)" fg:x="138396" fg:w="69"/><text x="26.9892%" y="591.50"></text></g><g><title>__pthread_cond_wait (73 samples, 0.01%)</title><rect x="26.7388%" y="757" width="0.0141%" height="15" fill="rgb(243,129,40)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (73 samples, 0.01%)</title><rect x="26.7388%" y="741" width="0.0141%" height="15" fill="rgb(210,66,33)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="751.50"></text></g><g><title>futex_wait_cancelable (73 samples, 0.01%)</title><rect x="26.7388%" y="725" width="0.0141%" height="15" fill="rgb(209,189,4)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.01%)</title><rect x="26.7388%" y="709" width="0.0141%" height="15" fill="rgb(214,107,37)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="719.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="26.7388%" y="693" width="0.0141%" height="15" fill="rgb(245,88,54)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="703.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.01%)</title><rect x="26.7388%" y="677" width="0.0141%" height="15" fill="rgb(205,146,20)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="687.50"></text></g><g><title>do_futex (73 samples, 0.01%)</title><rect x="26.7388%" y="661" width="0.0141%" height="15" fill="rgb(220,161,25)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="671.50"></text></g><g><title>futex_wait (73 samples, 0.01%)</title><rect x="26.7388%" y="645" width="0.0141%" height="15" fill="rgb(215,152,15)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="655.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.01%)</title><rect x="26.7390%" y="629" width="0.0139%" height="15" fill="rgb(233,192,44)" fg:x="138395" fg:w="72"/><text x="26.9890%" y="639.50"></text></g><g><title>schedule (71 samples, 0.01%)</title><rect x="26.7392%" y="613" width="0.0137%" height="15" fill="rgb(240,170,46)" fg:x="138396" fg:w="71"/><text x="26.9892%" y="623.50"></text></g><g><title>__schedule (71 samples, 0.01%)</title><rect x="26.7392%" y="597" width="0.0137%" height="15" fill="rgb(207,104,33)" fg:x="138396" fg:w="71"/><text x="26.9892%" y="607.50"></text></g><g><title>Unsafe_Park (74 samples, 0.01%)</title><rect x="26.7388%" y="789" width="0.0143%" height="15" fill="rgb(219,21,39)" fg:x="138394" fg:w="74"/><text x="26.9888%" y="799.50"></text></g><g><title>Parker::park (74 samples, 0.01%)</title><rect x="26.7388%" y="773" width="0.0143%" height="15" fill="rgb(214,133,29)" fg:x="138394" fg:w="74"/><text x="26.9888%" y="783.50"></text></g><g><title>[perf-965379.map] (228 samples, 0.04%)</title><rect x="26.7116%" y="805" width="0.0441%" height="15" fill="rgb(226,93,6)" fg:x="138253" fg:w="228"/><text x="26.9616%" y="815.50"></text></g><g><title>globbing_pool-6 (294 samples, 0.06%)</title><rect x="26.7052%" y="821" width="0.0568%" height="15" fill="rgb(252,222,34)" fg:x="138220" fg:w="294"/><text x="26.9552%" y="831.50"></text></g><g><title>[perf-965379.map] (229 samples, 0.04%)</title><rect x="26.7678%" y="805" width="0.0442%" height="15" fill="rgb(252,92,48)" fg:x="138544" fg:w="229"/><text x="27.0178%" y="815.50"></text></g><g><title>globbing_pool-7 (283 samples, 0.05%)</title><rect x="26.7620%" y="821" width="0.0547%" height="15" fill="rgb(245,223,24)" fg:x="138514" fg:w="283"/><text x="27.0120%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="26.8646%" y="565" width="0.0112%" height="15" fill="rgb(205,176,3)" fg:x="139045" fg:w="58"/><text x="27.1146%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="26.8646%" y="549" width="0.0112%" height="15" fill="rgb(235,151,15)" fg:x="139045" fg:w="58"/><text x="27.1146%" y="559.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="26.8646%" y="533" width="0.0112%" height="15" fill="rgb(237,209,11)" fg:x="139045" fg:w="58"/><text x="27.1146%" y="543.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="26.8640%" y="693" width="0.0124%" height="15" fill="rgb(243,227,24)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="703.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.01%)</title><rect x="26.8640%" y="677" width="0.0124%" height="15" fill="rgb(239,193,16)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="687.50"></text></g><g><title>do_futex (64 samples, 0.01%)</title><rect x="26.8640%" y="661" width="0.0124%" height="15" fill="rgb(231,27,9)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="671.50"></text></g><g><title>futex_wait (64 samples, 0.01%)</title><rect x="26.8640%" y="645" width="0.0124%" height="15" fill="rgb(219,169,10)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="655.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.01%)</title><rect x="26.8640%" y="629" width="0.0124%" height="15" fill="rgb(244,229,43)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="639.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="26.8640%" y="613" width="0.0124%" height="15" fill="rgb(254,38,20)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="623.50"></text></g><g><title>__schedule (64 samples, 0.01%)</title><rect x="26.8640%" y="597" width="0.0124%" height="15" fill="rgb(250,47,30)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="607.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="26.8644%" y="581" width="0.0120%" height="15" fill="rgb(224,124,36)" fg:x="139044" fg:w="62"/><text x="27.1144%" y="591.50"></text></g><g><title>__pthread_cond_wait (67 samples, 0.01%)</title><rect x="26.8636%" y="757" width="0.0129%" height="15" fill="rgb(246,68,51)" fg:x="139040" fg:w="67"/><text x="27.1136%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (67 samples, 0.01%)</title><rect x="26.8636%" y="741" width="0.0129%" height="15" fill="rgb(253,43,49)" fg:x="139040" fg:w="67"/><text x="27.1136%" y="751.50"></text></g><g><title>futex_wait_cancelable (67 samples, 0.01%)</title><rect x="26.8636%" y="725" width="0.0129%" height="15" fill="rgb(219,54,36)" fg:x="139040" fg:w="67"/><text x="27.1136%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="26.8640%" y="709" width="0.0126%" height="15" fill="rgb(227,133,34)" fg:x="139042" fg:w="65"/><text x="27.1140%" y="719.50"></text></g><g><title>Unsafe_Park (85 samples, 0.02%)</title><rect x="26.8604%" y="789" width="0.0164%" height="15" fill="rgb(247,227,15)" fg:x="139023" fg:w="85"/><text x="27.1104%" y="799.50"></text></g><g><title>Parker::park (84 samples, 0.02%)</title><rect x="26.8605%" y="773" width="0.0162%" height="15" fill="rgb(229,96,14)" fg:x="139024" fg:w="84"/><text x="27.1105%" y="783.50"></text></g><g><title>[perf-965379.map] (286 samples, 0.06%)</title><rect x="26.8227%" y="805" width="0.0553%" height="15" fill="rgb(220,79,17)" fg:x="138828" fg:w="286"/><text x="27.0727%" y="815.50"></text></g><g><title>globbing_pool-8 (348 samples, 0.07%)</title><rect x="26.8167%" y="821" width="0.0672%" height="15" fill="rgb(205,131,53)" fg:x="138797" fg:w="348"/><text x="27.0667%" y="831.50"></text></g><g><title>[perf-965379.map] (219 samples, 0.04%)</title><rect x="26.8884%" y="805" width="0.0423%" height="15" fill="rgb(209,50,29)" fg:x="139168" fg:w="219"/><text x="27.1384%" y="815.50"></text></g><g><title>globbing_pool-9 (260 samples, 0.05%)</title><rect x="26.8839%" y="821" width="0.0502%" height="15" fill="rgb(245,86,46)" fg:x="139145" fg:w="260"/><text x="27.1339%" y="831.50"></text></g><g><title>[anon] (241 samples, 0.05%)</title><rect x="26.9376%" y="805" width="0.0466%" height="15" fill="rgb(235,66,46)" fg:x="139423" fg:w="241"/><text x="27.1876%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (61 samples, 0.01%)</title><rect x="27.3926%" y="661" width="0.0118%" height="15" fill="rgb(232,148,31)" fg:x="141778" fg:w="61"/><text x="27.6426%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (62 samples, 0.01%)</title><rect x="27.3926%" y="677" width="0.0120%" height="15" fill="rgb(217,149,8)" fg:x="141778" fg:w="62"/><text x="27.6426%" y="687.50"></text></g><g><title>ClassLoader::load_class (111 samples, 0.02%)</title><rect x="27.3909%" y="709" width="0.0214%" height="15" fill="rgb(209,183,11)" fg:x="141769" fg:w="111"/><text x="27.6409%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.02%)</title><rect x="27.3924%" y="693" width="0.0199%" height="15" fill="rgb(208,55,20)" fg:x="141777" fg:w="103"/><text x="27.6424%" y="703.50"></text></g><g><title>ConstantPool::klass_at_impl (135 samples, 0.03%)</title><rect x="27.3884%" y="773" width="0.0261%" height="15" fill="rgb(218,39,14)" fg:x="141756" fg:w="135"/><text x="27.6384%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_fail (133 samples, 0.03%)</title><rect x="27.3888%" y="757" width="0.0257%" height="15" fill="rgb(216,169,33)" fg:x="141758" fg:w="133"/><text x="27.6388%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (131 samples, 0.03%)</title><rect x="27.3892%" y="741" width="0.0253%" height="15" fill="rgb(233,80,24)" fg:x="141760" fg:w="131"/><text x="27.6392%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (124 samples, 0.02%)</title><rect x="27.3905%" y="725" width="0.0240%" height="15" fill="rgb(213,179,31)" fg:x="141767" fg:w="124"/><text x="27.6405%" y="735.50"></text></g><g><title>Rewriter::rewrite (65 samples, 0.01%)</title><rect x="27.4241%" y="741" width="0.0126%" height="15" fill="rgb(209,19,5)" fg:x="141941" fg:w="65"/><text x="27.6741%" y="751.50"></text></g><g><title>Rewriter::Rewriter (64 samples, 0.01%)</title><rect x="27.4243%" y="725" width="0.0124%" height="15" fill="rgb(219,18,35)" fg:x="141942" fg:w="64"/><text x="27.6743%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (141 samples, 0.03%)</title><rect x="27.4151%" y="757" width="0.0272%" height="15" fill="rgb(209,169,16)" fg:x="141894" fg:w="141"/><text x="27.6651%" y="767.50"></text></g><g><title>InstanceKlass::initialize_impl (144 samples, 0.03%)</title><rect x="27.4149%" y="773" width="0.0278%" height="15" fill="rgb(245,90,51)" fg:x="141893" fg:w="144"/><text x="27.6649%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (282 samples, 0.05%)</title><rect x="27.3884%" y="789" width="0.0545%" height="15" fill="rgb(220,99,45)" fg:x="141756" fg:w="282"/><text x="27.6384%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (52 samples, 0.01%)</title><rect x="27.4541%" y="789" width="0.0100%" height="15" fill="rgb(249,89,25)" fg:x="142096" fg:w="52"/><text x="27.7041%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (52 samples, 0.01%)</title><rect x="27.4541%" y="773" width="0.0100%" height="15" fill="rgb(239,193,0)" fg:x="142096" fg:w="52"/><text x="27.7041%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (75 samples, 0.01%)</title><rect x="27.4844%" y="741" width="0.0145%" height="15" fill="rgb(231,126,1)" fg:x="142253" fg:w="75"/><text x="27.7344%" y="751.50"></text></g><g><title>LinkResolver::resolve_field_access (106 samples, 0.02%)</title><rect x="27.4790%" y="757" width="0.0205%" height="15" fill="rgb(243,166,3)" fg:x="142225" fg:w="106"/><text x="27.7290%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (123 samples, 0.02%)</title><rect x="27.4763%" y="773" width="0.0238%" height="15" fill="rgb(223,22,34)" fg:x="142211" fg:w="123"/><text x="27.7263%" y="783.50"></text></g><g><title>ClassLoader::load_class (57 samples, 0.01%)</title><rect x="27.5082%" y="677" width="0.0110%" height="15" fill="rgb(251,52,51)" fg:x="142376" fg:w="57"/><text x="27.7582%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (53 samples, 0.01%)</title><rect x="27.5090%" y="661" width="0.0102%" height="15" fill="rgb(221,165,28)" fg:x="142380" fg:w="53"/><text x="27.7590%" y="671.50"></text></g><g><title>SystemDictionary::load_instance_class (63 samples, 0.01%)</title><rect x="27.5082%" y="693" width="0.0122%" height="15" fill="rgb(218,121,47)" fg:x="142376" fg:w="63"/><text x="27.7582%" y="703.50"></text></g><g><title>SystemDictionary::resolve_or_fail (73 samples, 0.01%)</title><rect x="27.5066%" y="725" width="0.0141%" height="15" fill="rgb(209,120,9)" fg:x="142368" fg:w="73"/><text x="27.7566%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (72 samples, 0.01%)</title><rect x="27.5068%" y="709" width="0.0139%" height="15" fill="rgb(236,68,12)" fg:x="142369" fg:w="72"/><text x="27.7568%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (77 samples, 0.01%)</title><rect x="27.5061%" y="741" width="0.0149%" height="15" fill="rgb(225,194,26)" fg:x="142365" fg:w="77"/><text x="27.7561%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (63 samples, 0.01%)</title><rect x="27.5360%" y="709" width="0.0122%" height="15" fill="rgb(231,84,39)" fg:x="142520" fg:w="63"/><text x="27.7860%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (64 samples, 0.01%)</title><rect x="27.5360%" y="725" width="0.0124%" height="15" fill="rgb(210,11,45)" fg:x="142520" fg:w="64"/><text x="27.7860%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (89 samples, 0.02%)</title><rect x="27.5356%" y="741" width="0.0172%" height="15" fill="rgb(224,54,52)" fg:x="142518" fg:w="89"/><text x="27.7856%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (247 samples, 0.05%)</title><rect x="27.5059%" y="757" width="0.0477%" height="15" fill="rgb(238,102,14)" fg:x="142364" fg:w="247"/><text x="27.7559%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (293 samples, 0.06%)</title><rect x="27.5001%" y="773" width="0.0566%" height="15" fill="rgb(243,160,52)" fg:x="142334" fg:w="293"/><text x="27.7501%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (463 samples, 0.09%)</title><rect x="27.4757%" y="789" width="0.0895%" height="15" fill="rgb(216,114,19)" fg:x="142208" fg:w="463"/><text x="27.7257%" y="799.50"></text></g><g><title>SymbolTable::add (52 samples, 0.01%)</title><rect x="27.6363%" y="645" width="0.0100%" height="15" fill="rgb(244,166,37)" fg:x="143039" fg:w="52"/><text x="27.8863%" y="655.50"></text></g><g><title>SymbolTable::lookup_only (439 samples, 0.08%)</title><rect x="27.6463%" y="645" width="0.0848%" height="15" fill="rgb(246,29,44)" fg:x="143091" fg:w="439"/><text x="27.8963%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (509 samples, 0.10%)</title><rect x="27.6334%" y="661" width="0.0983%" height="15" fill="rgb(215,56,53)" fg:x="143024" fg:w="509"/><text x="27.8834%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (532 samples, 0.10%)</title><rect x="27.6309%" y="677" width="0.1028%" height="15" fill="rgb(217,60,2)" fg:x="143011" fg:w="532"/><text x="27.8809%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (131 samples, 0.03%)</title><rect x="27.7381%" y="677" width="0.0253%" height="15" fill="rgb(207,26,24)" fg:x="143566" fg:w="131"/><text x="27.9881%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (130 samples, 0.03%)</title><rect x="27.7383%" y="661" width="0.0251%" height="15" fill="rgb(252,210,15)" fg:x="143567" fg:w="130"/><text x="27.9883%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (716 samples, 0.14%)</title><rect x="27.6284%" y="709" width="0.1383%" height="15" fill="rgb(253,209,26)" fg:x="142998" fg:w="716"/><text x="27.8784%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (713 samples, 0.14%)</title><rect x="27.6289%" y="693" width="0.1378%" height="15" fill="rgb(238,170,14)" fg:x="143001" fg:w="713"/><text x="27.8789%" y="703.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (88 samples, 0.02%)</title><rect x="27.7719%" y="661" width="0.0170%" height="15" fill="rgb(216,178,15)" fg:x="143741" fg:w="88"/><text x="28.0219%" y="671.50"></text></g><g><title>DefaultMethods::generate_default_methods (132 samples, 0.03%)</title><rect x="27.7680%" y="677" width="0.0255%" height="15" fill="rgb(250,197,2)" fg:x="143721" fg:w="132"/><text x="28.0180%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (167 samples, 0.03%)</title><rect x="27.7667%" y="693" width="0.0323%" height="15" fill="rgb(212,70,42)" fg:x="143714" fg:w="167"/><text x="28.0167%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (177 samples, 0.03%)</title><rect x="27.7667%" y="709" width="0.0342%" height="15" fill="rgb(227,213,9)" fg:x="143714" fg:w="177"/><text x="28.0167%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (940 samples, 0.18%)</title><rect x="27.6282%" y="725" width="0.1816%" height="15" fill="rgb(245,99,25)" fg:x="142997" fg:w="940"/><text x="27.8782%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (977 samples, 0.19%)</title><rect x="27.6266%" y="773" width="0.1888%" height="15" fill="rgb(250,82,29)" fg:x="142989" fg:w="977"/><text x="27.8766%" y="783.50"></text></g><g><title>jvm_define_class_common (977 samples, 0.19%)</title><rect x="27.6266%" y="757" width="0.1888%" height="15" fill="rgb(241,226,54)" fg:x="142989" fg:w="977"/><text x="27.8766%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (969 samples, 0.19%)</title><rect x="27.6282%" y="741" width="0.1872%" height="15" fill="rgb(221,99,41)" fg:x="142997" fg:w="969"/><text x="27.8782%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,027 samples, 0.20%)</title><rect x="27.6264%" y="789" width="0.1984%" height="15" fill="rgb(213,90,21)" fg:x="142988" fg:w="1027"/><text x="27.8764%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_null (59 samples, 0.01%)</title><rect x="27.8254%" y="757" width="0.0114%" height="15" fill="rgb(205,208,24)" fg:x="144018" fg:w="59"/><text x="28.0754%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (59 samples, 0.01%)</title><rect x="27.8254%" y="741" width="0.0114%" height="15" fill="rgb(246,31,12)" fg:x="144018" fg:w="59"/><text x="28.0754%" y="751.50"></text></g><g><title>JVM_FindClassFromBootLoader (63 samples, 0.01%)</title><rect x="27.8248%" y="773" width="0.0122%" height="15" fill="rgb(213,154,6)" fg:x="144015" fg:w="63"/><text x="28.0748%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (82 samples, 0.02%)</title><rect x="27.8248%" y="789" width="0.0158%" height="15" fill="rgb(222,163,29)" fg:x="144015" fg:w="82"/><text x="28.0748%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (57 samples, 0.01%)</title><rect x="27.8672%" y="757" width="0.0110%" height="15" fill="rgb(227,201,8)" fg:x="144234" fg:w="57"/><text x="28.1172%" y="767.50"></text></g><g><title>SystemDictionary::parse_stream (79 samples, 0.02%)</title><rect x="27.8645%" y="773" width="0.0153%" height="15" fill="rgb(233,9,32)" fg:x="144220" fg:w="79"/><text x="28.1145%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (85 samples, 0.02%)</title><rect x="27.8635%" y="789" width="0.0164%" height="15" fill="rgb(217,54,24)" fg:x="144215" fg:w="85"/><text x="28.1135%" y="799.50"></text></g><g><title>[perf-965379.map] (4,691 samples, 0.91%)</title><rect x="26.9873%" y="805" width="0.9063%" height="15" fill="rgb(235,192,0)" fg:x="139680" fg:w="4691"/><text x="27.2373%" y="815.50"></text></g><g><title>__libc_read (60 samples, 0.01%)</title><rect x="27.9118%" y="757" width="0.0116%" height="15" fill="rgb(235,45,9)" fg:x="144465" fg:w="60"/><text x="28.1618%" y="767.50"></text></g><g><title>__libc_read (60 samples, 0.01%)</title><rect x="27.9118%" y="741" width="0.0116%" height="15" fill="rgb(246,42,40)" fg:x="144465" fg:w="60"/><text x="28.1618%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="27.9124%" y="725" width="0.0110%" height="15" fill="rgb(248,111,24)" fg:x="144468" fg:w="57"/><text x="28.1624%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="27.9126%" y="709" width="0.0108%" height="15" fill="rgb(249,65,22)" fg:x="144469" fg:w="56"/><text x="28.1626%" y="719.50"></text></g><g><title>ksys_read (55 samples, 0.01%)</title><rect x="27.9128%" y="693" width="0.0106%" height="15" fill="rgb(238,111,51)" fg:x="144470" fg:w="55"/><text x="28.1628%" y="703.50"></text></g><g><title>handleRead (64 samples, 0.01%)</title><rect x="27.9116%" y="773" width="0.0124%" height="15" fill="rgb(250,118,22)" fg:x="144464" fg:w="64"/><text x="28.1616%" y="783.50"></text></g><g><title>readBytes (78 samples, 0.02%)</title><rect x="27.9112%" y="789" width="0.0151%" height="15" fill="rgb(234,84,26)" fg:x="144462" fg:w="78"/><text x="28.1612%" y="799.50"></text></g><g><title>[unknown] (172 samples, 0.03%)</title><rect x="27.8936%" y="805" width="0.0332%" height="15" fill="rgb(243,172,12)" fg:x="144371" fg:w="172"/><text x="28.1436%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (190 samples, 0.04%)</title><rect x="27.9311%" y="741" width="0.0367%" height="15" fill="rgb(236,150,49)" fg:x="144565" fg:w="190"/><text x="28.1811%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (185 samples, 0.04%)</title><rect x="27.9321%" y="725" width="0.0357%" height="15" fill="rgb(225,197,26)" fg:x="144570" fg:w="185"/><text x="28.1821%" y="735.50"></text></g><g><title>native_write_msr (184 samples, 0.04%)</title><rect x="27.9323%" y="709" width="0.0356%" height="15" fill="rgb(214,17,42)" fg:x="144571" fg:w="184"/><text x="28.1823%" y="719.50"></text></g><g><title>schedule_tail (198 samples, 0.04%)</title><rect x="27.9305%" y="773" width="0.0383%" height="15" fill="rgb(224,165,40)" fg:x="144562" fg:w="198"/><text x="28.1805%" y="783.50"></text></g><g><title>finish_task_switch (197 samples, 0.04%)</title><rect x="27.9307%" y="757" width="0.0381%" height="15" fill="rgb(246,100,4)" fg:x="144563" fg:w="197"/><text x="28.1807%" y="767.50"></text></g><g><title>ret_from_fork (207 samples, 0.04%)</title><rect x="27.9292%" y="789" width="0.0400%" height="15" fill="rgb(222,103,0)" fg:x="144555" fg:w="207"/><text x="28.1792%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (53 samples, 0.01%)</title><rect x="27.9692%" y="757" width="0.0102%" height="15" fill="rgb(227,189,26)" fg:x="144762" fg:w="53"/><text x="28.2192%" y="767.50"></text></g><g><title>Threads::create_vm (53 samples, 0.01%)</title><rect x="27.9692%" y="741" width="0.0102%" height="15" fill="rgb(214,202,17)" fg:x="144762" fg:w="53"/><text x="28.2192%" y="751.50"></text></g><g><title>JavaMain (54 samples, 0.01%)</title><rect x="27.9692%" y="773" width="0.0104%" height="15" fill="rgb(229,111,3)" fg:x="144762" fg:w="54"/><text x="28.2192%" y="783.50"></text></g><g><title>__GI___clone (348 samples, 0.07%)</title><rect x="27.9269%" y="805" width="0.0672%" height="15" fill="rgb(229,172,15)" fg:x="144543" fg:w="348"/><text x="28.1769%" y="815.50"></text></g><g><title>start_thread (129 samples, 0.02%)</title><rect x="27.9692%" y="789" width="0.0249%" height="15" fill="rgb(230,224,35)" fg:x="144762" fg:w="129"/><text x="28.2192%" y="799.50"></text></g><g><title>thread_native_entry (75 samples, 0.01%)</title><rect x="27.9796%" y="773" width="0.0145%" height="15" fill="rgb(251,141,6)" fg:x="144816" fg:w="75"/><text x="28.2296%" y="783.50"></text></g><g><title>java (5,520 samples, 1.07%)</title><rect x="26.9342%" y="821" width="1.0665%" height="15" fill="rgb(225,208,6)" fg:x="139405" fg:w="5520"/><text x="27.1842%" y="831.50"></text></g><g><title>arch_fork (60 samples, 0.01%)</title><rect x="28.0289%" y="69" width="0.0116%" height="15" fill="rgb(246,181,16)" fg:x="145071" fg:w="60"/><text x="28.2789%" y="79.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="28.0298%" y="53" width="0.0106%" height="15" fill="rgb(227,129,36)" fg:x="145076" fg:w="55"/><text x="28.2798%" y="63.50"></text></g><g><title>schedule_tail (55 samples, 0.01%)</title><rect x="28.0298%" y="37" width="0.0106%" height="15" fill="rgb(248,117,24)" fg:x="145076" fg:w="55"/><text x="28.2798%" y="47.50"></text></g><g><title>__libc_fork (61 samples, 0.01%)</title><rect x="28.0289%" y="85" width="0.0118%" height="15" fill="rgb(214,185,35)" fg:x="145071" fg:w="61"/><text x="28.2789%" y="95.50"></text></g><g><title>execute_command (69 samples, 0.01%)</title><rect x="28.0277%" y="757" width="0.0133%" height="15" fill="rgb(236,150,34)" fg:x="145065" fg:w="69"/><text x="28.2777%" y="767.50"></text></g><g><title>execute_command_internal (69 samples, 0.01%)</title><rect x="28.0277%" y="741" width="0.0133%" height="15" fill="rgb(243,228,27)" fg:x="145065" fg:w="69"/><text x="28.2777%" y="751.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="725" width="0.0124%" height="15" fill="rgb(245,77,44)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="735.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="709" width="0.0124%" height="15" fill="rgb(235,214,42)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="719.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="693" width="0.0124%" height="15" fill="rgb(221,74,3)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="703.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="677" width="0.0124%" height="15" fill="rgb(206,121,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="687.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="661" width="0.0124%" height="15" fill="rgb(249,131,53)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="671.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="645" width="0.0124%" height="15" fill="rgb(236,170,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="655.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="629" width="0.0124%" height="15" fill="rgb(247,96,15)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="639.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="613" width="0.0124%" height="15" fill="rgb(211,210,7)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="623.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="597" width="0.0124%" height="15" fill="rgb(240,88,50)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="607.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="581" width="0.0124%" height="15" fill="rgb(209,229,26)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="591.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="565" width="0.0124%" height="15" fill="rgb(210,68,23)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="575.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="549" width="0.0124%" height="15" fill="rgb(229,180,13)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="559.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="533" width="0.0124%" height="15" fill="rgb(236,53,44)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="543.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="517" width="0.0124%" height="15" fill="rgb(244,214,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="527.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="501" width="0.0124%" height="15" fill="rgb(220,75,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="511.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="485" width="0.0124%" height="15" fill="rgb(214,183,37)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="495.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="469" width="0.0124%" height="15" fill="rgb(239,117,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="479.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="453" width="0.0124%" height="15" fill="rgb(237,171,35)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="463.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="437" width="0.0124%" height="15" fill="rgb(229,178,53)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="447.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="421" width="0.0124%" height="15" fill="rgb(210,102,19)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="431.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="405" width="0.0124%" height="15" fill="rgb(235,127,22)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="415.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="389" width="0.0124%" height="15" fill="rgb(244,31,31)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="399.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="373" width="0.0124%" height="15" fill="rgb(231,43,21)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="383.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="357" width="0.0124%" height="15" fill="rgb(217,131,35)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="367.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="341" width="0.0124%" height="15" fill="rgb(221,149,4)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="351.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="325" width="0.0124%" height="15" fill="rgb(232,170,28)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="335.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="309" width="0.0124%" height="15" fill="rgb(238,56,10)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="319.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="293" width="0.0124%" height="15" fill="rgb(235,196,14)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="303.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="277" width="0.0124%" height="15" fill="rgb(216,45,48)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="287.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="261" width="0.0124%" height="15" fill="rgb(238,213,17)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="271.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="245" width="0.0124%" height="15" fill="rgb(212,13,2)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="255.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="229" width="0.0124%" height="15" fill="rgb(240,114,20)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="239.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="213" width="0.0124%" height="15" fill="rgb(228,41,40)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="223.50"></text></g><g><title>expand_words (64 samples, 0.01%)</title><rect x="28.0287%" y="197" width="0.0124%" height="15" fill="rgb(244,132,35)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="207.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="181" width="0.0124%" height="15" fill="rgb(253,189,4)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="191.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="165" width="0.0124%" height="15" fill="rgb(224,37,19)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="175.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="149" width="0.0124%" height="15" fill="rgb(235,223,18)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="159.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="133" width="0.0124%" height="15" fill="rgb(235,163,25)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="143.50"></text></g><g><title>command_substitute (64 samples, 0.01%)</title><rect x="28.0287%" y="117" width="0.0124%" height="15" fill="rgb(217,145,28)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="127.50"></text></g><g><title>make_child (64 samples, 0.01%)</title><rect x="28.0287%" y="101" width="0.0124%" height="15" fill="rgb(223,223,32)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="111.50"></text></g><g><title>[bash] (102 samples, 0.02%)</title><rect x="28.0277%" y="773" width="0.0197%" height="15" fill="rgb(227,189,39)" fg:x="145065" fg:w="102"/><text x="28.2777%" y="783.50"></text></g><g><title>arch_fork (67 samples, 0.01%)</title><rect x="28.0497%" y="117" width="0.0129%" height="15" fill="rgb(248,10,22)" fg:x="145179" fg:w="67"/><text x="28.2997%" y="127.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="28.0521%" y="101" width="0.0106%" height="15" fill="rgb(248,46,39)" fg:x="145191" fg:w="55"/><text x="28.3021%" y="111.50"></text></g><g><title>schedule_tail (55 samples, 0.01%)</title><rect x="28.0521%" y="85" width="0.0106%" height="15" fill="rgb(248,113,48)" fg:x="145191" fg:w="55"/><text x="28.3021%" y="95.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="28.0524%" y="69" width="0.0102%" height="15" fill="rgb(245,16,25)" fg:x="145193" fg:w="53"/><text x="28.3024%" y="79.50"></text></g><g><title>make_child (68 samples, 0.01%)</title><rect x="28.0497%" y="149" width="0.0131%" height="15" fill="rgb(249,152,16)" fg:x="145179" fg:w="68"/><text x="28.2997%" y="159.50"></text></g><g><title>__libc_fork (68 samples, 0.01%)</title><rect x="28.0497%" y="133" width="0.0131%" height="15" fill="rgb(250,16,1)" fg:x="145179" fg:w="68"/><text x="28.2997%" y="143.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="677" width="0.0143%" height="15" fill="rgb(249,138,3)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="687.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="661" width="0.0143%" height="15" fill="rgb(227,71,41)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="671.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="645" width="0.0143%" height="15" fill="rgb(209,184,23)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="655.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="629" width="0.0143%" height="15" fill="rgb(223,215,31)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="639.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="613" width="0.0143%" height="15" fill="rgb(210,146,28)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="623.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="597" width="0.0143%" height="15" fill="rgb(209,183,41)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="607.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="581" width="0.0143%" height="15" fill="rgb(209,224,45)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="591.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="565" width="0.0143%" height="15" fill="rgb(224,209,51)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="575.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="549" width="0.0143%" height="15" fill="rgb(223,17,39)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="559.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="533" width="0.0143%" height="15" fill="rgb(234,204,37)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="543.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="517" width="0.0143%" height="15" fill="rgb(236,120,5)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="527.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="501" width="0.0143%" height="15" fill="rgb(248,97,27)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="511.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="485" width="0.0143%" height="15" fill="rgb(240,66,17)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="495.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="469" width="0.0143%" height="15" fill="rgb(210,79,3)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="479.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="453" width="0.0143%" height="15" fill="rgb(214,176,27)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="463.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="437" width="0.0143%" height="15" fill="rgb(235,185,3)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="447.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="421" width="0.0143%" height="15" fill="rgb(227,24,12)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="431.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="405" width="0.0143%" height="15" fill="rgb(252,169,48)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="415.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="389" width="0.0143%" height="15" fill="rgb(212,65,1)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="399.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="373" width="0.0143%" height="15" fill="rgb(242,39,24)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="383.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="357" width="0.0143%" height="15" fill="rgb(249,32,23)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="367.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="341" width="0.0143%" height="15" fill="rgb(251,195,23)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="351.50"></text></g><g><title>expand_words (74 samples, 0.01%)</title><rect x="28.0488%" y="325" width="0.0143%" height="15" fill="rgb(236,174,8)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="335.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="309" width="0.0143%" height="15" fill="rgb(220,197,8)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="319.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="293" width="0.0143%" height="15" fill="rgb(240,108,37)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="303.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="277" width="0.0143%" height="15" fill="rgb(232,176,24)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="287.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="261" width="0.0143%" height="15" fill="rgb(243,35,29)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="271.50"></text></g><g><title>command_substitute (74 samples, 0.01%)</title><rect x="28.0488%" y="245" width="0.0143%" height="15" fill="rgb(210,37,18)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="255.50"></text></g><g><title>parse_and_execute (74 samples, 0.01%)</title><rect x="28.0488%" y="229" width="0.0143%" height="15" fill="rgb(224,184,40)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="239.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="213" width="0.0143%" height="15" fill="rgb(236,39,29)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="223.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="197" width="0.0143%" height="15" fill="rgb(232,48,39)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="207.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="181" width="0.0143%" height="15" fill="rgb(236,34,42)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="191.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="165" width="0.0143%" height="15" fill="rgb(243,106,37)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="175.50"></text></g><g><title>execute_command (77 samples, 0.01%)</title><rect x="28.0484%" y="741" width="0.0149%" height="15" fill="rgb(218,96,6)" fg:x="145172" fg:w="77"/><text x="28.2984%" y="751.50"></text></g><g><title>execute_command_internal (77 samples, 0.01%)</title><rect x="28.0484%" y="725" width="0.0149%" height="15" fill="rgb(235,130,12)" fg:x="145172" fg:w="77"/><text x="28.2984%" y="735.50"></text></g><g><title>[bash] (77 samples, 0.01%)</title><rect x="28.0484%" y="709" width="0.0149%" height="15" fill="rgb(231,95,0)" fg:x="145172" fg:w="77"/><text x="28.2984%" y="719.50"></text></g><g><title>execute_command_internal (75 samples, 0.01%)</title><rect x="28.0488%" y="693" width="0.0145%" height="15" fill="rgb(228,12,23)" fg:x="145174" fg:w="75"/><text x="28.2988%" y="703.50"></text></g><g><title>execute_command_internal (187 samples, 0.04%)</title><rect x="28.0277%" y="789" width="0.0361%" height="15" fill="rgb(216,12,1)" fg:x="145065" fg:w="187"/><text x="28.2777%" y="799.50"></text></g><g><title>execute_command_internal (80 samples, 0.02%)</title><rect x="28.0484%" y="773" width="0.0155%" height="15" fill="rgb(219,59,3)" fg:x="145172" fg:w="80"/><text x="28.2984%" y="783.50"></text></g><g><title>[bash] (80 samples, 0.02%)</title><rect x="28.0484%" y="757" width="0.0155%" height="15" fill="rgb(215,208,46)" fg:x="145172" fg:w="80"/><text x="28.2984%" y="767.50"></text></g><g><title>[unknown] (289 samples, 0.06%)</title><rect x="28.0138%" y="805" width="0.0558%" height="15" fill="rgb(254,224,29)" fg:x="144993" fg:w="289"/><text x="28.2638%" y="815.50"></text></g><g><title>arch_fork (62 samples, 0.01%)</title><rect x="28.0870%" y="629" width="0.0120%" height="15" fill="rgb(232,14,29)" fg:x="145372" fg:w="62"/><text x="28.3370%" y="639.50"></text></g><g><title>ret_from_fork (56 samples, 0.01%)</title><rect x="28.0882%" y="613" width="0.0108%" height="15" fill="rgb(208,45,52)" fg:x="145378" fg:w="56"/><text x="28.3382%" y="623.50"></text></g><g><title>schedule_tail (56 samples, 0.01%)</title><rect x="28.0882%" y="597" width="0.0108%" height="15" fill="rgb(234,191,28)" fg:x="145378" fg:w="56"/><text x="28.3382%" y="607.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="28.0886%" y="581" width="0.0104%" height="15" fill="rgb(244,67,43)" fg:x="145380" fg:w="54"/><text x="28.3386%" y="591.50"></text></g><g><title>__libc_fork (66 samples, 0.01%)</title><rect x="28.0866%" y="645" width="0.0128%" height="15" fill="rgb(236,189,24)" fg:x="145370" fg:w="66"/><text x="28.3366%" y="655.50"></text></g><g><title>make_child (69 samples, 0.01%)</title><rect x="28.0864%" y="661" width="0.0133%" height="15" fill="rgb(239,214,33)" fg:x="145369" fg:w="69"/><text x="28.3364%" y="671.50"></text></g><g><title>execute_command (118 samples, 0.02%)</title><rect x="28.0789%" y="693" width="0.0228%" height="15" fill="rgb(226,176,41)" fg:x="145330" fg:w="118"/><text x="28.3289%" y="703.50"></text></g><g><title>execute_command_internal (118 samples, 0.02%)</title><rect x="28.0789%" y="677" width="0.0228%" height="15" fill="rgb(248,47,8)" fg:x="145330" fg:w="118"/><text x="28.3289%" y="687.50"></text></g><g><title>[bash] (137 samples, 0.03%)</title><rect x="28.0776%" y="709" width="0.0265%" height="15" fill="rgb(218,81,44)" fg:x="145323" fg:w="137"/><text x="28.3276%" y="719.50"></text></g><g><title>copy_command (52 samples, 0.01%)</title><rect x="28.1056%" y="581" width="0.0100%" height="15" fill="rgb(213,98,6)" fg:x="145468" fg:w="52"/><text x="28.3556%" y="591.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="28.1054%" y="597" width="0.0108%" height="15" fill="rgb(222,85,22)" fg:x="145467" fg:w="56"/><text x="28.3554%" y="607.50"></text></g><g><title>copy_command (60 samples, 0.01%)</title><rect x="28.1050%" y="613" width="0.0116%" height="15" fill="rgb(239,46,39)" fg:x="145465" fg:w="60"/><text x="28.3550%" y="623.50"></text></g><g><title>copy_command (63 samples, 0.01%)</title><rect x="28.1046%" y="629" width="0.0122%" height="15" fill="rgb(237,12,29)" fg:x="145463" fg:w="63"/><text x="28.3546%" y="639.50"></text></g><g><title>copy_command (66 samples, 0.01%)</title><rect x="28.1044%" y="645" width="0.0128%" height="15" fill="rgb(214,77,8)" fg:x="145462" fg:w="66"/><text x="28.3544%" y="655.50"></text></g><g><title>bind_function (67 samples, 0.01%)</title><rect x="28.1044%" y="709" width="0.0129%" height="15" fill="rgb(217,168,37)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="719.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="28.1044%" y="693" width="0.0129%" height="15" fill="rgb(221,217,23)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="703.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="28.1044%" y="677" width="0.0129%" height="15" fill="rgb(243,229,36)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="687.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="28.1044%" y="661" width="0.0129%" height="15" fill="rgb(251,163,40)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="671.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="28.1195%" y="581" width="0.0112%" height="15" fill="rgb(237,222,12)" fg:x="145540" fg:w="58"/><text x="28.3695%" y="591.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="28.1199%" y="565" width="0.0108%" height="15" fill="rgb(248,132,6)" fg:x="145542" fg:w="56"/><text x="28.3699%" y="575.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="28.1193%" y="597" width="0.0118%" height="15" fill="rgb(227,167,50)" fg:x="145539" fg:w="61"/><text x="28.3693%" y="607.50"></text></g><g><title>copy_command (66 samples, 0.01%)</title><rect x="28.1185%" y="613" width="0.0128%" height="15" fill="rgb(242,84,37)" fg:x="145535" fg:w="66"/><text x="28.3685%" y="623.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="28.1181%" y="629" width="0.0137%" height="15" fill="rgb(212,4,50)" fg:x="145533" fg:w="71"/><text x="28.3681%" y="639.50"></text></g><g><title>copy_command (76 samples, 0.01%)</title><rect x="28.1177%" y="693" width="0.0147%" height="15" fill="rgb(230,228,32)" fg:x="145531" fg:w="76"/><text x="28.3677%" y="703.50"></text></g><g><title>copy_command (75 samples, 0.01%)</title><rect x="28.1179%" y="677" width="0.0145%" height="15" fill="rgb(248,217,23)" fg:x="145532" fg:w="75"/><text x="28.3679%" y="687.50"></text></g><g><title>copy_command (75 samples, 0.01%)</title><rect x="28.1179%" y="661" width="0.0145%" height="15" fill="rgb(238,197,32)" fg:x="145532" fg:w="75"/><text x="28.3679%" y="671.50"></text></g><g><title>copy_command (75 samples, 0.01%)</title><rect x="28.1179%" y="645" width="0.0145%" height="15" fill="rgb(236,106,1)" fg:x="145532" fg:w="75"/><text x="28.3679%" y="655.50"></text></g><g><title>copy_function_def_contents (77 samples, 0.01%)</title><rect x="28.1177%" y="709" width="0.0149%" height="15" fill="rgb(219,228,13)" fg:x="145531" fg:w="77"/><text x="28.3677%" y="719.50"></text></g><g><title>arch_fork (57 samples, 0.01%)</title><rect x="28.1380%" y="597" width="0.0110%" height="15" fill="rgb(238,30,35)" fg:x="145636" fg:w="57"/><text x="28.3880%" y="607.50"></text></g><g><title>ret_from_fork (54 samples, 0.01%)</title><rect x="28.1386%" y="581" width="0.0104%" height="15" fill="rgb(236,70,23)" fg:x="145639" fg:w="54"/><text x="28.3886%" y="591.50"></text></g><g><title>schedule_tail (54 samples, 0.01%)</title><rect x="28.1386%" y="565" width="0.0104%" height="15" fill="rgb(249,104,48)" fg:x="145639" fg:w="54"/><text x="28.3886%" y="575.50"></text></g><g><title>make_child (59 samples, 0.01%)</title><rect x="28.1378%" y="629" width="0.0114%" height="15" fill="rgb(254,117,50)" fg:x="145635" fg:w="59"/><text x="28.3878%" y="639.50"></text></g><g><title>__libc_fork (58 samples, 0.01%)</title><rect x="28.1380%" y="613" width="0.0112%" height="15" fill="rgb(223,152,4)" fg:x="145636" fg:w="58"/><text x="28.3880%" y="623.50"></text></g><g><title>parse_and_execute (104 samples, 0.02%)</title><rect x="28.1492%" y="629" width="0.0201%" height="15" fill="rgb(245,6,2)" fg:x="145694" fg:w="104"/><text x="28.3992%" y="639.50"></text></g><g><title>execute_command_internal (102 samples, 0.02%)</title><rect x="28.1496%" y="613" width="0.0197%" height="15" fill="rgb(249,150,24)" fg:x="145696" fg:w="102"/><text x="28.3996%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="28.1699%" y="597" width="0.0100%" height="15" fill="rgb(228,185,42)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="607.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="28.1699%" y="581" width="0.0100%" height="15" fill="rgb(226,39,33)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="591.50"></text></g><g><title>ksys_read (52 samples, 0.01%)</title><rect x="28.1699%" y="565" width="0.0100%" height="15" fill="rgb(221,166,19)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="575.50"></text></g><g><title>vfs_read (52 samples, 0.01%)</title><rect x="28.1699%" y="549" width="0.0100%" height="15" fill="rgb(209,109,2)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="559.50"></text></g><g><title>new_sync_read (52 samples, 0.01%)</title><rect x="28.1699%" y="533" width="0.0100%" height="15" fill="rgb(252,216,26)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="543.50"></text></g><g><title>pipe_read (52 samples, 0.01%)</title><rect x="28.1699%" y="517" width="0.0100%" height="15" fill="rgb(227,173,36)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="527.50"></text></g><g><title>expand_word_leave_quoted (225 samples, 0.04%)</title><rect x="28.1367%" y="677" width="0.0435%" height="15" fill="rgb(209,90,7)" fg:x="145629" fg:w="225"/><text x="28.3867%" y="687.50"></text></g><g><title>[bash] (225 samples, 0.04%)</title><rect x="28.1367%" y="661" width="0.0435%" height="15" fill="rgb(250,194,11)" fg:x="145629" fg:w="225"/><text x="28.3867%" y="671.50"></text></g><g><title>command_substitute (225 samples, 0.04%)</title><rect x="28.1367%" y="645" width="0.0435%" height="15" fill="rgb(220,72,50)" fg:x="145629" fg:w="225"/><text x="28.3867%" y="655.50"></text></g><g><title>zread (54 samples, 0.01%)</title><rect x="28.1697%" y="629" width="0.0104%" height="15" fill="rgb(222,106,48)" fg:x="145800" fg:w="54"/><text x="28.4197%" y="639.50"></text></g><g><title>__GI___libc_read (54 samples, 0.01%)</title><rect x="28.1697%" y="613" width="0.0104%" height="15" fill="rgb(216,220,45)" fg:x="145800" fg:w="54"/><text x="28.4197%" y="623.50"></text></g><g><title>execute_command (253 samples, 0.05%)</title><rect x="28.1326%" y="709" width="0.0489%" height="15" fill="rgb(234,112,18)" fg:x="145608" fg:w="253"/><text x="28.3826%" y="719.50"></text></g><g><title>execute_command_internal (253 samples, 0.05%)</title><rect x="28.1326%" y="693" width="0.0489%" height="15" fill="rgb(206,179,9)" fg:x="145608" fg:w="253"/><text x="28.3826%" y="703.50"></text></g><g><title>arch_fork (53 samples, 0.01%)</title><rect x="28.1856%" y="581" width="0.0102%" height="15" fill="rgb(215,115,40)" fg:x="145882" fg:w="53"/><text x="28.4356%" y="591.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="28.1856%" y="597" width="0.0104%" height="15" fill="rgb(222,69,34)" fg:x="145882" fg:w="54"/><text x="28.4356%" y="607.50"></text></g><g><title>make_child (56 samples, 0.01%)</title><rect x="28.1856%" y="613" width="0.0108%" height="15" fill="rgb(209,161,10)" fg:x="145882" fg:w="56"/><text x="28.4356%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="28.2084%" y="437" width="0.0193%" height="15" fill="rgb(217,6,38)" fg:x="146000" fg:w="100"/><text x="28.4584%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (99 samples, 0.02%)</title><rect x="28.2086%" y="421" width="0.0191%" height="15" fill="rgb(229,229,48)" fg:x="146001" fg:w="99"/><text x="28.4586%" y="431.50"></text></g><g><title>native_write_msr (99 samples, 0.02%)</title><rect x="28.2086%" y="405" width="0.0191%" height="15" fill="rgb(225,21,28)" fg:x="146001" fg:w="99"/><text x="28.4586%" y="415.50"></text></g><g><title>schedule_tail (118 samples, 0.02%)</title><rect x="28.2055%" y="469" width="0.0228%" height="15" fill="rgb(206,33,13)" fg:x="145985" fg:w="118"/><text x="28.4555%" y="479.50"></text></g><g><title>finish_task_switch (105 samples, 0.02%)</title><rect x="28.2080%" y="453" width="0.0203%" height="15" fill="rgb(242,178,17)" fg:x="145998" fg:w="105"/><text x="28.4580%" y="463.50"></text></g><g><title>arch_fork (133 samples, 0.03%)</title><rect x="28.2028%" y="501" width="0.0257%" height="15" fill="rgb(220,162,5)" fg:x="145971" fg:w="133"/><text x="28.4528%" y="511.50"></text></g><g><title>ret_from_fork (119 samples, 0.02%)</title><rect x="28.2055%" y="485" width="0.0230%" height="15" fill="rgb(210,33,43)" fg:x="145985" fg:w="119"/><text x="28.4555%" y="495.50"></text></g><g><title>__libc_fork (138 samples, 0.03%)</title><rect x="28.2028%" y="517" width="0.0267%" height="15" fill="rgb(216,116,54)" fg:x="145971" fg:w="138"/><text x="28.4528%" y="527.50"></text></g><g><title>make_child (142 samples, 0.03%)</title><rect x="28.2028%" y="533" width="0.0274%" height="15" fill="rgb(249,92,24)" fg:x="145971" fg:w="142"/><text x="28.4528%" y="543.50"></text></g><g><title>execute_command_internal (202 samples, 0.04%)</title><rect x="28.1974%" y="597" width="0.0390%" height="15" fill="rgb(231,189,14)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="607.50"></text></g><g><title>[bash] (202 samples, 0.04%)</title><rect x="28.1974%" y="581" width="0.0390%" height="15" fill="rgb(230,8,41)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="591.50"></text></g><g><title>[bash] (202 samples, 0.04%)</title><rect x="28.1974%" y="565" width="0.0390%" height="15" fill="rgb(249,7,27)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="575.50"></text></g><g><title>execute_command_internal (202 samples, 0.04%)</title><rect x="28.1974%" y="549" width="0.0390%" height="15" fill="rgb(232,86,5)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="559.50"></text></g><g><title>parse_and_execute (208 samples, 0.04%)</title><rect x="28.1964%" y="613" width="0.0402%" height="15" fill="rgb(224,175,18)" fg:x="145938" fg:w="208"/><text x="28.4464%" y="623.50"></text></g><g><title>command_substitute (275 samples, 0.05%)</title><rect x="28.1840%" y="629" width="0.0531%" height="15" fill="rgb(220,129,12)" fg:x="145874" fg:w="275"/><text x="28.4340%" y="639.50"></text></g><g><title>[bash] (286 samples, 0.06%)</title><rect x="28.1821%" y="661" width="0.0553%" height="15" fill="rgb(210,19,36)" fg:x="145864" fg:w="286"/><text x="28.4321%" y="671.50"></text></g><g><title>[bash] (285 samples, 0.06%)</title><rect x="28.1823%" y="645" width="0.0551%" height="15" fill="rgb(219,96,14)" fg:x="145865" fg:w="285"/><text x="28.4323%" y="655.50"></text></g><g><title>[bash] (290 samples, 0.06%)</title><rect x="28.1817%" y="677" width="0.0560%" height="15" fill="rgb(249,106,1)" fg:x="145862" fg:w="290"/><text x="28.4317%" y="687.50"></text></g><g><title>[bash] (295 samples, 0.06%)</title><rect x="28.1815%" y="693" width="0.0570%" height="15" fill="rgb(249,155,20)" fg:x="145861" fg:w="295"/><text x="28.4315%" y="703.50"></text></g><g><title>expand_words (297 samples, 0.06%)</title><rect x="28.1815%" y="709" width="0.0574%" height="15" fill="rgb(244,168,9)" fg:x="145861" fg:w="297"/><text x="28.4315%" y="719.50"></text></g><g><title>execute_command (837 samples, 0.16%)</title><rect x="28.0774%" y="741" width="0.1617%" height="15" fill="rgb(216,23,50)" fg:x="145322" fg:w="837"/><text x="28.3274%" y="751.50"></text></g><g><title>execute_command_internal (836 samples, 0.16%)</title><rect x="28.0776%" y="725" width="0.1615%" height="15" fill="rgb(224,219,20)" fg:x="145323" fg:w="836"/><text x="28.3276%" y="735.50"></text></g><g><title>[bash] (225 samples, 0.04%)</title><rect x="28.2642%" y="677" width="0.0435%" height="15" fill="rgb(222,156,15)" fg:x="146289" fg:w="225"/><text x="28.5142%" y="687.50"></text></g><g><title>[bash] (373 samples, 0.07%)</title><rect x="28.2491%" y="693" width="0.0721%" height="15" fill="rgb(231,97,17)" fg:x="146211" fg:w="373"/><text x="28.4991%" y="703.50"></text></g><g><title>reader_loop (1,319 samples, 0.25%)</title><rect x="28.0727%" y="757" width="0.2548%" height="15" fill="rgb(218,70,48)" fg:x="145298" fg:w="1319"/><text x="28.3227%" y="767.50"></text></g><g><title>read_command (458 samples, 0.09%)</title><rect x="28.2391%" y="741" width="0.0885%" height="15" fill="rgb(212,196,52)" fg:x="146159" fg:w="458"/><text x="28.4891%" y="751.50"></text></g><g><title>parse_command (458 samples, 0.09%)</title><rect x="28.2391%" y="725" width="0.0885%" height="15" fill="rgb(243,203,18)" fg:x="146159" fg:w="458"/><text x="28.4891%" y="735.50"></text></g><g><title>yyparse (458 samples, 0.09%)</title><rect x="28.2391%" y="709" width="0.0885%" height="15" fill="rgb(252,125,41)" fg:x="146159" fg:w="458"/><text x="28.4891%" y="719.50"></text></g><g><title>__libc_start_main (1,334 samples, 0.26%)</title><rect x="28.0702%" y="789" width="0.2577%" height="15" fill="rgb(223,180,33)" fg:x="145285" fg:w="1334"/><text x="28.3202%" y="799.50"></text></g><g><title>main (1,334 samples, 0.26%)</title><rect x="28.0702%" y="773" width="0.2577%" height="15" fill="rgb(254,159,46)" fg:x="145285" fg:w="1334"/><text x="28.3202%" y="783.50"></text></g><g><title>_start (1,353 samples, 0.26%)</title><rect x="28.0702%" y="805" width="0.2614%" height="15" fill="rgb(254,38,10)" fg:x="145285" fg:w="1353"/><text x="28.3202%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="28.3396%" y="805" width="0.0116%" height="15" fill="rgb(208,217,32)" fg:x="146679" fg:w="60"/><text x="28.5896%" y="815.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="28.3396%" y="789" width="0.0116%" height="15" fill="rgb(221,120,13)" fg:x="146679" fg:w="60"/><text x="28.5896%" y="799.50"></text></g><g><title>libtool (1,816 samples, 0.35%)</title><rect x="28.0007%" y="821" width="0.3509%" height="15" fill="rgb(246,54,52)" fg:x="144925" fg:w="1816"/><text x="28.2507%" y="831.50"></text></g><g><title>copy_process (75 samples, 0.01%)</title><rect x="28.3560%" y="693" width="0.0145%" height="15" fill="rgb(242,34,25)" fg:x="146764" fg:w="75"/><text x="28.6060%" y="703.50"></text></g><g><title>__libc_start_main (76 samples, 0.01%)</title><rect x="28.3560%" y="789" width="0.0147%" height="15" fill="rgb(247,209,9)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="799.50"></text></g><g><title>__GI___clone (76 samples, 0.01%)</title><rect x="28.3560%" y="773" width="0.0147%" height="15" fill="rgb(228,71,26)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.01%)</title><rect x="28.3560%" y="757" width="0.0147%" height="15" fill="rgb(222,145,49)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="767.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="28.3560%" y="741" width="0.0147%" height="15" fill="rgb(218,121,17)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="751.50"></text></g><g><title>__do_sys_clone (76 samples, 0.01%)</title><rect x="28.3560%" y="725" width="0.0147%" height="15" fill="rgb(244,50,7)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="735.50"></text></g><g><title>kernel_clone (76 samples, 0.01%)</title><rect x="28.3560%" y="709" width="0.0147%" height="15" fill="rgb(246,229,37)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="719.50"></text></g><g><title>[unknown] (90 samples, 0.02%)</title><rect x="28.3548%" y="805" width="0.0174%" height="15" fill="rgb(225,18,5)" fg:x="146758" fg:w="90"/><text x="28.6048%" y="815.50"></text></g><g><title>WriteFile (64 samples, 0.01%)</title><rect x="28.3737%" y="773" width="0.0124%" height="15" fill="rgb(213,204,8)" fg:x="146856" fg:w="64"/><text x="28.6237%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="28.3965%" y="645" width="0.0124%" height="15" fill="rgb(238,103,6)" fg:x="146974" fg:w="64"/><text x="28.6465%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="28.3965%" y="629" width="0.0124%" height="15" fill="rgb(222,25,35)" fg:x="146974" fg:w="64"/><text x="28.6465%" y="639.50"></text></g><g><title>native_write_msr (64 samples, 0.01%)</title><rect x="28.3965%" y="613" width="0.0124%" height="15" fill="rgb(213,203,35)" fg:x="146974" fg:w="64"/><text x="28.6465%" y="623.50"></text></g><g><title>schedule (71 samples, 0.01%)</title><rect x="28.3956%" y="693" width="0.0137%" height="15" fill="rgb(221,79,53)" fg:x="146969" fg:w="71"/><text x="28.6456%" y="703.50"></text></g><g><title>__schedule (71 samples, 0.01%)</title><rect x="28.3956%" y="677" width="0.0137%" height="15" fill="rgb(243,200,35)" fg:x="146969" fg:w="71"/><text x="28.6456%" y="687.50"></text></g><g><title>finish_task_switch (71 samples, 0.01%)</title><rect x="28.3956%" y="661" width="0.0137%" height="15" fill="rgb(248,60,25)" fg:x="146969" fg:w="71"/><text x="28.6456%" y="671.50"></text></g><g><title>__GI___wait4 (88 samples, 0.02%)</title><rect x="28.3952%" y="773" width="0.0170%" height="15" fill="rgb(227,53,46)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="28.3952%" y="757" width="0.0170%" height="15" fill="rgb(216,120,32)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="767.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="28.3952%" y="741" width="0.0170%" height="15" fill="rgb(220,134,1)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="751.50"></text></g><g><title>kernel_wait4 (88 samples, 0.02%)</title><rect x="28.3952%" y="725" width="0.0170%" height="15" fill="rgb(237,168,5)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="735.50"></text></g><g><title>do_wait (88 samples, 0.02%)</title><rect x="28.3952%" y="709" width="0.0170%" height="15" fill="rgb(231,100,33)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="719.50"></text></g><g><title>do_open_execat (61 samples, 0.01%)</title><rect x="28.4145%" y="661" width="0.0118%" height="15" fill="rgb(236,177,47)" fg:x="147067" fg:w="61"/><text x="28.6645%" y="671.50"></text></g><g><title>do_filp_open (61 samples, 0.01%)</title><rect x="28.4145%" y="645" width="0.0118%" height="15" fill="rgb(235,7,49)" fg:x="147067" fg:w="61"/><text x="28.6645%" y="655.50"></text></g><g><title>path_openat (60 samples, 0.01%)</title><rect x="28.4147%" y="629" width="0.0116%" height="15" fill="rgb(232,119,22)" fg:x="147068" fg:w="60"/><text x="28.6647%" y="639.50"></text></g><g><title>bprm_execve (93 samples, 0.02%)</title><rect x="28.4141%" y="677" width="0.0180%" height="15" fill="rgb(254,73,53)" fg:x="147065" fg:w="93"/><text x="28.6641%" y="687.50"></text></g><g><title>__execvpe_common (104 samples, 0.02%)</title><rect x="28.4137%" y="773" width="0.0201%" height="15" fill="rgb(251,35,20)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="783.50"></text></g><g><title>__GI_execve (104 samples, 0.02%)</title><rect x="28.4137%" y="757" width="0.0201%" height="15" fill="rgb(241,119,20)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="28.4137%" y="741" width="0.0201%" height="15" fill="rgb(207,102,14)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="751.50"></text></g><g><title>do_syscall_64 (104 samples, 0.02%)</title><rect x="28.4137%" y="725" width="0.0201%" height="15" fill="rgb(248,201,50)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="735.50"></text></g><g><title>__x64_sys_execve (104 samples, 0.02%)</title><rect x="28.4137%" y="709" width="0.0201%" height="15" fill="rgb(222,185,44)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="719.50"></text></g><g><title>do_execveat_common (104 samples, 0.02%)</title><rect x="28.4137%" y="693" width="0.0201%" height="15" fill="rgb(218,107,18)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="703.50"></text></g><g><title>copy_process (77 samples, 0.01%)</title><rect x="28.4418%" y="677" width="0.0149%" height="15" fill="rgb(237,177,39)" fg:x="147208" fg:w="77"/><text x="28.6918%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="28.4418%" y="741" width="0.0153%" height="15" fill="rgb(246,69,6)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="751.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="28.4418%" y="725" width="0.0153%" height="15" fill="rgb(234,208,37)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="735.50"></text></g><g><title>__do_sys_clone (79 samples, 0.02%)</title><rect x="28.4418%" y="709" width="0.0153%" height="15" fill="rgb(225,4,6)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="719.50"></text></g><g><title>kernel_clone (79 samples, 0.02%)</title><rect x="28.4418%" y="693" width="0.0153%" height="15" fill="rgb(233,45,0)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (383 samples, 0.07%)</title><rect x="28.4711%" y="693" width="0.0740%" height="15" fill="rgb(226,136,5)" fg:x="147360" fg:w="383"/><text x="28.7211%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (383 samples, 0.07%)</title><rect x="28.4711%" y="677" width="0.0740%" height="15" fill="rgb(211,91,47)" fg:x="147360" fg:w="383"/><text x="28.7211%" y="687.50"></text></g><g><title>native_write_msr (383 samples, 0.07%)</title><rect x="28.4711%" y="661" width="0.0740%" height="15" fill="rgb(242,88,51)" fg:x="147360" fg:w="383"/><text x="28.7211%" y="671.50"></text></g><g><title>arch_fork (580 samples, 0.11%)</title><rect x="28.4344%" y="757" width="0.1121%" height="15" fill="rgb(230,91,28)" fg:x="147170" fg:w="580"/><text x="28.6844%" y="767.50"></text></g><g><title>ret_from_fork (459 samples, 0.09%)</title><rect x="28.4578%" y="741" width="0.0887%" height="15" fill="rgb(254,186,29)" fg:x="147291" fg:w="459"/><text x="28.7078%" y="751.50"></text></g><g><title>schedule_tail (456 samples, 0.09%)</title><rect x="28.4584%" y="725" width="0.0881%" height="15" fill="rgb(238,6,4)" fg:x="147294" fg:w="456"/><text x="28.7084%" y="735.50"></text></g><g><title>finish_task_switch (398 samples, 0.08%)</title><rect x="28.4696%" y="709" width="0.0769%" height="15" fill="rgb(221,151,16)" fg:x="147352" fg:w="398"/><text x="28.7196%" y="719.50"></text></g><g><title>__libc_fork (588 samples, 0.11%)</title><rect x="28.4338%" y="773" width="0.1136%" height="15" fill="rgb(251,143,52)" fg:x="147167" fg:w="588"/><text x="28.6838%" y="783.50"></text></g><g><title>Pid1Main (988 samples, 0.19%)</title><rect x="28.3728%" y="789" width="0.1909%" height="15" fill="rgb(206,90,15)" fg:x="146851" fg:w="988"/><text x="28.6228%" y="799.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="28.5639%" y="789" width="0.0106%" height="15" fill="rgb(218,35,8)" fg:x="147840" fg:w="55"/><text x="28.8139%" y="799.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="28.5639%" y="773" width="0.0106%" height="15" fill="rgb(239,215,6)" fg:x="147840" fg:w="55"/><text x="28.8139%" y="783.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="28.5641%" y="757" width="0.0104%" height="15" fill="rgb(245,116,39)" fg:x="147841" fg:w="54"/><text x="28.8141%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (375 samples, 0.07%)</title><rect x="28.5843%" y="741" width="0.0725%" height="15" fill="rgb(242,65,28)" fg:x="147946" fg:w="375"/><text x="28.8343%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (374 samples, 0.07%)</title><rect x="28.5845%" y="725" width="0.0723%" height="15" fill="rgb(252,132,53)" fg:x="147947" fg:w="374"/><text x="28.8345%" y="735.50"></text></g><g><title>native_write_msr (374 samples, 0.07%)</title><rect x="28.5845%" y="709" width="0.0723%" height="15" fill="rgb(224,159,50)" fg:x="147947" fg:w="374"/><text x="28.8345%" y="719.50"></text></g><g><title>schedule_tail (412 samples, 0.08%)</title><rect x="28.5797%" y="773" width="0.0796%" height="15" fill="rgb(224,93,4)" fg:x="147922" fg:w="412"/><text x="28.8297%" y="783.50"></text></g><g><title>finish_task_switch (412 samples, 0.08%)</title><rect x="28.5797%" y="757" width="0.0796%" height="15" fill="rgb(208,81,34)" fg:x="147922" fg:w="412"/><text x="28.8297%" y="767.50"></text></g><g><title>__GI___clone (1,490 samples, 0.29%)</title><rect x="28.3722%" y="805" width="0.2879%" height="15" fill="rgb(233,92,54)" fg:x="146848" fg:w="1490"/><text x="28.6222%" y="815.50"></text></g><g><title>ret_from_fork (442 samples, 0.09%)</title><rect x="28.5747%" y="789" width="0.0854%" height="15" fill="rgb(237,21,14)" fg:x="147896" fg:w="442"/><text x="28.8247%" y="799.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.01%)</title><rect x="28.6732%" y="741" width="0.0102%" height="15" fill="rgb(249,128,51)" fg:x="148406" fg:w="53"/><text x="28.9232%" y="751.50"></text></g><g><title>[libc-2.31.so] (71 samples, 0.01%)</title><rect x="28.6711%" y="757" width="0.0137%" height="15" fill="rgb(223,129,24)" fg:x="148395" fg:w="71"/><text x="28.9211%" y="767.50"></text></g><g><title>do_wait (63 samples, 0.01%)</title><rect x="28.6852%" y="677" width="0.0122%" height="15" fill="rgb(231,168,25)" fg:x="148468" fg:w="63"/><text x="28.9352%" y="687.50"></text></g><g><title>__GI___wait4 (64 samples, 0.01%)</title><rect x="28.6852%" y="757" width="0.0124%" height="15" fill="rgb(224,39,20)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="28.6852%" y="741" width="0.0124%" height="15" fill="rgb(225,152,53)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="751.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="28.6852%" y="725" width="0.0124%" height="15" fill="rgb(252,17,24)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="735.50"></text></g><g><title>__do_sys_wait4 (64 samples, 0.01%)</title><rect x="28.6852%" y="709" width="0.0124%" height="15" fill="rgb(250,114,30)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="719.50"></text></g><g><title>kernel_wait4 (64 samples, 0.01%)</title><rect x="28.6852%" y="693" width="0.0124%" height="15" fill="rgb(229,5,4)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="703.50"></text></g><g><title>__libc_start_main (205 samples, 0.04%)</title><rect x="28.6641%" y="789" width="0.0396%" height="15" fill="rgb(225,176,49)" fg:x="148359" fg:w="205"/><text x="28.9141%" y="799.50"></text></g><g><title>main (180 samples, 0.03%)</title><rect x="28.6690%" y="773" width="0.0348%" height="15" fill="rgb(224,221,49)" fg:x="148384" fg:w="180"/><text x="28.9190%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (68 samples, 0.01%)</title><rect x="28.7057%" y="661" width="0.0131%" height="15" fill="rgb(253,169,27)" fg:x="148574" fg:w="68"/><text x="28.9557%" y="671.50"></text></g><g><title>_dl_catch_exception (93 samples, 0.02%)</title><rect x="28.7043%" y="709" width="0.0180%" height="15" fill="rgb(211,206,16)" fg:x="148567" fg:w="93"/><text x="28.9543%" y="719.50"></text></g><g><title>openaux (92 samples, 0.02%)</title><rect x="28.7045%" y="693" width="0.0178%" height="15" fill="rgb(244,87,35)" fg:x="148568" fg:w="92"/><text x="28.9545%" y="703.50"></text></g><g><title>_dl_map_object (92 samples, 0.02%)</title><rect x="28.7045%" y="677" width="0.0178%" height="15" fill="rgb(246,28,10)" fg:x="148568" fg:w="92"/><text x="28.9545%" y="687.50"></text></g><g><title>_dl_map_object_deps (99 samples, 0.02%)</title><rect x="28.7039%" y="725" width="0.0191%" height="15" fill="rgb(229,12,44)" fg:x="148565" fg:w="99"/><text x="28.9539%" y="735.50"></text></g><g><title>dl_new_hash (64 samples, 0.01%)</title><rect x="28.7364%" y="661" width="0.0124%" height="15" fill="rgb(210,145,37)" fg:x="148733" fg:w="64"/><text x="28.9864%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (151 samples, 0.03%)</title><rect x="28.7349%" y="677" width="0.0292%" height="15" fill="rgb(227,112,52)" fg:x="148725" fg:w="151"/><text x="28.9849%" y="687.50"></text></g><g><title>do_lookup_x (79 samples, 0.02%)</title><rect x="28.7488%" y="661" width="0.0153%" height="15" fill="rgb(238,155,34)" fg:x="148797" fg:w="79"/><text x="28.9988%" y="671.50"></text></g><g><title>elf_machine_rela (178 samples, 0.03%)</title><rect x="28.7302%" y="693" width="0.0344%" height="15" fill="rgb(239,226,36)" fg:x="148701" fg:w="178"/><text x="28.9802%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (206 samples, 0.04%)</title><rect x="28.7275%" y="709" width="0.0398%" height="15" fill="rgb(230,16,23)" fg:x="148687" fg:w="206"/><text x="28.9775%" y="719.50"></text></g><g><title>_dl_relocate_object (218 samples, 0.04%)</title><rect x="28.7262%" y="725" width="0.0421%" height="15" fill="rgb(236,171,36)" fg:x="148680" fg:w="218"/><text x="28.9762%" y="735.50"></text></g><g><title>[ld-2.31.so] (341 samples, 0.07%)</title><rect x="28.7037%" y="741" width="0.0659%" height="15" fill="rgb(221,22,14)" fg:x="148564" fg:w="341"/><text x="28.9537%" y="751.50"></text></g><g><title>_dl_start_final (342 samples, 0.07%)</title><rect x="28.7037%" y="773" width="0.0661%" height="15" fill="rgb(242,43,11)" fg:x="148564" fg:w="342"/><text x="28.9537%" y="783.50"></text></g><g><title>_dl_sysdep_start (342 samples, 0.07%)</title><rect x="28.7037%" y="757" width="0.0661%" height="15" fill="rgb(232,69,23)" fg:x="148564" fg:w="342"/><text x="28.9537%" y="767.50"></text></g><g><title>_dl_start (348 samples, 0.07%)</title><rect x="28.7037%" y="789" width="0.0672%" height="15" fill="rgb(216,180,54)" fg:x="148564" fg:w="348"/><text x="28.9537%" y="799.50"></text></g><g><title>_start (555 samples, 0.11%)</title><rect x="28.6639%" y="805" width="0.1072%" height="15" fill="rgb(216,5,24)" fg:x="148358" fg:w="555"/><text x="28.9139%" y="815.50"></text></g><g><title>asm_exc_page_fault (103 samples, 0.02%)</title><rect x="28.7712%" y="805" width="0.0199%" height="15" fill="rgb(225,89,9)" fg:x="148913" fg:w="103"/><text x="29.0212%" y="815.50"></text></g><g><title>__x64_sys_execve (59 samples, 0.01%)</title><rect x="28.7911%" y="773" width="0.0114%" height="15" fill="rgb(243,75,33)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="783.50"></text></g><g><title>do_execveat_common (59 samples, 0.01%)</title><rect x="28.7911%" y="757" width="0.0114%" height="15" fill="rgb(247,141,45)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="767.50"></text></g><g><title>bprm_execve (59 samples, 0.01%)</title><rect x="28.7911%" y="741" width="0.0114%" height="15" fill="rgb(232,177,36)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="751.50"></text></g><g><title>load_elf_binary (59 samples, 0.01%)</title><rect x="28.7911%" y="725" width="0.0114%" height="15" fill="rgb(219,125,36)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="735.50"></text></g><g><title>__x64_sys_exit (63 samples, 0.01%)</title><rect x="28.8025%" y="773" width="0.0122%" height="15" fill="rgb(227,94,9)" fg:x="149075" fg:w="63"/><text x="29.0525%" y="783.50"></text></g><g><title>do_exit (63 samples, 0.01%)</title><rect x="28.8025%" y="757" width="0.0122%" height="15" fill="rgb(240,34,52)" fg:x="149075" fg:w="63"/><text x="29.0525%" y="767.50"></text></g><g><title>__x64_sys_exit_group (55 samples, 0.01%)</title><rect x="28.8146%" y="773" width="0.0106%" height="15" fill="rgb(216,45,12)" fg:x="149138" fg:w="55"/><text x="29.0646%" y="783.50"></text></g><g><title>do_group_exit (55 samples, 0.01%)</title><rect x="28.8146%" y="757" width="0.0106%" height="15" fill="rgb(246,21,19)" fg:x="149138" fg:w="55"/><text x="29.0646%" y="767.50"></text></g><g><title>do_exit (55 samples, 0.01%)</title><rect x="28.8146%" y="741" width="0.0106%" height="15" fill="rgb(213,98,42)" fg:x="149138" fg:w="55"/><text x="29.0646%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.03%)</title><rect x="28.7911%" y="805" width="0.0344%" height="15" fill="rgb(250,136,47)" fg:x="149016" fg:w="178"/><text x="29.0411%" y="815.50"></text></g><g><title>do_syscall_64 (178 samples, 0.03%)</title><rect x="28.7911%" y="789" width="0.0344%" height="15" fill="rgb(251,124,27)" fg:x="149016" fg:w="178"/><text x="29.0411%" y="799.50"></text></g><g><title>linux-sandbox (2,463 samples, 0.48%)</title><rect x="28.3515%" y="821" width="0.4759%" height="15" fill="rgb(229,180,14)" fg:x="146741" fg:w="2463"/><text x="28.6015%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="28.8374%" y="645" width="0.0131%" height="15" fill="rgb(245,216,25)" fg:x="149256" fg:w="68"/><text x="29.0874%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="28.8378%" y="629" width="0.0128%" height="15" fill="rgb(251,43,5)" fg:x="149258" fg:w="66"/><text x="29.0878%" y="639.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="28.8378%" y="613" width="0.0128%" height="15" fill="rgb(250,128,24)" fg:x="149258" fg:w="66"/><text x="29.0878%" y="623.50"></text></g><g><title>arch_fork (91 samples, 0.02%)</title><rect x="28.8332%" y="709" width="0.0176%" height="15" fill="rgb(217,117,27)" fg:x="149234" fg:w="91"/><text x="29.0832%" y="719.50"></text></g><g><title>ret_from_fork (79 samples, 0.02%)</title><rect x="28.8355%" y="693" width="0.0153%" height="15" fill="rgb(245,147,4)" fg:x="149246" fg:w="79"/><text x="29.0855%" y="703.50"></text></g><g><title>schedule_tail (79 samples, 0.02%)</title><rect x="28.8355%" y="677" width="0.0153%" height="15" fill="rgb(242,201,35)" fg:x="149246" fg:w="79"/><text x="29.0855%" y="687.50"></text></g><g><title>finish_task_switch (73 samples, 0.01%)</title><rect x="28.8367%" y="661" width="0.0141%" height="15" fill="rgb(218,181,1)" fg:x="149252" fg:w="73"/><text x="29.0867%" y="671.50"></text></g><g><title>__libc_fork (96 samples, 0.02%)</title><rect x="28.8330%" y="725" width="0.0185%" height="15" fill="rgb(222,6,29)" fg:x="149233" fg:w="96"/><text x="29.0830%" y="735.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (109 samples, 0.02%)</title><rect x="28.8309%" y="757" width="0.0211%" height="15" fill="rgb(208,186,3)" fg:x="149222" fg:w="109"/><text x="29.0809%" y="767.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (109 samples, 0.02%)</title><rect x="28.8309%" y="741" width="0.0211%" height="15" fill="rgb(216,36,26)" fg:x="149222" fg:w="109"/><text x="29.0809%" y="751.50"></text></g><g><title>__libc_start_main (137 samples, 0.03%)</title><rect x="28.8303%" y="789" width="0.0265%" height="15" fill="rgb(248,201,23)" fg:x="149219" fg:w="137"/><text x="29.0803%" y="799.50"></text></g><g><title>main (134 samples, 0.03%)</title><rect x="28.8309%" y="773" width="0.0259%" height="15" fill="rgb(251,170,31)" fg:x="149222" fg:w="134"/><text x="29.0809%" y="783.50"></text></g><g><title>_dl_start_final (64 samples, 0.01%)</title><rect x="28.8568%" y="773" width="0.0124%" height="15" fill="rgb(207,110,25)" fg:x="149356" fg:w="64"/><text x="29.1068%" y="783.50"></text></g><g><title>_dl_sysdep_start (64 samples, 0.01%)</title><rect x="28.8568%" y="757" width="0.0124%" height="15" fill="rgb(250,54,15)" fg:x="149356" fg:w="64"/><text x="29.1068%" y="767.50"></text></g><g><title>[ld-2.31.so] (64 samples, 0.01%)</title><rect x="28.8568%" y="741" width="0.0124%" height="15" fill="rgb(227,68,33)" fg:x="149356" fg:w="64"/><text x="29.1068%" y="751.50"></text></g><g><title>_start (202 samples, 0.04%)</title><rect x="28.8303%" y="805" width="0.0390%" height="15" fill="rgb(238,34,41)" fg:x="149219" fg:w="202"/><text x="29.0803%" y="815.50"></text></g><g><title>_dl_start (65 samples, 0.01%)</title><rect x="28.8568%" y="789" width="0.0126%" height="15" fill="rgb(220,11,15)" fg:x="149356" fg:w="65"/><text x="29.1068%" y="799.50"></text></g><g><title>process-wrapper (233 samples, 0.05%)</title><rect x="28.8286%" y="821" width="0.0450%" height="15" fill="rgb(246,111,35)" fg:x="149210" fg:w="233"/><text x="29.0786%" y="831.50"></text></g><g><title>__GI___wait4 (76 samples, 0.01%)</title><rect x="28.8892%" y="773" width="0.0147%" height="15" fill="rgb(209,88,53)" fg:x="149524" fg:w="76"/><text x="29.1392%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.01%)</title><rect x="28.8894%" y="757" width="0.0145%" height="15" fill="rgb(231,185,47)" fg:x="149525" fg:w="75"/><text x="29.1394%" y="767.50"></text></g><g><title>do_syscall_64 (75 samples, 0.01%)</title><rect x="28.8894%" y="741" width="0.0145%" height="15" fill="rgb(233,154,1)" fg:x="149525" fg:w="75"/><text x="29.1394%" y="751.50"></text></g><g><title>kernel_wait4 (73 samples, 0.01%)</title><rect x="28.8898%" y="725" width="0.0141%" height="15" fill="rgb(225,15,46)" fg:x="149527" fg:w="73"/><text x="29.1398%" y="735.50"></text></g><g><title>do_wait (73 samples, 0.01%)</title><rect x="28.8898%" y="709" width="0.0141%" height="15" fill="rgb(211,135,41)" fg:x="149527" fg:w="73"/><text x="29.1398%" y="719.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (77 samples, 0.01%)</title><rect x="28.8892%" y="789" width="0.0149%" height="15" fill="rgb(208,54,0)" fg:x="149524" fg:w="77"/><text x="29.1392%" y="799.50"></text></g><g><title>[perf-965379.map] (173 samples, 0.03%)</title><rect x="28.8742%" y="805" width="0.0334%" height="15" fill="rgb(244,136,14)" fg:x="149446" fg:w="173"/><text x="29.1242%" y="815.50"></text></g><g><title>process_reaper (183 samples, 0.04%)</title><rect x="28.8736%" y="821" width="0.0354%" height="15" fill="rgb(241,56,14)" fg:x="149443" fg:w="183"/><text x="29.1236%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="28.9829%" y="565" width="0.0104%" height="15" fill="rgb(205,80,24)" fg:x="150009" fg:w="54"/><text x="29.2329%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="28.9829%" y="549" width="0.0104%" height="15" fill="rgb(220,57,4)" fg:x="150009" fg:w="54"/><text x="29.2329%" y="559.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="28.9829%" y="533" width="0.0104%" height="15" fill="rgb(226,193,50)" fg:x="150009" fg:w="54"/><text x="29.2329%" y="543.50"></text></g><g><title>finish_task_switch (57 samples, 0.01%)</title><rect x="28.9827%" y="581" width="0.0110%" height="15" fill="rgb(231,168,22)" fg:x="150008" fg:w="57"/><text x="29.2327%" y="591.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.02%)</title><rect x="28.9781%" y="629" width="0.0178%" height="15" fill="rgb(254,215,14)" fg:x="149984" fg:w="92"/><text x="29.2281%" y="639.50"></text></g><g><title>schedule (89 samples, 0.02%)</title><rect x="28.9787%" y="613" width="0.0172%" height="15" fill="rgb(211,115,16)" fg:x="149987" fg:w="89"/><text x="29.2287%" y="623.50"></text></g><g><title>__schedule (88 samples, 0.02%)</title><rect x="28.9789%" y="597" width="0.0170%" height="15" fill="rgb(236,210,16)" fg:x="149988" fg:w="88"/><text x="29.2289%" y="607.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="28.9768%" y="693" width="0.0197%" height="15" fill="rgb(221,94,12)" fg:x="149977" fg:w="102"/><text x="29.2268%" y="703.50"></text></g><g><title>__x64_sys_futex (102 samples, 0.02%)</title><rect x="28.9768%" y="677" width="0.0197%" height="15" fill="rgb(235,218,49)" fg:x="149977" fg:w="102"/><text x="29.2268%" y="687.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="28.9771%" y="661" width="0.0193%" height="15" fill="rgb(217,114,14)" fg:x="149979" fg:w="100"/><text x="29.2271%" y="671.50"></text></g><g><title>futex_wait (99 samples, 0.02%)</title><rect x="28.9773%" y="645" width="0.0191%" height="15" fill="rgb(216,145,22)" fg:x="149980" fg:w="99"/><text x="29.2273%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="28.9768%" y="709" width="0.0201%" height="15" fill="rgb(217,112,39)" fg:x="149977" fg:w="104"/><text x="29.2268%" y="719.50"></text></g><g><title>__pthread_cond_wait (108 samples, 0.02%)</title><rect x="28.9762%" y="757" width="0.0209%" height="15" fill="rgb(225,85,32)" fg:x="149974" fg:w="108"/><text x="29.2262%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (108 samples, 0.02%)</title><rect x="28.9762%" y="741" width="0.0209%" height="15" fill="rgb(245,209,47)" fg:x="149974" fg:w="108"/><text x="29.2262%" y="751.50"></text></g><g><title>futex_wait_cancelable (107 samples, 0.02%)</title><rect x="28.9764%" y="725" width="0.0207%" height="15" fill="rgb(218,220,15)" fg:x="149975" fg:w="107"/><text x="29.2264%" y="735.50"></text></g><g><title>Parker::park (121 samples, 0.02%)</title><rect x="28.9750%" y="773" width="0.0234%" height="15" fill="rgb(222,202,31)" fg:x="149968" fg:w="121"/><text x="29.2250%" y="783.50"></text></g><g><title>Unsafe_Park (126 samples, 0.02%)</title><rect x="28.9744%" y="789" width="0.0243%" height="15" fill="rgb(243,203,4)" fg:x="149965" fg:w="126"/><text x="29.2244%" y="799.50"></text></g><g><title>[perf-965379.map] (456 samples, 0.09%)</title><rect x="28.9111%" y="805" width="0.0881%" height="15" fill="rgb(237,92,17)" fg:x="149637" fg:w="456"/><text x="29.1611%" y="815.50"></text></g><g><title>profile-writer- (481 samples, 0.09%)</title><rect x="28.9089%" y="821" width="0.0929%" height="15" fill="rgb(231,119,7)" fg:x="149626" fg:w="481"/><text x="29.1589%" y="831.50"></text></g><g><title>[python3.9] (78 samples, 0.02%)</title><rect x="29.0220%" y="789" width="0.0151%" height="15" fill="rgb(237,82,41)" fg:x="150211" fg:w="78"/><text x="29.2720%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="29.0550%" y="741" width="0.0104%" height="15" fill="rgb(226,81,48)" fg:x="150382" fg:w="54"/><text x="29.3050%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (132 samples, 0.03%)</title><rect x="29.0401%" y="789" width="0.0255%" height="15" fill="rgb(234,70,51)" fg:x="150305" fg:w="132"/><text x="29.2901%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (74 samples, 0.01%)</title><rect x="29.0513%" y="773" width="0.0143%" height="15" fill="rgb(251,86,4)" fg:x="150363" fg:w="74"/><text x="29.3013%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (57 samples, 0.01%)</title><rect x="29.0546%" y="757" width="0.0110%" height="15" fill="rgb(244,144,28)" fg:x="150380" fg:w="57"/><text x="29.3046%" y="767.50"></text></g><g><title>[unknown] (368 samples, 0.07%)</title><rect x="29.0094%" y="805" width="0.0711%" height="15" fill="rgb(232,161,39)" fg:x="150146" fg:w="368"/><text x="29.2594%" y="815.50"></text></g><g><title>Py_RunMain (87 samples, 0.02%)</title><rect x="29.0807%" y="757" width="0.0168%" height="15" fill="rgb(247,34,51)" fg:x="150515" fg:w="87"/><text x="29.3307%" y="767.50"></text></g><g><title>Py_FinalizeEx (65 samples, 0.01%)</title><rect x="29.0849%" y="741" width="0.0126%" height="15" fill="rgb(225,132,2)" fg:x="150537" fg:w="65"/><text x="29.3349%" y="751.50"></text></g><g><title>Py_InitializeFromConfig (82 samples, 0.02%)</title><rect x="29.0977%" y="725" width="0.0158%" height="15" fill="rgb(209,159,44)" fg:x="150603" fg:w="82"/><text x="29.3477%" y="735.50"></text></g><g><title>[python3.9] (82 samples, 0.02%)</title><rect x="29.0977%" y="709" width="0.0158%" height="15" fill="rgb(251,214,1)" fg:x="150603" fg:w="82"/><text x="29.3477%" y="719.50"></text></g><g><title>[python3.9] (81 samples, 0.02%)</title><rect x="29.0979%" y="693" width="0.0156%" height="15" fill="rgb(247,84,47)" fg:x="150604" fg:w="81"/><text x="29.3479%" y="703.50"></text></g><g><title>__libc_start_main (171 samples, 0.03%)</title><rect x="29.0807%" y="789" width="0.0330%" height="15" fill="rgb(240,111,43)" fg:x="150515" fg:w="171"/><text x="29.3307%" y="799.50"></text></g><g><title>Py_BytesMain (171 samples, 0.03%)</title><rect x="29.0807%" y="773" width="0.0330%" height="15" fill="rgb(215,214,35)" fg:x="150515" fg:w="171"/><text x="29.3307%" y="783.50"></text></g><g><title>[python3.9] (84 samples, 0.02%)</title><rect x="29.0975%" y="757" width="0.0162%" height="15" fill="rgb(248,207,23)" fg:x="150602" fg:w="84"/><text x="29.3475%" y="767.50"></text></g><g><title>[python3.9] (84 samples, 0.02%)</title><rect x="29.0975%" y="741" width="0.0162%" height="15" fill="rgb(214,186,4)" fg:x="150602" fg:w="84"/><text x="29.3475%" y="751.50"></text></g><g><title>_start (178 samples, 0.03%)</title><rect x="29.0807%" y="805" width="0.0344%" height="15" fill="rgb(220,133,22)" fg:x="150515" fg:w="178"/><text x="29.3307%" y="815.50"></text></g><g><title>python3 (595 samples, 0.11%)</title><rect x="29.0023%" y="821" width="0.1150%" height="15" fill="rgb(239,134,19)" fg:x="150109" fg:w="595"/><text x="29.2523%" y="831.50"></text></g><g><title>[sed] (68 samples, 0.01%)</title><rect x="29.1354%" y="741" width="0.0131%" height="15" fill="rgb(250,140,9)" fg:x="150798" fg:w="68"/><text x="29.3854%" y="751.50"></text></g><g><title>[sed] (73 samples, 0.01%)</title><rect x="29.1352%" y="757" width="0.0141%" height="15" fill="rgb(225,59,14)" fg:x="150797" fg:w="73"/><text x="29.3852%" y="767.50"></text></g><g><title>[sed] (95 samples, 0.02%)</title><rect x="29.1352%" y="773" width="0.0184%" height="15" fill="rgb(214,152,51)" fg:x="150797" fg:w="95"/><text x="29.3852%" y="783.50"></text></g><g><title>__libc_start_main (115 samples, 0.02%)</title><rect x="29.1352%" y="789" width="0.0222%" height="15" fill="rgb(251,227,43)" fg:x="150797" fg:w="115"/><text x="29.3852%" y="799.50"></text></g><g><title>[sed] (131 samples, 0.03%)</title><rect x="29.1348%" y="805" width="0.0253%" height="15" fill="rgb(241,96,17)" fg:x="150795" fg:w="131"/><text x="29.3848%" y="815.50"></text></g><g><title>_IO_getdelim (52 samples, 0.01%)</title><rect x="29.1800%" y="709" width="0.0100%" height="15" fill="rgb(234,198,43)" fg:x="151029" fg:w="52"/><text x="29.4300%" y="719.50"></text></g><g><title>determine_info (199 samples, 0.04%)</title><rect x="29.2051%" y="629" width="0.0384%" height="15" fill="rgb(220,108,29)" fg:x="151159" fg:w="199"/><text x="29.4551%" y="639.50"></text></g><g><title>__GI__dl_addr (217 samples, 0.04%)</title><rect x="29.2018%" y="645" width="0.0419%" height="15" fill="rgb(226,163,33)" fg:x="151142" fg:w="217"/><text x="29.4518%" y="655.50"></text></g><g><title>__fopen_internal (257 samples, 0.05%)</title><rect x="29.1949%" y="709" width="0.0497%" height="15" fill="rgb(205,194,45)" fg:x="151106" fg:w="257"/><text x="29.4449%" y="719.50"></text></g><g><title>malloc_hook_ini (223 samples, 0.04%)</title><rect x="29.2015%" y="693" width="0.0431%" height="15" fill="rgb(206,143,44)" fg:x="151140" fg:w="223"/><text x="29.4515%" y="703.50"></text></g><g><title>ptmalloc_init (223 samples, 0.04%)</title><rect x="29.2015%" y="677" width="0.0431%" height="15" fill="rgb(236,136,36)" fg:x="151140" fg:w="223"/><text x="29.4515%" y="687.50"></text></g><g><title>ptmalloc_init (223 samples, 0.04%)</title><rect x="29.2015%" y="661" width="0.0431%" height="15" fill="rgb(249,172,42)" fg:x="151140" fg:w="223"/><text x="29.4515%" y="671.50"></text></g><g><title>selinuxfs_exists (342 samples, 0.07%)</title><rect x="29.1800%" y="725" width="0.0661%" height="15" fill="rgb(216,139,23)" fg:x="151029" fg:w="342"/><text x="29.4300%" y="735.50"></text></g><g><title>[libselinux.so.1] (412 samples, 0.08%)</title><rect x="29.1667%" y="741" width="0.0796%" height="15" fill="rgb(207,166,20)" fg:x="150960" fg:w="412"/><text x="29.4167%" y="751.50"></text></g><g><title>_dl_start_user (450 samples, 0.09%)</title><rect x="29.1665%" y="805" width="0.0869%" height="15" fill="rgb(210,209,22)" fg:x="150959" fg:w="450"/><text x="29.4165%" y="815.50"></text></g><g><title>_dl_init (450 samples, 0.09%)</title><rect x="29.1665%" y="789" width="0.0869%" height="15" fill="rgb(232,118,20)" fg:x="150959" fg:w="450"/><text x="29.4165%" y="799.50"></text></g><g><title>call_init (449 samples, 0.09%)</title><rect x="29.1667%" y="773" width="0.0868%" height="15" fill="rgb(238,113,42)" fg:x="150960" fg:w="449"/><text x="29.4167%" y="783.50"></text></g><g><title>call_init (449 samples, 0.09%)</title><rect x="29.1667%" y="757" width="0.0868%" height="15" fill="rgb(231,42,5)" fg:x="150960" fg:w="449"/><text x="29.4167%" y="767.50"></text></g><g><title>_dl_sysdep_read_whole_file (76 samples, 0.01%)</title><rect x="29.2971%" y="645" width="0.0147%" height="15" fill="rgb(243,166,24)" fg:x="151635" fg:w="76"/><text x="29.5471%" y="655.50"></text></g><g><title>_dl_load_cache_lookup (179 samples, 0.03%)</title><rect x="29.2838%" y="661" width="0.0346%" height="15" fill="rgb(237,226,12)" fg:x="151566" fg:w="179"/><text x="29.5338%" y="671.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="29.3284%" y="565" width="0.0102%" height="15" fill="rgb(229,133,24)" fg:x="151797" fg:w="53"/><text x="29.5784%" y="575.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="29.3276%" y="613" width="0.0112%" height="15" fill="rgb(238,33,43)" fg:x="151793" fg:w="58"/><text x="29.5776%" y="623.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="29.3276%" y="597" width="0.0112%" height="15" fill="rgb(227,59,38)" fg:x="151793" fg:w="58"/><text x="29.5776%" y="607.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="29.3276%" y="581" width="0.0112%" height="15" fill="rgb(230,97,0)" fg:x="151793" fg:w="58"/><text x="29.5776%" y="591.50"></text></g><g><title>[ld-2.31.so] (79 samples, 0.02%)</title><rect x="29.3253%" y="629" width="0.0153%" height="15" fill="rgb(250,173,50)" fg:x="151781" fg:w="79"/><text x="29.5753%" y="639.50"></text></g><g><title>__vma_adjust (90 samples, 0.02%)</title><rect x="29.3523%" y="469" width="0.0174%" height="15" fill="rgb(240,15,50)" fg:x="151921" fg:w="90"/><text x="29.6023%" y="479.50"></text></g><g><title>__split_vma (140 samples, 0.03%)</title><rect x="29.3520%" y="485" width="0.0270%" height="15" fill="rgb(221,93,22)" fg:x="151919" fg:w="140"/><text x="29.6020%" y="495.50"></text></g><g><title>__do_munmap (225 samples, 0.04%)</title><rect x="29.3498%" y="501" width="0.0435%" height="15" fill="rgb(245,180,53)" fg:x="151908" fg:w="225"/><text x="29.5998%" y="511.50"></text></g><g><title>perf_event_mmap (88 samples, 0.02%)</title><rect x="29.3935%" y="501" width="0.0170%" height="15" fill="rgb(231,88,51)" fg:x="152134" fg:w="88"/><text x="29.6435%" y="511.50"></text></g><g><title>mmap_region (418 samples, 0.08%)</title><rect x="29.3462%" y="517" width="0.0808%" height="15" fill="rgb(240,58,21)" fg:x="151889" fg:w="418"/><text x="29.5962%" y="527.50"></text></g><g><title>do_mmap (432 samples, 0.08%)</title><rect x="29.3440%" y="533" width="0.0835%" height="15" fill="rgb(237,21,10)" fg:x="151878" fg:w="432"/><text x="29.5940%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (448 samples, 0.09%)</title><rect x="29.3423%" y="565" width="0.0866%" height="15" fill="rgb(218,43,11)" fg:x="151869" fg:w="448"/><text x="29.5923%" y="575.50"></text></g><g><title>vm_mmap_pgoff (442 samples, 0.09%)</title><rect x="29.3435%" y="549" width="0.0854%" height="15" fill="rgb(218,221,29)" fg:x="151875" fg:w="442"/><text x="29.5935%" y="559.50"></text></g><g><title>do_syscall_64 (503 samples, 0.10%)</title><rect x="29.3421%" y="581" width="0.0972%" height="15" fill="rgb(214,118,42)" fg:x="151868" fg:w="503"/><text x="29.5921%" y="591.50"></text></g><g><title>vm_mmap_pgoff (54 samples, 0.01%)</title><rect x="29.4289%" y="565" width="0.0104%" height="15" fill="rgb(251,200,26)" fg:x="152317" fg:w="54"/><text x="29.6789%" y="575.50"></text></g><g><title>do_mmap (54 samples, 0.01%)</title><rect x="29.4289%" y="549" width="0.0104%" height="15" fill="rgb(237,101,39)" fg:x="152317" fg:w="54"/><text x="29.6789%" y="559.50"></text></g><g><title>mmap_region (54 samples, 0.01%)</title><rect x="29.4289%" y="533" width="0.0104%" height="15" fill="rgb(251,117,11)" fg:x="152317" fg:w="54"/><text x="29.6789%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (505 samples, 0.10%)</title><rect x="29.3419%" y="597" width="0.0976%" height="15" fill="rgb(216,223,23)" fg:x="151867" fg:w="505"/><text x="29.5919%" y="607.50"></text></g><g><title>_dl_map_segments (600 samples, 0.12%)</title><rect x="29.3243%" y="645" width="0.1159%" height="15" fill="rgb(251,54,12)" fg:x="151776" fg:w="600"/><text x="29.5743%" y="655.50"></text></g><g><title>__mmap64 (516 samples, 0.10%)</title><rect x="29.3406%" y="629" width="0.0997%" height="15" fill="rgb(254,176,54)" fg:x="151860" fg:w="516"/><text x="29.5906%" y="639.50"></text></g><g><title>__mmap64 (516 samples, 0.10%)</title><rect x="29.3406%" y="613" width="0.0997%" height="15" fill="rgb(210,32,8)" fg:x="151860" fg:w="516"/><text x="29.5906%" y="623.50"></text></g><g><title>_dl_new_object (55 samples, 0.01%)</title><rect x="29.4403%" y="645" width="0.0106%" height="15" fill="rgb(235,52,38)" fg:x="152376" fg:w="55"/><text x="29.6903%" y="655.50"></text></g><g><title>handle_mm_fault (76 samples, 0.01%)</title><rect x="29.4638%" y="581" width="0.0147%" height="15" fill="rgb(231,4,44)" fg:x="152498" fg:w="76"/><text x="29.7138%" y="591.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="29.4627%" y="613" width="0.0164%" height="15" fill="rgb(249,2,32)" fg:x="152492" fg:w="85"/><text x="29.7127%" y="623.50"></text></g><g><title>do_user_addr_fault (85 samples, 0.02%)</title><rect x="29.4627%" y="597" width="0.0164%" height="15" fill="rgb(224,65,26)" fg:x="152492" fg:w="85"/><text x="29.7127%" y="607.50"></text></g><g><title>asm_exc_page_fault (86 samples, 0.02%)</title><rect x="29.4627%" y="629" width="0.0166%" height="15" fill="rgb(250,73,40)" fg:x="152492" fg:w="86"/><text x="29.7127%" y="639.50"></text></g><g><title>_dl_map_object_from_fd (844 samples, 0.16%)</title><rect x="29.3183%" y="661" width="0.1631%" height="15" fill="rgb(253,177,16)" fg:x="151745" fg:w="844"/><text x="29.5683%" y="671.50"></text></g><g><title>elf_get_dynamic_info (117 samples, 0.02%)</title><rect x="29.4588%" y="645" width="0.0226%" height="15" fill="rgb(217,32,34)" fg:x="152472" fg:w="117"/><text x="29.7088%" y="655.50"></text></g><g><title>do_filp_open (79 samples, 0.02%)</title><rect x="29.4874%" y="565" width="0.0153%" height="15" fill="rgb(212,7,10)" fg:x="152620" fg:w="79"/><text x="29.7374%" y="575.50"></text></g><g><title>path_openat (78 samples, 0.02%)</title><rect x="29.4876%" y="549" width="0.0151%" height="15" fill="rgb(245,89,8)" fg:x="152621" fg:w="78"/><text x="29.7376%" y="559.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="29.4864%" y="613" width="0.0197%" height="15" fill="rgb(237,16,53)" fg:x="152615" fg:w="102"/><text x="29.7364%" y="623.50"></text></g><g><title>__x64_sys_openat (102 samples, 0.02%)</title><rect x="29.4864%" y="597" width="0.0197%" height="15" fill="rgb(250,204,30)" fg:x="152615" fg:w="102"/><text x="29.7364%" y="607.50"></text></g><g><title>do_sys_openat2 (101 samples, 0.02%)</title><rect x="29.4866%" y="581" width="0.0195%" height="15" fill="rgb(208,77,27)" fg:x="152616" fg:w="101"/><text x="29.7366%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.02%)</title><rect x="29.4864%" y="629" width="0.0199%" height="15" fill="rgb(250,204,28)" fg:x="152615" fg:w="103"/><text x="29.7364%" y="639.50"></text></g><g><title>__GI___open64_nocancel (104 samples, 0.02%)</title><rect x="29.4864%" y="645" width="0.0201%" height="15" fill="rgb(244,63,21)" fg:x="152615" fg:w="104"/><text x="29.7364%" y="655.50"></text></g><g><title>open_verify (151 samples, 0.03%)</title><rect x="29.4843%" y="661" width="0.0292%" height="15" fill="rgb(236,85,44)" fg:x="152604" fg:w="151"/><text x="29.7343%" y="671.50"></text></g><g><title>_dl_catch_exception (1,220 samples, 0.24%)</title><rect x="29.2814%" y="709" width="0.2357%" height="15" fill="rgb(215,98,4)" fg:x="151554" fg:w="1220"/><text x="29.5314%" y="719.50"></text></g><g><title>openaux (1,218 samples, 0.24%)</title><rect x="29.2818%" y="693" width="0.2353%" height="15" fill="rgb(235,38,11)" fg:x="151556" fg:w="1218"/><text x="29.5318%" y="703.50"></text></g><g><title>_dl_map_object (1,218 samples, 0.24%)</title><rect x="29.2818%" y="677" width="0.2353%" height="15" fill="rgb(254,186,25)" fg:x="151556" fg:w="1218"/><text x="29.5318%" y="687.50"></text></g><g><title>_dl_map_object_deps (1,260 samples, 0.24%)</title><rect x="29.2782%" y="725" width="0.2434%" height="15" fill="rgb(225,55,31)" fg:x="151537" fg:w="1260"/><text x="29.5282%" y="735.50"></text></g><g><title>_dl_receive_error (59 samples, 0.01%)</title><rect x="29.5226%" y="725" width="0.0114%" height="15" fill="rgb(211,15,21)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="735.50"></text></g><g><title>version_check_doit (59 samples, 0.01%)</title><rect x="29.5226%" y="709" width="0.0114%" height="15" fill="rgb(215,187,41)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="719.50"></text></g><g><title>_dl_check_all_versions (59 samples, 0.01%)</title><rect x="29.5226%" y="693" width="0.0114%" height="15" fill="rgb(248,69,32)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="703.50"></text></g><g><title>_dl_check_map_versions (59 samples, 0.01%)</title><rect x="29.5226%" y="677" width="0.0114%" height="15" fill="rgb(252,102,52)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="687.50"></text></g><g><title>__split_vma (102 samples, 0.02%)</title><rect x="29.5388%" y="597" width="0.0197%" height="15" fill="rgb(253,140,32)" fg:x="152886" fg:w="102"/><text x="29.7888%" y="607.50"></text></g><g><title>mprotect_fixup (171 samples, 0.03%)</title><rect x="29.5388%" y="613" width="0.0330%" height="15" fill="rgb(216,56,42)" fg:x="152886" fg:w="171"/><text x="29.7888%" y="623.50"></text></g><g><title>__x64_sys_mprotect (192 samples, 0.04%)</title><rect x="29.5359%" y="645" width="0.0371%" height="15" fill="rgb(216,184,14)" fg:x="152871" fg:w="192"/><text x="29.7859%" y="655.50"></text></g><g><title>do_mprotect_pkey (192 samples, 0.04%)</title><rect x="29.5359%" y="629" width="0.0371%" height="15" fill="rgb(237,187,27)" fg:x="152871" fg:w="192"/><text x="29.7859%" y="639.50"></text></g><g><title>do_syscall_64 (194 samples, 0.04%)</title><rect x="29.5357%" y="661" width="0.0375%" height="15" fill="rgb(219,65,3)" fg:x="152870" fg:w="194"/><text x="29.7857%" y="671.50"></text></g><g><title>_dl_protect_relro (200 samples, 0.04%)</title><rect x="29.5347%" y="709" width="0.0386%" height="15" fill="rgb(245,83,25)" fg:x="152865" fg:w="200"/><text x="29.7847%" y="719.50"></text></g><g><title>__mprotect (199 samples, 0.04%)</title><rect x="29.5349%" y="693" width="0.0384%" height="15" fill="rgb(214,205,45)" fg:x="152866" fg:w="199"/><text x="29.7849%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (195 samples, 0.04%)</title><rect x="29.5357%" y="677" width="0.0377%" height="15" fill="rgb(241,20,18)" fg:x="152870" fg:w="195"/><text x="29.7857%" y="687.50"></text></g><g><title>dl_new_hash (68 samples, 0.01%)</title><rect x="29.6082%" y="661" width="0.0131%" height="15" fill="rgb(232,163,23)" fg:x="153245" fg:w="68"/><text x="29.8582%" y="671.50"></text></g><g><title>check_match (114 samples, 0.02%)</title><rect x="29.6686%" y="645" width="0.0220%" height="15" fill="rgb(214,5,46)" fg:x="153558" fg:w="114"/><text x="29.9186%" y="655.50"></text></g><g><title>strcmp (82 samples, 0.02%)</title><rect x="29.6748%" y="629" width="0.0158%" height="15" fill="rgb(229,78,17)" fg:x="153590" fg:w="82"/><text x="29.9248%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (473 samples, 0.09%)</title><rect x="29.6006%" y="677" width="0.0914%" height="15" fill="rgb(248,89,10)" fg:x="153206" fg:w="473"/><text x="29.8506%" y="687.50"></text></g><g><title>do_lookup_x (366 samples, 0.07%)</title><rect x="29.6213%" y="661" width="0.0707%" height="15" fill="rgb(248,54,15)" fg:x="153313" fg:w="366"/><text x="29.8713%" y="671.50"></text></g><g><title>elf_machine_rela (549 samples, 0.11%)</title><rect x="29.5881%" y="693" width="0.1061%" height="15" fill="rgb(223,116,6)" fg:x="153141" fg:w="549"/><text x="29.8381%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (712 samples, 0.14%)</title><rect x="29.5734%" y="709" width="0.1376%" height="15" fill="rgb(205,125,38)" fg:x="153065" fg:w="712"/><text x="29.8234%" y="719.50"></text></g><g><title>elf_machine_rela_relative (87 samples, 0.02%)</title><rect x="29.6941%" y="693" width="0.0168%" height="15" fill="rgb(251,78,38)" fg:x="153690" fg:w="87"/><text x="29.9441%" y="703.50"></text></g><g><title>_dl_relocate_object (941 samples, 0.18%)</title><rect x="29.5340%" y="725" width="0.1818%" height="15" fill="rgb(253,78,28)" fg:x="152861" fg:w="941"/><text x="29.7840%" y="735.50"></text></g><g><title>[ld-2.31.so] (2,495 samples, 0.48%)</title><rect x="29.2613%" y="741" width="0.4821%" height="15" fill="rgb(209,120,3)" fg:x="151450" fg:w="2495"/><text x="29.5113%" y="751.50"></text></g><g><title>_dl_start_final (2,615 samples, 0.51%)</title><rect x="29.2606%" y="773" width="0.5052%" height="15" fill="rgb(238,229,9)" fg:x="151446" fg:w="2615"/><text x="29.5106%" y="783.50"></text></g><g><title>_dl_sysdep_start (2,615 samples, 0.51%)</title><rect x="29.2606%" y="757" width="0.5052%" height="15" fill="rgb(253,159,18)" fg:x="151446" fg:w="2615"/><text x="29.5106%" y="767.50"></text></g><g><title>_dl_start (2,646 samples, 0.51%)</title><rect x="29.2604%" y="789" width="0.5112%" height="15" fill="rgb(244,42,34)" fg:x="151445" fg:w="2646"/><text x="29.5104%" y="799.50"></text></g><g><title>_start (2,653 samples, 0.51%)</title><rect x="29.2602%" y="805" width="0.5126%" height="15" fill="rgb(224,8,7)" fg:x="151444" fg:w="2653"/><text x="29.5102%" y="815.50"></text></g><g><title>asm_exc_page_fault (171 samples, 0.03%)</title><rect x="29.7728%" y="805" width="0.0330%" height="15" fill="rgb(210,201,45)" fg:x="154097" fg:w="171"/><text x="30.0228%" y="815.50"></text></g><g><title>__x64_sys_execve (89 samples, 0.02%)</title><rect x="29.8068%" y="773" width="0.0172%" height="15" fill="rgb(252,185,21)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="783.50"></text></g><g><title>do_execveat_common (89 samples, 0.02%)</title><rect x="29.8068%" y="757" width="0.0172%" height="15" fill="rgb(223,131,1)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="767.50"></text></g><g><title>bprm_execve (89 samples, 0.02%)</title><rect x="29.8068%" y="741" width="0.0172%" height="15" fill="rgb(245,141,16)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="751.50"></text></g><g><title>load_elf_binary (89 samples, 0.02%)</title><rect x="29.8068%" y="725" width="0.0172%" height="15" fill="rgb(229,55,45)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="735.50"></text></g><g><title>unmap_page_range (56 samples, 0.01%)</title><rect x="29.8396%" y="677" width="0.0108%" height="15" fill="rgb(208,92,15)" fg:x="154443" fg:w="56"/><text x="30.0896%" y="687.50"></text></g><g><title>mmput (135 samples, 0.03%)</title><rect x="29.8245%" y="725" width="0.0261%" height="15" fill="rgb(234,185,47)" fg:x="154365" fg:w="135"/><text x="30.0745%" y="735.50"></text></g><g><title>exit_mmap (135 samples, 0.03%)</title><rect x="29.8245%" y="709" width="0.0261%" height="15" fill="rgb(253,104,50)" fg:x="154365" fg:w="135"/><text x="30.0745%" y="719.50"></text></g><g><title>unmap_vmas (57 samples, 0.01%)</title><rect x="29.8396%" y="693" width="0.0110%" height="15" fill="rgb(205,70,7)" fg:x="154443" fg:w="57"/><text x="30.0896%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (251 samples, 0.05%)</title><rect x="29.8060%" y="805" width="0.0485%" height="15" fill="rgb(240,178,43)" fg:x="154269" fg:w="251"/><text x="30.0560%" y="815.50"></text></g><g><title>do_syscall_64 (247 samples, 0.05%)</title><rect x="29.8068%" y="789" width="0.0477%" height="15" fill="rgb(214,112,2)" fg:x="154273" fg:w="247"/><text x="30.0568%" y="799.50"></text></g><g><title>__x64_sys_exit_group (158 samples, 0.03%)</title><rect x="29.8240%" y="773" width="0.0305%" height="15" fill="rgb(206,46,17)" fg:x="154362" fg:w="158"/><text x="30.0740%" y="783.50"></text></g><g><title>do_group_exit (158 samples, 0.03%)</title><rect x="29.8240%" y="757" width="0.0305%" height="15" fill="rgb(225,220,16)" fg:x="154362" fg:w="158"/><text x="30.0740%" y="767.50"></text></g><g><title>do_exit (158 samples, 0.03%)</title><rect x="29.8240%" y="741" width="0.0305%" height="15" fill="rgb(238,65,40)" fg:x="154362" fg:w="158"/><text x="30.0740%" y="751.50"></text></g><g><title>sed (3,824 samples, 0.74%)</title><rect x="29.1172%" y="821" width="0.7388%" height="15" fill="rgb(230,151,21)" fg:x="150704" fg:w="3824"/><text x="29.3672%" y="831.50"></text></g><g><title>JavaThread::is_Java_thread (90 samples, 0.02%)</title><rect x="29.9053%" y="789" width="0.0174%" height="15" fill="rgb(218,58,49)" fg:x="154783" fg:w="90"/><text x="30.1553%" y="799.50"></text></g><g><title>[anon] (885 samples, 0.17%)</title><rect x="29.8597%" y="805" width="0.1710%" height="15" fill="rgb(219,179,14)" fg:x="154547" fg:w="885"/><text x="30.1097%" y="815.50"></text></g><g><title>[libc-2.31.so] (83 samples, 0.02%)</title><rect x="30.2187%" y="789" width="0.0160%" height="15" fill="rgb(223,72,1)" fg:x="156405" fg:w="83"/><text x="30.4687%" y="799.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="30.2376%" y="757" width="0.0155%" height="15" fill="rgb(238,126,10)" fg:x="156503" fg:w="80"/><text x="30.4876%" y="767.50"></text></g><g><title>__x64_sys_close (75 samples, 0.01%)</title><rect x="30.2386%" y="741" width="0.0145%" height="15" fill="rgb(224,206,38)" fg:x="156508" fg:w="75"/><text x="30.4886%" y="751.50"></text></g><g><title>btrfs_release_file (80 samples, 0.02%)</title><rect x="30.2635%" y="693" width="0.0155%" height="15" fill="rgb(212,201,54)" fg:x="156637" fg:w="80"/><text x="30.5135%" y="703.50"></text></g><g><title>kfree (65 samples, 0.01%)</title><rect x="30.2664%" y="677" width="0.0126%" height="15" fill="rgb(218,154,48)" fg:x="156652" fg:w="65"/><text x="30.5164%" y="687.50"></text></g><g><title>__fput (175 samples, 0.03%)</title><rect x="30.2589%" y="709" width="0.0338%" height="15" fill="rgb(232,93,24)" fg:x="156613" fg:w="175"/><text x="30.5089%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (310 samples, 0.06%)</title><rect x="30.2376%" y="773" width="0.0599%" height="15" fill="rgb(245,30,21)" fg:x="156503" fg:w="310"/><text x="30.4876%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (230 samples, 0.04%)</title><rect x="30.2531%" y="757" width="0.0444%" height="15" fill="rgb(242,148,29)" fg:x="156583" fg:w="230"/><text x="30.5031%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (229 samples, 0.04%)</title><rect x="30.2533%" y="741" width="0.0442%" height="15" fill="rgb(244,153,54)" fg:x="156584" fg:w="229"/><text x="30.5033%" y="751.50"></text></g><g><title>task_work_run (210 samples, 0.04%)</title><rect x="30.2569%" y="725" width="0.0406%" height="15" fill="rgb(252,87,22)" fg:x="156603" fg:w="210"/><text x="30.5069%" y="735.50"></text></g><g><title>__GI___close_nocancel (328 samples, 0.06%)</title><rect x="30.2347%" y="789" width="0.0634%" height="15" fill="rgb(210,51,29)" fg:x="156488" fg:w="328"/><text x="30.4847%" y="799.50"></text></g><g><title>__GI___libc_free (193 samples, 0.04%)</title><rect x="30.2981%" y="789" width="0.0373%" height="15" fill="rgb(242,136,47)" fg:x="156816" fg:w="193"/><text x="30.5481%" y="799.50"></text></g><g><title>__d_lookup_rcu (55 samples, 0.01%)</title><rect x="30.3553%" y="629" width="0.0106%" height="15" fill="rgb(238,68,4)" fg:x="157112" fg:w="55"/><text x="30.6053%" y="639.50"></text></g><g><title>lookup_fast (58 samples, 0.01%)</title><rect x="30.3549%" y="645" width="0.0112%" height="15" fill="rgb(242,161,30)" fg:x="157110" fg:w="58"/><text x="30.6049%" y="655.50"></text></g><g><title>link_path_walk.part.0 (127 samples, 0.02%)</title><rect x="30.3441%" y="677" width="0.0245%" height="15" fill="rgb(218,58,44)" fg:x="157054" fg:w="127"/><text x="30.5941%" y="687.50"></text></g><g><title>walk_component (75 samples, 0.01%)</title><rect x="30.3541%" y="661" width="0.0145%" height="15" fill="rgb(252,125,32)" fg:x="157106" fg:w="75"/><text x="30.6041%" y="671.50"></text></g><g><title>filename_lookup (178 samples, 0.03%)</title><rect x="30.3418%" y="709" width="0.0344%" height="15" fill="rgb(219,178,0)" fg:x="157042" fg:w="178"/><text x="30.5918%" y="719.50"></text></g><g><title>path_lookupat (169 samples, 0.03%)</title><rect x="30.3435%" y="693" width="0.0327%" height="15" fill="rgb(213,152,7)" fg:x="157051" fg:w="169"/><text x="30.5935%" y="703.50"></text></g><g><title>__do_sys_newlstat (260 samples, 0.05%)</title><rect x="30.3367%" y="741" width="0.0502%" height="15" fill="rgb(249,109,34)" fg:x="157016" fg:w="260"/><text x="30.5867%" y="751.50"></text></g><g><title>vfs_statx (250 samples, 0.05%)</title><rect x="30.3387%" y="725" width="0.0483%" height="15" fill="rgb(232,96,21)" fg:x="157026" fg:w="250"/><text x="30.5887%" y="735.50"></text></g><g><title>do_syscall_64 (264 samples, 0.05%)</title><rect x="30.3364%" y="757" width="0.0510%" height="15" fill="rgb(228,27,39)" fg:x="157014" fg:w="264"/><text x="30.5864%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.05%)</title><rect x="30.3362%" y="773" width="0.0520%" height="15" fill="rgb(211,182,52)" fg:x="157013" fg:w="269"/><text x="30.5862%" y="783.50"></text></g><g><title>__GI___lxstat (274 samples, 0.05%)</title><rect x="30.3356%" y="789" width="0.0529%" height="15" fill="rgb(234,178,38)" fg:x="157010" fg:w="274"/><text x="30.5856%" y="799.50"></text></g><g><title>dput (73 samples, 0.01%)</title><rect x="30.3964%" y="725" width="0.0141%" height="15" fill="rgb(221,111,3)" fg:x="157325" fg:w="73"/><text x="30.6464%" y="735.50"></text></g><g><title>btrfs_free_path (57 samples, 0.01%)</title><rect x="30.4129%" y="661" width="0.0110%" height="15" fill="rgb(228,175,21)" fg:x="157410" fg:w="57"/><text x="30.6629%" y="671.50"></text></g><g><title>btrfs_release_path (56 samples, 0.01%)</title><rect x="30.4131%" y="645" width="0.0108%" height="15" fill="rgb(228,174,43)" fg:x="157411" fg:w="56"/><text x="30.6631%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (89 samples, 0.02%)</title><rect x="30.4563%" y="629" width="0.0172%" height="15" fill="rgb(211,191,0)" fg:x="157635" fg:w="89"/><text x="30.7063%" y="639.50"></text></g><g><title>__radix_tree_lookup (68 samples, 0.01%)</title><rect x="30.4855%" y="597" width="0.0131%" height="15" fill="rgb(253,117,3)" fg:x="157786" fg:w="68"/><text x="30.7355%" y="607.50"></text></g><g><title>find_extent_buffer (124 samples, 0.02%)</title><rect x="30.4803%" y="613" width="0.0240%" height="15" fill="rgb(241,127,19)" fg:x="157759" fg:w="124"/><text x="30.7303%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (171 samples, 0.03%)</title><rect x="30.4735%" y="629" width="0.0330%" height="15" fill="rgb(218,103,12)" fg:x="157724" fg:w="171"/><text x="30.7235%" y="639.50"></text></g><g><title>btrfs_search_slot (436 samples, 0.08%)</title><rect x="30.4247%" y="645" width="0.0842%" height="15" fill="rgb(236,214,43)" fg:x="157471" fg:w="436"/><text x="30.6747%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (455 samples, 0.09%)</title><rect x="30.4239%" y="661" width="0.0879%" height="15" fill="rgb(244,144,19)" fg:x="157467" fg:w="455"/><text x="30.6739%" y="671.50"></text></g><g><title>btrfs_lookup (554 samples, 0.11%)</title><rect x="30.4117%" y="693" width="0.1070%" height="15" fill="rgb(246,188,10)" fg:x="157404" fg:w="554"/><text x="30.6617%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (554 samples, 0.11%)</title><rect x="30.4117%" y="677" width="0.1070%" height="15" fill="rgb(212,193,33)" fg:x="157404" fg:w="554"/><text x="30.6617%" y="687.50"></text></g><g><title>kmem_cache_alloc (102 samples, 0.02%)</title><rect x="30.5203%" y="661" width="0.0197%" height="15" fill="rgb(241,51,29)" fg:x="157966" fg:w="102"/><text x="30.7703%" y="671.50"></text></g><g><title>__d_alloc (112 samples, 0.02%)</title><rect x="30.5191%" y="677" width="0.0216%" height="15" fill="rgb(211,58,19)" fg:x="157960" fg:w="112"/><text x="30.7691%" y="687.50"></text></g><g><title>d_alloc (124 samples, 0.02%)</title><rect x="30.5187%" y="693" width="0.0240%" height="15" fill="rgb(229,111,26)" fg:x="157958" fg:w="124"/><text x="30.7687%" y="703.50"></text></g><g><title>__lookup_hash (753 samples, 0.15%)</title><rect x="30.4117%" y="709" width="0.1455%" height="15" fill="rgb(213,115,40)" fg:x="157404" fg:w="753"/><text x="30.6617%" y="719.50"></text></g><g><title>lookup_dcache (56 samples, 0.01%)</title><rect x="30.5464%" y="693" width="0.0108%" height="15" fill="rgb(209,56,44)" fg:x="158101" fg:w="56"/><text x="30.7964%" y="703.50"></text></g><g><title>d_lookup (56 samples, 0.01%)</title><rect x="30.5464%" y="677" width="0.0108%" height="15" fill="rgb(230,108,32)" fg:x="158101" fg:w="56"/><text x="30.7964%" y="687.50"></text></g><g><title>inode_permission.part.0 (103 samples, 0.02%)</title><rect x="30.5815%" y="661" width="0.0199%" height="15" fill="rgb(216,165,31)" fg:x="158283" fg:w="103"/><text x="30.8315%" y="671.50"></text></g><g><title>lookup_fast (212 samples, 0.04%)</title><rect x="30.6084%" y="645" width="0.0410%" height="15" fill="rgb(218,122,21)" fg:x="158422" fg:w="212"/><text x="30.8584%" y="655.50"></text></g><g><title>__d_lookup_rcu (172 samples, 0.03%)</title><rect x="30.6161%" y="629" width="0.0332%" height="15" fill="rgb(223,224,47)" fg:x="158462" fg:w="172"/><text x="30.8661%" y="639.50"></text></g><g><title>link_path_walk.part.0 (494 samples, 0.10%)</title><rect x="30.5636%" y="677" width="0.0954%" height="15" fill="rgb(238,102,44)" fg:x="158190" fg:w="494"/><text x="30.8136%" y="687.50"></text></g><g><title>walk_component (293 samples, 0.06%)</title><rect x="30.6024%" y="661" width="0.0566%" height="15" fill="rgb(236,46,40)" fg:x="158391" fg:w="293"/><text x="30.8524%" y="671.50"></text></g><g><title>filename_parentat (541 samples, 0.10%)</title><rect x="30.5578%" y="709" width="0.1045%" height="15" fill="rgb(247,202,50)" fg:x="158160" fg:w="541"/><text x="30.8078%" y="719.50"></text></g><g><title>path_parentat (534 samples, 0.10%)</title><rect x="30.5591%" y="693" width="0.1032%" height="15" fill="rgb(209,99,20)" fg:x="158167" fg:w="534"/><text x="30.8091%" y="703.50"></text></g><g><title>filename_create (1,325 samples, 0.26%)</title><rect x="30.4105%" y="725" width="0.2560%" height="15" fill="rgb(252,27,34)" fg:x="157398" fg:w="1325"/><text x="30.6605%" y="735.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.01%)</title><rect x="30.6681%" y="709" width="0.0102%" height="15" fill="rgb(215,206,23)" fg:x="158731" fg:w="53"/><text x="30.9181%" y="719.50"></text></g><g><title>getname_flags.part.0 (122 samples, 0.02%)</title><rect x="30.6665%" y="725" width="0.0236%" height="15" fill="rgb(212,135,36)" fg:x="158723" fg:w="122"/><text x="30.9165%" y="735.50"></text></g><g><title>strncpy_from_user (61 samples, 0.01%)</title><rect x="30.6783%" y="709" width="0.0118%" height="15" fill="rgb(240,189,1)" fg:x="158784" fg:w="61"/><text x="30.9283%" y="719.50"></text></g><g><title>__btrfs_end_transaction (63 samples, 0.01%)</title><rect x="30.7011%" y="693" width="0.0122%" height="15" fill="rgb(242,56,20)" fg:x="158902" fg:w="63"/><text x="30.9511%" y="703.50"></text></g><g><title>btrfs_insert_delayed_dir_index (135 samples, 0.03%)</title><rect x="30.7189%" y="661" width="0.0261%" height="15" fill="rgb(247,132,33)" fg:x="158994" fg:w="135"/><text x="30.9689%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (89 samples, 0.02%)</title><rect x="30.7869%" y="613" width="0.0172%" height="15" fill="rgb(208,149,11)" fg:x="159346" fg:w="89"/><text x="31.0369%" y="623.50"></text></g><g><title>find_extent_buffer (77 samples, 0.01%)</title><rect x="30.8105%" y="597" width="0.0149%" height="15" fill="rgb(211,33,11)" fg:x="159468" fg:w="77"/><text x="31.0605%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (123 samples, 0.02%)</title><rect x="30.8041%" y="613" width="0.0238%" height="15" fill="rgb(221,29,38)" fg:x="159435" fg:w="123"/><text x="31.0541%" y="623.50"></text></g><g><title>split_leaf (74 samples, 0.01%)</title><rect x="30.8279%" y="613" width="0.0143%" height="15" fill="rgb(206,182,49)" fg:x="159558" fg:w="74"/><text x="31.0779%" y="623.50"></text></g><g><title>btrfs_search_slot (444 samples, 0.09%)</title><rect x="30.7610%" y="629" width="0.0858%" height="15" fill="rgb(216,140,1)" fg:x="159212" fg:w="444"/><text x="31.0110%" y="639.50"></text></g><g><title>btrfs_get_token_32 (155 samples, 0.03%)</title><rect x="30.8603%" y="613" width="0.0299%" height="15" fill="rgb(232,57,40)" fg:x="159726" fg:w="155"/><text x="31.1103%" y="623.50"></text></g><g><title>btrfs_set_token_32 (135 samples, 0.03%)</title><rect x="30.8965%" y="613" width="0.0261%" height="15" fill="rgb(224,186,18)" fg:x="159913" fg:w="135"/><text x="31.1465%" y="623.50"></text></g><g><title>memcpy_extent_buffer (53 samples, 0.01%)</title><rect x="30.9233%" y="613" width="0.0102%" height="15" fill="rgb(215,121,11)" fg:x="160052" fg:w="53"/><text x="31.1733%" y="623.50"></text></g><g><title>insert_with_overflow (966 samples, 0.19%)</title><rect x="30.7589%" y="661" width="0.1866%" height="15" fill="rgb(245,147,10)" fg:x="159201" fg:w="966"/><text x="31.0089%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (959 samples, 0.19%)</title><rect x="30.7603%" y="645" width="0.1853%" height="15" fill="rgb(238,153,13)" fg:x="159208" fg:w="959"/><text x="31.0103%" y="655.50"></text></g><g><title>setup_items_for_insert (511 samples, 0.10%)</title><rect x="30.8468%" y="629" width="0.0987%" height="15" fill="rgb(233,108,0)" fg:x="159656" fg:w="511"/><text x="31.0968%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (1,238 samples, 0.24%)</title><rect x="30.7168%" y="677" width="0.2392%" height="15" fill="rgb(212,157,17)" fg:x="158983" fg:w="1238"/><text x="30.9668%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (54 samples, 0.01%)</title><rect x="30.9573%" y="661" width="0.0104%" height="15" fill="rgb(225,213,38)" fg:x="160228" fg:w="54"/><text x="31.2073%" y="671.50"></text></g><g><title>btrfs_update_inode (71 samples, 0.01%)</title><rect x="30.9560%" y="677" width="0.0137%" height="15" fill="rgb(248,16,11)" fg:x="160221" fg:w="71"/><text x="31.2060%" y="687.50"></text></g><g><title>btrfs_add_link (1,329 samples, 0.26%)</title><rect x="30.7133%" y="693" width="0.2568%" height="15" fill="rgb(241,33,4)" fg:x="158965" fg:w="1329"/><text x="30.9633%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (60 samples, 0.01%)</title><rect x="31.0230%" y="645" width="0.0116%" height="15" fill="rgb(222,26,43)" fg:x="160568" fg:w="60"/><text x="31.2730%" y="655.50"></text></g><g><title>find_extent_buffer (94 samples, 0.02%)</title><rect x="31.0398%" y="629" width="0.0182%" height="15" fill="rgb(243,29,36)" fg:x="160655" fg:w="94"/><text x="31.2898%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (132 samples, 0.03%)</title><rect x="31.0346%" y="645" width="0.0255%" height="15" fill="rgb(241,9,27)" fg:x="160628" fg:w="132"/><text x="31.2846%" y="655.50"></text></g><g><title>__push_leaf_left (75 samples, 0.01%)</title><rect x="31.0760%" y="613" width="0.0145%" height="15" fill="rgb(205,117,26)" fg:x="160842" fg:w="75"/><text x="31.3260%" y="623.50"></text></g><g><title>split_leaf (167 samples, 0.03%)</title><rect x="31.0601%" y="645" width="0.0323%" height="15" fill="rgb(209,80,39)" fg:x="160760" fg:w="167"/><text x="31.3101%" y="655.50"></text></g><g><title>push_leaf_left (88 samples, 0.02%)</title><rect x="31.0754%" y="629" width="0.0170%" height="15" fill="rgb(239,155,6)" fg:x="160839" fg:w="88"/><text x="31.3254%" y="639.50"></text></g><g><title>btrfs_search_slot (521 samples, 0.10%)</title><rect x="31.0014%" y="661" width="0.1007%" height="15" fill="rgb(212,104,12)" fg:x="160456" fg:w="521"/><text x="31.2514%" y="671.50"></text></g><g><title>btrfs_get_token_32 (71 samples, 0.01%)</title><rect x="31.1117%" y="645" width="0.0137%" height="15" fill="rgb(234,204,3)" fg:x="161027" fg:w="71"/><text x="31.3617%" y="655.50"></text></g><g><title>btrfs_set_token_32 (76 samples, 0.01%)</title><rect x="31.1347%" y="645" width="0.0147%" height="15" fill="rgb(251,218,7)" fg:x="161146" fg:w="76"/><text x="31.3847%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (810 samples, 0.16%)</title><rect x="31.0012%" y="677" width="0.1565%" height="15" fill="rgb(221,81,32)" fg:x="160455" fg:w="810"/><text x="31.2512%" y="687.50"></text></g><g><title>setup_items_for_insert (288 samples, 0.06%)</title><rect x="31.1020%" y="661" width="0.0556%" height="15" fill="rgb(214,152,26)" fg:x="160977" fg:w="288"/><text x="31.3520%" y="671.50"></text></g><g><title>fill_inode_item (97 samples, 0.02%)</title><rect x="31.1681%" y="677" width="0.0187%" height="15" fill="rgb(223,22,3)" fg:x="161319" fg:w="97"/><text x="31.4181%" y="687.50"></text></g><g><title>inode_tree_add (117 samples, 0.02%)</title><rect x="31.1886%" y="677" width="0.0226%" height="15" fill="rgb(207,174,7)" fg:x="161425" fg:w="117"/><text x="31.4386%" y="687.50"></text></g><g><title>btrfs_alloc_inode (100 samples, 0.02%)</title><rect x="31.2350%" y="645" width="0.0193%" height="15" fill="rgb(224,19,52)" fg:x="161665" fg:w="100"/><text x="31.4850%" y="655.50"></text></g><g><title>kmem_cache_alloc (78 samples, 0.02%)</title><rect x="31.2392%" y="629" width="0.0151%" height="15" fill="rgb(228,24,14)" fg:x="161687" fg:w="78"/><text x="31.4892%" y="639.50"></text></g><g><title>alloc_inode (154 samples, 0.03%)</title><rect x="31.2332%" y="661" width="0.0298%" height="15" fill="rgb(230,153,43)" fg:x="161656" fg:w="154"/><text x="31.4832%" y="671.50"></text></g><g><title>new_inode (190 samples, 0.04%)</title><rect x="31.2278%" y="677" width="0.0367%" height="15" fill="rgb(231,106,12)" fg:x="161628" fg:w="190"/><text x="31.4778%" y="687.50"></text></g><g><title>btrfs_new_inode (1,448 samples, 0.28%)</title><rect x="30.9857%" y="693" width="0.2798%" height="15" fill="rgb(215,92,2)" fg:x="160375" fg:w="1448"/><text x="31.2357%" y="703.50"></text></g><g><title>btrfs_get_or_create_delayed_node (113 samples, 0.02%)</title><rect x="31.2790%" y="661" width="0.0218%" height="15" fill="rgb(249,143,25)" fg:x="161893" fg:w="113"/><text x="31.5290%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (189 samples, 0.04%)</title><rect x="31.2682%" y="677" width="0.0365%" height="15" fill="rgb(252,7,35)" fg:x="161837" fg:w="189"/><text x="31.5182%" y="687.50"></text></g><g><title>btrfs_update_inode (218 samples, 0.04%)</title><rect x="31.2655%" y="693" width="0.0421%" height="15" fill="rgb(216,69,40)" fg:x="161823" fg:w="218"/><text x="31.5155%" y="703.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (56 samples, 0.01%)</title><rect x="31.3236%" y="629" width="0.0108%" height="15" fill="rgb(240,36,33)" fg:x="162124" fg:w="56"/><text x="31.5736%" y="639.50"></text></g><g><title>btrfs_block_rsv_add (99 samples, 0.02%)</title><rect x="31.3206%" y="677" width="0.0191%" height="15" fill="rgb(231,128,14)" fg:x="162108" fg:w="99"/><text x="31.5706%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (98 samples, 0.02%)</title><rect x="31.3208%" y="661" width="0.0189%" height="15" fill="rgb(245,143,14)" fg:x="162109" fg:w="98"/><text x="31.5708%" y="671.50"></text></g><g><title>__reserve_bytes (97 samples, 0.02%)</title><rect x="31.3209%" y="645" width="0.0187%" height="15" fill="rgb(222,130,28)" fg:x="162110" fg:w="97"/><text x="31.5709%" y="655.50"></text></g><g><title>btrfs_mkdir (3,369 samples, 0.65%)</title><rect x="30.6996%" y="709" width="0.6509%" height="15" fill="rgb(212,10,48)" fg:x="158894" fg:w="3369"/><text x="30.9496%" y="719.50"></text></g><g><title>start_transaction (181 samples, 0.03%)</title><rect x="31.3155%" y="693" width="0.0350%" height="15" fill="rgb(254,118,45)" fg:x="162082" fg:w="181"/><text x="31.5655%" y="703.50"></text></g><g><title>do_mkdirat (4,961 samples, 0.96%)</title><rect x="30.3953%" y="741" width="0.9585%" height="15" fill="rgb(228,6,45)" fg:x="157319" fg:w="4961"/><text x="30.6453%" y="751.50"></text></g><g><title>vfs_mkdir (3,395 samples, 0.66%)</title><rect x="30.6978%" y="725" width="0.6559%" height="15" fill="rgb(241,18,35)" fg:x="158885" fg:w="3395"/><text x="30.9478%" y="735.50"></text></g><g><title>do_syscall_64 (4,965 samples, 0.96%)</title><rect x="30.3949%" y="757" width="0.9593%" height="15" fill="rgb(227,214,53)" fg:x="157317" fg:w="4965"/><text x="30.6449%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,967 samples, 0.96%)</title><rect x="30.3947%" y="773" width="0.9597%" height="15" fill="rgb(224,107,51)" fg:x="157316" fg:w="4967"/><text x="30.6447%" y="783.50"></text></g><g><title>__GI___mkdir (5,009 samples, 0.97%)</title><rect x="30.3885%" y="789" width="0.9678%" height="15" fill="rgb(248,60,28)" fg:x="157284" fg:w="5009"/><text x="30.6385%" y="799.50"></text></g><g><title>btrfs_filldir (385 samples, 0.07%)</title><rect x="31.4543%" y="677" width="0.0744%" height="15" fill="rgb(249,101,23)" fg:x="162800" fg:w="385"/><text x="31.7043%" y="687.50"></text></g><g><title>filldir64 (342 samples, 0.07%)</title><rect x="31.4626%" y="661" width="0.0661%" height="15" fill="rgb(228,51,19)" fg:x="162843" fg:w="342"/><text x="31.7126%" y="671.50"></text></g><g><title>verify_dirent_name (97 samples, 0.02%)</title><rect x="31.5099%" y="645" width="0.0187%" height="15" fill="rgb(213,20,6)" fg:x="163088" fg:w="97"/><text x="31.7599%" y="655.50"></text></g><g><title>memchr (68 samples, 0.01%)</title><rect x="31.5155%" y="629" width="0.0131%" height="15" fill="rgb(212,124,10)" fg:x="163117" fg:w="68"/><text x="31.7655%" y="639.50"></text></g><g><title>btrfs_get_16 (55 samples, 0.01%)</title><rect x="31.5290%" y="677" width="0.0106%" height="15" fill="rgb(248,3,40)" fg:x="163187" fg:w="55"/><text x="31.7790%" y="687.50"></text></g><g><title>btrfs_next_old_leaf (60 samples, 0.01%)</title><rect x="31.5520%" y="677" width="0.0116%" height="15" fill="rgb(223,178,23)" fg:x="163306" fg:w="60"/><text x="31.8020%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (106 samples, 0.02%)</title><rect x="31.5638%" y="677" width="0.0205%" height="15" fill="rgb(240,132,45)" fg:x="163367" fg:w="106"/><text x="31.8138%" y="687.50"></text></g><g><title>btrfs_release_path (87 samples, 0.02%)</title><rect x="31.5864%" y="677" width="0.0168%" height="15" fill="rgb(245,164,36)" fg:x="163484" fg:w="87"/><text x="31.8364%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (189 samples, 0.04%)</title><rect x="31.6378%" y="661" width="0.0365%" height="15" fill="rgb(231,188,53)" fg:x="163750" fg:w="189"/><text x="31.8878%" y="671.50"></text></g><g><title>__radix_tree_lookup (109 samples, 0.02%)</title><rect x="31.6960%" y="629" width="0.0211%" height="15" fill="rgb(237,198,39)" fg:x="164051" fg:w="109"/><text x="31.9460%" y="639.50"></text></g><g><title>find_extent_buffer (203 samples, 0.04%)</title><rect x="31.6892%" y="645" width="0.0392%" height="15" fill="rgb(223,120,35)" fg:x="164016" fg:w="203"/><text x="31.9392%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (59 samples, 0.01%)</title><rect x="31.7170%" y="629" width="0.0114%" height="15" fill="rgb(253,107,49)" fg:x="164160" fg:w="59"/><text x="31.9670%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (310 samples, 0.06%)</title><rect x="31.6743%" y="661" width="0.0599%" height="15" fill="rgb(216,44,31)" fg:x="163939" fg:w="310"/><text x="31.9243%" y="671.50"></text></g><g><title>btrfs_search_slot (704 samples, 0.14%)</title><rect x="31.6032%" y="677" width="0.1360%" height="15" fill="rgb(253,87,21)" fg:x="163571" fg:w="704"/><text x="31.8532%" y="687.50"></text></g><g><title>filldir64 (62 samples, 0.01%)</title><rect x="31.7448%" y="677" width="0.0120%" height="15" fill="rgb(226,18,2)" fg:x="164304" fg:w="62"/><text x="31.9948%" y="687.50"></text></g><g><title>btrfs_real_readdir (2,191 samples, 0.42%)</title><rect x="31.4158%" y="693" width="0.4233%" height="15" fill="rgb(216,8,46)" fg:x="162601" fg:w="2191"/><text x="31.6658%" y="703.50"></text></g><g><title>read_extent_buffer (330 samples, 0.06%)</title><rect x="31.7754%" y="677" width="0.0638%" height="15" fill="rgb(226,140,39)" fg:x="164462" fg:w="330"/><text x="32.0254%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (69 samples, 0.01%)</title><rect x="31.8789%" y="629" width="0.0133%" height="15" fill="rgb(221,194,54)" fg:x="164998" fg:w="69"/><text x="32.1289%" y="639.50"></text></g><g><title>btrfs_reserve_metadata_bytes (61 samples, 0.01%)</title><rect x="31.8805%" y="613" width="0.0118%" height="15" fill="rgb(213,92,11)" fg:x="165006" fg:w="61"/><text x="32.1305%" y="623.50"></text></g><g><title>__reserve_bytes (61 samples, 0.01%)</title><rect x="31.8805%" y="597" width="0.0118%" height="15" fill="rgb(229,162,46)" fg:x="165006" fg:w="61"/><text x="32.1305%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (136 samples, 0.03%)</title><rect x="31.8700%" y="645" width="0.0263%" height="15" fill="rgb(214,111,36)" fg:x="164952" fg:w="136"/><text x="32.1200%" y="655.50"></text></g><g><title>btrfs_update_inode (155 samples, 0.03%)</title><rect x="31.8691%" y="661" width="0.0299%" height="15" fill="rgb(207,6,21)" fg:x="164947" fg:w="155"/><text x="32.1191%" y="671.50"></text></g><g><title>btrfs_dirty_inode (236 samples, 0.05%)</title><rect x="31.8644%" y="677" width="0.0456%" height="15" fill="rgb(213,127,38)" fg:x="164923" fg:w="236"/><text x="32.1144%" y="687.50"></text></g><g><title>start_transaction (57 samples, 0.01%)</title><rect x="31.8990%" y="661" width="0.0110%" height="15" fill="rgb(238,118,32)" fg:x="165102" fg:w="57"/><text x="32.1490%" y="671.50"></text></g><g><title>touch_atime (294 samples, 0.06%)</title><rect x="31.8544%" y="693" width="0.0568%" height="15" fill="rgb(240,139,39)" fg:x="164871" fg:w="294"/><text x="32.1044%" y="703.50"></text></g><g><title>iterate_dir (2,598 samples, 0.50%)</title><rect x="31.4116%" y="709" width="0.5020%" height="15" fill="rgb(235,10,37)" fg:x="162579" fg:w="2598"/><text x="31.6616%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (2,661 samples, 0.51%)</title><rect x="31.4000%" y="725" width="0.5141%" height="15" fill="rgb(249,171,38)" fg:x="162519" fg:w="2661"/><text x="31.6500%" y="735.50"></text></g><g><title>do_syscall_64 (2,672 samples, 0.52%)</title><rect x="31.3984%" y="741" width="0.5163%" height="15" fill="rgb(242,144,32)" fg:x="162511" fg:w="2672"/><text x="31.6484%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,682 samples, 0.52%)</title><rect x="31.3973%" y="757" width="0.5182%" height="15" fill="rgb(217,117,21)" fg:x="162505" fg:w="2682"/><text x="31.6473%" y="767.50"></text></g><g><title>__GI___getdents64 (2,725 samples, 0.53%)</title><rect x="31.3903%" y="773" width="0.5265%" height="15" fill="rgb(249,87,1)" fg:x="162469" fg:w="2725"/><text x="31.6403%" y="783.50"></text></g><g><title>__GI___readdir64 (2,902 samples, 0.56%)</title><rect x="31.3563%" y="789" width="0.5607%" height="15" fill="rgb(248,196,48)" fg:x="162293" fg:w="2902"/><text x="31.6063%" y="799.50"></text></g><g><title>link_path_walk.part.0 (66 samples, 0.01%)</title><rect x="31.9218%" y="677" width="0.0128%" height="15" fill="rgb(251,206,33)" fg:x="165220" fg:w="66"/><text x="32.1718%" y="687.50"></text></g><g><title>filename_lookup (80 samples, 0.02%)</title><rect x="31.9205%" y="709" width="0.0155%" height="15" fill="rgb(232,141,28)" fg:x="165213" fg:w="80"/><text x="32.1705%" y="719.50"></text></g><g><title>path_lookupat (78 samples, 0.02%)</title><rect x="31.9209%" y="693" width="0.0151%" height="15" fill="rgb(209,167,14)" fg:x="165215" fg:w="78"/><text x="32.1709%" y="703.50"></text></g><g><title>__do_sys_newstat (136 samples, 0.03%)</title><rect x="31.9174%" y="741" width="0.0263%" height="15" fill="rgb(225,11,50)" fg:x="165197" fg:w="136"/><text x="32.1674%" y="751.50"></text></g><g><title>vfs_statx (130 samples, 0.03%)</title><rect x="31.9185%" y="725" width="0.0251%" height="15" fill="rgb(209,50,20)" fg:x="165203" fg:w="130"/><text x="32.1685%" y="735.50"></text></g><g><title>do_syscall_64 (137 samples, 0.03%)</title><rect x="31.9174%" y="757" width="0.0265%" height="15" fill="rgb(212,17,46)" fg:x="165197" fg:w="137"/><text x="32.1674%" y="767.50"></text></g><g><title>__GI___xstat (144 samples, 0.03%)</title><rect x="31.9170%" y="789" width="0.0278%" height="15" fill="rgb(216,101,39)" fg:x="165195" fg:w="144"/><text x="32.1670%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.03%)</title><rect x="31.9174%" y="773" width="0.0274%" height="15" fill="rgb(212,228,48)" fg:x="165197" fg:w="142"/><text x="32.1674%" y="783.50"></text></g><g><title>__GI_remove (84 samples, 0.02%)</title><rect x="31.9448%" y="789" width="0.0162%" height="15" fill="rgb(250,6,50)" fg:x="165339" fg:w="84"/><text x="32.1948%" y="799.50"></text></g><g><title>__unlink (56 samples, 0.01%)</title><rect x="31.9502%" y="773" width="0.0108%" height="15" fill="rgb(250,160,48)" fg:x="165367" fg:w="56"/><text x="32.2002%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="31.9504%" y="757" width="0.0106%" height="15" fill="rgb(244,216,33)" fg:x="165368" fg:w="55"/><text x="32.2004%" y="767.50"></text></g><g><title>do_syscall_64 (55 samples, 0.01%)</title><rect x="31.9504%" y="741" width="0.0106%" height="15" fill="rgb(207,157,5)" fg:x="165368" fg:w="55"/><text x="32.2004%" y="751.50"></text></g><g><title>do_unlinkat (54 samples, 0.01%)</title><rect x="31.9506%" y="725" width="0.0104%" height="15" fill="rgb(228,199,8)" fg:x="165369" fg:w="54"/><text x="32.2006%" y="735.50"></text></g><g><title>crc32c_pcl_intel_update (144 samples, 0.03%)</title><rect x="31.9927%" y="773" width="0.0278%" height="15" fill="rgb(227,80,20)" fg:x="165587" fg:w="144"/><text x="32.2427%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (148 samples, 0.03%)</title><rect x="32.0205%" y="773" width="0.0286%" height="15" fill="rgb(222,9,33)" fg:x="165731" fg:w="148"/><text x="32.2705%" y="783.50"></text></g><g><title>getname_flags (64 samples, 0.01%)</title><rect x="32.0658%" y="725" width="0.0124%" height="15" fill="rgb(239,44,28)" fg:x="165965" fg:w="64"/><text x="32.3158%" y="735.50"></text></g><g><title>memset_erms (622 samples, 0.12%)</title><rect x="32.1133%" y="693" width="0.1202%" height="15" fill="rgb(249,187,43)" fg:x="166211" fg:w="622"/><text x="32.3633%" y="703.50"></text></g><g><title>kmem_cache_alloc (799 samples, 0.15%)</title><rect x="32.0876%" y="709" width="0.1544%" height="15" fill="rgb(216,141,28)" fg:x="166078" fg:w="799"/><text x="32.3376%" y="719.50"></text></g><g><title>__check_heap_object (68 samples, 0.01%)</title><rect x="32.2980%" y="677" width="0.0131%" height="15" fill="rgb(230,154,53)" fg:x="167167" fg:w="68"/><text x="32.5480%" y="687.50"></text></g><g><title>__virt_addr_valid (215 samples, 0.04%)</title><rect x="32.3111%" y="677" width="0.0415%" height="15" fill="rgb(227,82,4)" fg:x="167235" fg:w="215"/><text x="32.5611%" y="687.50"></text></g><g><title>__check_object_size (343 samples, 0.07%)</title><rect x="32.2878%" y="693" width="0.0663%" height="15" fill="rgb(220,107,16)" fg:x="167114" fg:w="343"/><text x="32.5378%" y="703.50"></text></g><g><title>__x64_sys_unlinkat (1,513 samples, 0.29%)</title><rect x="32.0621%" y="741" width="0.2923%" height="15" fill="rgb(207,187,2)" fg:x="165946" fg:w="1513"/><text x="32.3121%" y="751.50"></text></g><g><title>getname_flags.part.0 (1,430 samples, 0.28%)</title><rect x="32.0781%" y="725" width="0.2763%" height="15" fill="rgb(210,162,52)" fg:x="166029" fg:w="1430"/><text x="32.3281%" y="735.50"></text></g><g><title>strncpy_from_user (582 samples, 0.11%)</title><rect x="32.2420%" y="709" width="0.1124%" height="15" fill="rgb(217,216,49)" fg:x="166877" fg:w="582"/><text x="32.4920%" y="719.50"></text></g><g><title>dput (54 samples, 0.01%)</title><rect x="32.3623%" y="725" width="0.0104%" height="15" fill="rgb(218,146,49)" fg:x="167500" fg:w="54"/><text x="32.6123%" y="735.50"></text></g><g><title>filename_parentat (83 samples, 0.02%)</title><rect x="32.3728%" y="725" width="0.0160%" height="15" fill="rgb(216,55,40)" fg:x="167554" fg:w="83"/><text x="32.6228%" y="735.50"></text></g><g><title>path_parentat (81 samples, 0.02%)</title><rect x="32.3732%" y="709" width="0.0156%" height="15" fill="rgb(208,196,21)" fg:x="167556" fg:w="81"/><text x="32.6232%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (78 samples, 0.02%)</title><rect x="32.4352%" y="661" width="0.0151%" height="15" fill="rgb(242,117,42)" fg:x="167877" fg:w="78"/><text x="32.6852%" y="671.50"></text></g><g><title>btrfs_search_slot (77 samples, 0.01%)</title><rect x="32.4354%" y="645" width="0.0149%" height="15" fill="rgb(210,11,23)" fg:x="167878" fg:w="77"/><text x="32.6854%" y="655.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.01%)</title><rect x="32.4514%" y="645" width="0.0135%" height="15" fill="rgb(217,110,2)" fg:x="167961" fg:w="70"/><text x="32.7014%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (78 samples, 0.02%)</title><rect x="32.4502%" y="661" width="0.0151%" height="15" fill="rgb(229,77,54)" fg:x="167955" fg:w="78"/><text x="32.7002%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (253 samples, 0.05%)</title><rect x="32.4290%" y="677" width="0.0489%" height="15" fill="rgb(218,53,16)" fg:x="167845" fg:w="253"/><text x="32.6790%" y="687.50"></text></g><g><title>btrfs_search_slot (138 samples, 0.03%)</title><rect x="32.4856%" y="645" width="0.0267%" height="15" fill="rgb(215,38,13)" fg:x="168138" fg:w="138"/><text x="32.7356%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (234 samples, 0.05%)</title><rect x="32.4785%" y="661" width="0.0452%" height="15" fill="rgb(235,42,18)" fg:x="168101" fg:w="234"/><text x="32.7285%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (257 samples, 0.05%)</title><rect x="32.4779%" y="677" width="0.0497%" height="15" fill="rgb(219,66,54)" fg:x="168098" fg:w="257"/><text x="32.7279%" y="687.50"></text></g><g><title>btrfs_get_token_32 (215 samples, 0.04%)</title><rect x="32.5494%" y="661" width="0.0415%" height="15" fill="rgb(222,205,4)" fg:x="168468" fg:w="215"/><text x="32.7994%" y="671.50"></text></g><g><title>btrfs_set_token_32 (167 samples, 0.03%)</title><rect x="32.5930%" y="661" width="0.0323%" height="15" fill="rgb(227,213,46)" fg:x="168694" fg:w="167"/><text x="32.8430%" y="671.50"></text></g><g><title>memmove_extent_buffer (114 samples, 0.02%)</title><rect x="32.6361%" y="661" width="0.0220%" height="15" fill="rgb(250,145,42)" fg:x="168917" fg:w="114"/><text x="32.8861%" y="671.50"></text></g><g><title>memmove (98 samples, 0.02%)</title><rect x="32.6392%" y="645" width="0.0189%" height="15" fill="rgb(219,15,2)" fg:x="168933" fg:w="98"/><text x="32.8892%" y="655.50"></text></g><g><title>__push_leaf_right (63 samples, 0.01%)</title><rect x="32.6614%" y="645" width="0.0122%" height="15" fill="rgb(231,181,52)" fg:x="169048" fg:w="63"/><text x="32.9114%" y="655.50"></text></g><g><title>push_leaf_right (67 samples, 0.01%)</title><rect x="32.6614%" y="661" width="0.0129%" height="15" fill="rgb(235,1,42)" fg:x="169048" fg:w="67"/><text x="32.9114%" y="671.50"></text></g><g><title>btrfs_del_items (762 samples, 0.15%)</title><rect x="32.5275%" y="677" width="0.1472%" height="15" fill="rgb(249,88,27)" fg:x="168355" fg:w="762"/><text x="32.7775%" y="687.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (54 samples, 0.01%)</title><rect x="32.6748%" y="677" width="0.0104%" height="15" fill="rgb(235,145,16)" fg:x="169117" fg:w="54"/><text x="32.9248%" y="687.50"></text></g><g><title>__btrfs_add_delayed_item (52 samples, 0.01%)</title><rect x="32.6863%" y="661" width="0.0100%" height="15" fill="rgb(237,114,19)" fg:x="169177" fg:w="52"/><text x="32.9363%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (146 samples, 0.03%)</title><rect x="32.6852%" y="677" width="0.0282%" height="15" fill="rgb(238,51,50)" fg:x="169171" fg:w="146"/><text x="32.9352%" y="687.50"></text></g><g><title>btrfs_match_dir_item_name (53 samples, 0.01%)</title><rect x="32.7194%" y="661" width="0.0102%" height="15" fill="rgb(205,194,25)" fg:x="169348" fg:w="53"/><text x="32.9694%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (100 samples, 0.02%)</title><rect x="32.7480%" y="645" width="0.0193%" height="15" fill="rgb(215,203,17)" fg:x="169496" fg:w="100"/><text x="32.9980%" y="655.50"></text></g><g><title>__radix_tree_lookup (62 samples, 0.01%)</title><rect x="32.7783%" y="613" width="0.0120%" height="15" fill="rgb(233,112,49)" fg:x="169653" fg:w="62"/><text x="33.0283%" y="623.50"></text></g><g><title>find_extent_buffer (112 samples, 0.02%)</title><rect x="32.7743%" y="629" width="0.0216%" height="15" fill="rgb(241,130,26)" fg:x="169632" fg:w="112"/><text x="33.0243%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (158 samples, 0.03%)</title><rect x="32.7673%" y="645" width="0.0305%" height="15" fill="rgb(252,223,19)" fg:x="169596" fg:w="158"/><text x="33.0173%" y="655.50"></text></g><g><title>reada_for_balance (74 samples, 0.01%)</title><rect x="32.7978%" y="645" width="0.0143%" height="15" fill="rgb(211,95,25)" fg:x="169754" fg:w="74"/><text x="33.0478%" y="655.50"></text></g><g><title>btrfs_search_slot (448 samples, 0.09%)</title><rect x="32.7296%" y="661" width="0.0866%" height="15" fill="rgb(251,182,27)" fg:x="169401" fg:w="448"/><text x="32.9796%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (519 samples, 0.10%)</title><rect x="32.7184%" y="677" width="0.1003%" height="15" fill="rgb(238,24,4)" fg:x="169343" fg:w="519"/><text x="32.9684%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (56 samples, 0.01%)</title><rect x="32.8270%" y="661" width="0.0108%" height="15" fill="rgb(224,220,25)" fg:x="169905" fg:w="56"/><text x="33.0770%" y="671.50"></text></g><g><title>btrfs_update_inode (77 samples, 0.01%)</title><rect x="32.8258%" y="677" width="0.0149%" height="15" fill="rgb(239,133,26)" fg:x="169899" fg:w="77"/><text x="33.0758%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (2,189 samples, 0.42%)</title><rect x="32.4236%" y="693" width="0.4229%" height="15" fill="rgb(211,94,48)" fg:x="167817" fg:w="2189"/><text x="32.6736%" y="703.50"></text></g><g><title>__radix_tree_lookup (54 samples, 0.01%)</title><rect x="32.8937%" y="597" width="0.0104%" height="15" fill="rgb(239,87,6)" fg:x="170250" fg:w="54"/><text x="33.1437%" y="607.50"></text></g><g><title>find_extent_buffer (81 samples, 0.02%)</title><rect x="32.8921%" y="613" width="0.0156%" height="15" fill="rgb(227,62,0)" fg:x="170242" fg:w="81"/><text x="33.1421%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (140 samples, 0.03%)</title><rect x="32.8830%" y="629" width="0.0270%" height="15" fill="rgb(211,226,4)" fg:x="170195" fg:w="140"/><text x="33.1330%" y="639.50"></text></g><g><title>btrfs_search_slot (292 samples, 0.06%)</title><rect x="32.8585%" y="645" width="0.0564%" height="15" fill="rgb(253,38,52)" fg:x="170068" fg:w="292"/><text x="33.1085%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (392 samples, 0.08%)</title><rect x="32.8577%" y="661" width="0.0757%" height="15" fill="rgb(229,126,40)" fg:x="170064" fg:w="392"/><text x="33.1077%" y="671.50"></text></g><g><title>setup_items_for_insert (96 samples, 0.02%)</title><rect x="32.9149%" y="645" width="0.0185%" height="15" fill="rgb(229,165,44)" fg:x="170360" fg:w="96"/><text x="33.1649%" y="655.50"></text></g><g><title>btrfs_orphan_add (464 samples, 0.09%)</title><rect x="32.8483%" y="693" width="0.0896%" height="15" fill="rgb(247,95,47)" fg:x="170015" fg:w="464"/><text x="33.0983%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (463 samples, 0.09%)</title><rect x="32.8484%" y="677" width="0.0895%" height="15" fill="rgb(216,140,30)" fg:x="170016" fg:w="463"/><text x="33.0984%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (58 samples, 0.01%)</title><rect x="32.9398%" y="677" width="0.0112%" height="15" fill="rgb(246,214,8)" fg:x="170489" fg:w="58"/><text x="33.1898%" y="687.50"></text></g><g><title>btrfs_update_inode (82 samples, 0.02%)</title><rect x="32.9381%" y="693" width="0.0158%" height="15" fill="rgb(227,224,15)" fg:x="170480" fg:w="82"/><text x="33.1881%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (82 samples, 0.02%)</title><rect x="32.9605%" y="677" width="0.0158%" height="15" fill="rgb(233,175,4)" fg:x="170596" fg:w="82"/><text x="33.2105%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="32.9621%" y="661" width="0.0143%" height="15" fill="rgb(221,66,45)" fg:x="170604" fg:w="74"/><text x="33.2121%" y="671.50"></text></g><g><title>__reserve_bytes (73 samples, 0.01%)</title><rect x="32.9622%" y="645" width="0.0141%" height="15" fill="rgb(221,178,18)" fg:x="170605" fg:w="73"/><text x="33.2122%" y="655.50"></text></g><g><title>btrfs_rmdir (2,967 samples, 0.57%)</title><rect x="32.4108%" y="709" width="0.5732%" height="15" fill="rgb(213,81,29)" fg:x="167751" fg:w="2967"/><text x="32.6608%" y="719.50"></text></g><g><title>start_transaction (153 samples, 0.03%)</title><rect x="32.9545%" y="693" width="0.0296%" height="15" fill="rgb(220,89,49)" fg:x="170565" fg:w="153"/><text x="33.2045%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (68 samples, 0.01%)</title><rect x="33.0034%" y="677" width="0.0131%" height="15" fill="rgb(227,60,33)" fg:x="170818" fg:w="68"/><text x="33.2534%" y="687.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (53 samples, 0.01%)</title><rect x="33.0165%" y="677" width="0.0102%" height="15" fill="rgb(205,113,12)" fg:x="170886" fg:w="53"/><text x="33.2665%" y="687.50"></text></g><g><title>clear_extent_bit (52 samples, 0.01%)</title><rect x="33.0167%" y="661" width="0.0100%" height="15" fill="rgb(211,32,1)" fg:x="170887" fg:w="52"/><text x="33.2667%" y="671.50"></text></g><g><title>clear_record_extent_bits (53 samples, 0.01%)</title><rect x="33.0285%" y="661" width="0.0102%" height="15" fill="rgb(246,2,12)" fg:x="170948" fg:w="53"/><text x="33.2785%" y="671.50"></text></g><g><title>__clear_extent_bit (52 samples, 0.01%)</title><rect x="33.0287%" y="645" width="0.0100%" height="15" fill="rgb(243,37,27)" fg:x="170949" fg:w="52"/><text x="33.2787%" y="655.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (60 samples, 0.01%)</title><rect x="33.0275%" y="677" width="0.0116%" height="15" fill="rgb(248,211,31)" fg:x="170943" fg:w="60"/><text x="33.2775%" y="687.50"></text></g><g><title>btrfs_destroy_inode (254 samples, 0.05%)</title><rect x="33.0005%" y="693" width="0.0491%" height="15" fill="rgb(242,146,47)" fg:x="170803" fg:w="254"/><text x="33.2505%" y="703.50"></text></g><g><title>rb_erase (54 samples, 0.01%)</title><rect x="33.0391%" y="677" width="0.0104%" height="15" fill="rgb(206,70,20)" fg:x="171003" fg:w="54"/><text x="33.2891%" y="687.50"></text></g><g><title>destroy_inode (286 samples, 0.06%)</title><rect x="32.9953%" y="709" width="0.0553%" height="15" fill="rgb(215,10,51)" fg:x="170776" fg:w="286"/><text x="33.2453%" y="719.50"></text></g><g><title>__btrfs_end_transaction (77 samples, 0.01%)</title><rect x="33.0650%" y="677" width="0.0149%" height="15" fill="rgb(243,178,53)" fg:x="171137" fg:w="77"/><text x="33.3150%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (78 samples, 0.02%)</title><rect x="33.0799%" y="677" width="0.0151%" height="15" fill="rgb(233,221,20)" fg:x="171214" fg:w="78"/><text x="33.3299%" y="687.50"></text></g><g><title>btrfs_get_token_32 (296 samples, 0.06%)</title><rect x="33.1442%" y="629" width="0.0572%" height="15" fill="rgb(218,95,35)" fg:x="171547" fg:w="296"/><text x="33.3942%" y="639.50"></text></g><g><title>btrfs_set_token_32 (262 samples, 0.05%)</title><rect x="33.2024%" y="629" width="0.0506%" height="15" fill="rgb(229,13,5)" fg:x="171848" fg:w="262"/><text x="33.4524%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (52 samples, 0.01%)</title><rect x="33.2430%" y="613" width="0.0100%" height="15" fill="rgb(252,164,30)" fg:x="172058" fg:w="52"/><text x="33.4930%" y="623.50"></text></g><g><title>memmove_extent_buffer (146 samples, 0.03%)</title><rect x="33.2625%" y="629" width="0.0282%" height="15" fill="rgb(232,68,36)" fg:x="172159" fg:w="146"/><text x="33.5125%" y="639.50"></text></g><g><title>memmove (121 samples, 0.02%)</title><rect x="33.2673%" y="613" width="0.0234%" height="15" fill="rgb(219,59,54)" fg:x="172184" fg:w="121"/><text x="33.5173%" y="623.50"></text></g><g><title>btrfs_del_items (908 samples, 0.18%)</title><rect x="33.1201%" y="645" width="0.1754%" height="15" fill="rgb(250,92,33)" fg:x="171422" fg:w="908"/><text x="33.3701%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (63 samples, 0.01%)</title><rect x="33.3210%" y="613" width="0.0122%" height="15" fill="rgb(229,162,54)" fg:x="172462" fg:w="63"/><text x="33.5710%" y="623.50"></text></g><g><title>find_extent_buffer (89 samples, 0.02%)</title><rect x="33.3407%" y="597" width="0.0172%" height="15" fill="rgb(244,114,52)" fg:x="172564" fg:w="89"/><text x="33.5907%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (139 samples, 0.03%)</title><rect x="33.3332%" y="613" width="0.0269%" height="15" fill="rgb(212,211,43)" fg:x="172525" fg:w="139"/><text x="33.5832%" y="623.50"></text></g><g><title>reada_for_balance (79 samples, 0.02%)</title><rect x="33.3601%" y="613" width="0.0153%" height="15" fill="rgb(226,147,8)" fg:x="172664" fg:w="79"/><text x="33.6101%" y="623.50"></text></g><g><title>btrfs_lookup_inode (418 samples, 0.08%)</title><rect x="33.3000%" y="645" width="0.0808%" height="15" fill="rgb(226,23,13)" fg:x="172353" fg:w="418"/><text x="33.5500%" y="655.50"></text></g><g><title>btrfs_search_slot (415 samples, 0.08%)</title><rect x="33.3006%" y="629" width="0.0802%" height="15" fill="rgb(240,63,4)" fg:x="172356" fg:w="415"/><text x="33.5506%" y="639.50"></text></g><g><title>__btrfs_update_delayed_inode (1,458 samples, 0.28%)</title><rect x="33.1186%" y="661" width="0.2817%" height="15" fill="rgb(221,1,32)" fg:x="171414" fg:w="1458"/><text x="33.3686%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,610 samples, 0.31%)</title><rect x="33.1056%" y="677" width="0.3111%" height="15" fill="rgb(242,117,10)" fg:x="171347" fg:w="1610"/><text x="33.3556%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (62 samples, 0.01%)</title><rect x="33.4495%" y="645" width="0.0120%" height="15" fill="rgb(249,172,44)" fg:x="173127" fg:w="62"/><text x="33.6995%" y="655.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="33.4665%" y="629" width="0.0131%" height="15" fill="rgb(244,46,45)" fg:x="173215" fg:w="68"/><text x="33.7165%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (106 samples, 0.02%)</title><rect x="33.4615%" y="645" width="0.0205%" height="15" fill="rgb(206,43,17)" fg:x="173189" fg:w="106"/><text x="33.7115%" y="655.50"></text></g><g><title>btrfs_search_slot (307 samples, 0.06%)</title><rect x="33.4304%" y="661" width="0.0593%" height="15" fill="rgb(239,218,39)" fg:x="173028" fg:w="307"/><text x="33.6804%" y="671.50"></text></g><g><title>btrfs_del_orphan_item (403 samples, 0.08%)</title><rect x="33.4167%" y="677" width="0.0779%" height="15" fill="rgb(208,169,54)" fg:x="172957" fg:w="403"/><text x="33.6667%" y="687.50"></text></g><g><title>__clear_extent_bit (90 samples, 0.02%)</title><rect x="33.5195%" y="661" width="0.0174%" height="15" fill="rgb(247,25,42)" fg:x="173489" fg:w="90"/><text x="33.7695%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (80 samples, 0.02%)</title><rect x="33.5616%" y="581" width="0.0155%" height="15" fill="rgb(226,23,31)" fg:x="173707" fg:w="80"/><text x="33.8116%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (99 samples, 0.02%)</title><rect x="33.5593%" y="597" width="0.0191%" height="15" fill="rgb(247,16,28)" fg:x="173695" fg:w="99"/><text x="33.8093%" y="607.50"></text></g><g><title>__btrfs_add_free_space (111 samples, 0.02%)</title><rect x="33.5579%" y="613" width="0.0214%" height="15" fill="rgb(231,147,38)" fg:x="173688" fg:w="111"/><text x="33.8079%" y="623.50"></text></g><g><title>btrfs_free_tree_block (157 samples, 0.03%)</title><rect x="33.5577%" y="629" width="0.0303%" height="15" fill="rgb(253,81,48)" fg:x="173687" fg:w="157"/><text x="33.8077%" y="639.50"></text></g><g><title>btrfs_del_leaf (163 samples, 0.03%)</title><rect x="33.5577%" y="645" width="0.0315%" height="15" fill="rgb(249,222,43)" fg:x="173687" fg:w="163"/><text x="33.8077%" y="655.50"></text></g><g><title>btrfs_get_token_32 (272 samples, 0.05%)</title><rect x="33.5969%" y="645" width="0.0526%" height="15" fill="rgb(221,3,27)" fg:x="173890" fg:w="272"/><text x="33.8469%" y="655.50"></text></g><g><title>btrfs_set_token_32 (267 samples, 0.05%)</title><rect x="33.6524%" y="645" width="0.0516%" height="15" fill="rgb(228,180,5)" fg:x="174177" fg:w="267"/><text x="33.9024%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (54 samples, 0.01%)</title><rect x="33.6935%" y="629" width="0.0104%" height="15" fill="rgb(227,131,42)" fg:x="174390" fg:w="54"/><text x="33.9435%" y="639.50"></text></g><g><title>memcpy_extent_buffer (55 samples, 0.01%)</title><rect x="33.7102%" y="645" width="0.0106%" height="15" fill="rgb(212,3,39)" fg:x="174476" fg:w="55"/><text x="33.9602%" y="655.50"></text></g><g><title>memmove_extent_buffer (133 samples, 0.03%)</title><rect x="33.7208%" y="645" width="0.0257%" height="15" fill="rgb(226,45,5)" fg:x="174531" fg:w="133"/><text x="33.9708%" y="655.50"></text></g><g><title>memmove (96 samples, 0.02%)</title><rect x="33.7279%" y="629" width="0.0185%" height="15" fill="rgb(215,167,45)" fg:x="174568" fg:w="96"/><text x="33.9779%" y="639.50"></text></g><g><title>__push_leaf_left (68 samples, 0.01%)</title><rect x="33.7474%" y="629" width="0.0131%" height="15" fill="rgb(250,218,53)" fg:x="174669" fg:w="68"/><text x="33.9974%" y="639.50"></text></g><g><title>push_leaf_left (93 samples, 0.02%)</title><rect x="33.7465%" y="645" width="0.0180%" height="15" fill="rgb(207,140,0)" fg:x="174664" fg:w="93"/><text x="33.9965%" y="655.50"></text></g><g><title>__push_leaf_right (52 samples, 0.01%)</title><rect x="33.7644%" y="629" width="0.0100%" height="15" fill="rgb(238,133,51)" fg:x="174757" fg:w="52"/><text x="34.0144%" y="639.50"></text></g><g><title>push_leaf_right (64 samples, 0.01%)</title><rect x="33.7644%" y="645" width="0.0124%" height="15" fill="rgb(218,203,53)" fg:x="174757" fg:w="64"/><text x="34.0144%" y="655.50"></text></g><g><title>btrfs_del_items (1,250 samples, 0.24%)</title><rect x="33.5370%" y="661" width="0.2415%" height="15" fill="rgb(226,184,25)" fg:x="173580" fg:w="1250"/><text x="33.7870%" y="671.50"></text></g><g><title>alloc_extent_map (52 samples, 0.01%)</title><rect x="33.7801%" y="645" width="0.0100%" height="15" fill="rgb(231,121,21)" fg:x="174838" fg:w="52"/><text x="34.0301%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (91 samples, 0.02%)</title><rect x="33.7785%" y="661" width="0.0176%" height="15" fill="rgb(251,14,34)" fg:x="174830" fg:w="91"/><text x="34.0285%" y="671.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="33.8174%" y="613" width="0.0133%" height="15" fill="rgb(249,193,11)" fg:x="175031" fg:w="69"/><text x="34.0674%" y="623.50"></text></g><g><title>btrfs_block_rsv_release (124 samples, 0.02%)</title><rect x="33.8102%" y="629" width="0.0240%" height="15" fill="rgb(220,172,37)" fg:x="174994" fg:w="124"/><text x="34.0602%" y="639.50"></text></g><g><title>finish_one_item (76 samples, 0.01%)</title><rect x="33.8485%" y="613" width="0.0147%" height="15" fill="rgb(231,229,43)" fg:x="175192" fg:w="76"/><text x="34.0985%" y="623.50"></text></g><g><title>rb_erase (60 samples, 0.01%)</title><rect x="33.8632%" y="613" width="0.0116%" height="15" fill="rgb(250,161,5)" fg:x="175268" fg:w="60"/><text x="34.1132%" y="623.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (214 samples, 0.04%)</title><rect x="33.8342%" y="629" width="0.0413%" height="15" fill="rgb(218,225,18)" fg:x="175118" fg:w="214"/><text x="34.0842%" y="639.50"></text></g><g><title>kfree (163 samples, 0.03%)</title><rect x="33.8755%" y="629" width="0.0315%" height="15" fill="rgb(245,45,42)" fg:x="175332" fg:w="163"/><text x="34.1255%" y="639.50"></text></g><g><title>__btrfs_kill_delayed_node (529 samples, 0.10%)</title><rect x="33.8071%" y="645" width="0.1022%" height="15" fill="rgb(211,115,1)" fg:x="174978" fg:w="529"/><text x="34.0571%" y="655.50"></text></g><g><title>btrfs_kill_delayed_inode_items (536 samples, 0.10%)</title><rect x="33.8071%" y="661" width="0.1036%" height="15" fill="rgb(248,133,52)" fg:x="174978" fg:w="536"/><text x="34.0571%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (114 samples, 0.02%)</title><rect x="33.9381%" y="645" width="0.0220%" height="15" fill="rgb(238,100,21)" fg:x="175656" fg:w="114"/><text x="34.1881%" y="655.50"></text></g><g><title>find_extent_buffer (89 samples, 0.02%)</title><rect x="33.9696%" y="629" width="0.0172%" height="15" fill="rgb(247,144,11)" fg:x="175819" fg:w="89"/><text x="34.2196%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (148 samples, 0.03%)</title><rect x="33.9602%" y="645" width="0.0286%" height="15" fill="rgb(206,164,16)" fg:x="175770" fg:w="148"/><text x="34.2102%" y="655.50"></text></g><g><title>reada_for_balance (76 samples, 0.01%)</title><rect x="33.9888%" y="645" width="0.0147%" height="15" fill="rgb(222,34,3)" fg:x="175918" fg:w="76"/><text x="34.2388%" y="655.50"></text></g><g><title>btrfs_search_slot (505 samples, 0.10%)</title><rect x="33.9115%" y="661" width="0.0976%" height="15" fill="rgb(248,82,4)" fg:x="175518" fg:w="505"/><text x="34.1615%" y="671.50"></text></g><g><title>lock_extent_bits (85 samples, 0.02%)</title><rect x="34.0127%" y="661" width="0.0164%" height="15" fill="rgb(228,81,46)" fg:x="176042" fg:w="85"/><text x="34.2627%" y="671.50"></text></g><g><title>__set_extent_bit (84 samples, 0.02%)</title><rect x="34.0129%" y="645" width="0.0162%" height="15" fill="rgb(227,67,47)" fg:x="176043" fg:w="84"/><text x="34.2629%" y="655.50"></text></g><g><title>btrfs_truncate_inode_items (2,806 samples, 0.54%)</title><rect x="33.5001%" y="677" width="0.5421%" height="15" fill="rgb(215,93,53)" fg:x="173389" fg:w="2806"/><text x="33.7501%" y="687.50"></text></g><g><title>read_extent_buffer (68 samples, 0.01%)</title><rect x="34.0291%" y="661" width="0.0131%" height="15" fill="rgb(248,194,39)" fg:x="176127" fg:w="68"/><text x="34.2791%" y="671.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (68 samples, 0.01%)</title><rect x="34.0620%" y="613" width="0.0131%" height="15" fill="rgb(215,5,19)" fg:x="176297" fg:w="68"/><text x="34.3120%" y="623.50"></text></g><g><title>btrfs_block_rsv_refill (166 samples, 0.03%)</title><rect x="34.0490%" y="661" width="0.0321%" height="15" fill="rgb(226,215,51)" fg:x="176230" fg:w="166"/><text x="34.2990%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (129 samples, 0.02%)</title><rect x="34.0562%" y="645" width="0.0249%" height="15" fill="rgb(225,56,26)" fg:x="176267" fg:w="129"/><text x="34.3062%" y="655.50"></text></g><g><title>__reserve_bytes (127 samples, 0.02%)</title><rect x="34.0566%" y="629" width="0.0245%" height="15" fill="rgb(222,75,29)" fg:x="176269" fg:w="127"/><text x="34.3066%" y="639.50"></text></g><g><title>evict_refill_and_join (285 samples, 0.06%)</title><rect x="34.0423%" y="677" width="0.0551%" height="15" fill="rgb(236,139,6)" fg:x="176195" fg:w="285"/><text x="34.2923%" y="687.50"></text></g><g><title>start_transaction (83 samples, 0.02%)</title><rect x="34.0813%" y="661" width="0.0160%" height="15" fill="rgb(223,137,36)" fg:x="176397" fg:w="83"/><text x="34.3313%" y="671.50"></text></g><g><title>btrfs_evict_inode (5,394 samples, 1.04%)</title><rect x="33.0635%" y="693" width="1.0422%" height="15" fill="rgb(226,99,2)" fg:x="171129" fg:w="5394"/><text x="33.3135%" y="703.50"></text></g><g><title>evict (5,479 samples, 1.06%)</title><rect x="33.0525%" y="709" width="1.0586%" height="15" fill="rgb(206,133,23)" fg:x="171072" fg:w="5479"/><text x="33.3025%" y="719.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="34.1294%" y="677" width="0.0129%" height="15" fill="rgb(243,173,15)" fg:x="176646" fg:w="67"/><text x="34.3794%" y="687.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="34.1768%" y="629" width="0.0137%" height="15" fill="rgb(228,69,28)" fg:x="176891" fg:w="71"/><text x="34.4268%" y="639.50"></text></g><g><title>d_lru_del (337 samples, 0.07%)</title><rect x="34.1505%" y="661" width="0.0651%" height="15" fill="rgb(212,51,22)" fg:x="176755" fg:w="337"/><text x="34.4005%" y="671.50"></text></g><g><title>list_lru_del (326 samples, 0.06%)</title><rect x="34.1526%" y="645" width="0.0630%" height="15" fill="rgb(227,113,0)" fg:x="176766" fg:w="326"/><text x="34.4026%" y="655.50"></text></g><g><title>mem_cgroup_from_obj (130 samples, 0.03%)</title><rect x="34.1905%" y="629" width="0.0251%" height="15" fill="rgb(252,84,27)" fg:x="176962" fg:w="130"/><text x="34.4405%" y="639.50"></text></g><g><title>d_walk (532 samples, 0.10%)</title><rect x="34.1198%" y="693" width="0.1028%" height="15" fill="rgb(223,145,39)" fg:x="176596" fg:w="532"/><text x="34.3698%" y="703.50"></text></g><g><title>select_collect (414 samples, 0.08%)</title><rect x="34.1426%" y="677" width="0.0800%" height="15" fill="rgb(239,219,30)" fg:x="176714" fg:w="414"/><text x="34.3926%" y="687.50"></text></g><g><title>___d_drop (262 samples, 0.05%)</title><rect x="34.2353%" y="661" width="0.0506%" height="15" fill="rgb(224,196,39)" fg:x="177194" fg:w="262"/><text x="34.4853%" y="671.50"></text></g><g><title>call_rcu (280 samples, 0.05%)</title><rect x="34.2973%" y="661" width="0.0541%" height="15" fill="rgb(205,35,43)" fg:x="177515" fg:w="280"/><text x="34.5473%" y="671.50"></text></g><g><title>rcu_segcblist_enqueue (163 samples, 0.03%)</title><rect x="34.3199%" y="645" width="0.0315%" height="15" fill="rgb(228,201,21)" fg:x="177632" fg:w="163"/><text x="34.5699%" y="655.50"></text></g><g><title>__dentry_kill (673 samples, 0.13%)</title><rect x="34.2254%" y="677" width="0.1300%" height="15" fill="rgb(237,118,16)" fg:x="177143" fg:w="673"/><text x="34.4754%" y="687.50"></text></g><g><title>__dput_to_list (65 samples, 0.01%)</title><rect x="34.3555%" y="677" width="0.0126%" height="15" fill="rgb(241,17,19)" fg:x="177816" fg:w="65"/><text x="34.6055%" y="687.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="34.3705%" y="677" width="0.0122%" height="15" fill="rgb(214,10,25)" fg:x="177894" fg:w="63"/><text x="34.6205%" y="687.50"></text></g><g><title>shrink_dcache_parent (1,480 samples, 0.29%)</title><rect x="34.1190%" y="709" width="0.2859%" height="15" fill="rgb(238,37,29)" fg:x="176592" fg:w="1480"/><text x="34.3690%" y="719.50"></text></g><g><title>shrink_dentry_list (944 samples, 0.18%)</title><rect x="34.2225%" y="693" width="0.1824%" height="15" fill="rgb(253,83,25)" fg:x="177128" fg:w="944"/><text x="34.4725%" y="703.50"></text></g><g><title>shrink_lock_dentry.part.0 (76 samples, 0.01%)</title><rect x="34.3902%" y="677" width="0.0147%" height="15" fill="rgb(234,192,12)" fg:x="177996" fg:w="76"/><text x="34.6402%" y="687.50"></text></g><g><title>_raw_spin_trylock (57 samples, 0.01%)</title><rect x="34.3939%" y="661" width="0.0110%" height="15" fill="rgb(241,216,45)" fg:x="178015" fg:w="57"/><text x="34.6439%" y="671.50"></text></g><g><title>do_rmdir (10,621 samples, 2.05%)</title><rect x="32.3544%" y="741" width="2.0521%" height="15" fill="rgb(242,22,33)" fg:x="167459" fg:w="10621"/><text x="32.6044%" y="751.50">d..</text></g><g><title>vfs_rmdir.part.0 (10,344 samples, 2.00%)</title><rect x="32.4079%" y="725" width="1.9985%" height="15" fill="rgb(231,105,49)" fg:x="167736" fg:w="10344"/><text x="32.6579%" y="735.50">v..</text></g><g><title>_raw_spin_lock (110 samples, 0.02%)</title><rect x="34.6184%" y="661" width="0.0213%" height="15" fill="rgb(218,204,15)" fg:x="179177" fg:w="110"/><text x="34.8684%" y="671.50"></text></g><g><title>__lookup_hash (1,163 samples, 0.22%)</title><rect x="34.4165%" y="725" width="0.2247%" height="15" fill="rgb(235,138,41)" fg:x="178132" fg:w="1163"/><text x="34.6665%" y="735.50"></text></g><g><title>lookup_dcache (1,146 samples, 0.22%)</title><rect x="34.4198%" y="709" width="0.2214%" height="15" fill="rgb(246,0,9)" fg:x="178149" fg:w="1146"/><text x="34.6698%" y="719.50"></text></g><g><title>d_lookup (1,136 samples, 0.22%)</title><rect x="34.4217%" y="693" width="0.2195%" height="15" fill="rgb(210,74,4)" fg:x="178159" fg:w="1136"/><text x="34.6717%" y="703.50"></text></g><g><title>__d_lookup (1,120 samples, 0.22%)</title><rect x="34.4248%" y="677" width="0.2164%" height="15" fill="rgb(250,60,41)" fg:x="178175" fg:w="1120"/><text x="34.6748%" y="687.50"></text></g><g><title>call_rcu (315 samples, 0.06%)</title><rect x="34.6412%" y="725" width="0.0609%" height="15" fill="rgb(220,115,12)" fg:x="179295" fg:w="315"/><text x="34.8912%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (128 samples, 0.02%)</title><rect x="34.6774%" y="709" width="0.0247%" height="15" fill="rgb(237,100,13)" fg:x="179482" fg:w="128"/><text x="34.9274%" y="719.50"></text></g><g><title>__srcu_read_lock (75 samples, 0.01%)</title><rect x="34.7239%" y="661" width="0.0145%" height="15" fill="rgb(213,55,26)" fg:x="179723" fg:w="75"/><text x="34.9739%" y="671.50"></text></g><g><title>fsnotify_destroy_marks (172 samples, 0.03%)</title><rect x="34.7191%" y="693" width="0.0332%" height="15" fill="rgb(216,17,4)" fg:x="179698" fg:w="172"/><text x="34.9691%" y="703.50"></text></g><g><title>fsnotify_grab_connector (156 samples, 0.03%)</title><rect x="34.7222%" y="677" width="0.0301%" height="15" fill="rgb(220,153,47)" fg:x="179714" fg:w="156"/><text x="34.9722%" y="687.50"></text></g><g><title>__srcu_read_unlock (72 samples, 0.01%)</title><rect x="34.7384%" y="661" width="0.0139%" height="15" fill="rgb(215,131,9)" fg:x="179798" fg:w="72"/><text x="34.9884%" y="671.50"></text></g><g><title>__destroy_inode (263 samples, 0.05%)</title><rect x="34.7044%" y="709" width="0.0508%" height="15" fill="rgb(233,46,42)" fg:x="179622" fg:w="263"/><text x="34.9544%" y="719.50"></text></g><g><title>_raw_write_lock (77 samples, 0.01%)</title><rect x="34.7865%" y="677" width="0.0149%" height="15" fill="rgb(226,86,7)" fg:x="180047" fg:w="77"/><text x="35.0365%" y="687.50"></text></g><g><title>memset_erms (172 samples, 0.03%)</title><rect x="34.8454%" y="645" width="0.0332%" height="15" fill="rgb(239,226,21)" fg:x="180352" fg:w="172"/><text x="35.0954%" y="655.50"></text></g><g><title>alloc_extent_map (483 samples, 0.09%)</title><rect x="34.8014%" y="677" width="0.0933%" height="15" fill="rgb(244,137,22)" fg:x="180124" fg:w="483"/><text x="35.0514%" y="687.50"></text></g><g><title>kmem_cache_alloc (459 samples, 0.09%)</title><rect x="34.8060%" y="661" width="0.0887%" height="15" fill="rgb(211,139,35)" fg:x="180148" fg:w="459"/><text x="35.0560%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (83 samples, 0.02%)</title><rect x="34.8787%" y="645" width="0.0160%" height="15" fill="rgb(214,62,50)" fg:x="180524" fg:w="83"/><text x="35.1287%" y="655.50"></text></g><g><title>free_extent_map (101 samples, 0.02%)</title><rect x="34.8947%" y="677" width="0.0195%" height="15" fill="rgb(212,113,44)" fg:x="180607" fg:w="101"/><text x="35.1447%" y="687.50"></text></g><g><title>kmem_cache_free (234 samples, 0.05%)</title><rect x="34.9142%" y="677" width="0.0452%" height="15" fill="rgb(226,150,43)" fg:x="180708" fg:w="234"/><text x="35.1642%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (71 samples, 0.01%)</title><rect x="34.9457%" y="661" width="0.0137%" height="15" fill="rgb(250,71,37)" fg:x="180871" fg:w="71"/><text x="35.1957%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (953 samples, 0.18%)</title><rect x="34.7755%" y="693" width="0.1841%" height="15" fill="rgb(219,76,19)" fg:x="179990" fg:w="953"/><text x="35.0255%" y="703.50"></text></g><g><title>alloc_extent_state (220 samples, 0.04%)</title><rect x="34.9855%" y="645" width="0.0425%" height="15" fill="rgb(250,39,11)" fg:x="181077" fg:w="220"/><text x="35.2355%" y="655.50"></text></g><g><title>kmem_cache_alloc (198 samples, 0.04%)</title><rect x="34.9898%" y="629" width="0.0383%" height="15" fill="rgb(230,64,31)" fg:x="181099" fg:w="198"/><text x="35.2398%" y="639.50"></text></g><g><title>free_extent_state (61 samples, 0.01%)</title><rect x="35.0280%" y="645" width="0.0118%" height="15" fill="rgb(208,222,23)" fg:x="181297" fg:w="61"/><text x="35.2780%" y="655.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (537 samples, 0.10%)</title><rect x="34.9596%" y="693" width="0.1038%" height="15" fill="rgb(227,125,18)" fg:x="180943" fg:w="537"/><text x="35.2096%" y="703.50"></text></g><g><title>clear_extent_bit (489 samples, 0.09%)</title><rect x="34.9689%" y="677" width="0.0945%" height="15" fill="rgb(234,210,9)" fg:x="180991" fg:w="489"/><text x="35.2189%" y="687.50"></text></g><g><title>__clear_extent_bit (481 samples, 0.09%)</title><rect x="34.9704%" y="661" width="0.0929%" height="15" fill="rgb(217,127,24)" fg:x="180999" fg:w="481"/><text x="35.2204%" y="671.50"></text></g><g><title>kmem_cache_free (122 samples, 0.02%)</title><rect x="35.0398%" y="645" width="0.0236%" height="15" fill="rgb(239,141,48)" fg:x="181358" fg:w="122"/><text x="35.2898%" y="655.50"></text></g><g><title>_raw_spin_lock_irq (63 samples, 0.01%)</title><rect x="35.0723%" y="677" width="0.0122%" height="15" fill="rgb(227,109,8)" fg:x="181526" fg:w="63"/><text x="35.3223%" y="687.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (110 samples, 0.02%)</title><rect x="35.0634%" y="693" width="0.0213%" height="15" fill="rgb(235,184,23)" fg:x="181480" fg:w="110"/><text x="35.3134%" y="703.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="35.1405%" y="613" width="0.0104%" height="15" fill="rgb(227,226,48)" fg:x="181879" fg:w="54"/><text x="35.3905%" y="623.50"></text></g><g><title>alloc_extent_state (282 samples, 0.05%)</title><rect x="35.1069%" y="645" width="0.0545%" height="15" fill="rgb(206,150,11)" fg:x="181705" fg:w="282"/><text x="35.3569%" y="655.50"></text></g><g><title>kmem_cache_alloc (248 samples, 0.05%)</title><rect x="35.1134%" y="629" width="0.0479%" height="15" fill="rgb(254,2,33)" fg:x="181739" fg:w="248"/><text x="35.3634%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (54 samples, 0.01%)</title><rect x="35.1509%" y="613" width="0.0104%" height="15" fill="rgb(243,160,20)" fg:x="181933" fg:w="54"/><text x="35.4009%" y="623.50"></text></g><g><title>free_extent_state (56 samples, 0.01%)</title><rect x="35.1613%" y="645" width="0.0108%" height="15" fill="rgb(218,208,30)" fg:x="181987" fg:w="56"/><text x="35.4113%" y="655.50"></text></g><g><title>clear_record_extent_bits (547 samples, 0.11%)</title><rect x="35.0887%" y="677" width="0.1057%" height="15" fill="rgb(224,120,49)" fg:x="181611" fg:w="547"/><text x="35.3387%" y="687.50"></text></g><g><title>__clear_extent_bit (538 samples, 0.10%)</title><rect x="35.0904%" y="661" width="0.1039%" height="15" fill="rgb(246,12,2)" fg:x="181620" fg:w="538"/><text x="35.3404%" y="671.50"></text></g><g><title>kmem_cache_free (115 samples, 0.02%)</title><rect x="35.1722%" y="645" width="0.0222%" height="15" fill="rgb(236,117,3)" fg:x="182043" fg:w="115"/><text x="35.4222%" y="655.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (604 samples, 0.12%)</title><rect x="35.0846%" y="693" width="0.1167%" height="15" fill="rgb(216,128,52)" fg:x="181590" fg:w="604"/><text x="35.3346%" y="703.50"></text></g><g><title>btrfs_destroy_inode (2,998 samples, 0.58%)</title><rect x="34.7552%" y="709" width="0.5792%" height="15" fill="rgb(246,145,19)" fg:x="179885" fg:w="2998"/><text x="35.0052%" y="719.50"></text></g><g><title>rb_erase (689 samples, 0.13%)</title><rect x="35.2013%" y="693" width="0.1331%" height="15" fill="rgb(222,11,46)" fg:x="182194" fg:w="689"/><text x="35.4513%" y="703.50"></text></g><g><title>destroy_inode (3,332 samples, 0.64%)</title><rect x="34.7021%" y="725" width="0.6438%" height="15" fill="rgb(245,82,36)" fg:x="179610" fg:w="3332"/><text x="34.9521%" y="735.50"></text></g><g><title>btrfs_put_root (59 samples, 0.01%)</title><rect x="35.3345%" y="709" width="0.0114%" height="15" fill="rgb(250,73,51)" fg:x="182883" fg:w="59"/><text x="35.5845%" y="719.50"></text></g><g><title>down_write (80 samples, 0.02%)</title><rect x="35.3459%" y="725" width="0.0155%" height="15" fill="rgb(221,189,23)" fg:x="182942" fg:w="80"/><text x="35.5959%" y="735.50"></text></g><g><title>lockref_put_or_lock (128 samples, 0.02%)</title><rect x="35.3808%" y="709" width="0.0247%" height="15" fill="rgb(210,33,7)" fg:x="183123" fg:w="128"/><text x="35.6308%" y="719.50"></text></g><g><title>dput (230 samples, 0.04%)</title><rect x="35.3613%" y="725" width="0.0444%" height="15" fill="rgb(210,107,22)" fg:x="183022" fg:w="230"/><text x="35.6113%" y="735.50"></text></g><g><title>__list_del_entry_valid (281 samples, 0.05%)</title><rect x="35.4148%" y="709" width="0.0543%" height="15" fill="rgb(222,116,37)" fg:x="183299" fg:w="281"/><text x="35.6648%" y="719.50"></text></g><g><title>__remove_inode_hash (124 samples, 0.02%)</title><rect x="35.4691%" y="709" width="0.0240%" height="15" fill="rgb(254,17,48)" fg:x="183580" fg:w="124"/><text x="35.7191%" y="719.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="35.4745%" y="693" width="0.0185%" height="15" fill="rgb(224,36,32)" fg:x="183608" fg:w="96"/><text x="35.7245%" y="703.50"></text></g><g><title>_raw_spin_lock (227 samples, 0.04%)</title><rect x="35.4931%" y="709" width="0.0439%" height="15" fill="rgb(232,90,46)" fg:x="183704" fg:w="227"/><text x="35.7431%" y="719.50"></text></g><g><title>btrfs_put_transaction (136 samples, 0.03%)</title><rect x="35.6144%" y="677" width="0.0263%" height="15" fill="rgb(241,66,40)" fg:x="184332" fg:w="136"/><text x="35.8644%" y="687.50"></text></g><g><title>_raw_spin_lock (226 samples, 0.04%)</title><rect x="35.6668%" y="645" width="0.0437%" height="15" fill="rgb(249,184,29)" fg:x="184603" fg:w="226"/><text x="35.9168%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (407 samples, 0.08%)</title><rect x="35.6434%" y="677" width="0.0786%" height="15" fill="rgb(231,181,1)" fg:x="184482" fg:w="407"/><text x="35.8934%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (393 samples, 0.08%)</title><rect x="35.6461%" y="661" width="0.0759%" height="15" fill="rgb(224,94,2)" fg:x="184496" fg:w="393"/><text x="35.8961%" y="671.50"></text></g><g><title>__btrfs_end_transaction (1,082 samples, 0.21%)</title><rect x="35.5593%" y="693" width="0.2091%" height="15" fill="rgb(229,170,15)" fg:x="184047" fg:w="1082"/><text x="35.8093%" y="703.50"></text></g><g><title>kmem_cache_free (240 samples, 0.05%)</title><rect x="35.7220%" y="677" width="0.0464%" height="15" fill="rgb(240,127,35)" fg:x="184889" fg:w="240"/><text x="35.9720%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (56 samples, 0.01%)</title><rect x="35.7576%" y="661" width="0.0108%" height="15" fill="rgb(248,196,34)" fg:x="185073" fg:w="56"/><text x="36.0076%" y="671.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="35.7866%" y="677" width="0.0203%" height="15" fill="rgb(236,137,7)" fg:x="185223" fg:w="105"/><text x="36.0366%" y="687.50"></text></g><g><title>mutex_lock (83 samples, 0.02%)</title><rect x="35.8068%" y="677" width="0.0160%" height="15" fill="rgb(235,127,16)" fg:x="185328" fg:w="83"/><text x="36.0568%" y="687.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="35.8229%" y="677" width="0.0106%" height="15" fill="rgb(250,192,54)" fg:x="185411" fg:w="55"/><text x="36.0729%" y="687.50"></text></g><g><title>__radix_tree_delete (103 samples, 0.02%)</title><rect x="35.8387%" y="661" width="0.0199%" height="15" fill="rgb(218,98,20)" fg:x="185493" fg:w="103"/><text x="36.0887%" y="671.50"></text></g><g><title>node_tag_clear (56 samples, 0.01%)</title><rect x="35.8478%" y="645" width="0.0108%" height="15" fill="rgb(230,176,47)" fg:x="185540" fg:w="56"/><text x="36.0978%" y="655.50"></text></g><g><title>__radix_tree_lookup (335 samples, 0.06%)</title><rect x="35.8586%" y="661" width="0.0647%" height="15" fill="rgb(244,2,33)" fg:x="185596" fg:w="335"/><text x="36.1086%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (817 samples, 0.16%)</title><rect x="35.7684%" y="693" width="0.1579%" height="15" fill="rgb(231,100,17)" fg:x="185129" fg:w="817"/><text x="36.0184%" y="703.50"></text></g><g><title>radix_tree_delete_item (476 samples, 0.09%)</title><rect x="35.8343%" y="677" width="0.0920%" height="15" fill="rgb(245,23,12)" fg:x="185470" fg:w="476"/><text x="36.0843%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="35.9264%" y="693" width="0.0124%" height="15" fill="rgb(249,55,22)" fg:x="185947" fg:w="64"/><text x="36.1764%" y="703.50"></text></g><g><title>memset_erms (60 samples, 0.01%)</title><rect x="35.9819%" y="661" width="0.0116%" height="15" fill="rgb(207,134,9)" fg:x="186234" fg:w="60"/><text x="36.2319%" y="671.50"></text></g><g><title>btrfs_alloc_block_rsv (257 samples, 0.05%)</title><rect x="35.9490%" y="693" width="0.0497%" height="15" fill="rgb(218,134,0)" fg:x="186064" fg:w="257"/><text x="36.1990%" y="703.50"></text></g><g><title>kmem_cache_alloc_trace (166 samples, 0.03%)</title><rect x="35.9666%" y="677" width="0.0321%" height="15" fill="rgb(213,212,33)" fg:x="186155" fg:w="166"/><text x="36.2166%" y="687.50"></text></g><g><title>btrfs_put_transaction (73 samples, 0.01%)</title><rect x="36.0453%" y="661" width="0.0141%" height="15" fill="rgb(252,106,18)" fg:x="186562" fg:w="73"/><text x="36.2953%" y="671.50"></text></g><g><title>__btrfs_end_transaction (350 samples, 0.07%)</title><rect x="36.0151%" y="677" width="0.0676%" height="15" fill="rgb(208,126,42)" fg:x="186406" fg:w="350"/><text x="36.2651%" y="687.50"></text></g><g><title>kmem_cache_free (109 samples, 0.02%)</title><rect x="36.0617%" y="661" width="0.0211%" height="15" fill="rgb(246,175,29)" fg:x="186647" fg:w="109"/><text x="36.3117%" y="671.50"></text></g><g><title>mutex_lock (63 samples, 0.01%)</title><rect x="36.1320%" y="661" width="0.0122%" height="15" fill="rgb(215,13,50)" fg:x="187011" fg:w="63"/><text x="36.3820%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (374 samples, 0.07%)</title><rect x="36.0827%" y="677" width="0.0723%" height="15" fill="rgb(216,172,15)" fg:x="186756" fg:w="374"/><text x="36.3327%" y="687.50"></text></g><g><title>mutex_unlock (56 samples, 0.01%)</title><rect x="36.1442%" y="661" width="0.0108%" height="15" fill="rgb(212,103,13)" fg:x="187074" fg:w="56"/><text x="36.3942%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (92 samples, 0.02%)</title><rect x="36.3420%" y="581" width="0.0178%" height="15" fill="rgb(231,171,36)" fg:x="188098" fg:w="92"/><text x="36.5920%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (105 samples, 0.02%)</title><rect x="36.3401%" y="597" width="0.0203%" height="15" fill="rgb(250,123,20)" fg:x="188088" fg:w="105"/><text x="36.5901%" y="607.50"></text></g><g><title>__btrfs_add_free_space (126 samples, 0.02%)</title><rect x="36.3372%" y="613" width="0.0243%" height="15" fill="rgb(212,53,50)" fg:x="188073" fg:w="126"/><text x="36.5872%" y="623.50"></text></g><g><title>btrfs_free_tree_block (175 samples, 0.03%)</title><rect x="36.3370%" y="629" width="0.0338%" height="15" fill="rgb(243,54,12)" fg:x="188072" fg:w="175"/><text x="36.5870%" y="639.50"></text></g><g><title>btrfs_del_leaf (189 samples, 0.04%)</title><rect x="36.3368%" y="645" width="0.0365%" height="15" fill="rgb(234,101,34)" fg:x="188071" fg:w="189"/><text x="36.5868%" y="655.50"></text></g><g><title>btrfs_get_32 (115 samples, 0.02%)</title><rect x="36.3733%" y="645" width="0.0222%" height="15" fill="rgb(254,67,22)" fg:x="188260" fg:w="115"/><text x="36.6233%" y="655.50"></text></g><g><title>btrfs_get_token_32 (2,041 samples, 0.39%)</title><rect x="36.3956%" y="645" width="0.3943%" height="15" fill="rgb(250,35,47)" fg:x="188375" fg:w="2041"/><text x="36.6456%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (321 samples, 0.06%)</title><rect x="36.7279%" y="629" width="0.0620%" height="15" fill="rgb(226,126,38)" fg:x="190095" fg:w="321"/><text x="36.9779%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (149 samples, 0.03%)</title><rect x="36.7899%" y="645" width="0.0288%" height="15" fill="rgb(216,138,53)" fg:x="190416" fg:w="149"/><text x="37.0399%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (104 samples, 0.02%)</title><rect x="36.7986%" y="629" width="0.0201%" height="15" fill="rgb(246,199,43)" fg:x="190461" fg:w="104"/><text x="37.0486%" y="639.50"></text></g><g><title>btrfs_set_token_32 (1,786 samples, 0.35%)</title><rect x="36.8220%" y="645" width="0.3451%" height="15" fill="rgb(232,125,11)" fg:x="190582" fg:w="1786"/><text x="37.0720%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (374 samples, 0.07%)</title><rect x="37.0948%" y="629" width="0.0723%" height="15" fill="rgb(218,219,45)" fg:x="191994" fg:w="374"/><text x="37.3448%" y="639.50"></text></g><g><title>leaf_space_used (112 samples, 0.02%)</title><rect x="37.1701%" y="645" width="0.0216%" height="15" fill="rgb(216,102,54)" fg:x="192384" fg:w="112"/><text x="37.4201%" y="655.50"></text></g><g><title>btrfs_get_32 (74 samples, 0.01%)</title><rect x="37.1775%" y="629" width="0.0143%" height="15" fill="rgb(250,228,7)" fg:x="192422" fg:w="74"/><text x="37.4275%" y="639.50"></text></g><g><title>memcpy_extent_buffer (338 samples, 0.07%)</title><rect x="37.1918%" y="645" width="0.0653%" height="15" fill="rgb(226,125,25)" fg:x="192496" fg:w="338"/><text x="37.4418%" y="655.50"></text></g><g><title>memmove (286 samples, 0.06%)</title><rect x="37.2018%" y="629" width="0.0553%" height="15" fill="rgb(224,165,27)" fg:x="192548" fg:w="286"/><text x="37.4518%" y="639.50"></text></g><g><title>copy_pages (288 samples, 0.06%)</title><rect x="37.2826%" y="629" width="0.0556%" height="15" fill="rgb(233,86,3)" fg:x="192966" fg:w="288"/><text x="37.5326%" y="639.50"></text></g><g><title>memmove_extent_buffer (2,790 samples, 0.54%)</title><rect x="37.2571%" y="645" width="0.5391%" height="15" fill="rgb(228,116,20)" fg:x="192834" fg:w="2790"/><text x="37.5071%" y="655.50"></text></g><g><title>memmove (2,370 samples, 0.46%)</title><rect x="37.3382%" y="629" width="0.4579%" height="15" fill="rgb(209,192,17)" fg:x="193254" fg:w="2370"/><text x="37.5882%" y="639.50"></text></g><g><title>__push_leaf_left (78 samples, 0.02%)</title><rect x="37.7990%" y="629" width="0.0151%" height="15" fill="rgb(224,88,34)" fg:x="195639" fg:w="78"/><text x="38.0490%" y="639.50"></text></g><g><title>push_leaf_left (143 samples, 0.03%)</title><rect x="37.7961%" y="645" width="0.0276%" height="15" fill="rgb(233,38,6)" fg:x="195624" fg:w="143"/><text x="38.0461%" y="655.50"></text></g><g><title>__push_leaf_right (96 samples, 0.02%)</title><rect x="37.8280%" y="629" width="0.0185%" height="15" fill="rgb(212,59,30)" fg:x="195789" fg:w="96"/><text x="38.0780%" y="639.50"></text></g><g><title>alloc_extent_buffer (69 samples, 0.01%)</title><rect x="37.8577%" y="597" width="0.0133%" height="15" fill="rgb(213,80,3)" fg:x="195943" fg:w="69"/><text x="38.1077%" y="607.50"></text></g><g><title>find_extent_buffer (64 samples, 0.01%)</title><rect x="37.8587%" y="581" width="0.0124%" height="15" fill="rgb(251,178,7)" fg:x="195948" fg:w="64"/><text x="38.1087%" y="591.50"></text></g><g><title>btrfs_read_node_slot (109 samples, 0.02%)</title><rect x="37.8539%" y="629" width="0.0211%" height="15" fill="rgb(213,154,26)" fg:x="195923" fg:w="109"/><text x="38.1039%" y="639.50"></text></g><g><title>read_tree_block (92 samples, 0.02%)</title><rect x="37.8572%" y="613" width="0.0178%" height="15" fill="rgb(238,165,49)" fg:x="195940" fg:w="92"/><text x="38.1072%" y="623.50"></text></g><g><title>push_leaf_right (302 samples, 0.06%)</title><rect x="37.8237%" y="645" width="0.0583%" height="15" fill="rgb(248,91,46)" fg:x="195767" fg:w="302"/><text x="38.0737%" y="655.50"></text></g><g><title>btrfs_del_items (8,827 samples, 1.71%)</title><rect x="36.1813%" y="661" width="1.7054%" height="15" fill="rgb(244,21,52)" fg:x="187266" fg:w="8827"/><text x="36.4313%" y="671.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="37.9004%" y="629" width="0.0193%" height="15" fill="rgb(247,122,20)" fg:x="196164" fg:w="100"/><text x="38.1504%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (181 samples, 0.03%)</title><rect x="37.8898%" y="645" width="0.0350%" height="15" fill="rgb(218,27,9)" fg:x="196109" fg:w="181"/><text x="38.1398%" y="655.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (222 samples, 0.04%)</title><rect x="37.8867%" y="661" width="0.0429%" height="15" fill="rgb(246,7,6)" fg:x="196093" fg:w="222"/><text x="38.1367%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="38.0023%" y="613" width="0.0174%" height="15" fill="rgb(227,135,54)" fg:x="196691" fg:w="90"/><text x="38.2523%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (177 samples, 0.03%)</title><rect x="37.9996%" y="629" width="0.0342%" height="15" fill="rgb(247,14,11)" fg:x="196677" fg:w="177"/><text x="38.2496%" y="639.50"></text></g><g><title>btrfs_root_node (73 samples, 0.01%)</title><rect x="38.0197%" y="613" width="0.0141%" height="15" fill="rgb(206,149,34)" fg:x="196781" fg:w="73"/><text x="38.2697%" y="623.50"></text></g><g><title>btrfs_read_node_slot (85 samples, 0.02%)</title><rect x="38.0558%" y="613" width="0.0164%" height="15" fill="rgb(227,228,4)" fg:x="196968" fg:w="85"/><text x="38.3058%" y="623.50"></text></g><g><title>read_tree_block (68 samples, 0.01%)</title><rect x="38.0591%" y="597" width="0.0131%" height="15" fill="rgb(238,218,28)" fg:x="196985" fg:w="68"/><text x="38.3091%" y="607.50"></text></g><g><title>balance_level (240 samples, 0.05%)</title><rect x="38.0349%" y="629" width="0.0464%" height="15" fill="rgb(252,86,40)" fg:x="196860" fg:w="240"/><text x="38.2849%" y="639.50"></text></g><g><title>__btrfs_tree_lock (97 samples, 0.02%)</title><rect x="38.0911%" y="613" width="0.0187%" height="15" fill="rgb(251,225,11)" fg:x="197151" fg:w="97"/><text x="38.3411%" y="623.50"></text></g><g><title>btrfs_lock_root_node (159 samples, 0.03%)</title><rect x="38.0898%" y="629" width="0.0307%" height="15" fill="rgb(206,46,49)" fg:x="197144" fg:w="159"/><text x="38.3398%" y="639.50"></text></g><g><title>btrfs_root_node (55 samples, 0.01%)</title><rect x="38.1099%" y="613" width="0.0106%" height="15" fill="rgb(245,128,24)" fg:x="197248" fg:w="55"/><text x="38.3599%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (57 samples, 0.01%)</title><rect x="38.1205%" y="629" width="0.0110%" height="15" fill="rgb(219,177,34)" fg:x="197303" fg:w="57"/><text x="38.3705%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (55 samples, 0.01%)</title><rect x="38.1315%" y="629" width="0.0106%" height="15" fill="rgb(218,60,48)" fg:x="197360" fg:w="55"/><text x="38.3815%" y="639.50"></text></g><g><title>_raw_write_lock (88 samples, 0.02%)</title><rect x="38.1462%" y="613" width="0.0170%" height="15" fill="rgb(221,11,5)" fg:x="197436" fg:w="88"/><text x="38.3962%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (113 samples, 0.02%)</title><rect x="38.1422%" y="629" width="0.0218%" height="15" fill="rgb(220,148,13)" fg:x="197415" fg:w="113"/><text x="38.3922%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (76 samples, 0.01%)</title><rect x="38.1642%" y="629" width="0.0147%" height="15" fill="rgb(210,16,3)" fg:x="197529" fg:w="76"/><text x="38.4142%" y="639.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="38.1669%" y="613" width="0.0120%" height="15" fill="rgb(236,80,2)" fg:x="197543" fg:w="62"/><text x="38.4169%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (529 samples, 0.10%)</title><rect x="38.1789%" y="629" width="0.1022%" height="15" fill="rgb(239,129,19)" fg:x="197605" fg:w="529"/><text x="38.4289%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (73 samples, 0.01%)</title><rect x="38.3068%" y="613" width="0.0141%" height="15" fill="rgb(220,106,35)" fg:x="198267" fg:w="73"/><text x="38.5568%" y="623.50"></text></g><g><title>verify_parent_transid (57 samples, 0.01%)</title><rect x="38.3099%" y="597" width="0.0110%" height="15" fill="rgb(252,139,45)" fg:x="198283" fg:w="57"/><text x="38.5599%" y="607.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="38.3209%" y="613" width="0.0230%" height="15" fill="rgb(229,8,36)" fg:x="198340" fg:w="119"/><text x="38.5709%" y="623.50"></text></g><g><title>btrfs_verify_level_key (57 samples, 0.01%)</title><rect x="38.3456%" y="613" width="0.0110%" height="15" fill="rgb(230,126,33)" fg:x="198468" fg:w="57"/><text x="38.5956%" y="623.50"></text></g><g><title>__radix_tree_lookup (467 samples, 0.09%)</title><rect x="38.3918%" y="597" width="0.0902%" height="15" fill="rgb(239,140,21)" fg:x="198707" fg:w="467"/><text x="38.6418%" y="607.50"></text></g><g><title>check_buffer_tree_ref (68 samples, 0.01%)</title><rect x="38.4938%" y="581" width="0.0131%" height="15" fill="rgb(254,104,9)" fg:x="199235" fg:w="68"/><text x="38.7438%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (333 samples, 0.06%)</title><rect x="38.4820%" y="597" width="0.0643%" height="15" fill="rgb(239,52,14)" fg:x="199174" fg:w="333"/><text x="38.7320%" y="607.50"></text></g><g><title>mark_page_accessed (204 samples, 0.04%)</title><rect x="38.5069%" y="581" width="0.0394%" height="15" fill="rgb(208,227,44)" fg:x="199303" fg:w="204"/><text x="38.7569%" y="591.50"></text></g><g><title>find_extent_buffer (989 samples, 0.19%)</title><rect x="38.3566%" y="613" width="0.1911%" height="15" fill="rgb(246,18,19)" fg:x="198525" fg:w="989"/><text x="38.6066%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,538 samples, 0.30%)</title><rect x="38.2811%" y="629" width="0.2972%" height="15" fill="rgb(235,228,25)" fg:x="198134" fg:w="1538"/><text x="38.5311%" y="639.50"></text></g><g><title>read_extent_buffer (158 samples, 0.03%)</title><rect x="38.5477%" y="613" width="0.0305%" height="15" fill="rgb(240,156,20)" fg:x="199514" fg:w="158"/><text x="38.7977%" y="623.50"></text></g><g><title>btrfs_get_64 (62 samples, 0.01%)</title><rect x="38.5900%" y="613" width="0.0120%" height="15" fill="rgb(224,8,20)" fg:x="199733" fg:w="62"/><text x="38.8400%" y="623.50"></text></g><g><title>__radix_tree_lookup (163 samples, 0.03%)</title><rect x="38.6093%" y="597" width="0.0315%" height="15" fill="rgb(214,12,52)" fg:x="199833" fg:w="163"/><text x="38.8593%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (79 samples, 0.02%)</title><rect x="38.6408%" y="597" width="0.0153%" height="15" fill="rgb(211,220,47)" fg:x="199996" fg:w="79"/><text x="38.8908%" y="607.50"></text></g><g><title>find_extent_buffer (284 samples, 0.05%)</title><rect x="38.6020%" y="613" width="0.0549%" height="15" fill="rgb(250,173,5)" fg:x="199795" fg:w="284"/><text x="38.8520%" y="623.50"></text></g><g><title>reada_for_balance (470 samples, 0.09%)</title><rect x="38.5782%" y="629" width="0.0908%" height="15" fill="rgb(250,125,52)" fg:x="199672" fg:w="470"/><text x="38.8282%" y="639.50"></text></g><g><title>btrfs_lookup_inode (3,982 samples, 0.77%)</title><rect x="37.9395%" y="661" width="0.7694%" height="15" fill="rgb(209,133,18)" fg:x="196366" fg:w="3982"/><text x="38.1895%" y="671.50"></text></g><g><title>btrfs_search_slot (3,951 samples, 0.76%)</title><rect x="37.9455%" y="645" width="0.7634%" height="15" fill="rgb(216,173,22)" fg:x="196397" fg:w="3951"/><text x="38.1955%" y="655.50"></text></g><g><title>unlock_up (156 samples, 0.03%)</title><rect x="38.6787%" y="629" width="0.0301%" height="15" fill="rgb(205,3,22)" fg:x="200192" fg:w="156"/><text x="38.9287%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (139 samples, 0.03%)</title><rect x="38.7088%" y="661" width="0.0269%" height="15" fill="rgb(248,22,20)" fg:x="200348" fg:w="139"/><text x="38.9588%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="38.7160%" y="645" width="0.0197%" height="15" fill="rgb(233,6,29)" fg:x="200385" fg:w="102"/><text x="38.9660%" y="655.50"></text></g><g><title>btrfs_release_delayed_inode (63 samples, 0.01%)</title><rect x="38.7357%" y="661" width="0.0122%" height="15" fill="rgb(240,22,54)" fg:x="200487" fg:w="63"/><text x="38.9857%" y="671.50"></text></g><g><title>btrfs_tree_unlock (78 samples, 0.02%)</title><rect x="38.7600%" y="645" width="0.0151%" height="15" fill="rgb(231,133,32)" fg:x="200613" fg:w="78"/><text x="39.0100%" y="655.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="38.7836%" y="629" width="0.0257%" height="15" fill="rgb(248,193,4)" fg:x="200735" fg:w="133"/><text x="39.0336%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (170 samples, 0.03%)</title><rect x="38.7766%" y="645" width="0.0328%" height="15" fill="rgb(211,178,46)" fg:x="200699" fg:w="170"/><text x="39.0266%" y="655.50"></text></g><g><title>btrfs_release_path (494 samples, 0.10%)</title><rect x="38.7479%" y="661" width="0.0954%" height="15" fill="rgb(224,5,42)" fg:x="200550" fg:w="494"/><text x="38.9979%" y="671.50"></text></g><g><title>release_extent_buffer (175 samples, 0.03%)</title><rect x="38.8095%" y="645" width="0.0338%" height="15" fill="rgb(239,176,25)" fg:x="200869" fg:w="175"/><text x="39.0595%" y="655.50"></text></g><g><title>finish_one_item (258 samples, 0.05%)</title><rect x="38.8508%" y="661" width="0.0498%" height="15" fill="rgb(245,187,50)" fg:x="201083" fg:w="258"/><text x="39.1008%" y="671.50"></text></g><g><title>read_extent_buffer (67 samples, 0.01%)</title><rect x="38.9007%" y="661" width="0.0129%" height="15" fill="rgb(248,24,15)" fg:x="201341" fg:w="67"/><text x="39.1507%" y="671.50"></text></g><g><title>__btrfs_update_delayed_inode (14,541 samples, 2.81%)</title><rect x="36.1550%" y="677" width="2.8094%" height="15" fill="rgb(205,166,13)" fg:x="187130" fg:w="14541"/><text x="36.4050%" y="687.50">__..</text></g><g><title>write_extent_buffer (263 samples, 0.05%)</title><rect x="38.9136%" y="661" width="0.0508%" height="15" fill="rgb(208,114,23)" fg:x="201408" fg:w="263"/><text x="39.1636%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (53 samples, 0.01%)</title><rect x="38.9807%" y="677" width="0.0102%" height="15" fill="rgb(239,127,18)" fg:x="201755" fg:w="53"/><text x="39.2307%" y="687.50"></text></g><g><title>kmem_cache_alloc (128 samples, 0.02%)</title><rect x="38.9915%" y="677" width="0.0247%" height="15" fill="rgb(219,154,28)" fg:x="201811" fg:w="128"/><text x="39.2415%" y="687.50"></text></g><g><title>kmem_cache_free (101 samples, 0.02%)</title><rect x="39.0162%" y="677" width="0.0195%" height="15" fill="rgb(225,157,23)" fg:x="201939" fg:w="101"/><text x="39.2662%" y="687.50"></text></g><g><title>mutex_lock (127 samples, 0.02%)</title><rect x="39.0357%" y="677" width="0.0245%" height="15" fill="rgb(219,8,6)" fg:x="202040" fg:w="127"/><text x="39.2857%" y="687.50"></text></g><g><title>mutex_unlock (93 samples, 0.02%)</title><rect x="39.0603%" y="677" width="0.0180%" height="15" fill="rgb(212,47,6)" fg:x="202167" fg:w="93"/><text x="39.3103%" y="687.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="39.1331%" y="645" width="0.0137%" height="15" fill="rgb(224,190,4)" fg:x="202544" fg:w="71"/><text x="39.3831%" y="655.50"></text></g><g><title>join_transaction (197 samples, 0.04%)</title><rect x="39.1092%" y="661" width="0.0381%" height="15" fill="rgb(239,183,29)" fg:x="202420" fg:w="197"/><text x="39.3592%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (16,438 samples, 3.18%)</title><rect x="36.0059%" y="693" width="3.1760%" height="15" fill="rgb(213,57,7)" fg:x="186358" fg:w="16438"/><text x="36.2559%" y="703.50">btr..</text></g><g><title>start_transaction (536 samples, 0.10%)</title><rect x="39.0782%" y="677" width="0.1036%" height="15" fill="rgb(216,148,1)" fg:x="202260" fg:w="536"/><text x="39.3282%" y="687.50"></text></g><g><title>kmem_cache_alloc (179 samples, 0.03%)</title><rect x="39.1472%" y="661" width="0.0346%" height="15" fill="rgb(236,182,29)" fg:x="202617" fg:w="179"/><text x="39.3972%" y="671.50"></text></g><g><title>btrfs_get_32 (74 samples, 0.01%)</title><rect x="39.2052%" y="661" width="0.0143%" height="15" fill="rgb(244,120,48)" fg:x="202917" fg:w="74"/><text x="39.4552%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (162 samples, 0.03%)</title><rect x="39.2195%" y="661" width="0.0313%" height="15" fill="rgb(206,71,34)" fg:x="202991" fg:w="162"/><text x="39.4695%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (114 samples, 0.02%)</title><rect x="39.2288%" y="645" width="0.0220%" height="15" fill="rgb(242,32,6)" fg:x="203039" fg:w="114"/><text x="39.4788%" y="655.50"></text></g><g><title>leaf_space_used (110 samples, 0.02%)</title><rect x="39.2510%" y="661" width="0.0213%" height="15" fill="rgb(241,35,3)" fg:x="203154" fg:w="110"/><text x="39.5010%" y="671.50"></text></g><g><title>btrfs_get_32 (83 samples, 0.02%)</title><rect x="39.2562%" y="645" width="0.0160%" height="15" fill="rgb(222,62,19)" fg:x="203181" fg:w="83"/><text x="39.5062%" y="655.50"></text></g><g><title>btrfs_del_items (441 samples, 0.09%)</title><rect x="39.1872%" y="677" width="0.0852%" height="15" fill="rgb(223,110,41)" fg:x="202824" fg:w="441"/><text x="39.4372%" y="687.50"></text></g><g><title>btrfs_tree_unlock (120 samples, 0.02%)</title><rect x="39.2830%" y="645" width="0.0232%" height="15" fill="rgb(208,224,4)" fg:x="203320" fg:w="120"/><text x="39.5330%" y="655.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="39.3136%" y="629" width="0.0259%" height="15" fill="rgb(241,137,19)" fg:x="203478" fg:w="134"/><text x="39.5636%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (165 samples, 0.03%)</title><rect x="39.3078%" y="645" width="0.0319%" height="15" fill="rgb(244,24,17)" fg:x="203448" fg:w="165"/><text x="39.5578%" y="655.50"></text></g><g><title>btrfs_free_path (519 samples, 0.10%)</title><rect x="39.2724%" y="677" width="0.1003%" height="15" fill="rgb(245,178,49)" fg:x="203265" fg:w="519"/><text x="39.5224%" y="687.50"></text></g><g><title>btrfs_release_path (513 samples, 0.10%)</title><rect x="39.2736%" y="661" width="0.0991%" height="15" fill="rgb(219,160,38)" fg:x="203271" fg:w="513"/><text x="39.5236%" y="671.50"></text></g><g><title>release_extent_buffer (171 samples, 0.03%)</title><rect x="39.3397%" y="645" width="0.0330%" height="15" fill="rgb(228,137,14)" fg:x="203613" fg:w="171"/><text x="39.5897%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (71 samples, 0.01%)</title><rect x="39.4334%" y="645" width="0.0137%" height="15" fill="rgb(237,134,11)" fg:x="204098" fg:w="71"/><text x="39.6834%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (156 samples, 0.03%)</title><rect x="39.4301%" y="661" width="0.0301%" height="15" fill="rgb(211,126,44)" fg:x="204081" fg:w="156"/><text x="39.6801%" y="671.50"></text></g><g><title>btrfs_root_node (68 samples, 0.01%)</title><rect x="39.4471%" y="645" width="0.0131%" height="15" fill="rgb(226,171,33)" fg:x="204169" fg:w="68"/><text x="39.6971%" y="655.50"></text></g><g><title>btrfs_read_node_slot (73 samples, 0.01%)</title><rect x="39.4782%" y="645" width="0.0141%" height="15" fill="rgb(253,99,13)" fg:x="204330" fg:w="73"/><text x="39.7282%" y="655.50"></text></g><g><title>balance_level (207 samples, 0.04%)</title><rect x="39.4610%" y="661" width="0.0400%" height="15" fill="rgb(244,48,7)" fg:x="204241" fg:w="207"/><text x="39.7110%" y="671.50"></text></g><g><title>_raw_write_lock (56 samples, 0.01%)</title><rect x="39.5151%" y="629" width="0.0108%" height="15" fill="rgb(244,217,54)" fg:x="204521" fg:w="56"/><text x="39.7651%" y="639.50"></text></g><g><title>__btrfs_tree_lock (108 samples, 0.02%)</title><rect x="39.5064%" y="645" width="0.0209%" height="15" fill="rgb(224,15,18)" fg:x="204476" fg:w="108"/><text x="39.7564%" y="655.50"></text></g><g><title>btrfs_lock_root_node (182 samples, 0.04%)</title><rect x="39.5047%" y="661" width="0.0352%" height="15" fill="rgb(244,99,12)" fg:x="204467" fg:w="182"/><text x="39.7547%" y="671.50"></text></g><g><title>btrfs_root_node (65 samples, 0.01%)</title><rect x="39.5273%" y="645" width="0.0126%" height="15" fill="rgb(233,226,8)" fg:x="204584" fg:w="65"/><text x="39.7773%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (140 samples, 0.03%)</title><rect x="39.5398%" y="661" width="0.0270%" height="15" fill="rgb(229,211,3)" fg:x="204649" fg:w="140"/><text x="39.7898%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (111 samples, 0.02%)</title><rect x="39.5767%" y="661" width="0.0214%" height="15" fill="rgb(216,140,21)" fg:x="204840" fg:w="111"/><text x="39.8267%" y="671.50"></text></g><g><title>_raw_write_lock (92 samples, 0.02%)</title><rect x="39.5804%" y="645" width="0.0178%" height="15" fill="rgb(234,122,30)" fg:x="204859" fg:w="92"/><text x="39.8304%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (56 samples, 0.01%)</title><rect x="39.5982%" y="661" width="0.0108%" height="15" fill="rgb(236,25,46)" fg:x="204951" fg:w="56"/><text x="39.8482%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (737 samples, 0.14%)</title><rect x="39.6090%" y="661" width="0.1424%" height="15" fill="rgb(217,52,54)" fg:x="205007" fg:w="737"/><text x="39.8590%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (58 samples, 0.01%)</title><rect x="39.7833%" y="645" width="0.0112%" height="15" fill="rgb(222,29,26)" fg:x="205909" fg:w="58"/><text x="40.0333%" y="655.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="39.7945%" y="645" width="0.0230%" height="15" fill="rgb(216,177,29)" fg:x="205967" fg:w="119"/><text x="40.0445%" y="655.50"></text></g><g><title>btrfs_verify_level_key (56 samples, 0.01%)</title><rect x="39.8190%" y="645" width="0.0108%" height="15" fill="rgb(247,136,51)" fg:x="206094" fg:w="56"/><text x="40.0690%" y="655.50"></text></g><g><title>__radix_tree_lookup (443 samples, 0.09%)</title><rect x="39.8600%" y="629" width="0.0856%" height="15" fill="rgb(231,47,47)" fg:x="206306" fg:w="443"/><text x="40.1100%" y="639.50"></text></g><g><title>check_buffer_tree_ref (66 samples, 0.01%)</title><rect x="39.9546%" y="613" width="0.0128%" height="15" fill="rgb(211,192,36)" fg:x="206796" fg:w="66"/><text x="40.2046%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (258 samples, 0.05%)</title><rect x="39.9461%" y="629" width="0.0498%" height="15" fill="rgb(229,156,32)" fg:x="206752" fg:w="258"/><text x="40.1961%" y="639.50"></text></g><g><title>mark_page_accessed (148 samples, 0.03%)</title><rect x="39.9674%" y="613" width="0.0286%" height="15" fill="rgb(248,213,20)" fg:x="206862" fg:w="148"/><text x="40.2174%" y="623.50"></text></g><g><title>find_extent_buffer (868 samples, 0.17%)</title><rect x="39.8298%" y="645" width="0.1677%" height="15" fill="rgb(217,64,7)" fg:x="206150" fg:w="868"/><text x="40.0798%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,444 samples, 0.28%)</title><rect x="39.7514%" y="661" width="0.2790%" height="15" fill="rgb(232,142,8)" fg:x="205744" fg:w="1444"/><text x="40.0014%" y="671.50"></text></g><g><title>read_extent_buffer (170 samples, 0.03%)</title><rect x="39.9975%" y="645" width="0.0328%" height="15" fill="rgb(224,92,44)" fg:x="207018" fg:w="170"/><text x="40.2475%" y="655.50"></text></g><g><title>btrfs_get_64 (56 samples, 0.01%)</title><rect x="40.0406%" y="645" width="0.0108%" height="15" fill="rgb(214,169,17)" fg:x="207241" fg:w="56"/><text x="40.2906%" y="655.50"></text></g><g><title>__radix_tree_lookup (99 samples, 0.02%)</title><rect x="40.0580%" y="629" width="0.0191%" height="15" fill="rgb(210,59,37)" fg:x="207331" fg:w="99"/><text x="40.3080%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (70 samples, 0.01%)</title><rect x="40.0773%" y="629" width="0.0135%" height="15" fill="rgb(214,116,48)" fg:x="207431" fg:w="70"/><text x="40.3273%" y="639.50"></text></g><g><title>find_extent_buffer (205 samples, 0.04%)</title><rect x="40.0514%" y="645" width="0.0396%" height="15" fill="rgb(244,191,6)" fg:x="207297" fg:w="205"/><text x="40.3014%" y="655.50"></text></g><g><title>reada_for_balance (397 samples, 0.08%)</title><rect x="40.0304%" y="661" width="0.0767%" height="15" fill="rgb(241,50,52)" fg:x="207188" fg:w="397"/><text x="40.2804%" y="671.50"></text></g><g><title>btrfs_search_slot (4,059 samples, 0.78%)</title><rect x="39.3727%" y="677" width="0.7842%" height="15" fill="rgb(236,75,39)" fg:x="203784" fg:w="4059"/><text x="39.6227%" y="687.50"></text></g><g><title>unlock_up (214 samples, 0.04%)</title><rect x="40.1156%" y="661" width="0.0413%" height="15" fill="rgb(236,99,0)" fg:x="207629" fg:w="214"/><text x="40.3656%" y="671.50"></text></g><g><title>btrfs_tree_unlock (54 samples, 0.01%)</title><rect x="40.1465%" y="645" width="0.0104%" height="15" fill="rgb(207,202,15)" fg:x="207789" fg:w="54"/><text x="40.3965%" y="655.50"></text></g><g><title>kmem_cache_alloc (166 samples, 0.03%)</title><rect x="40.1569%" y="677" width="0.0321%" height="15" fill="rgb(233,207,14)" fg:x="207843" fg:w="166"/><text x="40.4069%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (5,316 samples, 1.03%)</title><rect x="39.1818%" y="693" width="1.0271%" height="15" fill="rgb(226,27,51)" fg:x="202796" fg:w="5316"/><text x="39.4318%" y="703.50"></text></g><g><title>kmem_cache_free (103 samples, 0.02%)</title><rect x="40.1890%" y="677" width="0.0199%" height="15" fill="rgb(206,104,42)" fg:x="208009" fg:w="103"/><text x="40.4390%" y="687.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.02%)</title><rect x="40.2203%" y="661" width="0.0242%" height="15" fill="rgb(212,225,4)" fg:x="208171" fg:w="125"/><text x="40.4703%" y="671.50"></text></g><g><title>btrfs_free_block_rsv (212 samples, 0.04%)</title><rect x="40.2097%" y="693" width="0.0410%" height="15" fill="rgb(233,96,42)" fg:x="208116" fg:w="212"/><text x="40.4597%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (208 samples, 0.04%)</title><rect x="40.2104%" y="677" width="0.0402%" height="15" fill="rgb(229,21,32)" fg:x="208120" fg:w="208"/><text x="40.4604%" y="687.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="40.3320%" y="661" width="0.0126%" height="15" fill="rgb(226,216,24)" fg:x="208749" fg:w="65"/><text x="40.5820%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (233 samples, 0.05%)</title><rect x="40.3117%" y="677" width="0.0450%" height="15" fill="rgb(221,163,17)" fg:x="208644" fg:w="233"/><text x="40.5617%" y="687.50"></text></g><g><title>mutex_unlock (63 samples, 0.01%)</title><rect x="40.3445%" y="661" width="0.0122%" height="15" fill="rgb(216,216,42)" fg:x="208814" fg:w="63"/><text x="40.5945%" y="671.50"></text></g><g><title>memset_erms (63 samples, 0.01%)</title><rect x="40.4106%" y="629" width="0.0122%" height="15" fill="rgb(240,118,7)" fg:x="209156" fg:w="63"/><text x="40.6606%" y="639.50"></text></g><g><title>alloc_extent_state (194 samples, 0.04%)</title><rect x="40.3913%" y="661" width="0.0375%" height="15" fill="rgb(221,67,37)" fg:x="209056" fg:w="194"/><text x="40.6413%" y="671.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="40.3961%" y="645" width="0.0327%" height="15" fill="rgb(241,32,44)" fg:x="209081" fg:w="169"/><text x="40.6461%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (84 samples, 0.02%)</title><rect x="40.4547%" y="629" width="0.0162%" height="15" fill="rgb(235,204,43)" fg:x="209384" fg:w="84"/><text x="40.7047%" y="639.50"></text></g><g><title>__wake_up_common_lock (188 samples, 0.04%)</title><rect x="40.4392%" y="645" width="0.0363%" height="15" fill="rgb(213,116,10)" fg:x="209304" fg:w="188"/><text x="40.6892%" y="655.50"></text></g><g><title>free_extent_state (66 samples, 0.01%)</title><rect x="40.4813%" y="645" width="0.0128%" height="15" fill="rgb(239,15,48)" fg:x="209522" fg:w="66"/><text x="40.7313%" y="655.50"></text></g><g><title>kmem_cache_free (145 samples, 0.03%)</title><rect x="40.4941%" y="645" width="0.0280%" height="15" fill="rgb(207,123,36)" fg:x="209588" fg:w="145"/><text x="40.7441%" y="655.50"></text></g><g><title>clear_state_bit (498 samples, 0.10%)</title><rect x="40.4290%" y="661" width="0.0962%" height="15" fill="rgb(209,103,30)" fg:x="209251" fg:w="498"/><text x="40.6790%" y="671.50"></text></g><g><title>free_extent_state (59 samples, 0.01%)</title><rect x="40.5252%" y="661" width="0.0114%" height="15" fill="rgb(238,100,19)" fg:x="209749" fg:w="59"/><text x="40.7752%" y="671.50"></text></g><g><title>__clear_extent_bit (1,057 samples, 0.20%)</title><rect x="40.3567%" y="677" width="0.2042%" height="15" fill="rgb(244,30,14)" fg:x="208877" fg:w="1057"/><text x="40.6067%" y="687.50"></text></g><g><title>kmem_cache_free (126 samples, 0.02%)</title><rect x="40.5366%" y="661" width="0.0243%" height="15" fill="rgb(249,174,6)" fg:x="209808" fg:w="126"/><text x="40.7866%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (386 samples, 0.07%)</title><rect x="40.7534%" y="597" width="0.0746%" height="15" fill="rgb(235,213,41)" fg:x="210930" fg:w="386"/><text x="41.0034%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (454 samples, 0.09%)</title><rect x="40.7452%" y="613" width="0.0877%" height="15" fill="rgb(213,118,6)" fg:x="210888" fg:w="454"/><text x="40.9952%" y="623.50"></text></g><g><title>__btrfs_add_free_space (529 samples, 0.10%)</title><rect x="40.7375%" y="629" width="0.1022%" height="15" fill="rgb(235,44,51)" fg:x="210848" fg:w="529"/><text x="40.9875%" y="639.50"></text></g><g><title>btrfs_add_delayed_tree_ref (85 samples, 0.02%)</title><rect x="40.8434%" y="629" width="0.0164%" height="15" fill="rgb(217,9,53)" fg:x="211396" fg:w="85"/><text x="41.0934%" y="639.50"></text></g><g><title>btrfs_free_tree_block (711 samples, 0.14%)</title><rect x="40.7369%" y="645" width="0.1374%" height="15" fill="rgb(237,172,34)" fg:x="210845" fg:w="711"/><text x="40.9869%" y="655.50"></text></g><g><title>check_ref_cleanup (68 samples, 0.01%)</title><rect x="40.8612%" y="629" width="0.0131%" height="15" fill="rgb(206,206,11)" fg:x="211488" fg:w="68"/><text x="41.1112%" y="639.50"></text></g><g><title>btrfs_del_leaf (774 samples, 0.15%)</title><rect x="40.7352%" y="661" width="0.1495%" height="15" fill="rgb(214,149,29)" fg:x="210836" fg:w="774"/><text x="40.9852%" y="671.50"></text></g><g><title>btrfs_get_32 (154 samples, 0.03%)</title><rect x="40.8847%" y="661" width="0.0298%" height="15" fill="rgb(208,123,3)" fg:x="211610" fg:w="154"/><text x="41.1347%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,919 samples, 0.37%)</title><rect x="40.9145%" y="661" width="0.3708%" height="15" fill="rgb(229,126,4)" fg:x="211764" fg:w="1919"/><text x="41.1645%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (332 samples, 0.06%)</title><rect x="41.2211%" y="645" width="0.0641%" height="15" fill="rgb(222,92,36)" fg:x="213351" fg:w="332"/><text x="41.4711%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (132 samples, 0.03%)</title><rect x="41.2853%" y="661" width="0.0255%" height="15" fill="rgb(216,39,41)" fg:x="213683" fg:w="132"/><text x="41.5353%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (107 samples, 0.02%)</title><rect x="41.2901%" y="645" width="0.0207%" height="15" fill="rgb(253,127,28)" fg:x="213708" fg:w="107"/><text x="41.5401%" y="655.50"></text></g><g><title>btrfs_set_token_32 (1,942 samples, 0.38%)</title><rect x="41.3125%" y="661" width="0.3752%" height="15" fill="rgb(249,152,51)" fg:x="213824" fg:w="1942"/><text x="41.5625%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (423 samples, 0.08%)</title><rect x="41.6060%" y="645" width="0.0817%" height="15" fill="rgb(209,123,42)" fg:x="215343" fg:w="423"/><text x="41.8560%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (159 samples, 0.03%)</title><rect x="41.7001%" y="645" width="0.0307%" height="15" fill="rgb(241,118,22)" fg:x="215830" fg:w="159"/><text x="41.9501%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (92 samples, 0.02%)</title><rect x="41.7130%" y="629" width="0.0178%" height="15" fill="rgb(208,25,7)" fg:x="215897" fg:w="92"/><text x="41.9630%" y="639.50"></text></g><g><title>tree_mod_log_insert_key (63 samples, 0.01%)</title><rect x="41.7308%" y="645" width="0.0122%" height="15" fill="rgb(243,144,39)" fg:x="215989" fg:w="63"/><text x="41.9808%" y="655.50"></text></g><g><title>fixup_low_keys (338 samples, 0.07%)</title><rect x="41.6956%" y="661" width="0.0653%" height="15" fill="rgb(250,50,5)" fg:x="215807" fg:w="338"/><text x="41.9456%" y="671.50"></text></g><g><title>write_extent_buffer (93 samples, 0.02%)</title><rect x="41.7430%" y="645" width="0.0180%" height="15" fill="rgb(207,67,11)" fg:x="216052" fg:w="93"/><text x="41.9930%" y="655.50"></text></g><g><title>leaf_space_used (148 samples, 0.03%)</title><rect x="41.7640%" y="661" width="0.0286%" height="15" fill="rgb(245,204,40)" fg:x="216161" fg:w="148"/><text x="42.0140%" y="671.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="41.7725%" y="645" width="0.0201%" height="15" fill="rgb(238,228,24)" fg:x="216205" fg:w="104"/><text x="42.0225%" y="655.50"></text></g><g><title>memcpy_extent_buffer (298 samples, 0.06%)</title><rect x="41.7926%" y="661" width="0.0576%" height="15" fill="rgb(217,116,22)" fg:x="216309" fg:w="298"/><text x="42.0426%" y="671.50"></text></g><g><title>memmove (238 samples, 0.05%)</title><rect x="41.8042%" y="645" width="0.0460%" height="15" fill="rgb(234,98,12)" fg:x="216369" fg:w="238"/><text x="42.0542%" y="655.50"></text></g><g><title>copy_pages (277 samples, 0.05%)</title><rect x="41.8751%" y="645" width="0.0535%" height="15" fill="rgb(242,170,50)" fg:x="216736" fg:w="277"/><text x="42.1251%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,271 samples, 0.44%)</title><rect x="41.8502%" y="661" width="0.4388%" height="15" fill="rgb(235,7,5)" fg:x="216607" fg:w="2271"/><text x="42.1002%" y="671.50"></text></g><g><title>memmove (1,865 samples, 0.36%)</title><rect x="41.9286%" y="645" width="0.3603%" height="15" fill="rgb(241,114,28)" fg:x="217013" fg:w="1865"/><text x="42.1786%" y="655.50"></text></g><g><title>clear_extent_buffer_dirty (66 samples, 0.01%)</title><rect x="42.3143%" y="629" width="0.0128%" height="15" fill="rgb(246,112,42)" fg:x="219009" fg:w="66"/><text x="42.5643%" y="639.50"></text></g><g><title>__push_leaf_left (221 samples, 0.04%)</title><rect x="42.2903%" y="645" width="0.0427%" height="15" fill="rgb(248,228,14)" fg:x="218885" fg:w="221"/><text x="42.5403%" y="655.50"></text></g><g><title>btrfs_read_node_slot (60 samples, 0.01%)</title><rect x="42.3373%" y="645" width="0.0116%" height="15" fill="rgb(208,133,18)" fg:x="219128" fg:w="60"/><text x="42.5873%" y="655.50"></text></g><g><title>push_leaf_left (319 samples, 0.06%)</title><rect x="42.2890%" y="661" width="0.0616%" height="15" fill="rgb(207,35,49)" fg:x="218878" fg:w="319"/><text x="42.5390%" y="671.50"></text></g><g><title>__push_leaf_right (242 samples, 0.05%)</title><rect x="42.3549%" y="645" width="0.0468%" height="15" fill="rgb(205,68,36)" fg:x="219219" fg:w="242"/><text x="42.6049%" y="655.50"></text></g><g><title>alloc_extent_buffer (52 samples, 0.01%)</title><rect x="42.4194%" y="613" width="0.0100%" height="15" fill="rgb(245,62,40)" fg:x="219553" fg:w="52"/><text x="42.6694%" y="623.50"></text></g><g><title>btrfs_read_node_slot (98 samples, 0.02%)</title><rect x="42.4144%" y="645" width="0.0189%" height="15" fill="rgb(228,27,24)" fg:x="219527" fg:w="98"/><text x="42.6644%" y="655.50"></text></g><g><title>read_tree_block (74 samples, 0.01%)</title><rect x="42.4190%" y="629" width="0.0143%" height="15" fill="rgb(253,19,12)" fg:x="219551" fg:w="74"/><text x="42.6690%" y="639.50"></text></g><g><title>push_leaf_right (462 samples, 0.09%)</title><rect x="42.3506%" y="661" width="0.0893%" height="15" fill="rgb(232,28,20)" fg:x="219197" fg:w="462"/><text x="42.6006%" y="671.50"></text></g><g><title>read_extent_buffer (81 samples, 0.02%)</title><rect x="42.4399%" y="661" width="0.0156%" height="15" fill="rgb(218,35,51)" fg:x="219659" fg:w="81"/><text x="42.6899%" y="671.50"></text></g><g><title>btrfs_del_items (9,846 samples, 1.90%)</title><rect x="40.5615%" y="677" width="1.9023%" height="15" fill="rgb(212,90,40)" fg:x="209937" fg:w="9846"/><text x="40.8115%" y="687.50">b..</text></g><g><title>_raw_write_lock (67 samples, 0.01%)</title><rect x="42.4745%" y="661" width="0.0129%" height="15" fill="rgb(220,172,12)" fg:x="219838" fg:w="67"/><text x="42.7245%" y="671.50"></text></g><g><title>memset_erms (140 samples, 0.03%)</title><rect x="42.5427%" y="629" width="0.0270%" height="15" fill="rgb(226,159,20)" fg:x="220191" fg:w="140"/><text x="42.7927%" y="639.50"></text></g><g><title>alloc_extent_map (511 samples, 0.10%)</title><rect x="42.4874%" y="661" width="0.0987%" height="15" fill="rgb(234,205,16)" fg:x="219905" fg:w="511"/><text x="42.7374%" y="671.50"></text></g><g><title>kmem_cache_alloc (463 samples, 0.09%)</title><rect x="42.4967%" y="645" width="0.0895%" height="15" fill="rgb(207,9,39)" fg:x="219953" fg:w="463"/><text x="42.7467%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (85 samples, 0.02%)</title><rect x="42.5697%" y="629" width="0.0164%" height="15" fill="rgb(249,143,15)" fg:x="220331" fg:w="85"/><text x="42.8197%" y="639.50"></text></g><g><title>free_extent_map (109 samples, 0.02%)</title><rect x="42.5861%" y="661" width="0.0211%" height="15" fill="rgb(253,133,29)" fg:x="220416" fg:w="109"/><text x="42.8361%" y="671.50"></text></g><g><title>kmem_cache_free (256 samples, 0.05%)</title><rect x="42.6072%" y="661" width="0.0495%" height="15" fill="rgb(221,187,0)" fg:x="220525" fg:w="256"/><text x="42.8572%" y="671.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (63 samples, 0.01%)</title><rect x="42.6445%" y="645" width="0.0122%" height="15" fill="rgb(205,204,26)" fg:x="220718" fg:w="63"/><text x="42.8945%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (1,000 samples, 0.19%)</title><rect x="42.4638%" y="677" width="0.1932%" height="15" fill="rgb(224,68,54)" fg:x="219783" fg:w="1000"/><text x="42.7138%" y="687.50"></text></g><g><title>btrfs_tree_unlock (133 samples, 0.03%)</title><rect x="42.6725%" y="645" width="0.0257%" height="15" fill="rgb(209,67,4)" fg:x="220863" fg:w="133"/><text x="42.9225%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (176 samples, 0.03%)</title><rect x="42.6992%" y="645" width="0.0340%" height="15" fill="rgb(228,229,18)" fg:x="221001" fg:w="176"/><text x="42.9492%" y="655.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="42.7073%" y="629" width="0.0259%" height="15" fill="rgb(231,89,13)" fg:x="221043" fg:w="134"/><text x="42.9573%" y="639.50"></text></g><g><title>btrfs_free_path (585 samples, 0.11%)</title><rect x="42.6570%" y="677" width="0.1130%" height="15" fill="rgb(210,182,18)" fg:x="220783" fg:w="585"/><text x="42.9070%" y="687.50"></text></g><g><title>btrfs_release_path (577 samples, 0.11%)</title><rect x="42.6586%" y="661" width="0.1115%" height="15" fill="rgb(240,105,2)" fg:x="220791" fg:w="577"/><text x="42.9086%" y="671.50"></text></g><g><title>release_extent_buffer (191 samples, 0.04%)</title><rect x="42.7332%" y="645" width="0.0369%" height="15" fill="rgb(207,170,50)" fg:x="221177" fg:w="191"/><text x="42.9832%" y="655.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="42.8066%" y="629" width="0.0120%" height="15" fill="rgb(232,133,24)" fg:x="221557" fg:w="62"/><text x="43.0566%" y="639.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="42.8487%" y="597" width="0.0126%" height="15" fill="rgb(235,166,27)" fg:x="221775" fg:w="65"/><text x="43.0987%" y="607.50"></text></g><g><title>alloc_extent_state (260 samples, 0.05%)</title><rect x="42.8186%" y="629" width="0.0502%" height="15" fill="rgb(209,19,13)" fg:x="221619" fg:w="260"/><text x="43.0686%" y="639.50"></text></g><g><title>kmem_cache_alloc (237 samples, 0.05%)</title><rect x="42.8230%" y="613" width="0.0458%" height="15" fill="rgb(226,79,39)" fg:x="221642" fg:w="237"/><text x="43.0730%" y="623.50"></text></g><g><title>free_extent_state (53 samples, 0.01%)</title><rect x="42.8688%" y="629" width="0.0102%" height="15" fill="rgb(222,163,10)" fg:x="221879" fg:w="53"/><text x="43.1188%" y="639.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (609 samples, 0.12%)</title><rect x="42.7890%" y="677" width="0.1177%" height="15" fill="rgb(214,44,19)" fg:x="221466" fg:w="609"/><text x="43.0390%" y="687.50"></text></g><g><title>clear_extent_bit (564 samples, 0.11%)</title><rect x="42.7977%" y="661" width="0.1090%" height="15" fill="rgb(210,217,13)" fg:x="221511" fg:w="564"/><text x="43.0477%" y="671.50"></text></g><g><title>__clear_extent_bit (560 samples, 0.11%)</title><rect x="42.7985%" y="645" width="0.1082%" height="15" fill="rgb(237,61,54)" fg:x="221515" fg:w="560"/><text x="43.0485%" y="655.50"></text></g><g><title>kmem_cache_free (143 samples, 0.03%)</title><rect x="42.8790%" y="629" width="0.0276%" height="15" fill="rgb(226,184,24)" fg:x="221932" fg:w="143"/><text x="43.1290%" y="639.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="42.9125%" y="661" width="0.0100%" height="15" fill="rgb(223,226,4)" fg:x="222105" fg:w="52"/><text x="43.1625%" y="671.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="42.9271%" y="645" width="0.0102%" height="15" fill="rgb(210,26,41)" fg:x="222181" fg:w="53"/><text x="43.1771%" y="655.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (164 samples, 0.03%)</title><rect x="42.9067%" y="677" width="0.0317%" height="15" fill="rgb(220,221,6)" fg:x="222075" fg:w="164"/><text x="43.1567%" y="687.50"></text></g><g><title>find_contiguous_extent_bit (81 samples, 0.02%)</title><rect x="42.9227%" y="661" width="0.0156%" height="15" fill="rgb(225,89,49)" fg:x="222158" fg:w="81"/><text x="43.1727%" y="671.50"></text></g><g><title>__btrfs_kill_delayed_node (97 samples, 0.02%)</title><rect x="42.9447%" y="661" width="0.0187%" height="15" fill="rgb(218,70,45)" fg:x="222272" fg:w="97"/><text x="43.1947%" y="671.50"></text></g><g><title>mutex_lock (74 samples, 0.01%)</title><rect x="42.9492%" y="645" width="0.0143%" height="15" fill="rgb(238,166,21)" fg:x="222295" fg:w="74"/><text x="43.1992%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (70 samples, 0.01%)</title><rect x="42.9635%" y="661" width="0.0135%" height="15" fill="rgb(224,141,44)" fg:x="222369" fg:w="70"/><text x="43.2135%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (264 samples, 0.05%)</title><rect x="42.9383%" y="677" width="0.0510%" height="15" fill="rgb(230,12,49)" fg:x="222239" fg:w="264"/><text x="43.1883%" y="687.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="42.9770%" y="661" width="0.0124%" height="15" fill="rgb(212,174,12)" fg:x="222439" fg:w="64"/><text x="43.2270%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (73 samples, 0.01%)</title><rect x="43.0525%" y="645" width="0.0141%" height="15" fill="rgb(246,67,9)" fg:x="222830" fg:w="73"/><text x="43.3025%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (169 samples, 0.03%)</title><rect x="43.0500%" y="661" width="0.0327%" height="15" fill="rgb(239,35,23)" fg:x="222817" fg:w="169"/><text x="43.3000%" y="671.50"></text></g><g><title>btrfs_root_node (83 samples, 0.02%)</title><rect x="43.0666%" y="645" width="0.0160%" height="15" fill="rgb(211,167,0)" fg:x="222903" fg:w="83"/><text x="43.3166%" y="655.50"></text></g><g><title>btrfs_read_node_slot (88 samples, 0.02%)</title><rect x="43.1043%" y="645" width="0.0170%" height="15" fill="rgb(225,119,45)" fg:x="223098" fg:w="88"/><text x="43.3543%" y="655.50"></text></g><g><title>read_tree_block (66 samples, 0.01%)</title><rect x="43.1086%" y="629" width="0.0128%" height="15" fill="rgb(210,162,6)" fg:x="223120" fg:w="66"/><text x="43.3586%" y="639.50"></text></g><g><title>balance_level (246 samples, 0.05%)</title><rect x="43.0848%" y="661" width="0.0475%" height="15" fill="rgb(208,118,35)" fg:x="222997" fg:w="246"/><text x="43.3348%" y="671.50"></text></g><g><title>_raw_write_lock (76 samples, 0.01%)</title><rect x="43.1499%" y="629" width="0.0147%" height="15" fill="rgb(239,4,53)" fg:x="223334" fg:w="76"/><text x="43.3999%" y="639.50"></text></g><g><title>__btrfs_tree_lock (114 samples, 0.02%)</title><rect x="43.1428%" y="645" width="0.0220%" height="15" fill="rgb(213,130,21)" fg:x="223297" fg:w="114"/><text x="43.3928%" y="655.50"></text></g><g><title>btrfs_lock_root_node (172 samples, 0.03%)</title><rect x="43.1412%" y="661" width="0.0332%" height="15" fill="rgb(235,148,0)" fg:x="223289" fg:w="172"/><text x="43.3912%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (150 samples, 0.03%)</title><rect x="43.1744%" y="661" width="0.0290%" height="15" fill="rgb(244,224,18)" fg:x="223461" fg:w="150"/><text x="43.4244%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (66 samples, 0.01%)</title><rect x="43.2034%" y="661" width="0.0128%" height="15" fill="rgb(211,214,4)" fg:x="223611" fg:w="66"/><text x="43.4534%" y="671.50"></text></g><g><title>_raw_write_lock (85 samples, 0.02%)</title><rect x="43.2218%" y="645" width="0.0164%" height="15" fill="rgb(206,119,25)" fg:x="223706" fg:w="85"/><text x="43.4718%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (118 samples, 0.02%)</title><rect x="43.2162%" y="661" width="0.0228%" height="15" fill="rgb(243,93,47)" fg:x="223677" fg:w="118"/><text x="43.4662%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (72 samples, 0.01%)</title><rect x="43.2394%" y="661" width="0.0139%" height="15" fill="rgb(224,194,6)" fg:x="223797" fg:w="72"/><text x="43.4894%" y="671.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="43.2415%" y="645" width="0.0118%" height="15" fill="rgb(243,229,6)" fg:x="223808" fg:w="61"/><text x="43.4915%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (808 samples, 0.16%)</title><rect x="43.2533%" y="661" width="0.1561%" height="15" fill="rgb(207,23,50)" fg:x="223869" fg:w="808"/><text x="43.5033%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (64 samples, 0.01%)</title><rect x="43.4384%" y="645" width="0.0124%" height="15" fill="rgb(253,192,32)" fg:x="224827" fg:w="64"/><text x="43.6884%" y="655.50"></text></g><g><title>btrfs_get_64 (101 samples, 0.02%)</title><rect x="43.4507%" y="645" width="0.0195%" height="15" fill="rgb(213,21,6)" fg:x="224891" fg:w="101"/><text x="43.7007%" y="655.50"></text></g><g><title>__radix_tree_lookup (439 samples, 0.08%)</title><rect x="43.5046%" y="629" width="0.0848%" height="15" fill="rgb(243,151,13)" fg:x="225170" fg:w="439"/><text x="43.7546%" y="639.50"></text></g><g><title>check_buffer_tree_ref (63 samples, 0.01%)</title><rect x="43.5997%" y="613" width="0.0122%" height="15" fill="rgb(233,165,41)" fg:x="225662" fg:w="63"/><text x="43.8497%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (279 samples, 0.05%)</title><rect x="43.5900%" y="629" width="0.0539%" height="15" fill="rgb(246,176,45)" fg:x="225612" fg:w="279"/><text x="43.8400%" y="639.50"></text></g><g><title>mark_page_accessed (166 samples, 0.03%)</title><rect x="43.6119%" y="613" width="0.0321%" height="15" fill="rgb(217,170,52)" fg:x="225725" fg:w="166"/><text x="43.8619%" y="623.50"></text></g><g><title>find_extent_buffer (850 samples, 0.16%)</title><rect x="43.4805%" y="645" width="0.1642%" height="15" fill="rgb(214,203,54)" fg:x="225045" fg:w="850"/><text x="43.7305%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,370 samples, 0.26%)</title><rect x="43.4094%" y="661" width="0.2647%" height="15" fill="rgb(248,215,49)" fg:x="224677" fg:w="1370"/><text x="43.6594%" y="671.50"></text></g><g><title>read_extent_buffer (152 samples, 0.03%)</title><rect x="43.6447%" y="645" width="0.0294%" height="15" fill="rgb(208,46,10)" fg:x="225895" fg:w="152"/><text x="43.8947%" y="655.50"></text></g><g><title>btrfs_get_64 (57 samples, 0.01%)</title><rect x="43.6870%" y="645" width="0.0110%" height="15" fill="rgb(254,5,31)" fg:x="226114" fg:w="57"/><text x="43.9370%" y="655.50"></text></g><g><title>__radix_tree_lookup (160 samples, 0.03%)</title><rect x="43.7087%" y="629" width="0.0309%" height="15" fill="rgb(222,104,33)" fg:x="226226" fg:w="160"/><text x="43.9587%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (99 samples, 0.02%)</title><rect x="43.7398%" y="629" width="0.0191%" height="15" fill="rgb(248,49,16)" fg:x="226387" fg:w="99"/><text x="43.9898%" y="639.50"></text></g><g><title>mark_page_accessed (59 samples, 0.01%)</title><rect x="43.7475%" y="613" width="0.0114%" height="15" fill="rgb(232,198,41)" fg:x="226427" fg:w="59"/><text x="43.9975%" y="623.50"></text></g><g><title>find_extent_buffer (320 samples, 0.06%)</title><rect x="43.6980%" y="645" width="0.0618%" height="15" fill="rgb(214,125,3)" fg:x="226171" fg:w="320"/><text x="43.9480%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (54 samples, 0.01%)</title><rect x="43.7601%" y="645" width="0.0104%" height="15" fill="rgb(229,220,28)" fg:x="226492" fg:w="54"/><text x="44.0101%" y="655.50"></text></g><g><title>reada_for_balance (538 samples, 0.10%)</title><rect x="43.6741%" y="661" width="0.1039%" height="15" fill="rgb(222,64,37)" fg:x="226047" fg:w="538"/><text x="43.9241%" y="671.50"></text></g><g><title>release_extent_buffer (63 samples, 0.01%)</title><rect x="43.7780%" y="661" width="0.0122%" height="15" fill="rgb(249,184,13)" fg:x="226585" fg:w="63"/><text x="44.0280%" y="671.50"></text></g><g><title>btrfs_search_slot (4,308 samples, 0.83%)</title><rect x="42.9923%" y="677" width="0.8323%" height="15" fill="rgb(252,176,6)" fg:x="222518" fg:w="4308"/><text x="43.2423%" y="687.50"></text></g><g><title>unlock_up (178 samples, 0.03%)</title><rect x="43.7902%" y="661" width="0.0344%" height="15" fill="rgb(228,153,7)" fg:x="226648" fg:w="178"/><text x="44.0402%" y="671.50"></text></g><g><title>inode_sub_bytes (93 samples, 0.02%)</title><rect x="43.8246%" y="677" width="0.0180%" height="15" fill="rgb(242,193,5)" fg:x="226826" fg:w="93"/><text x="44.0746%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="43.8302%" y="661" width="0.0124%" height="15" fill="rgb(232,140,9)" fg:x="226855" fg:w="64"/><text x="44.0802%" y="671.50"></text></g><g><title>kmem_cache_alloc (157 samples, 0.03%)</title><rect x="43.8426%" y="677" width="0.0303%" height="15" fill="rgb(213,222,16)" fg:x="226919" fg:w="157"/><text x="44.0926%" y="687.50"></text></g><g><title>kmem_cache_free (139 samples, 0.03%)</title><rect x="43.8729%" y="677" width="0.0269%" height="15" fill="rgb(222,75,50)" fg:x="227076" fg:w="139"/><text x="44.1229%" y="687.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="43.9218%" y="645" width="0.0129%" height="15" fill="rgb(205,180,2)" fg:x="227329" fg:w="67"/><text x="44.1718%" y="655.50"></text></g><g><title>memset_erms (69 samples, 0.01%)</title><rect x="43.9909%" y="613" width="0.0133%" height="15" fill="rgb(216,34,7)" fg:x="227687" fg:w="69"/><text x="44.2409%" y="623.50"></text></g><g><title>alloc_extent_state (402 samples, 0.08%)</title><rect x="43.9347%" y="645" width="0.0777%" height="15" fill="rgb(253,16,32)" fg:x="227396" fg:w="402"/><text x="44.1847%" y="655.50"></text></g><g><title>kmem_cache_alloc (275 samples, 0.05%)</title><rect x="43.9593%" y="629" width="0.0531%" height="15" fill="rgb(208,97,28)" fg:x="227523" fg:w="275"/><text x="44.2093%" y="639.50"></text></g><g><title>lock_extent_bits (714 samples, 0.14%)</title><rect x="43.8997%" y="677" width="0.1380%" height="15" fill="rgb(225,92,11)" fg:x="227215" fg:w="714"/><text x="44.1497%" y="687.50"></text></g><g><title>__set_extent_bit (698 samples, 0.13%)</title><rect x="43.9028%" y="661" width="0.1349%" height="15" fill="rgb(243,38,12)" fg:x="227231" fg:w="698"/><text x="44.1528%" y="671.50"></text></g><g><title>insert_state (87 samples, 0.02%)</title><rect x="44.0209%" y="645" width="0.0168%" height="15" fill="rgb(208,139,16)" fg:x="227842" fg:w="87"/><text x="44.2709%" y="655.50"></text></g><g><title>btrfs_truncate_inode_items (19,762 samples, 3.82%)</title><rect x="40.2566%" y="693" width="3.8182%" height="15" fill="rgb(227,24,9)" fg:x="208359" fg:w="19762"/><text x="40.5066%" y="703.50">btrf..</text></g><g><title>read_extent_buffer (192 samples, 0.04%)</title><rect x="44.0377%" y="677" width="0.0371%" height="15" fill="rgb(206,62,11)" fg:x="227929" fg:w="192"/><text x="44.2877%" y="687.50"></text></g><g><title>_raw_spin_lock (223 samples, 0.04%)</title><rect x="44.1030%" y="661" width="0.0431%" height="15" fill="rgb(228,134,27)" fg:x="228267" fg:w="223"/><text x="44.3530%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (279 samples, 0.05%)</title><rect x="44.0924%" y="677" width="0.0539%" height="15" fill="rgb(205,55,33)" fg:x="228212" fg:w="279"/><text x="44.3424%" y="687.50"></text></g><g><title>_raw_spin_lock (127 samples, 0.02%)</title><rect x="44.1592%" y="661" width="0.0245%" height="15" fill="rgb(243,75,43)" fg:x="228558" fg:w="127"/><text x="44.4092%" y="671.50"></text></g><g><title>btrfs_block_rsv_add_bytes (147 samples, 0.03%)</title><rect x="44.1838%" y="661" width="0.0284%" height="15" fill="rgb(223,27,42)" fg:x="228685" fg:w="147"/><text x="44.4338%" y="671.50"></text></g><g><title>_raw_spin_lock (120 samples, 0.02%)</title><rect x="44.1890%" y="645" width="0.0232%" height="15" fill="rgb(232,189,33)" fg:x="228712" fg:w="120"/><text x="44.4390%" y="655.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="44.2388%" y="629" width="0.0257%" height="15" fill="rgb(210,9,39)" fg:x="228970" fg:w="133"/><text x="44.4888%" y="639.50"></text></g><g><title>_raw_spin_lock (236 samples, 0.05%)</title><rect x="44.3978%" y="597" width="0.0456%" height="15" fill="rgb(242,85,26)" fg:x="229793" fg:w="236"/><text x="44.6478%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (927 samples, 0.18%)</title><rect x="44.2647%" y="629" width="0.1791%" height="15" fill="rgb(248,44,4)" fg:x="229104" fg:w="927"/><text x="44.5147%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (532 samples, 0.10%)</title><rect x="44.3410%" y="613" width="0.1028%" height="15" fill="rgb(250,96,46)" fg:x="229499" fg:w="532"/><text x="44.5910%" y="623.50"></text></g><g><title>_raw_spin_lock (82 samples, 0.02%)</title><rect x="44.5111%" y="597" width="0.0158%" height="15" fill="rgb(229,116,26)" fg:x="230379" fg:w="82"/><text x="44.7611%" y="607.50"></text></g><g><title>btrfs_block_rsv_refill (1,971 samples, 0.38%)</title><rect x="44.1463%" y="677" width="0.3808%" height="15" fill="rgb(246,94,34)" fg:x="228491" fg:w="1971"/><text x="44.3963%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,630 samples, 0.31%)</title><rect x="44.2122%" y="661" width="0.3149%" height="15" fill="rgb(251,73,21)" fg:x="228832" fg:w="1630"/><text x="44.4622%" y="671.50"></text></g><g><title>__reserve_bytes (1,601 samples, 0.31%)</title><rect x="44.2178%" y="645" width="0.3093%" height="15" fill="rgb(254,121,25)" fg:x="228861" fg:w="1601"/><text x="44.4678%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (431 samples, 0.08%)</title><rect x="44.4438%" y="629" width="0.0833%" height="15" fill="rgb(215,161,49)" fg:x="230031" fg:w="431"/><text x="44.6938%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (240 samples, 0.05%)</title><rect x="44.4807%" y="613" width="0.0464%" height="15" fill="rgb(221,43,13)" fg:x="230222" fg:w="240"/><text x="44.7307%" y="623.50"></text></g><g><title>_raw_spin_lock (122 samples, 0.02%)</title><rect x="44.6283%" y="645" width="0.0236%" height="15" fill="rgb(249,5,37)" fg:x="230986" fg:w="122"/><text x="44.8783%" y="655.50"></text></g><g><title>join_transaction (355 samples, 0.07%)</title><rect x="44.5835%" y="661" width="0.0686%" height="15" fill="rgb(226,25,44)" fg:x="230754" fg:w="355"/><text x="44.8335%" y="671.50"></text></g><g><title>memset_erms (112 samples, 0.02%)</title><rect x="44.6826%" y="645" width="0.0216%" height="15" fill="rgb(238,189,16)" fg:x="231267" fg:w="112"/><text x="44.9326%" y="655.50"></text></g><g><title>evict_refill_and_join (3,267 samples, 0.63%)</title><rect x="44.0835%" y="693" width="0.6312%" height="15" fill="rgb(251,186,8)" fg:x="228166" fg:w="3267"/><text x="44.3335%" y="703.50"></text></g><g><title>start_transaction (961 samples, 0.19%)</title><rect x="44.5290%" y="677" width="0.1857%" height="15" fill="rgb(254,34,31)" fg:x="230472" fg:w="961"/><text x="44.7790%" y="687.50"></text></g><g><title>kmem_cache_alloc (324 samples, 0.06%)</title><rect x="44.6521%" y="661" width="0.0626%" height="15" fill="rgb(225,215,27)" fg:x="231109" fg:w="324"/><text x="44.9021%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (54 samples, 0.01%)</title><rect x="44.7043%" y="645" width="0.0104%" height="15" fill="rgb(221,192,48)" fg:x="231379" fg:w="54"/><text x="44.9543%" y="655.50"></text></g><g><title>kfree (151 samples, 0.03%)</title><rect x="44.7159%" y="693" width="0.0292%" height="15" fill="rgb(219,137,20)" fg:x="231439" fg:w="151"/><text x="44.9659%" y="703.50"></text></g><g><title>__slab_free (167 samples, 0.03%)</title><rect x="44.7653%" y="677" width="0.0323%" height="15" fill="rgb(219,84,11)" fg:x="231695" fg:w="167"/><text x="45.0153%" y="687.50"></text></g><g><title>kmem_cache_free (347 samples, 0.07%)</title><rect x="44.7450%" y="693" width="0.0670%" height="15" fill="rgb(224,10,23)" fg:x="231590" fg:w="347"/><text x="44.9950%" y="703.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (58 samples, 0.01%)</title><rect x="44.8009%" y="677" width="0.0112%" height="15" fill="rgb(248,22,39)" fg:x="231879" fg:w="58"/><text x="45.0509%" y="687.50"></text></g><g><title>truncate_inode_pages_final (86 samples, 0.02%)</title><rect x="44.8239%" y="693" width="0.0166%" height="15" fill="rgb(212,154,20)" fg:x="231998" fg:w="86"/><text x="45.0739%" y="703.50"></text></g><g><title>free_unref_page_list (54 samples, 0.01%)</title><rect x="44.8509%" y="645" width="0.0104%" height="15" fill="rgb(236,199,50)" fg:x="232138" fg:w="54"/><text x="45.1009%" y="655.50"></text></g><g><title>__pagevec_release (126 samples, 0.02%)</title><rect x="44.8449%" y="677" width="0.0243%" height="15" fill="rgb(211,9,17)" fg:x="232107" fg:w="126"/><text x="45.0949%" y="687.50"></text></g><g><title>release_pages (124 samples, 0.02%)</title><rect x="44.8453%" y="661" width="0.0240%" height="15" fill="rgb(243,216,36)" fg:x="232109" fg:w="124"/><text x="45.0953%" y="671.50"></text></g><g><title>btrfs_evict_inode (48,394 samples, 9.35%)</title><rect x="35.5369%" y="709" width="9.3501%" height="15" fill="rgb(250,2,10)" fg:x="183931" fg:w="48394"/><text x="35.7869%" y="719.50">btrfs_evict_i..</text></g><g><title>truncate_inode_pages_range (241 samples, 0.05%)</title><rect x="44.8405%" y="693" width="0.0466%" height="15" fill="rgb(226,50,48)" fg:x="232084" fg:w="241"/><text x="45.0905%" y="703.50"></text></g><g><title>clear_inode (80 samples, 0.02%)</title><rect x="44.8870%" y="709" width="0.0155%" height="15" fill="rgb(243,81,16)" fg:x="232325" fg:w="80"/><text x="45.1370%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (59 samples, 0.01%)</title><rect x="44.8911%" y="693" width="0.0114%" height="15" fill="rgb(250,14,2)" fg:x="232346" fg:w="59"/><text x="45.1411%" y="703.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="44.9100%" y="693" width="0.0197%" height="15" fill="rgb(233,135,29)" fg:x="232444" fg:w="102"/><text x="45.1600%" y="703.50"></text></g><g><title>inode_wait_for_writeback (143 samples, 0.03%)</title><rect x="44.9025%" y="709" width="0.0276%" height="15" fill="rgb(224,64,43)" fg:x="232405" fg:w="143"/><text x="45.1525%" y="719.50"></text></g><g><title>evict (49,314 samples, 9.53%)</title><rect x="35.4057%" y="725" width="9.5279%" height="15" fill="rgb(238,84,13)" fg:x="183252" fg:w="49314"/><text x="35.6557%" y="735.50">evict</text></g><g><title>__legitimize_mnt (86 samples, 0.02%)</title><rect x="44.9605%" y="645" width="0.0166%" height="15" fill="rgb(253,48,26)" fg:x="232705" fg:w="86"/><text x="45.2105%" y="655.50"></text></g><g><title>__legitimize_path (168 samples, 0.03%)</title><rect x="44.9566%" y="661" width="0.0325%" height="15" fill="rgb(205,223,31)" fg:x="232685" fg:w="168"/><text x="45.2066%" y="671.50"></text></g><g><title>lockref_get_not_dead (62 samples, 0.01%)</title><rect x="44.9771%" y="645" width="0.0120%" height="15" fill="rgb(221,41,32)" fg:x="232791" fg:w="62"/><text x="45.2271%" y="655.50"></text></g><g><title>complete_walk (214 samples, 0.04%)</title><rect x="44.9518%" y="693" width="0.0413%" height="15" fill="rgb(213,158,31)" fg:x="232660" fg:w="214"/><text x="45.2018%" y="703.50"></text></g><g><title>try_to_unlazy (204 samples, 0.04%)</title><rect x="44.9537%" y="677" width="0.0394%" height="15" fill="rgb(245,126,43)" fg:x="232670" fg:w="204"/><text x="45.2037%" y="687.50"></text></g><g><title>link_path_walk.part.0 (117 samples, 0.02%)</title><rect x="44.9931%" y="693" width="0.0226%" height="15" fill="rgb(227,7,22)" fg:x="232874" fg:w="117"/><text x="45.2431%" y="703.50"></text></g><g><title>__fget_light (253 samples, 0.05%)</title><rect x="45.0289%" y="677" width="0.0489%" height="15" fill="rgb(252,90,44)" fg:x="233059" fg:w="253"/><text x="45.2789%" y="687.50"></text></g><g><title>__fget_files (172 samples, 0.03%)</title><rect x="45.0445%" y="661" width="0.0332%" height="15" fill="rgb(253,91,0)" fg:x="233140" fg:w="172"/><text x="45.2945%" y="671.50"></text></g><g><title>path_init (373 samples, 0.07%)</title><rect x="45.0157%" y="693" width="0.0721%" height="15" fill="rgb(252,175,49)" fg:x="232991" fg:w="373"/><text x="45.2657%" y="703.50"></text></g><g><title>filename_parentat (824 samples, 0.16%)</title><rect x="44.9336%" y="725" width="0.1592%" height="15" fill="rgb(246,150,1)" fg:x="232566" fg:w="824"/><text x="45.1836%" y="735.50"></text></g><g><title>path_parentat (753 samples, 0.15%)</title><rect x="44.9473%" y="709" width="0.1455%" height="15" fill="rgb(241,192,25)" fg:x="232637" fg:w="753"/><text x="45.1973%" y="719.50"></text></g><g><title>ihold (190 samples, 0.04%)</title><rect x="45.0928%" y="725" width="0.0367%" height="15" fill="rgb(239,187,11)" fg:x="233390" fg:w="190"/><text x="45.3428%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (106 samples, 0.02%)</title><rect x="45.1361%" y="709" width="0.0205%" height="15" fill="rgb(218,202,51)" fg:x="233614" fg:w="106"/><text x="45.3861%" y="719.50"></text></g><g><title>iput.part.0 (148 samples, 0.03%)</title><rect x="45.1303%" y="725" width="0.0286%" height="15" fill="rgb(225,176,8)" fg:x="233584" fg:w="148"/><text x="45.3803%" y="735.50"></text></g><g><title>kmem_cache_free (197 samples, 0.04%)</title><rect x="45.1589%" y="725" width="0.0381%" height="15" fill="rgb(219,122,41)" fg:x="233732" fg:w="197"/><text x="45.4089%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (68 samples, 0.01%)</title><rect x="45.1838%" y="709" width="0.0131%" height="15" fill="rgb(248,140,20)" fg:x="233861" fg:w="68"/><text x="45.4338%" y="719.50"></text></g><g><title>mnt_drop_write (117 samples, 0.02%)</title><rect x="45.1969%" y="725" width="0.0226%" height="15" fill="rgb(245,41,37)" fg:x="233929" fg:w="117"/><text x="45.4469%" y="735.50"></text></g><g><title>__mnt_want_write (82 samples, 0.02%)</title><rect x="45.2275%" y="709" width="0.0158%" height="15" fill="rgb(235,82,39)" fg:x="234087" fg:w="82"/><text x="45.4775%" y="719.50"></text></g><g><title>mnt_want_write (136 samples, 0.03%)</title><rect x="45.2196%" y="725" width="0.0263%" height="15" fill="rgb(230,108,42)" fg:x="234046" fg:w="136"/><text x="45.4696%" y="735.50"></text></g><g><title>apparmor_path_unlink (109 samples, 0.02%)</title><rect x="45.2599%" y="709" width="0.0211%" height="15" fill="rgb(215,150,50)" fg:x="234255" fg:w="109"/><text x="45.5099%" y="719.50"></text></g><g><title>security_path_unlink (343 samples, 0.07%)</title><rect x="45.2568%" y="725" width="0.0663%" height="15" fill="rgb(233,212,5)" fg:x="234239" fg:w="343"/><text x="45.5068%" y="735.50"></text></g><g><title>tomoyo_path_unlink (218 samples, 0.04%)</title><rect x="45.2810%" y="709" width="0.0421%" height="15" fill="rgb(245,80,22)" fg:x="234364" fg:w="218"/><text x="45.5310%" y="719.50"></text></g><g><title>tomoyo_path_perm (200 samples, 0.04%)</title><rect x="45.2845%" y="693" width="0.0386%" height="15" fill="rgb(238,129,16)" fg:x="234382" fg:w="200"/><text x="45.5345%" y="703.50"></text></g><g><title>tomoyo_init_request_info (134 samples, 0.03%)</title><rect x="45.2972%" y="677" width="0.0259%" height="15" fill="rgb(240,19,0)" fg:x="234448" fg:w="134"/><text x="45.5472%" y="687.50"></text></g><g><title>up_write (53 samples, 0.01%)</title><rect x="45.3231%" y="725" width="0.0102%" height="15" fill="rgb(232,42,35)" fg:x="234582" fg:w="53"/><text x="45.5731%" y="735.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="45.3577%" y="709" width="0.0116%" height="15" fill="rgb(223,130,24)" fg:x="234761" fg:w="60"/><text x="45.6077%" y="719.50"></text></g><g><title>btrfs_put_transaction (61 samples, 0.01%)</title><rect x="45.4170%" y="677" width="0.0118%" height="15" fill="rgb(237,16,22)" fg:x="235068" fg:w="61"/><text x="45.6670%" y="687.50"></text></g><g><title>_raw_spin_lock (128 samples, 0.02%)</title><rect x="45.4414%" y="645" width="0.0247%" height="15" fill="rgb(248,192,20)" fg:x="235194" fg:w="128"/><text x="45.6914%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (215 samples, 0.04%)</title><rect x="45.4307%" y="677" width="0.0415%" height="15" fill="rgb(233,167,2)" fg:x="235139" fg:w="215"/><text x="45.6807%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (206 samples, 0.04%)</title><rect x="45.4325%" y="661" width="0.0398%" height="15" fill="rgb(252,71,44)" fg:x="235148" fg:w="206"/><text x="45.6825%" y="671.50"></text></g><g><title>__btrfs_end_transaction (603 samples, 0.12%)</title><rect x="45.3764%" y="693" width="0.1165%" height="15" fill="rgb(238,37,47)" fg:x="234858" fg:w="603"/><text x="45.6264%" y="703.50"></text></g><g><title>kmem_cache_free (107 samples, 0.02%)</title><rect x="45.4723%" y="677" width="0.0207%" height="15" fill="rgb(214,202,54)" fg:x="235354" fg:w="107"/><text x="45.7223%" y="687.50"></text></g><g><title>btrfs_tree_unlock (66 samples, 0.01%)</title><rect x="45.6154%" y="629" width="0.0128%" height="15" fill="rgb(254,165,40)" fg:x="236095" fg:w="66"/><text x="45.8654%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="45.6288%" y="629" width="0.0122%" height="15" fill="rgb(246,173,38)" fg:x="236164" fg:w="63"/><text x="45.8788%" y="639.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="45.6309%" y="613" width="0.0100%" height="15" fill="rgb(215,3,27)" fg:x="236175" fg:w="52"/><text x="45.8809%" y="623.50"></text></g><g><title>btrfs_free_path (253 samples, 0.05%)</title><rect x="45.6052%" y="661" width="0.0489%" height="15" fill="rgb(239,169,51)" fg:x="236042" fg:w="253"/><text x="45.8552%" y="671.50"></text></g><g><title>btrfs_release_path (241 samples, 0.05%)</title><rect x="45.6075%" y="645" width="0.0466%" height="15" fill="rgb(212,5,25)" fg:x="236054" fg:w="241"/><text x="45.8575%" y="655.50"></text></g><g><title>release_extent_buffer (68 samples, 0.01%)</title><rect x="45.6409%" y="629" width="0.0131%" height="15" fill="rgb(243,45,17)" fg:x="236227" fg:w="68"/><text x="45.8909%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="45.6842%" y="613" width="0.0168%" height="15" fill="rgb(242,97,9)" fg:x="236451" fg:w="87"/><text x="45.9342%" y="623.50"></text></g><g><title>_raw_read_lock (65 samples, 0.01%)</title><rect x="45.6885%" y="597" width="0.0126%" height="15" fill="rgb(228,71,31)" fg:x="236473" fg:w="65"/><text x="45.9385%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (176 samples, 0.03%)</title><rect x="45.6817%" y="629" width="0.0340%" height="15" fill="rgb(252,184,16)" fg:x="236438" fg:w="176"/><text x="45.9317%" y="639.50"></text></g><g><title>btrfs_root_node (76 samples, 0.01%)</title><rect x="45.7010%" y="613" width="0.0147%" height="15" fill="rgb(236,169,46)" fg:x="236538" fg:w="76"/><text x="45.9510%" y="623.50"></text></g><g><title>__btrfs_tree_lock (87 samples, 0.02%)</title><rect x="45.7207%" y="613" width="0.0168%" height="15" fill="rgb(207,17,47)" fg:x="236640" fg:w="87"/><text x="45.9707%" y="623.50"></text></g><g><title>btrfs_lock_root_node (159 samples, 0.03%)</title><rect x="45.7184%" y="629" width="0.0307%" height="15" fill="rgb(206,201,28)" fg:x="236628" fg:w="159"/><text x="45.9684%" y="639.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="45.7375%" y="613" width="0.0116%" height="15" fill="rgb(224,184,23)" fg:x="236727" fg:w="60"/><text x="45.9875%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (87 samples, 0.02%)</title><rect x="45.7800%" y="629" width="0.0168%" height="15" fill="rgb(208,139,48)" fg:x="236947" fg:w="87"/><text x="46.0300%" y="639.50"></text></g><g><title>find_extent_buffer (56 samples, 0.01%)</title><rect x="45.8034%" y="613" width="0.0108%" height="15" fill="rgb(208,130,10)" fg:x="237068" fg:w="56"/><text x="46.0534%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (100 samples, 0.02%)</title><rect x="45.7969%" y="629" width="0.0193%" height="15" fill="rgb(211,213,45)" fg:x="237034" fg:w="100"/><text x="46.0469%" y="639.50"></text></g><g><title>btrfs_lookup_dir_index_item (918 samples, 0.18%)</title><rect x="45.6541%" y="661" width="0.1774%" height="15" fill="rgb(235,100,30)" fg:x="236295" fg:w="918"/><text x="45.9041%" y="671.50"></text></g><g><title>btrfs_search_slot (899 samples, 0.17%)</title><rect x="45.6577%" y="645" width="0.1737%" height="15" fill="rgb(206,144,31)" fg:x="236314" fg:w="899"/><text x="45.9077%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (73 samples, 0.01%)</title><rect x="45.8695%" y="613" width="0.0141%" height="15" fill="rgb(224,200,26)" fg:x="237410" fg:w="73"/><text x="46.1195%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (145 samples, 0.03%)</title><rect x="45.8666%" y="629" width="0.0280%" height="15" fill="rgb(247,104,53)" fg:x="237395" fg:w="145"/><text x="46.1166%" y="639.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="45.8836%" y="613" width="0.0110%" height="15" fill="rgb(220,14,17)" fg:x="237483" fg:w="57"/><text x="46.1336%" y="623.50"></text></g><g><title>__btrfs_tree_lock (108 samples, 0.02%)</title><rect x="45.8989%" y="613" width="0.0209%" height="15" fill="rgb(230,140,40)" fg:x="237562" fg:w="108"/><text x="46.1489%" y="623.50"></text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="45.9083%" y="597" width="0.0114%" height="15" fill="rgb(229,2,41)" fg:x="237611" fg:w="59"/><text x="46.1583%" y="607.50"></text></g><g><title>btrfs_lock_root_node (176 samples, 0.03%)</title><rect x="45.8971%" y="629" width="0.0340%" height="15" fill="rgb(232,89,16)" fg:x="237553" fg:w="176"/><text x="46.1471%" y="639.50"></text></g><g><title>btrfs_root_node (59 samples, 0.01%)</title><rect x="45.9197%" y="613" width="0.0114%" height="15" fill="rgb(247,59,52)" fg:x="237670" fg:w="59"/><text x="46.1697%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (73 samples, 0.01%)</title><rect x="45.9311%" y="629" width="0.0141%" height="15" fill="rgb(226,110,21)" fg:x="237729" fg:w="73"/><text x="46.1811%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (52 samples, 0.01%)</title><rect x="45.9452%" y="629" width="0.0100%" height="15" fill="rgb(224,176,43)" fg:x="237802" fg:w="52"/><text x="46.1952%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="45.9576%" y="629" width="0.0122%" height="15" fill="rgb(221,73,6)" fg:x="237866" fg:w="63"/><text x="46.2076%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (96 samples, 0.02%)</title><rect x="45.9698%" y="629" width="0.0185%" height="15" fill="rgb(232,78,19)" fg:x="237929" fg:w="96"/><text x="46.2198%" y="639.50"></text></g><g><title>find_extent_buffer (70 samples, 0.01%)</title><rect x="45.9922%" y="613" width="0.0135%" height="15" fill="rgb(233,112,48)" fg:x="238045" fg:w="70"/><text x="46.2422%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (102 samples, 0.02%)</title><rect x="45.9883%" y="629" width="0.0197%" height="15" fill="rgb(243,131,47)" fg:x="238025" fg:w="102"/><text x="46.2383%" y="639.50"></text></g><g><title>btrfs_search_slot (959 samples, 0.19%)</title><rect x="45.8401%" y="645" width="0.1853%" height="15" fill="rgb(226,51,1)" fg:x="237258" fg:w="959"/><text x="46.0901%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (1,042 samples, 0.20%)</title><rect x="45.8314%" y="661" width="0.2013%" height="15" fill="rgb(247,58,7)" fg:x="237213" fg:w="1042"/><text x="46.0814%" y="671.50"></text></g><g><title>btrfs_tree_unlock (70 samples, 0.01%)</title><rect x="46.0469%" y="645" width="0.0135%" height="15" fill="rgb(209,7,32)" fg:x="238328" fg:w="70"/><text x="46.2969%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.01%)</title><rect x="46.0604%" y="645" width="0.0116%" height="15" fill="rgb(209,39,41)" fg:x="238398" fg:w="60"/><text x="46.3104%" y="655.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="46.0616%" y="629" width="0.0104%" height="15" fill="rgb(226,182,46)" fg:x="238404" fg:w="54"/><text x="46.3116%" y="639.50"></text></g><g><title>btrfs_release_path (256 samples, 0.05%)</title><rect x="46.0328%" y="661" width="0.0495%" height="15" fill="rgb(230,219,10)" fg:x="238255" fg:w="256"/><text x="46.2828%" y="671.50"></text></g><g><title>release_extent_buffer (52 samples, 0.01%)</title><rect x="46.0722%" y="645" width="0.0100%" height="15" fill="rgb(227,175,30)" fg:x="238459" fg:w="52"/><text x="46.3222%" y="655.50"></text></g><g><title>memset_erms (57 samples, 0.01%)</title><rect x="46.0994%" y="645" width="0.0110%" height="15" fill="rgb(217,2,50)" fg:x="238600" fg:w="57"/><text x="46.3494%" y="655.50"></text></g><g><title>kmem_cache_alloc (164 samples, 0.03%)</title><rect x="46.0822%" y="661" width="0.0317%" height="15" fill="rgb(229,160,0)" fg:x="238511" fg:w="164"/><text x="46.3322%" y="671.50"></text></g><g><title>kmem_cache_free (90 samples, 0.02%)</title><rect x="46.1139%" y="661" width="0.0174%" height="15" fill="rgb(207,78,37)" fg:x="238675" fg:w="90"/><text x="46.3639%" y="671.50"></text></g><g><title>mutex_lock (135 samples, 0.03%)</title><rect x="46.1313%" y="661" width="0.0261%" height="15" fill="rgb(225,57,0)" fg:x="238765" fg:w="135"/><text x="46.3813%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (3,135 samples, 0.61%)</title><rect x="45.5725%" y="677" width="0.6057%" height="15" fill="rgb(232,154,2)" fg:x="235873" fg:w="3135"/><text x="45.8225%" y="687.50"></text></g><g><title>mutex_unlock (108 samples, 0.02%)</title><rect x="46.1574%" y="661" width="0.0209%" height="15" fill="rgb(241,212,25)" fg:x="238900" fg:w="108"/><text x="46.4074%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (126 samples, 0.02%)</title><rect x="46.2283%" y="613" width="0.0243%" height="15" fill="rgb(226,69,20)" fg:x="239267" fg:w="126"/><text x="46.4783%" y="623.50"></text></g><g><title>_raw_spin_lock (99 samples, 0.02%)</title><rect x="46.2335%" y="597" width="0.0191%" height="15" fill="rgb(247,184,54)" fg:x="239294" fg:w="99"/><text x="46.4835%" y="607.50"></text></g><g><title>btrfs_free_path (368 samples, 0.07%)</title><rect x="46.2067%" y="645" width="0.0711%" height="15" fill="rgb(210,145,0)" fg:x="239155" fg:w="368"/><text x="46.4567%" y="655.50"></text></g><g><title>btrfs_release_path (350 samples, 0.07%)</title><rect x="46.2101%" y="629" width="0.0676%" height="15" fill="rgb(253,82,12)" fg:x="239173" fg:w="350"/><text x="46.4601%" y="639.50"></text></g><g><title>release_extent_buffer (130 samples, 0.03%)</title><rect x="46.2526%" y="613" width="0.0251%" height="15" fill="rgb(245,42,11)" fg:x="239393" fg:w="130"/><text x="46.5026%" y="623.50"></text></g><g><title>_raw_read_lock (76 samples, 0.01%)</title><rect x="46.3421%" y="597" width="0.0147%" height="15" fill="rgb(219,147,32)" fg:x="239856" fg:w="76"/><text x="46.5921%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (127 samples, 0.02%)</title><rect x="46.3324%" y="613" width="0.0245%" height="15" fill="rgb(246,12,7)" fg:x="239806" fg:w="127"/><text x="46.5824%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (384 samples, 0.07%)</title><rect x="46.3264%" y="629" width="0.0742%" height="15" fill="rgb(243,50,9)" fg:x="239775" fg:w="384"/><text x="46.5764%" y="639.50"></text></g><g><title>btrfs_root_node (226 samples, 0.04%)</title><rect x="46.3570%" y="613" width="0.0437%" height="15" fill="rgb(219,149,6)" fg:x="239933" fg:w="226"/><text x="46.6070%" y="623.50"></text></g><g><title>_raw_write_lock (99 samples, 0.02%)</title><rect x="46.4288%" y="597" width="0.0191%" height="15" fill="rgb(241,51,42)" fg:x="240305" fg:w="99"/><text x="46.6788%" y="607.50"></text></g><g><title>__btrfs_tree_lock (181 samples, 0.03%)</title><rect x="46.4132%" y="613" width="0.0350%" height="15" fill="rgb(226,128,27)" fg:x="240224" fg:w="181"/><text x="46.6632%" y="623.50"></text></g><g><title>btrfs_lock_root_node (307 samples, 0.06%)</title><rect x="46.4093%" y="629" width="0.0593%" height="15" fill="rgb(244,144,4)" fg:x="240204" fg:w="307"/><text x="46.6593%" y="639.50"></text></g><g><title>btrfs_root_node (106 samples, 0.02%)</title><rect x="46.4482%" y="613" width="0.0205%" height="15" fill="rgb(221,4,13)" fg:x="240405" fg:w="106"/><text x="46.6982%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (102 samples, 0.02%)</title><rect x="46.4700%" y="629" width="0.0197%" height="15" fill="rgb(208,170,28)" fg:x="240518" fg:w="102"/><text x="46.7200%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (129 samples, 0.02%)</title><rect x="46.4928%" y="629" width="0.0249%" height="15" fill="rgb(226,131,13)" fg:x="240636" fg:w="129"/><text x="46.7428%" y="639.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.02%)</title><rect x="46.4978%" y="613" width="0.0199%" height="15" fill="rgb(215,72,41)" fg:x="240662" fg:w="103"/><text x="46.7478%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (170 samples, 0.03%)</title><rect x="46.5177%" y="629" width="0.0328%" height="15" fill="rgb(243,108,20)" fg:x="240765" fg:w="170"/><text x="46.7677%" y="639.50"></text></g><g><title>__radix_tree_lookup (54 samples, 0.01%)</title><rect x="46.5604%" y="597" width="0.0104%" height="15" fill="rgb(230,189,17)" fg:x="240986" fg:w="54"/><text x="46.8104%" y="607.50"></text></g><g><title>find_extent_buffer (99 samples, 0.02%)</title><rect x="46.5573%" y="613" width="0.0191%" height="15" fill="rgb(220,50,17)" fg:x="240970" fg:w="99"/><text x="46.8073%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (159 samples, 0.03%)</title><rect x="46.5506%" y="629" width="0.0307%" height="15" fill="rgb(248,152,48)" fg:x="240935" fg:w="159"/><text x="46.8006%" y="639.50"></text></g><g><title>release_extent_buffer (108 samples, 0.02%)</title><rect x="46.5815%" y="629" width="0.0209%" height="15" fill="rgb(244,91,11)" fg:x="241095" fg:w="108"/><text x="46.8315%" y="639.50"></text></g><g><title>btrfs_search_slot (1,751 samples, 0.34%)</title><rect x="46.2778%" y="645" width="0.3383%" height="15" fill="rgb(220,157,5)" fg:x="239523" fg:w="1751"/><text x="46.5278%" y="655.50"></text></g><g><title>unlock_up (71 samples, 0.01%)</title><rect x="46.6023%" y="629" width="0.0137%" height="15" fill="rgb(253,137,8)" fg:x="241203" fg:w="71"/><text x="46.8523%" y="639.50"></text></g><g><title>crc32c (55 samples, 0.01%)</title><rect x="46.6161%" y="645" width="0.0106%" height="15" fill="rgb(217,137,51)" fg:x="241274" fg:w="55"/><text x="46.8661%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (52 samples, 0.01%)</title><rect x="46.6561%" y="629" width="0.0100%" height="15" fill="rgb(218,209,53)" fg:x="241481" fg:w="52"/><text x="46.9061%" y="639.50"></text></g><g><title>memset_erms (106 samples, 0.02%)</title><rect x="46.6675%" y="629" width="0.0205%" height="15" fill="rgb(249,137,25)" fg:x="241540" fg:w="106"/><text x="46.9175%" y="639.50"></text></g><g><title>kmem_cache_alloc (387 samples, 0.07%)</title><rect x="46.6267%" y="645" width="0.0748%" height="15" fill="rgb(239,155,26)" fg:x="241329" fg:w="387"/><text x="46.8767%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (70 samples, 0.01%)</title><rect x="46.6879%" y="629" width="0.0135%" height="15" fill="rgb(227,85,46)" fg:x="241646" fg:w="70"/><text x="46.9379%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (2,849 samples, 0.55%)</title><rect x="46.1960%" y="661" width="0.5504%" height="15" fill="rgb(251,107,43)" fg:x="239100" fg:w="2849"/><text x="46.4460%" y="671.50"></text></g><g><title>kmem_cache_free (233 samples, 0.05%)</title><rect x="46.7015%" y="645" width="0.0450%" height="15" fill="rgb(234,170,33)" fg:x="241716" fg:w="233"/><text x="46.9515%" y="655.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (70 samples, 0.01%)</title><rect x="46.7329%" y="629" width="0.0135%" height="15" fill="rgb(206,29,35)" fg:x="241879" fg:w="70"/><text x="46.9829%" y="639.50"></text></g><g><title>mutex_lock (113 samples, 0.02%)</title><rect x="46.7561%" y="661" width="0.0218%" height="15" fill="rgb(227,138,25)" fg:x="241999" fg:w="113"/><text x="47.0061%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (3,194 samples, 0.62%)</title><rect x="46.1782%" y="677" width="0.6171%" height="15" fill="rgb(249,131,35)" fg:x="239008" fg:w="3194"/><text x="46.4282%" y="687.50"></text></g><g><title>mutex_unlock (90 samples, 0.02%)</title><rect x="46.7780%" y="661" width="0.0174%" height="15" fill="rgb(239,6,40)" fg:x="242112" fg:w="90"/><text x="47.0280%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (96 samples, 0.02%)</title><rect x="47.0689%" y="597" width="0.0185%" height="15" fill="rgb(246,136,47)" fg:x="243618" fg:w="96"/><text x="47.3189%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (109 samples, 0.02%)</title><rect x="47.0676%" y="613" width="0.0211%" height="15" fill="rgb(253,58,26)" fg:x="243611" fg:w="109"/><text x="47.3176%" y="623.50"></text></g><g><title>__btrfs_add_free_space (120 samples, 0.02%)</title><rect x="47.0670%" y="629" width="0.0232%" height="15" fill="rgb(237,141,10)" fg:x="243608" fg:w="120"/><text x="47.3170%" y="639.50"></text></g><g><title>btrfs_free_tree_block (173 samples, 0.03%)</title><rect x="47.0668%" y="645" width="0.0334%" height="15" fill="rgb(234,156,12)" fg:x="243607" fg:w="173"/><text x="47.3168%" y="655.50"></text></g><g><title>btrfs_del_leaf (182 samples, 0.04%)</title><rect x="47.0662%" y="661" width="0.0352%" height="15" fill="rgb(243,224,36)" fg:x="243604" fg:w="182"/><text x="47.3162%" y="671.50"></text></g><g><title>btrfs_get_32 (182 samples, 0.04%)</title><rect x="47.1014%" y="661" width="0.0352%" height="15" fill="rgb(205,229,51)" fg:x="243786" fg:w="182"/><text x="47.3514%" y="671.50"></text></g><g><title>btrfs_get_token_32 (3,849 samples, 0.74%)</title><rect x="47.1366%" y="661" width="0.7437%" height="15" fill="rgb(223,189,4)" fg:x="243968" fg:w="3849"/><text x="47.3866%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (516 samples, 0.10%)</title><rect x="47.7805%" y="645" width="0.0997%" height="15" fill="rgb(249,167,54)" fg:x="247301" fg:w="516"/><text x="48.0305%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (189 samples, 0.04%)</title><rect x="47.8802%" y="661" width="0.0365%" height="15" fill="rgb(218,34,28)" fg:x="247817" fg:w="189"/><text x="48.1302%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (105 samples, 0.02%)</title><rect x="47.8964%" y="645" width="0.0203%" height="15" fill="rgb(232,109,42)" fg:x="247901" fg:w="105"/><text x="48.1464%" y="655.50"></text></g><g><title>btrfs_set_token_32 (3,312 samples, 0.64%)</title><rect x="47.9171%" y="661" width="0.6399%" height="15" fill="rgb(248,214,46)" fg:x="248008" fg:w="3312"/><text x="48.1671%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (713 samples, 0.14%)</title><rect x="48.4193%" y="645" width="0.1378%" height="15" fill="rgb(244,216,40)" fg:x="250607" fg:w="713"/><text x="48.6693%" y="655.50"></text></g><g><title>leaf_space_used (131 samples, 0.03%)</title><rect x="48.5592%" y="661" width="0.0253%" height="15" fill="rgb(231,226,31)" fg:x="251331" fg:w="131"/><text x="48.8092%" y="671.50"></text></g><g><title>btrfs_get_32 (83 samples, 0.02%)</title><rect x="48.5684%" y="645" width="0.0160%" height="15" fill="rgb(238,38,43)" fg:x="251379" fg:w="83"/><text x="48.8184%" y="655.50"></text></g><g><title>copy_pages (80 samples, 0.02%)</title><rect x="48.5976%" y="645" width="0.0155%" height="15" fill="rgb(208,88,43)" fg:x="251530" fg:w="80"/><text x="48.8476%" y="655.50"></text></g><g><title>memcpy_extent_buffer (688 samples, 0.13%)</title><rect x="48.5845%" y="661" width="0.1329%" height="15" fill="rgb(205,136,37)" fg:x="251462" fg:w="688"/><text x="48.8345%" y="671.50"></text></g><g><title>memmove (540 samples, 0.10%)</title><rect x="48.6131%" y="645" width="0.1043%" height="15" fill="rgb(237,34,14)" fg:x="251610" fg:w="540"/><text x="48.8631%" y="655.50"></text></g><g><title>copy_pages (180 samples, 0.03%)</title><rect x="48.7437%" y="645" width="0.0348%" height="15" fill="rgb(236,193,44)" fg:x="252286" fg:w="180"/><text x="48.9937%" y="655.50"></text></g><g><title>memmove_extent_buffer (1,905 samples, 0.37%)</title><rect x="48.7174%" y="661" width="0.3681%" height="15" fill="rgb(231,48,10)" fg:x="252150" fg:w="1905"/><text x="48.9674%" y="671.50"></text></g><g><title>memmove (1,589 samples, 0.31%)</title><rect x="48.7784%" y="645" width="0.3070%" height="15" fill="rgb(213,141,34)" fg:x="252466" fg:w="1589"/><text x="49.0284%" y="655.50"></text></g><g><title>__push_leaf_left (110 samples, 0.02%)</title><rect x="49.0868%" y="645" width="0.0213%" height="15" fill="rgb(249,130,34)" fg:x="254062" fg:w="110"/><text x="49.3368%" y="655.50"></text></g><g><title>push_leaf_left (165 samples, 0.03%)</title><rect x="49.0855%" y="661" width="0.0319%" height="15" fill="rgb(219,42,41)" fg:x="254055" fg:w="165"/><text x="49.3355%" y="671.50"></text></g><g><title>__push_leaf_right (126 samples, 0.02%)</title><rect x="49.1177%" y="645" width="0.0243%" height="15" fill="rgb(224,100,54)" fg:x="254222" fg:w="126"/><text x="49.3677%" y="655.50"></text></g><g><title>push_leaf_right (170 samples, 0.03%)</title><rect x="49.1173%" y="661" width="0.0328%" height="15" fill="rgb(229,200,27)" fg:x="254220" fg:w="170"/><text x="49.3673%" y="671.50"></text></g><g><title>btrfs_del_items (12,199 samples, 2.36%)</title><rect x="46.7954%" y="677" width="2.3569%" height="15" fill="rgb(217,118,10)" fg:x="242202" fg:w="12199"/><text x="47.0454%" y="687.50">b..</text></g><g><title>mutex_lock (58 samples, 0.01%)</title><rect x="49.2342%" y="645" width="0.0112%" height="15" fill="rgb(206,22,3)" fg:x="254825" fg:w="58"/><text x="49.4842%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (384 samples, 0.07%)</title><rect x="49.1807%" y="661" width="0.0742%" height="15" fill="rgb(232,163,46)" fg:x="254548" fg:w="384"/><text x="49.4307%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (306 samples, 0.06%)</title><rect x="49.2551%" y="661" width="0.0591%" height="15" fill="rgb(206,95,13)" fg:x="254933" fg:w="306"/><text x="49.5051%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (293 samples, 0.06%)</title><rect x="49.2576%" y="645" width="0.0566%" height="15" fill="rgb(253,154,18)" fg:x="254946" fg:w="293"/><text x="49.5076%" y="655.50"></text></g><g><title>mutex_lock (107 samples, 0.02%)</title><rect x="49.3142%" y="661" width="0.0207%" height="15" fill="rgb(219,32,23)" fg:x="255239" fg:w="107"/><text x="49.5642%" y="671.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (999 samples, 0.19%)</title><rect x="49.1523%" y="677" width="0.1930%" height="15" fill="rgb(230,191,45)" fg:x="254401" fg:w="999"/><text x="49.4023%" y="687.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="49.3349%" y="661" width="0.0104%" height="15" fill="rgb(229,64,36)" fg:x="255346" fg:w="54"/><text x="49.5849%" y="671.50"></text></g><g><title>btrfs_comp_cpu_keys (149 samples, 0.03%)</title><rect x="49.3865%" y="645" width="0.0288%" height="15" fill="rgb(205,129,25)" fg:x="255613" fg:w="149"/><text x="49.6365%" y="655.50"></text></g><g><title>__btrfs_add_delayed_item (425 samples, 0.08%)</title><rect x="49.3563%" y="661" width="0.0821%" height="15" fill="rgb(254,112,7)" fg:x="255457" fg:w="425"/><text x="49.6063%" y="671.50"></text></g><g><title>rb_insert_color (120 samples, 0.02%)</title><rect x="49.4153%" y="645" width="0.0232%" height="15" fill="rgb(226,53,48)" fg:x="255762" fg:w="120"/><text x="49.6653%" y="655.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="49.4666%" y="645" width="0.0124%" height="15" fill="rgb(214,153,38)" fg:x="256028" fg:w="64"/><text x="49.7166%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (268 samples, 0.05%)</title><rect x="49.4384%" y="661" width="0.0518%" height="15" fill="rgb(243,101,7)" fg:x="255882" fg:w="268"/><text x="49.6884%" y="671.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="49.4790%" y="645" width="0.0112%" height="15" fill="rgb(240,140,22)" fg:x="256092" fg:w="58"/><text x="49.7290%" y="655.50"></text></g><g><title>mutex_spin_on_owner (220 samples, 0.04%)</title><rect x="49.4912%" y="645" width="0.0425%" height="15" fill="rgb(235,114,2)" fg:x="256155" fg:w="220"/><text x="49.7412%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (231 samples, 0.04%)</title><rect x="49.4902%" y="661" width="0.0446%" height="15" fill="rgb(242,59,12)" fg:x="256150" fg:w="231"/><text x="49.7402%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (188 samples, 0.04%)</title><rect x="49.5350%" y="661" width="0.0363%" height="15" fill="rgb(252,134,9)" fg:x="256382" fg:w="188"/><text x="49.7850%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (176 samples, 0.03%)</title><rect x="49.5374%" y="645" width="0.0340%" height="15" fill="rgb(236,4,44)" fg:x="256394" fg:w="176"/><text x="49.7874%" y="655.50"></text></g><g><title>_raw_spin_lock (143 samples, 0.03%)</title><rect x="49.5437%" y="629" width="0.0276%" height="15" fill="rgb(254,172,41)" fg:x="256427" fg:w="143"/><text x="49.7937%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (85 samples, 0.02%)</title><rect x="49.5714%" y="661" width="0.0164%" height="15" fill="rgb(244,63,20)" fg:x="256570" fg:w="85"/><text x="49.8214%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (67 samples, 0.01%)</title><rect x="49.5748%" y="645" width="0.0129%" height="15" fill="rgb(250,73,31)" fg:x="256588" fg:w="67"/><text x="49.8248%" y="655.50"></text></g><g><title>kmem_cache_alloc_trace (254 samples, 0.05%)</title><rect x="49.5878%" y="661" width="0.0491%" height="15" fill="rgb(241,38,36)" fg:x="256655" fg:w="254"/><text x="49.8378%" y="671.50"></text></g><g><title>mutex_lock (131 samples, 0.03%)</title><rect x="49.6369%" y="661" width="0.0253%" height="15" fill="rgb(245,211,2)" fg:x="256909" fg:w="131"/><text x="49.8869%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,755 samples, 0.34%)</title><rect x="49.3453%" y="677" width="0.3391%" height="15" fill="rgb(206,120,28)" fg:x="255400" fg:w="1755"/><text x="49.5953%" y="687.50"></text></g><g><title>mutex_unlock (115 samples, 0.02%)</title><rect x="49.6622%" y="661" width="0.0222%" height="15" fill="rgb(211,59,34)" fg:x="257040" fg:w="115"/><text x="49.9122%" y="671.50"></text></g><g><title>btrfs_get_16 (68 samples, 0.01%)</title><rect x="49.6960%" y="661" width="0.0131%" height="15" fill="rgb(233,168,5)" fg:x="257215" fg:w="68"/><text x="49.9460%" y="671.50"></text></g><g><title>btrfs_delete_one_dir_name (179 samples, 0.03%)</title><rect x="49.6844%" y="677" width="0.0346%" height="15" fill="rgb(234,33,13)" fg:x="257155" fg:w="179"/><text x="49.9344%" y="687.50"></text></g><g><title>btrfs_get_16 (124 samples, 0.02%)</title><rect x="49.7520%" y="645" width="0.0240%" height="15" fill="rgb(231,150,26)" fg:x="257505" fg:w="124"/><text x="50.0020%" y="655.50"></text></g><g><title>btrfs_get_32 (94 samples, 0.02%)</title><rect x="49.7760%" y="645" width="0.0182%" height="15" fill="rgb(217,191,4)" fg:x="257629" fg:w="94"/><text x="50.0260%" y="655.50"></text></g><g><title>btrfs_match_dir_item_name (444 samples, 0.09%)</title><rect x="49.7368%" y="661" width="0.0858%" height="15" fill="rgb(246,198,38)" fg:x="257426" fg:w="444"/><text x="49.9868%" y="671.50"></text></g><g><title>memcmp_extent_buffer (147 samples, 0.03%)</title><rect x="49.7941%" y="645" width="0.0284%" height="15" fill="rgb(245,64,37)" fg:x="257723" fg:w="147"/><text x="50.0441%" y="655.50"></text></g><g><title>memcmp (92 samples, 0.02%)</title><rect x="49.8048%" y="629" width="0.0178%" height="15" fill="rgb(250,30,36)" fg:x="257778" fg:w="92"/><text x="50.0548%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (75 samples, 0.01%)</title><rect x="49.8882%" y="629" width="0.0145%" height="15" fill="rgb(217,86,53)" fg:x="258210" fg:w="75"/><text x="50.1382%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (188 samples, 0.04%)</title><rect x="49.8848%" y="645" width="0.0363%" height="15" fill="rgb(228,157,16)" fg:x="258192" fg:w="188"/><text x="50.1348%" y="655.50"></text></g><g><title>btrfs_root_node (95 samples, 0.02%)</title><rect x="49.9027%" y="629" width="0.0184%" height="15" fill="rgb(217,59,31)" fg:x="258285" fg:w="95"/><text x="50.1527%" y="639.50"></text></g><g><title>btrfs_read_node_slot (60 samples, 0.01%)</title><rect x="49.9458%" y="629" width="0.0116%" height="15" fill="rgb(237,138,41)" fg:x="258508" fg:w="60"/><text x="50.1958%" y="639.50"></text></g><g><title>balance_level (206 samples, 0.04%)</title><rect x="49.9251%" y="645" width="0.0398%" height="15" fill="rgb(227,91,49)" fg:x="258401" fg:w="206"/><text x="50.1751%" y="655.50"></text></g><g><title>__btrfs_tree_lock (110 samples, 0.02%)</title><rect x="49.9752%" y="629" width="0.0213%" height="15" fill="rgb(247,21,44)" fg:x="258660" fg:w="110"/><text x="50.2252%" y="639.50"></text></g><g><title>btrfs_lock_root_node (173 samples, 0.03%)</title><rect x="49.9738%" y="645" width="0.0334%" height="15" fill="rgb(219,210,51)" fg:x="258653" fg:w="173"/><text x="50.2238%" y="655.50"></text></g><g><title>btrfs_root_node (56 samples, 0.01%)</title><rect x="49.9964%" y="629" width="0.0108%" height="15" fill="rgb(209,140,6)" fg:x="258770" fg:w="56"/><text x="50.2464%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (69 samples, 0.01%)</title><rect x="50.0072%" y="645" width="0.0133%" height="15" fill="rgb(221,188,24)" fg:x="258826" fg:w="69"/><text x="50.2572%" y="655.50"></text></g><g><title>_raw_write_lock (93 samples, 0.02%)</title><rect x="50.0337%" y="629" width="0.0180%" height="15" fill="rgb(232,154,20)" fg:x="258963" fg:w="93"/><text x="50.2837%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (132 samples, 0.03%)</title><rect x="50.0289%" y="645" width="0.0255%" height="15" fill="rgb(244,137,50)" fg:x="258938" fg:w="132"/><text x="50.2789%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (109 samples, 0.02%)</title><rect x="50.0548%" y="645" width="0.0211%" height="15" fill="rgb(225,185,43)" fg:x="259072" fg:w="109"/><text x="50.3048%" y="655.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="50.0586%" y="629" width="0.0172%" height="15" fill="rgb(213,205,38)" fg:x="259092" fg:w="89"/><text x="50.3086%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,177 samples, 0.23%)</title><rect x="50.0758%" y="645" width="0.2274%" height="15" fill="rgb(236,73,12)" fg:x="259181" fg:w="1177"/><text x="50.3258%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (67 samples, 0.01%)</title><rect x="50.3334%" y="629" width="0.0129%" height="15" fill="rgb(235,219,13)" fg:x="260514" fg:w="67"/><text x="50.5834%" y="639.50"></text></g><g><title>btrfs_get_64 (130 samples, 0.03%)</title><rect x="50.3463%" y="629" width="0.0251%" height="15" fill="rgb(218,59,36)" fg:x="260581" fg:w="130"/><text x="50.5963%" y="639.50"></text></g><g><title>__radix_tree_lookup (599 samples, 0.12%)</title><rect x="50.4224%" y="613" width="0.1157%" height="15" fill="rgb(205,110,39)" fg:x="260975" fg:w="599"/><text x="50.6724%" y="623.50"></text></g><g><title>check_buffer_tree_ref (62 samples, 0.01%)</title><rect x="50.5467%" y="597" width="0.0120%" height="15" fill="rgb(218,206,42)" fg:x="261618" fg:w="62"/><text x="50.7967%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (280 samples, 0.05%)</title><rect x="50.5384%" y="613" width="0.0541%" height="15" fill="rgb(248,125,24)" fg:x="261575" fg:w="280"/><text x="50.7884%" y="623.50"></text></g><g><title>mark_page_accessed (175 samples, 0.03%)</title><rect x="50.5587%" y="597" width="0.0338%" height="15" fill="rgb(242,28,27)" fg:x="261680" fg:w="175"/><text x="50.8087%" y="607.50"></text></g><g><title>find_extent_buffer (1,102 samples, 0.21%)</title><rect x="50.3815%" y="629" width="0.2129%" height="15" fill="rgb(216,228,15)" fg:x="260763" fg:w="1102"/><text x="50.6315%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,654 samples, 0.32%)</title><rect x="50.3032%" y="645" width="0.3196%" height="15" fill="rgb(235,116,46)" fg:x="260358" fg:w="1654"/><text x="50.5532%" y="655.50"></text></g><g><title>read_extent_buffer (147 samples, 0.03%)</title><rect x="50.5944%" y="629" width="0.0284%" height="15" fill="rgb(224,18,32)" fg:x="261865" fg:w="147"/><text x="50.8444%" y="639.50"></text></g><g><title>btrfs_get_64 (98 samples, 0.02%)</title><rect x="50.6446%" y="629" width="0.0189%" height="15" fill="rgb(252,5,12)" fg:x="262125" fg:w="98"/><text x="50.8946%" y="639.50"></text></g><g><title>__radix_tree_lookup (340 samples, 0.07%)</title><rect x="50.6883%" y="613" width="0.0657%" height="15" fill="rgb(251,36,5)" fg:x="262351" fg:w="340"/><text x="50.9383%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (190 samples, 0.04%)</title><rect x="50.7544%" y="613" width="0.0367%" height="15" fill="rgb(217,53,14)" fg:x="262693" fg:w="190"/><text x="51.0044%" y="623.50"></text></g><g><title>mark_page_accessed (124 samples, 0.02%)</title><rect x="50.7671%" y="597" width="0.0240%" height="15" fill="rgb(215,86,45)" fg:x="262759" fg:w="124"/><text x="51.0171%" y="607.50"></text></g><g><title>find_extent_buffer (665 samples, 0.13%)</title><rect x="50.6636%" y="629" width="0.1285%" height="15" fill="rgb(242,169,11)" fg:x="262223" fg:w="665"/><text x="50.9136%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="50.7926%" y="629" width="0.0122%" height="15" fill="rgb(211,213,45)" fg:x="262891" fg:w="63"/><text x="51.0426%" y="639.50"></text></g><g><title>reada_for_balance (987 samples, 0.19%)</title><rect x="50.6228%" y="645" width="0.1907%" height="15" fill="rgb(205,88,11)" fg:x="262012" fg:w="987"/><text x="50.8728%" y="655.50"></text></g><g><title>release_extent_buffer (73 samples, 0.01%)</title><rect x="50.8135%" y="645" width="0.0141%" height="15" fill="rgb(252,69,26)" fg:x="262999" fg:w="73"/><text x="51.0635%" y="655.50"></text></g><g><title>btrfs_search_slot (5,433 samples, 1.05%)</title><rect x="49.8225%" y="661" width="1.0497%" height="15" fill="rgb(246,123,37)" fg:x="257870" fg:w="5433"/><text x="50.0725%" y="671.50"></text></g><g><title>unlock_up (231 samples, 0.04%)</title><rect x="50.8276%" y="645" width="0.0446%" height="15" fill="rgb(212,205,5)" fg:x="263072" fg:w="231"/><text x="51.0776%" y="655.50"></text></g><g><title>btrfs_tree_unlock (68 samples, 0.01%)</title><rect x="50.8591%" y="629" width="0.0131%" height="15" fill="rgb(253,148,0)" fg:x="263235" fg:w="68"/><text x="51.1091%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (6,035 samples, 1.17%)</title><rect x="49.7267%" y="677" width="1.1660%" height="15" fill="rgb(239,22,4)" fg:x="257374" fg:w="6035"/><text x="49.9767%" y="687.50"></text></g><g><title>crc32c (106 samples, 0.02%)</title><rect x="50.8722%" y="661" width="0.0205%" height="15" fill="rgb(226,26,53)" fg:x="263303" fg:w="106"/><text x="51.1222%" y="671.50"></text></g><g><title>crypto_shash_update (75 samples, 0.01%)</title><rect x="50.8782%" y="645" width="0.0145%" height="15" fill="rgb(225,229,45)" fg:x="263334" fg:w="75"/><text x="51.1282%" y="655.50"></text></g><g><title>btrfs_tree_unlock (65 samples, 0.01%)</title><rect x="50.9051%" y="661" width="0.0126%" height="15" fill="rgb(220,60,37)" fg:x="263473" fg:w="65"/><text x="51.1551%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (220 samples, 0.04%)</title><rect x="50.9190%" y="661" width="0.0425%" height="15" fill="rgb(217,180,35)" fg:x="263545" fg:w="220"/><text x="51.1690%" y="671.50"></text></g><g><title>_raw_spin_lock (176 samples, 0.03%)</title><rect x="50.9275%" y="645" width="0.0340%" height="15" fill="rgb(229,7,53)" fg:x="263589" fg:w="176"/><text x="51.1775%" y="655.50"></text></g><g><title>btrfs_release_path (608 samples, 0.12%)</title><rect x="50.8927%" y="677" width="0.1175%" height="15" fill="rgb(254,137,3)" fg:x="263409" fg:w="608"/><text x="51.1427%" y="687.50"></text></g><g><title>release_extent_buffer (252 samples, 0.05%)</title><rect x="50.9615%" y="661" width="0.0487%" height="15" fill="rgb(215,140,41)" fg:x="263765" fg:w="252"/><text x="51.2115%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (260 samples, 0.05%)</title><rect x="51.0285%" y="645" width="0.0502%" height="15" fill="rgb(250,80,15)" fg:x="264112" fg:w="260"/><text x="51.2785%" y="655.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="51.0682%" y="629" width="0.0106%" height="15" fill="rgb(252,191,6)" fg:x="264317" fg:w="55"/><text x="51.3182%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (106 samples, 0.02%)</title><rect x="51.0832%" y="645" width="0.0205%" height="15" fill="rgb(246,217,18)" fg:x="264395" fg:w="106"/><text x="51.3332%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (85 samples, 0.02%)</title><rect x="51.0873%" y="629" width="0.0164%" height="15" fill="rgb(223,93,7)" fg:x="264416" fg:w="85"/><text x="51.3373%" y="639.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="51.1141%" y="613" width="0.0126%" height="15" fill="rgb(225,55,52)" fg:x="264555" fg:w="65"/><text x="51.3641%" y="623.50"></text></g><g><title>inode_get_bytes (76 samples, 0.01%)</title><rect x="51.1122%" y="629" width="0.0147%" height="15" fill="rgb(240,31,24)" fg:x="264545" fg:w="76"/><text x="51.3622%" y="639.50"></text></g><g><title>fill_stack_inode_item (164 samples, 0.03%)</title><rect x="51.1037%" y="645" width="0.0317%" height="15" fill="rgb(205,56,52)" fg:x="264501" fg:w="164"/><text x="51.3537%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (683 samples, 0.13%)</title><rect x="51.0237%" y="661" width="0.1320%" height="15" fill="rgb(246,146,12)" fg:x="264087" fg:w="683"/><text x="51.2737%" y="671.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="51.1445%" y="645" width="0.0112%" height="15" fill="rgb(239,84,36)" fg:x="264712" fg:w="58"/><text x="51.3945%" y="655.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="51.1599%" y="645" width="0.0112%" height="15" fill="rgb(207,41,40)" fg:x="264792" fg:w="58"/><text x="51.4099%" y="655.50"></text></g><g><title>btrfs_update_inode (949 samples, 0.18%)</title><rect x="51.0102%" y="677" width="0.1834%" height="15" fill="rgb(241,179,25)" fg:x="264017" fg:w="949"/><text x="51.2602%" y="687.50"></text></g><g><title>btrfs_update_root_times (196 samples, 0.04%)</title><rect x="51.1557%" y="661" width="0.0379%" height="15" fill="rgb(210,0,34)" fg:x="264770" fg:w="196"/><text x="51.4057%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (116 samples, 0.02%)</title><rect x="51.1711%" y="645" width="0.0224%" height="15" fill="rgb(225,217,29)" fg:x="264850" fg:w="116"/><text x="51.4211%" y="655.50"></text></g><g><title>read_tsc (70 samples, 0.01%)</title><rect x="51.1800%" y="629" width="0.0135%" height="15" fill="rgb(216,191,38)" fg:x="264896" fg:w="70"/><text x="51.4300%" y="639.50"></text></g><g><title>current_time (62 samples, 0.01%)</title><rect x="51.1935%" y="677" width="0.0120%" height="15" fill="rgb(232,140,52)" fg:x="264966" fg:w="62"/><text x="51.4435%" y="687.50"></text></g><g><title>memset_erms (52 samples, 0.01%)</title><rect x="51.2198%" y="661" width="0.0100%" height="15" fill="rgb(223,158,51)" fg:x="265102" fg:w="52"/><text x="51.4698%" y="671.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="51.2055%" y="677" width="0.0292%" height="15" fill="rgb(235,29,51)" fg:x="265028" fg:w="151"/><text x="51.4555%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (29,855 samples, 5.77%)</title><rect x="45.4929%" y="693" width="5.7682%" height="15" fill="rgb(215,181,18)" fg:x="235461" fg:w="29855"/><text x="45.7429%" y="703.50">__btrfs..</text></g><g><title>kmem_cache_free (137 samples, 0.03%)</title><rect x="51.2347%" y="677" width="0.0265%" height="15" fill="rgb(227,125,34)" fg:x="265179" fg:w="137"/><text x="51.4847%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (80 samples, 0.02%)</title><rect x="51.2614%" y="693" width="0.0155%" height="15" fill="rgb(230,197,49)" fg:x="265317" fg:w="80"/><text x="51.5114%" y="703.50"></text></g><g><title>btrfs_tree_unlock (58 samples, 0.01%)</title><rect x="51.2930%" y="629" width="0.0112%" height="15" fill="rgb(239,141,16)" fg:x="265481" fg:w="58"/><text x="51.5430%" y="639.50"></text></g><g><title>_raw_spin_lock (152 samples, 0.03%)</title><rect x="51.3118%" y="613" width="0.0294%" height="15" fill="rgb(225,105,43)" fg:x="265578" fg:w="152"/><text x="51.5618%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (185 samples, 0.04%)</title><rect x="51.3056%" y="629" width="0.0357%" height="15" fill="rgb(214,131,14)" fg:x="265546" fg:w="185"/><text x="51.5556%" y="639.50"></text></g><g><title>btrfs_free_path (476 samples, 0.09%)</title><rect x="51.2822%" y="661" width="0.0920%" height="15" fill="rgb(229,177,11)" fg:x="265425" fg:w="476"/><text x="51.5322%" y="671.50"></text></g><g><title>btrfs_release_path (470 samples, 0.09%)</title><rect x="51.2834%" y="645" width="0.0908%" height="15" fill="rgb(231,180,14)" fg:x="265431" fg:w="470"/><text x="51.5334%" y="655.50"></text></g><g><title>release_extent_buffer (170 samples, 0.03%)</title><rect x="51.3413%" y="629" width="0.0328%" height="15" fill="rgb(232,88,2)" fg:x="265731" fg:w="170"/><text x="51.5913%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (69 samples, 0.01%)</title><rect x="51.4401%" y="613" width="0.0133%" height="15" fill="rgb(205,220,8)" fg:x="266242" fg:w="69"/><text x="51.6901%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (152 samples, 0.03%)</title><rect x="51.4380%" y="629" width="0.0294%" height="15" fill="rgb(225,23,53)" fg:x="266231" fg:w="152"/><text x="51.6880%" y="639.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="51.4534%" y="613" width="0.0139%" height="15" fill="rgb(213,62,29)" fg:x="266311" fg:w="72"/><text x="51.7034%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (183 samples, 0.04%)</title><rect x="51.4720%" y="629" width="0.0354%" height="15" fill="rgb(227,75,7)" fg:x="266407" fg:w="183"/><text x="51.7220%" y="639.50"></text></g><g><title>leaf_space_used (152 samples, 0.03%)</title><rect x="51.4779%" y="613" width="0.0294%" height="15" fill="rgb(207,105,14)" fg:x="266438" fg:w="152"/><text x="51.7279%" y="623.50"></text></g><g><title>btrfs_get_32 (101 samples, 0.02%)</title><rect x="51.4878%" y="597" width="0.0195%" height="15" fill="rgb(245,62,29)" fg:x="266489" fg:w="101"/><text x="51.7378%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (80 samples, 0.02%)</title><rect x="51.5073%" y="629" width="0.0155%" height="15" fill="rgb(236,202,4)" fg:x="266590" fg:w="80"/><text x="51.7573%" y="639.50"></text></g><g><title>_raw_write_lock (92 samples, 0.02%)</title><rect x="51.5297%" y="613" width="0.0178%" height="15" fill="rgb(250,67,1)" fg:x="266706" fg:w="92"/><text x="51.7797%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (129 samples, 0.02%)</title><rect x="51.5228%" y="629" width="0.0249%" height="15" fill="rgb(253,115,44)" fg:x="266670" fg:w="129"/><text x="51.7728%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (681 samples, 0.13%)</title><rect x="51.5477%" y="629" width="0.1316%" height="15" fill="rgb(251,139,18)" fg:x="266799" fg:w="681"/><text x="51.7977%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (66 samples, 0.01%)</title><rect x="51.7048%" y="613" width="0.0128%" height="15" fill="rgb(218,22,32)" fg:x="267612" fg:w="66"/><text x="51.9548%" y="623.50"></text></g><g><title>btrfs_get_64 (115 samples, 0.02%)</title><rect x="51.7175%" y="613" width="0.0222%" height="15" fill="rgb(243,53,5)" fg:x="267678" fg:w="115"/><text x="51.9675%" y="623.50"></text></g><g><title>__radix_tree_lookup (518 samples, 0.10%)</title><rect x="51.7846%" y="597" width="0.1001%" height="15" fill="rgb(227,56,16)" fg:x="268025" fg:w="518"/><text x="52.0346%" y="607.50"></text></g><g><title>check_buffer_tree_ref (54 samples, 0.01%)</title><rect x="51.8916%" y="581" width="0.0104%" height="15" fill="rgb(245,53,0)" fg:x="268579" fg:w="54"/><text x="52.1416%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (243 samples, 0.05%)</title><rect x="51.8848%" y="597" width="0.0469%" height="15" fill="rgb(216,170,35)" fg:x="268544" fg:w="243"/><text x="52.1348%" y="607.50"></text></g><g><title>mark_page_accessed (154 samples, 0.03%)</title><rect x="51.9020%" y="581" width="0.0298%" height="15" fill="rgb(211,200,8)" fg:x="268633" fg:w="154"/><text x="52.1520%" y="591.50"></text></g><g><title>find_extent_buffer (943 samples, 0.18%)</title><rect x="51.7519%" y="613" width="0.1822%" height="15" fill="rgb(228,204,44)" fg:x="267856" fg:w="943"/><text x="52.0019%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,482 samples, 0.29%)</title><rect x="51.6793%" y="629" width="0.2863%" height="15" fill="rgb(214,121,17)" fg:x="267480" fg:w="1482"/><text x="51.9293%" y="639.50"></text></g><g><title>read_extent_buffer (163 samples, 0.03%)</title><rect x="51.9341%" y="613" width="0.0315%" height="15" fill="rgb(233,64,38)" fg:x="268799" fg:w="163"/><text x="52.1841%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (59 samples, 0.01%)</title><rect x="51.9977%" y="613" width="0.0114%" height="15" fill="rgb(253,54,19)" fg:x="269128" fg:w="59"/><text x="52.2477%" y="623.50"></text></g><g><title>btrfs_search_slot (3,267 samples, 0.63%)</title><rect x="51.3806%" y="645" width="0.6312%" height="15" fill="rgb(253,94,18)" fg:x="265934" fg:w="3267"/><text x="51.6306%" y="655.50"></text></g><g><title>unlock_up (239 samples, 0.05%)</title><rect x="51.9656%" y="629" width="0.0462%" height="15" fill="rgb(227,57,52)" fg:x="268962" fg:w="239"/><text x="52.2156%" y="639.50"></text></g><g><title>btrfs_get_32 (58 samples, 0.01%)</title><rect x="52.0547%" y="629" width="0.0112%" height="15" fill="rgb(230,228,50)" fg:x="269423" fg:w="58"/><text x="52.3047%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (273 samples, 0.05%)</title><rect x="52.0659%" y="629" width="0.0527%" height="15" fill="rgb(217,205,27)" fg:x="269481" fg:w="273"/><text x="52.3159%" y="639.50"></text></g><g><title>leaf_space_used (231 samples, 0.04%)</title><rect x="52.0740%" y="613" width="0.0446%" height="15" fill="rgb(252,71,50)" fg:x="269523" fg:w="231"/><text x="52.3240%" y="623.50"></text></g><g><title>btrfs_get_32 (170 samples, 0.03%)</title><rect x="52.0858%" y="597" width="0.0328%" height="15" fill="rgb(209,86,4)" fg:x="269584" fg:w="170"/><text x="52.3358%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (174 samples, 0.03%)</title><rect x="52.1186%" y="629" width="0.0336%" height="15" fill="rgb(229,94,0)" fg:x="269754" fg:w="174"/><text x="52.3686%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (109 samples, 0.02%)</title><rect x="52.1312%" y="613" width="0.0211%" height="15" fill="rgb(252,223,21)" fg:x="269819" fg:w="109"/><text x="52.3812%" y="623.50"></text></g><g><title>btrfs_set_token_32 (85 samples, 0.02%)</title><rect x="52.1522%" y="629" width="0.0164%" height="15" fill="rgb(230,210,4)" fg:x="269928" fg:w="85"/><text x="52.4022%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (56 samples, 0.01%)</title><rect x="52.1687%" y="629" width="0.0108%" height="15" fill="rgb(240,149,38)" fg:x="270013" fg:w="56"/><text x="52.4187%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (4,284 samples, 0.83%)</title><rect x="51.3742%" y="661" width="0.8277%" height="15" fill="rgb(254,105,20)" fg:x="265901" fg:w="4284"/><text x="51.6242%" y="671.50"></text></g><g><title>setup_items_for_insert (984 samples, 0.19%)</title><rect x="52.0118%" y="645" width="0.1901%" height="15" fill="rgb(253,87,46)" fg:x="269201" fg:w="984"/><text x="52.2618%" y="655.50"></text></g><g><title>write_extent_buffer (116 samples, 0.02%)</title><rect x="52.1795%" y="629" width="0.0224%" height="15" fill="rgb(253,116,33)" fg:x="270069" fg:w="116"/><text x="52.4295%" y="639.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="52.2148%" y="645" width="0.0118%" height="15" fill="rgb(229,198,5)" fg:x="270252" fg:w="61"/><text x="52.4648%" y="655.50"></text></g><g><title>kmem_cache_alloc (163 samples, 0.03%)</title><rect x="52.2019%" y="661" width="0.0315%" height="15" fill="rgb(242,38,37)" fg:x="270185" fg:w="163"/><text x="52.4519%" y="671.50"></text></g><g><title>btrfs_orphan_add (5,042 samples, 0.97%)</title><rect x="51.2772%" y="693" width="0.9742%" height="15" fill="rgb(242,69,53)" fg:x="265399" fg:w="5042"/><text x="51.5272%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (5,035 samples, 0.97%)</title><rect x="51.2786%" y="677" width="0.9728%" height="15" fill="rgb(249,80,16)" fg:x="265406" fg:w="5035"/><text x="51.5286%" y="687.50"></text></g><g><title>kmem_cache_free (93 samples, 0.02%)</title><rect x="52.2334%" y="661" width="0.0180%" height="15" fill="rgb(206,128,11)" fg:x="270348" fg:w="93"/><text x="52.4834%" y="671.50"></text></g><g><title>mutex_lock (137 samples, 0.03%)</title><rect x="52.2566%" y="677" width="0.0265%" height="15" fill="rgb(212,35,20)" fg:x="270468" fg:w="137"/><text x="52.5066%" y="687.50"></text></g><g><title>btrfs_record_unlink_dir (263 samples, 0.05%)</title><rect x="52.2514%" y="693" width="0.0508%" height="15" fill="rgb(236,79,13)" fg:x="270441" fg:w="263"/><text x="52.5014%" y="703.50"></text></g><g><title>mutex_unlock (99 samples, 0.02%)</title><rect x="52.2830%" y="677" width="0.0191%" height="15" fill="rgb(233,123,3)" fg:x="270605" fg:w="99"/><text x="52.5330%" y="687.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="52.3078%" y="677" width="0.0102%" height="15" fill="rgb(214,93,52)" fg:x="270733" fg:w="53"/><text x="52.5578%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (252 samples, 0.05%)</title><rect x="52.3518%" y="661" width="0.0487%" height="15" fill="rgb(251,37,40)" fg:x="270961" fg:w="252"/><text x="52.6018%" y="671.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="52.3895%" y="645" width="0.0110%" height="15" fill="rgb(227,80,54)" fg:x="271156" fg:w="57"/><text x="52.6395%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (148 samples, 0.03%)</title><rect x="52.4007%" y="661" width="0.0286%" height="15" fill="rgb(254,48,11)" fg:x="271214" fg:w="148"/><text x="52.6507%" y="671.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="52.4069%" y="645" width="0.0224%" height="15" fill="rgb(235,193,26)" fg:x="271246" fg:w="116"/><text x="52.6569%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (90 samples, 0.02%)</title><rect x="52.4293%" y="661" width="0.0174%" height="15" fill="rgb(229,99,21)" fg:x="271362" fg:w="90"/><text x="52.6793%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (76 samples, 0.01%)</title><rect x="52.4320%" y="645" width="0.0147%" height="15" fill="rgb(211,140,41)" fg:x="271376" fg:w="76"/><text x="52.6820%" y="655.50"></text></g><g><title>inode_get_bytes (82 samples, 0.02%)</title><rect x="52.4554%" y="645" width="0.0158%" height="15" fill="rgb(240,227,30)" fg:x="271497" fg:w="82"/><text x="52.7054%" y="655.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="52.4585%" y="629" width="0.0128%" height="15" fill="rgb(215,224,45)" fg:x="271513" fg:w="66"/><text x="52.7085%" y="639.50"></text></g><g><title>fill_stack_inode_item (162 samples, 0.03%)</title><rect x="52.4467%" y="661" width="0.0313%" height="15" fill="rgb(206,123,31)" fg:x="271452" fg:w="162"/><text x="52.6967%" y="671.50"></text></g><g><title>mutex_lock (68 samples, 0.01%)</title><rect x="52.4780%" y="661" width="0.0131%" height="15" fill="rgb(210,138,16)" fg:x="271614" fg:w="68"/><text x="52.7280%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (942 samples, 0.18%)</title><rect x="52.3180%" y="677" width="0.1820%" height="15" fill="rgb(228,57,28)" fg:x="270786" fg:w="942"/><text x="52.5680%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="52.5019%" y="661" width="0.0120%" height="15" fill="rgb(242,170,10)" fg:x="271738" fg:w="62"/><text x="52.7519%" y="671.50"></text></g><g><title>btrfs_update_inode (1,205 samples, 0.23%)</title><rect x="52.3033%" y="693" width="0.2328%" height="15" fill="rgb(228,214,39)" fg:x="270710" fg:w="1205"/><text x="52.5533%" y="703.50"></text></g><g><title>btrfs_update_root_times (187 samples, 0.04%)</title><rect x="52.5000%" y="677" width="0.0361%" height="15" fill="rgb(218,179,33)" fg:x="271728" fg:w="187"/><text x="52.7500%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (115 samples, 0.02%)</title><rect x="52.5139%" y="661" width="0.0222%" height="15" fill="rgb(235,193,39)" fg:x="271800" fg:w="115"/><text x="52.7639%" y="671.50"></text></g><g><title>read_tsc (68 samples, 0.01%)</title><rect x="52.5230%" y="645" width="0.0131%" height="15" fill="rgb(219,221,36)" fg:x="271847" fg:w="68"/><text x="52.7730%" y="655.50"></text></g><g><title>drop_nlink (55 samples, 0.01%)</title><rect x="52.5361%" y="693" width="0.0106%" height="15" fill="rgb(248,218,19)" fg:x="271915" fg:w="55"/><text x="52.7861%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="52.5858%" y="661" width="0.0120%" height="15" fill="rgb(205,50,9)" fg:x="272172" fg:w="62"/><text x="52.8358%" y="671.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="52.6101%" y="629" width="0.0160%" height="15" fill="rgb(238,81,28)" fg:x="272298" fg:w="83"/><text x="52.8601%" y="639.50"></text></g><g><title>_raw_spin_lock (126 samples, 0.02%)</title><rect x="52.6923%" y="597" width="0.0243%" height="15" fill="rgb(235,110,19)" fg:x="272723" fg:w="126"/><text x="52.9423%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (468 samples, 0.09%)</title><rect x="52.6264%" y="629" width="0.0904%" height="15" fill="rgb(214,7,14)" fg:x="272382" fg:w="468"/><text x="52.8764%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (291 samples, 0.06%)</title><rect x="52.6606%" y="613" width="0.0562%" height="15" fill="rgb(211,77,3)" fg:x="272559" fg:w="291"/><text x="52.9106%" y="623.50"></text></g><g><title>__reserve_bytes (846 samples, 0.16%)</title><rect x="52.5997%" y="645" width="0.1635%" height="15" fill="rgb(229,5,9)" fg:x="272244" fg:w="846"/><text x="52.8497%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (240 samples, 0.05%)</title><rect x="52.7168%" y="629" width="0.0464%" height="15" fill="rgb(225,90,11)" fg:x="272850" fg:w="240"/><text x="52.9668%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (155 samples, 0.03%)</title><rect x="52.7332%" y="613" width="0.0299%" height="15" fill="rgb(242,56,8)" fg:x="272935" fg:w="155"/><text x="52.9832%" y="623.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="52.7502%" y="597" width="0.0129%" height="15" fill="rgb(249,212,39)" fg:x="273023" fg:w="67"/><text x="53.0002%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (932 samples, 0.18%)</title><rect x="52.5833%" y="677" width="0.1801%" height="15" fill="rgb(236,90,9)" fg:x="272159" fg:w="932"/><text x="52.8333%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (857 samples, 0.17%)</title><rect x="52.5978%" y="661" width="0.1656%" height="15" fill="rgb(206,88,35)" fg:x="272234" fg:w="857"/><text x="52.8478%" y="671.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="52.8030%" y="661" width="0.0131%" height="15" fill="rgb(205,126,30)" fg:x="273296" fg:w="68"/><text x="53.0530%" y="671.50"></text></g><g><title>join_transaction (262 samples, 0.05%)</title><rect x="52.7659%" y="677" width="0.0506%" height="15" fill="rgb(230,176,12)" fg:x="273104" fg:w="262"/><text x="53.0159%" y="687.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="52.8318%" y="661" width="0.0126%" height="15" fill="rgb(243,19,9)" fg:x="273445" fg:w="65"/><text x="53.0818%" y="671.50"></text></g><g><title>kmem_cache_alloc (174 samples, 0.03%)</title><rect x="52.8165%" y="677" width="0.0336%" height="15" fill="rgb(245,171,17)" fg:x="273366" fg:w="174"/><text x="53.0665%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="52.8549%" y="661" width="0.0120%" height="15" fill="rgb(227,52,21)" fg:x="273565" fg:w="62"/><text x="53.1049%" y="671.50"></text></g><g><title>btrfs_unlink (38,807 samples, 7.50%)</title><rect x="45.3693%" y="709" width="7.4978%" height="15" fill="rgb(238,69,14)" fg:x="234821" fg:w="38807"/><text x="45.6193%" y="719.50">btrfs_unli..</text></g><g><title>start_transaction (1,658 samples, 0.32%)</title><rect x="52.5468%" y="693" width="0.3203%" height="15" fill="rgb(241,156,39)" fg:x="271970" fg:w="1658"/><text x="52.7968%" y="703.50"></text></g><g><title>wait_current_trans (88 samples, 0.02%)</title><rect x="52.8501%" y="677" width="0.0170%" height="15" fill="rgb(212,227,28)" fg:x="273540" fg:w="88"/><text x="53.1001%" y="687.50"></text></g><g><title>d_delete (114 samples, 0.02%)</title><rect x="52.8671%" y="709" width="0.0220%" height="15" fill="rgb(209,118,27)" fg:x="273628" fg:w="114"/><text x="53.1171%" y="719.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="52.8698%" y="693" width="0.0193%" height="15" fill="rgb(226,102,5)" fg:x="273642" fg:w="100"/><text x="53.1198%" y="703.50"></text></g><g><title>__srcu_read_lock (101 samples, 0.02%)</title><rect x="52.9092%" y="661" width="0.0195%" height="15" fill="rgb(223,34,3)" fg:x="273846" fg:w="101"/><text x="53.1592%" y="671.50"></text></g><g><title>dentry_unlink_inode (268 samples, 0.05%)</title><rect x="52.8891%" y="709" width="0.0518%" height="15" fill="rgb(221,81,38)" fg:x="273742" fg:w="268"/><text x="53.1391%" y="719.50"></text></g><g><title>fsnotify_destroy_marks (199 samples, 0.04%)</title><rect x="52.9025%" y="693" width="0.0384%" height="15" fill="rgb(236,219,28)" fg:x="273811" fg:w="199"/><text x="53.1525%" y="703.50"></text></g><g><title>fsnotify_grab_connector (182 samples, 0.04%)</title><rect x="52.9058%" y="677" width="0.0352%" height="15" fill="rgb(213,200,14)" fg:x="273828" fg:w="182"/><text x="53.1558%" y="687.50"></text></g><g><title>__srcu_read_unlock (63 samples, 0.01%)</title><rect x="52.9287%" y="661" width="0.0122%" height="15" fill="rgb(240,33,19)" fg:x="273947" fg:w="63"/><text x="53.1787%" y="671.50"></text></g><g><title>down_write (339 samples, 0.07%)</title><rect x="52.9409%" y="709" width="0.0655%" height="15" fill="rgb(233,113,27)" fg:x="274010" fg:w="339"/><text x="53.1909%" y="719.50"></text></g><g><title>fsnotify (234 samples, 0.05%)</title><rect x="53.0064%" y="709" width="0.0452%" height="15" fill="rgb(220,221,18)" fg:x="274349" fg:w="234"/><text x="53.2564%" y="719.50"></text></g><g><title>ihold (62 samples, 0.01%)</title><rect x="53.0516%" y="709" width="0.0120%" height="15" fill="rgb(238,92,8)" fg:x="274583" fg:w="62"/><text x="53.3016%" y="719.50"></text></g><g><title>iput.part.0 (145 samples, 0.03%)</title><rect x="53.0650%" y="709" width="0.0280%" height="15" fill="rgb(222,164,16)" fg:x="274652" fg:w="145"/><text x="53.3150%" y="719.50"></text></g><g><title>_atomic_dec_and_lock (126 samples, 0.02%)</title><rect x="53.0686%" y="693" width="0.0243%" height="15" fill="rgb(241,119,3)" fg:x="274671" fg:w="126"/><text x="53.3186%" y="703.50"></text></g><g><title>inode_permission.part.0 (78 samples, 0.02%)</title><rect x="53.1040%" y="693" width="0.0151%" height="15" fill="rgb(241,44,8)" fg:x="274854" fg:w="78"/><text x="53.3540%" y="703.50"></text></g><g><title>may_delete (142 samples, 0.03%)</title><rect x="53.0930%" y="709" width="0.0274%" height="15" fill="rgb(230,36,40)" fg:x="274797" fg:w="142"/><text x="53.3430%" y="719.50"></text></g><g><title>do_unlinkat (96,949 samples, 18.73%)</title><rect x="34.4065%" y="741" width="18.7313%" height="15" fill="rgb(243,16,36)" fg:x="178080" fg:w="96949"/><text x="34.6565%" y="751.50">do_unlinkat</text></g><g><title>vfs_unlink (40,394 samples, 7.80%)</title><rect x="45.3334%" y="725" width="7.8044%" height="15" fill="rgb(231,4,26)" fg:x="234635" fg:w="40394"/><text x="45.5834%" y="735.50">vfs_unlink</text></g><g><title>up_write (77 samples, 0.01%)</title><rect x="53.1229%" y="709" width="0.0149%" height="15" fill="rgb(240,9,31)" fg:x="274952" fg:w="77"/><text x="53.3729%" y="719.50"></text></g><g><title>do_syscall_64 (109,122 samples, 21.08%)</title><rect x="32.0576%" y="757" width="21.0832%" height="15" fill="rgb(207,173,15)" fg:x="165923" fg:w="109122"/><text x="32.3076%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (109,244 samples, 21.11%)</title><rect x="32.0491%" y="773" width="21.1068%" height="15" fill="rgb(224,192,53)" fg:x="165879" fg:w="109244"/><text x="32.2991%" y="783.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (78 samples, 0.02%)</title><rect x="53.1409%" y="757" width="0.0151%" height="15" fill="rgb(223,67,28)" fg:x="275045" fg:w="78"/><text x="53.3909%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.01%)</title><rect x="53.1440%" y="741" width="0.0120%" height="15" fill="rgb(211,20,47)" fg:x="275061" fg:w="62"/><text x="53.3940%" y="751.50"></text></g><g><title>syscall_return_via_sysret (126 samples, 0.02%)</title><rect x="53.1577%" y="773" width="0.0243%" height="15" fill="rgb(240,228,2)" fg:x="275132" fg:w="126"/><text x="53.4077%" y="783.50"></text></g><g><title>__GI_unlinkat (109,836 samples, 21.22%)</title><rect x="31.9610%" y="789" width="21.2212%" height="15" fill="rgb(248,151,12)" fg:x="165423" fg:w="109836"/><text x="32.2110%" y="799.50">__GI_unlinkat</text></g><g><title>__closedir (68 samples, 0.01%)</title><rect x="53.1832%" y="789" width="0.0131%" height="15" fill="rgb(244,8,39)" fg:x="275264" fg:w="68"/><text x="53.4332%" y="799.50"></text></g><g><title>_int_free (60 samples, 0.01%)</title><rect x="53.1847%" y="773" width="0.0116%" height="15" fill="rgb(222,26,8)" fg:x="275272" fg:w="60"/><text x="53.4347%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (57 samples, 0.01%)</title><rect x="53.2006%" y="773" width="0.0110%" height="15" fill="rgb(213,106,44)" fg:x="275354" fg:w="57"/><text x="53.4506%" y="783.50"></text></g><g><title>__fcntl64_nocancel_adjusted (54 samples, 0.01%)</title><rect x="53.2012%" y="757" width="0.0104%" height="15" fill="rgb(214,129,20)" fg:x="275357" fg:w="54"/><text x="53.4512%" y="767.50"></text></g><g><title>btrfs_getattr (53 samples, 0.01%)</title><rect x="53.2280%" y="693" width="0.0102%" height="15" fill="rgb(212,32,13)" fg:x="275496" fg:w="53"/><text x="53.4780%" y="703.50"></text></g><g><title>__do_sys_newfstat (116 samples, 0.02%)</title><rect x="53.2211%" y="725" width="0.0224%" height="15" fill="rgb(208,168,33)" fg:x="275460" fg:w="116"/><text x="53.4711%" y="735.50"></text></g><g><title>vfs_fstat (91 samples, 0.02%)</title><rect x="53.2259%" y="709" width="0.0176%" height="15" fill="rgb(231,207,8)" fg:x="275485" fg:w="91"/><text x="53.4759%" y="719.50"></text></g><g><title>do_syscall_64 (123 samples, 0.02%)</title><rect x="53.2201%" y="741" width="0.0238%" height="15" fill="rgb(235,219,23)" fg:x="275455" fg:w="123"/><text x="53.4701%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.02%)</title><rect x="53.2193%" y="757" width="0.0249%" height="15" fill="rgb(226,216,26)" fg:x="275451" fg:w="129"/><text x="53.4693%" y="767.50"></text></g><g><title>__GI___fxstat (172 samples, 0.03%)</title><rect x="53.2116%" y="773" width="0.0332%" height="15" fill="rgb(239,137,16)" fg:x="275411" fg:w="172"/><text x="53.4616%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (62 samples, 0.01%)</title><rect x="53.2456%" y="757" width="0.0120%" height="15" fill="rgb(207,12,36)" fg:x="275587" fg:w="62"/><text x="53.4956%" y="767.50"></text></g><g><title>__fcntl64_nocancel_adjusted (62 samples, 0.01%)</title><rect x="53.2456%" y="741" width="0.0120%" height="15" fill="rgb(210,214,24)" fg:x="275587" fg:w="62"/><text x="53.4956%" y="751.50"></text></g><g><title>__GI___libc_malloc (108 samples, 0.02%)</title><rect x="53.2576%" y="757" width="0.0209%" height="15" fill="rgb(206,56,30)" fg:x="275649" fg:w="108"/><text x="53.5076%" y="767.50"></text></g><g><title>_int_malloc (86 samples, 0.02%)</title><rect x="53.2618%" y="741" width="0.0166%" height="15" fill="rgb(228,143,26)" fg:x="275671" fg:w="86"/><text x="53.5118%" y="751.50"></text></g><g><title>__fdopendir (407 samples, 0.08%)</title><rect x="53.2006%" y="789" width="0.0786%" height="15" fill="rgb(216,218,46)" fg:x="275354" fg:w="407"/><text x="53.4506%" y="799.50"></text></g><g><title>__alloc_dir (178 samples, 0.03%)</title><rect x="53.2448%" y="773" width="0.0344%" height="15" fill="rgb(206,6,19)" fg:x="275583" fg:w="178"/><text x="53.4948%" y="783.50"></text></g><g><title>memcg_slab_post_alloc_hook (55 samples, 0.01%)</title><rect x="53.3240%" y="629" width="0.0106%" height="15" fill="rgb(239,177,51)" fg:x="275993" fg:w="55"/><text x="53.5740%" y="639.50"></text></g><g><title>kmem_cache_alloc (143 samples, 0.03%)</title><rect x="53.3181%" y="645" width="0.0276%" height="15" fill="rgb(216,55,25)" fg:x="275962" fg:w="143"/><text x="53.5681%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (52 samples, 0.01%)</title><rect x="53.3356%" y="629" width="0.0100%" height="15" fill="rgb(231,163,29)" fg:x="276053" fg:w="52"/><text x="53.5856%" y="639.50"></text></g><g><title>__alloc_file (205 samples, 0.04%)</title><rect x="53.3148%" y="661" width="0.0396%" height="15" fill="rgb(232,149,50)" fg:x="275945" fg:w="205"/><text x="53.5648%" y="671.50"></text></g><g><title>alloc_empty_file (211 samples, 0.04%)</title><rect x="53.3138%" y="677" width="0.0408%" height="15" fill="rgb(223,142,48)" fg:x="275940" fg:w="211"/><text x="53.5638%" y="687.50"></text></g><g><title>btrfs_opendir (109 samples, 0.02%)</title><rect x="53.3681%" y="661" width="0.0211%" height="15" fill="rgb(245,83,23)" fg:x="276221" fg:w="109"/><text x="53.6181%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (96 samples, 0.02%)</title><rect x="53.3706%" y="645" width="0.0185%" height="15" fill="rgb(224,63,2)" fg:x="276234" fg:w="96"/><text x="53.6206%" y="655.50"></text></g><g><title>security_file_open (59 samples, 0.01%)</title><rect x="53.3959%" y="661" width="0.0114%" height="15" fill="rgb(218,65,53)" fg:x="276365" fg:w="59"/><text x="53.6459%" y="671.50"></text></g><g><title>do_dentry_open (251 samples, 0.05%)</title><rect x="53.3590%" y="677" width="0.0485%" height="15" fill="rgb(221,84,29)" fg:x="276174" fg:w="251"/><text x="53.6090%" y="687.50"></text></g><g><title>lookup_fast (109 samples, 0.02%)</title><rect x="53.4098%" y="677" width="0.0211%" height="15" fill="rgb(234,0,32)" fg:x="276437" fg:w="109"/><text x="53.6598%" y="687.50"></text></g><g><title>__d_lookup_rcu (103 samples, 0.02%)</title><rect x="53.4110%" y="661" width="0.0199%" height="15" fill="rgb(206,20,16)" fg:x="276443" fg:w="103"/><text x="53.6610%" y="671.50"></text></g><g><title>do_filp_open (717 samples, 0.14%)</title><rect x="53.3076%" y="709" width="0.1385%" height="15" fill="rgb(244,172,18)" fg:x="275908" fg:w="717"/><text x="53.5576%" y="719.50"></text></g><g><title>path_openat (701 samples, 0.14%)</title><rect x="53.3107%" y="693" width="0.1354%" height="15" fill="rgb(254,133,1)" fg:x="275924" fg:w="701"/><text x="53.5607%" y="703.50"></text></g><g><title>getname_flags.part.0 (93 samples, 0.02%)</title><rect x="53.4506%" y="709" width="0.0180%" height="15" fill="rgb(222,206,41)" fg:x="276648" fg:w="93"/><text x="53.7006%" y="719.50"></text></g><g><title>__x64_sys_openat (909 samples, 0.18%)</title><rect x="53.2966%" y="741" width="0.1756%" height="15" fill="rgb(212,3,42)" fg:x="275851" fg:w="909"/><text x="53.5466%" y="751.50"></text></g><g><title>do_sys_openat2 (905 samples, 0.17%)</title><rect x="53.2974%" y="725" width="0.1749%" height="15" fill="rgb(241,11,4)" fg:x="275855" fg:w="905"/><text x="53.5474%" y="735.50"></text></g><g><title>do_syscall_64 (917 samples, 0.18%)</title><rect x="53.2953%" y="757" width="0.1772%" height="15" fill="rgb(205,19,26)" fg:x="275844" fg:w="917"/><text x="53.5453%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (928 samples, 0.18%)</title><rect x="53.2941%" y="773" width="0.1793%" height="15" fill="rgb(210,179,32)" fg:x="275838" fg:w="928"/><text x="53.5441%" y="783.50"></text></g><g><title>__libc_openat64 (989 samples, 0.19%)</title><rect x="53.2835%" y="789" width="0.1911%" height="15" fill="rgb(227,116,49)" fg:x="275783" fg:w="989"/><text x="53.5335%" y="799.50"></text></g><g><title>crc32c_pcl_intel_update (68 samples, 0.01%)</title><rect x="53.5130%" y="773" width="0.0131%" height="15" fill="rgb(211,146,6)" fg:x="276971" fg:w="68"/><text x="53.7630%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (168 samples, 0.03%)</title><rect x="53.5261%" y="773" width="0.0325%" height="15" fill="rgb(219,44,39)" fg:x="277039" fg:w="168"/><text x="53.7761%" y="783.50"></text></g><g><title>_raw_spin_lock (152 samples, 0.03%)</title><rect x="53.6647%" y="677" width="0.0294%" height="15" fill="rgb(234,128,11)" fg:x="277756" fg:w="152"/><text x="53.9147%" y="687.50"></text></g><g><title>d_lru_add (479 samples, 0.09%)</title><rect x="53.6133%" y="709" width="0.0925%" height="15" fill="rgb(220,183,53)" fg:x="277490" fg:w="479"/><text x="53.8633%" y="719.50"></text></g><g><title>list_lru_add (451 samples, 0.09%)</title><rect x="53.6187%" y="693" width="0.0871%" height="15" fill="rgb(213,219,32)" fg:x="277518" fg:w="451"/><text x="53.8687%" y="703.50"></text></g><g><title>mem_cgroup_from_obj (61 samples, 0.01%)</title><rect x="53.6940%" y="677" width="0.0118%" height="15" fill="rgb(232,156,16)" fg:x="277908" fg:w="61"/><text x="53.9440%" y="687.50"></text></g><g><title>lockref_put_or_lock (166 samples, 0.03%)</title><rect x="53.7058%" y="709" width="0.0321%" height="15" fill="rgb(246,135,34)" fg:x="277969" fg:w="166"/><text x="53.9558%" y="719.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="53.7271%" y="693" width="0.0108%" height="15" fill="rgb(241,99,0)" fg:x="278079" fg:w="56"/><text x="53.9771%" y="703.50"></text></g><g><title>dput (755 samples, 0.15%)</title><rect x="53.5938%" y="725" width="0.1459%" height="15" fill="rgb(222,103,45)" fg:x="277389" fg:w="755"/><text x="53.8438%" y="735.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (69 samples, 0.01%)</title><rect x="53.7897%" y="629" width="0.0133%" height="15" fill="rgb(212,57,4)" fg:x="278403" fg:w="69"/><text x="54.0397%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (265 samples, 0.05%)</title><rect x="53.8044%" y="629" width="0.0512%" height="15" fill="rgb(215,68,47)" fg:x="278479" fg:w="265"/><text x="54.0544%" y="639.50"></text></g><g><title>_raw_spin_lock (181 samples, 0.03%)</title><rect x="53.8206%" y="613" width="0.0350%" height="15" fill="rgb(230,84,2)" fg:x="278563" fg:w="181"/><text x="54.0706%" y="623.50"></text></g><g><title>btrfs_free_path (591 samples, 0.11%)</title><rect x="53.7758%" y="661" width="0.1142%" height="15" fill="rgb(220,102,14)" fg:x="278331" fg:w="591"/><text x="54.0258%" y="671.50"></text></g><g><title>btrfs_release_path (579 samples, 0.11%)</title><rect x="53.7781%" y="645" width="0.1119%" height="15" fill="rgb(240,10,32)" fg:x="278343" fg:w="579"/><text x="54.0281%" y="655.50"></text></g><g><title>release_extent_buffer (178 samples, 0.03%)</title><rect x="53.8556%" y="629" width="0.0344%" height="15" fill="rgb(215,47,27)" fg:x="278744" fg:w="178"/><text x="54.1056%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="53.9690%" y="613" width="0.0168%" height="15" fill="rgb(233,188,43)" fg:x="279331" fg:w="87"/><text x="54.2190%" y="623.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="53.9750%" y="597" width="0.0108%" height="15" fill="rgb(253,190,1)" fg:x="279362" fg:w="56"/><text x="54.2250%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (274 samples, 0.05%)</title><rect x="53.9651%" y="629" width="0.0529%" height="15" fill="rgb(206,114,52)" fg:x="279311" fg:w="274"/><text x="54.2151%" y="639.50"></text></g><g><title>btrfs_root_node (167 samples, 0.03%)</title><rect x="53.9858%" y="613" width="0.0323%" height="15" fill="rgb(233,120,37)" fg:x="279418" fg:w="167"/><text x="54.2358%" y="623.50"></text></g><g><title>dequeue_task_fair (54 samples, 0.01%)</title><rect x="54.0345%" y="581" width="0.0104%" height="15" fill="rgb(214,52,39)" fg:x="279670" fg:w="54"/><text x="54.2845%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (208 samples, 0.04%)</title><rect x="54.0180%" y="629" width="0.0402%" height="15" fill="rgb(223,80,29)" fg:x="279585" fg:w="208"/><text x="54.2680%" y="639.50"></text></g><g><title>schedule (157 samples, 0.03%)</title><rect x="54.0279%" y="613" width="0.0303%" height="15" fill="rgb(230,101,40)" fg:x="279636" fg:w="157"/><text x="54.2779%" y="623.50"></text></g><g><title>__schedule (148 samples, 0.03%)</title><rect x="54.0296%" y="597" width="0.0286%" height="15" fill="rgb(219,211,8)" fg:x="279645" fg:w="148"/><text x="54.2796%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (222 samples, 0.04%)</title><rect x="54.0698%" y="629" width="0.0429%" height="15" fill="rgb(252,126,28)" fg:x="279853" fg:w="222"/><text x="54.3198%" y="639.50"></text></g><g><title>btrfs_set_lock_blocking_read (161 samples, 0.03%)</title><rect x="54.0816%" y="613" width="0.0311%" height="15" fill="rgb(215,56,38)" fg:x="279914" fg:w="161"/><text x="54.3316%" y="623.50"></text></g><g><title>_raw_read_lock (90 samples, 0.02%)</title><rect x="54.1199%" y="613" width="0.0174%" height="15" fill="rgb(249,55,44)" fg:x="280112" fg:w="90"/><text x="54.3699%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (255 samples, 0.05%)</title><rect x="54.1127%" y="629" width="0.0493%" height="15" fill="rgb(220,221,32)" fg:x="280075" fg:w="255"/><text x="54.3627%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (128 samples, 0.02%)</title><rect x="54.1373%" y="613" width="0.0247%" height="15" fill="rgb(212,216,41)" fg:x="280202" fg:w="128"/><text x="54.3873%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (200 samples, 0.04%)</title><rect x="54.1620%" y="629" width="0.0386%" height="15" fill="rgb(228,213,43)" fg:x="280330" fg:w="200"/><text x="54.4120%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,109 samples, 0.21%)</title><rect x="54.2022%" y="629" width="0.2143%" height="15" fill="rgb(211,31,26)" fg:x="280538" fg:w="1109"/><text x="54.4522%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (100 samples, 0.02%)</title><rect x="54.4466%" y="613" width="0.0193%" height="15" fill="rgb(229,202,19)" fg:x="281803" fg:w="100"/><text x="54.6966%" y="623.50"></text></g><g><title>verify_parent_transid (60 samples, 0.01%)</title><rect x="54.4543%" y="597" width="0.0116%" height="15" fill="rgb(229,105,46)" fg:x="281843" fg:w="60"/><text x="54.7043%" y="607.50"></text></g><g><title>btrfs_get_64 (157 samples, 0.03%)</title><rect x="54.4659%" y="613" width="0.0303%" height="15" fill="rgb(235,108,1)" fg:x="281903" fg:w="157"/><text x="54.7159%" y="623.50"></text></g><g><title>btrfs_verify_level_key (59 samples, 0.01%)</title><rect x="54.4988%" y="613" width="0.0114%" height="15" fill="rgb(245,111,35)" fg:x="282073" fg:w="59"/><text x="54.7488%" y="623.50"></text></g><g><title>__radix_tree_lookup (840 samples, 0.16%)</title><rect x="54.5615%" y="597" width="0.1623%" height="15" fill="rgb(219,185,31)" fg:x="282398" fg:w="840"/><text x="54.8115%" y="607.50"></text></g><g><title>check_buffer_tree_ref (70 samples, 0.01%)</title><rect x="54.7352%" y="581" width="0.0135%" height="15" fill="rgb(214,4,43)" fg:x="283297" fg:w="70"/><text x="54.9852%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (344 samples, 0.07%)</title><rect x="54.7238%" y="597" width="0.0665%" height="15" fill="rgb(235,227,40)" fg:x="283238" fg:w="344"/><text x="54.9738%" y="607.50"></text></g><g><title>mark_page_accessed (215 samples, 0.04%)</title><rect x="54.7488%" y="581" width="0.0415%" height="15" fill="rgb(230,88,30)" fg:x="283367" fg:w="215"/><text x="54.9988%" y="591.50"></text></g><g><title>find_extent_buffer (1,458 samples, 0.28%)</title><rect x="54.5102%" y="613" width="0.2817%" height="15" fill="rgb(216,217,1)" fg:x="282132" fg:w="1458"/><text x="54.7602%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,155 samples, 0.42%)</title><rect x="54.4164%" y="629" width="0.4164%" height="15" fill="rgb(248,139,50)" fg:x="281647" fg:w="2155"/><text x="54.6664%" y="639.50"></text></g><g><title>read_extent_buffer (212 samples, 0.04%)</title><rect x="54.7918%" y="613" width="0.0410%" height="15" fill="rgb(233,1,21)" fg:x="283590" fg:w="212"/><text x="55.0418%" y="623.50"></text></g><g><title>btrfs_search_slot (4,975 samples, 0.96%)</title><rect x="53.8954%" y="645" width="0.9612%" height="15" fill="rgb(215,183,12)" fg:x="278950" fg:w="4975"/><text x="54.1454%" y="655.50"></text></g><g><title>unlock_up (123 samples, 0.02%)</title><rect x="54.8328%" y="629" width="0.0238%" height="15" fill="rgb(229,104,42)" fg:x="283802" fg:w="123"/><text x="55.0828%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (5,120 samples, 0.99%)</title><rect x="53.8900%" y="661" width="0.9892%" height="15" fill="rgb(243,34,48)" fg:x="278922" fg:w="5120"/><text x="54.1400%" y="671.50"></text></g><g><title>crc32c (117 samples, 0.02%)</title><rect x="54.8566%" y="645" width="0.0226%" height="15" fill="rgb(239,11,44)" fg:x="283925" fg:w="117"/><text x="55.1066%" y="655.50"></text></g><g><title>crypto_shash_update (94 samples, 0.02%)</title><rect x="54.8610%" y="629" width="0.0182%" height="15" fill="rgb(231,98,35)" fg:x="283948" fg:w="94"/><text x="55.1110%" y="639.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="54.9045%" y="645" width="0.0126%" height="15" fill="rgb(233,28,25)" fg:x="284173" fg:w="65"/><text x="55.1545%" y="655.50"></text></g><g><title>kmem_cache_alloc (234 samples, 0.05%)</title><rect x="54.8792%" y="661" width="0.0452%" height="15" fill="rgb(234,123,11)" fg:x="284042" fg:w="234"/><text x="55.1292%" y="671.50"></text></g><g><title>btrfs_lookup (6,153 samples, 1.19%)</title><rect x="53.7553%" y="693" width="1.1888%" height="15" fill="rgb(220,69,3)" fg:x="278225" fg:w="6153"/><text x="54.0053%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (6,137 samples, 1.19%)</title><rect x="53.7584%" y="677" width="1.1857%" height="15" fill="rgb(214,64,36)" fg:x="278241" fg:w="6137"/><text x="54.0084%" y="687.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="54.9244%" y="661" width="0.0197%" height="15" fill="rgb(211,138,32)" fg:x="284276" fg:w="102"/><text x="55.1744%" y="671.50"></text></g><g><title>__slab_alloc (154 samples, 0.03%)</title><rect x="55.0067%" y="645" width="0.0298%" height="15" fill="rgb(213,118,47)" fg:x="284702" fg:w="154"/><text x="55.2567%" y="655.50"></text></g><g><title>___slab_alloc (143 samples, 0.03%)</title><rect x="55.0088%" y="629" width="0.0276%" height="15" fill="rgb(243,124,49)" fg:x="284713" fg:w="143"/><text x="55.2588%" y="639.50"></text></g><g><title>get_partial_node.part.0 (73 samples, 0.01%)</title><rect x="55.0223%" y="613" width="0.0141%" height="15" fill="rgb(221,30,28)" fg:x="284783" fg:w="73"/><text x="55.2723%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (124 samples, 0.02%)</title><rect x="55.1064%" y="629" width="0.0240%" height="15" fill="rgb(246,37,13)" fg:x="285218" fg:w="124"/><text x="55.3564%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (80 samples, 0.02%)</title><rect x="55.1149%" y="613" width="0.0155%" height="15" fill="rgb(249,66,14)" fg:x="285262" fg:w="80"/><text x="55.3649%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (505 samples, 0.10%)</title><rect x="55.0364%" y="645" width="0.0976%" height="15" fill="rgb(213,166,5)" fg:x="284856" fg:w="505"/><text x="55.2864%" y="655.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="55.1346%" y="645" width="0.0120%" height="15" fill="rgb(221,66,24)" fg:x="285364" fg:w="62"/><text x="55.3846%" y="655.50"></text></g><g><title>obj_cgroup_charge (139 samples, 0.03%)</title><rect x="55.1647%" y="629" width="0.0269%" height="15" fill="rgb(210,132,17)" fg:x="285520" fg:w="139"/><text x="55.4147%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,123 samples, 0.22%)</title><rect x="54.9752%" y="661" width="0.2170%" height="15" fill="rgb(243,202,5)" fg:x="284539" fg:w="1123"/><text x="55.2252%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (236 samples, 0.05%)</title><rect x="55.1466%" y="645" width="0.0456%" height="15" fill="rgb(233,70,48)" fg:x="285426" fg:w="236"/><text x="55.3966%" y="655.50"></text></g><g><title>__d_alloc (1,299 samples, 0.25%)</title><rect x="54.9497%" y="677" width="0.2510%" height="15" fill="rgb(238,41,26)" fg:x="284407" fg:w="1299"/><text x="55.1997%" y="687.50"></text></g><g><title>d_alloc (1,428 samples, 0.28%)</title><rect x="54.9441%" y="693" width="0.2759%" height="15" fill="rgb(241,19,31)" fg:x="284378" fg:w="1428"/><text x="55.1941%" y="703.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="55.2067%" y="677" width="0.0133%" height="15" fill="rgb(214,76,10)" fg:x="285737" fg:w="69"/><text x="55.4567%" y="687.50"></text></g><g><title>__d_rehash (116 samples, 0.02%)</title><rect x="55.2279%" y="661" width="0.0224%" height="15" fill="rgb(254,202,22)" fg:x="285847" fg:w="116"/><text x="55.4779%" y="671.50"></text></g><g><title>d_splice_alias (221 samples, 0.04%)</title><rect x="55.2200%" y="693" width="0.0427%" height="15" fill="rgb(214,72,24)" fg:x="285806" fg:w="221"/><text x="55.4700%" y="703.50"></text></g><g><title>__d_add (201 samples, 0.04%)</title><rect x="55.2239%" y="677" width="0.0388%" height="15" fill="rgb(221,92,46)" fg:x="285826" fg:w="201"/><text x="55.4739%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="55.2503%" y="661" width="0.0124%" height="15" fill="rgb(246,13,50)" fg:x="285963" fg:w="64"/><text x="55.5003%" y="671.50"></text></g><g><title>__lookup_hash (8,368 samples, 1.62%)</title><rect x="53.7493%" y="709" width="1.6168%" height="15" fill="rgb(240,165,38)" fg:x="278194" fg:w="8368"/><text x="53.9993%" y="719.50"></text></g><g><title>lookup_dcache (535 samples, 0.10%)</title><rect x="55.2627%" y="693" width="0.1034%" height="15" fill="rgb(241,24,51)" fg:x="286027" fg:w="535"/><text x="55.5127%" y="703.50"></text></g><g><title>d_lookup (531 samples, 0.10%)</title><rect x="55.2635%" y="677" width="0.1026%" height="15" fill="rgb(227,51,44)" fg:x="286031" fg:w="531"/><text x="55.5135%" y="687.50"></text></g><g><title>__d_lookup (515 samples, 0.10%)</title><rect x="55.2666%" y="661" width="0.0995%" height="15" fill="rgb(231,121,3)" fg:x="286047" fg:w="515"/><text x="55.5166%" y="671.50"></text></g><g><title>down_write (84 samples, 0.02%)</title><rect x="55.3661%" y="709" width="0.0162%" height="15" fill="rgb(245,3,41)" fg:x="286562" fg:w="84"/><text x="55.6161%" y="719.50"></text></g><g><title>__legitimize_mnt (173 samples, 0.03%)</title><rect x="55.4184%" y="629" width="0.0334%" height="15" fill="rgb(214,13,26)" fg:x="286833" fg:w="173"/><text x="55.6684%" y="639.50"></text></g><g><title>__legitimize_path (258 samples, 0.05%)</title><rect x="55.4138%" y="645" width="0.0498%" height="15" fill="rgb(252,75,11)" fg:x="286809" fg:w="258"/><text x="55.6638%" y="655.50"></text></g><g><title>lockref_get_not_dead (61 samples, 0.01%)</title><rect x="55.4518%" y="629" width="0.0118%" height="15" fill="rgb(218,226,17)" fg:x="287006" fg:w="61"/><text x="55.7018%" y="639.50"></text></g><g><title>complete_walk (345 samples, 0.07%)</title><rect x="55.4028%" y="677" width="0.0667%" height="15" fill="rgb(248,89,38)" fg:x="286752" fg:w="345"/><text x="55.6528%" y="687.50"></text></g><g><title>try_to_unlazy (320 samples, 0.06%)</title><rect x="55.4076%" y="661" width="0.0618%" height="15" fill="rgb(237,73,46)" fg:x="286777" fg:w="320"/><text x="55.6576%" y="671.50"></text></g><g><title>btrfs_permission (86 samples, 0.02%)</title><rect x="55.8369%" y="645" width="0.0166%" height="15" fill="rgb(242,78,33)" fg:x="288999" fg:w="86"/><text x="56.0869%" y="655.50"></text></g><g><title>inode_permission.part.0 (1,261 samples, 0.24%)</title><rect x="55.6843%" y="661" width="0.2436%" height="15" fill="rgb(235,60,3)" fg:x="288209" fg:w="1261"/><text x="55.9343%" y="671.50"></text></g><g><title>generic_permission (385 samples, 0.07%)</title><rect x="55.8535%" y="645" width="0.0744%" height="15" fill="rgb(216,172,19)" fg:x="289085" fg:w="385"/><text x="56.1035%" y="655.50"></text></g><g><title>security_inode_permission (139 samples, 0.03%)</title><rect x="55.9279%" y="661" width="0.0269%" height="15" fill="rgb(227,6,42)" fg:x="289470" fg:w="139"/><text x="56.1779%" y="671.50"></text></g><g><title>lookup_fast (2,738 samples, 0.53%)</title><rect x="56.0390%" y="645" width="0.5290%" height="15" fill="rgb(223,207,42)" fg:x="290045" fg:w="2738"/><text x="56.2890%" y="655.50"></text></g><g><title>__d_lookup_rcu (2,199 samples, 0.42%)</title><rect x="56.1431%" y="629" width="0.4249%" height="15" fill="rgb(246,138,30)" fg:x="290584" fg:w="2199"/><text x="56.3931%" y="639.50"></text></g><g><title>link_path_walk.part.0 (6,315 samples, 1.22%)</title><rect x="55.4694%" y="677" width="1.2201%" height="15" fill="rgb(251,199,47)" fg:x="287097" fg:w="6315"/><text x="55.7194%" y="687.50"></text></g><g><title>walk_component (3,803 samples, 0.73%)</title><rect x="55.9548%" y="661" width="0.7348%" height="15" fill="rgb(228,218,44)" fg:x="289609" fg:w="3803"/><text x="56.2048%" y="671.50"></text></g><g><title>step_into (629 samples, 0.12%)</title><rect x="56.5680%" y="645" width="0.1215%" height="15" fill="rgb(220,68,6)" fg:x="292783" fg:w="629"/><text x="56.8180%" y="655.50"></text></g><g><title>__lookup_mnt (69 samples, 0.01%)</title><rect x="56.6762%" y="629" width="0.0133%" height="15" fill="rgb(240,60,26)" fg:x="293343" fg:w="69"/><text x="56.9262%" y="639.50"></text></g><g><title>path_init (286 samples, 0.06%)</title><rect x="56.6895%" y="677" width="0.0553%" height="15" fill="rgb(211,200,19)" fg:x="293412" fg:w="286"/><text x="56.9395%" y="687.50"></text></g><g><title>nd_jump_root (224 samples, 0.04%)</title><rect x="56.7015%" y="661" width="0.0433%" height="15" fill="rgb(242,145,30)" fg:x="293474" fg:w="224"/><text x="56.9515%" y="671.50"></text></g><g><title>set_root (201 samples, 0.04%)</title><rect x="56.7060%" y="645" width="0.0388%" height="15" fill="rgb(225,64,13)" fg:x="293497" fg:w="201"/><text x="56.9560%" y="655.50"></text></g><g><title>filename_parentat (7,086 samples, 1.37%)</title><rect x="55.3823%" y="709" width="1.3691%" height="15" fill="rgb(218,103,35)" fg:x="286646" fg:w="7086"/><text x="55.6323%" y="719.50"></text></g><g><title>path_parentat (7,024 samples, 1.36%)</title><rect x="55.3943%" y="693" width="1.3571%" height="15" fill="rgb(216,93,46)" fg:x="286708" fg:w="7024"/><text x="55.6443%" y="703.50"></text></g><g><title>kmem_cache_free (146 samples, 0.03%)</title><rect x="56.7514%" y="709" width="0.0282%" height="15" fill="rgb(225,159,27)" fg:x="293732" fg:w="146"/><text x="57.0014%" y="719.50"></text></g><g><title>__mnt_want_write (86 samples, 0.02%)</title><rect x="56.7983%" y="693" width="0.0166%" height="15" fill="rgb(225,204,11)" fg:x="293975" fg:w="86"/><text x="57.0483%" y="703.50"></text></g><g><title>mnt_want_write (207 samples, 0.04%)</title><rect x="56.7796%" y="709" width="0.0400%" height="15" fill="rgb(205,56,4)" fg:x="293878" fg:w="207"/><text x="57.0296%" y="719.50"></text></g><g><title>filename_create (15,949 samples, 3.08%)</title><rect x="53.7396%" y="725" width="3.0815%" height="15" fill="rgb(206,6,35)" fg:x="278144" fg:w="15949"/><text x="53.9896%" y="735.50">fil..</text></g><g><title>memcg_slab_post_alloc_hook (61 samples, 0.01%)</title><rect x="56.8974%" y="693" width="0.0118%" height="15" fill="rgb(247,73,52)" fg:x="294488" fg:w="61"/><text x="57.1474%" y="703.50"></text></g><g><title>memset_erms (814 samples, 0.16%)</title><rect x="56.9100%" y="693" width="0.1573%" height="15" fill="rgb(246,97,4)" fg:x="294553" fg:w="814"/><text x="57.1600%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,239 samples, 0.24%)</title><rect x="56.8484%" y="709" width="0.2394%" height="15" fill="rgb(212,37,15)" fg:x="294234" fg:w="1239"/><text x="57.0984%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (106 samples, 0.02%)</title><rect x="57.0673%" y="693" width="0.0205%" height="15" fill="rgb(208,130,40)" fg:x="295367" fg:w="106"/><text x="57.3173%" y="703.50"></text></g><g><title>__check_heap_object (151 samples, 0.03%)</title><rect x="57.2636%" y="677" width="0.0292%" height="15" fill="rgb(236,55,29)" fg:x="296383" fg:w="151"/><text x="57.5136%" y="687.50"></text></g><g><title>__virt_addr_valid (274 samples, 0.05%)</title><rect x="57.2927%" y="677" width="0.0529%" height="15" fill="rgb(209,156,45)" fg:x="296534" fg:w="274"/><text x="57.5427%" y="687.50"></text></g><g><title>getname_flags.part.0 (2,699 samples, 0.52%)</title><rect x="56.8277%" y="725" width="0.5215%" height="15" fill="rgb(249,107,4)" fg:x="294127" fg:w="2699"/><text x="57.0777%" y="735.50"></text></g><g><title>strncpy_from_user (1,353 samples, 0.26%)</title><rect x="57.0877%" y="709" width="0.2614%" height="15" fill="rgb(227,7,13)" fg:x="295473" fg:w="1353"/><text x="57.3377%" y="719.50"></text></g><g><title>__check_object_size (596 samples, 0.12%)</title><rect x="57.2340%" y="693" width="0.1152%" height="15" fill="rgb(250,129,14)" fg:x="296230" fg:w="596"/><text x="57.4840%" y="703.50"></text></g><g><title>kmem_cache_free (158 samples, 0.03%)</title><rect x="57.3491%" y="725" width="0.0305%" height="15" fill="rgb(229,92,13)" fg:x="296826" fg:w="158"/><text x="57.5991%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (58 samples, 0.01%)</title><rect x="57.3685%" y="709" width="0.0112%" height="15" fill="rgb(245,98,39)" fg:x="296926" fg:w="58"/><text x="57.6185%" y="719.50"></text></g><g><title>apparmor_path_symlink (103 samples, 0.02%)</title><rect x="57.3994%" y="709" width="0.0199%" height="15" fill="rgb(234,135,48)" fg:x="297086" fg:w="103"/><text x="57.6494%" y="719.50"></text></g><g><title>security_path_symlink (393 samples, 0.08%)</title><rect x="57.3886%" y="725" width="0.0759%" height="15" fill="rgb(230,98,28)" fg:x="297030" fg:w="393"/><text x="57.6386%" y="735.50"></text></g><g><title>tomoyo_path_symlink (234 samples, 0.05%)</title><rect x="57.4193%" y="709" width="0.0452%" height="15" fill="rgb(223,121,0)" fg:x="297189" fg:w="234"/><text x="57.6693%" y="719.50"></text></g><g><title>tomoyo_path_perm (222 samples, 0.04%)</title><rect x="57.4216%" y="693" width="0.0429%" height="15" fill="rgb(234,173,33)" fg:x="297201" fg:w="222"/><text x="57.6716%" y="703.50"></text></g><g><title>tomoyo_init_request_info (107 samples, 0.02%)</title><rect x="57.4438%" y="677" width="0.0207%" height="15" fill="rgb(245,47,8)" fg:x="297316" fg:w="107"/><text x="57.6938%" y="687.50"></text></g><g><title>up_write (67 samples, 0.01%)</title><rect x="57.4645%" y="725" width="0.0129%" height="15" fill="rgb(205,17,20)" fg:x="297423" fg:w="67"/><text x="57.7145%" y="735.50"></text></g><g><title>btrfs_put_transaction (57 samples, 0.01%)</title><rect x="57.5729%" y="677" width="0.0110%" height="15" fill="rgb(232,151,16)" fg:x="297984" fg:w="57"/><text x="57.8229%" y="687.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="57.5966%" y="645" width="0.0257%" height="15" fill="rgb(208,30,32)" fg:x="298107" fg:w="133"/><text x="57.8466%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (215 samples, 0.04%)</title><rect x="57.5856%" y="677" width="0.0415%" height="15" fill="rgb(254,26,3)" fg:x="298050" fg:w="215"/><text x="57.8356%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (207 samples, 0.04%)</title><rect x="57.5872%" y="661" width="0.0400%" height="15" fill="rgb(240,177,30)" fg:x="298058" fg:w="207"/><text x="57.8372%" y="671.50"></text></g><g><title>__btrfs_end_transaction (637 samples, 0.12%)</title><rect x="57.5310%" y="693" width="0.1231%" height="15" fill="rgb(248,76,44)" fg:x="297767" fg:w="637"/><text x="57.7810%" y="703.50"></text></g><g><title>kmem_cache_free (139 samples, 0.03%)</title><rect x="57.6272%" y="677" width="0.0269%" height="15" fill="rgb(241,186,54)" fg:x="298265" fg:w="139"/><text x="57.8772%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (146 samples, 0.03%)</title><rect x="57.7609%" y="629" width="0.0282%" height="15" fill="rgb(249,171,29)" fg:x="298957" fg:w="146"/><text x="58.0109%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (448 samples, 0.09%)</title><rect x="57.7249%" y="645" width="0.0866%" height="15" fill="rgb(237,151,44)" fg:x="298771" fg:w="448"/><text x="57.9749%" y="655.50"></text></g><g><title>rb_insert_color (116 samples, 0.02%)</title><rect x="57.7891%" y="629" width="0.0224%" height="15" fill="rgb(228,174,30)" fg:x="299103" fg:w="116"/><text x="58.0391%" y="639.50"></text></g><g><title>mutex_lock (63 samples, 0.01%)</title><rect x="57.8434%" y="629" width="0.0122%" height="15" fill="rgb(252,14,37)" fg:x="299384" fg:w="63"/><text x="58.0934%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (292 samples, 0.06%)</title><rect x="57.8115%" y="645" width="0.0564%" height="15" fill="rgb(207,111,40)" fg:x="299219" fg:w="292"/><text x="58.0615%" y="655.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="57.8555%" y="629" width="0.0124%" height="15" fill="rgb(248,171,54)" fg:x="299447" fg:w="64"/><text x="58.1055%" y="639.50"></text></g><g><title>__slab_alloc (125 samples, 0.02%)</title><rect x="57.8899%" y="629" width="0.0242%" height="15" fill="rgb(211,127,2)" fg:x="299625" fg:w="125"/><text x="58.1399%" y="639.50"></text></g><g><title>___slab_alloc (122 samples, 0.02%)</title><rect x="57.8905%" y="613" width="0.0236%" height="15" fill="rgb(236,87,47)" fg:x="299628" fg:w="122"/><text x="58.1405%" y="623.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="57.9205%" y="629" width="0.0120%" height="15" fill="rgb(223,190,45)" fg:x="299783" fg:w="62"/><text x="58.1705%" y="639.50"></text></g><g><title>__kmalloc (364 samples, 0.07%)</title><rect x="57.8679%" y="645" width="0.0703%" height="15" fill="rgb(215,5,16)" fg:x="299511" fg:w="364"/><text x="58.1179%" y="655.50"></text></g><g><title>mutex_spin_on_owner (447 samples, 0.09%)</title><rect x="57.9388%" y="629" width="0.0864%" height="15" fill="rgb(252,82,33)" fg:x="299878" fg:w="447"/><text x="58.1888%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (461 samples, 0.09%)</title><rect x="57.9382%" y="645" width="0.0891%" height="15" fill="rgb(247,213,44)" fg:x="299875" fg:w="461"/><text x="58.1882%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (265 samples, 0.05%)</title><rect x="58.0273%" y="645" width="0.0512%" height="15" fill="rgb(205,196,44)" fg:x="300336" fg:w="265"/><text x="58.2773%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (234 samples, 0.05%)</title><rect x="58.0333%" y="629" width="0.0452%" height="15" fill="rgb(237,96,54)" fg:x="300367" fg:w="234"/><text x="58.2833%" y="639.50"></text></g><g><title>_raw_spin_lock (210 samples, 0.04%)</title><rect x="58.0379%" y="613" width="0.0406%" height="15" fill="rgb(230,113,34)" fg:x="300391" fg:w="210"/><text x="58.2879%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (137 samples, 0.03%)</title><rect x="58.0785%" y="645" width="0.0265%" height="15" fill="rgb(221,224,12)" fg:x="300601" fg:w="137"/><text x="58.3285%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (127 samples, 0.02%)</title><rect x="58.0804%" y="629" width="0.0245%" height="15" fill="rgb(219,112,44)" fg:x="300611" fg:w="127"/><text x="58.3304%" y="639.50"></text></g><g><title>mutex_lock (83 samples, 0.02%)</title><rect x="58.1141%" y="645" width="0.0160%" height="15" fill="rgb(210,31,13)" fg:x="300785" fg:w="83"/><text x="58.3641%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,225 samples, 0.43%)</title><rect x="57.7103%" y="661" width="0.4299%" height="15" fill="rgb(230,25,16)" fg:x="298695" fg:w="2225"/><text x="57.9603%" y="671.50"></text></g><g><title>mutex_unlock (52 samples, 0.01%)</title><rect x="58.1301%" y="645" width="0.0100%" height="15" fill="rgb(246,108,53)" fg:x="300868" fg:w="52"/><text x="58.3801%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (153 samples, 0.03%)</title><rect x="58.1401%" y="661" width="0.0296%" height="15" fill="rgb(241,172,50)" fg:x="300920" fg:w="153"/><text x="58.3901%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (93 samples, 0.02%)</title><rect x="58.1517%" y="645" width="0.0180%" height="15" fill="rgb(235,141,10)" fg:x="300980" fg:w="93"/><text x="58.4017%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (254 samples, 0.05%)</title><rect x="58.1805%" y="645" width="0.0491%" height="15" fill="rgb(220,174,43)" fg:x="301129" fg:w="254"/><text x="58.4305%" y="655.50"></text></g><g><title>_raw_spin_lock (186 samples, 0.04%)</title><rect x="58.1937%" y="629" width="0.0359%" height="15" fill="rgb(215,181,40)" fg:x="301197" fg:w="186"/><text x="58.4437%" y="639.50"></text></g><g><title>btrfs_release_path (491 samples, 0.09%)</title><rect x="58.1697%" y="661" width="0.0949%" height="15" fill="rgb(230,97,2)" fg:x="301073" fg:w="491"/><text x="58.4197%" y="671.50"></text></g><g><title>release_extent_buffer (181 samples, 0.03%)</title><rect x="58.2296%" y="645" width="0.0350%" height="15" fill="rgb(211,25,27)" fg:x="301383" fg:w="181"/><text x="58.4796%" y="655.50"></text></g><g><title>btrfs_set_16 (63 samples, 0.01%)</title><rect x="58.2646%" y="661" width="0.0122%" height="15" fill="rgb(230,87,26)" fg:x="301564" fg:w="63"/><text x="58.5146%" y="671.50"></text></g><g><title>btrfs_get_32 (102 samples, 0.02%)</title><rect x="58.3005%" y="645" width="0.0197%" height="15" fill="rgb(227,160,17)" fg:x="301750" fg:w="102"/><text x="58.5505%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (83 samples, 0.02%)</title><rect x="58.3977%" y="597" width="0.0160%" height="15" fill="rgb(244,85,34)" fg:x="302253" fg:w="83"/><text x="58.6477%" y="607.50"></text></g><g><title>_raw_read_lock (58 samples, 0.01%)</title><rect x="58.4025%" y="581" width="0.0112%" height="15" fill="rgb(207,70,0)" fg:x="302278" fg:w="58"/><text x="58.6525%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (213 samples, 0.04%)</title><rect x="58.3952%" y="613" width="0.0412%" height="15" fill="rgb(223,129,7)" fg:x="302240" fg:w="213"/><text x="58.6452%" y="623.50"></text></g><g><title>btrfs_root_node (117 samples, 0.02%)</title><rect x="58.4137%" y="597" width="0.0226%" height="15" fill="rgb(246,105,7)" fg:x="302336" fg:w="117"/><text x="58.6637%" y="607.50"></text></g><g><title>dequeue_task_fair (63 samples, 0.01%)</title><rect x="58.4528%" y="565" width="0.0122%" height="15" fill="rgb(215,154,42)" fg:x="302538" fg:w="63"/><text x="58.7028%" y="575.50"></text></g><g><title>dequeue_entity (59 samples, 0.01%)</title><rect x="58.4535%" y="549" width="0.0114%" height="15" fill="rgb(220,215,30)" fg:x="302542" fg:w="59"/><text x="58.7035%" y="559.50"></text></g><g><title>__btrfs_tree_lock (221 samples, 0.04%)</title><rect x="58.4363%" y="613" width="0.0427%" height="15" fill="rgb(228,81,51)" fg:x="302453" fg:w="221"/><text x="58.6863%" y="623.50"></text></g><g><title>schedule (170 samples, 0.03%)</title><rect x="58.4462%" y="597" width="0.0328%" height="15" fill="rgb(247,71,54)" fg:x="302504" fg:w="170"/><text x="58.6962%" y="607.50"></text></g><g><title>__schedule (165 samples, 0.03%)</title><rect x="58.4471%" y="581" width="0.0319%" height="15" fill="rgb(234,176,34)" fg:x="302509" fg:w="165"/><text x="58.6971%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (209 samples, 0.04%)</title><rect x="58.4839%" y="613" width="0.0404%" height="15" fill="rgb(241,103,54)" fg:x="302699" fg:w="209"/><text x="58.7339%" y="623.50"></text></g><g><title>leaf_space_used (181 samples, 0.03%)</title><rect x="58.4893%" y="597" width="0.0350%" height="15" fill="rgb(228,22,34)" fg:x="302727" fg:w="181"/><text x="58.7393%" y="607.50"></text></g><g><title>btrfs_get_32 (132 samples, 0.03%)</title><rect x="58.4987%" y="581" width="0.0255%" height="15" fill="rgb(241,179,48)" fg:x="302776" fg:w="132"/><text x="58.7487%" y="591.50"></text></g><g><title>_raw_write_lock (91 samples, 0.02%)</title><rect x="58.5335%" y="597" width="0.0176%" height="15" fill="rgb(235,167,37)" fg:x="302956" fg:w="91"/><text x="58.7835%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (241 samples, 0.05%)</title><rect x="58.5273%" y="613" width="0.0466%" height="15" fill="rgb(213,109,30)" fg:x="302924" fg:w="241"/><text x="58.7773%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (118 samples, 0.02%)</title><rect x="58.5511%" y="597" width="0.0228%" height="15" fill="rgb(222,172,16)" fg:x="303047" fg:w="118"/><text x="58.8011%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,189 samples, 0.23%)</title><rect x="58.5739%" y="613" width="0.2297%" height="15" fill="rgb(233,192,5)" fg:x="303165" fg:w="1189"/><text x="58.8239%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (68 samples, 0.01%)</title><rect x="58.8299%" y="597" width="0.0131%" height="15" fill="rgb(247,189,41)" fg:x="304490" fg:w="68"/><text x="59.0799%" y="607.50"></text></g><g><title>btrfs_get_64 (126 samples, 0.02%)</title><rect x="58.8430%" y="597" width="0.0243%" height="15" fill="rgb(218,134,47)" fg:x="304558" fg:w="126"/><text x="59.0930%" y="607.50"></text></g><g><title>__radix_tree_lookup (460 samples, 0.09%)</title><rect x="58.9174%" y="581" width="0.0889%" height="15" fill="rgb(216,29,3)" fg:x="304943" fg:w="460"/><text x="59.1674%" y="591.50"></text></g><g><title>check_buffer_tree_ref (61 samples, 0.01%)</title><rect x="59.0154%" y="565" width="0.0118%" height="15" fill="rgb(246,140,12)" fg:x="305450" fg:w="61"/><text x="59.2654%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (260 samples, 0.05%)</title><rect x="59.0063%" y="581" width="0.0502%" height="15" fill="rgb(230,136,11)" fg:x="305403" fg:w="260"/><text x="59.2563%" y="591.50"></text></g><g><title>mark_page_accessed (152 samples, 0.03%)</title><rect x="59.0272%" y="565" width="0.0294%" height="15" fill="rgb(247,22,47)" fg:x="305511" fg:w="152"/><text x="59.2772%" y="575.50"></text></g><g><title>find_extent_buffer (923 samples, 0.18%)</title><rect x="58.8797%" y="597" width="0.1783%" height="15" fill="rgb(218,84,22)" fg:x="304748" fg:w="923"/><text x="59.1297%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,502 samples, 0.29%)</title><rect x="58.8036%" y="613" width="0.2902%" height="15" fill="rgb(216,87,39)" fg:x="304354" fg:w="1502"/><text x="59.0536%" y="623.50"></text></g><g><title>read_extent_buffer (185 samples, 0.04%)</title><rect x="59.0581%" y="597" width="0.0357%" height="15" fill="rgb(221,178,8)" fg:x="305671" fg:w="185"/><text x="59.3081%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (140 samples, 0.03%)</title><rect x="59.0961%" y="597" width="0.0270%" height="15" fill="rgb(230,42,11)" fg:x="305868" fg:w="140"/><text x="59.3461%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (140 samples, 0.03%)</title><rect x="59.0961%" y="581" width="0.0270%" height="15" fill="rgb(237,229,4)" fg:x="305868" fg:w="140"/><text x="59.3461%" y="591.50"></text></g><g><title>copy_for_split (128 samples, 0.02%)</title><rect x="59.1267%" y="597" width="0.0247%" height="15" fill="rgb(222,31,33)" fg:x="306026" fg:w="128"/><text x="59.3767%" y="607.50"></text></g><g><title>btrfs_get_token_32 (150 samples, 0.03%)</title><rect x="59.1719%" y="565" width="0.0290%" height="15" fill="rgb(210,17,39)" fg:x="306260" fg:w="150"/><text x="59.4219%" y="575.50"></text></g><g><title>btrfs_set_token_32 (171 samples, 0.03%)</title><rect x="59.2026%" y="565" width="0.0330%" height="15" fill="rgb(244,93,20)" fg:x="306419" fg:w="171"/><text x="59.4526%" y="575.50"></text></g><g><title>memmove_extent_buffer (92 samples, 0.02%)</title><rect x="59.2459%" y="565" width="0.0178%" height="15" fill="rgb(210,40,47)" fg:x="306643" fg:w="92"/><text x="59.4959%" y="575.50"></text></g><g><title>memmove (63 samples, 0.01%)</title><rect x="59.2515%" y="549" width="0.0122%" height="15" fill="rgb(239,211,47)" fg:x="306672" fg:w="63"/><text x="59.5015%" y="559.50"></text></g><g><title>__push_leaf_left (572 samples, 0.11%)</title><rect x="59.1535%" y="581" width="0.1105%" height="15" fill="rgb(251,223,49)" fg:x="306165" fg:w="572"/><text x="59.4035%" y="591.50"></text></g><g><title>push_leaf_left (648 samples, 0.13%)</title><rect x="59.1516%" y="597" width="0.1252%" height="15" fill="rgb(221,149,5)" fg:x="306155" fg:w="648"/><text x="59.4016%" y="607.50"></text></g><g><title>btrfs_get_token_32 (86 samples, 0.02%)</title><rect x="59.2971%" y="565" width="0.0166%" height="15" fill="rgb(219,224,51)" fg:x="306908" fg:w="86"/><text x="59.5471%" y="575.50"></text></g><g><title>btrfs_set_token_32 (169 samples, 0.03%)</title><rect x="59.3152%" y="565" width="0.0327%" height="15" fill="rgb(223,7,8)" fg:x="307002" fg:w="169"/><text x="59.5652%" y="575.50"></text></g><g><title>__push_leaf_right (467 samples, 0.09%)</title><rect x="59.2799%" y="581" width="0.0902%" height="15" fill="rgb(241,217,22)" fg:x="306819" fg:w="467"/><text x="59.5299%" y="591.50"></text></g><g><title>btrfs_read_node_slot (53 samples, 0.01%)</title><rect x="59.3761%" y="581" width="0.0102%" height="15" fill="rgb(248,209,0)" fg:x="307317" fg:w="53"/><text x="59.6261%" y="591.50"></text></g><g><title>push_leaf_right (580 samples, 0.11%)</title><rect x="59.2768%" y="597" width="0.1121%" height="15" fill="rgb(217,205,4)" fg:x="306803" fg:w="580"/><text x="59.5268%" y="607.50"></text></g><g><title>split_leaf (1,528 samples, 0.30%)</title><rect x="59.0940%" y="613" width="0.2952%" height="15" fill="rgb(228,124,39)" fg:x="305857" fg:w="1528"/><text x="59.3440%" y="623.50"></text></g><g><title>__wake_up_common (78 samples, 0.02%)</title><rect x="59.4188%" y="581" width="0.0151%" height="15" fill="rgb(250,116,42)" fg:x="307538" fg:w="78"/><text x="59.6688%" y="591.50"></text></g><g><title>autoremove_wake_function (74 samples, 0.01%)</title><rect x="59.4196%" y="565" width="0.0143%" height="15" fill="rgb(223,202,9)" fg:x="307542" fg:w="74"/><text x="59.6696%" y="575.50"></text></g><g><title>try_to_wake_up (69 samples, 0.01%)</title><rect x="59.4205%" y="549" width="0.0133%" height="15" fill="rgb(242,222,40)" fg:x="307547" fg:w="69"/><text x="59.6705%" y="559.50"></text></g><g><title>__wake_up_common_lock (84 samples, 0.02%)</title><rect x="59.4182%" y="597" width="0.0162%" height="15" fill="rgb(229,99,46)" fg:x="307535" fg:w="84"/><text x="59.6682%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (65 samples, 0.01%)</title><rect x="59.4344%" y="597" width="0.0126%" height="15" fill="rgb(225,56,46)" fg:x="307619" fg:w="65"/><text x="59.6844%" y="607.50"></text></g><g><title>btrfs_search_slot (5,825 samples, 1.13%)</title><rect x="58.3270%" y="629" width="1.1254%" height="15" fill="rgb(227,94,5)" fg:x="301887" fg:w="5825"/><text x="58.5770%" y="639.50"></text></g><g><title>unlock_up (323 samples, 0.06%)</title><rect x="59.3900%" y="613" width="0.0624%" height="15" fill="rgb(205,112,38)" fg:x="307389" fg:w="323"/><text x="59.6400%" y="623.50"></text></g><g><title>btrfs_get_32 (129 samples, 0.02%)</title><rect x="59.6313%" y="613" width="0.0249%" height="15" fill="rgb(231,133,46)" fg:x="308638" fg:w="129"/><text x="59.8813%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,434 samples, 0.66%)</title><rect x="59.6562%" y="613" width="0.6635%" height="15" fill="rgb(217,16,9)" fg:x="308767" fg:w="3434"/><text x="59.9062%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (730 samples, 0.14%)</title><rect x="60.1787%" y="597" width="0.1410%" height="15" fill="rgb(249,173,9)" fg:x="311471" fg:w="730"/><text x="60.4287%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (269 samples, 0.05%)</title><rect x="60.3197%" y="613" width="0.0520%" height="15" fill="rgb(205,163,53)" fg:x="312201" fg:w="269"/><text x="60.5697%" y="623.50"></text></g><g><title>leaf_space_used (239 samples, 0.05%)</title><rect x="60.3255%" y="597" width="0.0462%" height="15" fill="rgb(217,54,41)" fg:x="312231" fg:w="239"/><text x="60.5755%" y="607.50"></text></g><g><title>btrfs_get_32 (174 samples, 0.03%)</title><rect x="60.3381%" y="581" width="0.0336%" height="15" fill="rgb(228,216,12)" fg:x="312296" fg:w="174"/><text x="60.5881%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (169 samples, 0.03%)</title><rect x="60.3717%" y="613" width="0.0327%" height="15" fill="rgb(244,228,15)" fg:x="312470" fg:w="169"/><text x="60.6217%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (110 samples, 0.02%)</title><rect x="60.3831%" y="597" width="0.0213%" height="15" fill="rgb(221,176,53)" fg:x="312529" fg:w="110"/><text x="60.6331%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (616 samples, 0.12%)</title><rect x="60.8679%" y="597" width="0.1190%" height="15" fill="rgb(205,94,34)" fg:x="315038" fg:w="616"/><text x="61.1179%" y="607.50"></text></g><g><title>btrfs_set_token_32 (3,016 samples, 0.58%)</title><rect x="60.4043%" y="613" width="0.5827%" height="15" fill="rgb(213,110,48)" fg:x="312639" fg:w="3016"/><text x="60.6543%" y="623.50"></text></g><g><title>copy_pages (122 samples, 0.02%)</title><rect x="61.0081%" y="597" width="0.0236%" height="15" fill="rgb(236,142,28)" fg:x="315764" fg:w="122"/><text x="61.2581%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,061 samples, 0.20%)</title><rect x="60.9973%" y="613" width="0.2050%" height="15" fill="rgb(225,135,29)" fg:x="315708" fg:w="1061"/><text x="61.2473%" y="623.50"></text></g><g><title>memmove (883 samples, 0.17%)</title><rect x="61.0317%" y="597" width="0.1706%" height="15" fill="rgb(252,45,31)" fg:x="315886" fg:w="883"/><text x="61.2817%" y="607.50"></text></g><g><title>copy_pages (122 samples, 0.02%)</title><rect x="61.2218%" y="597" width="0.0236%" height="15" fill="rgb(211,187,50)" fg:x="316870" fg:w="122"/><text x="61.4718%" y="607.50"></text></g><g><title>memmove_extent_buffer (963 samples, 0.19%)</title><rect x="61.2023%" y="613" width="0.1861%" height="15" fill="rgb(229,109,7)" fg:x="316769" fg:w="963"/><text x="61.4523%" y="623.50"></text></g><g><title>memmove (740 samples, 0.14%)</title><rect x="61.2454%" y="597" width="0.1430%" height="15" fill="rgb(251,131,51)" fg:x="316992" fg:w="740"/><text x="61.4954%" y="607.50"></text></g><g><title>insert_with_overflow (16,135 samples, 3.12%)</title><rect x="58.2924%" y="661" width="3.1174%" height="15" fill="rgb(251,180,35)" fg:x="301708" fg:w="16135"/><text x="58.5424%" y="671.50">ins..</text></g><g><title>btrfs_insert_empty_items (15,991 samples, 3.09%)</title><rect x="58.3202%" y="645" width="3.0896%" height="15" fill="rgb(211,46,32)" fg:x="301852" fg:w="15991"/><text x="58.5702%" y="655.50">btr..</text></g><g><title>setup_items_for_insert (10,131 samples, 1.96%)</title><rect x="59.4524%" y="629" width="1.9574%" height="15" fill="rgb(248,123,17)" fg:x="307712" fg:w="10131"/><text x="59.7024%" y="639.50">s..</text></g><g><title>write_extent_buffer (111 samples, 0.02%)</title><rect x="61.3884%" y="613" width="0.0214%" height="15" fill="rgb(227,141,18)" fg:x="317732" fg:w="111"/><text x="61.6384%" y="623.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="61.4276%" y="645" width="0.0120%" height="15" fill="rgb(216,102,9)" fg:x="317935" fg:w="62"/><text x="61.6776%" y="655.50"></text></g><g><title>kmem_cache_alloc (192 samples, 0.04%)</title><rect x="61.4098%" y="661" width="0.0371%" height="15" fill="rgb(253,47,13)" fg:x="317843" fg:w="192"/><text x="61.6598%" y="671.50"></text></g><g><title>kmem_cache_free (121 samples, 0.02%)</title><rect x="61.4469%" y="661" width="0.0234%" height="15" fill="rgb(226,93,23)" fg:x="318035" fg:w="121"/><text x="61.6969%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (19,858 samples, 3.84%)</title><rect x="57.6836%" y="677" width="3.8367%" height="15" fill="rgb(247,104,17)" fg:x="298557" fg:w="19858"/><text x="57.9336%" y="687.50">btrf..</text></g><g><title>write_extent_buffer (259 samples, 0.05%)</title><rect x="61.4703%" y="661" width="0.0500%" height="15" fill="rgb(233,203,26)" fg:x="318156" fg:w="259"/><text x="61.7203%" y="671.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="61.5265%" y="661" width="0.0100%" height="15" fill="rgb(244,98,49)" fg:x="318447" fg:w="52"/><text x="61.7765%" y="671.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="61.5649%" y="629" width="0.0135%" height="15" fill="rgb(235,134,22)" fg:x="318646" fg:w="70"/><text x="61.8149%" y="639.50"></text></g><g><title>mutex_lock (57 samples, 0.01%)</title><rect x="61.5785%" y="629" width="0.0110%" height="15" fill="rgb(221,70,32)" fg:x="318716" fg:w="57"/><text x="61.8285%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (294 samples, 0.06%)</title><rect x="61.5462%" y="645" width="0.0568%" height="15" fill="rgb(238,15,50)" fg:x="318549" fg:w="294"/><text x="61.7962%" y="655.50"></text></g><g><title>mutex_unlock (70 samples, 0.01%)</title><rect x="61.5895%" y="629" width="0.0135%" height="15" fill="rgb(215,221,48)" fg:x="318773" fg:w="70"/><text x="61.8395%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (83 samples, 0.02%)</title><rect x="61.6129%" y="645" width="0.0160%" height="15" fill="rgb(236,73,3)" fg:x="318894" fg:w="83"/><text x="61.8629%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (72 samples, 0.01%)</title><rect x="61.6150%" y="629" width="0.0139%" height="15" fill="rgb(250,107,11)" fg:x="318905" fg:w="72"/><text x="61.8650%" y="639.50"></text></g><g><title>inode_get_bytes (79 samples, 0.02%)</title><rect x="61.6370%" y="629" width="0.0153%" height="15" fill="rgb(242,39,14)" fg:x="319019" fg:w="79"/><text x="61.8870%" y="639.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="61.6389%" y="613" width="0.0133%" height="15" fill="rgb(248,164,37)" fg:x="319029" fg:w="69"/><text x="61.8889%" y="623.50"></text></g><g><title>fill_stack_inode_item (154 samples, 0.03%)</title><rect x="61.6289%" y="645" width="0.0298%" height="15" fill="rgb(217,60,12)" fg:x="318977" fg:w="154"/><text x="61.8789%" y="655.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="61.6587%" y="645" width="0.0104%" height="15" fill="rgb(240,125,29)" fg:x="319131" fg:w="54"/><text x="61.9087%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (768 samples, 0.15%)</title><rect x="61.5365%" y="661" width="0.1484%" height="15" fill="rgb(208,207,28)" fg:x="318499" fg:w="768"/><text x="61.7865%" y="671.50"></text></g><g><title>mutex_unlock (82 samples, 0.02%)</title><rect x="61.6691%" y="645" width="0.0158%" height="15" fill="rgb(209,159,27)" fg:x="319185" fg:w="82"/><text x="61.9191%" y="655.50"></text></g><g><title>btrfs_update_inode (1,033 samples, 0.20%)</title><rect x="61.5203%" y="677" width="0.1996%" height="15" fill="rgb(251,176,53)" fg:x="318415" fg:w="1033"/><text x="61.7703%" y="687.50"></text></g><g><title>btrfs_update_root_times (181 samples, 0.03%)</title><rect x="61.6849%" y="661" width="0.0350%" height="15" fill="rgb(211,85,7)" fg:x="319267" fg:w="181"/><text x="61.9349%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (115 samples, 0.02%)</title><rect x="61.6977%" y="645" width="0.0222%" height="15" fill="rgb(216,64,54)" fg:x="319333" fg:w="115"/><text x="61.9477%" y="655.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="61.7077%" y="629" width="0.0122%" height="15" fill="rgb(217,54,24)" fg:x="319385" fg:w="63"/><text x="61.9577%" y="639.50"></text></g><g><title>btrfs_add_link (21,071 samples, 4.07%)</title><rect x="57.6544%" y="693" width="4.0711%" height="15" fill="rgb(208,206,53)" fg:x="298406" fg:w="21071"/><text x="57.9044%" y="703.50">btrf..</text></g><g><title>btrfs_balance_delayed_items (87 samples, 0.02%)</title><rect x="61.7309%" y="677" width="0.0168%" height="15" fill="rgb(251,74,39)" fg:x="319505" fg:w="87"/><text x="61.9809%" y="687.50"></text></g><g><title>enqueue_task_fair (75 samples, 0.01%)</title><rect x="61.7831%" y="613" width="0.0145%" height="15" fill="rgb(226,47,5)" fg:x="319775" fg:w="75"/><text x="62.0331%" y="623.50"></text></g><g><title>enqueue_entity (62 samples, 0.01%)</title><rect x="61.7856%" y="597" width="0.0120%" height="15" fill="rgb(234,111,33)" fg:x="319788" fg:w="62"/><text x="62.0356%" y="607.50"></text></g><g><title>ttwu_do_activate (114 samples, 0.02%)</title><rect x="61.7815%" y="629" width="0.0220%" height="15" fill="rgb(251,14,10)" fg:x="319767" fg:w="114"/><text x="62.0315%" y="639.50"></text></g><g><title>btrfs_btree_balance_dirty (433 samples, 0.08%)</title><rect x="61.7261%" y="693" width="0.0837%" height="15" fill="rgb(232,43,0)" fg:x="319480" fg:w="433"/><text x="61.9761%" y="703.50"></text></g><g><title>queue_work_on (297 samples, 0.06%)</title><rect x="61.7524%" y="677" width="0.0574%" height="15" fill="rgb(222,68,43)" fg:x="319616" fg:w="297"/><text x="62.0024%" y="687.50"></text></g><g><title>__queue_work (286 samples, 0.06%)</title><rect x="61.7545%" y="661" width="0.0553%" height="15" fill="rgb(217,24,23)" fg:x="319627" fg:w="286"/><text x="62.0045%" y="671.50"></text></g><g><title>try_to_wake_up (224 samples, 0.04%)</title><rect x="61.7665%" y="645" width="0.0433%" height="15" fill="rgb(229,209,14)" fg:x="319689" fg:w="224"/><text x="62.0165%" y="655.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="61.8150%" y="677" width="0.0124%" height="15" fill="rgb(250,149,48)" fg:x="319940" fg:w="64"/><text x="62.0650%" y="687.50"></text></g><g><title>btrfs_find_free_ino (162 samples, 0.03%)</title><rect x="61.8107%" y="693" width="0.0313%" height="15" fill="rgb(210,120,37)" fg:x="319918" fg:w="162"/><text x="62.0607%" y="703.50"></text></g><g><title>mutex_unlock (76 samples, 0.01%)</title><rect x="61.8273%" y="677" width="0.0147%" height="15" fill="rgb(210,21,8)" fg:x="320004" fg:w="76"/><text x="62.0773%" y="687.50"></text></g><g><title>__wake_up_common (73 samples, 0.01%)</title><rect x="61.8497%" y="645" width="0.0141%" height="15" fill="rgb(243,145,7)" fg:x="320120" fg:w="73"/><text x="62.0997%" y="655.50"></text></g><g><title>autoremove_wake_function (72 samples, 0.01%)</title><rect x="61.8499%" y="629" width="0.0139%" height="15" fill="rgb(238,178,32)" fg:x="320121" fg:w="72"/><text x="62.0999%" y="639.50"></text></g><g><title>try_to_wake_up (72 samples, 0.01%)</title><rect x="61.8499%" y="613" width="0.0139%" height="15" fill="rgb(222,4,10)" fg:x="320121" fg:w="72"/><text x="62.0999%" y="623.50"></text></g><g><title>__wake_up_common_lock (78 samples, 0.02%)</title><rect x="61.8493%" y="661" width="0.0151%" height="15" fill="rgb(239,7,37)" fg:x="320118" fg:w="78"/><text x="62.0993%" y="671.50"></text></g><g><title>btrfs_tree_unlock (81 samples, 0.02%)</title><rect x="61.8644%" y="661" width="0.0156%" height="15" fill="rgb(215,31,37)" fg:x="320196" fg:w="81"/><text x="62.1144%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (225 samples, 0.04%)</title><rect x="61.8812%" y="661" width="0.0435%" height="15" fill="rgb(224,83,33)" fg:x="320283" fg:w="225"/><text x="62.1312%" y="671.50"></text></g><g><title>_raw_spin_lock (160 samples, 0.03%)</title><rect x="61.8938%" y="645" width="0.0309%" height="15" fill="rgb(239,55,3)" fg:x="320348" fg:w="160"/><text x="62.1438%" y="655.50"></text></g><g><title>btrfs_free_path (599 samples, 0.12%)</title><rect x="61.8420%" y="693" width="0.1157%" height="15" fill="rgb(247,92,11)" fg:x="320080" fg:w="599"/><text x="62.0920%" y="703.50"></text></g><g><title>btrfs_release_path (595 samples, 0.11%)</title><rect x="61.8428%" y="677" width="0.1150%" height="15" fill="rgb(239,200,7)" fg:x="320084" fg:w="595"/><text x="62.0928%" y="687.50"></text></g><g><title>release_extent_buffer (171 samples, 0.03%)</title><rect x="61.9247%" y="661" width="0.0330%" height="15" fill="rgb(227,115,8)" fg:x="320508" fg:w="171"/><text x="62.1747%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (82 samples, 0.02%)</title><rect x="62.0466%" y="645" width="0.0158%" height="15" fill="rgb(215,189,27)" fg:x="321139" fg:w="82"/><text x="62.2966%" y="655.50"></text></g><g><title>_raw_read_lock (63 samples, 0.01%)</title><rect x="62.0503%" y="629" width="0.0122%" height="15" fill="rgb(251,216,39)" fg:x="321158" fg:w="63"/><text x="62.3003%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (208 samples, 0.04%)</title><rect x="62.0439%" y="661" width="0.0402%" height="15" fill="rgb(207,29,47)" fg:x="321125" fg:w="208"/><text x="62.2939%" y="671.50"></text></g><g><title>btrfs_root_node (112 samples, 0.02%)</title><rect x="62.0625%" y="645" width="0.0216%" height="15" fill="rgb(210,71,34)" fg:x="321221" fg:w="112"/><text x="62.3125%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (150 samples, 0.03%)</title><rect x="62.0930%" y="661" width="0.0290%" height="15" fill="rgb(253,217,51)" fg:x="321379" fg:w="150"/><text x="62.3430%" y="671.50"></text></g><g><title>leaf_space_used (127 samples, 0.02%)</title><rect x="62.0974%" y="645" width="0.0245%" height="15" fill="rgb(222,117,46)" fg:x="321402" fg:w="127"/><text x="62.3474%" y="655.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="62.1057%" y="629" width="0.0162%" height="15" fill="rgb(226,132,6)" fg:x="321445" fg:w="84"/><text x="62.3557%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (170 samples, 0.03%)</title><rect x="62.1220%" y="661" width="0.0328%" height="15" fill="rgb(254,145,51)" fg:x="321529" fg:w="170"/><text x="62.3720%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_write (80 samples, 0.02%)</title><rect x="62.1394%" y="645" width="0.0155%" height="15" fill="rgb(231,199,27)" fg:x="321619" fg:w="80"/><text x="62.3894%" y="655.50"></text></g><g><title>_raw_write_lock (91 samples, 0.02%)</title><rect x="62.1616%" y="645" width="0.0176%" height="15" fill="rgb(245,158,14)" fg:x="321734" fg:w="91"/><text x="62.4116%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (160 samples, 0.03%)</title><rect x="62.1548%" y="661" width="0.0309%" height="15" fill="rgb(240,113,14)" fg:x="321699" fg:w="160"/><text x="62.4048%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (841 samples, 0.16%)</title><rect x="62.1857%" y="661" width="0.1625%" height="15" fill="rgb(210,20,13)" fg:x="321859" fg:w="841"/><text x="62.4357%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (64 samples, 0.01%)</title><rect x="62.3741%" y="645" width="0.0124%" height="15" fill="rgb(241,144,13)" fg:x="322834" fg:w="64"/><text x="62.6241%" y="655.50"></text></g><g><title>btrfs_get_64 (106 samples, 0.02%)</title><rect x="62.3865%" y="645" width="0.0205%" height="15" fill="rgb(235,43,34)" fg:x="322898" fg:w="106"/><text x="62.6365%" y="655.50"></text></g><g><title>__radix_tree_lookup (506 samples, 0.10%)</title><rect x="62.4516%" y="629" width="0.0978%" height="15" fill="rgb(208,36,20)" fg:x="323235" fg:w="506"/><text x="62.7016%" y="639.50"></text></g><g><title>check_buffer_tree_ref (54 samples, 0.01%)</title><rect x="62.5600%" y="613" width="0.0104%" height="15" fill="rgb(239,204,10)" fg:x="323796" fg:w="54"/><text x="62.8100%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (255 samples, 0.05%)</title><rect x="62.5493%" y="629" width="0.0493%" height="15" fill="rgb(217,84,43)" fg:x="323741" fg:w="255"/><text x="62.7993%" y="639.50"></text></g><g><title>mark_page_accessed (146 samples, 0.03%)</title><rect x="62.5704%" y="613" width="0.0282%" height="15" fill="rgb(241,170,50)" fg:x="323850" fg:w="146"/><text x="62.8204%" y="623.50"></text></g><g><title>find_extent_buffer (936 samples, 0.18%)</title><rect x="62.4195%" y="645" width="0.1808%" height="15" fill="rgb(226,205,29)" fg:x="323069" fg:w="936"/><text x="62.6695%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,455 samples, 0.28%)</title><rect x="62.3482%" y="661" width="0.2811%" height="15" fill="rgb(233,113,1)" fg:x="322700" fg:w="1455"/><text x="62.5982%" y="671.50"></text></g><g><title>read_extent_buffer (150 samples, 0.03%)</title><rect x="62.6003%" y="645" width="0.0290%" height="15" fill="rgb(253,98,13)" fg:x="324005" fg:w="150"/><text x="62.8503%" y="655.50"></text></g><g><title>pagecache_get_page (59 samples, 0.01%)</title><rect x="62.6398%" y="597" width="0.0114%" height="15" fill="rgb(211,115,12)" fg:x="324209" fg:w="59"/><text x="62.8898%" y="607.50"></text></g><g><title>alloc_extent_buffer (96 samples, 0.02%)</title><rect x="62.6340%" y="613" width="0.0185%" height="15" fill="rgb(208,12,16)" fg:x="324179" fg:w="96"/><text x="62.8840%" y="623.50"></text></g><g><title>btrfs_reserve_extent (76 samples, 0.01%)</title><rect x="62.6631%" y="613" width="0.0147%" height="15" fill="rgb(237,193,54)" fg:x="324330" fg:w="76"/><text x="62.9131%" y="623.50"></text></g><g><title>find_free_extent (71 samples, 0.01%)</title><rect x="62.6641%" y="597" width="0.0137%" height="15" fill="rgb(243,22,42)" fg:x="324335" fg:w="71"/><text x="62.9141%" y="607.50"></text></g><g><title>set_extent_bit (57 samples, 0.01%)</title><rect x="62.6790%" y="613" width="0.0110%" height="15" fill="rgb(233,151,36)" fg:x="324412" fg:w="57"/><text x="62.9290%" y="623.50"></text></g><g><title>__set_extent_bit (56 samples, 0.01%)</title><rect x="62.6792%" y="597" width="0.0108%" height="15" fill="rgb(237,57,45)" fg:x="324413" fg:w="56"/><text x="62.9292%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (302 samples, 0.06%)</title><rect x="62.6318%" y="645" width="0.0583%" height="15" fill="rgb(221,88,17)" fg:x="324168" fg:w="302"/><text x="62.8818%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (302 samples, 0.06%)</title><rect x="62.6318%" y="629" width="0.0583%" height="15" fill="rgb(230,79,15)" fg:x="324168" fg:w="302"/><text x="62.8818%" y="639.50"></text></g><g><title>__set_page_dirty_nobuffers (60 samples, 0.01%)</title><rect x="62.7043%" y="597" width="0.0116%" height="15" fill="rgb(213,57,13)" fg:x="324543" fg:w="60"/><text x="62.9543%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (71 samples, 0.01%)</title><rect x="62.7027%" y="629" width="0.0137%" height="15" fill="rgb(222,116,39)" fg:x="324535" fg:w="71"/><text x="62.9527%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (68 samples, 0.01%)</title><rect x="62.7033%" y="613" width="0.0131%" height="15" fill="rgb(245,107,2)" fg:x="324538" fg:w="68"/><text x="62.9533%" y="623.50"></text></g><g><title>copy_extent_buffer (53 samples, 0.01%)</title><rect x="62.7221%" y="629" width="0.0102%" height="15" fill="rgb(238,1,10)" fg:x="324635" fg:w="53"/><text x="62.9721%" y="639.50"></text></g><g><title>copy_for_split (223 samples, 0.04%)</title><rect x="62.6919%" y="645" width="0.0431%" height="15" fill="rgb(249,4,48)" fg:x="324479" fg:w="223"/><text x="62.9419%" y="655.50"></text></g><g><title>btrfs_get_token_32 (64 samples, 0.01%)</title><rect x="62.7507%" y="613" width="0.0124%" height="15" fill="rgb(223,151,18)" fg:x="324783" fg:w="64"/><text x="63.0007%" y="623.50"></text></g><g><title>btrfs_set_token_32 (75 samples, 0.01%)</title><rect x="62.7638%" y="613" width="0.0145%" height="15" fill="rgb(227,65,43)" fg:x="324851" fg:w="75"/><text x="63.0138%" y="623.50"></text></g><g><title>copy_extent_buffer (54 samples, 0.01%)</title><rect x="62.7793%" y="613" width="0.0104%" height="15" fill="rgb(218,40,45)" fg:x="324931" fg:w="54"/><text x="63.0293%" y="623.50"></text></g><g><title>__push_leaf_left (286 samples, 0.06%)</title><rect x="62.7383%" y="629" width="0.0553%" height="15" fill="rgb(252,121,31)" fg:x="324719" fg:w="286"/><text x="62.9883%" y="639.50"></text></g><g><title>push_leaf_left (356 samples, 0.07%)</title><rect x="62.7356%" y="645" width="0.0688%" height="15" fill="rgb(219,158,43)" fg:x="324705" fg:w="356"/><text x="62.9856%" y="655.50"></text></g><g><title>split_leaf (910 samples, 0.18%)</title><rect x="62.6293%" y="661" width="0.1758%" height="15" fill="rgb(231,162,42)" fg:x="324155" fg:w="910"/><text x="62.8793%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (56 samples, 0.01%)</title><rect x="62.8419%" y="645" width="0.0108%" height="15" fill="rgb(217,179,25)" fg:x="325255" fg:w="56"/><text x="63.0919%" y="655.50"></text></g><g><title>btrfs_search_slot (4,546 samples, 0.88%)</title><rect x="61.9788%" y="677" width="0.8783%" height="15" fill="rgb(206,212,31)" fg:x="320788" fg:w="4546"/><text x="62.2288%" y="687.50"></text></g><g><title>unlock_up (268 samples, 0.05%)</title><rect x="62.8053%" y="661" width="0.0518%" height="15" fill="rgb(235,144,12)" fg:x="325066" fg:w="268"/><text x="63.0553%" y="671.50"></text></g><g><title>btrfs_get_32 (131 samples, 0.03%)</title><rect x="62.9562%" y="661" width="0.0253%" height="15" fill="rgb(213,51,10)" fg:x="325847" fg:w="131"/><text x="63.2062%" y="671.50"></text></g><g><title>btrfs_get_token_32 (721 samples, 0.14%)</title><rect x="62.9815%" y="661" width="0.1393%" height="15" fill="rgb(231,145,14)" fg:x="325978" fg:w="721"/><text x="63.2315%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (191 samples, 0.04%)</title><rect x="63.0839%" y="645" width="0.0369%" height="15" fill="rgb(235,15,28)" fg:x="326508" fg:w="191"/><text x="63.3339%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (261 samples, 0.05%)</title><rect x="63.1208%" y="661" width="0.0504%" height="15" fill="rgb(237,206,10)" fg:x="326699" fg:w="261"/><text x="63.3708%" y="671.50"></text></g><g><title>leaf_space_used (237 samples, 0.05%)</title><rect x="63.1255%" y="645" width="0.0458%" height="15" fill="rgb(236,227,27)" fg:x="326723" fg:w="237"/><text x="63.3755%" y="655.50"></text></g><g><title>btrfs_get_32 (158 samples, 0.03%)</title><rect x="63.1408%" y="629" width="0.0305%" height="15" fill="rgb(246,83,35)" fg:x="326802" fg:w="158"/><text x="63.3908%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (134 samples, 0.03%)</title><rect x="63.1713%" y="661" width="0.0259%" height="15" fill="rgb(220,136,24)" fg:x="326960" fg:w="134"/><text x="63.4213%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (87 samples, 0.02%)</title><rect x="63.1804%" y="645" width="0.0168%" height="15" fill="rgb(217,3,25)" fg:x="327007" fg:w="87"/><text x="63.4304%" y="655.50"></text></g><g><title>btrfs_set_token_32 (902 samples, 0.17%)</title><rect x="63.1972%" y="661" width="0.1743%" height="15" fill="rgb(239,24,14)" fg:x="327094" fg:w="902"/><text x="63.4472%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (180 samples, 0.03%)</title><rect x="63.3367%" y="645" width="0.0348%" height="15" fill="rgb(244,16,53)" fg:x="327816" fg:w="180"/><text x="63.5867%" y="655.50"></text></g><g><title>memmove_extent_buffer (259 samples, 0.05%)</title><rect x="63.3830%" y="661" width="0.0500%" height="15" fill="rgb(208,175,44)" fg:x="328056" fg:w="259"/><text x="63.6330%" y="671.50"></text></g><g><title>memmove (172 samples, 0.03%)</title><rect x="63.3998%" y="645" width="0.0332%" height="15" fill="rgb(252,18,48)" fg:x="328143" fg:w="172"/><text x="63.6498%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (7,678 samples, 1.48%)</title><rect x="61.9711%" y="693" width="1.4835%" height="15" fill="rgb(234,199,32)" fg:x="320748" fg:w="7678"/><text x="62.2211%" y="703.50"></text></g><g><title>setup_items_for_insert (3,092 samples, 0.60%)</title><rect x="62.8571%" y="677" width="0.5974%" height="15" fill="rgb(225,77,54)" fg:x="325334" fg:w="3092"/><text x="63.1071%" y="687.50"></text></g><g><title>write_extent_buffer (111 samples, 0.02%)</title><rect x="63.4331%" y="661" width="0.0214%" height="15" fill="rgb(225,42,25)" fg:x="328315" fg:w="111"/><text x="63.6831%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (205 samples, 0.04%)</title><rect x="63.4545%" y="693" width="0.0396%" height="15" fill="rgb(242,227,46)" fg:x="328426" fg:w="205"/><text x="63.7045%" y="703.50"></text></g><g><title>set_extent_buffer_dirty (147 samples, 0.03%)</title><rect x="63.4657%" y="677" width="0.0284%" height="15" fill="rgb(246,197,35)" fg:x="328484" fg:w="147"/><text x="63.7157%" y="687.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="63.5453%" y="677" width="0.0128%" height="15" fill="rgb(215,159,26)" fg:x="328896" fg:w="66"/><text x="63.7953%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (246 samples, 0.05%)</title><rect x="63.5697%" y="645" width="0.0475%" height="15" fill="rgb(212,194,50)" fg:x="329022" fg:w="246"/><text x="63.8197%" y="655.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.04%)</title><rect x="63.5820%" y="629" width="0.0352%" height="15" fill="rgb(246,132,1)" fg:x="329086" fg:w="182"/><text x="63.8320%" y="639.50"></text></g><g><title>btrfs_free_path (457 samples, 0.09%)</title><rect x="63.5587%" y="677" width="0.0883%" height="15" fill="rgb(217,71,7)" fg:x="328965" fg:w="457"/><text x="63.8087%" y="687.50"></text></g><g><title>btrfs_release_path (447 samples, 0.09%)</title><rect x="63.5606%" y="661" width="0.0864%" height="15" fill="rgb(252,59,32)" fg:x="328975" fg:w="447"/><text x="63.8106%" y="671.50"></text></g><g><title>release_extent_buffer (154 samples, 0.03%)</title><rect x="63.6172%" y="645" width="0.0298%" height="15" fill="rgb(253,204,25)" fg:x="329268" fg:w="154"/><text x="63.8672%" y="655.50"></text></g><g><title>btrfs_get_32 (76 samples, 0.01%)</title><rect x="63.6470%" y="677" width="0.0147%" height="15" fill="rgb(232,21,16)" fg:x="329422" fg:w="76"/><text x="63.8970%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (81 samples, 0.02%)</title><rect x="63.7219%" y="629" width="0.0156%" height="15" fill="rgb(248,90,29)" fg:x="329810" fg:w="81"/><text x="63.9719%" y="639.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="63.7267%" y="613" width="0.0108%" height="15" fill="rgb(249,223,7)" fg:x="329835" fg:w="56"/><text x="63.9767%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (163 samples, 0.03%)</title><rect x="63.7200%" y="645" width="0.0315%" height="15" fill="rgb(231,119,42)" fg:x="329800" fg:w="163"/><text x="63.9700%" y="655.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="63.7376%" y="629" width="0.0139%" height="15" fill="rgb(215,41,35)" fg:x="329891" fg:w="72"/><text x="63.9876%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (194 samples, 0.04%)</title><rect x="63.7644%" y="645" width="0.0375%" height="15" fill="rgb(220,44,45)" fg:x="330030" fg:w="194"/><text x="64.0144%" y="655.50"></text></g><g><title>leaf_space_used (167 samples, 0.03%)</title><rect x="63.7696%" y="629" width="0.0323%" height="15" fill="rgb(253,197,36)" fg:x="330057" fg:w="167"/><text x="64.0196%" y="639.50"></text></g><g><title>btrfs_get_32 (115 samples, 0.02%)</title><rect x="63.7797%" y="613" width="0.0222%" height="15" fill="rgb(245,225,54)" fg:x="330109" fg:w="115"/><text x="64.0297%" y="623.50"></text></g><g><title>_raw_write_lock (122 samples, 0.02%)</title><rect x="63.8087%" y="629" width="0.0236%" height="15" fill="rgb(239,94,37)" fg:x="330259" fg:w="122"/><text x="64.0587%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (200 samples, 0.04%)</title><rect x="63.8033%" y="645" width="0.0386%" height="15" fill="rgb(242,217,10)" fg:x="330231" fg:w="200"/><text x="64.0533%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (809 samples, 0.16%)</title><rect x="63.8419%" y="645" width="0.1563%" height="15" fill="rgb(250,193,7)" fg:x="330431" fg:w="809"/><text x="64.0919%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (82 samples, 0.02%)</title><rect x="64.0245%" y="629" width="0.0158%" height="15" fill="rgb(230,104,19)" fg:x="331376" fg:w="82"/><text x="64.2745%" y="639.50"></text></g><g><title>verify_parent_transid (56 samples, 0.01%)</title><rect x="64.0295%" y="613" width="0.0108%" height="15" fill="rgb(230,181,4)" fg:x="331402" fg:w="56"/><text x="64.2795%" y="623.50"></text></g><g><title>btrfs_get_64 (146 samples, 0.03%)</title><rect x="64.0403%" y="629" width="0.0282%" height="15" fill="rgb(216,219,49)" fg:x="331458" fg:w="146"/><text x="64.2903%" y="639.50"></text></g><g><title>__radix_tree_lookup (504 samples, 0.10%)</title><rect x="64.1267%" y="613" width="0.0974%" height="15" fill="rgb(254,144,0)" fg:x="331905" fg:w="504"/><text x="64.3767%" y="623.50"></text></g><g><title>check_buffer_tree_ref (61 samples, 0.01%)</title><rect x="64.2343%" y="597" width="0.0118%" height="15" fill="rgb(205,209,38)" fg:x="332462" fg:w="61"/><text x="64.4843%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (323 samples, 0.06%)</title><rect x="64.2241%" y="613" width="0.0624%" height="15" fill="rgb(240,21,42)" fg:x="332409" fg:w="323"/><text x="64.4741%" y="623.50"></text></g><g><title>mark_page_accessed (209 samples, 0.04%)</title><rect x="64.2461%" y="597" width="0.0404%" height="15" fill="rgb(241,132,3)" fg:x="332523" fg:w="209"/><text x="64.4961%" y="607.50"></text></g><g><title>find_extent_buffer (1,089 samples, 0.21%)</title><rect x="64.0780%" y="629" width="0.2104%" height="15" fill="rgb(225,14,2)" fg:x="331653" fg:w="1089"/><text x="64.3280%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,662 samples, 0.32%)</title><rect x="63.9982%" y="645" width="0.3211%" height="15" fill="rgb(210,141,35)" fg:x="331240" fg:w="1662"/><text x="64.2482%" y="655.50"></text></g><g><title>read_extent_buffer (160 samples, 0.03%)</title><rect x="64.2884%" y="629" width="0.0309%" height="15" fill="rgb(251,14,44)" fg:x="332742" fg:w="160"/><text x="64.5384%" y="639.50"></text></g><g><title>find_get_entry (53 samples, 0.01%)</title><rect x="64.3315%" y="565" width="0.0102%" height="15" fill="rgb(247,48,18)" fg:x="332965" fg:w="53"/><text x="64.5815%" y="575.50"></text></g><g><title>pagecache_get_page (60 samples, 0.01%)</title><rect x="64.3305%" y="581" width="0.0116%" height="15" fill="rgb(225,0,40)" fg:x="332960" fg:w="60"/><text x="64.5805%" y="591.50"></text></g><g><title>alloc_extent_buffer (98 samples, 0.02%)</title><rect x="64.3243%" y="597" width="0.0189%" height="15" fill="rgb(221,31,33)" fg:x="332928" fg:w="98"/><text x="64.5743%" y="607.50"></text></g><g><title>btrfs_add_delayed_tree_ref (65 samples, 0.01%)</title><rect x="64.3433%" y="597" width="0.0126%" height="15" fill="rgb(237,42,40)" fg:x="333026" fg:w="65"/><text x="64.5933%" y="607.50"></text></g><g><title>btrfs_reserve_extent (82 samples, 0.02%)</title><rect x="64.3574%" y="597" width="0.0158%" height="15" fill="rgb(233,51,29)" fg:x="333099" fg:w="82"/><text x="64.6074%" y="607.50"></text></g><g><title>find_free_extent (73 samples, 0.01%)</title><rect x="64.3591%" y="581" width="0.0141%" height="15" fill="rgb(226,58,20)" fg:x="333108" fg:w="73"/><text x="64.6091%" y="591.50"></text></g><g><title>set_extent_bit (64 samples, 0.01%)</title><rect x="64.3755%" y="597" width="0.0124%" height="15" fill="rgb(208,98,7)" fg:x="333193" fg:w="64"/><text x="64.6255%" y="607.50"></text></g><g><title>__set_extent_bit (64 samples, 0.01%)</title><rect x="64.3755%" y="581" width="0.0124%" height="15" fill="rgb(228,143,44)" fg:x="333193" fg:w="64"/><text x="64.6255%" y="591.50"></text></g><g><title>alloc_tree_block_no_bg_flush (345 samples, 0.07%)</title><rect x="64.3216%" y="629" width="0.0667%" height="15" fill="rgb(246,55,38)" fg:x="332914" fg:w="345"/><text x="64.5716%" y="639.50"></text></g><g><title>btrfs_alloc_tree_block (342 samples, 0.07%)</title><rect x="64.3222%" y="613" width="0.0661%" height="15" fill="rgb(247,87,16)" fg:x="332917" fg:w="342"/><text x="64.5722%" y="623.50"></text></g><g><title>__set_page_dirty_nobuffers (56 samples, 0.01%)</title><rect x="64.4007%" y="581" width="0.0108%" height="15" fill="rgb(234,129,42)" fg:x="333323" fg:w="56"/><text x="64.6507%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (68 samples, 0.01%)</title><rect x="64.3989%" y="613" width="0.0131%" height="15" fill="rgb(220,82,16)" fg:x="333314" fg:w="68"/><text x="64.6489%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (63 samples, 0.01%)</title><rect x="64.3999%" y="597" width="0.0122%" height="15" fill="rgb(211,88,4)" fg:x="333319" fg:w="63"/><text x="64.6499%" y="607.50"></text></g><g><title>copy_extent_buffer (52 samples, 0.01%)</title><rect x="64.4208%" y="613" width="0.0100%" height="15" fill="rgb(248,151,21)" fg:x="333427" fg:w="52"/><text x="64.6708%" y="623.50"></text></g><g><title>copy_for_split (215 samples, 0.04%)</title><rect x="64.3918%" y="629" width="0.0415%" height="15" fill="rgb(238,163,6)" fg:x="333277" fg:w="215"/><text x="64.6418%" y="639.50"></text></g><g><title>btrfs_get_token_32 (64 samples, 0.01%)</title><rect x="64.4464%" y="597" width="0.0124%" height="15" fill="rgb(209,183,11)" fg:x="333560" fg:w="64"/><text x="64.6964%" y="607.50"></text></g><g><title>btrfs_set_token_32 (73 samples, 0.01%)</title><rect x="64.4594%" y="597" width="0.0141%" height="15" fill="rgb(219,37,20)" fg:x="333627" fg:w="73"/><text x="64.7094%" y="607.50"></text></g><g><title>__push_leaf_left (279 samples, 0.05%)</title><rect x="64.4358%" y="613" width="0.0539%" height="15" fill="rgb(210,158,4)" fg:x="333505" fg:w="279"/><text x="64.6858%" y="623.50"></text></g><g><title>push_leaf_left (346 samples, 0.07%)</title><rect x="64.4335%" y="629" width="0.0668%" height="15" fill="rgb(221,167,53)" fg:x="333493" fg:w="346"/><text x="64.6835%" y="639.50"></text></g><g><title>split_leaf (944 samples, 0.18%)</title><rect x="64.3193%" y="645" width="0.1824%" height="15" fill="rgb(237,151,45)" fg:x="332902" fg:w="944"/><text x="64.5693%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (85 samples, 0.02%)</title><rect x="64.5382%" y="629" width="0.0164%" height="15" fill="rgb(231,39,3)" fg:x="334035" fg:w="85"/><text x="64.7882%" y="639.50"></text></g><g><title>btrfs_search_slot (4,613 samples, 0.89%)</title><rect x="63.6680%" y="661" width="0.8913%" height="15" fill="rgb(212,167,28)" fg:x="329531" fg:w="4613"/><text x="63.9180%" y="671.50"></text></g><g><title>unlock_up (298 samples, 0.06%)</title><rect x="64.5017%" y="645" width="0.0576%" height="15" fill="rgb(232,178,8)" fg:x="333846" fg:w="298"/><text x="64.7517%" y="655.50"></text></g><g><title>btrfs_get_32 (135 samples, 0.03%)</title><rect x="64.6576%" y="645" width="0.0261%" height="15" fill="rgb(225,151,20)" fg:x="334653" fg:w="135"/><text x="64.9076%" y="655.50"></text></g><g><title>btrfs_get_token_32 (808 samples, 0.16%)</title><rect x="64.6837%" y="645" width="0.1561%" height="15" fill="rgb(238,3,37)" fg:x="334788" fg:w="808"/><text x="64.9337%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (175 samples, 0.03%)</title><rect x="64.8060%" y="629" width="0.0338%" height="15" fill="rgb(251,147,42)" fg:x="335421" fg:w="175"/><text x="65.0560%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (284 samples, 0.05%)</title><rect x="64.8398%" y="645" width="0.0549%" height="15" fill="rgb(208,173,10)" fg:x="335596" fg:w="284"/><text x="65.0898%" y="655.50"></text></g><g><title>leaf_space_used (249 samples, 0.05%)</title><rect x="64.8466%" y="629" width="0.0481%" height="15" fill="rgb(246,225,4)" fg:x="335631" fg:w="249"/><text x="65.0966%" y="639.50"></text></g><g><title>btrfs_get_32 (173 samples, 0.03%)</title><rect x="64.8613%" y="613" width="0.0334%" height="15" fill="rgb(248,102,6)" fg:x="335707" fg:w="173"/><text x="65.1113%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (211 samples, 0.04%)</title><rect x="64.8947%" y="645" width="0.0408%" height="15" fill="rgb(232,6,21)" fg:x="335880" fg:w="211"/><text x="65.1447%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (90 samples, 0.02%)</title><rect x="64.9181%" y="629" width="0.0174%" height="15" fill="rgb(221,179,22)" fg:x="336001" fg:w="90"/><text x="65.1681%" y="639.50"></text></g><g><title>btrfs_set_token_32 (870 samples, 0.17%)</title><rect x="64.9355%" y="645" width="0.1681%" height="15" fill="rgb(252,50,20)" fg:x="336091" fg:w="870"/><text x="65.1855%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (172 samples, 0.03%)</title><rect x="65.0703%" y="629" width="0.0332%" height="15" fill="rgb(222,56,38)" fg:x="336789" fg:w="172"/><text x="65.3203%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (57 samples, 0.01%)</title><rect x="65.1035%" y="645" width="0.0110%" height="15" fill="rgb(206,193,29)" fg:x="336961" fg:w="57"/><text x="65.3535%" y="655.50"></text></g><g><title>memmove_extent_buffer (335 samples, 0.06%)</title><rect x="65.1177%" y="645" width="0.0647%" height="15" fill="rgb(239,192,45)" fg:x="337034" fg:w="335"/><text x="65.3677%" y="655.50"></text></g><g><title>memmove (212 samples, 0.04%)</title><rect x="65.1414%" y="629" width="0.0410%" height="15" fill="rgb(254,18,36)" fg:x="337157" fg:w="212"/><text x="65.3914%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (8,120 samples, 1.57%)</title><rect x="63.6618%" y="677" width="1.5688%" height="15" fill="rgb(221,127,11)" fg:x="329499" fg:w="8120"/><text x="63.9118%" y="687.50"></text></g><g><title>setup_items_for_insert (3,475 samples, 0.67%)</title><rect x="64.5593%" y="661" width="0.6714%" height="15" fill="rgb(234,146,35)" fg:x="334144" fg:w="3475"/><text x="64.8093%" y="671.50"></text></g><g><title>write_extent_buffer (250 samples, 0.05%)</title><rect x="65.1824%" y="645" width="0.0483%" height="15" fill="rgb(254,201,37)" fg:x="337369" fg:w="250"/><text x="65.4324%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (173 samples, 0.03%)</title><rect x="65.2307%" y="677" width="0.0334%" height="15" fill="rgb(211,202,23)" fg:x="337619" fg:w="173"/><text x="65.4807%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (96 samples, 0.02%)</title><rect x="65.2456%" y="661" width="0.0185%" height="15" fill="rgb(237,91,2)" fg:x="337696" fg:w="96"/><text x="65.4956%" y="671.50"></text></g><g><title>btrfs_set_16 (65 samples, 0.01%)</title><rect x="65.2641%" y="677" width="0.0126%" height="15" fill="rgb(226,228,36)" fg:x="337792" fg:w="65"/><text x="65.5141%" y="687.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (73 samples, 0.01%)</title><rect x="65.2846%" y="677" width="0.0141%" height="15" fill="rgb(213,63,50)" fg:x="337898" fg:w="73"/><text x="65.5346%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="65.3114%" y="661" width="0.0120%" height="15" fill="rgb(235,194,19)" fg:x="338037" fg:w="62"/><text x="65.5614%" y="671.50"></text></g><g><title>btrfs_update_root_times (266 samples, 0.05%)</title><rect x="65.2987%" y="677" width="0.0514%" height="15" fill="rgb(207,204,18)" fg:x="337971" fg:w="266"/><text x="65.5487%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (138 samples, 0.03%)</title><rect x="65.3234%" y="661" width="0.0267%" height="15" fill="rgb(248,8,7)" fg:x="338099" fg:w="138"/><text x="65.5734%" y="671.50"></text></g><g><title>read_tsc (75 samples, 0.01%)</title><rect x="65.3356%" y="645" width="0.0145%" height="15" fill="rgb(223,145,47)" fg:x="338162" fg:w="75"/><text x="65.5856%" y="655.50"></text></g><g><title>current_time (72 samples, 0.01%)</title><rect x="65.3501%" y="677" width="0.0139%" height="15" fill="rgb(228,84,11)" fg:x="338237" fg:w="72"/><text x="65.6001%" y="687.50"></text></g><g><title>btrfs_set_token_32 (348 samples, 0.07%)</title><rect x="65.3920%" y="661" width="0.0672%" height="15" fill="rgb(218,76,45)" fg:x="338454" fg:w="348"/><text x="65.6420%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (65 samples, 0.01%)</title><rect x="65.4467%" y="645" width="0.0126%" height="15" fill="rgb(223,80,15)" fg:x="338737" fg:w="65"/><text x="65.6967%" y="655.50"></text></g><g><title>btrfs_set_token_64 (484 samples, 0.09%)</title><rect x="65.4592%" y="661" width="0.0935%" height="15" fill="rgb(219,218,33)" fg:x="338802" fg:w="484"/><text x="65.7092%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (97 samples, 0.02%)</title><rect x="65.5340%" y="645" width="0.0187%" height="15" fill="rgb(208,51,11)" fg:x="339189" fg:w="97"/><text x="65.7840%" y="655.50"></text></g><g><title>inode_get_bytes (73 samples, 0.01%)</title><rect x="65.5530%" y="661" width="0.0141%" height="15" fill="rgb(229,165,39)" fg:x="339287" fg:w="73"/><text x="65.8030%" y="671.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="65.5564%" y="645" width="0.0106%" height="15" fill="rgb(241,100,24)" fg:x="339305" fg:w="55"/><text x="65.8064%" y="655.50"></text></g><g><title>fill_inode_item (1,103 samples, 0.21%)</title><rect x="65.3640%" y="677" width="0.2131%" height="15" fill="rgb(228,14,23)" fg:x="338309" fg:w="1103"/><text x="65.6140%" y="687.50"></text></g><g><title>map_id_up (52 samples, 0.01%)</title><rect x="65.5671%" y="661" width="0.0100%" height="15" fill="rgb(247,116,52)" fg:x="339360" fg:w="52"/><text x="65.8171%" y="671.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="65.8915%" y="661" width="0.0100%" height="15" fill="rgb(216,149,33)" fg:x="341039" fg:w="52"/><text x="66.1415%" y="671.50"></text></g><g><title>inode_tree_add (1,807 samples, 0.35%)</title><rect x="65.5920%" y="677" width="0.3491%" height="15" fill="rgb(238,142,29)" fg:x="339489" fg:w="1807"/><text x="65.8420%" y="687.50"></text></g><g><title>rb_insert_color (204 samples, 0.04%)</title><rect x="65.9017%" y="661" width="0.0394%" height="15" fill="rgb(224,83,40)" fg:x="341092" fg:w="204"/><text x="66.1517%" y="671.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.02%)</title><rect x="65.9508%" y="645" width="0.0234%" height="15" fill="rgb(234,165,11)" fg:x="341346" fg:w="121"/><text x="66.2008%" y="655.50"></text></g><g><title>insert_inode_locked4 (488 samples, 0.09%)</title><rect x="65.9411%" y="677" width="0.0943%" height="15" fill="rgb(215,96,23)" fg:x="341296" fg:w="488"/><text x="66.1911%" y="687.50"></text></g><g><title>inode_insert5 (479 samples, 0.09%)</title><rect x="65.9428%" y="661" width="0.0925%" height="15" fill="rgb(233,179,26)" fg:x="341305" fg:w="479"/><text x="66.1928%" y="671.50"></text></g><g><title>find_inode (317 samples, 0.06%)</title><rect x="65.9741%" y="645" width="0.0612%" height="15" fill="rgb(225,129,33)" fg:x="341467" fg:w="317"/><text x="66.2241%" y="655.50"></text></g><g><title>kmem_cache_alloc (166 samples, 0.03%)</title><rect x="66.0354%" y="677" width="0.0321%" height="15" fill="rgb(237,49,13)" fg:x="341784" fg:w="166"/><text x="66.2854%" y="687.50"></text></g><g><title>kmem_cache_free (122 samples, 0.02%)</title><rect x="66.0675%" y="677" width="0.0236%" height="15" fill="rgb(211,3,31)" fg:x="341950" fg:w="122"/><text x="66.3175%" y="687.50"></text></g><g><title>memzero_extent_buffer (149 samples, 0.03%)</title><rect x="66.0910%" y="677" width="0.0288%" height="15" fill="rgb(216,152,19)" fg:x="342072" fg:w="149"/><text x="66.3410%" y="687.50"></text></g><g><title>_raw_spin_lock (312 samples, 0.06%)</title><rect x="66.1283%" y="661" width="0.0603%" height="15" fill="rgb(251,121,35)" fg:x="342265" fg:w="312"/><text x="66.3783%" y="671.50"></text></g><g><title>btrfs_init_metadata_block_rsv (133 samples, 0.03%)</title><rect x="66.2220%" y="629" width="0.0257%" height="15" fill="rgb(210,217,47)" fg:x="342750" fg:w="133"/><text x="66.4720%" y="639.50"></text></g><g><title>btrfs_find_space_info (71 samples, 0.01%)</title><rect x="66.2340%" y="613" width="0.0137%" height="15" fill="rgb(244,116,22)" fg:x="342812" fg:w="71"/><text x="66.4840%" y="623.50"></text></g><g><title>__slab_alloc (104 samples, 0.02%)</title><rect x="66.2927%" y="613" width="0.0201%" height="15" fill="rgb(228,17,21)" fg:x="343116" fg:w="104"/><text x="66.5427%" y="623.50"></text></g><g><title>___slab_alloc (101 samples, 0.02%)</title><rect x="66.2933%" y="597" width="0.0195%" height="15" fill="rgb(240,149,34)" fg:x="343119" fg:w="101"/><text x="66.5433%" y="607.50"></text></g><g><title>get_partial_node.part.0 (54 samples, 0.01%)</title><rect x="66.3024%" y="581" width="0.0104%" height="15" fill="rgb(208,125,47)" fg:x="343166" fg:w="54"/><text x="66.5524%" y="591.50"></text></g><g><title>__mod_memcg_lruvec_state (66 samples, 0.01%)</title><rect x="66.3667%" y="597" width="0.0128%" height="15" fill="rgb(249,186,39)" fg:x="343499" fg:w="66"/><text x="66.6167%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (362 samples, 0.07%)</title><rect x="66.3128%" y="613" width="0.0699%" height="15" fill="rgb(240,220,33)" fg:x="343220" fg:w="362"/><text x="66.5628%" y="623.50"></text></g><g><title>get_obj_cgroup_from_current (82 samples, 0.02%)</title><rect x="66.3888%" y="597" width="0.0158%" height="15" fill="rgb(243,110,23)" fg:x="343613" fg:w="82"/><text x="66.6388%" y="607.50"></text></g><g><title>obj_cgroup_charge (193 samples, 0.04%)</title><rect x="66.4046%" y="597" width="0.0373%" height="15" fill="rgb(219,163,46)" fg:x="343695" fg:w="193"/><text x="66.6546%" y="607.50"></text></g><g><title>btrfs_alloc_inode (1,250 samples, 0.24%)</title><rect x="66.2008%" y="645" width="0.2415%" height="15" fill="rgb(216,126,30)" fg:x="342640" fg:w="1250"/><text x="66.4508%" y="655.50"></text></g><g><title>kmem_cache_alloc (975 samples, 0.19%)</title><rect x="66.2539%" y="629" width="0.1884%" height="15" fill="rgb(208,139,11)" fg:x="342915" fg:w="975"/><text x="66.5039%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (307 samples, 0.06%)</title><rect x="66.3830%" y="613" width="0.0593%" height="15" fill="rgb(213,118,36)" fg:x="343583" fg:w="307"/><text x="66.6330%" y="623.50"></text></g><g><title>alloc_inode (1,786 samples, 0.35%)</title><rect x="66.1886%" y="661" width="0.3451%" height="15" fill="rgb(226,43,17)" fg:x="342577" fg:w="1786"/><text x="66.4386%" y="671.50"></text></g><g><title>inode_init_always (473 samples, 0.09%)</title><rect x="66.4423%" y="645" width="0.0914%" height="15" fill="rgb(254,217,4)" fg:x="343890" fg:w="473"/><text x="66.6923%" y="655.50"></text></g><g><title>security_inode_alloc (119 samples, 0.02%)</title><rect x="66.5107%" y="629" width="0.0230%" height="15" fill="rgb(210,134,47)" fg:x="344244" fg:w="119"/><text x="66.7607%" y="639.50"></text></g><g><title>new_inode (2,236 samples, 0.43%)</title><rect x="66.1198%" y="677" width="0.4320%" height="15" fill="rgb(237,24,49)" fg:x="342221" fg:w="2236"/><text x="66.3698%" y="687.50"></text></g><g><title>inode_sb_list_add (94 samples, 0.02%)</title><rect x="66.5337%" y="661" width="0.0182%" height="15" fill="rgb(251,39,46)" fg:x="344363" fg:w="94"/><text x="66.7837%" y="671.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="66.5379%" y="645" width="0.0139%" height="15" fill="rgb(251,220,3)" fg:x="344385" fg:w="72"/><text x="66.7879%" y="655.50"></text></g><g><title>btrfs_new_inode (15,959 samples, 3.08%)</title><rect x="63.4941%" y="693" width="3.0834%" height="15" fill="rgb(228,105,12)" fg:x="328631" fg:w="15959"/><text x="63.7441%" y="703.50">btr..</text></g><g><title>write_extent_buffer (133 samples, 0.03%)</title><rect x="66.5518%" y="677" width="0.0257%" height="15" fill="rgb(215,196,1)" fg:x="344457" fg:w="133"/><text x="66.8018%" y="687.50"></text></g><g><title>btrfs_set_64 (72 samples, 0.01%)</title><rect x="66.5824%" y="693" width="0.0139%" height="15" fill="rgb(214,33,39)" fg:x="344615" fg:w="72"/><text x="66.8324%" y="703.50"></text></g><g><title>btrfs_set_8 (69 samples, 0.01%)</title><rect x="66.5963%" y="693" width="0.0133%" height="15" fill="rgb(220,19,52)" fg:x="344687" fg:w="69"/><text x="66.8463%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="66.7151%" y="645" width="0.0120%" height="15" fill="rgb(221,78,38)" fg:x="345302" fg:w="62"/><text x="66.9651%" y="655.50"></text></g><g><title>mutex_lock (67 samples, 0.01%)</title><rect x="66.7271%" y="645" width="0.0129%" height="15" fill="rgb(253,30,16)" fg:x="345364" fg:w="67"/><text x="66.9771%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (406 samples, 0.08%)</title><rect x="66.6709%" y="661" width="0.0784%" height="15" fill="rgb(242,65,0)" fg:x="345073" fg:w="406"/><text x="66.9209%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (168 samples, 0.03%)</title><rect x="66.7493%" y="661" width="0.0325%" height="15" fill="rgb(235,201,12)" fg:x="345479" fg:w="168"/><text x="66.9993%" y="671.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="66.7559%" y="645" width="0.0259%" height="15" fill="rgb(233,161,9)" fg:x="345513" fg:w="134"/><text x="67.0059%" y="655.50"></text></g><g><title>_raw_spin_lock (320 samples, 0.06%)</title><rect x="66.8036%" y="645" width="0.0618%" height="15" fill="rgb(241,207,41)" fg:x="345760" fg:w="320"/><text x="67.0536%" y="655.50"></text></g><g><title>__radix_tree_lookup (534 samples, 0.10%)</title><rect x="66.8702%" y="629" width="0.1032%" height="15" fill="rgb(212,69,46)" fg:x="346105" fg:w="534"/><text x="67.1202%" y="639.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="66.9734%" y="629" width="0.0124%" height="15" fill="rgb(239,69,45)" fg:x="346639" fg:w="64"/><text x="67.2234%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (625 samples, 0.12%)</title><rect x="66.8656%" y="645" width="0.1208%" height="15" fill="rgb(242,117,48)" fg:x="346081" fg:w="625"/><text x="67.1156%" y="655.50"></text></g><g><title>___slab_alloc (133 samples, 0.03%)</title><rect x="67.0072%" y="613" width="0.0257%" height="15" fill="rgb(228,41,36)" fg:x="346814" fg:w="133"/><text x="67.2572%" y="623.50"></text></g><g><title>__slab_alloc (139 samples, 0.03%)</title><rect x="67.0063%" y="629" width="0.0269%" height="15" fill="rgb(212,3,32)" fg:x="346809" fg:w="139"/><text x="67.2563%" y="639.50"></text></g><g><title>memset_erms (90 samples, 0.02%)</title><rect x="67.0383%" y="629" width="0.0174%" height="15" fill="rgb(233,41,49)" fg:x="346975" fg:w="90"/><text x="67.2883%" y="639.50"></text></g><g><title>kmem_cache_alloc (388 samples, 0.07%)</title><rect x="66.9864%" y="645" width="0.0750%" height="15" fill="rgb(252,170,49)" fg:x="346706" fg:w="388"/><text x="67.2364%" y="655.50"></text></g><g><title>radix_tree_insert (181 samples, 0.03%)</title><rect x="67.0613%" y="645" width="0.0350%" height="15" fill="rgb(229,53,26)" fg:x="347094" fg:w="181"/><text x="67.3113%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,631 samples, 0.32%)</title><rect x="66.7818%" y="661" width="0.3151%" height="15" fill="rgb(217,157,12)" fg:x="345647" fg:w="1631"/><text x="67.0318%" y="671.50"></text></g><g><title>inode_get_bytes (93 samples, 0.02%)</title><rect x="67.1050%" y="645" width="0.0180%" height="15" fill="rgb(227,17,9)" fg:x="347320" fg:w="93"/><text x="67.3550%" y="655.50"></text></g><g><title>_raw_spin_lock (82 samples, 0.02%)</title><rect x="67.1071%" y="629" width="0.0158%" height="15" fill="rgb(218,84,12)" fg:x="347331" fg:w="82"/><text x="67.3571%" y="639.50"></text></g><g><title>fill_stack_inode_item (167 samples, 0.03%)</title><rect x="67.0969%" y="661" width="0.0323%" height="15" fill="rgb(212,79,24)" fg:x="347278" fg:w="167"/><text x="67.3469%" y="671.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="67.1291%" y="661" width="0.0158%" height="15" fill="rgb(217,222,37)" fg:x="347445" fg:w="82"/><text x="67.3791%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (2,718 samples, 0.53%)</title><rect x="66.6311%" y="677" width="0.5251%" height="15" fill="rgb(246,208,8)" fg:x="344867" fg:w="2718"/><text x="66.8811%" y="687.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="67.1450%" y="661" width="0.0112%" height="15" fill="rgb(244,133,10)" fg:x="347527" fg:w="58"/><text x="67.3950%" y="671.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="67.1599%" y="661" width="0.0116%" height="15" fill="rgb(209,219,41)" fg:x="347604" fg:w="60"/><text x="67.4099%" y="671.50"></text></g><g><title>btrfs_update_inode (3,002 samples, 0.58%)</title><rect x="66.6148%" y="693" width="0.5800%" height="15" fill="rgb(253,175,45)" fg:x="344783" fg:w="3002"/><text x="66.8648%" y="703.50"></text></g><g><title>btrfs_update_root_times (200 samples, 0.04%)</title><rect x="67.1562%" y="677" width="0.0386%" height="15" fill="rgb(235,100,37)" fg:x="347585" fg:w="200"/><text x="67.4062%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (121 samples, 0.02%)</title><rect x="67.1715%" y="661" width="0.0234%" height="15" fill="rgb(225,87,19)" fg:x="347664" fg:w="121"/><text x="67.4215%" y="671.50"></text></g><g><title>read_tsc (81 samples, 0.02%)</title><rect x="67.1792%" y="645" width="0.0156%" height="15" fill="rgb(217,152,17)" fg:x="347704" fg:w="81"/><text x="67.4292%" y="655.50"></text></g><g><title>__d_instantiate (117 samples, 0.02%)</title><rect x="67.2126%" y="677" width="0.0226%" height="15" fill="rgb(235,72,13)" fg:x="347877" fg:w="117"/><text x="67.4626%" y="687.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="67.2352%" y="677" width="0.0108%" height="15" fill="rgb(233,140,18)" fg:x="347994" fg:w="56"/><text x="67.4852%" y="687.50"></text></g><g><title>d_instantiate_new (281 samples, 0.05%)</title><rect x="67.1966%" y="693" width="0.0543%" height="15" fill="rgb(207,212,28)" fg:x="347794" fg:w="281"/><text x="67.4466%" y="703.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="67.2756%" y="677" width="0.0104%" height="15" fill="rgb(220,130,25)" fg:x="348203" fg:w="54"/><text x="67.5256%" y="687.50"></text></g><g><title>kmem_cache_alloc (218 samples, 0.04%)</title><rect x="67.2530%" y="693" width="0.0421%" height="15" fill="rgb(205,55,34)" fg:x="348086" fg:w="218"/><text x="67.5030%" y="703.50"></text></g><g><title>kmem_cache_free (108 samples, 0.02%)</title><rect x="67.2951%" y="693" width="0.0209%" height="15" fill="rgb(237,54,35)" fg:x="348304" fg:w="108"/><text x="67.5451%" y="703.50"></text></g><g><title>security_inode_init_security (101 samples, 0.02%)</title><rect x="67.3160%" y="693" width="0.0195%" height="15" fill="rgb(208,67,23)" fg:x="348412" fg:w="101"/><text x="67.5660%" y="703.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="67.4460%" y="629" width="0.0207%" height="15" fill="rgb(206,207,50)" fg:x="349085" fg:w="107"/><text x="67.6960%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (499 samples, 0.10%)</title><rect x="67.4667%" y="629" width="0.0964%" height="15" fill="rgb(213,211,42)" fg:x="349192" fg:w="499"/><text x="67.7167%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (267 samples, 0.05%)</title><rect x="67.5115%" y="613" width="0.0516%" height="15" fill="rgb(252,197,50)" fg:x="349424" fg:w="267"/><text x="67.7615%" y="623.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.02%)</title><rect x="67.5432%" y="597" width="0.0199%" height="15" fill="rgb(251,211,41)" fg:x="349588" fg:w="103"/><text x="67.7932%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (1,049 samples, 0.20%)</title><rect x="67.4101%" y="677" width="0.2027%" height="15" fill="rgb(229,211,5)" fg:x="348899" fg:w="1049"/><text x="67.6601%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (971 samples, 0.19%)</title><rect x="67.4251%" y="661" width="0.1876%" height="15" fill="rgb(239,36,31)" fg:x="348977" fg:w="971"/><text x="67.6751%" y="671.50"></text></g><g><title>__reserve_bytes (949 samples, 0.18%)</title><rect x="67.4294%" y="645" width="0.1834%" height="15" fill="rgb(248,67,31)" fg:x="348999" fg:w="949"/><text x="67.6794%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (257 samples, 0.05%)</title><rect x="67.5631%" y="629" width="0.0497%" height="15" fill="rgb(249,55,44)" fg:x="349691" fg:w="257"/><text x="67.8131%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (145 samples, 0.03%)</title><rect x="67.5847%" y="613" width="0.0280%" height="15" fill="rgb(216,82,12)" fg:x="349803" fg:w="145"/><text x="67.8347%" y="623.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="67.6004%" y="597" width="0.0124%" height="15" fill="rgb(242,174,1)" fg:x="349884" fg:w="64"/><text x="67.8504%" y="607.50"></text></g><g><title>join_transaction (245 samples, 0.05%)</title><rect x="67.6156%" y="677" width="0.0473%" height="15" fill="rgb(208,120,29)" fg:x="349963" fg:w="245"/><text x="67.8656%" y="687.50"></text></g><g><title>_raw_spin_lock (74 samples, 0.01%)</title><rect x="67.6487%" y="661" width="0.0143%" height="15" fill="rgb(221,105,43)" fg:x="350134" fg:w="74"/><text x="67.8987%" y="671.50"></text></g><g><title>kmem_cache_alloc (202 samples, 0.04%)</title><rect x="67.6630%" y="677" width="0.0390%" height="15" fill="rgb(234,124,22)" fg:x="350208" fg:w="202"/><text x="67.9130%" y="687.50"></text></g><g><title>start_transaction (2,062 samples, 0.40%)</title><rect x="67.3355%" y="693" width="0.3984%" height="15" fill="rgb(212,23,30)" fg:x="348513" fg:w="2062"/><text x="67.5855%" y="703.50"></text></g><g><title>wait_current_trans (165 samples, 0.03%)</title><rect x="67.7020%" y="677" width="0.0319%" height="15" fill="rgb(219,122,53)" fg:x="350410" fg:w="165"/><text x="67.9520%" y="687.50"></text></g><g><title>_raw_spin_lock (101 samples, 0.02%)</title><rect x="67.7144%" y="661" width="0.0195%" height="15" fill="rgb(248,84,24)" fg:x="350474" fg:w="101"/><text x="67.9644%" y="671.50"></text></g><g><title>strlen (683 samples, 0.13%)</title><rect x="67.7339%" y="693" width="0.1320%" height="15" fill="rgb(245,115,18)" fg:x="350575" fg:w="683"/><text x="67.9839%" y="703.50"></text></g><g><title>btrfs_symlink (53,844 samples, 10.40%)</title><rect x="57.4925%" y="709" width="10.4031%" height="15" fill="rgb(227,176,51)" fg:x="297568" fg:w="53844"/><text x="57.7425%" y="719.50">btrfs_symlink</text></g><g><title>write_extent_buffer (154 samples, 0.03%)</title><rect x="67.8658%" y="693" width="0.0298%" height="15" fill="rgb(229,63,42)" fg:x="351258" fg:w="154"/><text x="68.1158%" y="703.50"></text></g><g><title>inode_permission.part.0 (98 samples, 0.02%)</title><rect x="67.9064%" y="709" width="0.0189%" height="15" fill="rgb(247,202,24)" fg:x="351468" fg:w="98"/><text x="68.1564%" y="719.50"></text></g><g><title>do_symlinkat (74,317 samples, 14.36%)</title><rect x="53.5773%" y="741" width="14.3586%" height="15" fill="rgb(244,173,20)" fg:x="277304" fg:w="74317"/><text x="53.8273%" y="751.50">do_symlinkat</text></g><g><title>vfs_symlink (54,131 samples, 10.46%)</title><rect x="57.4774%" y="725" width="10.4585%" height="15" fill="rgb(242,81,47)" fg:x="297490" fg:w="54131"/><text x="57.7274%" y="735.50">vfs_symlink</text></g><g><title>do_syscall_64 (74,384 samples, 14.37%)</title><rect x="53.5685%" y="757" width="14.3716%" height="15" fill="rgb(231,185,54)" fg:x="277258" fg:w="74384"/><text x="53.8185%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (74,495 samples, 14.39%)</title><rect x="53.5586%" y="773" width="14.3930%" height="15" fill="rgb(243,55,32)" fg:x="277207" fg:w="74495"/><text x="53.8086%" y="783.50">entry_SYSCALL_64_after..</text></g><g><title>syscall_exit_to_user_mode (60 samples, 0.01%)</title><rect x="67.9400%" y="757" width="0.0116%" height="15" fill="rgb(208,167,19)" fg:x="351642" fg:w="60"/><text x="68.1900%" y="767.50"></text></g><g><title>syscall_return_via_sysret (65 samples, 0.01%)</title><rect x="67.9588%" y="773" width="0.0126%" height="15" fill="rgb(231,72,35)" fg:x="351739" fg:w="65"/><text x="68.2088%" y="783.50"></text></g><g><title>__symlink (74,971 samples, 14.48%)</title><rect x="53.4867%" y="789" width="14.4850%" height="15" fill="rgb(250,173,51)" fg:x="276835" fg:w="74971"/><text x="53.7367%" y="799.50">__symlink</text></g><g><title>_int_free (153 samples, 0.03%)</title><rect x="67.9717%" y="789" width="0.0296%" height="15" fill="rgb(209,5,22)" fg:x="351806" fg:w="153"/><text x="68.2217%" y="799.50"></text></g><g><title>jni_ExceptionOccurred (91 samples, 0.02%)</title><rect x="68.0129%" y="789" width="0.0176%" height="15" fill="rgb(250,174,19)" fg:x="352019" fg:w="91"/><text x="68.2629%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (192 samples, 0.04%)</title><rect x="68.0598%" y="773" width="0.0371%" height="15" fill="rgb(217,3,49)" fg:x="352262" fg:w="192"/><text x="68.3098%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (133 samples, 0.03%)</title><rect x="68.0969%" y="773" width="0.0257%" height="15" fill="rgb(218,225,5)" fg:x="352454" fg:w="133"/><text x="68.3469%" y="783.50"></text></g><g><title>[libc-2.31.so] (94 samples, 0.02%)</title><rect x="68.1226%" y="773" width="0.0182%" height="15" fill="rgb(236,89,11)" fg:x="352587" fg:w="94"/><text x="68.3726%" y="783.50"></text></g><g><title>check_bounds (68 samples, 0.01%)</title><rect x="68.1408%" y="773" width="0.0131%" height="15" fill="rgb(206,33,28)" fg:x="352681" fg:w="68"/><text x="68.3908%" y="783.50"></text></g><g><title>jni_GetByteArrayRegion (651 samples, 0.13%)</title><rect x="68.0305%" y="789" width="0.1258%" height="15" fill="rgb(241,56,42)" fg:x="352110" fg:w="651"/><text x="68.2805%" y="799.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (115 samples, 0.02%)</title><rect x="68.1881%" y="757" width="0.0222%" height="15" fill="rgb(222,44,11)" fg:x="352926" fg:w="115"/><text x="68.4381%" y="767.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (82 samples, 0.02%)</title><rect x="68.1945%" y="741" width="0.0158%" height="15" fill="rgb(234,111,20)" fg:x="352959" fg:w="82"/><text x="68.4445%" y="751.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (151 samples, 0.03%)</title><rect x="68.1815%" y="773" width="0.0292%" height="15" fill="rgb(237,77,6)" fg:x="352892" fg:w="151"/><text x="68.4315%" y="783.50"></text></g><g><title>HandleMark::pop_and_restore (101 samples, 0.02%)</title><rect x="68.2107%" y="773" width="0.0195%" height="15" fill="rgb(235,111,23)" fg:x="353043" fg:w="101"/><text x="68.4607%" y="783.50"></text></g><g><title>JNIHandles::make_local (84 samples, 0.02%)</title><rect x="68.2302%" y="773" width="0.0162%" height="15" fill="rgb(251,135,29)" fg:x="353144" fg:w="84"/><text x="68.4802%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (164 samples, 0.03%)</title><rect x="68.2470%" y="773" width="0.0317%" height="15" fill="rgb(217,57,1)" fg:x="353231" fg:w="164"/><text x="68.4970%" y="783.50"></text></g><g><title>jni_GetObjectField (810 samples, 0.16%)</title><rect x="68.1568%" y="789" width="0.1565%" height="15" fill="rgb(249,119,31)" fg:x="352764" fg:w="810"/><text x="68.4068%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (179 samples, 0.03%)</title><rect x="68.2787%" y="773" width="0.0346%" height="15" fill="rgb(233,164,33)" fg:x="353395" fg:w="179"/><text x="68.5287%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (123 samples, 0.02%)</title><rect x="68.3566%" y="773" width="0.0238%" height="15" fill="rgb(250,217,43)" fg:x="353798" fg:w="123"/><text x="68.6066%" y="783.50"></text></g><g><title>jni_GetStringLength (580 samples, 0.11%)</title><rect x="68.3133%" y="789" width="0.1121%" height="15" fill="rgb(232,154,50)" fg:x="353574" fg:w="580"/><text x="68.5633%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (233 samples, 0.05%)</title><rect x="68.3804%" y="773" width="0.0450%" height="15" fill="rgb(227,190,8)" fg:x="353921" fg:w="233"/><text x="68.6304%" y="783.50"></text></g><g><title>jni_NewObjectV (127 samples, 0.02%)</title><rect x="68.4265%" y="789" width="0.0245%" height="15" fill="rgb(209,217,32)" fg:x="354160" fg:w="127"/><text x="68.6765%" y="799.50"></text></g><g><title>jni_invoke_nonstatic (71 samples, 0.01%)</title><rect x="68.4374%" y="773" width="0.0137%" height="15" fill="rgb(243,203,50)" fg:x="354216" fg:w="71"/><text x="68.6874%" y="783.50"></text></g><g><title>operator delete@plt (56 samples, 0.01%)</title><rect x="68.4627%" y="789" width="0.0108%" height="15" fill="rgb(232,152,27)" fg:x="354347" fg:w="56"/><text x="68.7127%" y="799.50"></text></g><g><title>__GI___libc_malloc (156 samples, 0.03%)</title><rect x="68.4770%" y="773" width="0.0301%" height="15" fill="rgb(240,34,29)" fg:x="354421" fg:w="156"/><text x="68.7270%" y="783.50"></text></g><g><title>tcache_get (52 samples, 0.01%)</title><rect x="68.4971%" y="757" width="0.0100%" height="15" fill="rgb(215,185,52)" fg:x="354525" fg:w="52"/><text x="68.7471%" y="767.50"></text></g><g><title>operator new (245 samples, 0.05%)</title><rect x="68.4758%" y="789" width="0.0473%" height="15" fill="rgb(240,89,49)" fg:x="354415" fg:w="245"/><text x="68.7258%" y="799.50"></text></g><g><title>malloc@plt (83 samples, 0.02%)</title><rect x="68.5071%" y="773" width="0.0160%" height="15" fill="rgb(225,12,52)" fg:x="354577" fg:w="83"/><text x="68.7571%" y="783.50"></text></g><g><title>_int_malloc (115 samples, 0.02%)</title><rect x="68.5591%" y="741" width="0.0222%" height="15" fill="rgb(239,128,45)" fg:x="354846" fg:w="115"/><text x="68.8091%" y="751.50"></text></g><g><title>__GI___libc_malloc (233 samples, 0.05%)</title><rect x="68.5407%" y="757" width="0.0450%" height="15" fill="rgb(211,78,47)" fg:x="354751" fg:w="233"/><text x="68.7907%" y="767.50"></text></g><g><title>operator new (245 samples, 0.05%)</title><rect x="68.5403%" y="773" width="0.0473%" height="15" fill="rgb(232,31,21)" fg:x="354749" fg:w="245"/><text x="68.7903%" y="783.50"></text></g><g><title>[libunix_jni.so] (199,576 samples, 38.56%)</title><rect x="30.0307%" y="805" width="38.5597%" height="15" fill="rgb(222,168,14)" fg:x="155432" fg:w="199576"/><text x="30.2807%" y="815.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (273 samples, 0.05%)</title><rect x="68.5376%" y="789" width="0.0527%" height="15" fill="rgb(209,128,24)" fg:x="354735" fg:w="273"/><text x="68.7876%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (95 samples, 0.02%)</title><rect x="79.7068%" y="757" width="0.0184%" height="15" fill="rgb(249,35,13)" fg:x="412544" fg:w="95"/><text x="79.9568%" y="767.50"></text></g><g><title>InterpreterRuntime::_new (144 samples, 0.03%)</title><rect x="79.6977%" y="789" width="0.0278%" height="15" fill="rgb(218,7,2)" fg:x="412497" fg:w="144"/><text x="79.9477%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (98 samples, 0.02%)</title><rect x="79.7066%" y="773" width="0.0189%" height="15" fill="rgb(238,107,27)" fg:x="412543" fg:w="98"/><text x="79.9566%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (95 samples, 0.02%)</title><rect x="79.7302%" y="773" width="0.0184%" height="15" fill="rgb(217,88,38)" fg:x="412665" fg:w="95"/><text x="79.9802%" y="783.50"></text></g><g><title>InterpreterRuntime::anewarray (129 samples, 0.02%)</title><rect x="79.7255%" y="789" width="0.0249%" height="15" fill="rgb(230,207,0)" fg:x="412641" fg:w="129"/><text x="79.9755%" y="799.50"></text></g><g><title>InterpreterRuntime::at_safepoint (52 samples, 0.01%)</title><rect x="79.7505%" y="789" width="0.0100%" height="15" fill="rgb(249,64,54)" fg:x="412770" fg:w="52"/><text x="80.0005%" y="799.50"></text></g><g><title>SafepointSynchronize::block (52 samples, 0.01%)</title><rect x="79.7505%" y="773" width="0.0100%" height="15" fill="rgb(231,7,11)" fg:x="412770" fg:w="52"/><text x="80.0005%" y="783.50"></text></g><g><title>TieredThresholdPolicy::call_event (69 samples, 0.01%)</title><rect x="79.7839%" y="725" width="0.0133%" height="15" fill="rgb(205,149,21)" fg:x="412943" fg:w="69"/><text x="80.0339%" y="735.50"></text></g><g><title>CompileBroker::compile_method (52 samples, 0.01%)</title><rect x="79.7978%" y="693" width="0.0100%" height="15" fill="rgb(215,126,34)" fg:x="413015" fg:w="52"/><text x="80.0478%" y="703.50"></text></g><g><title>TieredThresholdPolicy::compile (56 samples, 0.01%)</title><rect x="79.7972%" y="725" width="0.0108%" height="15" fill="rgb(241,132,45)" fg:x="413012" fg:w="56"/><text x="80.0472%" y="735.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (55 samples, 0.01%)</title><rect x="79.7974%" y="709" width="0.0106%" height="15" fill="rgb(252,69,32)" fg:x="413013" fg:w="55"/><text x="80.0474%" y="719.50"></text></g><g><title>TieredThresholdPolicy::event (196 samples, 0.04%)</title><rect x="79.7704%" y="757" width="0.0379%" height="15" fill="rgb(232,204,19)" fg:x="412873" fg:w="196"/><text x="80.0204%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (182 samples, 0.04%)</title><rect x="79.7731%" y="741" width="0.0352%" height="15" fill="rgb(249,15,47)" fg:x="412887" fg:w="182"/><text x="80.0231%" y="751.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (237 samples, 0.05%)</title><rect x="79.7630%" y="789" width="0.0458%" height="15" fill="rgb(209,227,23)" fg:x="412835" fg:w="237"/><text x="80.0130%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (236 samples, 0.05%)</title><rect x="79.7632%" y="773" width="0.0456%" height="15" fill="rgb(248,92,24)" fg:x="412836" fg:w="236"/><text x="80.0132%" y="783.50"></text></g><g><title>InterpreterRuntime::ldc (102 samples, 0.02%)</title><rect x="79.8088%" y="789" width="0.0197%" height="15" fill="rgb(247,59,2)" fg:x="413072" fg:w="102"/><text x="80.0588%" y="799.50"></text></g><g><title>InterpreterRuntime::monitorenter (62 samples, 0.01%)</title><rect x="79.8285%" y="789" width="0.0120%" height="15" fill="rgb(221,30,5)" fg:x="413174" fg:w="62"/><text x="80.0785%" y="799.50"></text></g><g><title>ObjectSynchronizer::fast_enter (53 samples, 0.01%)</title><rect x="79.8302%" y="773" width="0.0102%" height="15" fill="rgb(208,108,53)" fg:x="413183" fg:w="53"/><text x="80.0802%" y="783.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (52 samples, 0.01%)</title><rect x="79.8304%" y="757" width="0.0100%" height="15" fill="rgb(211,183,26)" fg:x="413184" fg:w="52"/><text x="80.0804%" y="767.50"></text></g><g><title>VMThread::execute (52 samples, 0.01%)</title><rect x="79.8304%" y="741" width="0.0100%" height="15" fill="rgb(232,132,4)" fg:x="413184" fg:w="52"/><text x="80.0804%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (60 samples, 0.01%)</title><rect x="79.8894%" y="741" width="0.0116%" height="15" fill="rgb(253,128,37)" fg:x="413489" fg:w="60"/><text x="80.1394%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (203 samples, 0.04%)</title><rect x="79.8627%" y="757" width="0.0392%" height="15" fill="rgb(221,58,24)" fg:x="413351" fg:w="203"/><text x="80.1127%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (266 samples, 0.05%)</title><rect x="79.8536%" y="773" width="0.0514%" height="15" fill="rgb(230,54,45)" fg:x="413304" fg:w="266"/><text x="80.1036%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (361 samples, 0.07%)</title><rect x="79.8455%" y="789" width="0.0697%" height="15" fill="rgb(254,21,18)" fg:x="413262" fg:w="361"/><text x="80.0955%" y="799.50"></text></g><g><title>JVM_Clone (69 samples, 0.01%)</title><rect x="79.9193%" y="789" width="0.0133%" height="15" fill="rgb(221,108,0)" fg:x="413644" fg:w="69"/><text x="80.1693%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (320 samples, 0.06%)</title><rect x="80.0144%" y="661" width="0.0618%" height="15" fill="rgb(206,95,1)" fg:x="414136" fg:w="320"/><text x="80.2644%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (288 samples, 0.06%)</title><rect x="80.0206%" y="645" width="0.0556%" height="15" fill="rgb(237,52,5)" fg:x="414168" fg:w="288"/><text x="80.2706%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (330 samples, 0.06%)</title><rect x="80.0132%" y="677" width="0.0638%" height="15" fill="rgb(218,150,34)" fg:x="414130" fg:w="330"/><text x="80.2632%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (69 samples, 0.01%)</title><rect x="80.0779%" y="677" width="0.0133%" height="15" fill="rgb(235,194,28)" fg:x="414465" fg:w="69"/><text x="80.3279%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (68 samples, 0.01%)</title><rect x="80.0781%" y="661" width="0.0131%" height="15" fill="rgb(245,92,18)" fg:x="414466" fg:w="68"/><text x="80.3281%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (422 samples, 0.08%)</title><rect x="80.0111%" y="709" width="0.0815%" height="15" fill="rgb(253,203,53)" fg:x="414119" fg:w="422"/><text x="80.2611%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (419 samples, 0.08%)</title><rect x="80.0117%" y="693" width="0.0810%" height="15" fill="rgb(249,185,47)" fg:x="414122" fg:w="419"/><text x="80.2617%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (65 samples, 0.01%)</title><rect x="80.0926%" y="693" width="0.0126%" height="15" fill="rgb(252,194,52)" fg:x="414541" fg:w="65"/><text x="80.3426%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (73 samples, 0.01%)</title><rect x="80.0926%" y="709" width="0.0141%" height="15" fill="rgb(210,53,36)" fg:x="414541" fg:w="73"/><text x="80.3426%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (526 samples, 0.10%)</title><rect x="80.0107%" y="725" width="0.1016%" height="15" fill="rgb(237,37,25)" fg:x="414117" fg:w="526"/><text x="80.2607%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (552 samples, 0.11%)</title><rect x="80.0094%" y="773" width="0.1067%" height="15" fill="rgb(242,116,27)" fg:x="414110" fg:w="552"/><text x="80.2594%" y="783.50"></text></g><g><title>jvm_define_class_common (551 samples, 0.11%)</title><rect x="80.0095%" y="757" width="0.1065%" height="15" fill="rgb(213,185,26)" fg:x="414111" fg:w="551"/><text x="80.2595%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (545 samples, 0.11%)</title><rect x="80.0107%" y="741" width="0.1053%" height="15" fill="rgb(225,204,8)" fg:x="414117" fg:w="545"/><text x="80.2607%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (575 samples, 0.11%)</title><rect x="80.0090%" y="789" width="0.1111%" height="15" fill="rgb(254,111,37)" fg:x="414108" fg:w="575"/><text x="80.2590%" y="799.50"></text></g><g><title>calculate_sigpending (54 samples, 0.01%)</title><rect x="80.1458%" y="725" width="0.0104%" height="15" fill="rgb(242,35,9)" fg:x="414816" fg:w="54"/><text x="80.3958%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (646 samples, 0.12%)</title><rect x="80.1657%" y="693" width="0.1248%" height="15" fill="rgb(232,138,49)" fg:x="414919" fg:w="646"/><text x="80.4157%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (643 samples, 0.12%)</title><rect x="80.1662%" y="677" width="0.1242%" height="15" fill="rgb(247,56,4)" fg:x="414922" fg:w="643"/><text x="80.4162%" y="687.50"></text></g><g><title>native_write_msr (643 samples, 0.12%)</title><rect x="80.1662%" y="661" width="0.1242%" height="15" fill="rgb(226,179,17)" fg:x="414922" fg:w="643"/><text x="80.4162%" y="671.50"></text></g><g><title>__libc_vfork (808 samples, 0.16%)</title><rect x="80.1386%" y="757" width="0.1561%" height="15" fill="rgb(216,163,45)" fg:x="414779" fg:w="808"/><text x="80.3886%" y="767.50"></text></g><g><title>ret_from_fork (771 samples, 0.15%)</title><rect x="80.1458%" y="741" width="0.1490%" height="15" fill="rgb(211,157,3)" fg:x="414816" fg:w="771"/><text x="80.3958%" y="751.50"></text></g><g><title>schedule_tail (717 samples, 0.14%)</title><rect x="80.1562%" y="725" width="0.1385%" height="15" fill="rgb(234,44,20)" fg:x="414870" fg:w="717"/><text x="80.4062%" y="735.50"></text></g><g><title>finish_task_switch (699 samples, 0.14%)</title><rect x="80.1597%" y="709" width="0.1351%" height="15" fill="rgb(254,138,23)" fg:x="414888" fg:w="699"/><text x="80.4097%" y="719.50"></text></g><g><title>bprm_execve (126 samples, 0.02%)</title><rect x="80.2963%" y="645" width="0.0243%" height="15" fill="rgb(206,119,39)" fg:x="415595" fg:w="126"/><text x="80.5463%" y="655.50"></text></g><g><title>JDK_execvpe (176 samples, 0.03%)</title><rect x="80.2949%" y="741" width="0.0340%" height="15" fill="rgb(231,105,52)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="751.50"></text></g><g><title>__GI_execve (176 samples, 0.03%)</title><rect x="80.2949%" y="725" width="0.0340%" height="15" fill="rgb(250,20,5)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (176 samples, 0.03%)</title><rect x="80.2949%" y="709" width="0.0340%" height="15" fill="rgb(215,198,30)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="719.50"></text></g><g><title>do_syscall_64 (176 samples, 0.03%)</title><rect x="80.2949%" y="693" width="0.0340%" height="15" fill="rgb(246,142,8)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="703.50"></text></g><g><title>__x64_sys_execve (176 samples, 0.03%)</title><rect x="80.2949%" y="677" width="0.0340%" height="15" fill="rgb(243,26,38)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="687.50"></text></g><g><title>do_execveat_common (176 samples, 0.03%)</title><rect x="80.2949%" y="661" width="0.0340%" height="15" fill="rgb(205,133,28)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="671.50"></text></g><g><title>closeDescriptors (71 samples, 0.01%)</title><rect x="80.3314%" y="741" width="0.0137%" height="15" fill="rgb(212,34,0)" fg:x="415777" fg:w="71"/><text x="80.5814%" y="751.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,125 samples, 0.22%)</title><rect x="80.1351%" y="789" width="0.2174%" height="15" fill="rgb(251,226,22)" fg:x="414761" fg:w="1125"/><text x="80.3851%" y="799.50"></text></g><g><title>vforkChild (1,107 samples, 0.21%)</title><rect x="80.1386%" y="773" width="0.2139%" height="15" fill="rgb(252,119,9)" fg:x="414779" fg:w="1107"/><text x="80.3886%" y="783.50"></text></g><g><title>childProcess (299 samples, 0.06%)</title><rect x="80.2947%" y="757" width="0.0578%" height="15" fill="rgb(213,150,50)" fg:x="415587" fg:w="299"/><text x="80.5447%" y="767.50"></text></g><g><title>OptoRuntime::new_array_C (108 samples, 0.02%)</title><rect x="80.3602%" y="789" width="0.0209%" height="15" fill="rgb(212,24,39)" fg:x="415926" fg:w="108"/><text x="80.6102%" y="799.50"></text></g><g><title>TypeArrayKlass::allocate_common (59 samples, 0.01%)</title><rect x="80.3697%" y="773" width="0.0114%" height="15" fill="rgb(213,46,39)" fg:x="415975" fg:w="59"/><text x="80.6197%" y="783.50"></text></g><g><title>CollectedHeap::array_allocate (58 samples, 0.01%)</title><rect x="80.3699%" y="757" width="0.0112%" height="15" fill="rgb(239,106,12)" fg:x="415976" fg:w="58"/><text x="80.6199%" y="767.50"></text></g><g><title>MemAllocator::allocate (58 samples, 0.01%)</title><rect x="80.3699%" y="741" width="0.0112%" height="15" fill="rgb(249,229,21)" fg:x="415976" fg:w="58"/><text x="80.6199%" y="751.50"></text></g><g><title>kernel_init_free_pages (57 samples, 0.01%)</title><rect x="80.3915%" y="565" width="0.0110%" height="15" fill="rgb(212,158,3)" fg:x="416088" fg:w="57"/><text x="80.6415%" y="575.50"></text></g><g><title>clear_page_erms (57 samples, 0.01%)</title><rect x="80.3915%" y="549" width="0.0110%" height="15" fill="rgb(253,26,48)" fg:x="416088" fg:w="57"/><text x="80.6415%" y="559.50"></text></g><g><title>alloc_pages_vma (59 samples, 0.01%)</title><rect x="80.3913%" y="629" width="0.0114%" height="15" fill="rgb(238,178,20)" fg:x="416087" fg:w="59"/><text x="80.6413%" y="639.50"></text></g><g><title>__alloc_pages_nodemask (59 samples, 0.01%)</title><rect x="80.3913%" y="613" width="0.0114%" height="15" fill="rgb(208,86,15)" fg:x="416087" fg:w="59"/><text x="80.6413%" y="623.50"></text></g><g><title>get_page_from_freelist (59 samples, 0.01%)</title><rect x="80.3913%" y="597" width="0.0114%" height="15" fill="rgb(239,42,53)" fg:x="416087" fg:w="59"/><text x="80.6413%" y="607.50"></text></g><g><title>prep_new_page (58 samples, 0.01%)</title><rect x="80.3915%" y="581" width="0.0112%" height="15" fill="rgb(245,226,8)" fg:x="416088" fg:w="58"/><text x="80.6415%" y="591.50"></text></g><g><title>InstanceKlass::allocate_instance (115 samples, 0.02%)</title><rect x="80.3869%" y="773" width="0.0222%" height="15" fill="rgb(216,176,32)" fg:x="416064" fg:w="115"/><text x="80.6369%" y="783.50"></text></g><g><title>CollectedHeap::obj_allocate (113 samples, 0.02%)</title><rect x="80.3873%" y="757" width="0.0218%" height="15" fill="rgb(231,186,21)" fg:x="416066" fg:w="113"/><text x="80.6373%" y="767.50"></text></g><g><title>MemAllocator::allocate (113 samples, 0.02%)</title><rect x="80.3873%" y="741" width="0.0218%" height="15" fill="rgb(205,95,49)" fg:x="416066" fg:w="113"/><text x="80.6373%" y="751.50"></text></g><g><title>ObjAllocator::initialize (96 samples, 0.02%)</title><rect x="80.3906%" y="725" width="0.0185%" height="15" fill="rgb(217,145,8)" fg:x="416083" fg:w="96"/><text x="80.6406%" y="735.50"></text></g><g><title>asm_exc_page_fault (94 samples, 0.02%)</title><rect x="80.3909%" y="709" width="0.0182%" height="15" fill="rgb(239,144,48)" fg:x="416085" fg:w="94"/><text x="80.6409%" y="719.50"></text></g><g><title>exc_page_fault (94 samples, 0.02%)</title><rect x="80.3909%" y="693" width="0.0182%" height="15" fill="rgb(214,189,23)" fg:x="416085" fg:w="94"/><text x="80.6409%" y="703.50"></text></g><g><title>do_user_addr_fault (94 samples, 0.02%)</title><rect x="80.3909%" y="677" width="0.0182%" height="15" fill="rgb(229,157,17)" fg:x="416085" fg:w="94"/><text x="80.6409%" y="687.50"></text></g><g><title>handle_mm_fault (92 samples, 0.02%)</title><rect x="80.3913%" y="661" width="0.0178%" height="15" fill="rgb(230,5,48)" fg:x="416087" fg:w="92"/><text x="80.6413%" y="671.50"></text></g><g><title>do_huge_pmd_anonymous_page (92 samples, 0.02%)</title><rect x="80.3913%" y="645" width="0.0178%" height="15" fill="rgb(224,156,48)" fg:x="416087" fg:w="92"/><text x="80.6413%" y="655.50"></text></g><g><title>OptoRuntime::new_instance_C (122 samples, 0.02%)</title><rect x="80.3859%" y="789" width="0.0236%" height="15" fill="rgb(223,14,29)" fg:x="416059" fg:w="122"/><text x="80.6359%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (101 samples, 0.02%)</title><rect x="80.4164%" y="773" width="0.0195%" height="15" fill="rgb(229,96,36)" fg:x="416217" fg:w="101"/><text x="80.6664%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (73 samples, 0.01%)</title><rect x="80.4219%" y="757" width="0.0141%" height="15" fill="rgb(231,102,53)" fg:x="416245" fg:w="73"/><text x="80.6719%" y="767.50"></text></g><g><title>Runtime1::counter_overflow (170 samples, 0.03%)</title><rect x="80.4095%" y="789" width="0.0328%" height="15" fill="rgb(210,77,38)" fg:x="416181" fg:w="170"/><text x="80.6595%" y="799.50"></text></g><g><title>ObjectMonitor::enter (55 samples, 0.01%)</title><rect x="80.4481%" y="773" width="0.0106%" height="15" fill="rgb(235,131,6)" fg:x="416381" fg:w="55"/><text x="80.6981%" y="783.50"></text></g><g><title>Runtime1::monitorenter (96 samples, 0.02%)</title><rect x="80.4437%" y="789" width="0.0185%" height="15" fill="rgb(252,55,38)" fg:x="416358" fg:w="96"/><text x="80.6937%" y="799.50"></text></g><g><title>Runtime1::new_instance (99 samples, 0.02%)</title><rect x="80.4713%" y="789" width="0.0191%" height="15" fill="rgb(246,38,14)" fg:x="416501" fg:w="99"/><text x="80.7213%" y="799.50"></text></g><g><title>InstanceKlass::allocate_instance (99 samples, 0.02%)</title><rect x="80.4713%" y="773" width="0.0191%" height="15" fill="rgb(242,27,5)" fg:x="416501" fg:w="99"/><text x="80.7213%" y="783.50"></text></g><g><title>CollectedHeap::obj_allocate (98 samples, 0.02%)</title><rect x="80.4715%" y="757" width="0.0189%" height="15" fill="rgb(228,65,35)" fg:x="416502" fg:w="98"/><text x="80.7215%" y="767.50"></text></g><g><title>MemAllocator::allocate (98 samples, 0.02%)</title><rect x="80.4715%" y="741" width="0.0189%" height="15" fill="rgb(245,93,11)" fg:x="416502" fg:w="98"/><text x="80.7215%" y="751.50"></text></g><g><title>ObjAllocator::initialize (70 samples, 0.01%)</title><rect x="80.4769%" y="725" width="0.0135%" height="15" fill="rgb(213,1,31)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="735.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="709" width="0.0135%" height="15" fill="rgb(237,205,14)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="719.50"></text></g><g><title>exc_page_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="693" width="0.0135%" height="15" fill="rgb(232,118,45)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="703.50"></text></g><g><title>do_user_addr_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="677" width="0.0135%" height="15" fill="rgb(218,5,6)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="687.50"></text></g><g><title>handle_mm_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="661" width="0.0135%" height="15" fill="rgb(251,87,51)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="671.50"></text></g><g><title>do_huge_pmd_anonymous_page (70 samples, 0.01%)</title><rect x="80.4769%" y="645" width="0.0135%" height="15" fill="rgb(207,225,20)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="655.50"></text></g><g><title>SystemDictionary::parse_stream (67 samples, 0.01%)</title><rect x="80.5181%" y="773" width="0.0129%" height="15" fill="rgb(222,78,54)" fg:x="416743" fg:w="67"/><text x="80.7681%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (72 samples, 0.01%)</title><rect x="80.5175%" y="789" width="0.0139%" height="15" fill="rgb(232,85,16)" fg:x="416740" fg:w="72"/><text x="80.7675%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (332 samples, 0.06%)</title><rect x="80.5521%" y="565" width="0.0641%" height="15" fill="rgb(244,25,33)" fg:x="416919" fg:w="332"/><text x="80.8021%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (324 samples, 0.06%)</title><rect x="80.5536%" y="549" width="0.0626%" height="15" fill="rgb(233,24,36)" fg:x="416927" fg:w="324"/><text x="80.8036%" y="559.50"></text></g><g><title>native_write_msr (323 samples, 0.06%)</title><rect x="80.5538%" y="533" width="0.0624%" height="15" fill="rgb(253,49,54)" fg:x="416928" fg:w="323"/><text x="80.8038%" y="543.50"></text></g><g><title>finish_task_switch (351 samples, 0.07%)</title><rect x="80.5511%" y="581" width="0.0678%" height="15" fill="rgb(245,12,22)" fg:x="416914" fg:w="351"/><text x="80.8011%" y="591.50"></text></g><g><title>futex_wait_queue_me (375 samples, 0.07%)</title><rect x="80.5490%" y="629" width="0.0725%" height="15" fill="rgb(253,141,28)" fg:x="416903" fg:w="375"/><text x="80.7990%" y="639.50"></text></g><g><title>schedule (373 samples, 0.07%)</title><rect x="80.5494%" y="613" width="0.0721%" height="15" fill="rgb(225,207,27)" fg:x="416905" fg:w="373"/><text x="80.7994%" y="623.50"></text></g><g><title>__schedule (372 samples, 0.07%)</title><rect x="80.5496%" y="597" width="0.0719%" height="15" fill="rgb(220,84,2)" fg:x="416906" fg:w="372"/><text x="80.7996%" y="607.50"></text></g><g><title>__x64_sys_futex (384 samples, 0.07%)</title><rect x="80.5484%" y="677" width="0.0742%" height="15" fill="rgb(224,37,37)" fg:x="416900" fg:w="384"/><text x="80.7984%" y="687.50"></text></g><g><title>do_futex (383 samples, 0.07%)</title><rect x="80.5486%" y="661" width="0.0740%" height="15" fill="rgb(220,143,18)" fg:x="416901" fg:w="383"/><text x="80.7986%" y="671.50"></text></g><g><title>futex_wait (382 samples, 0.07%)</title><rect x="80.5488%" y="645" width="0.0738%" height="15" fill="rgb(210,88,33)" fg:x="416902" fg:w="382"/><text x="80.7988%" y="655.50"></text></g><g><title>do_syscall_64 (385 samples, 0.07%)</title><rect x="80.5484%" y="693" width="0.0744%" height="15" fill="rgb(219,87,51)" fg:x="416900" fg:w="385"/><text x="80.7984%" y="703.50"></text></g><g><title>__pthread_cond_wait (405 samples, 0.08%)</title><rect x="80.5470%" y="757" width="0.0782%" height="15" fill="rgb(211,7,35)" fg:x="416893" fg:w="405"/><text x="80.7970%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (405 samples, 0.08%)</title><rect x="80.5470%" y="741" width="0.0782%" height="15" fill="rgb(232,77,2)" fg:x="416893" fg:w="405"/><text x="80.7970%" y="751.50"></text></g><g><title>futex_wait_cancelable (401 samples, 0.08%)</title><rect x="80.5478%" y="725" width="0.0775%" height="15" fill="rgb(249,94,25)" fg:x="416897" fg:w="401"/><text x="80.7978%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (398 samples, 0.08%)</title><rect x="80.5484%" y="709" width="0.0769%" height="15" fill="rgb(215,112,2)" fg:x="416900" fg:w="398"/><text x="80.7984%" y="719.50"></text></g><g><title>Parker::park (464 samples, 0.09%)</title><rect x="80.5382%" y="773" width="0.0896%" height="15" fill="rgb(226,115,48)" fg:x="416847" fg:w="464"/><text x="80.7882%" y="783.50"></text></g><g><title>Unsafe_Park (472 samples, 0.09%)</title><rect x="80.5374%" y="789" width="0.0912%" height="15" fill="rgb(249,196,10)" fg:x="416843" fg:w="472"/><text x="80.7874%" y="799.50"></text></g><g><title>ttwu_do_activate (73 samples, 0.01%)</title><rect x="80.6533%" y="629" width="0.0141%" height="15" fill="rgb(237,109,14)" fg:x="417443" fg:w="73"/><text x="80.9033%" y="639.50"></text></g><g><title>__x64_sys_futex (156 samples, 0.03%)</title><rect x="80.6419%" y="709" width="0.0301%" height="15" fill="rgb(217,103,53)" fg:x="417384" fg:w="156"/><text x="80.8919%" y="719.50"></text></g><g><title>do_futex (153 samples, 0.03%)</title><rect x="80.6425%" y="693" width="0.0296%" height="15" fill="rgb(244,137,9)" fg:x="417387" fg:w="153"/><text x="80.8925%" y="703.50"></text></g><g><title>futex_wake (151 samples, 0.03%)</title><rect x="80.6429%" y="677" width="0.0292%" height="15" fill="rgb(227,201,3)" fg:x="417389" fg:w="151"/><text x="80.8929%" y="687.50"></text></g><g><title>wake_up_q (123 samples, 0.02%)</title><rect x="80.6483%" y="661" width="0.0238%" height="15" fill="rgb(243,94,6)" fg:x="417417" fg:w="123"/><text x="80.8983%" y="671.50"></text></g><g><title>try_to_wake_up (122 samples, 0.02%)</title><rect x="80.6485%" y="645" width="0.0236%" height="15" fill="rgb(235,118,5)" fg:x="417418" fg:w="122"/><text x="80.8985%" y="655.50"></text></g><g><title>do_syscall_64 (159 samples, 0.03%)</title><rect x="80.6415%" y="725" width="0.0307%" height="15" fill="rgb(247,10,30)" fg:x="417382" fg:w="159"/><text x="80.8915%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.03%)</title><rect x="80.6415%" y="741" width="0.0321%" height="15" fill="rgb(205,26,28)" fg:x="417382" fg:w="166"/><text x="80.8915%" y="751.50"></text></g><g><title>__pthread_cond_signal (183 samples, 0.04%)</title><rect x="80.6384%" y="773" width="0.0354%" height="15" fill="rgb(206,99,35)" fg:x="417366" fg:w="183"/><text x="80.8884%" y="783.50"></text></g><g><title>futex_wake (172 samples, 0.03%)</title><rect x="80.6406%" y="757" width="0.0332%" height="15" fill="rgb(238,130,40)" fg:x="417377" fg:w="172"/><text x="80.8906%" y="767.50"></text></g><g><title>Unsafe_Unpark (234 samples, 0.05%)</title><rect x="80.6292%" y="789" width="0.0452%" height="15" fill="rgb(224,126,31)" fg:x="417318" fg:w="234"/><text x="80.8792%" y="799.50"></text></g><g><title>clone_endio (53 samples, 0.01%)</title><rect x="80.6873%" y="645" width="0.0102%" height="15" fill="rgb(254,105,17)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="655.50"></text></g><g><title>dec_pending (53 samples, 0.01%)</title><rect x="80.6873%" y="629" width="0.0102%" height="15" fill="rgb(216,87,36)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="639.50"></text></g><g><title>btrfs_end_bio (53 samples, 0.01%)</title><rect x="80.6873%" y="613" width="0.0102%" height="15" fill="rgb(240,21,12)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="623.50"></text></g><g><title>end_bio_extent_writepage (53 samples, 0.01%)</title><rect x="80.6873%" y="597" width="0.0102%" height="15" fill="rgb(245,192,34)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="607.50"></text></g><g><title>blk_mq_end_request (80 samples, 0.02%)</title><rect x="80.6873%" y="677" width="0.0155%" height="15" fill="rgb(226,100,49)" fg:x="417619" fg:w="80"/><text x="80.9373%" y="687.50"></text></g><g><title>blk_update_request (80 samples, 0.02%)</title><rect x="80.6873%" y="661" width="0.0155%" height="15" fill="rgb(245,188,27)" fg:x="417619" fg:w="80"/><text x="80.9373%" y="671.50"></text></g><g><title>handle_edge_irq (85 samples, 0.02%)</title><rect x="80.6867%" y="757" width="0.0164%" height="15" fill="rgb(212,170,8)" fg:x="417616" fg:w="85"/><text x="80.9367%" y="767.50"></text></g><g><title>handle_irq_event (85 samples, 0.02%)</title><rect x="80.6867%" y="741" width="0.0164%" height="15" fill="rgb(217,113,29)" fg:x="417616" fg:w="85"/><text x="80.9367%" y="751.50"></text></g><g><title>__handle_irq_event_percpu (85 samples, 0.02%)</title><rect x="80.6867%" y="725" width="0.0164%" height="15" fill="rgb(237,30,3)" fg:x="417616" fg:w="85"/><text x="80.9367%" y="735.50"></text></g><g><title>nvme_irq (82 samples, 0.02%)</title><rect x="80.6873%" y="709" width="0.0158%" height="15" fill="rgb(227,19,28)" fg:x="417619" fg:w="82"/><text x="80.9373%" y="719.50"></text></g><g><title>nvme_process_cq (82 samples, 0.02%)</title><rect x="80.6873%" y="693" width="0.0158%" height="15" fill="rgb(239,172,45)" fg:x="417619" fg:w="82"/><text x="80.9373%" y="703.50"></text></g><g><title>common_interrupt (87 samples, 0.02%)</title><rect x="80.6867%" y="773" width="0.0168%" height="15" fill="rgb(254,55,39)" fg:x="417616" fg:w="87"/><text x="80.9367%" y="783.50"></text></g><g><title>asm_common_interrupt (89 samples, 0.02%)</title><rect x="80.6867%" y="789" width="0.0172%" height="15" fill="rgb(249,208,12)" fg:x="417616" fg:w="89"/><text x="80.9367%" y="799.50"></text></g><g><title>tick_sched_timer (57 samples, 0.01%)</title><rect x="80.7097%" y="709" width="0.0110%" height="15" fill="rgb(240,52,13)" fg:x="417735" fg:w="57"/><text x="80.9597%" y="719.50"></text></g><g><title>__hrtimer_run_queues (61 samples, 0.01%)</title><rect x="80.7092%" y="725" width="0.0118%" height="15" fill="rgb(252,149,13)" fg:x="417732" fg:w="61"/><text x="80.9592%" y="735.50"></text></g><g><title>__sysvec_apic_timer_interrupt (72 samples, 0.01%)</title><rect x="80.7078%" y="757" width="0.0139%" height="15" fill="rgb(232,81,48)" fg:x="417725" fg:w="72"/><text x="80.9578%" y="767.50"></text></g><g><title>hrtimer_interrupt (70 samples, 0.01%)</title><rect x="80.7082%" y="741" width="0.0135%" height="15" fill="rgb(222,144,2)" fg:x="417727" fg:w="70"/><text x="80.9582%" y="751.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (142 samples, 0.03%)</title><rect x="80.7064%" y="789" width="0.0274%" height="15" fill="rgb(216,81,32)" fg:x="417718" fg:w="142"/><text x="80.9564%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (135 samples, 0.03%)</title><rect x="80.7078%" y="773" width="0.0261%" height="15" fill="rgb(244,78,51)" fg:x="417725" fg:w="135"/><text x="80.9578%" y="783.50"></text></g><g><title>irq_exit_rcu (62 samples, 0.01%)</title><rect x="80.7219%" y="757" width="0.0120%" height="15" fill="rgb(217,66,21)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="767.50"></text></g><g><title>do_softirq_own_stack (62 samples, 0.01%)</title><rect x="80.7219%" y="741" width="0.0120%" height="15" fill="rgb(247,101,42)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (62 samples, 0.01%)</title><rect x="80.7219%" y="725" width="0.0120%" height="15" fill="rgb(227,81,39)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="735.50"></text></g><g><title>__softirqentry_text_start (62 samples, 0.01%)</title><rect x="80.7219%" y="709" width="0.0120%" height="15" fill="rgb(220,223,44)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="719.50"></text></g><g><title>__close (58 samples, 0.01%)</title><rect x="80.7432%" y="773" width="0.0112%" height="15" fill="rgb(205,218,2)" fg:x="417908" fg:w="58"/><text x="80.9932%" y="783.50"></text></g><g><title>fileDescriptorClose (72 samples, 0.01%)</title><rect x="80.7428%" y="789" width="0.0139%" height="15" fill="rgb(212,207,28)" fg:x="417906" fg:w="72"/><text x="80.9928%" y="799.50"></text></g><g><title>do_filp_open (162 samples, 0.03%)</title><rect x="80.7745%" y="693" width="0.0313%" height="15" fill="rgb(224,12,41)" fg:x="418070" fg:w="162"/><text x="81.0245%" y="703.50"></text></g><g><title>path_openat (160 samples, 0.03%)</title><rect x="80.7748%" y="677" width="0.0309%" height="15" fill="rgb(216,118,12)" fg:x="418072" fg:w="160"/><text x="81.0248%" y="687.50"></text></g><g><title>do_syscall_64 (202 samples, 0.04%)</title><rect x="80.7710%" y="741" width="0.0390%" height="15" fill="rgb(252,97,46)" fg:x="418052" fg:w="202"/><text x="81.0210%" y="751.50"></text></g><g><title>__x64_sys_openat (201 samples, 0.04%)</title><rect x="80.7712%" y="725" width="0.0388%" height="15" fill="rgb(244,206,19)" fg:x="418053" fg:w="201"/><text x="81.0212%" y="735.50"></text></g><g><title>do_sys_openat2 (199 samples, 0.04%)</title><rect x="80.7716%" y="709" width="0.0384%" height="15" fill="rgb(231,84,31)" fg:x="418055" fg:w="199"/><text x="81.0216%" y="719.50"></text></g><g><title>__libc_open64 (209 samples, 0.04%)</title><rect x="80.7702%" y="773" width="0.0404%" height="15" fill="rgb(244,133,0)" fg:x="418048" fg:w="209"/><text x="81.0202%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (205 samples, 0.04%)</title><rect x="80.7710%" y="757" width="0.0396%" height="15" fill="rgb(223,15,50)" fg:x="418052" fg:w="205"/><text x="81.0210%" y="767.50"></text></g><g><title>fileOpen (297 samples, 0.06%)</title><rect x="80.7567%" y="789" width="0.0574%" height="15" fill="rgb(250,118,49)" fg:x="417978" fg:w="297"/><text x="81.0067%" y="799.50"></text></g><g><title>jni_IsAssignableFrom (63 samples, 0.01%)</title><rect x="80.8189%" y="789" width="0.0122%" height="15" fill="rgb(248,25,38)" fg:x="418300" fg:w="63"/><text x="81.0689%" y="799.50"></text></g><g><title>os::javaTimeNanos (57 samples, 0.01%)</title><rect x="80.8336%" y="789" width="0.0110%" height="15" fill="rgb(215,70,14)" fg:x="418376" fg:w="57"/><text x="81.0836%" y="799.50"></text></g><g><title>__GI___clock_gettime (53 samples, 0.01%)</title><rect x="80.8343%" y="773" width="0.0102%" height="15" fill="rgb(215,28,15)" fg:x="418380" fg:w="53"/><text x="81.0843%" y="783.50"></text></g><g><title>[perf-965379.map] (63,429 samples, 12.25%)</title><rect x="68.5904%" y="805" width="12.2550%" height="15" fill="rgb(243,6,28)" fg:x="355008" fg:w="63429"/><text x="68.8404%" y="815.50">[perf-965379.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (152 samples, 0.03%)</title><rect x="80.8894%" y="773" width="0.0294%" height="15" fill="rgb(222,130,1)" fg:x="418665" fg:w="152"/><text x="81.1394%" y="783.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (272 samples, 0.05%)</title><rect x="80.8693%" y="789" width="0.0526%" height="15" fill="rgb(236,166,44)" fg:x="418561" fg:w="272"/><text x="81.1193%" y="799.50"></text></g><g><title>SafepointSynchronize::block (65 samples, 0.01%)</title><rect x="80.9221%" y="773" width="0.0126%" height="15" fill="rgb(221,108,14)" fg:x="418834" fg:w="65"/><text x="81.1721%" y="783.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (68 samples, 0.01%)</title><rect x="80.9219%" y="789" width="0.0131%" height="15" fill="rgb(252,3,45)" fg:x="418833" fg:w="68"/><text x="81.1719%" y="799.50"></text></g><g><title>operator new (74 samples, 0.01%)</title><rect x="80.9454%" y="789" width="0.0143%" height="15" fill="rgb(237,68,30)" fg:x="418955" fg:w="74"/><text x="81.1954%" y="799.50"></text></g><g><title>copy_page_to_iter (136 samples, 0.03%)</title><rect x="80.9764%" y="629" width="0.0263%" height="15" fill="rgb(211,79,22)" fg:x="419115" fg:w="136"/><text x="81.2264%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (124 samples, 0.02%)</title><rect x="80.9787%" y="613" width="0.0240%" height="15" fill="rgb(252,185,21)" fg:x="419127" fg:w="124"/><text x="81.2287%" y="623.50"></text></g><g><title>generic_file_buffered_read (229 samples, 0.04%)</title><rect x="80.9733%" y="645" width="0.0442%" height="15" fill="rgb(225,189,26)" fg:x="419099" fg:w="229"/><text x="81.2233%" y="655.50"></text></g><g><title>new_sync_read (237 samples, 0.05%)</title><rect x="80.9719%" y="661" width="0.0458%" height="15" fill="rgb(241,30,40)" fg:x="419092" fg:w="237"/><text x="81.2219%" y="671.50"></text></g><g><title>do_syscall_64 (283 samples, 0.05%)</title><rect x="80.9663%" y="709" width="0.0547%" height="15" fill="rgb(235,215,44)" fg:x="419063" fg:w="283"/><text x="81.2163%" y="719.50"></text></g><g><title>ksys_read (281 samples, 0.05%)</title><rect x="80.9667%" y="693" width="0.0543%" height="15" fill="rgb(205,8,29)" fg:x="419065" fg:w="281"/><text x="81.2167%" y="703.50"></text></g><g><title>vfs_read (263 samples, 0.05%)</title><rect x="80.9702%" y="677" width="0.0508%" height="15" fill="rgb(241,137,42)" fg:x="419083" fg:w="263"/><text x="81.2202%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (287 samples, 0.06%)</title><rect x="80.9659%" y="725" width="0.0555%" height="15" fill="rgb(237,155,2)" fg:x="419061" fg:w="287"/><text x="81.2159%" y="735.50"></text></g><g><title>__libc_read (306 samples, 0.06%)</title><rect x="80.9628%" y="757" width="0.0591%" height="15" fill="rgb(245,29,42)" fg:x="419045" fg:w="306"/><text x="81.2128%" y="767.50"></text></g><g><title>__libc_read (305 samples, 0.06%)</title><rect x="80.9630%" y="741" width="0.0589%" height="15" fill="rgb(234,101,35)" fg:x="419046" fg:w="305"/><text x="81.2130%" y="751.50"></text></g><g><title>handleRead (307 samples, 0.06%)</title><rect x="80.9628%" y="773" width="0.0593%" height="15" fill="rgb(228,64,37)" fg:x="419045" fg:w="307"/><text x="81.2128%" y="783.50"></text></g><g><title>readBytes (392 samples, 0.08%)</title><rect x="80.9599%" y="789" width="0.0757%" height="15" fill="rgb(217,214,36)" fg:x="419030" fg:w="392"/><text x="81.2099%" y="799.50"></text></g><g><title>[unknown] (1,011 samples, 0.20%)</title><rect x="80.8454%" y="805" width="0.1953%" height="15" fill="rgb(243,70,3)" fg:x="418437" fg:w="1011"/><text x="81.0954%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="81.0438%" y="741" width="0.0197%" height="15" fill="rgb(253,158,52)" fg:x="419464" fg:w="102"/><text x="81.2938%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.02%)</title><rect x="81.0438%" y="725" width="0.0197%" height="15" fill="rgb(234,111,54)" fg:x="419464" fg:w="102"/><text x="81.2938%" y="735.50"></text></g><g><title>native_write_msr (101 samples, 0.02%)</title><rect x="81.0440%" y="709" width="0.0195%" height="15" fill="rgb(217,70,32)" fg:x="419465" fg:w="101"/><text x="81.2940%" y="719.50"></text></g><g><title>schedule_tail (109 samples, 0.02%)</title><rect x="81.0432%" y="773" width="0.0211%" height="15" fill="rgb(234,18,33)" fg:x="419461" fg:w="109"/><text x="81.2932%" y="783.50"></text></g><g><title>finish_task_switch (108 samples, 0.02%)</title><rect x="81.0434%" y="757" width="0.0209%" height="15" fill="rgb(234,12,49)" fg:x="419462" fg:w="108"/><text x="81.2934%" y="767.50"></text></g><g><title>ret_from_fork (112 samples, 0.02%)</title><rect x="81.0428%" y="789" width="0.0216%" height="15" fill="rgb(236,10,21)" fg:x="419459" fg:w="112"/><text x="81.2928%" y="799.50"></text></g><g><title>__GI___clone (181 samples, 0.03%)</title><rect x="81.0407%" y="805" width="0.0350%" height="15" fill="rgb(248,182,45)" fg:x="419448" fg:w="181"/><text x="81.2907%" y="815.50"></text></g><g><title>start_thread (58 samples, 0.01%)</title><rect x="81.0645%" y="789" width="0.0112%" height="15" fill="rgb(217,95,36)" fg:x="419571" fg:w="58"/><text x="81.3145%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="81.0830%" y="805" width="0.0122%" height="15" fill="rgb(212,110,31)" fg:x="419667" fg:w="63"/><text x="81.3330%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (93 samples, 0.02%)</title><rect x="81.0952%" y="805" width="0.0180%" height="15" fill="rgb(206,32,53)" fg:x="419730" fg:w="93"/><text x="81.3452%" y="815.50"></text></g><g><title>skyframe-evalua (265,352 samples, 51.27%)</title><rect x="29.8560%" y="821" width="51.2681%" height="15" fill="rgb(246,141,37)" fg:x="154528" fg:w="265352"/><text x="30.1060%" y="831.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (103 samples, 0.02%)</title><rect x="81.1431%" y="565" width="0.0199%" height="15" fill="rgb(219,16,7)" fg:x="419978" fg:w="103"/><text x="81.3931%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.02%)</title><rect x="81.1437%" y="549" width="0.0193%" height="15" fill="rgb(230,205,45)" fg:x="419981" fg:w="100"/><text x="81.3937%" y="559.50"></text></g><g><title>native_write_msr (100 samples, 0.02%)</title><rect x="81.1437%" y="533" width="0.0193%" height="15" fill="rgb(231,43,49)" fg:x="419981" fg:w="100"/><text x="81.3937%" y="543.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="81.1419%" y="693" width="0.0214%" height="15" fill="rgb(212,106,34)" fg:x="419972" fg:w="111"/><text x="81.3919%" y="703.50"></text></g><g><title>__x64_sys_futex (111 samples, 0.02%)</title><rect x="81.1419%" y="677" width="0.0214%" height="15" fill="rgb(206,83,17)" fg:x="419972" fg:w="111"/><text x="81.3919%" y="687.50"></text></g><g><title>do_futex (110 samples, 0.02%)</title><rect x="81.1421%" y="661" width="0.0213%" height="15" fill="rgb(244,154,49)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="671.50"></text></g><g><title>futex_wait (110 samples, 0.02%)</title><rect x="81.1421%" y="645" width="0.0213%" height="15" fill="rgb(244,149,49)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="655.50"></text></g><g><title>futex_wait_queue_me (110 samples, 0.02%)</title><rect x="81.1421%" y="629" width="0.0213%" height="15" fill="rgb(227,134,18)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="639.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="81.1421%" y="613" width="0.0213%" height="15" fill="rgb(237,116,36)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="623.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="81.1421%" y="597" width="0.0213%" height="15" fill="rgb(205,129,40)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="607.50"></text></g><g><title>finish_task_switch (108 samples, 0.02%)</title><rect x="81.1425%" y="581" width="0.0209%" height="15" fill="rgb(236,178,4)" fg:x="419975" fg:w="108"/><text x="81.3925%" y="591.50"></text></g><g><title>__pthread_cond_wait (114 samples, 0.02%)</title><rect x="81.1417%" y="757" width="0.0220%" height="15" fill="rgb(251,76,53)" fg:x="419971" fg:w="114"/><text x="81.3917%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (114 samples, 0.02%)</title><rect x="81.1417%" y="741" width="0.0220%" height="15" fill="rgb(242,92,40)" fg:x="419971" fg:w="114"/><text x="81.3917%" y="751.50"></text></g><g><title>futex_wait_cancelable (114 samples, 0.02%)</title><rect x="81.1417%" y="725" width="0.0220%" height="15" fill="rgb(209,45,30)" fg:x="419971" fg:w="114"/><text x="81.3917%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (113 samples, 0.02%)</title><rect x="81.1419%" y="709" width="0.0218%" height="15" fill="rgb(218,157,36)" fg:x="419972" fg:w="113"/><text x="81.3919%" y="719.50"></text></g><g><title>Parker::park (135 samples, 0.03%)</title><rect x="81.1387%" y="773" width="0.0261%" height="15" fill="rgb(222,186,16)" fg:x="419955" fg:w="135"/><text x="81.3887%" y="783.50"></text></g><g><title>Unsafe_Park (142 samples, 0.03%)</title><rect x="81.1387%" y="789" width="0.0274%" height="15" fill="rgb(254,72,35)" fg:x="419955" fg:w="142"/><text x="81.3887%" y="799.50"></text></g><g><title>[perf-965379.map] (213 samples, 0.04%)</title><rect x="81.1253%" y="805" width="0.0412%" height="15" fill="rgb(224,25,35)" fg:x="419886" fg:w="213"/><text x="81.3753%" y="815.50"></text></g><g><title>skyframe-invali (251 samples, 0.05%)</title><rect x="81.1242%" y="821" width="0.0485%" height="15" fill="rgb(206,135,52)" fg:x="419880" fg:w="251"/><text x="81.3742%" y="831.50"></text></g><g><title>[unknown] (99 samples, 0.02%)</title><rect x="81.1775%" y="805" width="0.0191%" height="15" fill="rgb(229,174,47)" fg:x="420156" fg:w="99"/><text x="81.4275%" y="815.50"></text></g><g><title>[zig] (99 samples, 0.02%)</title><rect x="81.1775%" y="789" width="0.0191%" height="15" fill="rgb(242,184,21)" fg:x="420156" fg:w="99"/><text x="81.4275%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (122 samples, 0.02%)</title><rect x="86.6263%" y="613" width="0.0236%" height="15" fill="rgb(213,22,45)" fg:x="448358" fg:w="122"/><text x="86.8763%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (118 samples, 0.02%)</title><rect x="86.6271%" y="597" width="0.0228%" height="15" fill="rgb(237,81,54)" fg:x="448362" fg:w="118"/><text x="86.8771%" y="607.50"></text></g><g><title>native_write_msr (117 samples, 0.02%)</title><rect x="86.6273%" y="581" width="0.0226%" height="15" fill="rgb(248,177,18)" fg:x="448363" fg:w="117"/><text x="86.8773%" y="591.50"></text></g><g><title>finish_task_switch (128 samples, 0.02%)</title><rect x="86.6258%" y="629" width="0.0247%" height="15" fill="rgb(254,31,16)" fg:x="448355" fg:w="128"/><text x="86.8758%" y="639.50"></text></g><g><title>wait_on_page_bit_common (154 samples, 0.03%)</title><rect x="86.6232%" y="693" width="0.0298%" height="15" fill="rgb(235,20,31)" fg:x="448342" fg:w="154"/><text x="86.8732%" y="703.50"></text></g><g><title>io_schedule (152 samples, 0.03%)</title><rect x="86.6236%" y="677" width="0.0294%" height="15" fill="rgb(240,56,43)" fg:x="448344" fg:w="152"/><text x="86.8736%" y="687.50"></text></g><g><title>schedule (152 samples, 0.03%)</title><rect x="86.6236%" y="661" width="0.0294%" height="15" fill="rgb(237,197,51)" fg:x="448344" fg:w="152"/><text x="86.8736%" y="671.50"></text></g><g><title>__schedule (152 samples, 0.03%)</title><rect x="86.6236%" y="645" width="0.0294%" height="15" fill="rgb(241,162,44)" fg:x="448344" fg:w="152"/><text x="86.8736%" y="655.50"></text></g><g><title>__do_fault (187 samples, 0.04%)</title><rect x="86.6205%" y="725" width="0.0361%" height="15" fill="rgb(224,23,20)" fg:x="448328" fg:w="187"/><text x="86.8705%" y="735.50"></text></g><g><title>filemap_fault (187 samples, 0.04%)</title><rect x="86.6205%" y="709" width="0.0361%" height="15" fill="rgb(250,109,34)" fg:x="448328" fg:w="187"/><text x="86.8705%" y="719.50"></text></g><g><title>kernel_init_free_pages (179 samples, 0.03%)</title><rect x="86.7023%" y="661" width="0.0346%" height="15" fill="rgb(214,175,50)" fg:x="448751" fg:w="179"/><text x="86.9523%" y="671.50"></text></g><g><title>clear_page_erms (173 samples, 0.03%)</title><rect x="86.7034%" y="645" width="0.0334%" height="15" fill="rgb(213,182,5)" fg:x="448757" fg:w="173"/><text x="86.9534%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (351 samples, 0.07%)</title><rect x="86.6692%" y="709" width="0.0678%" height="15" fill="rgb(209,199,19)" fg:x="448580" fg:w="351"/><text x="86.9192%" y="719.50"></text></g><g><title>get_page_from_freelist (307 samples, 0.06%)</title><rect x="86.6777%" y="693" width="0.0593%" height="15" fill="rgb(236,224,42)" fg:x="448624" fg:w="307"/><text x="86.9277%" y="703.50"></text></g><g><title>prep_new_page (197 samples, 0.04%)</title><rect x="86.6990%" y="677" width="0.0381%" height="15" fill="rgb(246,226,29)" fg:x="448734" fg:w="197"/><text x="86.9490%" y="687.50"></text></g><g><title>alloc_pages_vma (380 samples, 0.07%)</title><rect x="86.6650%" y="725" width="0.0734%" height="15" fill="rgb(227,223,11)" fg:x="448558" fg:w="380"/><text x="86.9150%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (62 samples, 0.01%)</title><rect x="86.7450%" y="725" width="0.0120%" height="15" fill="rgb(219,7,51)" fg:x="448972" fg:w="62"/><text x="86.9950%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.01%)</title><rect x="86.7879%" y="613" width="0.0147%" height="15" fill="rgb(245,167,10)" fg:x="449194" fg:w="76"/><text x="87.0379%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="86.7881%" y="597" width="0.0145%" height="15" fill="rgb(237,224,16)" fg:x="449195" fg:w="75"/><text x="87.0381%" y="607.50"></text></g><g><title>native_write_msr (75 samples, 0.01%)</title><rect x="86.7881%" y="581" width="0.0145%" height="15" fill="rgb(226,132,13)" fg:x="449195" fg:w="75"/><text x="87.0381%" y="591.50"></text></g><g><title>finish_task_switch (80 samples, 0.02%)</title><rect x="86.7875%" y="629" width="0.0155%" height="15" fill="rgb(214,140,3)" fg:x="449192" fg:w="80"/><text x="87.0375%" y="639.50"></text></g><g><title>do_page_mkwrite (249 samples, 0.05%)</title><rect x="86.7569%" y="725" width="0.0481%" height="15" fill="rgb(221,177,4)" fg:x="449034" fg:w="249"/><text x="87.0069%" y="735.50"></text></g><g><title>btrfs_page_mkwrite (249 samples, 0.05%)</title><rect x="86.7569%" y="709" width="0.0481%" height="15" fill="rgb(238,139,3)" fg:x="449034" fg:w="249"/><text x="87.0069%" y="719.50"></text></g><g><title>wait_on_page_bit_common (97 samples, 0.02%)</title><rect x="86.7863%" y="693" width="0.0187%" height="15" fill="rgb(216,17,39)" fg:x="449186" fg:w="97"/><text x="87.0363%" y="703.50"></text></g><g><title>io_schedule (97 samples, 0.02%)</title><rect x="86.7863%" y="677" width="0.0187%" height="15" fill="rgb(238,120,9)" fg:x="449186" fg:w="97"/><text x="87.0363%" y="687.50"></text></g><g><title>schedule (97 samples, 0.02%)</title><rect x="86.7863%" y="661" width="0.0187%" height="15" fill="rgb(244,92,53)" fg:x="449186" fg:w="97"/><text x="87.0363%" y="671.50"></text></g><g><title>__schedule (96 samples, 0.02%)</title><rect x="86.7865%" y="645" width="0.0185%" height="15" fill="rgb(224,148,33)" fg:x="449187" fg:w="96"/><text x="87.0365%" y="655.50"></text></g><g><title>page_add_file_rmap (146 samples, 0.03%)</title><rect x="86.9268%" y="693" width="0.0282%" height="15" fill="rgb(243,6,36)" fg:x="449913" fg:w="146"/><text x="87.1768%" y="703.50"></text></g><g><title>alloc_set_pte (236 samples, 0.05%)</title><rect x="86.9107%" y="709" width="0.0456%" height="15" fill="rgb(230,102,11)" fg:x="449830" fg:w="236"/><text x="87.1607%" y="719.50"></text></g><g><title>unlock_page (55 samples, 0.01%)</title><rect x="86.9563%" y="709" width="0.0106%" height="15" fill="rgb(234,148,36)" fg:x="450066" fg:w="55"/><text x="87.2063%" y="719.50"></text></g><g><title>filemap_map_pages (868 samples, 0.17%)</title><rect x="86.8095%" y="725" width="0.1677%" height="15" fill="rgb(251,153,25)" fg:x="449306" fg:w="868"/><text x="87.0595%" y="735.50"></text></g><g><title>xas_find (53 samples, 0.01%)</title><rect x="86.9670%" y="709" width="0.0102%" height="15" fill="rgb(215,129,8)" fg:x="450121" fg:w="53"/><text x="87.2170%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (83 samples, 0.02%)</title><rect x="86.9845%" y="693" width="0.0160%" height="15" fill="rgb(224,128,35)" fg:x="450212" fg:w="83"/><text x="87.2345%" y="703.50"></text></g><g><title>lru_cache_add (136 samples, 0.03%)</title><rect x="86.9782%" y="725" width="0.0263%" height="15" fill="rgb(237,56,52)" fg:x="450179" fg:w="136"/><text x="87.2282%" y="735.50"></text></g><g><title>pagevec_lru_move_fn (114 samples, 0.02%)</title><rect x="86.9824%" y="709" width="0.0220%" height="15" fill="rgb(234,213,19)" fg:x="450201" fg:w="114"/><text x="87.2324%" y="719.50"></text></g><g><title>mem_cgroup_charge (119 samples, 0.02%)</title><rect x="87.0048%" y="725" width="0.0230%" height="15" fill="rgb(252,82,23)" fg:x="450317" fg:w="119"/><text x="87.2548%" y="735.50"></text></g><g><title>handle_mm_fault (2,478 samples, 0.48%)</title><rect x="86.5719%" y="741" width="0.4788%" height="15" fill="rgb(254,201,21)" fg:x="448076" fg:w="2478"/><text x="86.8219%" y="751.50"></text></g><g><title>do_user_addr_fault (2,619 samples, 0.51%)</title><rect x="86.5498%" y="757" width="0.5060%" height="15" fill="rgb(250,186,11)" fg:x="447962" fg:w="2619"/><text x="86.7998%" y="767.50"></text></g><g><title>exc_page_fault (2,635 samples, 0.51%)</title><rect x="86.5471%" y="773" width="0.5091%" height="15" fill="rgb(211,174,5)" fg:x="447948" fg:w="2635"/><text x="86.7971%" y="783.50"></text></g><g><title>asm_exc_page_fault (2,668 samples, 0.52%)</title><rect x="86.5438%" y="789" width="0.5155%" height="15" fill="rgb(214,121,10)" fg:x="447931" fg:w="2668"/><text x="86.7938%" y="799.50"></text></g><g><title>rcu_core (84 samples, 0.02%)</title><rect x="87.0653%" y="693" width="0.0162%" height="15" fill="rgb(241,66,2)" fg:x="450630" fg:w="84"/><text x="87.3153%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (118 samples, 0.02%)</title><rect x="87.0593%" y="789" width="0.0228%" height="15" fill="rgb(220,167,19)" fg:x="450599" fg:w="118"/><text x="87.3093%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (101 samples, 0.02%)</title><rect x="87.0626%" y="773" width="0.0195%" height="15" fill="rgb(231,54,50)" fg:x="450616" fg:w="101"/><text x="87.3126%" y="783.50"></text></g><g><title>irq_exit_rcu (88 samples, 0.02%)</title><rect x="87.0651%" y="757" width="0.0170%" height="15" fill="rgb(239,217,53)" fg:x="450629" fg:w="88"/><text x="87.3151%" y="767.50"></text></g><g><title>do_softirq_own_stack (88 samples, 0.02%)</title><rect x="87.0651%" y="741" width="0.0170%" height="15" fill="rgb(248,8,0)" fg:x="450629" fg:w="88"/><text x="87.3151%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (88 samples, 0.02%)</title><rect x="87.0651%" y="725" width="0.0170%" height="15" fill="rgb(229,118,37)" fg:x="450629" fg:w="88"/><text x="87.3151%" y="735.50"></text></g><g><title>__softirqentry_text_start (87 samples, 0.02%)</title><rect x="87.0653%" y="709" width="0.0168%" height="15" fill="rgb(253,223,43)" fg:x="450630" fg:w="87"/><text x="87.3153%" y="719.50"></text></g><g><title>entry_SYSCALL_64 (1,364 samples, 0.26%)</title><rect x="87.0839%" y="789" width="0.2635%" height="15" fill="rgb(211,77,36)" fg:x="450726" fg:w="1364"/><text x="87.3339%" y="799.50"></text></g><g><title>copy_process (83 samples, 0.02%)</title><rect x="87.4564%" y="725" width="0.0160%" height="15" fill="rgb(219,3,53)" fg:x="452654" fg:w="83"/><text x="87.7064%" y="735.50"></text></g><g><title>__do_sys_clone (95 samples, 0.02%)</title><rect x="87.4564%" y="757" width="0.0184%" height="15" fill="rgb(244,45,42)" fg:x="452654" fg:w="95"/><text x="87.7064%" y="767.50"></text></g><g><title>kernel_clone (95 samples, 0.02%)</title><rect x="87.4564%" y="741" width="0.0184%" height="15" fill="rgb(225,95,27)" fg:x="452654" fg:w="95"/><text x="87.7064%" y="751.50"></text></g><g><title>_copy_to_user (195 samples, 0.04%)</title><rect x="87.4892%" y="725" width="0.0377%" height="15" fill="rgb(207,74,8)" fg:x="452824" fg:w="195"/><text x="87.7392%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (174 samples, 0.03%)</title><rect x="87.4933%" y="709" width="0.0336%" height="15" fill="rgb(243,63,36)" fg:x="452845" fg:w="174"/><text x="87.7433%" y="719.50"></text></g><g><title>cp_new_stat (316 samples, 0.06%)</title><rect x="87.4772%" y="741" width="0.0611%" height="15" fill="rgb(211,180,12)" fg:x="452762" fg:w="316"/><text x="87.7272%" y="751.50"></text></g><g><title>__fget_light (100 samples, 0.02%)</title><rect x="87.5418%" y="725" width="0.0193%" height="15" fill="rgb(254,166,49)" fg:x="453096" fg:w="100"/><text x="87.7918%" y="735.50"></text></g><g><title>__fget_files (90 samples, 0.02%)</title><rect x="87.5437%" y="709" width="0.0174%" height="15" fill="rgb(205,19,0)" fg:x="453106" fg:w="90"/><text x="87.7937%" y="719.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="87.6430%" y="709" width="0.0193%" height="15" fill="rgb(224,172,32)" fg:x="453620" fg:w="100"/><text x="87.8930%" y="719.50"></text></g><g><title>btrfs_getattr (652 samples, 0.13%)</title><rect x="87.5611%" y="725" width="0.1260%" height="15" fill="rgb(254,136,30)" fg:x="453196" fg:w="652"/><text x="87.8111%" y="735.50"></text></g><g><title>inode_get_bytes (87 samples, 0.02%)</title><rect x="87.6702%" y="709" width="0.0168%" height="15" fill="rgb(246,19,35)" fg:x="453761" fg:w="87"/><text x="87.9202%" y="719.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="87.6737%" y="693" width="0.0133%" height="15" fill="rgb(219,24,36)" fg:x="453779" fg:w="69"/><text x="87.9237%" y="703.50"></text></g><g><title>fput_many (54 samples, 0.01%)</title><rect x="87.6874%" y="725" width="0.0104%" height="15" fill="rgb(251,55,1)" fg:x="453850" fg:w="54"/><text x="87.9374%" y="735.50"></text></g><g><title>security_inode_getattr (235 samples, 0.05%)</title><rect x="87.6979%" y="725" width="0.0454%" height="15" fill="rgb(218,117,39)" fg:x="453904" fg:w="235"/><text x="87.9479%" y="735.50"></text></g><g><title>tomoyo_path_perm (190 samples, 0.04%)</title><rect x="87.7066%" y="709" width="0.0367%" height="15" fill="rgb(248,169,11)" fg:x="453949" fg:w="190"/><text x="87.9566%" y="719.50"></text></g><g><title>tomoyo_init_request_info (82 samples, 0.02%)</title><rect x="87.7274%" y="693" width="0.0158%" height="15" fill="rgb(244,40,44)" fg:x="454057" fg:w="82"/><text x="87.9774%" y="703.50"></text></g><g><title>__do_sys_newfstat (1,496 samples, 0.29%)</title><rect x="87.4747%" y="757" width="0.2890%" height="15" fill="rgb(234,62,37)" fg:x="452749" fg:w="1496"/><text x="87.7247%" y="767.50"></text></g><g><title>vfs_fstat (1,167 samples, 0.23%)</title><rect x="87.5383%" y="741" width="0.2255%" height="15" fill="rgb(207,117,42)" fg:x="453078" fg:w="1167"/><text x="87.7883%" y="751.50"></text></g><g><title>vfs_getattr_nosec (106 samples, 0.02%)</title><rect x="87.7433%" y="725" width="0.0205%" height="15" fill="rgb(213,43,2)" fg:x="454139" fg:w="106"/><text x="87.9933%" y="735.50"></text></g><g><title>__close_fd (87 samples, 0.02%)</title><rect x="87.7695%" y="741" width="0.0168%" height="15" fill="rgb(244,202,51)" fg:x="454275" fg:w="87"/><text x="88.0195%" y="751.50"></text></g><g><title>pick_file (84 samples, 0.02%)</title><rect x="87.7701%" y="725" width="0.0162%" height="15" fill="rgb(253,174,46)" fg:x="454278" fg:w="84"/><text x="88.0201%" y="735.50"></text></g><g><title>fput_many (205 samples, 0.04%)</title><rect x="87.7906%" y="725" width="0.0396%" height="15" fill="rgb(251,23,1)" fg:x="454384" fg:w="205"/><text x="88.0406%" y="735.50"></text></g><g><title>task_work_add (130 samples, 0.03%)</title><rect x="87.8051%" y="709" width="0.0251%" height="15" fill="rgb(253,26,1)" fg:x="454459" fg:w="130"/><text x="88.0551%" y="719.50"></text></g><g><title>__x64_sys_close (336 samples, 0.06%)</title><rect x="87.7678%" y="757" width="0.0649%" height="15" fill="rgb(216,89,31)" fg:x="454266" fg:w="336"/><text x="88.0178%" y="767.50"></text></g><g><title>filp_close (240 samples, 0.05%)</title><rect x="87.7864%" y="741" width="0.0464%" height="15" fill="rgb(209,109,5)" fg:x="454362" fg:w="240"/><text x="88.0364%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (120 samples, 0.02%)</title><rect x="87.8374%" y="629" width="0.0232%" height="15" fill="rgb(229,63,13)" fg:x="454626" fg:w="120"/><text x="88.0874%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (118 samples, 0.02%)</title><rect x="87.8378%" y="613" width="0.0228%" height="15" fill="rgb(238,137,54)" fg:x="454628" fg:w="118"/><text x="88.0878%" y="623.50"></text></g><g><title>native_write_msr (115 samples, 0.02%)</title><rect x="87.8383%" y="597" width="0.0222%" height="15" fill="rgb(228,1,9)" fg:x="454631" fg:w="115"/><text x="88.0883%" y="607.50"></text></g><g><title>schedule (125 samples, 0.02%)</title><rect x="87.8368%" y="677" width="0.0242%" height="15" fill="rgb(249,120,48)" fg:x="454623" fg:w="125"/><text x="88.0868%" y="687.50"></text></g><g><title>__schedule (124 samples, 0.02%)</title><rect x="87.8370%" y="661" width="0.0240%" height="15" fill="rgb(209,72,36)" fg:x="454624" fg:w="124"/><text x="88.0870%" y="671.50"></text></g><g><title>finish_task_switch (123 samples, 0.02%)</title><rect x="87.8372%" y="645" width="0.0238%" height="15" fill="rgb(247,98,49)" fg:x="454625" fg:w="123"/><text x="88.0872%" y="655.50"></text></g><g><title>begin_new_exec (152 samples, 0.03%)</title><rect x="87.8350%" y="693" width="0.0294%" height="15" fill="rgb(233,75,36)" fg:x="454614" fg:w="152"/><text x="88.0850%" y="703.50"></text></g><g><title>load_elf_binary (158 samples, 0.03%)</title><rect x="87.8345%" y="709" width="0.0305%" height="15" fill="rgb(225,14,24)" fg:x="454611" fg:w="158"/><text x="88.0845%" y="719.50"></text></g><g><title>bprm_execve (215 samples, 0.04%)</title><rect x="87.8333%" y="725" width="0.0415%" height="15" fill="rgb(237,193,20)" fg:x="454605" fg:w="215"/><text x="88.0833%" y="735.50"></text></g><g><title>__x64_sys_execve (246 samples, 0.05%)</title><rect x="87.8333%" y="757" width="0.0475%" height="15" fill="rgb(239,122,19)" fg:x="454605" fg:w="246"/><text x="88.0833%" y="767.50"></text></g><g><title>do_execveat_common (246 samples, 0.05%)</title><rect x="87.8333%" y="741" width="0.0475%" height="15" fill="rgb(231,220,10)" fg:x="454605" fg:w="246"/><text x="88.0833%" y="751.50"></text></g><g><title>__perf_event_task_sched_out (53 samples, 0.01%)</title><rect x="87.9749%" y="661" width="0.0102%" height="15" fill="rgb(220,66,15)" fg:x="455338" fg:w="53"/><text x="88.2249%" y="671.50"></text></g><g><title>update_curr (145 samples, 0.03%)</title><rect x="88.0240%" y="629" width="0.0280%" height="15" fill="rgb(215,171,52)" fg:x="455592" fg:w="145"/><text x="88.2740%" y="639.50"></text></g><g><title>dequeue_entity (406 samples, 0.08%)</title><rect x="88.0014%" y="645" width="0.0784%" height="15" fill="rgb(241,169,50)" fg:x="455475" fg:w="406"/><text x="88.2514%" y="655.50"></text></g><g><title>update_load_avg (144 samples, 0.03%)</title><rect x="88.0520%" y="629" width="0.0278%" height="15" fill="rgb(236,189,0)" fg:x="455737" fg:w="144"/><text x="88.3020%" y="639.50"></text></g><g><title>dequeue_task_fair (471 samples, 0.09%)</title><rect x="87.9914%" y="661" width="0.0910%" height="15" fill="rgb(217,147,20)" fg:x="455423" fg:w="471"/><text x="88.2414%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (13,324 samples, 2.57%)</title><rect x="88.1436%" y="645" width="2.5743%" height="15" fill="rgb(206,188,39)" fg:x="456211" fg:w="13324"/><text x="88.3936%" y="655.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,164 samples, 2.54%)</title><rect x="88.1745%" y="629" width="2.5434%" height="15" fill="rgb(227,118,25)" fg:x="456371" fg:w="13164"/><text x="88.4245%" y="639.50">__..</text></g><g><title>native_write_msr (13,083 samples, 2.53%)</title><rect x="88.1902%" y="613" width="2.5277%" height="15" fill="rgb(248,171,40)" fg:x="456452" fg:w="13083"/><text x="88.4402%" y="623.50">na..</text></g><g><title>__wake_up_common (94 samples, 0.02%)</title><rect x="90.7492%" y="485" width="0.0182%" height="15" fill="rgb(251,90,54)" fg:x="469697" fg:w="94"/><text x="90.9992%" y="495.50"></text></g><g><title>pollwake (92 samples, 0.02%)</title><rect x="90.7496%" y="469" width="0.0178%" height="15" fill="rgb(234,11,46)" fg:x="469699" fg:w="92"/><text x="90.9996%" y="479.50"></text></g><g><title>try_to_wake_up (87 samples, 0.02%)</title><rect x="90.7506%" y="453" width="0.0168%" height="15" fill="rgb(229,134,13)" fg:x="469704" fg:w="87"/><text x="91.0006%" y="463.50"></text></g><g><title>irq_work_run (128 samples, 0.02%)</title><rect x="90.7440%" y="581" width="0.0247%" height="15" fill="rgb(223,129,3)" fg:x="469670" fg:w="128"/><text x="90.9940%" y="591.50"></text></g><g><title>irq_work_run_list (127 samples, 0.02%)</title><rect x="90.7442%" y="565" width="0.0245%" height="15" fill="rgb(221,124,13)" fg:x="469671" fg:w="127"/><text x="90.9942%" y="575.50"></text></g><g><title>irq_work_single (121 samples, 0.02%)</title><rect x="90.7453%" y="549" width="0.0234%" height="15" fill="rgb(234,3,18)" fg:x="469677" fg:w="121"/><text x="90.9953%" y="559.50"></text></g><g><title>perf_pending_event (119 samples, 0.02%)</title><rect x="90.7457%" y="533" width="0.0230%" height="15" fill="rgb(249,199,20)" fg:x="469679" fg:w="119"/><text x="90.9957%" y="543.50"></text></g><g><title>perf_event_wakeup (108 samples, 0.02%)</title><rect x="90.7479%" y="517" width="0.0209%" height="15" fill="rgb(224,134,6)" fg:x="469690" fg:w="108"/><text x="90.9979%" y="527.50"></text></g><g><title>__wake_up_common_lock (104 samples, 0.02%)</title><rect x="90.7486%" y="501" width="0.0201%" height="15" fill="rgb(254,83,26)" fg:x="469694" fg:w="104"/><text x="90.9986%" y="511.50"></text></g><g><title>asm_call_sysvec_on_stack (144 samples, 0.03%)</title><rect x="90.7421%" y="613" width="0.0278%" height="15" fill="rgb(217,88,9)" fg:x="469660" fg:w="144"/><text x="90.9921%" y="623.50"></text></g><g><title>__sysvec_irq_work (135 samples, 0.03%)</title><rect x="90.7438%" y="597" width="0.0261%" height="15" fill="rgb(225,73,2)" fg:x="469669" fg:w="135"/><text x="90.9938%" y="607.50"></text></g><g><title>asm_sysvec_irq_work (215 samples, 0.04%)</title><rect x="90.7297%" y="645" width="0.0415%" height="15" fill="rgb(226,44,39)" fg:x="469596" fg:w="215"/><text x="90.9797%" y="655.50"></text></g><g><title>sysvec_irq_work (154 samples, 0.03%)</title><rect x="90.7415%" y="629" width="0.0298%" height="15" fill="rgb(228,53,17)" fg:x="469657" fg:w="154"/><text x="90.9915%" y="639.50"></text></g><g><title>finish_task_switch (13,976 samples, 2.70%)</title><rect x="88.0824%" y="661" width="2.7003%" height="15" fill="rgb(212,27,27)" fg:x="455894" fg:w="13976"/><text x="88.3324%" y="671.50">fi..</text></g><g><title>load_balance (54 samples, 0.01%)</title><rect x="90.7944%" y="629" width="0.0104%" height="15" fill="rgb(241,50,6)" fg:x="469931" fg:w="54"/><text x="91.0444%" y="639.50"></text></g><g><title>newidle_balance (111 samples, 0.02%)</title><rect x="90.7857%" y="645" width="0.0214%" height="15" fill="rgb(225,28,51)" fg:x="469886" fg:w="111"/><text x="91.0357%" y="655.50"></text></g><g><title>pick_next_task_fair (133 samples, 0.03%)</title><rect x="90.7828%" y="661" width="0.0257%" height="15" fill="rgb(215,33,16)" fg:x="469871" fg:w="133"/><text x="91.0328%" y="671.50"></text></g><g><title>__update_idle_core (56 samples, 0.01%)</title><rect x="90.8095%" y="645" width="0.0108%" height="15" fill="rgb(243,40,39)" fg:x="470009" fg:w="56"/><text x="91.0595%" y="655.50"></text></g><g><title>pick_next_task_idle (63 samples, 0.01%)</title><rect x="90.8085%" y="661" width="0.0122%" height="15" fill="rgb(225,11,42)" fg:x="470004" fg:w="63"/><text x="91.0585%" y="671.50"></text></g><g><title>psi_task_change (320 samples, 0.06%)</title><rect x="90.8207%" y="661" width="0.0618%" height="15" fill="rgb(241,220,38)" fg:x="470067" fg:w="320"/><text x="91.0707%" y="671.50"></text></g><g><title>psi_group_change (252 samples, 0.05%)</title><rect x="90.8338%" y="645" width="0.0487%" height="15" fill="rgb(244,52,35)" fg:x="470135" fg:w="252"/><text x="91.0838%" y="655.50"></text></g><g><title>record_times (59 samples, 0.01%)</title><rect x="90.8711%" y="629" width="0.0114%" height="15" fill="rgb(246,42,46)" fg:x="470328" fg:w="59"/><text x="91.1211%" y="639.50"></text></g><g><title>__schedule (15,230 samples, 2.94%)</title><rect x="87.9535%" y="677" width="2.9426%" height="15" fill="rgb(205,184,13)" fg:x="455227" fg:w="15230"/><text x="88.2035%" y="687.50">__..</text></g><g><title>futex_wait_queue_me (15,407 samples, 2.98%)</title><rect x="87.9195%" y="709" width="2.9768%" height="15" fill="rgb(209,48,36)" fg:x="455051" fg:w="15407"/><text x="88.1695%" y="719.50">fut..</text></g><g><title>schedule (15,274 samples, 2.95%)</title><rect x="87.9452%" y="693" width="2.9511%" height="15" fill="rgb(244,34,51)" fg:x="455184" fg:w="15274"/><text x="88.1952%" y="703.50">sch..</text></g><g><title>futex_wait (15,641 samples, 3.02%)</title><rect x="87.9038%" y="725" width="3.0220%" height="15" fill="rgb(221,107,33)" fg:x="454970" fg:w="15641"/><text x="88.1538%" y="735.50">fut..</text></g><g><title>futex_wait_setup (153 samples, 0.03%)</title><rect x="90.8962%" y="709" width="0.0296%" height="15" fill="rgb(224,203,12)" fg:x="470458" fg:w="153"/><text x="91.1462%" y="719.50"></text></g><g><title>select_task_rq_fair (60 samples, 0.01%)</title><rect x="90.9559%" y="677" width="0.0116%" height="15" fill="rgb(230,215,18)" fg:x="470767" fg:w="60"/><text x="91.2059%" y="687.50"></text></g><g><title>enqueue_task_fair (85 samples, 0.02%)</title><rect x="90.9697%" y="661" width="0.0164%" height="15" fill="rgb(206,185,35)" fg:x="470838" fg:w="85"/><text x="91.2197%" y="671.50"></text></g><g><title>enqueue_entity (73 samples, 0.01%)</title><rect x="90.9720%" y="645" width="0.0141%" height="15" fill="rgb(228,140,34)" fg:x="470850" fg:w="73"/><text x="91.2220%" y="655.50"></text></g><g><title>ttwu_do_activate (176 samples, 0.03%)</title><rect x="90.9689%" y="677" width="0.0340%" height="15" fill="rgb(208,93,13)" fg:x="470834" fg:w="176"/><text x="91.2189%" y="687.50"></text></g><g><title>psi_task_change (87 samples, 0.02%)</title><rect x="90.9861%" y="661" width="0.0168%" height="15" fill="rgb(221,193,39)" fg:x="470923" fg:w="87"/><text x="91.2361%" y="671.50"></text></g><g><title>psi_group_change (80 samples, 0.02%)</title><rect x="90.9874%" y="645" width="0.0155%" height="15" fill="rgb(241,132,34)" fg:x="470930" fg:w="80"/><text x="91.2374%" y="655.50"></text></g><g><title>__x64_sys_futex (16,147 samples, 3.12%)</title><rect x="87.8886%" y="757" width="3.1197%" height="15" fill="rgb(221,141,10)" fg:x="454891" fg:w="16147"/><text x="88.1386%" y="767.50">__x..</text></g><g><title>do_futex (16,114 samples, 3.11%)</title><rect x="87.8949%" y="741" width="3.1134%" height="15" fill="rgb(226,90,31)" fg:x="454924" fg:w="16114"/><text x="88.1449%" y="751.50">do_..</text></g><g><title>futex_wake (427 samples, 0.08%)</title><rect x="90.9258%" y="725" width="0.0825%" height="15" fill="rgb(243,75,5)" fg:x="470611" fg:w="427"/><text x="91.1758%" y="735.50"></text></g><g><title>wake_up_q (343 samples, 0.07%)</title><rect x="90.9420%" y="709" width="0.0663%" height="15" fill="rgb(227,156,21)" fg:x="470695" fg:w="343"/><text x="91.1920%" y="719.50"></text></g><g><title>try_to_wake_up (334 samples, 0.06%)</title><rect x="90.9438%" y="693" width="0.0645%" height="15" fill="rgb(250,195,8)" fg:x="470704" fg:w="334"/><text x="91.1938%" y="703.50"></text></g><g><title>__split_vma (64 samples, 0.01%)</title><rect x="91.0185%" y="709" width="0.0124%" height="15" fill="rgb(220,134,5)" fg:x="471091" fg:w="64"/><text x="91.2685%" y="719.50"></text></g><g><title>flush_tlb_mm_range (59 samples, 0.01%)</title><rect x="91.0467%" y="677" width="0.0114%" height="15" fill="rgb(246,106,34)" fg:x="471237" fg:w="59"/><text x="91.2967%" y="687.50"></text></g><g><title>free_unref_page_list (64 samples, 0.01%)</title><rect x="91.0719%" y="661" width="0.0124%" height="15" fill="rgb(205,1,4)" fg:x="471367" fg:w="64"/><text x="91.3219%" y="671.50"></text></g><g><title>tlb_finish_mmu (219 samples, 0.04%)</title><rect x="91.0465%" y="693" width="0.0423%" height="15" fill="rgb(224,151,29)" fg:x="471236" fg:w="219"/><text x="91.2965%" y="703.50"></text></g><g><title>release_pages (151 samples, 0.03%)</title><rect x="91.0597%" y="677" width="0.0292%" height="15" fill="rgb(251,196,0)" fg:x="471304" fg:w="151"/><text x="91.3097%" y="687.50"></text></g><g><title>unmap_region (393 samples, 0.08%)</title><rect x="91.0352%" y="709" width="0.0759%" height="15" fill="rgb(212,127,0)" fg:x="471177" fg:w="393"/><text x="91.2852%" y="719.50"></text></g><g><title>unmap_vmas (114 samples, 0.02%)</title><rect x="91.0891%" y="693" width="0.0220%" height="15" fill="rgb(236,71,53)" fg:x="471456" fg:w="114"/><text x="91.3391%" y="703.50"></text></g><g><title>unmap_page_range (112 samples, 0.02%)</title><rect x="91.0894%" y="677" width="0.0216%" height="15" fill="rgb(227,99,0)" fg:x="471458" fg:w="112"/><text x="91.3394%" y="687.50"></text></g><g><title>__do_munmap (487 samples, 0.09%)</title><rect x="91.0174%" y="725" width="0.0941%" height="15" fill="rgb(239,89,21)" fg:x="471085" fg:w="487"/><text x="91.2674%" y="735.50"></text></g><g><title>__vm_munmap (490 samples, 0.09%)</title><rect x="91.0174%" y="741" width="0.0947%" height="15" fill="rgb(243,122,19)" fg:x="471085" fg:w="490"/><text x="91.2674%" y="751.50"></text></g><g><title>__x64_sys_munmap (494 samples, 0.10%)</title><rect x="91.0172%" y="757" width="0.0954%" height="15" fill="rgb(229,192,45)" fg:x="471084" fg:w="494"/><text x="91.2672%" y="767.50"></text></g><g><title>do_filp_open (128 samples, 0.02%)</title><rect x="91.1136%" y="725" width="0.0247%" height="15" fill="rgb(235,165,35)" fg:x="471583" fg:w="128"/><text x="91.3636%" y="735.50"></text></g><g><title>path_openat (127 samples, 0.02%)</title><rect x="91.1138%" y="709" width="0.0245%" height="15" fill="rgb(253,202,0)" fg:x="471584" fg:w="127"/><text x="91.3638%" y="719.50"></text></g><g><title>__x64_sys_open (138 samples, 0.03%)</title><rect x="91.1132%" y="757" width="0.0267%" height="15" fill="rgb(235,51,20)" fg:x="471581" fg:w="138"/><text x="91.3632%" y="767.50"></text></g><g><title>do_sys_openat2 (138 samples, 0.03%)</title><rect x="91.1132%" y="741" width="0.0267%" height="15" fill="rgb(218,95,46)" fg:x="471581" fg:w="138"/><text x="91.3632%" y="751.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="91.1727%" y="709" width="0.0102%" height="15" fill="rgb(212,81,10)" fg:x="471889" fg:w="53"/><text x="91.4227%" y="719.50"></text></g><g><title>__alloc_fd (189 samples, 0.04%)</title><rect x="91.1532%" y="725" width="0.0365%" height="15" fill="rgb(240,59,0)" fg:x="471788" fg:w="189"/><text x="91.4032%" y="735.50"></text></g><g><title>__fd_install (64 samples, 0.01%)</title><rect x="91.1897%" y="725" width="0.0124%" height="15" fill="rgb(212,191,42)" fg:x="471977" fg:w="64"/><text x="91.4397%" y="735.50"></text></g><g><title>build_open_flags (61 samples, 0.01%)</title><rect x="91.2092%" y="725" width="0.0118%" height="15" fill="rgb(233,140,3)" fg:x="472078" fg:w="61"/><text x="91.4592%" y="735.50"></text></g><g><title>__slab_alloc (159 samples, 0.03%)</title><rect x="91.3217%" y="645" width="0.0307%" height="15" fill="rgb(215,69,23)" fg:x="472660" fg:w="159"/><text x="91.5717%" y="655.50"></text></g><g><title>___slab_alloc (148 samples, 0.03%)</title><rect x="91.3238%" y="629" width="0.0286%" height="15" fill="rgb(240,202,20)" fg:x="472671" fg:w="148"/><text x="91.5738%" y="639.50"></text></g><g><title>__mod_memcg_lruvec_state (86 samples, 0.02%)</title><rect x="91.4131%" y="629" width="0.0166%" height="15" fill="rgb(209,146,50)" fg:x="473133" fg:w="86"/><text x="91.6631%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (57 samples, 0.01%)</title><rect x="91.4187%" y="613" width="0.0110%" height="15" fill="rgb(253,102,54)" fg:x="473162" fg:w="57"/><text x="91.6687%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (423 samples, 0.08%)</title><rect x="91.3528%" y="645" width="0.0817%" height="15" fill="rgb(250,173,47)" fg:x="472821" fg:w="423"/><text x="91.6028%" y="655.50"></text></g><g><title>memset_erms (74 samples, 0.01%)</title><rect x="91.4345%" y="645" width="0.0143%" height="15" fill="rgb(232,142,7)" fg:x="473244" fg:w="74"/><text x="91.6845%" y="655.50"></text></g><g><title>get_obj_cgroup_from_current (249 samples, 0.05%)</title><rect x="91.4583%" y="629" width="0.0481%" height="15" fill="rgb(230,157,47)" fg:x="473367" fg:w="249"/><text x="91.7083%" y="639.50"></text></g><g><title>obj_cgroup_charge (121 samples, 0.02%)</title><rect x="91.5064%" y="629" width="0.0234%" height="15" fill="rgb(214,177,35)" fg:x="473616" fg:w="121"/><text x="91.7564%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,265 samples, 0.24%)</title><rect x="91.2857%" y="661" width="0.2444%" height="15" fill="rgb(234,119,46)" fg:x="472474" fg:w="1265"/><text x="91.5357%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (416 samples, 0.08%)</title><rect x="91.4498%" y="645" width="0.0804%" height="15" fill="rgb(241,180,50)" fg:x="473323" fg:w="416"/><text x="91.6998%" y="655.50"></text></g><g><title>apparmor_file_alloc_security (146 samples, 0.03%)</title><rect x="91.5350%" y="645" width="0.0282%" height="15" fill="rgb(221,54,25)" fg:x="473764" fg:w="146"/><text x="91.7850%" y="655.50"></text></g><g><title>memset_erms (67 samples, 0.01%)</title><rect x="91.5841%" y="629" width="0.0129%" height="15" fill="rgb(209,157,44)" fg:x="474018" fg:w="67"/><text x="91.8341%" y="639.50"></text></g><g><title>__alloc_file (1,761 samples, 0.34%)</title><rect x="91.2629%" y="677" width="0.3402%" height="15" fill="rgb(246,115,41)" fg:x="472356" fg:w="1761"/><text x="91.5129%" y="687.50"></text></g><g><title>security_file_alloc (378 samples, 0.07%)</title><rect x="91.5301%" y="661" width="0.0730%" height="15" fill="rgb(229,86,1)" fg:x="473739" fg:w="378"/><text x="91.7801%" y="671.50"></text></g><g><title>kmem_cache_alloc (207 samples, 0.04%)</title><rect x="91.5632%" y="645" width="0.0400%" height="15" fill="rgb(240,108,53)" fg:x="473910" fg:w="207"/><text x="91.8132%" y="655.50"></text></g><g><title>alloc_empty_file (1,796 samples, 0.35%)</title><rect x="91.2583%" y="693" width="0.3470%" height="15" fill="rgb(227,134,2)" fg:x="472332" fg:w="1796"/><text x="91.5083%" y="703.50"></text></g><g><title>errseq_sample (84 samples, 0.02%)</title><rect x="91.6610%" y="677" width="0.0162%" height="15" fill="rgb(213,129,25)" fg:x="474416" fg:w="84"/><text x="91.9110%" y="687.50"></text></g><g><title>lockref_get (86 samples, 0.02%)</title><rect x="91.6801%" y="677" width="0.0166%" height="15" fill="rgb(226,35,21)" fg:x="474515" fg:w="86"/><text x="91.9301%" y="687.50"></text></g><g><title>apparmor_file_open (123 samples, 0.02%)</title><rect x="91.7033%" y="661" width="0.0238%" height="15" fill="rgb(208,129,26)" fg:x="474635" fg:w="123"/><text x="91.9533%" y="671.50"></text></g><g><title>__srcu_read_lock (60 samples, 0.01%)</title><rect x="91.7421%" y="645" width="0.0116%" height="15" fill="rgb(224,83,6)" fg:x="474836" fg:w="60"/><text x="91.9921%" y="655.50"></text></g><g><title>__srcu_read_unlock (64 samples, 0.01%)</title><rect x="91.7537%" y="645" width="0.0124%" height="15" fill="rgb(227,52,39)" fg:x="474896" fg:w="64"/><text x="92.0037%" y="655.50"></text></g><g><title>tomoyo_check_open_permission (286 samples, 0.06%)</title><rect x="91.7270%" y="661" width="0.0553%" height="15" fill="rgb(241,30,17)" fg:x="474758" fg:w="286"/><text x="91.9770%" y="671.50"></text></g><g><title>tomoyo_init_request_info (67 samples, 0.01%)</title><rect x="91.7693%" y="645" width="0.0129%" height="15" fill="rgb(246,186,42)" fg:x="474977" fg:w="67"/><text x="92.0193%" y="655.50"></text></g><g><title>security_file_open (449 samples, 0.09%)</title><rect x="91.6980%" y="677" width="0.0868%" height="15" fill="rgb(221,169,15)" fg:x="474608" fg:w="449"/><text x="91.9480%" y="687.50"></text></g><g><title>do_dentry_open (928 samples, 0.18%)</title><rect x="91.6067%" y="693" width="0.1793%" height="15" fill="rgb(235,108,21)" fg:x="474135" fg:w="928"/><text x="91.8567%" y="703.50"></text></g><g><title>btrfs_dentry_delete (67 samples, 0.01%)</title><rect x="91.7943%" y="677" width="0.0129%" height="15" fill="rgb(219,148,30)" fg:x="475106" fg:w="67"/><text x="92.0443%" y="687.50"></text></g><g><title>lockref_put_or_lock (80 samples, 0.02%)</title><rect x="91.8072%" y="677" width="0.0155%" height="15" fill="rgb(220,109,5)" fg:x="475173" fg:w="80"/><text x="92.0572%" y="687.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="91.8093%" y="661" width="0.0133%" height="15" fill="rgb(213,203,48)" fg:x="475184" fg:w="69"/><text x="92.0593%" y="671.50"></text></g><g><title>dput (183 samples, 0.04%)</title><rect x="91.7877%" y="693" width="0.0354%" height="15" fill="rgb(244,71,33)" fg:x="475072" fg:w="183"/><text x="92.0377%" y="703.50"></text></g><g><title>btrfs_permission (107 samples, 0.02%)</title><rect x="92.3047%" y="661" width="0.0207%" height="15" fill="rgb(209,23,2)" fg:x="477748" fg:w="107"/><text x="92.5547%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,532 samples, 0.30%)</title><rect x="92.1515%" y="677" width="0.2960%" height="15" fill="rgb(219,97,7)" fg:x="476955" fg:w="1532"/><text x="92.4015%" y="687.50"></text></g><g><title>generic_permission (632 samples, 0.12%)</title><rect x="92.3254%" y="661" width="0.1221%" height="15" fill="rgb(216,161,23)" fg:x="477855" fg:w="632"/><text x="92.5754%" y="671.50"></text></g><g><title>security_inode_permission (208 samples, 0.04%)</title><rect x="92.4475%" y="677" width="0.0402%" height="15" fill="rgb(207,45,42)" fg:x="478487" fg:w="208"/><text x="92.6975%" y="687.50"></text></g><g><title>lockref_put_or_lock (92 samples, 0.02%)</title><rect x="92.6206%" y="645" width="0.0178%" height="15" fill="rgb(241,61,4)" fg:x="479383" fg:w="92"/><text x="92.8706%" y="655.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.01%)</title><rect x="92.6237%" y="629" width="0.0147%" height="15" fill="rgb(236,170,1)" fg:x="479399" fg:w="76"/><text x="92.8737%" y="639.50"></text></g><g><title>dput (153 samples, 0.03%)</title><rect x="92.6090%" y="661" width="0.0296%" height="15" fill="rgb(239,72,5)" fg:x="479323" fg:w="153"/><text x="92.8590%" y="671.50"></text></g><g><title>_raw_spin_lock (847 samples, 0.16%)</title><rect x="92.9350%" y="629" width="0.1636%" height="15" fill="rgb(214,13,50)" fg:x="481010" fg:w="847"/><text x="93.1850%" y="639.50"></text></g><g><title>__d_lookup (1,675 samples, 0.32%)</title><rect x="92.7808%" y="645" width="0.3236%" height="15" fill="rgb(224,88,9)" fg:x="480212" fg:w="1675"/><text x="93.0308%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,452 samples, 0.28%)</title><rect x="93.1044%" y="645" width="0.2805%" height="15" fill="rgb(238,192,34)" fg:x="481887" fg:w="1452"/><text x="93.3544%" y="655.50"></text></g><g><title>lookup_fast (3,867 samples, 0.75%)</title><rect x="92.6386%" y="661" width="0.7471%" height="15" fill="rgb(217,203,50)" fg:x="479476" fg:w="3867"/><text x="92.8886%" y="671.50"></text></g><g><title>page_put_link (52 samples, 0.01%)</title><rect x="93.3904%" y="661" width="0.0100%" height="15" fill="rgb(241,123,32)" fg:x="483367" fg:w="52"/><text x="93.6404%" y="671.50"></text></g><g><title>__traverse_mounts (93 samples, 0.02%)</title><rect x="93.5872%" y="645" width="0.0180%" height="15" fill="rgb(248,151,39)" fg:x="484386" fg:w="93"/><text x="93.8372%" y="655.50"></text></g><g><title>atime_needs_update (54 samples, 0.01%)</title><rect x="93.6060%" y="645" width="0.0104%" height="15" fill="rgb(208,89,6)" fg:x="484483" fg:w="54"/><text x="93.8560%" y="655.50"></text></g><g><title>_cond_resched (112 samples, 0.02%)</title><rect x="93.6525%" y="629" width="0.0216%" height="15" fill="rgb(254,43,26)" fg:x="484724" fg:w="112"/><text x="93.9025%" y="639.50"></text></g><g><title>rcu_all_qs (52 samples, 0.01%)</title><rect x="93.6641%" y="613" width="0.0100%" height="15" fill="rgb(216,158,13)" fg:x="484784" fg:w="52"/><text x="93.9141%" y="623.50"></text></g><g><title>dput (1,037 samples, 0.20%)</title><rect x="93.6164%" y="645" width="0.2004%" height="15" fill="rgb(212,47,37)" fg:x="484537" fg:w="1037"/><text x="93.8664%" y="655.50"></text></g><g><title>lockref_put_or_lock (737 samples, 0.14%)</title><rect x="93.6744%" y="629" width="0.1424%" height="15" fill="rgb(254,16,10)" fg:x="484837" fg:w="737"/><text x="93.9244%" y="639.50"></text></g><g><title>dput (107 samples, 0.02%)</title><rect x="93.8214%" y="629" width="0.0207%" height="15" fill="rgb(223,228,16)" fg:x="485598" fg:w="107"/><text x="94.0714%" y="639.50"></text></g><g><title>lockref_put_or_lock (84 samples, 0.02%)</title><rect x="93.8258%" y="613" width="0.0162%" height="15" fill="rgb(249,108,50)" fg:x="485621" fg:w="84"/><text x="94.0758%" y="623.50"></text></g><g><title>lockref_get (59 samples, 0.01%)</title><rect x="93.8421%" y="629" width="0.0114%" height="15" fill="rgb(208,220,5)" fg:x="485705" fg:w="59"/><text x="94.0921%" y="639.50"></text></g><g><title>nd_jump_root (244 samples, 0.05%)</title><rect x="93.8170%" y="645" width="0.0471%" height="15" fill="rgb(217,89,48)" fg:x="485575" fg:w="244"/><text x="94.0670%" y="655.50"></text></g><g><title>do_read_cache_page (192 samples, 0.04%)</title><rect x="93.8687%" y="629" width="0.0371%" height="15" fill="rgb(212,113,41)" fg:x="485843" fg:w="192"/><text x="94.1187%" y="639.50"></text></g><g><title>pagecache_get_page (156 samples, 0.03%)</title><rect x="93.8757%" y="613" width="0.0301%" height="15" fill="rgb(231,127,5)" fg:x="485879" fg:w="156"/><text x="94.1257%" y="623.50"></text></g><g><title>find_get_entry (117 samples, 0.02%)</title><rect x="93.8832%" y="597" width="0.0226%" height="15" fill="rgb(217,141,17)" fg:x="485918" fg:w="117"/><text x="94.1332%" y="607.50"></text></g><g><title>page_get_link (217 samples, 0.04%)</title><rect x="93.8641%" y="645" width="0.0419%" height="15" fill="rgb(245,125,54)" fg:x="485819" fg:w="217"/><text x="94.1141%" y="655.50"></text></g><g><title>__mnt_want_write (65 samples, 0.01%)</title><rect x="93.9132%" y="629" width="0.0126%" height="15" fill="rgb(248,125,3)" fg:x="486073" fg:w="65"/><text x="94.1632%" y="639.50"></text></g><g><title>touch_atime (133 samples, 0.03%)</title><rect x="93.9080%" y="645" width="0.0257%" height="15" fill="rgb(236,119,51)" fg:x="486046" fg:w="133"/><text x="94.1580%" y="655.50"></text></g><g><title>__legitimize_mnt (100 samples, 0.02%)</title><rect x="93.9412%" y="613" width="0.0193%" height="15" fill="rgb(239,99,8)" fg:x="486218" fg:w="100"/><text x="94.1912%" y="623.50"></text></g><g><title>__legitimize_path (258 samples, 0.05%)</title><rect x="93.9387%" y="629" width="0.0498%" height="15" fill="rgb(224,228,4)" fg:x="486205" fg:w="258"/><text x="94.1887%" y="639.50"></text></g><g><title>lockref_get_not_dead (145 samples, 0.03%)</title><rect x="93.9605%" y="613" width="0.0280%" height="15" fill="rgb(220,131,45)" fg:x="486318" fg:w="145"/><text x="94.2105%" y="623.50"></text></g><g><title>__legitimize_mnt (153 samples, 0.03%)</title><rect x="93.9992%" y="597" width="0.0296%" height="15" fill="rgb(215,62,5)" fg:x="486518" fg:w="153"/><text x="94.2492%" y="607.50"></text></g><g><title>legitimize_links (336 samples, 0.06%)</title><rect x="93.9885%" y="629" width="0.0649%" height="15" fill="rgb(253,12,24)" fg:x="486463" fg:w="336"/><text x="94.2385%" y="639.50"></text></g><g><title>__legitimize_path (314 samples, 0.06%)</title><rect x="93.9928%" y="613" width="0.0607%" height="15" fill="rgb(248,120,50)" fg:x="486485" fg:w="314"/><text x="94.2428%" y="623.50"></text></g><g><title>lockref_get_not_dead (128 samples, 0.02%)</title><rect x="94.0287%" y="597" width="0.0247%" height="15" fill="rgb(245,194,10)" fg:x="486671" fg:w="128"/><text x="94.2787%" y="607.50"></text></g><g><title>link_path_walk.part.0 (11,556 samples, 2.23%)</title><rect x="91.8231%" y="693" width="2.2327%" height="15" fill="rgb(241,149,38)" fg:x="475255" fg:w="11556"/><text x="92.0731%" y="703.50">l..</text></g><g><title>walk_component (8,116 samples, 1.57%)</title><rect x="92.4877%" y="677" width="1.5681%" height="15" fill="rgb(219,215,7)" fg:x="478695" fg:w="8116"/><text x="92.7377%" y="687.50"></text></g><g><title>step_into (3,392 samples, 0.66%)</title><rect x="93.4004%" y="661" width="0.6554%" height="15" fill="rgb(208,120,31)" fg:x="483419" fg:w="3392"/><text x="93.6504%" y="671.50"></text></g><g><title>try_to_unlazy (632 samples, 0.12%)</title><rect x="93.9337%" y="645" width="0.1221%" height="15" fill="rgb(244,30,8)" fg:x="486179" fg:w="632"/><text x="94.1837%" y="655.50"></text></g><g><title>_raw_spin_lock (129 samples, 0.02%)</title><rect x="94.1765%" y="661" width="0.0249%" height="15" fill="rgb(238,35,44)" fg:x="487436" fg:w="129"/><text x="94.4265%" y="671.50"></text></g><g><title>__d_lookup (708 samples, 0.14%)</title><rect x="94.0668%" y="677" width="0.1368%" height="15" fill="rgb(243,218,37)" fg:x="486868" fg:w="708"/><text x="94.3168%" y="687.50"></text></g><g><title>lookup_fast (1,375 samples, 0.27%)</title><rect x="94.0558%" y="693" width="0.2657%" height="15" fill="rgb(218,169,10)" fg:x="486811" fg:w="1375"/><text x="94.3058%" y="703.50"></text></g><g><title>__d_lookup_rcu (610 samples, 0.12%)</title><rect x="94.2036%" y="677" width="0.1179%" height="15" fill="rgb(221,144,10)" fg:x="487576" fg:w="610"/><text x="94.4536%" y="687.50"></text></g><g><title>inode_permission.part.0 (197 samples, 0.04%)</title><rect x="94.3608%" y="677" width="0.0381%" height="15" fill="rgb(226,41,38)" fg:x="488390" fg:w="197"/><text x="94.6108%" y="687.50"></text></g><g><title>may_open (412 samples, 0.08%)</title><rect x="94.3214%" y="693" width="0.0796%" height="15" fill="rgb(228,3,1)" fg:x="488186" fg:w="412"/><text x="94.5714%" y="703.50"></text></g><g><title>page_put_link (57 samples, 0.01%)</title><rect x="94.4068%" y="693" width="0.0110%" height="15" fill="rgb(209,129,12)" fg:x="488628" fg:w="57"/><text x="94.6568%" y="703.50"></text></g><g><title>__fget_light (158 samples, 0.03%)</title><rect x="94.4310%" y="677" width="0.0305%" height="15" fill="rgb(213,136,33)" fg:x="488753" fg:w="158"/><text x="94.6810%" y="687.50"></text></g><g><title>__fget_files (145 samples, 0.03%)</title><rect x="94.4335%" y="661" width="0.0280%" height="15" fill="rgb(209,181,29)" fg:x="488766" fg:w="145"/><text x="94.6835%" y="671.50"></text></g><g><title>path_init (290 samples, 0.06%)</title><rect x="94.4178%" y="693" width="0.0560%" height="15" fill="rgb(234,173,18)" fg:x="488685" fg:w="290"/><text x="94.6678%" y="703.50"></text></g><g><title>fput_many (61 samples, 0.01%)</title><rect x="94.4621%" y="677" width="0.0118%" height="15" fill="rgb(227,73,47)" fg:x="488914" fg:w="61"/><text x="94.7121%" y="687.50"></text></g><g><title>atime_needs_update (213 samples, 0.04%)</title><rect x="94.5790%" y="677" width="0.0412%" height="15" fill="rgb(234,9,34)" fg:x="489519" fg:w="213"/><text x="94.8290%" y="687.50"></text></g><g><title>dput (101 samples, 0.02%)</title><rect x="94.6201%" y="677" width="0.0195%" height="15" fill="rgb(235,172,15)" fg:x="489732" fg:w="101"/><text x="94.8701%" y="687.50"></text></g><g><title>lockref_put_or_lock (79 samples, 0.02%)</title><rect x="94.6244%" y="661" width="0.0153%" height="15" fill="rgb(245,61,2)" fg:x="489754" fg:w="79"/><text x="94.8744%" y="671.50"></text></g><g><title>nd_jump_root (60 samples, 0.01%)</title><rect x="94.6396%" y="677" width="0.0116%" height="15" fill="rgb(238,39,47)" fg:x="489833" fg:w="60"/><text x="94.8896%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (88 samples, 0.02%)</title><rect x="94.6646%" y="645" width="0.0170%" height="15" fill="rgb(234,37,24)" fg:x="489962" fg:w="88"/><text x="94.9146%" y="655.50"></text></g><g><title>get_page_from_freelist (78 samples, 0.02%)</title><rect x="94.6665%" y="629" width="0.0151%" height="15" fill="rgb(248,223,24)" fg:x="489972" fg:w="78"/><text x="94.9165%" y="639.50"></text></g><g><title>__add_to_page_cache_locked (72 samples, 0.01%)</title><rect x="94.6821%" y="629" width="0.0139%" height="15" fill="rgb(223,12,15)" fg:x="490053" fg:w="72"/><text x="94.9321%" y="639.50"></text></g><g><title>add_to_page_cache_lru (111 samples, 0.02%)</title><rect x="94.6816%" y="645" width="0.0214%" height="15" fill="rgb(249,6,3)" fg:x="490050" fg:w="111"/><text x="94.9316%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (56 samples, 0.01%)</title><rect x="94.7563%" y="565" width="0.0108%" height="15" fill="rgb(237,105,33)" fg:x="490437" fg:w="56"/><text x="95.0063%" y="575.50"></text></g><g><title>find_extent_buffer (62 samples, 0.01%)</title><rect x="94.7730%" y="549" width="0.0120%" height="15" fill="rgb(252,208,35)" fg:x="490523" fg:w="62"/><text x="95.0230%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (98 samples, 0.02%)</title><rect x="94.7672%" y="565" width="0.0189%" height="15" fill="rgb(215,181,35)" fg:x="490493" fg:w="98"/><text x="95.0172%" y="575.50"></text></g><g><title>btrfs_lookup_file_extent (200 samples, 0.04%)</title><rect x="94.7486%" y="597" width="0.0386%" height="15" fill="rgb(246,212,3)" fg:x="490397" fg:w="200"/><text x="94.9986%" y="607.50"></text></g><g><title>btrfs_search_slot (198 samples, 0.04%)</title><rect x="94.7490%" y="581" width="0.0383%" height="15" fill="rgb(247,156,24)" fg:x="490399" fg:w="198"/><text x="94.9990%" y="591.50"></text></g><g><title>btrfs_get_extent (462 samples, 0.09%)</title><rect x="94.7206%" y="613" width="0.0893%" height="15" fill="rgb(248,9,31)" fg:x="490252" fg:w="462"/><text x="94.9706%" y="623.50"></text></g><g><title>btrfs_do_readpage (567 samples, 0.11%)</title><rect x="94.7053%" y="629" width="0.1095%" height="15" fill="rgb(234,26,45)" fg:x="490173" fg:w="567"/><text x="94.9553%" y="639.50"></text></g><g><title>btrfs_readpage (634 samples, 0.12%)</title><rect x="94.7044%" y="645" width="0.1225%" height="15" fill="rgb(249,11,32)" fg:x="490168" fg:w="634"/><text x="94.9544%" y="655.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (62 samples, 0.01%)</title><rect x="94.8149%" y="629" width="0.0120%" height="15" fill="rgb(249,162,33)" fg:x="490740" fg:w="62"/><text x="95.0649%" y="639.50"></text></g><g><title>do_read_cache_page (856 samples, 0.17%)</title><rect x="94.6634%" y="661" width="0.1654%" height="15" fill="rgb(232,4,32)" fg:x="489956" fg:w="856"/><text x="94.9134%" y="671.50"></text></g><g><title>pagecache_get_page (285 samples, 0.06%)</title><rect x="94.8288%" y="661" width="0.0551%" height="15" fill="rgb(212,5,45)" fg:x="490812" fg:w="285"/><text x="95.0788%" y="671.50"></text></g><g><title>find_get_entry (258 samples, 0.05%)</title><rect x="94.8340%" y="645" width="0.0498%" height="15" fill="rgb(227,95,13)" fg:x="490839" fg:w="258"/><text x="95.0840%" y="655.50"></text></g><g><title>xas_load (75 samples, 0.01%)</title><rect x="94.8694%" y="629" width="0.0145%" height="15" fill="rgb(223,205,10)" fg:x="491022" fg:w="75"/><text x="95.1194%" y="639.50"></text></g><g><title>xas_start (68 samples, 0.01%)</title><rect x="94.8707%" y="613" width="0.0131%" height="15" fill="rgb(222,178,8)" fg:x="491029" fg:w="68"/><text x="95.1207%" y="623.50"></text></g><g><title>page_get_link (1,205 samples, 0.23%)</title><rect x="94.6512%" y="677" width="0.2328%" height="15" fill="rgb(216,13,22)" fg:x="489893" fg:w="1205"/><text x="94.9012%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (56 samples, 0.01%)</title><rect x="94.9076%" y="613" width="0.0108%" height="15" fill="rgb(240,167,12)" fg:x="491220" fg:w="56"/><text x="95.1576%" y="623.50"></text></g><g><title>btrfs_get_delayed_node (55 samples, 0.01%)</title><rect x="94.9078%" y="597" width="0.0106%" height="15" fill="rgb(235,68,35)" fg:x="491221" fg:w="55"/><text x="95.1578%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (144 samples, 0.03%)</title><rect x="94.8954%" y="629" width="0.0278%" height="15" fill="rgb(253,40,27)" fg:x="491157" fg:w="144"/><text x="95.1454%" y="639.50"></text></g><g><title>btrfs_update_inode (152 samples, 0.03%)</title><rect x="94.8945%" y="645" width="0.0294%" height="15" fill="rgb(214,19,28)" fg:x="491152" fg:w="152"/><text x="95.1445%" y="655.50"></text></g><g><title>btrfs_dirty_inode (227 samples, 0.04%)</title><rect x="94.8875%" y="661" width="0.0439%" height="15" fill="rgb(210,167,45)" fg:x="491116" fg:w="227"/><text x="95.1375%" y="671.50"></text></g><g><title>touch_atime (253 samples, 0.05%)</title><rect x="94.8866%" y="677" width="0.0489%" height="15" fill="rgb(232,97,40)" fg:x="491111" fg:w="253"/><text x="95.1366%" y="687.50"></text></g><g><title>step_into (2,406 samples, 0.46%)</title><rect x="94.4746%" y="693" width="0.4649%" height="15" fill="rgb(250,35,23)" fg:x="488979" fg:w="2406"/><text x="94.7246%" y="703.50"></text></g><g><title>dput (170 samples, 0.03%)</title><rect x="94.9436%" y="677" width="0.0328%" height="15" fill="rgb(248,47,53)" fg:x="491406" fg:w="170"/><text x="95.1936%" y="687.50"></text></g><g><title>lockref_put_or_lock (122 samples, 0.02%)</title><rect x="94.9528%" y="661" width="0.0236%" height="15" fill="rgb(226,58,50)" fg:x="491454" fg:w="122"/><text x="95.2028%" y="671.50"></text></g><g><title>terminate_walk (244 samples, 0.05%)</title><rect x="94.9395%" y="693" width="0.0471%" height="15" fill="rgb(217,105,26)" fg:x="491385" fg:w="244"/><text x="95.1895%" y="703.50"></text></g><g><title>do_filp_open (19,497 samples, 3.77%)</title><rect x="91.2210%" y="725" width="3.7670%" height="15" fill="rgb(208,64,1)" fg:x="472139" fg:w="19497"/><text x="91.4710%" y="735.50">do_f..</text></g><g><title>path_openat (19,454 samples, 3.76%)</title><rect x="91.2293%" y="709" width="3.7587%" height="15" fill="rgb(214,80,1)" fg:x="472182" fg:w="19454"/><text x="91.4793%" y="719.50">path..</text></g><g><title>memset_erms (593 samples, 0.11%)</title><rect x="95.0465%" y="693" width="0.1146%" height="15" fill="rgb(206,175,26)" fg:x="491939" fg:w="593"/><text x="95.2965%" y="703.50"></text></g><g><title>kmem_cache_alloc (872 samples, 0.17%)</title><rect x="95.0098%" y="709" width="0.1685%" height="15" fill="rgb(235,156,37)" fg:x="491749" fg:w="872"/><text x="95.2598%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (89 samples, 0.02%)</title><rect x="95.1611%" y="693" width="0.0172%" height="15" fill="rgb(213,100,9)" fg:x="492532" fg:w="89"/><text x="95.4111%" y="703.50"></text></g><g><title>__check_heap_object (69 samples, 0.01%)</title><rect x="95.2314%" y="677" width="0.0133%" height="15" fill="rgb(241,15,13)" fg:x="492896" fg:w="69"/><text x="95.4814%" y="687.50"></text></g><g><title>__virt_addr_valid (149 samples, 0.03%)</title><rect x="95.2448%" y="677" width="0.0288%" height="15" fill="rgb(205,97,43)" fg:x="492965" fg:w="149"/><text x="95.4948%" y="687.50"></text></g><g><title>__check_object_size (268 samples, 0.05%)</title><rect x="95.2227%" y="693" width="0.0518%" height="15" fill="rgb(216,106,32)" fg:x="492851" fg:w="268"/><text x="95.4727%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,429 samples, 0.28%)</title><rect x="94.9988%" y="725" width="0.2761%" height="15" fill="rgb(226,200,8)" fg:x="491692" fg:w="1429"/><text x="95.2488%" y="735.50"></text></g><g><title>strncpy_from_user (500 samples, 0.10%)</title><rect x="95.1783%" y="709" width="0.0966%" height="15" fill="rgb(244,54,29)" fg:x="492621" fg:w="500"/><text x="95.4283%" y="719.50"></text></g><g><title>kmem_cache_free (207 samples, 0.04%)</title><rect x="95.2749%" y="725" width="0.0400%" height="15" fill="rgb(252,169,12)" fg:x="493121" fg:w="207"/><text x="95.5249%" y="735.50"></text></g><g><title>__x64_sys_openat (21,629 samples, 4.18%)</title><rect x="91.1399%" y="757" width="4.1789%" height="15" fill="rgb(231,199,11)" fg:x="471719" fg:w="21629"/><text x="91.3899%" y="767.50">__x64..</text></g><g><title>do_sys_openat2 (21,606 samples, 4.17%)</title><rect x="91.1443%" y="741" width="4.1745%" height="15" fill="rgb(233,191,18)" fg:x="471742" fg:w="21606"/><text x="91.3943%" y="751.50">do_sy..</text></g><g><title>__fget_light (657 samples, 0.13%)</title><rect x="95.4461%" y="725" width="0.1269%" height="15" fill="rgb(215,83,47)" fg:x="494007" fg:w="657"/><text x="95.6961%" y="735.50"></text></g><g><title>__fget_files (584 samples, 0.11%)</title><rect x="95.4602%" y="709" width="0.1128%" height="15" fill="rgb(251,67,19)" fg:x="494080" fg:w="584"/><text x="95.7102%" y="719.50"></text></g><g><title>_cond_resched (64 samples, 0.01%)</title><rect x="95.6435%" y="709" width="0.0124%" height="15" fill="rgb(240,7,20)" fg:x="495029" fg:w="64"/><text x="95.8935%" y="719.50"></text></g><g><title>__fdget_pos (1,334 samples, 0.26%)</title><rect x="95.3984%" y="741" width="0.2577%" height="15" fill="rgb(210,150,26)" fg:x="493760" fg:w="1334"/><text x="95.6484%" y="751.50"></text></g><g><title>mutex_lock (429 samples, 0.08%)</title><rect x="95.5732%" y="725" width="0.0829%" height="15" fill="rgb(228,75,42)" fg:x="494665" fg:w="429"/><text x="95.8232%" y="735.50"></text></g><g><title>fput_many (359 samples, 0.07%)</title><rect x="95.6605%" y="741" width="0.0694%" height="15" fill="rgb(237,134,48)" fg:x="495117" fg:w="359"/><text x="95.9105%" y="751.50"></text></g><g><title>mutex_unlock (378 samples, 0.07%)</title><rect x="95.7299%" y="741" width="0.0730%" height="15" fill="rgb(205,80,50)" fg:x="495476" fg:w="378"/><text x="95.9799%" y="751.50"></text></g><g><title>__fsnotify_parent (488 samples, 0.09%)</title><rect x="95.9212%" y="725" width="0.0943%" height="15" fill="rgb(217,74,48)" fg:x="496466" fg:w="488"/><text x="96.1712%" y="735.50"></text></g><g><title>btrfs_file_read_iter (75 samples, 0.01%)</title><rect x="96.0918%" y="709" width="0.0145%" height="15" fill="rgb(205,82,50)" fg:x="497349" fg:w="75"/><text x="96.3418%" y="719.50"></text></g><g><title>_cond_resched (87 samples, 0.02%)</title><rect x="96.3474%" y="693" width="0.0168%" height="15" fill="rgb(228,1,33)" fg:x="498672" fg:w="87"/><text x="96.5974%" y="703.50"></text></g><g><title>_cond_resched (82 samples, 0.02%)</title><rect x="96.4743%" y="677" width="0.0158%" height="15" fill="rgb(214,50,23)" fg:x="499329" fg:w="82"/><text x="96.7243%" y="687.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="97.2605%" y="613" width="0.0114%" height="15" fill="rgb(210,62,9)" fg:x="503398" fg:w="59"/><text x="97.5105%" y="623.50"></text></g><g><title>asm_exc_page_fault (175 samples, 0.03%)</title><rect x="97.2383%" y="661" width="0.0338%" height="15" fill="rgb(210,104,37)" fg:x="503283" fg:w="175"/><text x="97.4883%" y="671.50"></text></g><g><title>exc_page_fault (64 samples, 0.01%)</title><rect x="97.2597%" y="645" width="0.0124%" height="15" fill="rgb(232,104,43)" fg:x="503394" fg:w="64"/><text x="97.5097%" y="655.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.01%)</title><rect x="97.2599%" y="629" width="0.0122%" height="15" fill="rgb(244,52,6)" fg:x="503395" fg:w="63"/><text x="97.5099%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (4,057 samples, 0.78%)</title><rect x="96.4910%" y="677" width="0.7838%" height="15" fill="rgb(211,174,52)" fg:x="499415" fg:w="4057"/><text x="96.7410%" y="687.50"></text></g><g><title>copy_page_to_iter (4,750 samples, 0.92%)</title><rect x="96.3654%" y="693" width="0.9177%" height="15" fill="rgb(229,48,4)" fg:x="498765" fg:w="4750"/><text x="96.6154%" y="703.50"></text></g><g><title>pagecache_get_page (1,940 samples, 0.37%)</title><rect x="97.2910%" y="693" width="0.3748%" height="15" fill="rgb(205,155,16)" fg:x="503556" fg:w="1940"/><text x="97.5410%" y="703.50"></text></g><g><title>find_get_entry (1,681 samples, 0.32%)</title><rect x="97.3411%" y="677" width="0.3248%" height="15" fill="rgb(211,141,53)" fg:x="503815" fg:w="1681"/><text x="97.5911%" y="687.50"></text></g><g><title>xas_load (404 samples, 0.08%)</title><rect x="97.5878%" y="661" width="0.0781%" height="15" fill="rgb(240,148,11)" fg:x="505092" fg:w="404"/><text x="97.8378%" y="671.50"></text></g><g><title>xas_start (253 samples, 0.05%)</title><rect x="97.6170%" y="645" width="0.0489%" height="15" fill="rgb(214,45,23)" fg:x="505243" fg:w="253"/><text x="97.8670%" y="655.50"></text></g><g><title>generic_file_buffered_read (8,590 samples, 1.66%)</title><rect x="96.1063%" y="709" width="1.6597%" height="15" fill="rgb(248,74,26)" fg:x="497424" fg:w="8590"/><text x="96.3563%" y="719.50"></text></g><g><title>touch_atime (518 samples, 0.10%)</title><rect x="97.6659%" y="693" width="0.1001%" height="15" fill="rgb(218,121,16)" fg:x="505496" fg:w="518"/><text x="97.9159%" y="703.50"></text></g><g><title>atime_needs_update (396 samples, 0.08%)</title><rect x="97.6894%" y="677" width="0.0765%" height="15" fill="rgb(218,10,47)" fg:x="505618" fg:w="396"/><text x="97.9394%" y="687.50"></text></g><g><title>current_time (214 samples, 0.04%)</title><rect x="97.7246%" y="661" width="0.0413%" height="15" fill="rgb(227,99,14)" fg:x="505800" fg:w="214"/><text x="97.9746%" y="671.50"></text></g><g><title>ktime_get_coarse_real_ts64 (60 samples, 0.01%)</title><rect x="97.7543%" y="645" width="0.0116%" height="15" fill="rgb(229,83,46)" fg:x="505954" fg:w="60"/><text x="98.0043%" y="655.50"></text></g><g><title>new_sync_read (9,109 samples, 1.76%)</title><rect x="96.0162%" y="725" width="1.7599%" height="15" fill="rgb(228,25,1)" fg:x="496958" fg:w="9109"/><text x="96.2662%" y="735.50"></text></g><g><title>iov_iter_init (53 samples, 0.01%)</title><rect x="97.7659%" y="709" width="0.0102%" height="15" fill="rgb(252,190,15)" fg:x="506014" fg:w="53"/><text x="98.0159%" y="719.50"></text></g><g><title>rw_verify_area (93 samples, 0.02%)</title><rect x="97.7762%" y="725" width="0.0180%" height="15" fill="rgb(213,103,51)" fg:x="506067" fg:w="93"/><text x="98.0262%" y="735.50"></text></g><g><title>apparmor_file_permission (293 samples, 0.06%)</title><rect x="97.8262%" y="709" width="0.0566%" height="15" fill="rgb(220,38,44)" fg:x="506326" fg:w="293"/><text x="98.0762%" y="719.50"></text></g><g><title>aa_file_perm (153 samples, 0.03%)</title><rect x="97.8533%" y="693" width="0.0296%" height="15" fill="rgb(210,45,26)" fg:x="506466" fg:w="153"/><text x="98.1033%" y="703.50"></text></g><g><title>security_file_permission (461 samples, 0.09%)</title><rect x="97.7941%" y="725" width="0.0891%" height="15" fill="rgb(205,95,48)" fg:x="506160" fg:w="461"/><text x="98.0441%" y="735.50"></text></g><g><title>ksys_read (13,104 samples, 2.53%)</title><rect x="95.3516%" y="757" width="2.5318%" height="15" fill="rgb(225,179,37)" fg:x="493518" fg:w="13104"/><text x="95.6016%" y="767.50">ks..</text></g><g><title>vfs_read (10,768 samples, 2.08%)</title><rect x="95.8029%" y="741" width="2.0805%" height="15" fill="rgb(230,209,3)" fg:x="495854" fg:w="10768"/><text x="96.0529%" y="751.50">v..</text></g><g><title>syscall_enter_from_user_mode (130 samples, 0.03%)</title><rect x="97.8850%" y="757" width="0.0251%" height="15" fill="rgb(248,12,46)" fg:x="506630" fg:w="130"/><text x="98.1350%" y="767.50"></text></g><g><title>perf_iterate_sb (72 samples, 0.01%)</title><rect x="97.9240%" y="693" width="0.0139%" height="15" fill="rgb(234,18,0)" fg:x="506832" fg:w="72"/><text x="98.1740%" y="703.50"></text></g><g><title>perf_iterate_ctx (63 samples, 0.01%)</title><rect x="97.9257%" y="677" width="0.0122%" height="15" fill="rgb(238,197,14)" fg:x="506841" fg:w="63"/><text x="98.1757%" y="687.50"></text></g><g><title>perf_event_mmap (82 samples, 0.02%)</title><rect x="97.9224%" y="709" width="0.0158%" height="15" fill="rgb(251,162,48)" fg:x="506824" fg:w="82"/><text x="98.1724%" y="719.50"></text></g><g><title>vma_merge (55 samples, 0.01%)</title><rect x="97.9410%" y="709" width="0.0106%" height="15" fill="rgb(237,73,42)" fg:x="506920" fg:w="55"/><text x="98.1910%" y="719.50"></text></g><g><title>do_mmap (217 samples, 0.04%)</title><rect x="97.9103%" y="741" width="0.0419%" height="15" fill="rgb(211,108,8)" fg:x="506761" fg:w="217"/><text x="98.1603%" y="751.50"></text></g><g><title>mmap_region (174 samples, 0.03%)</title><rect x="97.9186%" y="725" width="0.0336%" height="15" fill="rgb(213,45,22)" fg:x="506804" fg:w="174"/><text x="98.1686%" y="735.50"></text></g><g><title>do_syscall_64 (54,558 samples, 10.54%)</title><rect x="87.4191%" y="773" width="10.5410%" height="15" fill="rgb(252,154,5)" fg:x="452461" fg:w="54558"/><text x="87.6691%" y="783.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (259 samples, 0.05%)</title><rect x="97.9101%" y="757" width="0.0500%" height="15" fill="rgb(221,79,52)" fg:x="506760" fg:w="259"/><text x="98.1601%" y="767.50"></text></g><g><title>do_group_exit (113 samples, 0.02%)</title><rect x="98.0498%" y="709" width="0.0218%" height="15" fill="rgb(229,220,36)" fg:x="507483" fg:w="113"/><text x="98.2998%" y="719.50"></text></g><g><title>do_exit (113 samples, 0.02%)</title><rect x="98.0498%" y="693" width="0.0218%" height="15" fill="rgb(211,17,16)" fg:x="507483" fg:w="113"/><text x="98.2998%" y="703.50"></text></g><g><title>arch_do_signal (168 samples, 0.03%)</title><rect x="98.0403%" y="741" width="0.0325%" height="15" fill="rgb(222,55,31)" fg:x="507434" fg:w="168"/><text x="98.2903%" y="751.50"></text></g><g><title>get_signal (166 samples, 0.03%)</title><rect x="98.0407%" y="725" width="0.0321%" height="15" fill="rgb(221,221,31)" fg:x="507436" fg:w="166"/><text x="98.2907%" y="735.50"></text></g><g><title>fpregs_assert_state_consistent (131 samples, 0.03%)</title><rect x="98.0774%" y="741" width="0.0253%" height="15" fill="rgb(227,168,26)" fg:x="507626" fg:w="131"/><text x="98.3274%" y="751.50"></text></g><g><title>switch_fpu_return (155 samples, 0.03%)</title><rect x="98.1153%" y="741" width="0.0299%" height="15" fill="rgb(224,139,9)" fg:x="507822" fg:w="155"/><text x="98.3653%" y="751.50"></text></g><g><title>copy_kernel_to_fpregs (110 samples, 0.02%)</title><rect x="98.1240%" y="725" width="0.0213%" height="15" fill="rgb(254,172,0)" fg:x="507867" fg:w="110"/><text x="98.3740%" y="735.50"></text></g><g><title>btrfs_release_file (177 samples, 0.03%)</title><rect x="98.1931%" y="709" width="0.0342%" height="15" fill="rgb(235,203,1)" fg:x="508225" fg:w="177"/><text x="98.4431%" y="719.50"></text></g><g><title>lockref_put_or_lock (70 samples, 0.01%)</title><rect x="98.2393%" y="693" width="0.0135%" height="15" fill="rgb(216,205,24)" fg:x="508464" fg:w="70"/><text x="98.4893%" y="703.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="98.2422%" y="677" width="0.0106%" height="15" fill="rgb(233,24,6)" fg:x="508479" fg:w="55"/><text x="98.4922%" y="687.50"></text></g><g><title>dput (134 samples, 0.03%)</title><rect x="98.2273%" y="709" width="0.0259%" height="15" fill="rgb(244,110,9)" fg:x="508402" fg:w="134"/><text x="98.4773%" y="719.50"></text></g><g><title>kmem_cache_free (175 samples, 0.03%)</title><rect x="98.2536%" y="709" width="0.0338%" height="15" fill="rgb(239,222,42)" fg:x="508538" fg:w="175"/><text x="98.5036%" y="719.50"></text></g><g><title>__fput (791 samples, 0.15%)</title><rect x="98.1603%" y="725" width="0.1528%" height="15" fill="rgb(218,145,13)" fg:x="508055" fg:w="791"/><text x="98.4103%" y="735.50"></text></g><g><title>security_file_free (67 samples, 0.01%)</title><rect x="98.3002%" y="709" width="0.0129%" height="15" fill="rgb(207,69,11)" fg:x="508779" fg:w="67"/><text x="98.5502%" y="719.50"></text></g><g><title>apparmor_file_free_security (57 samples, 0.01%)</title><rect x="98.3021%" y="693" width="0.0110%" height="15" fill="rgb(220,223,22)" fg:x="508789" fg:w="57"/><text x="98.5521%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57,091 samples, 11.03%)</title><rect x="87.3474%" y="789" width="11.0304%" height="15" fill="rgb(245,102,5)" fg:x="452090" fg:w="57091"/><text x="87.5974%" y="799.50">entry_SYSCALL_64..</text></g><g><title>syscall_exit_to_user_mode (2,162 samples, 0.42%)</title><rect x="97.9601%" y="773" width="0.4177%" height="15" fill="rgb(211,148,2)" fg:x="507019" fg:w="2162"/><text x="98.2101%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (1,991 samples, 0.38%)</title><rect x="97.9931%" y="757" width="0.3847%" height="15" fill="rgb(241,13,44)" fg:x="507190" fg:w="1991"/><text x="98.2431%" y="767.50"></text></g><g><title>task_work_run (1,204 samples, 0.23%)</title><rect x="98.1452%" y="741" width="0.2326%" height="15" fill="rgb(219,137,21)" fg:x="507977" fg:w="1204"/><text x="98.3952%" y="751.50"></text></g><g><title>call_rcu (278 samples, 0.05%)</title><rect x="98.3241%" y="725" width="0.0537%" height="15" fill="rgb(242,206,5)" fg:x="508903" fg:w="278"/><text x="98.5741%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (134 samples, 0.03%)</title><rect x="98.3519%" y="709" width="0.0259%" height="15" fill="rgb(217,114,22)" fg:x="509047" fg:w="134"/><text x="98.6019%" y="719.50"></text></g><g><title>error_entry (246 samples, 0.05%)</title><rect x="98.3778%" y="789" width="0.0475%" height="15" fill="rgb(253,206,42)" fg:x="509181" fg:w="246"/><text x="98.6278%" y="799.50"></text></g><g><title>sync_regs (207 samples, 0.04%)</title><rect x="98.3854%" y="773" width="0.0400%" height="15" fill="rgb(236,102,18)" fg:x="509220" fg:w="207"/><text x="98.6354%" y="783.50"></text></g><g><title>calculate_sigpending (52 samples, 0.01%)</title><rect x="98.4337%" y="773" width="0.0100%" height="15" fill="rgb(208,59,49)" fg:x="509470" fg:w="52"/><text x="98.6837%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (4,991 samples, 0.96%)</title><rect x="98.5065%" y="741" width="0.9643%" height="15" fill="rgb(215,194,28)" fg:x="509847" fg:w="4991"/><text x="98.7565%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,859 samples, 0.94%)</title><rect x="98.5320%" y="725" width="0.9388%" height="15" fill="rgb(243,207,11)" fg:x="509979" fg:w="4859"/><text x="98.7820%" y="735.50"></text></g><g><title>native_write_msr (4,844 samples, 0.94%)</title><rect x="98.5349%" y="709" width="0.9359%" height="15" fill="rgb(254,179,35)" fg:x="509994" fg:w="4844"/><text x="98.7849%" y="719.50"></text></g><g><title>irq_work_run (55 samples, 0.01%)</title><rect x="99.4805%" y="677" width="0.0106%" height="15" fill="rgb(235,97,3)" fg:x="514888" fg:w="55"/><text x="99.7305%" y="687.50"></text></g><g><title>irq_work_run_list (55 samples, 0.01%)</title><rect x="99.4805%" y="661" width="0.0106%" height="15" fill="rgb(215,155,33)" fg:x="514888" fg:w="55"/><text x="99.7305%" y="671.50"></text></g><g><title>irq_work_single (55 samples, 0.01%)</title><rect x="99.4805%" y="645" width="0.0106%" height="15" fill="rgb(223,128,12)" fg:x="514888" fg:w="55"/><text x="99.7305%" y="655.50"></text></g><g><title>perf_pending_event (52 samples, 0.01%)</title><rect x="99.4810%" y="629" width="0.0100%" height="15" fill="rgb(208,157,18)" fg:x="514891" fg:w="52"/><text x="99.7310%" y="639.50"></text></g><g><title>asm_call_sysvec_on_stack (60 samples, 0.01%)</title><rect x="99.4801%" y="709" width="0.0116%" height="15" fill="rgb(249,70,54)" fg:x="514886" fg:w="60"/><text x="99.7301%" y="719.50"></text></g><g><title>__sysvec_irq_work (58 samples, 0.01%)</title><rect x="99.4805%" y="693" width="0.0112%" height="15" fill="rgb(244,118,24)" fg:x="514888" fg:w="58"/><text x="99.7305%" y="703.50"></text></g><g><title>asm_sysvec_irq_work (110 samples, 0.02%)</title><rect x="99.4720%" y="741" width="0.0213%" height="15" fill="rgb(211,54,0)" fg:x="514844" fg:w="110"/><text x="99.7220%" y="751.50"></text></g><g><title>sysvec_irq_work (69 samples, 0.01%)</title><rect x="99.4799%" y="725" width="0.0133%" height="15" fill="rgb(245,137,45)" fg:x="514885" fg:w="69"/><text x="99.7299%" y="735.50"></text></g><g><title>schedule_tail (5,443 samples, 1.05%)</title><rect x="98.4437%" y="773" width="1.0516%" height="15" fill="rgb(232,154,31)" fg:x="509522" fg:w="5443"/><text x="98.6937%" y="783.50"></text></g><g><title>finish_task_switch (5,416 samples, 1.05%)</title><rect x="98.4489%" y="757" width="1.0464%" height="15" fill="rgb(253,6,39)" fg:x="509549" fg:w="5416"/><text x="98.6989%" y="767.50"></text></g><g><title>ret_from_fork (5,564 samples, 1.08%)</title><rect x="98.4333%" y="789" width="1.0750%" height="15" fill="rgb(234,183,24)" fg:x="509468" fg:w="5564"/><text x="98.6833%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (67 samples, 0.01%)</title><rect x="99.4953%" y="773" width="0.0129%" height="15" fill="rgb(252,84,40)" fg:x="514965" fg:w="67"/><text x="99.7453%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (64 samples, 0.01%)</title><rect x="99.4959%" y="757" width="0.0124%" height="15" fill="rgb(224,65,2)" fg:x="514968" fg:w="64"/><text x="99.7459%" y="767.50"></text></g><g><title>switch_fpu_return (62 samples, 0.01%)</title><rect x="99.4963%" y="741" width="0.0120%" height="15" fill="rgb(229,38,24)" fg:x="514970" fg:w="62"/><text x="99.7463%" y="751.50"></text></g><g><title>syscall_return_via_sysret (339 samples, 0.07%)</title><rect x="99.5083%" y="789" width="0.0655%" height="15" fill="rgb(218,131,50)" fg:x="515032" fg:w="339"/><text x="99.7583%" y="799.50"></text></g><g><title>[zig] (95,117 samples, 18.38%)</title><rect x="81.1966%" y="805" width="18.3774%" height="15" fill="rgb(233,106,18)" fg:x="420255" fg:w="95117"/><text x="81.4466%" y="815.50">[zig]</text></g><g><title>asm_exc_page_fault (562 samples, 0.11%)</title><rect x="99.5742%" y="805" width="0.1086%" height="15" fill="rgb(220,216,11)" fg:x="515373" fg:w="562"/><text x="99.8242%" y="815.50"></text></g><g><title>page_remove_rmap (69 samples, 0.01%)</title><rect x="99.7444%" y="629" width="0.0133%" height="15" fill="rgb(251,100,45)" fg:x="516254" fg:w="69"/><text x="99.9944%" y="639.50"></text></g><g><title>mmput (221 samples, 0.04%)</title><rect x="99.7160%" y="693" width="0.0427%" height="15" fill="rgb(235,143,32)" fg:x="516107" fg:w="221"/><text x="99.9660%" y="703.50"></text></g><g><title>exit_mmap (220 samples, 0.04%)</title><rect x="99.7162%" y="677" width="0.0425%" height="15" fill="rgb(248,124,34)" fg:x="516108" fg:w="220"/><text x="99.9662%" y="687.50"></text></g><g><title>unmap_vmas (180 samples, 0.03%)</title><rect x="99.7239%" y="661" width="0.0348%" height="15" fill="rgb(225,221,4)" fg:x="516148" fg:w="180"/><text x="99.9739%" y="671.50"></text></g><g><title>unmap_page_range (180 samples, 0.03%)</title><rect x="99.7239%" y="645" width="0.0348%" height="15" fill="rgb(242,27,43)" fg:x="516148" fg:w="180"/><text x="99.9739%" y="655.50"></text></g><g><title>begin_new_exec (227 samples, 0.04%)</title><rect x="99.7152%" y="709" width="0.0439%" height="15" fill="rgb(227,54,8)" fg:x="516103" fg:w="227"/><text x="99.9652%" y="719.50"></text></g><g><title>__x64_sys_execve (271 samples, 0.05%)</title><rect x="99.7129%" y="773" width="0.0524%" height="15" fill="rgb(253,139,49)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="783.50"></text></g><g><title>do_execveat_common (271 samples, 0.05%)</title><rect x="99.7129%" y="757" width="0.0524%" height="15" fill="rgb(231,26,43)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="767.50"></text></g><g><title>bprm_execve (271 samples, 0.05%)</title><rect x="99.7129%" y="741" width="0.0524%" height="15" fill="rgb(207,121,39)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="751.50"></text></g><g><title>load_elf_binary (271 samples, 0.05%)</title><rect x="99.7129%" y="725" width="0.0524%" height="15" fill="rgb(223,101,35)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="735.50"></text></g><g><title>tlb_finish_mmu (78 samples, 0.02%)</title><rect x="99.7695%" y="693" width="0.0151%" height="15" fill="rgb(232,87,23)" fg:x="516384" fg:w="78"/><text x="100.0195%" y="703.50"></text></g><g><title>page_remove_rmap (90 samples, 0.02%)</title><rect x="99.8219%" y="661" width="0.0174%" height="15" fill="rgb(225,180,29)" fg:x="516655" fg:w="90"/><text x="100.0719%" y="671.50"></text></g><g><title>unmap_page_range (336 samples, 0.06%)</title><rect x="99.7846%" y="677" width="0.0649%" height="15" fill="rgb(225,25,17)" fg:x="516462" fg:w="336"/><text x="100.0346%" y="687.50"></text></g><g><title>exit_mmap (416 samples, 0.08%)</title><rect x="99.7693%" y="709" width="0.0804%" height="15" fill="rgb(223,8,52)" fg:x="516383" fg:w="416"/><text x="100.0193%" y="719.50"></text></g><g><title>unmap_vmas (337 samples, 0.07%)</title><rect x="99.7846%" y="693" width="0.0651%" height="15" fill="rgb(246,42,21)" fg:x="516462" fg:w="337"/><text x="100.0346%" y="703.50"></text></g><g><title>__x64_sys_exit_group (435 samples, 0.08%)</title><rect x="99.7658%" y="773" width="0.0840%" height="15" fill="rgb(205,64,43)" fg:x="516365" fg:w="435"/><text x="100.0158%" y="783.50"></text></g><g><title>do_group_exit (435 samples, 0.08%)</title><rect x="99.7658%" y="757" width="0.0840%" height="15" fill="rgb(221,160,13)" fg:x="516365" fg:w="435"/><text x="100.0158%" y="767.50"></text></g><g><title>do_exit (435 samples, 0.08%)</title><rect x="99.7658%" y="741" width="0.0840%" height="15" fill="rgb(239,58,35)" fg:x="516365" fg:w="435"/><text x="100.0158%" y="751.50"></text></g><g><title>mmput (417 samples, 0.08%)</title><rect x="99.7693%" y="725" width="0.0806%" height="15" fill="rgb(251,26,40)" fg:x="516383" fg:w="417"/><text x="100.0193%" y="735.50"></text></g><g><title>do_syscall_64 (747 samples, 0.14%)</title><rect x="99.7129%" y="789" width="0.1443%" height="15" fill="rgb(247,0,4)" fg:x="516091" fg:w="747"/><text x="99.9629%" y="799.50"></text></g><g><title>page_remove_rmap (101 samples, 0.02%)</title><rect x="99.9022%" y="629" width="0.0195%" height="15" fill="rgb(218,130,10)" fg:x="517071" fg:w="101"/><text x="100.1522%" y="639.50"></text></g><g><title>mmput (291 samples, 0.06%)</title><rect x="99.8680%" y="693" width="0.0562%" height="15" fill="rgb(239,32,7)" fg:x="516894" fg:w="291"/><text x="100.1180%" y="703.50"></text></g><g><title>exit_mmap (291 samples, 0.06%)</title><rect x="99.8680%" y="677" width="0.0562%" height="15" fill="rgb(210,192,24)" fg:x="516894" fg:w="291"/><text x="100.1180%" y="687.50"></text></g><g><title>unmap_vmas (249 samples, 0.05%)</title><rect x="99.8762%" y="661" width="0.0481%" height="15" fill="rgb(226,212,17)" fg:x="516936" fg:w="249"/><text x="100.1262%" y="671.50"></text></g><g><title>unmap_page_range (249 samples, 0.05%)</title><rect x="99.8762%" y="645" width="0.0481%" height="15" fill="rgb(219,201,28)" fg:x="516936" fg:w="249"/><text x="100.1262%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,274 samples, 0.25%)</title><rect x="99.6831%" y="805" width="0.2461%" height="15" fill="rgb(235,207,41)" fg:x="515937" fg:w="1274"/><text x="99.9331%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (373 samples, 0.07%)</title><rect x="99.8572%" y="789" width="0.0721%" height="15" fill="rgb(241,95,54)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (373 samples, 0.07%)</title><rect x="99.8572%" y="773" width="0.0721%" height="15" fill="rgb(248,12,23)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="783.50"></text></g><g><title>arch_do_signal (373 samples, 0.07%)</title><rect x="99.8572%" y="757" width="0.0721%" height="15" fill="rgb(228,173,4)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="767.50"></text></g><g><title>get_signal (373 samples, 0.07%)</title><rect x="99.8572%" y="741" width="0.0721%" height="15" fill="rgb(254,99,5)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="751.50"></text></g><g><title>do_group_exit (373 samples, 0.07%)</title><rect x="99.8572%" y="725" width="0.0721%" height="15" fill="rgb(212,184,17)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="735.50"></text></g><g><title>do_exit (373 samples, 0.07%)</title><rect x="99.8572%" y="709" width="0.0721%" height="15" fill="rgb(252,174,1)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="719.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (266 samples, 0.05%)</title><rect x="99.9293%" y="805" width="0.0514%" height="15" fill="rgb(241,118,51)" fg:x="517211" fg:w="266"/><text x="100.1793%" y="815.50"></text></g><g><title>all (517,577 samples, 100%)</title><rect x="0.0000%" y="837" width="100.0000%" height="15" fill="rgb(227,94,47)" fg:x="0" fg:w="517577"/><text x="0.2500%" y="847.50"></text></g><g><title>zig (97,444 samples, 18.83%)</title><rect x="81.1730%" y="821" width="18.8270%" height="15" fill="rgb(229,104,2)" fg:x="420133" fg:w="97444"/><text x="81.4230%" y="831.50">zig</text></g><g><title>syscall_return_via_sysret (61 samples, 0.01%)</title><rect x="99.9882%" y="805" width="0.0118%" height="15" fill="rgb(219,28,31)" fg:x="517516" fg:w="61"/><text x="100.2382%" y="815.50"></text></g></svg></svg>