test-zig-cc/results/llvm-sysroot-hermetic-j1.svg

491 lines
788 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="870" onload="init(evt)" viewBox="0 0 1200 870" 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="870" 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="853.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="853.00"> </text><svg id="frames" x="10" width="1180" total_samples="527212"><g><title>_dl_update_slotinfo (165 samples, 0.03%)</title><rect x="0.1920%" y="773" width="0.0313%" height="15" fill="rgb(227,0,7)" fg:x="1012" fg:w="165"/><text x="0.4420%" y="783.50"></text></g><g><title>[anon] (1,347 samples, 0.26%)</title><rect x="0.0146%" y="789" width="0.2555%" height="15" fill="rgb(217,0,24)" fg:x="77" fg:w="1347"/><text x="0.2646%" y="799.50"></text></g><g><title>[perf-947659.map] (179 samples, 0.03%)</title><rect x="0.2710%" y="789" width="0.0340%" height="15" fill="rgb(221,193,54)" fg:x="1429" fg:w="179"/><text x="0.5210%" y="799.50"></text></g><g><title>[unknown] (106 samples, 0.02%)</title><rect x="0.3050%" y="789" width="0.0201%" height="15" fill="rgb(248,212,6)" fg:x="1608" fg:w="106"/><text x="0.5550%" y="799.50"></text></g><g><title>CompileBroker::post_compile (60 samples, 0.01%)</title><rect x="0.3359%" y="677" width="0.0114%" height="15" fill="rgb(208,68,35)" fg:x="1771" fg:w="60"/><text x="0.5859%" y="687.50"></text></g><g><title>StringEventLog::log (60 samples, 0.01%)</title><rect x="0.3359%" y="661" width="0.0114%" height="15" fill="rgb(232,128,0)" fg:x="1771" fg:w="60"/><text x="0.5859%" y="671.50"></text></g><g><title>Method::print_short_name (66 samples, 0.01%)</title><rect x="0.3534%" y="661" width="0.0125%" height="15" fill="rgb(207,160,47)" fg:x="1863" fg:w="66"/><text x="0.6034%" y="671.50"></text></g><g><title>CompileTask::print (135 samples, 0.03%)</title><rect x="0.3530%" y="677" width="0.0256%" height="15" fill="rgb(228,23,34)" fg:x="1861" fg:w="135"/><text x="0.6030%" y="687.50"></text></g><g><title>outputStream::print (67 samples, 0.01%)</title><rect x="0.3659%" y="661" width="0.0127%" height="15" fill="rgb(218,30,26)" fg:x="1929" fg:w="67"/><text x="0.6159%" y="671.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (65 samples, 0.01%)</title><rect x="0.3663%" y="645" width="0.0123%" height="15" fill="rgb(220,122,19)" fg:x="1931" fg:w="65"/><text x="0.6163%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (55 samples, 0.01%)</title><rect x="0.4019%" y="517" width="0.0104%" height="15" fill="rgb(250,228,42)" fg:x="2119" fg:w="55"/><text x="0.6519%" y="527.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.4014%" y="533" width="0.0159%" height="15" fill="rgb(240,193,28)" fg:x="2116" fg:w="84"/><text x="0.6514%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (135 samples, 0.03%)</title><rect x="0.4008%" y="549" width="0.0256%" height="15" fill="rgb(216,20,37)" fg:x="2113" fg:w="135"/><text x="0.6508%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (203 samples, 0.04%)</title><rect x="0.3996%" y="565" width="0.0385%" height="15" fill="rgb(206,188,39)" fg:x="2107" fg:w="203"/><text x="0.6496%" y="575.50"></text></g><g><title>SubstitutionResolver::block_do (62 samples, 0.01%)</title><rect x="0.4264%" y="549" width="0.0118%" height="15" fill="rgb(217,207,13)" fg:x="2248" fg:w="62"/><text x="0.6764%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (205 samples, 0.04%)</title><rect x="0.3995%" y="581" width="0.0389%" height="15" fill="rgb(231,73,38)" fg:x="2106" fg:w="205"/><text x="0.6495%" y="591.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (396 samples, 0.08%)</title><rect x="0.3875%" y="597" width="0.0751%" height="15" fill="rgb(225,20,46)" fg:x="2043" fg:w="396"/><text x="0.6375%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (59 samples, 0.01%)</title><rect x="0.4660%" y="517" width="0.0112%" height="15" fill="rgb(210,31,41)" fg:x="2457" fg:w="59"/><text x="0.7160%" y="527.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.4657%" y="533" width="0.0159%" height="15" fill="rgb(221,200,47)" fg:x="2455" fg:w="84"/><text x="0.7157%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (107 samples, 0.02%)</title><rect x="0.4632%" y="565" width="0.0203%" height="15" fill="rgb(226,26,5)" fg:x="2442" fg:w="107"/><text x="0.7132%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (104 samples, 0.02%)</title><rect x="0.4638%" y="549" width="0.0197%" height="15" fill="rgb(249,33,26)" fg:x="2445" fg:w="104"/><text x="0.7138%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (109 samples, 0.02%)</title><rect x="0.4979%" y="517" width="0.0207%" height="15" fill="rgb(235,183,28)" fg:x="2625" fg:w="109"/><text x="0.7479%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (68 samples, 0.01%)</title><rect x="0.5057%" y="501" width="0.0129%" height="15" fill="rgb(221,5,38)" fg:x="2666" fg:w="68"/><text x="0.7557%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (166 samples, 0.03%)</title><rect x="0.4873%" y="565" width="0.0315%" height="15" fill="rgb(247,18,42)" fg:x="2569" fg:w="166"/><text x="0.7373%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (150 samples, 0.03%)</title><rect x="0.4903%" y="549" width="0.0285%" height="15" fill="rgb(241,131,45)" fg:x="2585" fg:w="150"/><text x="0.7403%" y="559.50"></text></g><g><title>ciMethod::bci_block_start (116 samples, 0.02%)</title><rect x="0.4968%" y="533" width="0.0220%" height="15" fill="rgb(249,31,29)" fg:x="2619" fg:w="116"/><text x="0.7468%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (60 samples, 0.01%)</title><rect x="0.5632%" y="453" width="0.0114%" height="15" fill="rgb(225,111,53)" fg:x="2969" fg:w="60"/><text x="0.8132%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (77 samples, 0.01%)</title><rect x="0.5605%" y="469" width="0.0146%" height="15" fill="rgb(238,160,17)" fg:x="2955" fg:w="77"/><text x="0.8105%" y="479.50"></text></g><g><title>ciField::ciField (120 samples, 0.02%)</title><rect x="0.5565%" y="485" width="0.0228%" height="15" fill="rgb(214,148,48)" fg:x="2934" fg:w="120"/><text x="0.8065%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (130 samples, 0.02%)</title><rect x="0.5550%" y="501" width="0.0247%" height="15" fill="rgb(232,36,49)" fg:x="2926" fg:w="130"/><text x="0.8050%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (149 samples, 0.03%)</title><rect x="0.5550%" y="517" width="0.0283%" height="15" fill="rgb(209,103,24)" fg:x="2926" fg:w="149"/><text x="0.8050%" y="527.50"></text></g><g><title>GraphBuilder::access_field (206 samples, 0.04%)</title><rect x="0.5463%" y="533" width="0.0391%" height="15" fill="rgb(229,88,8)" fg:x="2880" fg:w="206"/><text x="0.7963%" y="543.50"></text></g><g><title>BlockBegin::try_merge (65 samples, 0.01%)</title><rect x="0.6500%" y="453" width="0.0123%" height="15" fill="rgb(213,181,19)" fg:x="3427" fg:w="65"/><text x="0.9000%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (55 samples, 0.01%)</title><rect x="0.6758%" y="389" width="0.0104%" height="15" fill="rgb(254,191,54)" fg:x="3563" fg:w="55"/><text x="0.9258%" y="399.50"></text></g><g><title>ciField::ciField (97 samples, 0.02%)</title><rect x="0.6724%" y="405" width="0.0184%" height="15" fill="rgb(241,83,37)" fg:x="3545" fg:w="97"/><text x="0.9224%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (105 samples, 0.02%)</title><rect x="0.6713%" y="421" width="0.0199%" height="15" fill="rgb(233,36,39)" fg:x="3539" fg:w="105"/><text x="0.9213%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (128 samples, 0.02%)</title><rect x="0.6709%" y="437" width="0.0243%" height="15" fill="rgb(226,3,54)" fg:x="3537" fg:w="128"/><text x="0.9209%" y="447.50"></text></g><g><title>GraphBuilder::access_field (172 samples, 0.03%)</title><rect x="0.6635%" y="453" width="0.0326%" height="15" fill="rgb(245,192,40)" fg:x="3498" fg:w="172"/><text x="0.9135%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (60 samples, 0.01%)</title><rect x="0.7318%" y="357" width="0.0114%" height="15" fill="rgb(238,167,29)" fg:x="3858" fg:w="60"/><text x="0.9818%" y="367.50"></text></g><g><title>GraphBuilder::access_field (85 samples, 0.02%)</title><rect x="0.7282%" y="373" width="0.0161%" height="15" fill="rgb(232,182,51)" fg:x="3839" fg:w="85"/><text x="0.9782%" y="383.50"></text></g><g><title>GraphBuilder::invoke (60 samples, 0.01%)</title><rect x="0.7820%" y="213" width="0.0114%" height="15" fill="rgb(231,60,39)" fg:x="4123" fg:w="60"/><text x="1.0320%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (102 samples, 0.02%)</title><rect x="0.7765%" y="245" width="0.0193%" height="15" fill="rgb(208,69,12)" fg:x="4094" fg:w="102"/><text x="1.0265%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (101 samples, 0.02%)</title><rect x="0.7767%" y="229" width="0.0192%" height="15" fill="rgb(235,93,37)" fg:x="4095" fg:w="101"/><text x="1.0267%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (145 samples, 0.03%)</title><rect x="0.7756%" y="261" width="0.0275%" height="15" fill="rgb(213,116,39)" fg:x="4089" fg:w="145"/><text x="1.0256%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (157 samples, 0.03%)</title><rect x="0.7754%" y="277" width="0.0298%" height="15" fill="rgb(222,207,29)" fg:x="4088" fg:w="157"/><text x="1.0254%" y="287.50"></text></g><g><title>GraphBuilder::invoke (230 samples, 0.04%)</title><rect x="0.7729%" y="293" width="0.0436%" height="15" fill="rgb(206,96,30)" fg:x="4075" fg:w="230"/><text x="1.0229%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (335 samples, 0.06%)</title><rect x="0.7557%" y="325" width="0.0635%" height="15" fill="rgb(218,138,4)" fg:x="3984" fg:w="335"/><text x="1.0057%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (332 samples, 0.06%)</title><rect x="0.7562%" y="309" width="0.0630%" height="15" fill="rgb(250,191,14)" fg:x="3987" fg:w="332"/><text x="1.0062%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (436 samples, 0.08%)</title><rect x="0.7536%" y="341" width="0.0827%" height="15" fill="rgb(239,60,40)" fg:x="3973" fg:w="436"/><text x="1.0036%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (472 samples, 0.09%)</title><rect x="0.7532%" y="357" width="0.0895%" height="15" fill="rgb(206,27,48)" fg:x="3971" fg:w="472"/><text x="1.0032%" y="367.50"></text></g><g><title>ciObjectFactory::get_metadata (55 samples, 0.01%)</title><rect x="0.8554%" y="325" width="0.0104%" height="15" fill="rgb(225,35,8)" fg:x="4510" fg:w="55"/><text x="1.1054%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (111 samples, 0.02%)</title><rect x="0.8458%" y="357" width="0.0211%" height="15" fill="rgb(250,213,24)" fg:x="4459" fg:w="111"/><text x="1.0958%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (100 samples, 0.02%)</title><rect x="0.8479%" y="341" width="0.0190%" height="15" fill="rgb(247,123,22)" fg:x="4470" fg:w="100"/><text x="1.0979%" y="351.50"></text></g><g><title>GraphBuilder::invoke (641 samples, 0.12%)</title><rect x="0.7479%" y="373" width="0.1216%" height="15" fill="rgb(231,138,38)" fg:x="3943" fg:w="641"/><text x="0.9979%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (867 samples, 0.16%)</title><rect x="0.7151%" y="405" width="0.1644%" height="15" fill="rgb(231,145,46)" fg:x="3770" fg:w="867"/><text x="0.9651%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (859 samples, 0.16%)</title><rect x="0.7166%" y="389" width="0.1629%" height="15" fill="rgb(251,118,11)" fg:x="3778" fg:w="859"/><text x="0.9666%" y="399.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (61 samples, 0.01%)</title><rect x="0.8814%" y="389" width="0.0116%" height="15" fill="rgb(217,147,25)" fg:x="4647" fg:w="61"/><text x="1.1314%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (96 samples, 0.02%)</title><rect x="0.8809%" y="405" width="0.0182%" height="15" fill="rgb(247,81,37)" fg:x="4644" fg:w="96"/><text x="1.1309%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (56 samples, 0.01%)</title><rect x="0.9008%" y="405" width="0.0106%" height="15" fill="rgb(209,12,38)" fg:x="4749" fg:w="56"/><text x="1.1508%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (54 samples, 0.01%)</title><rect x="0.9012%" y="389" width="0.0102%" height="15" fill="rgb(227,1,9)" fg:x="4751" fg:w="54"/><text x="1.1512%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (1,071 samples, 0.20%)</title><rect x="0.7088%" y="421" width="0.2031%" height="15" fill="rgb(248,47,43)" fg:x="3737" fg:w="1071"/><text x="0.9588%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (1,114 samples, 0.21%)</title><rect x="0.7073%" y="437" width="0.2113%" height="15" fill="rgb(221,10,30)" fg:x="3729" fg:w="1114"/><text x="0.9573%" y="447.50"></text></g><g><title>ciEnv::lookup_method (59 samples, 0.01%)</title><rect x="0.9306%" y="405" width="0.0112%" height="15" fill="rgb(210,229,1)" fg:x="4906" fg:w="59"/><text x="1.1806%" y="415.50"></text></g><g><title>ciSignature::ciSignature (54 samples, 0.01%)</title><rect x="0.9484%" y="357" width="0.0102%" height="15" fill="rgb(222,148,37)" fg:x="5000" fg:w="54"/><text x="1.1984%" y="367.50"></text></g><g><title>ciMethod::ciMethod (70 samples, 0.01%)</title><rect x="0.9455%" y="373" width="0.0133%" height="15" fill="rgb(234,67,33)" fg:x="4985" fg:w="70"/><text x="1.1955%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (91 samples, 0.02%)</title><rect x="0.9417%" y="405" width="0.0173%" height="15" fill="rgb(247,98,35)" fg:x="4965" fg:w="91"/><text x="1.1917%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (78 samples, 0.01%)</title><rect x="0.9442%" y="389" width="0.0148%" height="15" fill="rgb(247,138,52)" fg:x="4978" fg:w="78"/><text x="1.1942%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (174 samples, 0.03%)</title><rect x="0.9270%" y="421" width="0.0330%" height="15" fill="rgb(213,79,30)" fg:x="4887" fg:w="174"/><text x="1.1770%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (189 samples, 0.04%)</title><rect x="0.9245%" y="437" width="0.0358%" height="15" fill="rgb(246,177,23)" fg:x="4874" fg:w="189"/><text x="1.1745%" y="447.50"></text></g><g><title>GraphBuilder::invoke (1,395 samples, 0.26%)</title><rect x="0.7009%" y="453" width="0.2646%" height="15" fill="rgb(230,62,27)" fg:x="3695" fg:w="1395"/><text x="0.9509%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,797 samples, 0.34%)</title><rect x="0.6383%" y="485" width="0.3408%" height="15" fill="rgb(216,154,8)" fg:x="3365" fg:w="1797"/><text x="0.8883%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,779 samples, 0.34%)</title><rect x="0.6417%" y="469" width="0.3374%" height="15" fill="rgb(244,35,45)" fg:x="3383" fg:w="1779"/><text x="0.8917%" y="479.50"></text></g><g><title>MethodLiveness::compute_liveness (57 samples, 0.01%)</title><rect x="0.9920%" y="421" width="0.0108%" height="15" fill="rgb(251,115,12)" fg:x="5230" fg:w="57"/><text x="1.2420%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (83 samples, 0.02%)</title><rect x="0.9876%" y="453" width="0.0157%" height="15" fill="rgb(240,54,50)" fg:x="5207" fg:w="83"/><text x="1.2376%" y="463.50"></text></g><g><title>ciMethod::bci_block_start (63 samples, 0.01%)</title><rect x="0.9914%" y="437" width="0.0119%" height="15" fill="rgb(233,84,52)" fg:x="5227" fg:w="63"/><text x="1.2414%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (112 samples, 0.02%)</title><rect x="0.9835%" y="469" width="0.0212%" height="15" fill="rgb(207,117,47)" fg:x="5185" fg:w="112"/><text x="1.2335%" y="479.50"></text></g><g><title>GraphBuilder::push_scope (163 samples, 0.03%)</title><rect x="0.9821%" y="485" width="0.0309%" height="15" fill="rgb(249,43,39)" fg:x="5178" fg:w="163"/><text x="1.2321%" y="495.50"></text></g><g><title>Method::build_interpreter_method_data (69 samples, 0.01%)</title><rect x="1.0172%" y="453" width="0.0131%" height="15" fill="rgb(209,38,44)" fg:x="5363" fg:w="69"/><text x="1.2672%" y="463.50"></text></g><g><title>MethodData::allocate (69 samples, 0.01%)</title><rect x="1.0172%" y="437" width="0.0131%" height="15" fill="rgb(236,212,23)" fg:x="5363" fg:w="69"/><text x="1.2672%" y="447.50"></text></g><g><title>ciMethodData::load_data (68 samples, 0.01%)</title><rect x="1.0315%" y="453" width="0.0129%" height="15" fill="rgb(242,79,21)" fg:x="5438" fg:w="68"/><text x="1.2815%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (171 samples, 0.03%)</title><rect x="1.0157%" y="485" width="0.0324%" height="15" fill="rgb(211,96,35)" fg:x="5355" fg:w="171"/><text x="1.2657%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (163 samples, 0.03%)</title><rect x="1.0172%" y="469" width="0.0309%" height="15" fill="rgb(253,215,40)" fg:x="5363" fg:w="163"/><text x="1.2672%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (2,228 samples, 0.42%)</title><rect x="0.6275%" y="501" width="0.4226%" height="15" fill="rgb(211,81,21)" fg:x="3308" fg:w="2228"/><text x="0.8775%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (2,246 samples, 0.43%)</title><rect x="0.6259%" y="517" width="0.4260%" height="15" fill="rgb(208,190,38)" fg:x="3300" fg:w="2246"/><text x="0.8759%" y="527.50"></text></g><g><title>ciEnv::lookup_method (107 samples, 0.02%)</title><rect x="1.0738%" y="485" width="0.0203%" height="15" fill="rgb(235,213,38)" fg:x="5661" fg:w="107"/><text x="1.3238%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (65 samples, 0.01%)</title><rect x="1.1151%" y="421" width="0.0123%" height="15" fill="rgb(237,122,38)" fg:x="5879" fg:w="65"/><text x="1.3651%" y="431.50"></text></g><g><title>ciMethod::ciMethod (167 samples, 0.03%)</title><rect x="1.0986%" y="453" width="0.0317%" height="15" fill="rgb(244,218,35)" fg:x="5792" fg:w="167"/><text x="1.3486%" y="463.50"></text></g><g><title>ciSignature::ciSignature (135 samples, 0.03%)</title><rect x="1.1047%" y="437" width="0.0256%" height="15" fill="rgb(240,68,47)" fg:x="5824" fg:w="135"/><text x="1.3547%" y="447.50"></text></g><g><title>ciObjectFactory::get_metadata (197 samples, 0.04%)</title><rect x="1.0941%" y="485" width="0.0374%" height="15" fill="rgb(210,16,53)" fg:x="5768" fg:w="197"/><text x="1.3441%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (180 samples, 0.03%)</title><rect x="1.0973%" y="469" width="0.0341%" height="15" fill="rgb(235,124,12)" fg:x="5785" fg:w="180"/><text x="1.3473%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (351 samples, 0.07%)</title><rect x="1.0662%" y="501" width="0.0666%" height="15" fill="rgb(224,169,11)" fg:x="5621" fg:w="351"/><text x="1.3162%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (366 samples, 0.07%)</title><rect x="1.0635%" y="517" width="0.0694%" height="15" fill="rgb(250,166,2)" fg:x="5607" fg:w="366"/><text x="1.3135%" y="527.50"></text></g><g><title>GraphBuilder::invoke (2,862 samples, 0.54%)</title><rect x="0.6058%" y="533" width="0.5429%" height="15" fill="rgb(242,216,29)" fg:x="3194" fg:w="2862"/><text x="0.8558%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,353 samples, 0.64%)</title><rect x="0.5281%" y="549" width="0.6360%" height="15" fill="rgb(230,116,27)" fg:x="2784" fg:w="3353"/><text x="0.7781%" y="559.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,404 samples, 0.65%)</title><rect x="0.5212%" y="565" width="0.6457%" height="15" fill="rgb(228,99,48)" fg:x="2748" fg:w="3404"/><text x="0.7712%" y="575.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,763 samples, 0.71%)</title><rect x="0.4628%" y="581" width="0.7138%" height="15" fill="rgb(253,11,6)" fg:x="2440" fg:w="3763"/><text x="0.7128%" y="591.50"></text></g><g><title>IR::IR (3,780 samples, 0.72%)</title><rect x="0.4628%" y="597" width="0.7170%" height="15" fill="rgb(247,143,39)" fg:x="2440" fg:w="3780"/><text x="0.7128%" y="607.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (86 samples, 0.02%)</title><rect x="1.1800%" y="581" width="0.0163%" height="15" fill="rgb(236,97,10)" fg:x="6221" fg:w="86"/><text x="1.4300%" y="591.50"></text></g><g><title>IR::compute_code (97 samples, 0.02%)</title><rect x="1.1798%" y="597" width="0.0184%" height="15" fill="rgb(233,208,19)" fg:x="6220" fg:w="97"/><text x="1.4298%" y="607.50"></text></g><g><title>UseCountComputer::block_do (87 samples, 0.02%)</title><rect x="1.2003%" y="565" width="0.0165%" height="15" fill="rgb(216,164,2)" fg:x="6328" fg:w="87"/><text x="1.4503%" y="575.50"></text></g><g><title>BlockList::iterate_backward (89 samples, 0.02%)</title><rect x="1.2001%" y="581" width="0.0169%" height="15" fill="rgb(220,129,5)" fg:x="6327" fg:w="89"/><text x="1.4501%" y="591.50"></text></g><g><title>IR::compute_use_counts (136 samples, 0.03%)</title><rect x="1.1982%" y="597" width="0.0258%" height="15" fill="rgb(242,17,10)" fg:x="6317" fg:w="136"/><text x="1.4482%" y="607.50"></text></g><g><title>NullCheckEliminator::iterate_one (170 samples, 0.03%)</title><rect x="1.2289%" y="565" width="0.0322%" height="15" fill="rgb(242,107,0)" fg:x="6479" fg:w="170"/><text x="1.4789%" y="575.50"></text></g><g><title>IR::eliminate_null_checks (204 samples, 0.04%)</title><rect x="1.2240%" y="597" width="0.0387%" height="15" fill="rgb(251,28,31)" fg:x="6453" fg:w="204"/><text x="1.4740%" y="607.50"></text></g><g><title>Optimizer::eliminate_null_checks (203 samples, 0.04%)</title><rect x="1.2242%" y="581" width="0.0385%" height="15" fill="rgb(233,223,10)" fg:x="6454" fg:w="203"/><text x="1.4742%" y="591.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (57 samples, 0.01%)</title><rect x="1.2653%" y="581" width="0.0108%" height="15" fill="rgb(215,21,27)" fg:x="6671" fg:w="57"/><text x="1.5153%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="1.2655%" y="565" width="0.0106%" height="15" fill="rgb(232,23,21)" fg:x="6672" fg:w="56"/><text x="1.5155%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (55 samples, 0.01%)</title><rect x="1.2657%" y="549" width="0.0104%" height="15" fill="rgb(244,5,23)" fg:x="6673" fg:w="55"/><text x="1.5157%" y="559.50"></text></g><g><title>IR::optimize_blocks (72 samples, 0.01%)</title><rect x="1.2627%" y="597" width="0.0137%" height="15" fill="rgb(226,81,46)" fg:x="6657" fg:w="72"/><text x="1.5127%" y="607.50"></text></g><g><title>IR::split_critical_edges (54 samples, 0.01%)</title><rect x="1.2763%" y="597" width="0.0102%" height="15" fill="rgb(247,70,30)" fg:x="6729" fg:w="54"/><text x="1.5263%" y="607.50"></text></g><g><title>Compilation::build_hir (4,784 samples, 0.91%)</title><rect x="0.3856%" y="613" width="0.9074%" height="15" fill="rgb(212,68,19)" fg:x="2033" fg:w="4784"/><text x="0.6356%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (97 samples, 0.02%)</title><rect x="1.3251%" y="533" width="0.0184%" height="15" fill="rgb(240,187,13)" fg:x="6986" fg:w="97"/><text x="1.5751%" y="543.50"></text></g><g><title>LIR_Assembler::add_call_info (99 samples, 0.02%)</title><rect x="1.3249%" y="549" width="0.0188%" height="15" fill="rgb(223,113,26)" fg:x="6985" fg:w="99"/><text x="1.5749%" y="559.50"></text></g><g><title>LIR_Assembler::call (117 samples, 0.02%)</title><rect x="1.3230%" y="565" width="0.0222%" height="15" fill="rgb(206,192,2)" fg:x="6975" fg:w="117"/><text x="1.5730%" y="575.50"></text></g><g><title>LIR_Assembler::emit_call (196 samples, 0.04%)</title><rect x="1.3147%" y="581" width="0.0372%" height="15" fill="rgb(241,108,4)" fg:x="6931" fg:w="196"/><text x="1.5647%" y="591.50"></text></g><g><title>LIR_Assembler::emit_op1 (168 samples, 0.03%)</title><rect x="1.3583%" y="581" width="0.0319%" height="15" fill="rgb(247,173,49)" fg:x="7161" fg:w="168"/><text x="1.6083%" y="591.50"></text></g><g><title>LIR_Assembler::emit_profile_call (60 samples, 0.01%)</title><rect x="1.3926%" y="581" width="0.0114%" height="15" fill="rgb(224,114,35)" fg:x="7342" fg:w="60"/><text x="1.6426%" y="591.50"></text></g><g><title>LIR_Assembler::emit_code (692 samples, 0.13%)</title><rect x="1.2972%" y="597" width="0.1313%" height="15" fill="rgb(245,159,27)" fg:x="6839" fg:w="692"/><text x="1.5472%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (136 samples, 0.03%)</title><rect x="1.4446%" y="565" width="0.0258%" height="15" fill="rgb(245,172,44)" fg:x="7616" fg:w="136"/><text x="1.6946%" y="575.50"></text></g><g><title>CodeEmitInfo::record_debug_info (136 samples, 0.03%)</title><rect x="1.4446%" y="549" width="0.0258%" height="15" fill="rgb(236,23,11)" fg:x="7616" fg:w="136"/><text x="1.6946%" y="559.50"></text></g><g><title>CounterOverflowStub::emit_code (167 samples, 0.03%)</title><rect x="1.4436%" y="581" width="0.0317%" height="15" fill="rgb(205,117,38)" fg:x="7611" fg:w="167"/><text x="1.6936%" y="591.50"></text></g><g><title>LIR_Assembler::add_call_info (64 samples, 0.01%)</title><rect x="1.4799%" y="565" width="0.0121%" height="15" fill="rgb(237,72,25)" fg:x="7802" fg:w="64"/><text x="1.7299%" y="575.50"></text></g><g><title>CodeEmitInfo::record_debug_info (64 samples, 0.01%)</title><rect x="1.4799%" y="549" width="0.0121%" height="15" fill="rgb(244,70,9)" fg:x="7802" fg:w="64"/><text x="1.7299%" y="559.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (82 samples, 0.02%)</title><rect x="1.4780%" y="581" width="0.0156%" height="15" fill="rgb(217,125,39)" fg:x="7792" fg:w="82"/><text x="1.7280%" y="591.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (394 samples, 0.07%)</title><rect x="1.4415%" y="597" width="0.0747%" height="15" fill="rgb(235,36,10)" fg:x="7600" fg:w="394"/><text x="1.6915%" y="607.50"></text></g><g><title>Compilation::emit_code_body (1,188 samples, 0.23%)</title><rect x="1.2930%" y="613" width="0.2253%" height="15" fill="rgb(251,123,47)" fg:x="6817" fg:w="1188"/><text x="1.5430%" y="623.50"></text></g><g><title>LIRGenerator::do_Base (89 samples, 0.02%)</title><rect x="1.5324%" y="565" width="0.0169%" height="15" fill="rgb(221,13,13)" fg:x="8079" fg:w="89"/><text x="1.7824%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (54 samples, 0.01%)</title><rect x="1.5563%" y="533" width="0.0102%" height="15" fill="rgb(238,131,9)" fg:x="8205" fg:w="54"/><text x="1.8063%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (220 samples, 0.04%)</title><rect x="1.5544%" y="549" width="0.0417%" height="15" fill="rgb(211,50,8)" fg:x="8195" fg:w="220"/><text x="1.8044%" y="559.50"></text></g><g><title>PhiResolverState::reset (149 samples, 0.03%)</title><rect x="1.5679%" y="533" width="0.0283%" height="15" fill="rgb(245,182,24)" fg:x="8266" fg:w="149"/><text x="1.8179%" y="543.50"></text></g><g><title>LIRGenerator::do_Goto (252 samples, 0.05%)</title><rect x="1.5508%" y="565" width="0.0478%" height="15" fill="rgb(242,14,37)" fg:x="8176" fg:w="252"/><text x="1.8008%" y="575.50"></text></g><g><title>LIRGenerator::do_If (67 samples, 0.01%)</title><rect x="1.5986%" y="565" width="0.0127%" height="15" fill="rgb(246,228,12)" fg:x="8428" fg:w="67"/><text x="1.8486%" y="575.50"></text></g><g><title>LIRGenerator::state_for (54 samples, 0.01%)</title><rect x="1.6261%" y="549" width="0.0102%" height="15" fill="rgb(213,55,15)" fg:x="8573" fg:w="54"/><text x="1.8761%" y="559.50"></text></g><g><title>LIRGenerator::do_Invoke (134 samples, 0.03%)</title><rect x="1.6119%" y="565" width="0.0254%" height="15" fill="rgb(209,9,3)" fg:x="8498" fg:w="134"/><text x="1.8619%" y="575.50"></text></g><g><title>LIRGenerator::state_for (56 samples, 0.01%)</title><rect x="1.6665%" y="549" width="0.0106%" height="15" fill="rgb(230,59,30)" fg:x="8786" fg:w="56"/><text x="1.9165%" y="559.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (104 samples, 0.02%)</title><rect x="1.6593%" y="565" width="0.0197%" height="15" fill="rgb(209,121,21)" fg:x="8748" fg:w="104"/><text x="1.9093%" y="575.50"></text></g><g><title>LIRGenerator::block_do (908 samples, 0.17%)</title><rect x="1.5208%" y="581" width="0.1722%" height="15" fill="rgb(220,109,13)" fg:x="8018" fg:w="908"/><text x="1.7708%" y="591.50"></text></g><g><title>BlockList::iterate_forward (914 samples, 0.17%)</title><rect x="1.5203%" y="597" width="0.1734%" height="15" fill="rgb(232,18,1)" fg:x="8015" fg:w="914"/><text x="1.7703%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (134 samples, 0.03%)</title><rect x="1.7213%" y="549" width="0.0254%" height="15" fill="rgb(215,41,42)" fg:x="9075" fg:w="134"/><text x="1.9713%" y="559.50"></text></g><g><title>LinearScanWalker::find_free_reg (97 samples, 0.02%)</title><rect x="1.7712%" y="517" width="0.0184%" height="15" fill="rgb(224,123,36)" fg:x="9338" fg:w="97"/><text x="2.0212%" y="527.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (171 samples, 0.03%)</title><rect x="1.7964%" y="517" width="0.0324%" height="15" fill="rgb(240,125,3)" fg:x="9471" fg:w="171"/><text x="2.0464%" y="527.50"></text></g><g><title>Interval::split (54 samples, 0.01%)</title><rect x="1.8319%" y="501" width="0.0102%" height="15" fill="rgb(205,98,50)" fg:x="9658" fg:w="54"/><text x="2.0819%" y="511.50"></text></g><g><title>LinearScanWalker::split_before_usage (81 samples, 0.02%)</title><rect x="1.8289%" y="517" width="0.0154%" height="15" fill="rgb(205,185,37)" fg:x="9642" fg:w="81"/><text x="2.0789%" y="527.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (495 samples, 0.09%)</title><rect x="1.7517%" y="533" width="0.0939%" height="15" fill="rgb(238,207,15)" fg:x="9235" fg:w="495"/><text x="2.0017%" y="543.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (67 samples, 0.01%)</title><rect x="1.8537%" y="517" width="0.0127%" height="15" fill="rgb(213,199,42)" fg:x="9773" fg:w="67"/><text x="2.1037%" y="527.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (141 samples, 0.03%)</title><rect x="1.8456%" y="533" width="0.0267%" height="15" fill="rgb(235,201,11)" fg:x="9730" fg:w="141"/><text x="2.0956%" y="543.50"></text></g><g><title>LinearScanWalker::activate_current (744 samples, 0.14%)</title><rect x="1.7467%" y="549" width="0.1411%" height="15" fill="rgb(207,46,11)" fg:x="9209" fg:w="744"/><text x="1.9967%" y="559.50"></text></g><g><title>IntervalWalker::walk_to (939 samples, 0.18%)</title><rect x="1.7103%" y="565" width="0.1781%" height="15" fill="rgb(241,35,35)" fg:x="9017" fg:w="939"/><text x="1.9603%" y="575.50"></text></g><g><title>LinearScan::allocate_registers (1,017 samples, 0.19%)</title><rect x="1.7060%" y="581" width="0.1929%" height="15" fill="rgb(243,32,47)" fg:x="8994" fg:w="1017"/><text x="1.9560%" y="591.50"></text></g><g><title>LIR_OpVisitState::visit (103 samples, 0.02%)</title><rect x="1.9321%" y="549" width="0.0195%" height="15" fill="rgb(247,202,23)" fg:x="10186" fg:w="103"/><text x="2.1821%" y="559.50"></text></g><g><title>LinearScan::color_lir_opr (61 samples, 0.01%)</title><rect x="1.9520%" y="549" width="0.0116%" height="15" fill="rgb(219,102,11)" fg:x="10291" fg:w="61"/><text x="2.2020%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (69 samples, 0.01%)</title><rect x="1.9759%" y="533" width="0.0131%" height="15" fill="rgb(243,110,44)" fg:x="10417" fg:w="69"/><text x="2.2259%" y="543.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (153 samples, 0.03%)</title><rect x="1.9635%" y="549" width="0.0290%" height="15" fill="rgb(222,74,54)" fg:x="10352" fg:w="153"/><text x="2.2135%" y="559.50"></text></g><g><title>IntervalWalker::walk_to (109 samples, 0.02%)</title><rect x="2.0013%" y="517" width="0.0207%" height="15" fill="rgb(216,99,12)" fg:x="10551" fg:w="109"/><text x="2.2513%" y="527.50"></text></g><g><title>LinearScan::compute_oop_map (189 samples, 0.04%)</title><rect x="1.9948%" y="533" width="0.0358%" height="15" fill="rgb(226,22,26)" fg:x="10517" fg:w="189"/><text x="2.2448%" y="543.50"></text></g><g><title>LinearScan::compute_oop_map (202 samples, 0.04%)</title><rect x="1.9926%" y="549" width="0.0383%" height="15" fill="rgb(217,163,10)" fg:x="10505" fg:w="202"/><text x="2.2426%" y="559.50"></text></g><g><title>LinearScan::assign_reg_num (693 samples, 0.13%)</title><rect x="1.8998%" y="565" width="0.1314%" height="15" fill="rgb(213,25,53)" fg:x="10016" fg:w="693"/><text x="2.1498%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (729 samples, 0.14%)</title><rect x="1.8989%" y="581" width="0.1383%" height="15" fill="rgb(252,105,26)" fg:x="10011" fg:w="729"/><text x="2.1489%" y="591.50"></text></g><g><title>LIR_OpVisitState::visit (90 samples, 0.02%)</title><rect x="2.1003%" y="565" width="0.0171%" height="15" fill="rgb(220,39,43)" fg:x="11073" fg:w="90"/><text x="2.3503%" y="575.50"></text></g><g><title>LinearScan::add_def (63 samples, 0.01%)</title><rect x="2.1174%" y="565" width="0.0119%" height="15" fill="rgb(229,68,48)" fg:x="11163" fg:w="63"/><text x="2.3674%" y="575.50"></text></g><g><title>LinearScan::create_interval (58 samples, 0.01%)</title><rect x="2.1413%" y="549" width="0.0110%" height="15" fill="rgb(252,8,32)" fg:x="11289" fg:w="58"/><text x="2.3913%" y="559.50"></text></g><g><title>LinearScan::add_temp (104 samples, 0.02%)</title><rect x="2.1327%" y="565" width="0.0197%" height="15" fill="rgb(223,20,43)" fg:x="11244" fg:w="104"/><text x="2.3827%" y="575.50"></text></g><g><title>Interval::Interval (56 samples, 0.01%)</title><rect x="2.1743%" y="533" width="0.0106%" height="15" fill="rgb(229,81,49)" fg:x="11463" fg:w="56"/><text x="2.4243%" y="543.50"></text></g><g><title>LinearScan::create_interval (85 samples, 0.02%)</title><rect x="2.1710%" y="549" width="0.0161%" height="15" fill="rgb(236,28,36)" fg:x="11446" fg:w="85"/><text x="2.4210%" y="559.50"></text></g><g><title>LinearScan::add_use (184 samples, 0.03%)</title><rect x="2.1525%" y="565" width="0.0349%" height="15" fill="rgb(249,185,26)" fg:x="11348" fg:w="184"/><text x="2.4025%" y="575.50"></text></g><g><title>LinearScan::build_intervals (872 samples, 0.17%)</title><rect x="2.0371%" y="581" width="0.1654%" height="15" fill="rgb(249,174,33)" fg:x="10740" fg:w="872"/><text x="2.2871%" y="591.50"></text></g><g><title>LinearScan::compute_global_live_sets (68 samples, 0.01%)</title><rect x="2.2025%" y="581" width="0.0129%" height="15" fill="rgb(233,201,37)" fg:x="11612" fg:w="68"/><text x="2.4525%" y="591.50"></text></g><g><title>LIR_OpVisitState::visit (98 samples, 0.02%)</title><rect x="2.2426%" y="565" width="0.0186%" height="15" fill="rgb(221,78,26)" fg:x="11823" fg:w="98"/><text x="2.4926%" y="575.50"></text></g><g><title>LinearScan::compute_local_live_sets (288 samples, 0.05%)</title><rect x="2.2154%" y="581" width="0.0546%" height="15" fill="rgb(250,127,30)" fg:x="11680" fg:w="288"/><text x="2.4654%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (82 samples, 0.02%)</title><rect x="2.2701%" y="581" width="0.0156%" height="15" fill="rgb(230,49,44)" fg:x="11968" fg:w="82"/><text x="2.5201%" y="591.50"></text></g><g><title>LinearScan::number_instructions (58 samples, 0.01%)</title><rect x="2.2856%" y="581" width="0.0110%" height="15" fill="rgb(229,67,23)" fg:x="12050" fg:w="58"/><text x="2.5356%" y="591.50"></text></g><g><title>LinearScan::resolve_collect_mappings (89 samples, 0.02%)</title><rect x="2.3032%" y="565" width="0.0169%" height="15" fill="rgb(249,83,47)" fg:x="12143" fg:w="89"/><text x="2.5532%" y="575.50"></text></g><g><title>LinearScan::resolve_data_flow (152 samples, 0.03%)</title><rect x="2.2972%" y="581" width="0.0288%" height="15" fill="rgb(215,43,3)" fg:x="12111" fg:w="152"/><text x="2.5472%" y="591.50"></text></g><g><title>LinearScan::do_linear_scan (3,445 samples, 0.65%)</title><rect x="1.6999%" y="597" width="0.6534%" height="15" fill="rgb(238,154,13)" fg:x="8962" fg:w="3445"/><text x="1.9499%" y="607.50"></text></g><g><title>Compilation::emit_lir (4,409 samples, 0.84%)</title><rect x="1.5184%" y="613" width="0.8363%" height="15" fill="rgb(219,56,2)" fg:x="8005" fg:w="4409"/><text x="1.7684%" y="623.50"></text></g><g><title>MethodData::allocate (60 samples, 0.01%)</title><rect x="2.3630%" y="565" width="0.0114%" height="15" fill="rgb(233,0,4)" fg:x="12458" fg:w="60"/><text x="2.6130%" y="575.50"></text></g><g><title>Method::build_interpreter_method_data (61 samples, 0.01%)</title><rect x="2.3630%" y="581" width="0.0116%" height="15" fill="rgb(235,30,7)" fg:x="12458" fg:w="61"/><text x="2.6130%" y="591.50"></text></g><g><title>Compilation::compile_java_method (10,548 samples, 2.00%)</title><rect x="0.3835%" y="629" width="2.0007%" height="15" fill="rgb(250,79,13)" fg:x="2022" fg:w="10548"/><text x="0.6335%" y="639.50">C..</text></g><g><title>ciMethod::ensure_method_data (117 samples, 0.02%)</title><rect x="2.3620%" y="613" width="0.0222%" height="15" fill="rgb(211,146,34)" fg:x="12453" fg:w="117"/><text x="2.6120%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (113 samples, 0.02%)</title><rect x="2.3628%" y="597" width="0.0214%" height="15" fill="rgb(228,22,38)" fg:x="12457" fg:w="113"/><text x="2.6128%" y="607.50"></text></g><g><title>CodeBuffer::finalize_oop_references (79 samples, 0.01%)</title><rect x="2.4072%" y="597" width="0.0150%" height="15" fill="rgb(235,168,5)" fg:x="12691" fg:w="79"/><text x="2.6572%" y="607.50"></text></g><g><title>CodeBuffer::relocate_code_to (124 samples, 0.02%)</title><rect x="2.4413%" y="565" width="0.0235%" height="15" fill="rgb(221,155,16)" fg:x="12871" fg:w="124"/><text x="2.6913%" y="575.50"></text></g><g><title>CodeBuffer::copy_code_to (135 samples, 0.03%)</title><rect x="2.4410%" y="581" width="0.0256%" height="15" fill="rgb(215,215,53)" fg:x="12869" fg:w="135"/><text x="2.6910%" y="591.50"></text></g><g><title>G1CollectedHeap::register_nmethod (57 samples, 0.01%)</title><rect x="2.4768%" y="581" width="0.0108%" height="15" fill="rgb(223,4,10)" fg:x="13058" fg:w="57"/><text x="2.7268%" y="591.50"></text></g><g><title>nmethod::oops_do (57 samples, 0.01%)</title><rect x="2.4768%" y="565" width="0.0108%" height="15" fill="rgb(234,103,6)" fg:x="13058" fg:w="57"/><text x="2.7268%" y="575.50"></text></g><g><title>nmethod::new_nmethod (501 samples, 0.10%)</title><rect x="2.4053%" y="613" width="0.0950%" height="15" fill="rgb(227,97,0)" fg:x="12681" fg:w="501"/><text x="2.6553%" y="623.50"></text></g><g><title>nmethod::nmethod (320 samples, 0.06%)</title><rect x="2.4396%" y="597" width="0.0607%" height="15" fill="rgb(234,150,53)" fg:x="12862" fg:w="320"/><text x="2.6896%" y="607.50"></text></g><g><title>Compilation::compile_method (11,167 samples, 2.12%)</title><rect x="0.3826%" y="645" width="2.1181%" height="15" fill="rgb(228,201,54)" fg:x="2017" fg:w="11167"/><text x="0.6326%" y="655.50">C..</text></g><g><title>ciEnv::register_method (575 samples, 0.11%)</title><rect x="2.3916%" y="629" width="0.1091%" height="15" fill="rgb(222,22,37)" fg:x="12609" fg:w="575"/><text x="2.6416%" y="639.50"></text></g><g><title>Compilation::Compilation (11,185 samples, 2.12%)</title><rect x="0.3814%" y="661" width="2.1215%" height="15" fill="rgb(237,53,32)" fg:x="2011" fg:w="11185"/><text x="0.6314%" y="671.50">C..</text></g><g><title>Compiler::compile_method (11,200 samples, 2.12%)</title><rect x="0.3788%" y="677" width="2.1244%" height="15" fill="rgb(233,25,53)" fg:x="1997" fg:w="11200"/><text x="0.6288%" y="687.50">C..</text></g><g><title>ciObjectFactory::get (53 samples, 0.01%)</title><rect x="2.5182%" y="661" width="0.0101%" height="15" fill="rgb(210,40,34)" fg:x="13276" fg:w="53"/><text x="2.7682%" y="671.50"></text></g><g><title>ciEnv::ciEnv (88 samples, 0.02%)</title><rect x="2.5117%" y="677" width="0.0167%" height="15" fill="rgb(241,220,44)" fg:x="13242" fg:w="88"/><text x="2.7617%" y="687.50"></text></g><g><title>ciMethod::ciMethod (101 samples, 0.02%)</title><rect x="2.5312%" y="629" width="0.0192%" height="15" fill="rgb(235,28,35)" fg:x="13345" fg:w="101"/><text x="2.7812%" y="639.50"></text></g><g><title>ciSignature::ciSignature (92 samples, 0.02%)</title><rect x="2.5329%" y="613" width="0.0175%" height="15" fill="rgb(210,56,17)" fg:x="13354" fg:w="92"/><text x="2.7829%" y="623.50"></text></g><g><title>ciEnv::get_method_from_handle (129 samples, 0.02%)</title><rect x="2.5284%" y="677" width="0.0245%" height="15" fill="rgb(224,130,29)" fg:x="13330" fg:w="129"/><text x="2.7784%" y="687.50"></text></g><g><title>ciObjectFactory::get_metadata (121 samples, 0.02%)</title><rect x="2.5299%" y="661" width="0.0230%" height="15" fill="rgb(235,212,8)" fg:x="13338" fg:w="121"/><text x="2.7799%" y="671.50"></text></g><g><title>ciObjectFactory::create_new_metadata (117 samples, 0.02%)</title><rect x="2.5307%" y="645" width="0.0222%" height="15" fill="rgb(223,33,50)" fg:x="13342" fg:w="117"/><text x="2.7807%" y="655.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,759 samples, 2.23%)</title><rect x="0.3297%" y="693" width="2.2304%" height="15" fill="rgb(219,149,13)" fg:x="1738" fg:w="11759"/><text x="0.5797%" y="703.50">C..</text></g><g><title>Monitor::wait (64 samples, 0.01%)</title><rect x="2.5739%" y="677" width="0.0121%" height="15" fill="rgb(250,156,29)" fg:x="13570" fg:w="64"/><text x="2.8239%" y="687.50"></text></g><g><title>Monitor::IWait (60 samples, 0.01%)</title><rect x="2.5747%" y="661" width="0.0114%" height="15" fill="rgb(216,193,19)" fg:x="13574" fg:w="60"/><text x="2.8247%" y="671.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.01%)</title><rect x="2.5752%" y="645" width="0.0108%" height="15" fill="rgb(216,135,14)" fg:x="13577" fg:w="57"/><text x="2.8252%" y="655.50"></text></g><g><title>TieredThresholdPolicy::select_task (57 samples, 0.01%)</title><rect x="2.5861%" y="677" width="0.0108%" height="15" fill="rgb(241,47,5)" fg:x="13634" fg:w="57"/><text x="2.8361%" y="687.50"></text></g><g><title>CompileQueue::get (149 samples, 0.03%)</title><rect x="2.5694%" y="693" width="0.0283%" height="15" fill="rgb(233,42,35)" fg:x="13546" fg:w="149"/><text x="2.8194%" y="703.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,967 samples, 2.27%)</title><rect x="0.3291%" y="709" width="2.2699%" height="15" fill="rgb(231,13,6)" fg:x="1735" fg:w="11967"/><text x="0.5791%" y="719.50">C..</text></g><g><title>Thread::call_run (11,969 samples, 2.27%)</title><rect x="0.3289%" y="741" width="2.2702%" height="15" fill="rgb(207,181,40)" fg:x="1734" fg:w="11969"/><text x="0.5789%" y="751.50">T..</text></g><g><title>JavaThread::thread_main_inner (11,968 samples, 2.27%)</title><rect x="0.3291%" y="725" width="2.2701%" height="15" fill="rgb(254,173,49)" fg:x="1735" fg:w="11968"/><text x="0.5791%" y="735.50">J..</text></g><g><title>__GI___clone (11,985 samples, 2.27%)</title><rect x="0.3262%" y="789" width="2.2733%" height="15" fill="rgb(221,1,38)" fg:x="1720" fg:w="11985"/><text x="0.5762%" y="799.50">_..</text></g><g><title>start_thread (11,971 samples, 2.27%)</title><rect x="0.3289%" y="773" width="2.2706%" height="15" fill="rgb(206,124,46)" fg:x="1734" fg:w="11971"/><text x="0.5789%" y="783.50">s..</text></g><g><title>thread_native_entry (11,971 samples, 2.27%)</title><rect x="0.3289%" y="757" width="2.2706%" height="15" fill="rgb(249,21,11)" fg:x="1734" fg:w="11971"/><text x="0.5789%" y="767.50">t..</text></g><g><title>C1_CompilerThre (13,734 samples, 2.61%)</title><rect x="0.0051%" y="805" width="2.6050%" height="15" fill="rgb(222,201,40)" fg:x="27" fg:w="13734"/><text x="0.2551%" y="815.50">C1..</text></g><g><title>PhaseIdealLoop::build_loop_early (104 samples, 0.02%)</title><rect x="2.6538%" y="789" width="0.0197%" height="15" fill="rgb(235,61,29)" fg:x="13991" fg:w="104"/><text x="2.9038%" y="799.50"></text></g><g><title>ProjNode::pinned (99 samples, 0.02%)</title><rect x="2.6547%" y="773" width="0.0188%" height="15" fill="rgb(219,207,3)" fg:x="13996" fg:w="99"/><text x="2.9047%" y="783.50"></text></g><g><title>MultiNode::is_CFG (57 samples, 0.01%)</title><rect x="2.9064%" y="773" width="0.0108%" height="15" fill="rgb(222,56,46)" fg:x="15323" fg:w="57"/><text x="3.1564%" y="783.50"></text></g><g><title>Node::is_CFG (73 samples, 0.01%)</title><rect x="2.9311%" y="773" width="0.0138%" height="15" fill="rgb(239,76,54)" fg:x="15453" fg:w="73"/><text x="3.1811%" y="783.50"></text></g><g><title>_dl_update_slotinfo (195 samples, 0.04%)</title><rect x="3.1684%" y="773" width="0.0370%" height="15" fill="rgb(231,124,27)" fg:x="16704" fg:w="195"/><text x="3.4184%" y="783.50"></text></g><g><title>update_get_addr (57 samples, 0.01%)</title><rect x="3.3125%" y="773" width="0.0108%" height="15" fill="rgb(249,195,6)" fg:x="17464" fg:w="57"/><text x="3.5625%" y="783.50"></text></g><g><title>[anon] (3,403 samples, 0.65%)</title><rect x="2.6788%" y="789" width="0.6455%" height="15" fill="rgb(237,174,47)" fg:x="14123" fg:w="3403"/><text x="2.9288%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (60 samples, 0.01%)</title><rect x="3.3554%" y="517" width="0.0114%" height="15" fill="rgb(206,201,31)" fg:x="17690" fg:w="60"/><text x="3.6054%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (60 samples, 0.01%)</title><rect x="3.3554%" y="501" width="0.0114%" height="15" fill="rgb(231,57,52)" fg:x="17690" fg:w="60"/><text x="3.6054%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (59 samples, 0.01%)</title><rect x="3.3556%" y="485" width="0.0112%" height="15" fill="rgb(248,177,22)" fg:x="17691" fg:w="59"/><text x="3.6056%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (110 samples, 0.02%)</title><rect x="3.3480%" y="533" width="0.0209%" height="15" fill="rgb(215,211,37)" fg:x="17651" fg:w="110"/><text x="3.5980%" y="543.50"></text></g><g><title>ciTypeFlow::df_flow_types (128 samples, 0.02%)</title><rect x="3.3448%" y="565" width="0.0243%" height="15" fill="rgb(241,128,51)" fg:x="17634" fg:w="128"/><text x="3.5948%" y="575.50"></text></g><g><title>ciTypeFlow::flow_block (127 samples, 0.02%)</title><rect x="3.3450%" y="549" width="0.0241%" height="15" fill="rgb(227,165,31)" fg:x="17635" fg:w="127"/><text x="3.5950%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (140 samples, 0.03%)</title><rect x="3.3431%" y="629" width="0.0266%" height="15" fill="rgb(228,167,24)" fg:x="17625" fg:w="140"/><text x="3.5931%" y="639.50"></text></g><g><title>ciMethod::get_flow_analysis (133 samples, 0.03%)</title><rect x="3.3444%" y="613" width="0.0252%" height="15" fill="rgb(228,143,12)" fg:x="17632" fg:w="133"/><text x="3.5944%" y="623.50"></text></g><g><title>ciTypeFlow::do_flow (133 samples, 0.03%)</title><rect x="3.3444%" y="597" width="0.0252%" height="15" fill="rgb(249,149,8)" fg:x="17632" fg:w="133"/><text x="3.5944%" y="607.50"></text></g><g><title>ciTypeFlow::flow_types (133 samples, 0.03%)</title><rect x="3.3444%" y="581" width="0.0252%" height="15" fill="rgb(243,35,44)" fg:x="17632" fg:w="133"/><text x="3.5944%" y="591.50"></text></g><g><title>Compile::call_generator (190 samples, 0.04%)</title><rect x="3.3343%" y="645" width="0.0360%" height="15" fill="rgb(246,89,9)" fg:x="17579" fg:w="190"/><text x="3.5843%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (82 samples, 0.02%)</title><rect x="3.3946%" y="437" width="0.0156%" height="15" fill="rgb(233,213,13)" fg:x="17897" fg:w="82"/><text x="3.6446%" y="447.50"></text></g><g><title>ciTypeFlow::df_flow_types (102 samples, 0.02%)</title><rect x="3.3914%" y="469" width="0.0193%" height="15" fill="rgb(233,141,41)" fg:x="17880" fg:w="102"/><text x="3.6414%" y="479.50"></text></g><g><title>ciTypeFlow::flow_block (93 samples, 0.02%)</title><rect x="3.3931%" y="453" width="0.0176%" height="15" fill="rgb(239,167,4)" fg:x="17889" fg:w="93"/><text x="3.6431%" y="463.50"></text></g><g><title>ciTypeFlow::do_flow (114 samples, 0.02%)</title><rect x="3.3910%" y="501" width="0.0216%" height="15" fill="rgb(209,217,16)" fg:x="17878" fg:w="114"/><text x="3.6410%" y="511.50"></text></g><g><title>ciTypeFlow::flow_types (114 samples, 0.02%)</title><rect x="3.3910%" y="485" width="0.0216%" height="15" fill="rgb(219,88,35)" fg:x="17878" fg:w="114"/><text x="3.6410%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (149 samples, 0.03%)</title><rect x="3.3846%" y="533" width="0.0283%" height="15" fill="rgb(220,193,23)" fg:x="17844" fg:w="149"/><text x="3.6346%" y="543.50"></text></g><g><title>ciMethod::get_flow_analysis (120 samples, 0.02%)</title><rect x="3.3901%" y="517" width="0.0228%" height="15" fill="rgb(230,90,52)" fg:x="17873" fg:w="120"/><text x="3.6401%" y="527.50"></text></g><g><title>Compile::call_generator (177 samples, 0.03%)</title><rect x="3.3804%" y="549" width="0.0336%" height="15" fill="rgb(252,106,19)" fg:x="17822" fg:w="177"/><text x="3.6304%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (55 samples, 0.01%)</title><rect x="3.4459%" y="437" width="0.0104%" height="15" fill="rgb(206,74,20)" fg:x="18167" fg:w="55"/><text x="3.6959%" y="447.50"></text></g><g><title>Compile::call_generator (71 samples, 0.01%)</title><rect x="3.4438%" y="453" width="0.0135%" height="15" fill="rgb(230,138,44)" fg:x="18156" fg:w="71"/><text x="3.6938%" y="463.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="3.4940%" y="341" width="0.0163%" height="15" fill="rgb(235,182,43)" fg:x="18421" fg:w="86"/><text x="3.7440%" y="351.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="3.4940%" y="357" width="0.0165%" height="15" fill="rgb(242,16,51)" fg:x="18421" fg:w="87"/><text x="3.7440%" y="367.50"></text></g><g><title>Parse::do_call (172 samples, 0.03%)</title><rect x="3.4827%" y="373" width="0.0326%" height="15" fill="rgb(248,9,4)" fg:x="18361" fg:w="172"/><text x="3.7327%" y="383.50"></text></g><g><title>Parse::do_field_access (65 samples, 0.01%)</title><rect x="3.5164%" y="373" width="0.0123%" height="15" fill="rgb(210,31,22)" fg:x="18539" fg:w="65"/><text x="3.7664%" y="383.50"></text></g><g><title>Parse::do_one_block (335 samples, 0.06%)</title><rect x="3.4751%" y="405" width="0.0635%" height="15" fill="rgb(239,54,39)" fg:x="18321" fg:w="335"/><text x="3.7251%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (327 samples, 0.06%)</title><rect x="3.4766%" y="389" width="0.0620%" height="15" fill="rgb(230,99,41)" fg:x="18329" fg:w="327"/><text x="3.7266%" y="399.50"></text></g><g><title>Parse::do_all_blocks (340 samples, 0.06%)</title><rect x="3.4749%" y="421" width="0.0645%" height="15" fill="rgb(253,106,12)" fg:x="18320" fg:w="340"/><text x="3.7249%" y="431.50"></text></g><g><title>ParseGenerator::generate (410 samples, 0.08%)</title><rect x="3.4684%" y="453" width="0.0778%" height="15" fill="rgb(213,46,41)" fg:x="18286" fg:w="410"/><text x="3.7184%" y="463.50"></text></g><g><title>Parse::Parse (410 samples, 0.08%)</title><rect x="3.4684%" y="437" width="0.0778%" height="15" fill="rgb(215,133,35)" fg:x="18286" fg:w="410"/><text x="3.7184%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (68 samples, 0.01%)</title><rect x="3.5462%" y="453" width="0.0129%" height="15" fill="rgb(213,28,5)" fg:x="18696" fg:w="68"/><text x="3.7962%" y="463.50"></text></g><g><title>Parse::do_call (634 samples, 0.12%)</title><rect x="3.4430%" y="469" width="0.1203%" height="15" fill="rgb(215,77,49)" fg:x="18152" fg:w="634"/><text x="3.6930%" y="479.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="3.5657%" y="453" width="0.0106%" height="15" fill="rgb(248,100,22)" fg:x="18799" fg:w="56"/><text x="3.8157%" y="463.50"></text></g><g><title>GraphKit::access_store_at (53 samples, 0.01%)</title><rect x="3.5769%" y="437" width="0.0101%" height="15" fill="rgb(208,67,9)" fg:x="18858" fg:w="53"/><text x="3.8269%" y="447.50"></text></g><g><title>BarrierSetC2::store_at (53 samples, 0.01%)</title><rect x="3.5769%" y="421" width="0.0101%" height="15" fill="rgb(219,133,21)" fg:x="18858" fg:w="53"/><text x="3.8269%" y="431.50"></text></g><g><title>Parse::do_put_xxx (60 samples, 0.01%)</title><rect x="3.5764%" y="453" width="0.0114%" height="15" fill="rgb(246,46,29)" fg:x="18855" fg:w="60"/><text x="3.8264%" y="463.50"></text></g><g><title>Parse::do_field_access (135 samples, 0.03%)</title><rect x="3.5642%" y="469" width="0.0256%" height="15" fill="rgb(246,185,52)" fg:x="18791" fg:w="135"/><text x="3.8142%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (885 samples, 0.17%)</title><rect x="3.4364%" y="485" width="0.1679%" height="15" fill="rgb(252,136,11)" fg:x="18117" fg:w="885"/><text x="3.6864%" y="495.50"></text></g><g><title>Parse::do_one_block (899 samples, 0.17%)</title><rect x="3.4341%" y="501" width="0.1705%" height="15" fill="rgb(219,138,53)" fg:x="18105" fg:w="899"/><text x="3.6841%" y="511.50"></text></g><g><title>Parse::do_all_blocks (912 samples, 0.17%)</title><rect x="3.4339%" y="517" width="0.1730%" height="15" fill="rgb(211,51,23)" fg:x="18104" fg:w="912"/><text x="3.6839%" y="527.50"></text></g><g><title>Parse::Parse (991 samples, 0.19%)</title><rect x="3.4256%" y="533" width="0.1880%" height="15" fill="rgb(247,221,28)" fg:x="18060" fg:w="991"/><text x="3.6756%" y="543.50"></text></g><g><title>ParseGenerator::generate (993 samples, 0.19%)</title><rect x="3.4254%" y="549" width="0.1883%" height="15" fill="rgb(251,222,45)" fg:x="18059" fg:w="993"/><text x="3.6754%" y="559.50"></text></g><g><title>Parse::do_call (78 samples, 0.01%)</title><rect x="3.6188%" y="453" width="0.0148%" height="15" fill="rgb(217,162,53)" fg:x="19079" fg:w="78"/><text x="3.8688%" y="463.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="3.6181%" y="485" width="0.0195%" height="15" fill="rgb(229,93,14)" fg:x="19075" fg:w="103"/><text x="3.8681%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (102 samples, 0.02%)</title><rect x="3.6183%" y="469" width="0.0193%" height="15" fill="rgb(209,67,49)" fg:x="19076" fg:w="102"/><text x="3.8683%" y="479.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.02%)</title><rect x="3.6179%" y="501" width="0.0199%" height="15" fill="rgb(213,87,29)" fg:x="19074" fg:w="105"/><text x="3.8679%" y="511.50"></text></g><g><title>ParseGenerator::generate (117 samples, 0.02%)</title><rect x="3.6171%" y="533" width="0.0222%" height="15" fill="rgb(205,151,52)" fg:x="19070" fg:w="117"/><text x="3.8671%" y="543.50"></text></g><g><title>Parse::Parse (117 samples, 0.02%)</title><rect x="3.6171%" y="517" width="0.0222%" height="15" fill="rgb(253,215,39)" fg:x="19070" fg:w="117"/><text x="3.8671%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (162 samples, 0.03%)</title><rect x="3.6137%" y="549" width="0.0307%" height="15" fill="rgb(221,220,41)" fg:x="19052" fg:w="162"/><text x="3.8637%" y="559.50"></text></g><g><title>Parse::do_call (1,421 samples, 0.27%)</title><rect x="3.3804%" y="565" width="0.2695%" height="15" fill="rgb(218,133,21)" fg:x="17822" fg:w="1421"/><text x="3.6304%" y="575.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="3.6545%" y="549" width="0.0106%" height="15" fill="rgb(221,193,43)" fg:x="19267" fg:w="56"/><text x="3.9045%" y="559.50"></text></g><g><title>GraphKit::access_store_at (66 samples, 0.01%)</title><rect x="3.6653%" y="533" width="0.0125%" height="15" fill="rgb(240,128,52)" fg:x="19324" fg:w="66"/><text x="3.9153%" y="543.50"></text></g><g><title>BarrierSetC2::store_at (66 samples, 0.01%)</title><rect x="3.6653%" y="517" width="0.0125%" height="15" fill="rgb(253,114,12)" fg:x="19324" fg:w="66"/><text x="3.9153%" y="527.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (65 samples, 0.01%)</title><rect x="3.6655%" y="501" width="0.0123%" height="15" fill="rgb(215,223,47)" fg:x="19325" fg:w="65"/><text x="3.9155%" y="511.50"></text></g><g><title>Parse::do_put_xxx (70 samples, 0.01%)</title><rect x="3.6651%" y="549" width="0.0133%" height="15" fill="rgb(248,225,23)" fg:x="19323" fg:w="70"/><text x="3.9151%" y="559.50"></text></g><g><title>Parse::do_field_access (143 samples, 0.03%)</title><rect x="3.6524%" y="565" width="0.0271%" height="15" fill="rgb(250,108,0)" fg:x="19256" fg:w="143"/><text x="3.9024%" y="575.50"></text></g><g><title>Parse::do_one_block (1,662 samples, 0.32%)</title><rect x="3.3740%" y="597" width="0.3152%" height="15" fill="rgb(228,208,7)" fg:x="17788" fg:w="1662"/><text x="3.6240%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (1,656 samples, 0.31%)</title><rect x="3.3751%" y="581" width="0.3141%" height="15" fill="rgb(244,45,10)" fg:x="17794" fg:w="1656"/><text x="3.6251%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,663 samples, 0.32%)</title><rect x="3.3740%" y="613" width="0.3154%" height="15" fill="rgb(207,125,25)" fg:x="17788" fg:w="1663"/><text x="3.6240%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,677 samples, 0.32%)</title><rect x="3.3715%" y="645" width="0.3181%" height="15" fill="rgb(210,195,18)" fg:x="17775" fg:w="1677"/><text x="3.6215%" y="655.50"></text></g><g><title>Parse::Parse (1,677 samples, 0.32%)</title><rect x="3.3715%" y="629" width="0.3181%" height="15" fill="rgb(249,80,12)" fg:x="17775" fg:w="1677"/><text x="3.6215%" y="639.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="3.7093%" y="405" width="0.0101%" height="15" fill="rgb(221,65,9)" fg:x="19556" fg:w="53"/><text x="3.9593%" y="415.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="3.7089%" y="437" width="0.0112%" height="15" fill="rgb(235,49,36)" fg:x="19554" fg:w="59"/><text x="3.9589%" y="447.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="3.7089%" y="421" width="0.0112%" height="15" fill="rgb(225,32,20)" fg:x="19554" fg:w="59"/><text x="3.9589%" y="431.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="3.7044%" y="453" width="0.0176%" height="15" fill="rgb(215,141,46)" fg:x="19530" fg:w="93"/><text x="3.9544%" y="463.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="3.7023%" y="485" width="0.0288%" height="15" fill="rgb(250,160,47)" fg:x="19519" fg:w="152"/><text x="3.9523%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.03%)</title><rect x="3.7025%" y="469" width="0.0286%" height="15" fill="rgb(216,222,40)" fg:x="19520" fg:w="151"/><text x="3.9525%" y="479.50"></text></g><g><title>Parse::do_all_blocks (154 samples, 0.03%)</title><rect x="3.7021%" y="501" width="0.0292%" height="15" fill="rgb(234,217,39)" fg:x="19518" fg:w="154"/><text x="3.9521%" y="511.50"></text></g><g><title>ParseGenerator::generate (174 samples, 0.03%)</title><rect x="3.7000%" y="533" width="0.0330%" height="15" fill="rgb(207,178,40)" fg:x="19507" fg:w="174"/><text x="3.9500%" y="543.50"></text></g><g><title>Parse::Parse (173 samples, 0.03%)</title><rect x="3.7002%" y="517" width="0.0328%" height="15" fill="rgb(221,136,13)" fg:x="19508" fg:w="173"/><text x="3.9502%" y="527.50"></text></g><g><title>Parse::do_call (258 samples, 0.05%)</title><rect x="3.6921%" y="549" width="0.0489%" height="15" fill="rgb(249,199,10)" fg:x="19465" fg:w="258"/><text x="3.9421%" y="559.50"></text></g><g><title>Parse::do_one_block (315 samples, 0.06%)</title><rect x="3.6900%" y="581" width="0.0597%" height="15" fill="rgb(249,222,13)" fg:x="19454" fg:w="315"/><text x="3.9400%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (310 samples, 0.06%)</title><rect x="3.6909%" y="565" width="0.0588%" height="15" fill="rgb(244,185,38)" fg:x="19459" fg:w="310"/><text x="3.9409%" y="575.50"></text></g><g><title>Parse::do_all_blocks (316 samples, 0.06%)</title><rect x="3.6900%" y="597" width="0.0599%" height="15" fill="rgb(236,202,9)" fg:x="19454" fg:w="316"/><text x="3.9400%" y="607.50"></text></g><g><title>ParseGenerator::generate (319 samples, 0.06%)</title><rect x="3.6896%" y="629" width="0.0605%" height="15" fill="rgb(250,229,37)" fg:x="19452" fg:w="319"/><text x="3.9396%" y="639.50"></text></g><g><title>Parse::Parse (319 samples, 0.06%)</title><rect x="3.6896%" y="613" width="0.0605%" height="15" fill="rgb(206,174,23)" fg:x="19452" fg:w="319"/><text x="3.9396%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.01%)</title><rect x="3.7501%" y="629" width="0.0112%" height="15" fill="rgb(211,33,43)" fg:x="19771" fg:w="59"/><text x="4.0001%" y="639.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="3.7501%" y="613" width="0.0112%" height="15" fill="rgb(245,58,50)" fg:x="19771" fg:w="59"/><text x="4.0001%" y="623.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="3.7501%" y="597" width="0.0112%" height="15" fill="rgb(244,68,36)" fg:x="19771" fg:w="59"/><text x="4.0001%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (379 samples, 0.07%)</title><rect x="3.6896%" y="645" width="0.0719%" height="15" fill="rgb(232,229,15)" fg:x="19452" fg:w="379"/><text x="3.9396%" y="655.50"></text></g><g><title>Parse::do_call (2,265 samples, 0.43%)</title><rect x="3.3343%" y="661" width="0.4296%" height="15" fill="rgb(254,30,23)" fg:x="17579" fg:w="2265"/><text x="3.5843%" y="671.50"></text></g><g><title>Parse::do_all_blocks (2,285 samples, 0.43%)</title><rect x="3.3343%" y="709" width="0.4334%" height="15" fill="rgb(235,160,14)" fg:x="17579" fg:w="2285"/><text x="3.5843%" y="719.50"></text></g><g><title>Parse::do_one_block (2,285 samples, 0.43%)</title><rect x="3.3343%" y="693" width="0.4334%" height="15" fill="rgb(212,155,44)" fg:x="17579" fg:w="2285"/><text x="3.5843%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (2,285 samples, 0.43%)</title><rect x="3.3343%" y="677" width="0.4334%" height="15" fill="rgb(226,2,50)" fg:x="17579" fg:w="2285"/><text x="3.5843%" y="687.50"></text></g><g><title>ParseGenerator::generate (2,287 samples, 0.43%)</title><rect x="3.3343%" y="741" width="0.4338%" height="15" fill="rgb(234,177,6)" fg:x="17579" fg:w="2287"/><text x="3.5843%" y="751.50"></text></g><g><title>Parse::Parse (2,287 samples, 0.43%)</title><rect x="3.3343%" y="725" width="0.4338%" height="15" fill="rgb(217,24,9)" fg:x="17579" fg:w="2287"/><text x="3.5843%" y="735.50"></text></g><g><title>C2Compiler::compile_method (2,315 samples, 0.44%)</title><rect x="3.3292%" y="773" width="0.4391%" height="15" fill="rgb(220,13,46)" fg:x="17552" fg:w="2315"/><text x="3.5792%" y="783.50"></text></g><g><title>Compile::Compile (2,315 samples, 0.44%)</title><rect x="3.3292%" y="757" width="0.4391%" height="15" fill="rgb(239,221,27)" fg:x="17552" fg:w="2315"/><text x="3.5792%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (55 samples, 0.01%)</title><rect x="3.7805%" y="725" width="0.0104%" height="15" fill="rgb(222,198,25)" fg:x="19931" fg:w="55"/><text x="4.0305%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (55 samples, 0.01%)</title><rect x="3.7805%" y="709" width="0.0104%" height="15" fill="rgb(211,99,13)" fg:x="19931" fg:w="55"/><text x="4.0305%" y="719.50"></text></g><g><title>PhaseCFG::sched_call (199 samples, 0.04%)</title><rect x="3.7909%" y="709" width="0.0377%" height="15" fill="rgb(232,111,31)" fg:x="19986" fg:w="199"/><text x="4.0409%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (200 samples, 0.04%)</title><rect x="3.7909%" y="725" width="0.0379%" height="15" fill="rgb(245,82,37)" fg:x="19986" fg:w="200"/><text x="4.0409%" y="735.50"></text></g><g><title>PhaseCFG::do_global_code_motion (261 samples, 0.05%)</title><rect x="3.7797%" y="757" width="0.0495%" height="15" fill="rgb(227,149,46)" fg:x="19927" fg:w="261"/><text x="4.0297%" y="767.50"></text></g><g><title>PhaseCFG::global_code_motion (261 samples, 0.05%)</title><rect x="3.7797%" y="741" width="0.0495%" height="15" fill="rgb(218,36,50)" fg:x="19927" fg:w="261"/><text x="4.0297%" y="751.50"></text></g><g><title>Compile::Code_Gen (370 samples, 0.07%)</title><rect x="3.7691%" y="773" width="0.0702%" height="15" fill="rgb(226,80,48)" fg:x="19871" fg:w="370"/><text x="4.0191%" y="783.50"></text></g><g><title>OopFlow::compute_reach (184 samples, 0.03%)</title><rect x="3.9392%" y="709" width="0.0349%" height="15" fill="rgb(238,224,15)" fg:x="20768" fg:w="184"/><text x="4.1892%" y="719.50"></text></g><g><title>OopFlow::build_oop_map (111 samples, 0.02%)</title><rect x="3.9531%" y="693" width="0.0211%" height="15" fill="rgb(241,136,10)" fg:x="20841" fg:w="111"/><text x="4.2031%" y="703.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (85 samples, 0.02%)</title><rect x="3.9768%" y="709" width="0.0161%" height="15" fill="rgb(208,32,45)" fg:x="20966" fg:w="85"/><text x="4.2268%" y="719.50"></text></g><g><title>Compile::BuildOopMaps (795 samples, 0.15%)</title><rect x="3.8434%" y="725" width="0.1508%" height="15" fill="rgb(207,135,9)" fg:x="20263" fg:w="795"/><text x="4.0934%" y="735.50"></text></g><g><title>Compile::scratch_emit_size (178 samples, 0.03%)</title><rect x="4.0299%" y="693" width="0.0338%" height="15" fill="rgb(206,86,44)" fg:x="21246" fg:w="178"/><text x="4.2799%" y="703.50"></text></g><g><title>Compile::shorten_branches (346 samples, 0.07%)</title><rect x="4.0031%" y="709" width="0.0656%" height="15" fill="rgb(245,177,15)" fg:x="21105" fg:w="346"/><text x="4.2531%" y="719.50"></text></g><g><title>Compile::init_buffer (396 samples, 0.08%)</title><rect x="3.9942%" y="725" width="0.0751%" height="15" fill="rgb(206,64,50)" fg:x="21058" fg:w="396"/><text x="4.2442%" y="735.50"></text></g><g><title>Compile::Output (1,210 samples, 0.23%)</title><rect x="3.8404%" y="741" width="0.2295%" height="15" fill="rgb(234,36,40)" fg:x="20247" fg:w="1210"/><text x="4.0904%" y="751.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (60 samples, 0.01%)</title><rect x="4.1160%" y="709" width="0.0114%" height="15" fill="rgb(213,64,8)" fg:x="21700" fg:w="60"/><text x="4.3660%" y="719.50"></text></g><g><title>DebugInformationRecorder::describe_scope (59 samples, 0.01%)</title><rect x="4.1274%" y="709" width="0.0112%" height="15" fill="rgb(210,75,36)" fg:x="21760" fg:w="59"/><text x="4.3774%" y="719.50"></text></g><g><title>Compile::Process_OopMap_Node (248 samples, 0.05%)</title><rect x="4.1010%" y="725" width="0.0470%" height="15" fill="rgb(229,88,21)" fg:x="21621" fg:w="248"/><text x="4.3510%" y="735.50"></text></g><g><title>Compile::fill_buffer (576 samples, 0.11%)</title><rect x="4.0699%" y="741" width="0.1093%" height="15" fill="rgb(252,204,47)" fg:x="21457" fg:w="576"/><text x="4.3199%" y="751.50"></text></g><g><title>Matcher::find_shared (364 samples, 0.07%)</title><rect x="4.1974%" y="725" width="0.0690%" height="15" fill="rgb(208,77,27)" fg:x="22129" fg:w="364"/><text x="4.4474%" y="735.50"></text></g><g><title>Arena::contains (589 samples, 0.11%)</title><rect x="4.3459%" y="709" width="0.1117%" height="15" fill="rgb(221,76,26)" fg:x="22912" fg:w="589"/><text x="4.5959%" y="719.50"></text></g><g><title>Matcher::match_tree (90 samples, 0.02%)</title><rect x="4.4724%" y="693" width="0.0171%" height="15" fill="rgb(225,139,18)" fg:x="23579" fg:w="90"/><text x="4.7224%" y="703.50"></text></g><g><title>Matcher::match_sfpt (125 samples, 0.02%)</title><rect x="4.4680%" y="709" width="0.0237%" height="15" fill="rgb(230,137,11)" fg:x="23556" fg:w="125"/><text x="4.7180%" y="719.50"></text></g><g><title>Matcher::Label_Root (57 samples, 0.01%)</title><rect x="4.5706%" y="645" width="0.0108%" height="15" fill="rgb(212,28,1)" fg:x="24097" fg:w="57"/><text x="4.8206%" y="655.50"></text></g><g><title>Matcher::Label_Root (139 samples, 0.03%)</title><rect x="4.5665%" y="661" width="0.0264%" height="15" fill="rgb(248,164,17)" fg:x="24075" fg:w="139"/><text x="4.8165%" y="671.50"></text></g><g><title>State::DFA (69 samples, 0.01%)</title><rect x="4.5934%" y="661" width="0.0131%" height="15" fill="rgb(222,171,42)" fg:x="24217" fg:w="69"/><text x="4.8434%" y="671.50"></text></g><g><title>Matcher::Label_Root (305 samples, 0.06%)</title><rect x="4.5507%" y="677" width="0.0579%" height="15" fill="rgb(243,84,45)" fg:x="23992" fg:w="305"/><text x="4.8007%" y="687.50"></text></g><g><title>Matcher::Label_Root (486 samples, 0.09%)</title><rect x="4.5346%" y="693" width="0.0922%" height="15" fill="rgb(252,49,23)" fg:x="23907" fg:w="486"/><text x="4.7846%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (70 samples, 0.01%)</title><rect x="4.6382%" y="645" width="0.0133%" height="15" fill="rgb(215,19,7)" fg:x="24453" fg:w="70"/><text x="4.8882%" y="655.50"></text></g><g><title>Matcher::ReduceInst (111 samples, 0.02%)</title><rect x="4.6363%" y="661" width="0.0211%" height="15" fill="rgb(238,81,41)" fg:x="24443" fg:w="111"/><text x="4.8863%" y="671.50"></text></g><g><title>Matcher::ReduceInst_Interior (186 samples, 0.04%)</title><rect x="4.6329%" y="677" width="0.0353%" height="15" fill="rgb(210,199,37)" fg:x="24425" fg:w="186"/><text x="4.8829%" y="687.50"></text></g><g><title>State::MachNodeGenerator (64 samples, 0.01%)</title><rect x="4.6717%" y="677" width="0.0121%" height="15" fill="rgb(244,192,49)" fg:x="24630" fg:w="64"/><text x="4.9217%" y="687.50"></text></g><g><title>Matcher::ReduceInst (332 samples, 0.06%)</title><rect x="4.6268%" y="693" width="0.0630%" height="15" fill="rgb(226,211,11)" fg:x="24393" fg:w="332"/><text x="4.8768%" y="703.50"></text></g><g><title>Matcher::match_tree (1,067 samples, 0.20%)</title><rect x="4.4917%" y="709" width="0.2024%" height="15" fill="rgb(236,162,54)" fg:x="23681" fg:w="1067"/><text x="4.7417%" y="719.50"></text></g><g><title>Node::clone (72 samples, 0.01%)</title><rect x="4.6953%" y="709" width="0.0137%" height="15" fill="rgb(220,229,9)" fg:x="24754" fg:w="72"/><text x="4.9453%" y="719.50"></text></g><g><title>Matcher::xform (2,369 samples, 0.45%)</title><rect x="4.2693%" y="725" width="0.4493%" height="15" fill="rgb(250,87,22)" fg:x="22508" fg:w="2369"/><text x="4.5193%" y="735.50"></text></g><g><title>Matcher::match (2,832 samples, 0.54%)</title><rect x="4.1828%" y="741" width="0.5372%" height="15" fill="rgb(239,43,17)" fg:x="22052" fg:w="2832"/><text x="4.4328%" y="751.50"></text></g><g><title>PhaseBlockLayout::find_edges (53 samples, 0.01%)</title><rect x="4.7205%" y="725" width="0.0101%" height="15" fill="rgb(231,177,25)" fg:x="24887" fg:w="53"/><text x="4.9705%" y="735.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (149 samples, 0.03%)</title><rect x="4.7199%" y="741" width="0.0283%" height="15" fill="rgb(219,179,1)" fg:x="24884" fg:w="149"/><text x="4.9699%" y="751.50"></text></g><g><title>PhaseCFG::PhaseCFG (155 samples, 0.03%)</title><rect x="4.7482%" y="741" width="0.0294%" height="15" fill="rgb(238,219,53)" fg:x="25033" fg:w="155"/><text x="4.9982%" y="751.50"></text></g><g><title>PhaseCFG::build_cfg (149 samples, 0.03%)</title><rect x="4.7493%" y="725" width="0.0283%" height="15" fill="rgb(232,167,36)" fg:x="25039" fg:w="149"/><text x="4.9993%" y="735.50"></text></g><g><title>PhaseCFG::build_dominator_tree (102 samples, 0.02%)</title><rect x="4.7776%" y="725" width="0.0193%" height="15" fill="rgb(244,19,51)" fg:x="25188" fg:w="102"/><text x="5.0276%" y="735.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (54 samples, 0.01%)</title><rect x="4.7971%" y="725" width="0.0102%" height="15" fill="rgb(224,6,22)" fg:x="25291" fg:w="54"/><text x="5.0471%" y="735.50"></text></g><g><title>PhaseCFG::implicit_null_check (57 samples, 0.01%)</title><rect x="4.8802%" y="709" width="0.0108%" height="15" fill="rgb(224,145,5)" fg:x="25729" fg:w="57"/><text x="5.1302%" y="719.50"></text></g><g><title>Node_Backward_Iterator::next (276 samples, 0.05%)</title><rect x="4.9223%" y="693" width="0.0524%" height="15" fill="rgb(234,130,49)" fg:x="25951" fg:w="276"/><text x="5.1723%" y="703.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (143 samples, 0.03%)</title><rect x="4.9747%" y="693" width="0.0271%" height="15" fill="rgb(254,6,2)" fg:x="26227" fg:w="143"/><text x="5.2247%" y="703.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (173 samples, 0.03%)</title><rect x="5.0018%" y="693" width="0.0328%" height="15" fill="rgb(208,96,46)" fg:x="26370" fg:w="173"/><text x="5.2518%" y="703.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (71 samples, 0.01%)</title><rect x="5.0346%" y="693" width="0.0135%" height="15" fill="rgb(239,3,39)" fg:x="26543" fg:w="71"/><text x="5.2846%" y="703.50"></text></g><g><title>PhaseCFG::schedule_late (790 samples, 0.15%)</title><rect x="4.8990%" y="709" width="0.1498%" height="15" fill="rgb(233,210,1)" fg:x="25828" fg:w="790"/><text x="5.1490%" y="719.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (64 samples, 0.01%)</title><rect x="5.1021%" y="693" width="0.0121%" height="15" fill="rgb(244,137,37)" fg:x="26899" fg:w="64"/><text x="5.3521%" y="703.50"></text></g><g><title>PhaseCFG::select (115 samples, 0.02%)</title><rect x="5.1192%" y="693" width="0.0218%" height="15" fill="rgb(240,136,2)" fg:x="26989" fg:w="115"/><text x="5.3692%" y="703.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (68 samples, 0.01%)</title><rect x="5.1410%" y="693" width="0.0129%" height="15" fill="rgb(239,18,37)" fg:x="27104" fg:w="68"/><text x="5.3910%" y="703.50"></text></g><g><title>PhaseCFG::schedule_local (619 samples, 0.12%)</title><rect x="5.0488%" y="709" width="0.1174%" height="15" fill="rgb(218,185,22)" fg:x="26618" fg:w="619"/><text x="5.2988%" y="719.50"></text></g><g><title>RegMask::Size (104 samples, 0.02%)</title><rect x="5.2273%" y="693" width="0.0197%" height="15" fill="rgb(225,218,4)" fg:x="27559" fg:w="104"/><text x="5.4773%" y="703.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (473 samples, 0.09%)</title><rect x="5.1723%" y="709" width="0.0897%" height="15" fill="rgb(230,182,32)" fg:x="27269" fg:w="473"/><text x="5.4223%" y="719.50"></text></g><g><title>PhaseChaitin::mark_ssa (100 samples, 0.02%)</title><rect x="5.2620%" y="709" width="0.0190%" height="15" fill="rgb(242,56,43)" fg:x="27742" fg:w="100"/><text x="5.5120%" y="719.50"></text></g><g><title>IndexSet::initialize (121 samples, 0.02%)</title><rect x="5.2929%" y="693" width="0.0230%" height="15" fill="rgb(233,99,24)" fg:x="27905" fg:w="121"/><text x="5.5429%" y="703.50"></text></g><g><title>PhaseIFG::init (215 samples, 0.04%)</title><rect x="5.2810%" y="709" width="0.0408%" height="15" fill="rgb(234,209,42)" fg:x="27842" fg:w="215"/><text x="5.5310%" y="719.50"></text></g><g><title>IndexSet::initialize (63 samples, 0.01%)</title><rect x="5.3667%" y="693" width="0.0119%" height="15" fill="rgb(227,7,12)" fg:x="28294" fg:w="63"/><text x="5.6167%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (66 samples, 0.01%)</title><rect x="5.3995%" y="677" width="0.0125%" height="15" fill="rgb(245,203,43)" fg:x="28467" fg:w="66"/><text x="5.6495%" y="687.50"></text></g><g><title>PhaseLive::add_livein (171 samples, 0.03%)</title><rect x="5.3798%" y="693" width="0.0324%" height="15" fill="rgb(238,205,33)" fg:x="28363" fg:w="171"/><text x="5.6298%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (72 samples, 0.01%)</title><rect x="5.4479%" y="677" width="0.0137%" height="15" fill="rgb(231,56,7)" fg:x="28722" fg:w="72"/><text x="5.6979%" y="687.50"></text></g><g><title>IndexSetIterator::advance_and_next (92 samples, 0.02%)</title><rect x="5.4652%" y="677" width="0.0175%" height="15" fill="rgb(244,186,29)" fg:x="28813" fg:w="92"/><text x="5.7152%" y="687.50"></text></g><g><title>PhaseLive::add_liveout (377 samples, 0.07%)</title><rect x="5.4122%" y="693" width="0.0715%" height="15" fill="rgb(234,111,31)" fg:x="28534" fg:w="377"/><text x="5.6622%" y="703.50"></text></g><g><title>PhaseLive::compute (855 samples, 0.16%)</title><rect x="5.3220%" y="709" width="0.1622%" height="15" fill="rgb(241,149,10)" fg:x="28058" fg:w="855"/><text x="5.5720%" y="719.50"></text></g><g><title>PhaseCFG::global_code_motion (3,597 samples, 0.68%)</title><rect x="4.8074%" y="725" width="0.6823%" height="15" fill="rgb(249,206,44)" fg:x="25345" fg:w="3597"/><text x="5.0574%" y="735.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,755 samples, 0.71%)</title><rect x="4.7776%" y="741" width="0.7122%" height="15" fill="rgb(251,153,30)" fg:x="25188" fg:w="3755"/><text x="5.0276%" y="751.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (79 samples, 0.01%)</title><rect x="5.4946%" y="741" width="0.0150%" height="15" fill="rgb(239,152,38)" fg:x="28968" fg:w="79"/><text x="5.7446%" y="751.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,093 samples, 0.21%)</title><rect x="5.5378%" y="725" width="0.2073%" height="15" fill="rgb(249,139,47)" fg:x="29196" fg:w="1093"/><text x="5.7878%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (275 samples, 0.05%)</title><rect x="5.8496%" y="709" width="0.0522%" height="15" fill="rgb(244,64,35)" fg:x="30840" fg:w="275"/><text x="6.0996%" y="719.50"></text></g><g><title>PhaseChaitin::bias_color (152 samples, 0.03%)</title><rect x="5.9018%" y="709" width="0.0288%" height="15" fill="rgb(216,46,15)" fg:x="31115" fg:w="152"/><text x="6.1518%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (77 samples, 0.01%)</title><rect x="6.0042%" y="693" width="0.0146%" height="15" fill="rgb(250,74,19)" fg:x="31655" fg:w="77"/><text x="6.2542%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (316 samples, 0.06%)</title><rect x="6.0188%" y="693" width="0.0599%" height="15" fill="rgb(249,42,33)" fg:x="31732" fg:w="316"/><text x="6.2688%" y="703.50"></text></g><g><title>PhaseIFG::re_insert (781 samples, 0.15%)</title><rect x="5.9327%" y="709" width="0.1481%" height="15" fill="rgb(242,149,17)" fg:x="31278" fg:w="781"/><text x="6.1827%" y="719.50"></text></g><g><title>RegMask::clear_to_sets (145 samples, 0.03%)</title><rect x="6.0809%" y="709" width="0.0275%" height="15" fill="rgb(244,29,21)" fg:x="32059" fg:w="145"/><text x="6.3309%" y="719.50"></text></g><g><title>PhaseChaitin::Select (1,921 samples, 0.36%)</title><rect x="5.7451%" y="725" width="0.3644%" height="15" fill="rgb(220,130,37)" fg:x="30289" fg:w="1921"/><text x="5.9951%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (264 samples, 0.05%)</title><rect x="6.1588%" y="709" width="0.0501%" height="15" fill="rgb(211,67,2)" fg:x="32470" fg:w="264"/><text x="6.4088%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (355 samples, 0.07%)</title><rect x="6.2948%" y="693" width="0.0673%" height="15" fill="rgb(235,68,52)" fg:x="33187" fg:w="355"/><text x="6.5448%" y="703.50"></text></g><g><title>PhaseChaitin::Simplify (1,333 samples, 0.25%)</title><rect x="6.1095%" y="725" width="0.2528%" height="15" fill="rgb(246,142,3)" fg:x="32210" fg:w="1333"/><text x="6.3595%" y="735.50"></text></g><g><title>PhaseIFG::remove_node (809 samples, 0.15%)</title><rect x="6.2089%" y="709" width="0.1534%" height="15" fill="rgb(241,25,7)" fg:x="32734" fg:w="809"/><text x="6.4589%" y="719.50"></text></g><g><title>MachNode::rematerialize (138 samples, 0.03%)</title><rect x="6.8195%" y="709" width="0.0262%" height="15" fill="rgb(242,119,39)" fg:x="35953" fg:w="138"/><text x="7.0695%" y="719.50"></text></g><g><title>Node::rematerialize (102 samples, 0.02%)</title><rect x="6.8523%" y="709" width="0.0193%" height="15" fill="rgb(241,98,45)" fg:x="36126" fg:w="102"/><text x="7.1023%" y="719.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (82 samples, 0.02%)</title><rect x="6.9078%" y="693" width="0.0156%" height="15" fill="rgb(254,28,30)" fg:x="36419" fg:w="82"/><text x="7.1578%" y="703.50"></text></g><g><title>PhaseChaitin::split_USE (163 samples, 0.03%)</title><rect x="6.8987%" y="709" width="0.0309%" height="15" fill="rgb(241,142,54)" fg:x="36371" fg:w="163"/><text x="7.1487%" y="719.50"></text></g><g><title>PhaseChaitin::Split (3,064 samples, 0.58%)</title><rect x="6.3623%" y="725" width="0.5812%" height="15" fill="rgb(222,85,15)" fg:x="33543" fg:w="3064"/><text x="6.6123%" y="735.50"></text></g><g><title>IndexSet::IndexSet (287 samples, 0.05%)</title><rect x="7.1002%" y="709" width="0.0544%" height="15" fill="rgb(210,85,47)" fg:x="37433" fg:w="287"/><text x="7.3502%" y="719.50"></text></g><g><title>MachNode::rematerialize (56 samples, 0.01%)</title><rect x="7.1558%" y="709" width="0.0106%" height="15" fill="rgb(224,206,25)" fg:x="37726" fg:w="56"/><text x="7.4058%" y="719.50"></text></g><g><title>MachNode::rematerialize (77 samples, 0.01%)</title><rect x="7.2593%" y="693" width="0.0146%" height="15" fill="rgb(243,201,19)" fg:x="38272" fg:w="77"/><text x="7.5093%" y="703.50"></text></g><g><title>PhaseChaitin::raise_pressure (136 samples, 0.03%)</title><rect x="7.2768%" y="693" width="0.0258%" height="15" fill="rgb(236,59,4)" fg:x="38364" fg:w="136"/><text x="7.5268%" y="703.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (702 samples, 0.13%)</title><rect x="7.1700%" y="709" width="0.1332%" height="15" fill="rgb(254,179,45)" fg:x="37801" fg:w="702"/><text x="7.4200%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (181 samples, 0.03%)</title><rect x="7.3708%" y="693" width="0.0343%" height="15" fill="rgb(226,14,10)" fg:x="38860" fg:w="181"/><text x="7.6208%" y="703.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (541 samples, 0.10%)</title><rect x="7.3189%" y="709" width="0.1026%" height="15" fill="rgb(244,27,41)" fg:x="38586" fg:w="541"/><text x="7.5689%" y="719.50"></text></g><g><title>RegMask::is_UP (86 samples, 0.02%)</title><rect x="7.4052%" y="693" width="0.0163%" height="15" fill="rgb(235,35,32)" fg:x="39041" fg:w="86"/><text x="7.6552%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (101 samples, 0.02%)</title><rect x="7.7635%" y="693" width="0.0192%" height="15" fill="rgb(218,68,31)" fg:x="40930" fg:w="101"/><text x="8.0135%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (732 samples, 0.14%)</title><rect x="7.7840%" y="693" width="0.1388%" height="15" fill="rgb(207,120,37)" fg:x="41038" fg:w="732"/><text x="8.0340%" y="703.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,648 samples, 0.50%)</title><rect x="7.4215%" y="709" width="0.5023%" height="15" fill="rgb(227,98,0)" fg:x="39127" fg:w="2648"/><text x="7.6715%" y="719.50"></text></g><g><title>PhaseChaitin::lower_pressure (93 samples, 0.02%)</title><rect x="7.9238%" y="709" width="0.0176%" height="15" fill="rgb(207,7,3)" fg:x="41775" fg:w="93"/><text x="8.1738%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (193 samples, 0.04%)</title><rect x="8.0415%" y="693" width="0.0366%" height="15" fill="rgb(206,98,19)" fg:x="42396" fg:w="193"/><text x="8.2915%" y="703.50"></text></g><g><title>RegMask::Size (329 samples, 0.06%)</title><rect x="8.0782%" y="693" width="0.0624%" height="15" fill="rgb(217,5,26)" fg:x="42589" fg:w="329"/><text x="8.3282%" y="703.50"></text></g><g><title>RegMask::smear_to_sets (662 samples, 0.13%)</title><rect x="8.1406%" y="693" width="0.1256%" height="15" fill="rgb(235,190,38)" fg:x="42918" fg:w="662"/><text x="8.3906%" y="703.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,722 samples, 0.33%)</title><rect x="7.9414%" y="709" width="0.3266%" height="15" fill="rgb(247,86,24)" fg:x="41868" fg:w="1722"/><text x="8.1914%" y="719.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,070 samples, 1.34%)</title><rect x="6.9441%" y="725" width="1.3410%" height="15" fill="rgb(205,101,16)" fg:x="36610" fg:w="7070"/><text x="7.1941%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (349 samples, 0.07%)</title><rect x="8.3128%" y="709" width="0.0662%" height="15" fill="rgb(246,168,33)" fg:x="43826" fg:w="349"/><text x="8.5628%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (74 samples, 0.01%)</title><rect x="8.3649%" y="693" width="0.0140%" height="15" fill="rgb(231,114,1)" fg:x="44101" fg:w="74"/><text x="8.6149%" y="703.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (499 samples, 0.09%)</title><rect x="8.2851%" y="725" width="0.0946%" height="15" fill="rgb(207,184,53)" fg:x="43680" fg:w="499"/><text x="8.5351%" y="735.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (113 samples, 0.02%)</title><rect x="8.3797%" y="725" width="0.0214%" height="15" fill="rgb(224,95,51)" fg:x="44179" fg:w="113"/><text x="8.6297%" y="735.50"></text></g><g><title>PhaseChaitin::de_ssa (99 samples, 0.02%)</title><rect x="8.4069%" y="725" width="0.0188%" height="15" fill="rgb(212,188,45)" fg:x="44322" fg:w="99"/><text x="8.6569%" y="735.50"></text></g><g><title>PhaseChaitin::fixup_spills (60 samples, 0.01%)</title><rect x="8.4256%" y="725" width="0.0114%" height="15" fill="rgb(223,154,38)" fg:x="44421" fg:w="60"/><text x="8.6756%" y="735.50"></text></g><g><title>MachCallJavaNode::in_RegMask (71 samples, 0.01%)</title><rect x="8.7712%" y="709" width="0.0135%" height="15" fill="rgb(251,22,52)" fg:x="46243" fg:w="71"/><text x="9.0212%" y="719.50"></text></g><g><title>MachNode::ideal_reg (84 samples, 0.02%)</title><rect x="8.7858%" y="709" width="0.0159%" height="15" fill="rgb(229,209,22)" fg:x="46320" fg:w="84"/><text x="9.0358%" y="719.50"></text></g><g><title>MachNode::in_RegMask (64 samples, 0.01%)</title><rect x="8.8018%" y="709" width="0.0121%" height="15" fill="rgb(234,138,34)" fg:x="46404" fg:w="64"/><text x="9.0518%" y="719.50"></text></g><g><title>RegMask::Size (1,161 samples, 0.22%)</title><rect x="8.8340%" y="709" width="0.2202%" height="15" fill="rgb(212,95,11)" fg:x="46574" fg:w="1161"/><text x="9.0840%" y="719.50"></text></g><g><title>RegMask::clear_to_sets (200 samples, 0.04%)</title><rect x="9.0542%" y="709" width="0.0379%" height="15" fill="rgb(240,179,47)" fg:x="47735" fg:w="200"/><text x="9.3042%" y="719.50"></text></g><g><title>RegMask::is_aligned_pairs (80 samples, 0.02%)</title><rect x="9.0922%" y="709" width="0.0152%" height="15" fill="rgb(240,163,11)" fg:x="47935" fg:w="80"/><text x="9.3422%" y="719.50"></text></g><g><title>RegMask::is_bound1 (164 samples, 0.03%)</title><rect x="9.1073%" y="709" width="0.0311%" height="15" fill="rgb(236,37,12)" fg:x="48015" fg:w="164"/><text x="9.3573%" y="719.50"></text></g><g><title>RegMask::is_bound_pair (98 samples, 0.02%)</title><rect x="9.1384%" y="709" width="0.0186%" height="15" fill="rgb(232,164,16)" fg:x="48179" fg:w="98"/><text x="9.3884%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,953 samples, 0.75%)</title><rect x="8.4370%" y="725" width="0.7498%" height="15" fill="rgb(244,205,15)" fg:x="44481" fg:w="3953"/><text x="8.6870%" y="735.50"></text></g><g><title>PhaseChaitin::merge_multidefs (539 samples, 0.10%)</title><rect x="9.1870%" y="725" width="0.1022%" height="15" fill="rgb(223,117,47)" fg:x="48435" fg:w="539"/><text x="9.4370%" y="735.50"></text></g><g><title>PhaseChaitin::use_prior_register (92 samples, 0.02%)</title><rect x="9.9603%" y="693" width="0.0175%" height="15" fill="rgb(244,107,35)" fg:x="52512" fg:w="92"/><text x="10.2103%" y="703.50"></text></g><g><title>PhaseChaitin::elide_copy (1,842 samples, 0.35%)</title><rect x="9.6367%" y="709" width="0.3494%" height="15" fill="rgb(205,140,8)" fg:x="50806" fg:w="1842"/><text x="9.8867%" y="719.50"></text></g><g><title>[libc-2.31.so] (85 samples, 0.02%)</title><rect x="9.9935%" y="709" width="0.0161%" height="15" fill="rgb(228,84,46)" fg:x="52687" fg:w="85"/><text x="10.2435%" y="719.50"></text></g><g><title>find_lowest_bit (330 samples, 0.06%)</title><rect x="10.0102%" y="709" width="0.0626%" height="15" fill="rgb(254,188,9)" fg:x="52775" fg:w="330"/><text x="10.2602%" y="719.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,136 samples, 0.78%)</title><rect x="9.2896%" y="725" width="0.7845%" height="15" fill="rgb(206,112,54)" fg:x="48976" fg:w="4136"/><text x="9.5396%" y="735.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (183 samples, 0.03%)</title><rect x="10.0743%" y="725" width="0.0347%" height="15" fill="rgb(216,84,49)" fg:x="53113" fg:w="183"/><text x="10.3243%" y="735.50"></text></g><g><title>PhaseCoalesce::combine_these_two (75 samples, 0.01%)</title><rect x="10.1267%" y="693" width="0.0142%" height="15" fill="rgb(214,194,35)" fg:x="53389" fg:w="75"/><text x="10.3767%" y="703.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (162 samples, 0.03%)</title><rect x="10.1104%" y="709" width="0.0307%" height="15" fill="rgb(249,28,3)" fg:x="53303" fg:w="162"/><text x="10.3604%" y="719.50"></text></g><g><title>PhaseCFG::is_uncommon (121 samples, 0.02%)</title><rect x="10.1515%" y="693" width="0.0230%" height="15" fill="rgb(222,56,52)" fg:x="53520" fg:w="121"/><text x="10.4015%" y="703.50"></text></g><g><title>IndexSet::lrg_union (263 samples, 0.05%)</title><rect x="10.1836%" y="677" width="0.0499%" height="15" fill="rgb(245,217,50)" fg:x="53689" fg:w="263"/><text x="10.4336%" y="687.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (252 samples, 0.05%)</title><rect x="10.2374%" y="677" width="0.0478%" height="15" fill="rgb(213,201,24)" fg:x="53973" fg:w="252"/><text x="10.4874%" y="687.50"></text></g><g><title>PhaseIFG::effective_degree (76 samples, 0.01%)</title><rect x="10.2852%" y="677" width="0.0144%" height="15" fill="rgb(248,116,28)" fg:x="54225" fg:w="76"/><text x="10.5352%" y="687.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (689 samples, 0.13%)</title><rect x="10.1745%" y="693" width="0.1307%" height="15" fill="rgb(219,72,43)" fg:x="53641" fg:w="689"/><text x="10.4245%" y="703.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,036 samples, 0.20%)</title><rect x="10.1090%" y="725" width="0.1965%" height="15" fill="rgb(209,138,14)" fg:x="53296" fg:w="1036"/><text x="10.3590%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (867 samples, 0.16%)</title><rect x="10.1411%" y="709" width="0.1644%" height="15" fill="rgb(222,18,33)" fg:x="53465" fg:w="867"/><text x="10.3911%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (53 samples, 0.01%)</title><rect x="10.3778%" y="709" width="0.0101%" height="15" fill="rgb(213,199,7)" fg:x="54713" fg:w="53"/><text x="10.6278%" y="719.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (859 samples, 0.16%)</title><rect x="10.3055%" y="725" width="0.1629%" height="15" fill="rgb(250,110,10)" fg:x="54332" fg:w="859"/><text x="10.5555%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (425 samples, 0.08%)</title><rect x="10.3879%" y="709" width="0.0806%" height="15" fill="rgb(248,123,6)" fg:x="54766" fg:w="425"/><text x="10.6379%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (55 samples, 0.01%)</title><rect x="10.5267%" y="709" width="0.0104%" height="15" fill="rgb(206,91,31)" fg:x="55498" fg:w="55"/><text x="10.7767%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (80 samples, 0.02%)</title><rect x="10.5371%" y="709" width="0.0152%" height="15" fill="rgb(211,154,13)" fg:x="55553" fg:w="80"/><text x="10.7871%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (372 samples, 0.07%)</title><rect x="10.5523%" y="709" width="0.0706%" height="15" fill="rgb(225,148,7)" fg:x="55633" fg:w="372"/><text x="10.8023%" y="719.50"></text></g><g><title>PhaseIFG::SquareUp (816 samples, 0.15%)</title><rect x="10.4685%" y="725" width="0.1548%" height="15" fill="rgb(220,160,43)" fg:x="55191" fg:w="816"/><text x="10.7185%" y="735.50"></text></g><g><title>IndexSet::initialize (204 samples, 0.04%)</title><rect x="10.6452%" y="709" width="0.0387%" height="15" fill="rgb(213,52,39)" fg:x="56123" fg:w="204"/><text x="10.8952%" y="719.50"></text></g><g><title>PhaseIFG::init (366 samples, 0.07%)</title><rect x="10.6232%" y="725" width="0.0694%" height="15" fill="rgb(243,137,7)" fg:x="56007" fg:w="366"/><text x="10.8732%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (60 samples, 0.01%)</title><rect x="10.9233%" y="709" width="0.0114%" height="15" fill="rgb(230,79,13)" fg:x="57589" fg:w="60"/><text x="11.1733%" y="719.50"></text></g><g><title>IndexSet::initialize (96 samples, 0.02%)</title><rect x="10.9440%" y="709" width="0.0182%" height="15" fill="rgb(247,105,23)" fg:x="57698" fg:w="96"/><text x="11.1940%" y="719.50"></text></g><g><title>__tls_get_addr (55 samples, 0.01%)</title><rect x="11.1109%" y="677" width="0.0104%" height="15" fill="rgb(223,179,41)" fg:x="58578" fg:w="55"/><text x="11.3609%" y="687.50"></text></g><g><title>IndexSet::alloc_block_containing (186 samples, 0.04%)</title><rect x="11.0872%" y="693" width="0.0353%" height="15" fill="rgb(218,9,34)" fg:x="58453" fg:w="186"/><text x="11.3372%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (286 samples, 0.05%)</title><rect x="11.1312%" y="693" width="0.0542%" height="15" fill="rgb(222,106,8)" fg:x="58685" fg:w="286"/><text x="11.3812%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (1,190 samples, 0.23%)</title><rect x="10.9624%" y="709" width="0.2257%" height="15" fill="rgb(211,220,0)" fg:x="57795" fg:w="1190"/><text x="11.2124%" y="719.50"></text></g><g><title>PhaseLive::compute (2,619 samples, 0.50%)</title><rect x="10.6938%" y="725" width="0.4968%" height="15" fill="rgb(229,52,16)" fg:x="56379" fg:w="2619"/><text x="10.9438%" y="735.50"></text></g><g><title>find_lowest_bit (57 samples, 0.01%)</title><rect x="11.2050%" y="725" width="0.0108%" height="15" fill="rgb(212,155,18)" fg:x="59074" fg:w="57"/><text x="11.4550%" y="735.50"></text></g><g><title>PhaseChaitin::Register_Allocate (30,077 samples, 5.70%)</title><rect x="5.5137%" y="741" width="5.7049%" height="15" fill="rgb(242,21,14)" fg:x="29069" fg:w="30077"/><text x="5.7637%" y="751.50">PhaseCh..</text></g><g><title>Compile::Code_Gen (38,957 samples, 7.39%)</title><rect x="3.8393%" y="757" width="7.3892%" height="15" fill="rgb(222,19,48)" fg:x="20241" fg:w="38957"/><text x="4.0893%" y="767.50">Compile::C..</text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.2826%" y="85" width="0.0116%" height="15" fill="rgb(232,45,27)" fg:x="59483" fg:w="61"/><text x="11.5326%" y="95.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.2826%" y="69" width="0.0116%" height="15" fill="rgb(249,103,42)" fg:x="59483" fg:w="61"/><text x="11.5326%" y="79.50"></text></g><g><title>Parse::do_call (101 samples, 0.02%)</title><rect x="11.2765%" y="101" width="0.0192%" height="15" fill="rgb(246,81,33)" fg:x="59451" fg:w="101"/><text x="11.5265%" y="111.50"></text></g><g><title>Parse::do_one_block (174 samples, 0.03%)</title><rect x="11.2746%" y="133" width="0.0330%" height="15" fill="rgb(252,33,42)" fg:x="59441" fg:w="174"/><text x="11.5246%" y="143.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.03%)</title><rect x="11.2748%" y="117" width="0.0328%" height="15" fill="rgb(209,212,41)" fg:x="59442" fg:w="173"/><text x="11.5248%" y="127.50"></text></g><g><title>Parse::do_all_blocks (180 samples, 0.03%)</title><rect x="11.2744%" y="149" width="0.0341%" height="15" fill="rgb(207,154,6)" fg:x="59440" fg:w="180"/><text x="11.5244%" y="159.50"></text></g><g><title>ParseGenerator::generate (201 samples, 0.04%)</title><rect x="11.2719%" y="181" width="0.0381%" height="15" fill="rgb(223,64,47)" fg:x="59427" fg:w="201"/><text x="11.5219%" y="191.50"></text></g><g><title>Parse::Parse (200 samples, 0.04%)</title><rect x="11.2721%" y="165" width="0.0379%" height="15" fill="rgb(211,161,38)" fg:x="59428" fg:w="200"/><text x="11.5221%" y="175.50"></text></g><g><title>Parse::do_call (274 samples, 0.05%)</title><rect x="11.2625%" y="197" width="0.0520%" height="15" fill="rgb(219,138,40)" fg:x="59377" fg:w="274"/><text x="11.5125%" y="207.50"></text></g><g><title>Parse::do_one_block (378 samples, 0.07%)</title><rect x="11.2592%" y="229" width="0.0717%" height="15" fill="rgb(241,228,46)" fg:x="59360" fg:w="378"/><text x="11.5092%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (377 samples, 0.07%)</title><rect x="11.2594%" y="213" width="0.0715%" height="15" fill="rgb(223,209,38)" fg:x="59361" fg:w="377"/><text x="11.5094%" y="223.50"></text></g><g><title>Parse::do_all_blocks (383 samples, 0.07%)</title><rect x="11.2590%" y="245" width="0.0726%" height="15" fill="rgb(236,164,45)" fg:x="59359" fg:w="383"/><text x="11.5090%" y="255.50"></text></g><g><title>ParseGenerator::generate (407 samples, 0.08%)</title><rect x="11.2566%" y="277" width="0.0772%" height="15" fill="rgb(231,15,5)" fg:x="59346" fg:w="407"/><text x="11.5066%" y="287.50"></text></g><g><title>Parse::Parse (407 samples, 0.08%)</title><rect x="11.2566%" y="261" width="0.0772%" height="15" fill="rgb(252,35,15)" fg:x="59346" fg:w="407"/><text x="11.5066%" y="271.50"></text></g><g><title>Parse::do_call (518 samples, 0.10%)</title><rect x="11.2442%" y="293" width="0.0983%" height="15" fill="rgb(248,181,18)" fg:x="59281" fg:w="518"/><text x="11.4942%" y="303.50"></text></g><g><title>ParseGenerator::generate (601 samples, 0.11%)</title><rect x="11.2412%" y="373" width="0.1140%" height="15" fill="rgb(233,39,42)" fg:x="59265" fg:w="601"/><text x="11.4912%" y="383.50"></text></g><g><title>Parse::Parse (601 samples, 0.11%)</title><rect x="11.2412%" y="357" width="0.1140%" height="15" fill="rgb(238,110,33)" fg:x="59265" fg:w="601"/><text x="11.4912%" y="367.50"></text></g><g><title>Parse::do_all_blocks (597 samples, 0.11%)</title><rect x="11.2420%" y="341" width="0.1132%" height="15" fill="rgb(233,195,10)" fg:x="59269" fg:w="597"/><text x="11.4920%" y="351.50"></text></g><g><title>Parse::do_one_block (597 samples, 0.11%)</title><rect x="11.2420%" y="325" width="0.1132%" height="15" fill="rgb(254,105,3)" fg:x="59269" fg:w="597"/><text x="11.4920%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (596 samples, 0.11%)</title><rect x="11.2422%" y="309" width="0.1130%" height="15" fill="rgb(221,225,9)" fg:x="59270" fg:w="596"/><text x="11.4922%" y="319.50"></text></g><g><title>Parse::do_call (682 samples, 0.13%)</title><rect x="11.2348%" y="389" width="0.1294%" height="15" fill="rgb(224,227,45)" fg:x="59231" fg:w="682"/><text x="11.4848%" y="399.50"></text></g><g><title>ParseGenerator::generate (697 samples, 0.13%)</title><rect x="11.2346%" y="469" width="0.1322%" height="15" fill="rgb(229,198,43)" fg:x="59230" fg:w="697"/><text x="11.4846%" y="479.50"></text></g><g><title>Parse::Parse (697 samples, 0.13%)</title><rect x="11.2346%" y="453" width="0.1322%" height="15" fill="rgb(206,209,35)" fg:x="59230" fg:w="697"/><text x="11.4846%" y="463.50"></text></g><g><title>Parse::do_all_blocks (696 samples, 0.13%)</title><rect x="11.2348%" y="437" width="0.1320%" height="15" fill="rgb(245,195,53)" fg:x="59231" fg:w="696"/><text x="11.4848%" y="447.50"></text></g><g><title>Parse::do_one_block (696 samples, 0.13%)</title><rect x="11.2348%" y="421" width="0.1320%" height="15" fill="rgb(240,92,26)" fg:x="59231" fg:w="696"/><text x="11.4848%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (696 samples, 0.13%)</title><rect x="11.2348%" y="405" width="0.1320%" height="15" fill="rgb(207,40,23)" fg:x="59231" fg:w="696"/><text x="11.4848%" y="415.50"></text></g><g><title>Parse::do_call (79 samples, 0.01%)</title><rect x="11.3679%" y="277" width="0.0150%" height="15" fill="rgb(223,111,35)" fg:x="59933" fg:w="79"/><text x="11.6179%" y="287.50"></text></g><g><title>ParseGenerator::generate (99 samples, 0.02%)</title><rect x="11.3675%" y="357" width="0.0188%" height="15" fill="rgb(229,147,28)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="367.50"></text></g><g><title>Parse::Parse (99 samples, 0.02%)</title><rect x="11.3675%" y="341" width="0.0188%" height="15" fill="rgb(211,29,28)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="351.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.02%)</title><rect x="11.3675%" y="325" width="0.0188%" height="15" fill="rgb(228,72,33)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="335.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.02%)</title><rect x="11.3675%" y="309" width="0.0188%" height="15" fill="rgb(205,214,31)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.02%)</title><rect x="11.3677%" y="293" width="0.0186%" height="15" fill="rgb(224,111,15)" fg:x="59932" fg:w="98"/><text x="11.6177%" y="303.50"></text></g><g><title>Parse::do_call (113 samples, 0.02%)</title><rect x="11.3668%" y="373" width="0.0214%" height="15" fill="rgb(253,21,26)" fg:x="59927" fg:w="113"/><text x="11.6168%" y="383.50"></text></g><g><title>ParseGenerator::generate (114 samples, 0.02%)</title><rect x="11.3668%" y="453" width="0.0216%" height="15" fill="rgb(245,139,43)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="463.50"></text></g><g><title>Parse::Parse (114 samples, 0.02%)</title><rect x="11.3668%" y="437" width="0.0216%" height="15" fill="rgb(252,170,7)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="447.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.02%)</title><rect x="11.3668%" y="421" width="0.0216%" height="15" fill="rgb(231,118,14)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="431.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.02%)</title><rect x="11.3668%" y="405" width="0.0216%" height="15" fill="rgb(238,83,0)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (114 samples, 0.02%)</title><rect x="11.3668%" y="389" width="0.0216%" height="15" fill="rgb(221,39,39)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="399.50"></text></g><g><title>Parse::do_call (866 samples, 0.16%)</title><rect x="11.2306%" y="485" width="0.1643%" height="15" fill="rgb(222,119,46)" fg:x="59209" fg:w="866"/><text x="11.4806%" y="495.50"></text></g><g><title>PredictedCallGenerator::generate (148 samples, 0.03%)</title><rect x="11.3668%" y="469" width="0.0281%" height="15" fill="rgb(222,165,49)" fg:x="59927" fg:w="148"/><text x="11.6168%" y="479.50"></text></g><g><title>ParseGenerator::generate (871 samples, 0.17%)</title><rect x="11.2302%" y="565" width="0.1652%" height="15" fill="rgb(219,113,52)" fg:x="59207" fg:w="871"/><text x="11.4802%" y="575.50"></text></g><g><title>Parse::Parse (871 samples, 0.17%)</title><rect x="11.2302%" y="549" width="0.1652%" height="15" fill="rgb(214,7,15)" fg:x="59207" fg:w="871"/><text x="11.4802%" y="559.50"></text></g><g><title>Parse::do_all_blocks (869 samples, 0.16%)</title><rect x="11.2306%" y="533" width="0.1648%" height="15" fill="rgb(235,32,4)" fg:x="59209" fg:w="869"/><text x="11.4806%" y="543.50"></text></g><g><title>Parse::do_one_block (869 samples, 0.16%)</title><rect x="11.2306%" y="517" width="0.1648%" height="15" fill="rgb(238,90,54)" fg:x="59209" fg:w="869"/><text x="11.4806%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (869 samples, 0.16%)</title><rect x="11.2306%" y="501" width="0.1648%" height="15" fill="rgb(213,208,19)" fg:x="59209" fg:w="869"/><text x="11.4806%" y="511.50"></text></g><g><title>Parse::do_call (62 samples, 0.01%)</title><rect x="11.3986%" y="277" width="0.0118%" height="15" fill="rgb(233,156,4)" fg:x="60095" fg:w="62"/><text x="11.6486%" y="287.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.02%)</title><rect x="11.3985%" y="357" width="0.0157%" height="15" fill="rgb(207,194,5)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="367.50"></text></g><g><title>Parse::Parse (83 samples, 0.02%)</title><rect x="11.3985%" y="341" width="0.0157%" height="15" fill="rgb(206,111,30)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="351.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.02%)</title><rect x="11.3985%" y="325" width="0.0157%" height="15" fill="rgb(243,70,54)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="335.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.02%)</title><rect x="11.3985%" y="309" width="0.0157%" height="15" fill="rgb(242,28,8)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.02%)</title><rect x="11.3985%" y="293" width="0.0157%" height="15" fill="rgb(219,106,18)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="303.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="11.3966%" y="373" width="0.0195%" height="15" fill="rgb(244,222,10)" fg:x="60084" fg:w="103"/><text x="11.6466%" y="383.50"></text></g><g><title>ParseGenerator::generate (104 samples, 0.02%)</title><rect x="11.3966%" y="453" width="0.0197%" height="15" fill="rgb(236,179,52)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="463.50"></text></g><g><title>Parse::Parse (104 samples, 0.02%)</title><rect x="11.3966%" y="437" width="0.0197%" height="15" fill="rgb(213,23,39)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="447.50"></text></g><g><title>Parse::do_all_blocks (104 samples, 0.02%)</title><rect x="11.3966%" y="421" width="0.0197%" height="15" fill="rgb(238,48,10)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="431.50"></text></g><g><title>Parse::do_one_block (104 samples, 0.02%)</title><rect x="11.3966%" y="405" width="0.0197%" height="15" fill="rgb(251,196,23)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="11.3966%" y="389" width="0.0197%" height="15" fill="rgb(250,152,24)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="399.50"></text></g><g><title>ParseGenerator::generate (124 samples, 0.02%)</title><rect x="11.3954%" y="549" width="0.0235%" height="15" fill="rgb(209,150,17)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="559.50"></text></g><g><title>Parse::Parse (124 samples, 0.02%)</title><rect x="11.3954%" y="533" width="0.0235%" height="15" fill="rgb(234,202,34)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="543.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.02%)</title><rect x="11.3954%" y="517" width="0.0235%" height="15" fill="rgb(253,148,53)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="527.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.02%)</title><rect x="11.3954%" y="501" width="0.0235%" height="15" fill="rgb(218,129,16)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.02%)</title><rect x="11.3954%" y="485" width="0.0235%" height="15" fill="rgb(216,85,19)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="495.50"></text></g><g><title>Parse::do_call (124 samples, 0.02%)</title><rect x="11.3954%" y="469" width="0.0235%" height="15" fill="rgb(235,228,7)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="479.50"></text></g><g><title>ParseGenerator::generate (1,010 samples, 0.19%)</title><rect x="11.2296%" y="661" width="0.1916%" height="15" fill="rgb(245,175,0)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="671.50"></text></g><g><title>Parse::Parse (1,010 samples, 0.19%)</title><rect x="11.2296%" y="645" width="0.1916%" height="15" fill="rgb(208,168,36)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="655.50"></text></g><g><title>Parse::do_all_blocks (1,010 samples, 0.19%)</title><rect x="11.2296%" y="629" width="0.1916%" height="15" fill="rgb(246,171,24)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="639.50"></text></g><g><title>Parse::do_one_block (1,010 samples, 0.19%)</title><rect x="11.2296%" y="613" width="0.1916%" height="15" fill="rgb(215,142,24)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (1,010 samples, 0.19%)</title><rect x="11.2296%" y="597" width="0.1916%" height="15" fill="rgb(250,187,7)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="607.50"></text></g><g><title>Parse::do_call (1,010 samples, 0.19%)</title><rect x="11.2296%" y="581" width="0.1916%" height="15" fill="rgb(228,66,33)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="591.50"></text></g><g><title>PredictedCallGenerator::generate (136 samples, 0.03%)</title><rect x="11.3954%" y="565" width="0.0258%" height="15" fill="rgb(234,215,21)" fg:x="60078" fg:w="136"/><text x="11.6454%" y="575.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.01%)</title><rect x="11.4309%" y="261" width="0.0114%" height="15" fill="rgb(222,191,20)" fg:x="60265" fg:w="60"/><text x="11.6809%" y="271.50"></text></g><g><title>Parse::Parse (60 samples, 0.01%)</title><rect x="11.4309%" y="245" width="0.0114%" height="15" fill="rgb(245,79,54)" fg:x="60265" fg:w="60"/><text x="11.6809%" y="255.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.01%)</title><rect x="11.4320%" y="229" width="0.0102%" height="15" fill="rgb(240,10,37)" fg:x="60271" fg:w="54"/><text x="11.6820%" y="239.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="11.4320%" y="213" width="0.0102%" height="15" fill="rgb(214,192,32)" fg:x="60271" fg:w="54"/><text x="11.6820%" y="223.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="11.4279%" y="277" width="0.0161%" height="15" fill="rgb(209,36,54)" fg:x="60249" fg:w="85"/><text x="11.6779%" y="287.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="11.4271%" y="325" width="0.0207%" height="15" fill="rgb(220,10,11)" fg:x="60245" fg:w="109"/><text x="11.6771%" y="335.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.02%)</title><rect x="11.4271%" y="309" width="0.0207%" height="15" fill="rgb(221,106,17)" fg:x="60245" fg:w="109"/><text x="11.6771%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="11.4271%" y="293" width="0.0207%" height="15" fill="rgb(251,142,44)" fg:x="60245" fg:w="109"/><text x="11.6771%" y="303.50"></text></g><g><title>ParseGenerator::generate (113 samples, 0.02%)</title><rect x="11.4265%" y="357" width="0.0214%" height="15" fill="rgb(238,13,15)" fg:x="60242" fg:w="113"/><text x="11.6765%" y="367.50"></text></g><g><title>Parse::Parse (113 samples, 0.02%)</title><rect x="11.4265%" y="341" width="0.0214%" height="15" fill="rgb(208,107,27)" fg:x="60242" fg:w="113"/><text x="11.6765%" y="351.50"></text></g><g><title>Parse::do_call (142 samples, 0.03%)</title><rect x="11.4239%" y="373" width="0.0269%" height="15" fill="rgb(205,136,37)" fg:x="60228" fg:w="142"/><text x="11.6739%" y="383.50"></text></g><g><title>ParseGenerator::generate (153 samples, 0.03%)</title><rect x="11.4237%" y="453" width="0.0290%" height="15" fill="rgb(250,205,27)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="463.50"></text></g><g><title>Parse::Parse (153 samples, 0.03%)</title><rect x="11.4237%" y="437" width="0.0290%" height="15" fill="rgb(210,80,43)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="447.50"></text></g><g><title>Parse::do_all_blocks (153 samples, 0.03%)</title><rect x="11.4237%" y="421" width="0.0290%" height="15" fill="rgb(247,160,36)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="431.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.03%)</title><rect x="11.4237%" y="405" width="0.0290%" height="15" fill="rgb(234,13,49)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (153 samples, 0.03%)</title><rect x="11.4237%" y="389" width="0.0290%" height="15" fill="rgb(234,122,0)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="399.50"></text></g><g><title>Parse::do_call (170 samples, 0.03%)</title><rect x="11.4218%" y="469" width="0.0322%" height="15" fill="rgb(207,146,38)" fg:x="60217" fg:w="170"/><text x="11.6718%" y="479.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.03%)</title><rect x="11.4218%" y="549" width="0.0324%" height="15" fill="rgb(207,177,25)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="559.50"></text></g><g><title>Parse::Parse (171 samples, 0.03%)</title><rect x="11.4218%" y="533" width="0.0324%" height="15" fill="rgb(211,178,42)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="543.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.03%)</title><rect x="11.4218%" y="517" width="0.0324%" height="15" fill="rgb(230,69,54)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="527.50"></text></g><g><title>Parse::do_one_block (171 samples, 0.03%)</title><rect x="11.4218%" y="501" width="0.0324%" height="15" fill="rgb(214,135,41)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.03%)</title><rect x="11.4218%" y="485" width="0.0324%" height="15" fill="rgb(237,67,25)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="495.50"></text></g><g><title>ParseGenerator::generate (201 samples, 0.04%)</title><rect x="11.4212%" y="645" width="0.0381%" height="15" fill="rgb(222,189,50)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="655.50"></text></g><g><title>Parse::Parse (201 samples, 0.04%)</title><rect x="11.4212%" y="629" width="0.0381%" height="15" fill="rgb(245,148,34)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="639.50"></text></g><g><title>Parse::do_all_blocks (201 samples, 0.04%)</title><rect x="11.4212%" y="613" width="0.0381%" height="15" fill="rgb(222,29,6)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="623.50"></text></g><g><title>Parse::do_one_block (201 samples, 0.04%)</title><rect x="11.4212%" y="597" width="0.0381%" height="15" fill="rgb(221,189,43)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (201 samples, 0.04%)</title><rect x="11.4212%" y="581" width="0.0381%" height="15" fill="rgb(207,36,27)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="591.50"></text></g><g><title>Parse::do_call (201 samples, 0.04%)</title><rect x="11.4212%" y="565" width="0.0381%" height="15" fill="rgb(217,90,24)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,235 samples, 0.23%)</title><rect x="11.2296%" y="725" width="0.2343%" height="15" fill="rgb(224,66,35)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="735.50"></text></g><g><title>Parse::do_one_block (1,235 samples, 0.23%)</title><rect x="11.2296%" y="709" width="0.2343%" height="15" fill="rgb(221,13,50)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (1,235 samples, 0.23%)</title><rect x="11.2296%" y="693" width="0.2343%" height="15" fill="rgb(236,68,49)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="703.50"></text></g><g><title>Parse::do_call (1,235 samples, 0.23%)</title><rect x="11.2296%" y="677" width="0.2343%" height="15" fill="rgb(229,146,28)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (225 samples, 0.04%)</title><rect x="11.4212%" y="661" width="0.0427%" height="15" fill="rgb(225,31,38)" fg:x="60214" fg:w="225"/><text x="11.6712%" y="671.50"></text></g><g><title>Compile::Compile (40,199 samples, 7.62%)</title><rect x="3.8393%" y="773" width="7.6248%" height="15" fill="rgb(250,208,3)" fg:x="20241" fg:w="40199"/><text x="4.0893%" y="783.50">Compile::C..</text></g><g><title>ParseGenerator::generate (1,236 samples, 0.23%)</title><rect x="11.2296%" y="757" width="0.2344%" height="15" fill="rgb(246,54,23)" fg:x="59204" fg:w="1236"/><text x="11.4796%" y="767.50"></text></g><g><title>Parse::Parse (1,236 samples, 0.23%)</title><rect x="11.2296%" y="741" width="0.2344%" height="15" fill="rgb(243,76,11)" fg:x="59204" fg:w="1236"/><text x="11.4796%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping_impl (117 samples, 0.02%)</title><rect x="11.4984%" y="725" width="0.0222%" height="15" fill="rgb(245,21,50)" fg:x="60621" fg:w="117"/><text x="11.7484%" y="735.50"></text></g><g><title>Compile::final_graph_reshaping (312 samples, 0.06%)</title><rect x="11.4648%" y="757" width="0.0592%" height="15" fill="rgb(228,9,43)" fg:x="60444" fg:w="312"/><text x="11.7148%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping_walk (304 samples, 0.06%)</title><rect x="11.4664%" y="741" width="0.0577%" height="15" fill="rgb(208,100,47)" fg:x="60452" fg:w="304"/><text x="11.7164%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (53 samples, 0.01%)</title><rect x="11.5646%" y="741" width="0.0101%" height="15" fill="rgb(232,26,8)" fg:x="60970" fg:w="53"/><text x="11.8146%" y="751.50"></text></g><g><title>Compile::remove_speculative_types (250 samples, 0.05%)</title><rect x="11.5289%" y="757" width="0.0474%" height="15" fill="rgb(216,166,38)" fg:x="60782" fg:w="250"/><text x="11.7789%" y="767.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (79 samples, 0.01%)</title><rect x="11.6101%" y="725" width="0.0150%" height="15" fill="rgb(251,202,51)" fg:x="61210" fg:w="79"/><text x="11.8601%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (137 samples, 0.03%)</title><rect x="11.6261%" y="725" width="0.0260%" height="15" fill="rgb(254,216,34)" fg:x="61294" fg:w="137"/><text x="11.8761%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (69 samples, 0.01%)</title><rect x="11.6691%" y="677" width="0.0131%" height="15" fill="rgb(251,32,27)" fg:x="61521" fg:w="69"/><text x="11.9191%" y="687.50"></text></g><g><title>ConnectionGraph::split_memory_phi (92 samples, 0.02%)</title><rect x="11.6651%" y="693" width="0.0175%" height="15" fill="rgb(208,127,28)" fg:x="61500" fg:w="92"/><text x="11.9151%" y="703.50"></text></g><g><title>ConnectionGraph::find_inst_mem (131 samples, 0.02%)</title><rect x="11.6585%" y="709" width="0.0248%" height="15" fill="rgb(224,137,22)" fg:x="61465" fg:w="131"/><text x="11.9085%" y="719.50"></text></g><g><title>ConnectionGraph::split_unique_types (179 samples, 0.03%)</title><rect x="11.6555%" y="725" width="0.0340%" height="15" fill="rgb(254,70,32)" fg:x="61449" fg:w="179"/><text x="11.9055%" y="735.50"></text></g><g><title>ConnectionGraph::compute_escape (601 samples, 0.11%)</title><rect x="11.5766%" y="741" width="0.1140%" height="15" fill="rgb(229,75,37)" fg:x="61033" fg:w="601"/><text x="11.8266%" y="751.50"></text></g><g><title>ConnectionGraph::do_analysis (603 samples, 0.11%)</title><rect x="11.5764%" y="757" width="0.1144%" height="15" fill="rgb(252,64,23)" fg:x="61032" fg:w="603"/><text x="11.8264%" y="767.50"></text></g><g><title>PhaseCCP::analyze (718 samples, 0.14%)</title><rect x="11.6915%" y="757" width="0.1362%" height="15" fill="rgb(232,162,48)" fg:x="61639" fg:w="718"/><text x="11.9415%" y="767.50"></text></g><g><title>PhaseCCP::transform_once (93 samples, 0.02%)</title><rect x="11.8489%" y="725" width="0.0176%" height="15" fill="rgb(246,160,12)" fg:x="62469" fg:w="93"/><text x="12.0989%" y="735.50"></text></g><g><title>PhaseCCP::do_transform (209 samples, 0.04%)</title><rect x="11.8277%" y="757" width="0.0396%" height="15" fill="rgb(247,166,0)" fg:x="62357" fg:w="209"/><text x="12.0777%" y="767.50"></text></g><g><title>PhaseCCP::transform (209 samples, 0.04%)</title><rect x="11.8277%" y="741" width="0.0396%" height="15" fill="rgb(249,219,21)" fg:x="62357" fg:w="209"/><text x="12.0777%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (66 samples, 0.01%)</title><rect x="11.8933%" y="677" width="0.0125%" height="15" fill="rgb(205,209,3)" fg:x="62703" fg:w="66"/><text x="12.1433%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (94 samples, 0.02%)</title><rect x="11.8929%" y="693" width="0.0178%" height="15" fill="rgb(243,44,1)" fg:x="62701" fg:w="94"/><text x="12.1429%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (155 samples, 0.03%)</title><rect x="11.8916%" y="709" width="0.0294%" height="15" fill="rgb(206,159,16)" fg:x="62694" fg:w="155"/><text x="12.1416%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (216 samples, 0.04%)</title><rect x="11.8910%" y="725" width="0.0410%" height="15" fill="rgb(244,77,30)" fg:x="62691" fg:w="216"/><text x="12.1410%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (251 samples, 0.05%)</title><rect x="11.8897%" y="741" width="0.0476%" height="15" fill="rgb(218,69,12)" fg:x="62684" fg:w="251"/><text x="12.1397%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (76 samples, 0.01%)</title><rect x="11.9373%" y="725" width="0.0144%" height="15" fill="rgb(212,87,7)" fg:x="62935" fg:w="76"/><text x="12.1873%" y="735.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (53 samples, 0.01%)</title><rect x="11.9417%" y="709" width="0.0101%" height="15" fill="rgb(245,114,25)" fg:x="62958" fg:w="53"/><text x="12.1917%" y="719.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (73 samples, 0.01%)</title><rect x="11.9584%" y="709" width="0.0138%" height="15" fill="rgb(210,61,42)" fg:x="63046" fg:w="73"/><text x="12.2084%" y="719.50"></text></g><g><title>IdealLoopTree::loop_predication (239 samples, 0.05%)</title><rect x="11.9373%" y="741" width="0.0453%" height="15" fill="rgb(211,52,33)" fg:x="62935" fg:w="239"/><text x="12.1873%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (163 samples, 0.03%)</title><rect x="11.9517%" y="725" width="0.0309%" height="15" fill="rgb(234,58,33)" fg:x="63011" fg:w="163"/><text x="12.2017%" y="735.50"></text></g><g><title>NTarjan::DFS (330 samples, 0.06%)</title><rect x="12.1295%" y="725" width="0.0626%" height="15" fill="rgb(220,115,36)" fg:x="63948" fg:w="330"/><text x="12.3795%" y="735.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,115 samples, 0.21%)</title><rect x="11.9916%" y="741" width="0.2115%" height="15" fill="rgb(243,153,54)" fg:x="63221" fg:w="1115"/><text x="12.2416%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (70 samples, 0.01%)</title><rect x="12.4500%" y="693" width="0.0133%" height="15" fill="rgb(251,47,18)" fg:x="65638" fg:w="70"/><text x="12.7000%" y="703.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (442 samples, 0.08%)</title><rect x="12.4134%" y="725" width="0.0838%" height="15" fill="rgb(242,102,42)" fg:x="65445" fg:w="442"/><text x="12.6634%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (394 samples, 0.07%)</title><rect x="12.4225%" y="709" width="0.0747%" height="15" fill="rgb(234,31,38)" fg:x="65493" fg:w="394"/><text x="12.6725%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (179 samples, 0.03%)</title><rect x="12.4633%" y="693" width="0.0340%" height="15" fill="rgb(221,117,51)" fg:x="65708" fg:w="179"/><text x="12.7133%" y="703.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,636 samples, 0.31%)</title><rect x="12.2031%" y="741" width="0.3103%" height="15" fill="rgb(212,20,18)" fg:x="64336" fg:w="1636"/><text x="12.4531%" y="751.50"></text></g><g><title>Node::unique_ctrl_out (65 samples, 0.01%)</title><rect x="12.8728%" y="709" width="0.0123%" height="15" fill="rgb(245,133,36)" fg:x="67867" fg:w="65"/><text x="13.1228%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (75 samples, 0.01%)</title><rect x="12.8851%" y="709" width="0.0142%" height="15" fill="rgb(212,6,19)" fg:x="67932" fg:w="75"/><text x="13.1351%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (75 samples, 0.01%)</title><rect x="13.0581%" y="661" width="0.0142%" height="15" fill="rgb(218,1,36)" fg:x="68844" fg:w="75"/><text x="13.3081%" y="671.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (285 samples, 0.05%)</title><rect x="13.0447%" y="677" width="0.0541%" height="15" fill="rgb(246,84,54)" fg:x="68773" fg:w="285"/><text x="13.2947%" y="687.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (139 samples, 0.03%)</title><rect x="13.0724%" y="661" width="0.0264%" height="15" fill="rgb(242,110,6)" fg:x="68919" fg:w="139"/><text x="13.3224%" y="671.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (400 samples, 0.08%)</title><rect x="13.0283%" y="693" width="0.0759%" height="15" fill="rgb(214,47,5)" fg:x="68687" fg:w="400"/><text x="13.2783%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (209 samples, 0.04%)</title><rect x="13.1048%" y="693" width="0.0396%" height="15" fill="rgb(218,159,25)" fg:x="69090" fg:w="209"/><text x="13.3548%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,533 samples, 0.29%)</title><rect x="14.3117%" y="677" width="0.2908%" height="15" fill="rgb(215,211,28)" fg:x="75453" fg:w="1533"/><text x="14.5617%" y="687.50"></text></g><g><title>PhaseIdealLoop::is_dominator (7,664 samples, 1.45%)</title><rect x="13.1511%" y="693" width="1.4537%" height="15" fill="rgb(238,59,32)" fg:x="69334" fg:w="7664"/><text x="13.4011%" y="703.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (9,021 samples, 1.71%)</title><rect x="12.8994%" y="709" width="1.7111%" height="15" fill="rgb(226,82,3)" fg:x="68007" fg:w="9021"/><text x="13.1494%" y="719.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (9,893 samples, 1.88%)</title><rect x="12.7516%" y="725" width="1.8765%" height="15" fill="rgb(240,164,32)" fg:x="67228" fg:w="9893"/><text x="13.0016%" y="735.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (11,171 samples, 2.12%)</title><rect x="12.5134%" y="741" width="2.1189%" height="15" fill="rgb(232,46,7)" fg:x="65972" fg:w="11171"/><text x="12.7634%" y="751.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (215 samples, 0.04%)</title><rect x="14.7540%" y="725" width="0.0408%" height="15" fill="rgb(229,129,53)" fg:x="77785" fg:w="215"/><text x="15.0040%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (872 samples, 0.17%)</title><rect x="14.6324%" y="741" width="0.1654%" height="15" fill="rgb(234,188,29)" fg:x="77144" fg:w="872"/><text x="14.8824%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_split_if (104 samples, 0.02%)</title><rect x="14.8927%" y="725" width="0.0197%" height="15" fill="rgb(246,141,4)" fg:x="78516" fg:w="104"/><text x="15.1427%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (242 samples, 0.05%)</title><rect x="14.9139%" y="725" width="0.0459%" height="15" fill="rgb(229,23,39)" fg:x="78628" fg:w="242"/><text x="15.1639%" y="735.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (74 samples, 0.01%)</title><rect x="15.0053%" y="709" width="0.0140%" height="15" fill="rgb(206,12,3)" fg:x="79110" fg:w="74"/><text x="15.2553%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (53 samples, 0.01%)</title><rect x="15.0454%" y="693" width="0.0101%" height="15" fill="rgb(252,226,20)" fg:x="79321" fg:w="53"/><text x="15.2954%" y="703.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (188 samples, 0.04%)</title><rect x="15.0200%" y="709" width="0.0357%" height="15" fill="rgb(216,123,35)" fg:x="79187" fg:w="188"/><text x="15.2700%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (183 samples, 0.03%)</title><rect x="15.0556%" y="709" width="0.0347%" height="15" fill="rgb(212,68,40)" fg:x="79375" fg:w="183"/><text x="15.3056%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (732 samples, 0.14%)</title><rect x="14.9598%" y="725" width="0.1388%" height="15" fill="rgb(254,125,32)" fg:x="78870" fg:w="732"/><text x="15.2098%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,528 samples, 0.29%)</title><rect x="14.8100%" y="741" width="0.2898%" height="15" fill="rgb(253,97,22)" fg:x="78080" fg:w="1528"/><text x="15.0600%" y="751.50"></text></g><g><title>LoadNode::Ideal (100 samples, 0.02%)</title><rect x="15.1821%" y="709" width="0.0190%" height="15" fill="rgb(241,101,14)" fg:x="80042" fg:w="100"/><text x="15.4321%" y="719.50"></text></g><g><title>NodeHash::hash_find_insert (142 samples, 0.03%)</title><rect x="15.2121%" y="709" width="0.0269%" height="15" fill="rgb(238,103,29)" fg:x="80200" fg:w="142"/><text x="15.4621%" y="719.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (53 samples, 0.01%)</title><rect x="15.2390%" y="709" width="0.0101%" height="15" fill="rgb(233,195,47)" fg:x="80342" fg:w="53"/><text x="15.4890%" y="719.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (55 samples, 0.01%)</title><rect x="15.2571%" y="693" width="0.0104%" height="15" fill="rgb(246,218,30)" fg:x="80437" fg:w="55"/><text x="15.5071%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (103 samples, 0.02%)</title><rect x="15.2491%" y="709" width="0.0195%" height="15" fill="rgb(219,145,47)" fg:x="80395" fg:w="103"/><text x="15.4991%" y="719.50"></text></g><g><title>RegionNode::is_unreachable_region (109 samples, 0.02%)</title><rect x="15.3052%" y="693" width="0.0207%" height="15" fill="rgb(243,12,26)" fg:x="80691" fg:w="109"/><text x="15.5552%" y="703.50"></text></g><g><title>RegionNode::Ideal (205 samples, 0.04%)</title><rect x="15.2876%" y="709" width="0.0389%" height="15" fill="rgb(214,87,16)" fg:x="80598" fg:w="205"/><text x="15.5376%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="15.3284%" y="661" width="0.0108%" height="15" fill="rgb(208,99,42)" fg:x="80813" fg:w="57"/><text x="15.5784%" y="671.50"></text></g><g><title>InitializeNode::can_capture_store (58 samples, 0.01%)</title><rect x="15.3284%" y="693" width="0.0110%" height="15" fill="rgb(253,99,2)" fg:x="80813" fg:w="58"/><text x="15.5784%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (58 samples, 0.01%)</title><rect x="15.3284%" y="677" width="0.0110%" height="15" fill="rgb(220,168,23)" fg:x="80813" fg:w="58"/><text x="15.5784%" y="687.50"></text></g><g><title>StoreNode::Ideal (64 samples, 0.01%)</title><rect x="15.3284%" y="709" width="0.0121%" height="15" fill="rgb(242,38,24)" fg:x="80813" fg:w="64"/><text x="15.5784%" y="719.50"></text></g><g><title>PhaseIterGVN::transform_old (1,259 samples, 0.24%)</title><rect x="15.1078%" y="725" width="0.2388%" height="15" fill="rgb(225,182,9)" fg:x="79650" fg:w="1259"/><text x="15.3578%" y="735.50"></text></g><g><title>PhaseIterGVN::optimize (1,316 samples, 0.25%)</title><rect x="15.1000%" y="741" width="0.2496%" height="15" fill="rgb(243,178,37)" fg:x="79609" fg:w="1316"/><text x="15.3500%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (18,452 samples, 3.50%)</title><rect x="11.8717%" y="757" width="3.4999%" height="15" fill="rgb(232,139,19)" fg:x="62589" fg:w="18452"/><text x="12.1217%" y="767.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (69 samples, 0.01%)</title><rect x="15.3836%" y="741" width="0.0131%" height="15" fill="rgb(225,201,24)" fg:x="81104" fg:w="69"/><text x="15.6336%" y="751.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (133 samples, 0.03%)</title><rect x="15.3716%" y="757" width="0.0252%" height="15" fill="rgb(221,47,46)" fg:x="81041" fg:w="133"/><text x="15.6216%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (67 samples, 0.01%)</title><rect x="15.4976%" y="693" width="0.0127%" height="15" fill="rgb(249,23,13)" fg:x="81705" fg:w="67"/><text x="15.7476%" y="703.50"></text></g><g><title>Unique_Node_List::remove (56 samples, 0.01%)</title><rect x="15.4996%" y="677" width="0.0106%" height="15" fill="rgb(219,9,5)" fg:x="81716" fg:w="56"/><text x="15.7496%" y="687.50"></text></g><g><title>PhaseIterGVN::subsume_node (81 samples, 0.02%)</title><rect x="15.4953%" y="709" width="0.0154%" height="15" fill="rgb(254,171,16)" fg:x="81693" fg:w="81"/><text x="15.7453%" y="719.50"></text></g><g><title>IfNode::Ideal (255 samples, 0.05%)</title><rect x="15.4733%" y="725" width="0.0484%" height="15" fill="rgb(230,171,20)" fg:x="81577" fg:w="255"/><text x="15.7233%" y="735.50"></text></g><g><title>split_if (53 samples, 0.01%)</title><rect x="15.5116%" y="709" width="0.0101%" height="15" fill="rgb(210,71,41)" fg:x="81779" fg:w="53"/><text x="15.7616%" y="719.50"></text></g><g><title>MemNode::Ideal_common (80 samples, 0.02%)</title><rect x="15.5374%" y="709" width="0.0152%" height="15" fill="rgb(206,173,20)" fg:x="81915" fg:w="80"/><text x="15.7874%" y="719.50"></text></g><g><title>Node::dominates (68 samples, 0.01%)</title><rect x="15.5550%" y="677" width="0.0129%" height="15" fill="rgb(233,88,34)" fg:x="82008" fg:w="68"/><text x="15.8050%" y="687.50"></text></g><g><title>MemNode::all_controls_dominate (71 samples, 0.01%)</title><rect x="15.5547%" y="693" width="0.0135%" height="15" fill="rgb(223,209,46)" fg:x="82006" fg:w="71"/><text x="15.8047%" y="703.50"></text></g><g><title>MemNode::find_previous_store (105 samples, 0.02%)</title><rect x="15.5533%" y="709" width="0.0199%" height="15" fill="rgb(250,43,18)" fg:x="81999" fg:w="105"/><text x="15.8033%" y="719.50"></text></g><g><title>LoadNode::Ideal (249 samples, 0.05%)</title><rect x="15.5273%" y="725" width="0.0472%" height="15" fill="rgb(208,13,10)" fg:x="81862" fg:w="249"/><text x="15.7773%" y="735.50"></text></g><g><title>MergeMemNode::Ideal (67 samples, 0.01%)</title><rect x="15.5901%" y="725" width="0.0127%" height="15" fill="rgb(212,200,36)" fg:x="82193" fg:w="67"/><text x="15.8401%" y="735.50"></text></g><g><title>NodeHash::grow (61 samples, 0.01%)</title><rect x="15.6298%" y="709" width="0.0116%" height="15" fill="rgb(225,90,30)" fg:x="82402" fg:w="61"/><text x="15.8798%" y="719.50"></text></g><g><title>NodeHash::hash_find_insert (196 samples, 0.04%)</title><rect x="15.6070%" y="725" width="0.0372%" height="15" fill="rgb(236,182,39)" fg:x="82282" fg:w="196"/><text x="15.8570%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (81 samples, 0.02%)</title><rect x="15.6442%" y="725" width="0.0154%" height="15" fill="rgb(212,144,35)" fg:x="82478" fg:w="81"/><text x="15.8942%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (92 samples, 0.02%)</title><rect x="15.6872%" y="709" width="0.0175%" height="15" fill="rgb(228,63,44)" fg:x="82705" fg:w="92"/><text x="15.9372%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (255 samples, 0.05%)</title><rect x="15.6595%" y="725" width="0.0484%" height="15" fill="rgb(228,109,6)" fg:x="82559" fg:w="255"/><text x="15.9095%" y="735.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (65 samples, 0.01%)</title><rect x="15.7246%" y="709" width="0.0123%" height="15" fill="rgb(238,117,24)" fg:x="82902" fg:w="65"/><text x="15.9746%" y="719.50"></text></g><g><title>PhiNode::Ideal (174 samples, 0.03%)</title><rect x="15.7083%" y="725" width="0.0330%" height="15" fill="rgb(242,26,26)" fg:x="82816" fg:w="174"/><text x="15.9583%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (112 samples, 0.02%)</title><rect x="15.7838%" y="693" width="0.0212%" height="15" fill="rgb(221,92,48)" fg:x="83214" fg:w="112"/><text x="16.0338%" y="703.50"></text></g><g><title>Unique_Node_List::remove (98 samples, 0.02%)</title><rect x="15.7864%" y="677" width="0.0186%" height="15" fill="rgb(209,209,32)" fg:x="83228" fg:w="98"/><text x="16.0364%" y="687.50"></text></g><g><title>PhaseIterGVN::subsume_node (134 samples, 0.03%)</title><rect x="15.7809%" y="709" width="0.0254%" height="15" fill="rgb(221,70,22)" fg:x="83199" fg:w="134"/><text x="16.0309%" y="719.50"></text></g><g><title>RegionNode::is_unreachable_region (84 samples, 0.02%)</title><rect x="15.8130%" y="709" width="0.0159%" height="15" fill="rgb(248,145,5)" fg:x="83368" fg:w="84"/><text x="16.0630%" y="719.50"></text></g><g><title>RegionNode::Ideal (350 samples, 0.07%)</title><rect x="15.7642%" y="725" width="0.0664%" height="15" fill="rgb(226,116,26)" fg:x="83111" fg:w="350"/><text x="16.0142%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (63 samples, 0.01%)</title><rect x="15.8348%" y="421" width="0.0119%" height="15" fill="rgb(244,5,17)" fg:x="83483" fg:w="63"/><text x="16.0848%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (88 samples, 0.02%)</title><rect x="15.8348%" y="437" width="0.0167%" height="15" fill="rgb(252,159,33)" fg:x="83483" fg:w="88"/><text x="16.0848%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.02%)</title><rect x="15.8348%" y="453" width="0.0201%" height="15" fill="rgb(206,71,0)" fg:x="83483" fg:w="106"/><text x="16.0848%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (123 samples, 0.02%)</title><rect x="15.8348%" y="469" width="0.0233%" height="15" fill="rgb(233,118,54)" fg:x="83483" fg:w="123"/><text x="16.0848%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.03%)</title><rect x="15.8348%" y="485" width="0.0271%" height="15" fill="rgb(234,83,48)" fg:x="83483" fg:w="143"/><text x="16.0848%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (161 samples, 0.03%)</title><rect x="15.8348%" y="501" width="0.0305%" height="15" fill="rgb(228,3,54)" fg:x="83483" fg:w="161"/><text x="16.0848%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (181 samples, 0.03%)</title><rect x="15.8348%" y="517" width="0.0343%" height="15" fill="rgb(226,155,13)" fg:x="83483" fg:w="181"/><text x="16.0848%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (200 samples, 0.04%)</title><rect x="15.8346%" y="533" width="0.0379%" height="15" fill="rgb(241,28,37)" fg:x="83482" fg:w="200"/><text x="16.0846%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (224 samples, 0.04%)</title><rect x="15.8346%" y="549" width="0.0425%" height="15" fill="rgb(233,93,10)" fg:x="83482" fg:w="224"/><text x="16.0846%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (239 samples, 0.05%)</title><rect x="15.8346%" y="565" width="0.0453%" height="15" fill="rgb(225,113,19)" fg:x="83482" fg:w="239"/><text x="16.0846%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (258 samples, 0.05%)</title><rect x="15.8344%" y="581" width="0.0489%" height="15" fill="rgb(241,2,18)" fg:x="83481" fg:w="258"/><text x="16.0844%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (272 samples, 0.05%)</title><rect x="15.8342%" y="597" width="0.0516%" height="15" fill="rgb(228,207,21)" fg:x="83480" fg:w="272"/><text x="16.0842%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (290 samples, 0.06%)</title><rect x="15.8342%" y="613" width="0.0550%" height="15" fill="rgb(213,211,35)" fg:x="83480" fg:w="290"/><text x="16.0842%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (305 samples, 0.06%)</title><rect x="15.8342%" y="629" width="0.0579%" height="15" fill="rgb(209,83,10)" fg:x="83480" fg:w="305"/><text x="16.0842%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (320 samples, 0.06%)</title><rect x="15.8342%" y="645" width="0.0607%" height="15" fill="rgb(209,164,1)" fg:x="83480" fg:w="320"/><text x="16.0842%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (350 samples, 0.07%)</title><rect x="15.8342%" y="661" width="0.0664%" height="15" fill="rgb(213,184,43)" fg:x="83480" fg:w="350"/><text x="16.0842%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (395 samples, 0.07%)</title><rect x="15.8342%" y="677" width="0.0749%" height="15" fill="rgb(231,61,34)" fg:x="83480" fg:w="395"/><text x="16.0842%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (397 samples, 0.08%)</title><rect x="15.8340%" y="709" width="0.0753%" height="15" fill="rgb(235,75,3)" fg:x="83479" fg:w="397"/><text x="16.0840%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (396 samples, 0.08%)</title><rect x="15.8342%" y="693" width="0.0751%" height="15" fill="rgb(220,106,47)" fg:x="83480" fg:w="396"/><text x="16.0842%" y="703.50"></text></g><g><title>StoreNode::Ideal (434 samples, 0.08%)</title><rect x="15.8333%" y="725" width="0.0823%" height="15" fill="rgb(210,196,33)" fg:x="83475" fg:w="434"/><text x="16.0833%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (2,725 samples, 0.52%)</title><rect x="15.4126%" y="741" width="0.5169%" height="15" fill="rgb(229,154,42)" fg:x="81257" fg:w="2725"/><text x="15.6626%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (2,829 samples, 0.54%)</title><rect x="15.3968%" y="757" width="0.5366%" height="15" fill="rgb(228,114,26)" fg:x="81174" fg:w="2829"/><text x="15.6468%" y="767.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (53 samples, 0.01%)</title><rect x="15.9336%" y="757" width="0.0101%" height="15" fill="rgb(208,144,1)" fg:x="84004" fg:w="53"/><text x="16.1836%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (252 samples, 0.05%)</title><rect x="15.9471%" y="725" width="0.0478%" height="15" fill="rgb(239,112,37)" fg:x="84075" fg:w="252"/><text x="16.1971%" y="735.50"></text></g><g><title>PhaseIterGVN::optimize (266 samples, 0.05%)</title><rect x="15.9448%" y="741" width="0.0505%" height="15" fill="rgb(210,96,50)" fg:x="84063" fg:w="266"/><text x="16.1948%" y="751.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (92 samples, 0.02%)</title><rect x="15.9964%" y="741" width="0.0175%" height="15" fill="rgb(222,178,2)" fg:x="84335" fg:w="92"/><text x="16.2464%" y="751.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (401 samples, 0.08%)</title><rect x="15.9437%" y="757" width="0.0761%" height="15" fill="rgb(226,74,18)" fg:x="84057" fg:w="401"/><text x="16.1937%" y="767.50"></text></g><g><title>Compile::identify_useful_nodes (81 samples, 0.02%)</title><rect x="16.0256%" y="725" width="0.0154%" height="15" fill="rgb(225,67,54)" fg:x="84489" fg:w="81"/><text x="16.2756%" y="735.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (170 samples, 0.03%)</title><rect x="16.0197%" y="757" width="0.0322%" height="15" fill="rgb(251,92,32)" fg:x="84458" fg:w="170"/><text x="16.2697%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (159 samples, 0.03%)</title><rect x="16.0218%" y="741" width="0.0302%" height="15" fill="rgb(228,149,22)" fg:x="84469" fg:w="159"/><text x="16.2718%" y="751.50"></text></g><g><title>Compile::Optimize (24,192 samples, 4.59%)</title><rect x="11.4641%" y="773" width="4.5887%" height="15" fill="rgb(243,54,13)" fg:x="60440" fg:w="24192"/><text x="11.7141%" y="783.50">Compi..</text></g><g><title>Parse::do_one_block (177 samples, 0.03%)</title><rect x="16.0554%" y="661" width="0.0336%" height="15" fill="rgb(243,180,28)" fg:x="84646" fg:w="177"/><text x="16.3054%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (158 samples, 0.03%)</title><rect x="16.0590%" y="645" width="0.0300%" height="15" fill="rgb(208,167,24)" fg:x="84665" fg:w="158"/><text x="16.3090%" y="655.50"></text></g><g><title>Parse::do_all_blocks (179 samples, 0.03%)</title><rect x="16.0554%" y="677" width="0.0340%" height="15" fill="rgb(245,73,45)" fg:x="84646" fg:w="179"/><text x="16.3054%" y="687.50"></text></g><g><title>ParseGenerator::generate (187 samples, 0.04%)</title><rect x="16.0554%" y="709" width="0.0355%" height="15" fill="rgb(237,203,48)" fg:x="84646" fg:w="187"/><text x="16.3054%" y="719.50"></text></g><g><title>Parse::Parse (187 samples, 0.04%)</title><rect x="16.0554%" y="693" width="0.0355%" height="15" fill="rgb(211,197,16)" fg:x="84646" fg:w="187"/><text x="16.3054%" y="703.50"></text></g><g><title>CompileBroker::compiler_thread_loop (212 samples, 0.04%)</title><rect x="16.0533%" y="773" width="0.0402%" height="15" fill="rgb(243,99,51)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (212 samples, 0.04%)</title><rect x="16.0533%" y="757" width="0.0402%" height="15" fill="rgb(215,123,29)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="767.50"></text></g><g><title>C2Compiler::compile_method (212 samples, 0.04%)</title><rect x="16.0533%" y="741" width="0.0402%" height="15" fill="rgb(239,186,37)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="751.50"></text></g><g><title>Compile::Compile (212 samples, 0.04%)</title><rect x="16.0533%" y="725" width="0.0402%" height="15" fill="rgb(252,136,39)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="735.50"></text></g><g><title>CallGenerator::for_inline (79 samples, 0.01%)</title><rect x="16.0935%" y="725" width="0.0150%" height="15" fill="rgb(223,213,32)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="735.50"></text></g><g><title>InlineTree::check_can_parse (79 samples, 0.01%)</title><rect x="16.0935%" y="709" width="0.0150%" height="15" fill="rgb(233,115,5)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (79 samples, 0.01%)</title><rect x="16.0935%" y="693" width="0.0150%" height="15" fill="rgb(207,226,44)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="703.50"></text></g><g><title>ciTypeFlow::do_flow (79 samples, 0.01%)</title><rect x="16.0935%" y="677" width="0.0150%" height="15" fill="rgb(208,126,0)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (79 samples, 0.01%)</title><rect x="16.0935%" y="661" width="0.0150%" height="15" fill="rgb(244,66,21)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="671.50"></text></g><g><title>ciTypeFlow::df_flow_types (78 samples, 0.01%)</title><rect x="16.0937%" y="645" width="0.0148%" height="15" fill="rgb(222,97,12)" fg:x="84848" fg:w="78"/><text x="16.3437%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (78 samples, 0.01%)</title><rect x="16.0937%" y="629" width="0.0148%" height="15" fill="rgb(219,213,19)" fg:x="84848" fg:w="78"/><text x="16.3437%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (78 samples, 0.01%)</title><rect x="16.0937%" y="613" width="0.0148%" height="15" fill="rgb(252,169,30)" fg:x="84848" fg:w="78"/><text x="16.3437%" y="623.50"></text></g><g><title>InlineTree::ok_to_inline (77 samples, 0.01%)</title><rect x="16.1178%" y="613" width="0.0146%" height="15" fill="rgb(206,32,51)" fg:x="84975" fg:w="77"/><text x="16.3678%" y="623.50"></text></g><g><title>Compile::call_generator (98 samples, 0.02%)</title><rect x="16.1167%" y="629" width="0.0186%" height="15" fill="rgb(250,172,42)" fg:x="84969" fg:w="98"/><text x="16.3667%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="16.1614%" y="565" width="0.0197%" height="15" fill="rgb(209,34,43)" fg:x="85205" fg:w="104"/><text x="16.4114%" y="575.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="16.1588%" y="581" width="0.0228%" height="15" fill="rgb(223,11,35)" fg:x="85191" fg:w="120"/><text x="16.4088%" y="591.50"></text></g><g><title>Parse::do_all_blocks (134 samples, 0.03%)</title><rect x="16.1576%" y="597" width="0.0254%" height="15" fill="rgb(251,219,26)" fg:x="85185" fg:w="134"/><text x="16.4076%" y="607.50"></text></g><g><title>ParseGenerator::generate (213 samples, 0.04%)</title><rect x="16.1502%" y="629" width="0.0404%" height="15" fill="rgb(231,119,3)" fg:x="85146" fg:w="213"/><text x="16.4002%" y="639.50"></text></g><g><title>Parse::Parse (212 samples, 0.04%)</title><rect x="16.1504%" y="613" width="0.0402%" height="15" fill="rgb(216,97,11)" fg:x="85147" fg:w="212"/><text x="16.4004%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (78 samples, 0.01%)</title><rect x="16.1906%" y="629" width="0.0148%" height="15" fill="rgb(223,59,9)" fg:x="85359" fg:w="78"/><text x="16.4406%" y="639.50"></text></g><g><title>Parse::do_call (488 samples, 0.09%)</title><rect x="16.1167%" y="645" width="0.0926%" height="15" fill="rgb(233,93,31)" fg:x="84969" fg:w="488"/><text x="16.3667%" y="655.50"></text></g><g><title>Parse::do_field_access (83 samples, 0.02%)</title><rect x="16.2117%" y="645" width="0.0157%" height="15" fill="rgb(239,81,33)" fg:x="85470" fg:w="83"/><text x="16.4617%" y="655.50"></text></g><g><title>Parse::do_one_block (665 samples, 0.13%)</title><rect x="16.1100%" y="677" width="0.1261%" height="15" fill="rgb(213,120,34)" fg:x="84934" fg:w="665"/><text x="16.3600%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (659 samples, 0.12%)</title><rect x="16.1112%" y="661" width="0.1250%" height="15" fill="rgb(243,49,53)" fg:x="84940" fg:w="659"/><text x="16.3612%" y="671.50"></text></g><g><title>Parse::do_all_blocks (666 samples, 0.13%)</title><rect x="16.1100%" y="693" width="0.1263%" height="15" fill="rgb(247,216,33)" fg:x="84934" fg:w="666"/><text x="16.3600%" y="703.50"></text></g><g><title>ParseGenerator::generate (677 samples, 0.13%)</title><rect x="16.1100%" y="725" width="0.1284%" height="15" fill="rgb(226,26,14)" fg:x="84934" fg:w="677"/><text x="16.3600%" y="735.50"></text></g><g><title>Parse::Parse (677 samples, 0.13%)</title><rect x="16.1100%" y="709" width="0.1284%" height="15" fill="rgb(215,49,53)" fg:x="84934" fg:w="677"/><text x="16.3600%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (788 samples, 0.15%)</title><rect x="16.0935%" y="773" width="0.1495%" height="15" fill="rgb(245,162,40)" fg:x="84847" fg:w="788"/><text x="16.3435%" y="783.50"></text></g><g><title>C2Compiler::compile_method (788 samples, 0.15%)</title><rect x="16.0935%" y="757" width="0.1495%" height="15" fill="rgb(229,68,17)" fg:x="84847" fg:w="788"/><text x="16.3435%" y="767.50"></text></g><g><title>Compile::Compile (788 samples, 0.15%)</title><rect x="16.0935%" y="741" width="0.1495%" height="15" fill="rgb(213,182,10)" fg:x="84847" fg:w="788"/><text x="16.3435%" y="751.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="16.2572%" y="661" width="0.0104%" height="15" fill="rgb(245,125,30)" fg:x="85710" fg:w="55"/><text x="16.5072%" y="671.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.01%)</title><rect x="16.2570%" y="693" width="0.0119%" height="15" fill="rgb(232,202,2)" fg:x="85709" fg:w="63"/><text x="16.5070%" y="703.50"></text></g><g><title>Parse::Parse (63 samples, 0.01%)</title><rect x="16.2570%" y="677" width="0.0119%" height="15" fill="rgb(237,140,51)" fg:x="85709" fg:w="63"/><text x="16.5070%" y="687.50"></text></g><g><title>JavaThread::thread_main_inner (87 samples, 0.02%)</title><rect x="16.2549%" y="773" width="0.0165%" height="15" fill="rgb(236,157,25)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (87 samples, 0.02%)</title><rect x="16.2549%" y="757" width="0.0165%" height="15" fill="rgb(219,209,0)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (87 samples, 0.02%)</title><rect x="16.2549%" y="741" width="0.0165%" height="15" fill="rgb(240,116,54)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="751.50"></text></g><g><title>C2Compiler::compile_method (87 samples, 0.02%)</title><rect x="16.2549%" y="725" width="0.0165%" height="15" fill="rgb(216,10,36)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="735.50"></text></g><g><title>Compile::Compile (87 samples, 0.02%)</title><rect x="16.2549%" y="709" width="0.0165%" height="15" fill="rgb(222,72,44)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="719.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.01%)</title><rect x="16.2879%" y="661" width="0.0121%" height="15" fill="rgb(232,159,9)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="671.50"></text></g><g><title>Parse::Parse (64 samples, 0.01%)</title><rect x="16.2879%" y="645" width="0.0121%" height="15" fill="rgb(210,39,32)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="655.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.01%)</title><rect x="16.2879%" y="629" width="0.0121%" height="15" fill="rgb(216,194,45)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="639.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.01%)</title><rect x="16.2879%" y="613" width="0.0121%" height="15" fill="rgb(218,18,35)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.01%)</title><rect x="16.2879%" y="597" width="0.0121%" height="15" fill="rgb(207,83,51)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="607.50"></text></g><g><title>Parse::do_call (64 samples, 0.01%)</title><rect x="16.2879%" y="581" width="0.0121%" height="15" fill="rgb(225,63,43)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="591.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.01%)</title><rect x="16.2879%" y="757" width="0.0131%" height="15" fill="rgb(207,57,36)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="767.50"></text></g><g><title>Parse::Parse (69 samples, 0.01%)</title><rect x="16.2879%" y="741" width="0.0131%" height="15" fill="rgb(216,99,33)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="751.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.01%)</title><rect x="16.2879%" y="725" width="0.0131%" height="15" fill="rgb(225,42,16)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="735.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.01%)</title><rect x="16.2879%" y="709" width="0.0131%" height="15" fill="rgb(220,201,45)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="16.2879%" y="693" width="0.0131%" height="15" fill="rgb(225,33,4)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="703.50"></text></g><g><title>Parse::do_call (69 samples, 0.01%)</title><rect x="16.2879%" y="677" width="0.0131%" height="15" fill="rgb(224,33,50)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="687.50"></text></g><g><title>Parse::do_call (78 samples, 0.01%)</title><rect x="16.2879%" y="773" width="0.0148%" height="15" fill="rgb(246,198,51)" fg:x="85872" fg:w="78"/><text x="16.5379%" y="783.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="16.3173%" y="101" width="0.0135%" height="15" fill="rgb(205,22,4)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="111.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="16.3173%" y="85" width="0.0135%" height="15" fill="rgb(206,3,8)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="95.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.01%)</title><rect x="16.3173%" y="69" width="0.0135%" height="15" fill="rgb(251,23,15)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="79.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.01%)</title><rect x="16.3173%" y="53" width="0.0135%" height="15" fill="rgb(252,88,28)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.01%)</title><rect x="16.3173%" y="37" width="0.0135%" height="15" fill="rgb(212,127,14)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="47.50"></text></g><g><title>Parse::do_call (79 samples, 0.01%)</title><rect x="16.3160%" y="117" width="0.0150%" height="15" fill="rgb(247,145,37)" fg:x="86020" fg:w="79"/><text x="16.5660%" y="127.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.02%)</title><rect x="16.3160%" y="197" width="0.0157%" height="15" fill="rgb(209,117,53)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="207.50"></text></g><g><title>Parse::Parse (83 samples, 0.02%)</title><rect x="16.3160%" y="181" width="0.0157%" height="15" fill="rgb(212,90,42)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="191.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.02%)</title><rect x="16.3160%" y="165" width="0.0157%" height="15" fill="rgb(218,164,37)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="175.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.02%)</title><rect x="16.3160%" y="149" width="0.0157%" height="15" fill="rgb(246,65,34)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.02%)</title><rect x="16.3160%" y="133" width="0.0157%" height="15" fill="rgb(231,100,33)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="143.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="16.3151%" y="213" width="0.0176%" height="15" fill="rgb(228,126,14)" fg:x="86015" fg:w="93"/><text x="16.5651%" y="223.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="16.3151%" y="293" width="0.0178%" height="15" fill="rgb(215,173,21)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="303.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="16.3151%" y="277" width="0.0178%" height="15" fill="rgb(210,6,40)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="287.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="16.3151%" y="261" width="0.0178%" height="15" fill="rgb(212,48,18)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="271.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="16.3151%" y="245" width="0.0178%" height="15" fill="rgb(230,214,11)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="16.3151%" y="229" width="0.0178%" height="15" fill="rgb(254,105,39)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="239.50"></text></g><g><title>ParseGenerator::generate (102 samples, 0.02%)</title><rect x="16.3151%" y="389" width="0.0193%" height="15" fill="rgb(245,158,5)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="399.50"></text></g><g><title>Parse::Parse (102 samples, 0.02%)</title><rect x="16.3151%" y="373" width="0.0193%" height="15" fill="rgb(249,208,11)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="383.50"></text></g><g><title>Parse::do_all_blocks (102 samples, 0.02%)</title><rect x="16.3151%" y="357" width="0.0193%" height="15" fill="rgb(210,39,28)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="367.50"></text></g><g><title>Parse::do_one_block (102 samples, 0.02%)</title><rect x="16.3151%" y="341" width="0.0193%" height="15" fill="rgb(211,56,53)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (102 samples, 0.02%)</title><rect x="16.3151%" y="325" width="0.0193%" height="15" fill="rgb(226,201,30)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="335.50"></text></g><g><title>Parse::do_call (102 samples, 0.02%)</title><rect x="16.3151%" y="309" width="0.0193%" height="15" fill="rgb(239,101,34)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="319.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.02%)</title><rect x="16.3151%" y="485" width="0.0218%" height="15" fill="rgb(226,209,5)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="495.50"></text></g><g><title>Parse::Parse (115 samples, 0.02%)</title><rect x="16.3151%" y="469" width="0.0218%" height="15" fill="rgb(250,105,47)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="479.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.02%)</title><rect x="16.3151%" y="453" width="0.0218%" height="15" fill="rgb(230,72,3)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="463.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.02%)</title><rect x="16.3151%" y="437" width="0.0218%" height="15" fill="rgb(232,218,39)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.02%)</title><rect x="16.3151%" y="421" width="0.0218%" height="15" fill="rgb(248,166,6)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="431.50"></text></g><g><title>Parse::do_call (115 samples, 0.02%)</title><rect x="16.3151%" y="405" width="0.0218%" height="15" fill="rgb(247,89,20)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="415.50"></text></g><g><title>ParseGenerator::generate (130 samples, 0.02%)</title><rect x="16.3151%" y="581" width="0.0247%" height="15" fill="rgb(248,130,54)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="591.50"></text></g><g><title>Parse::Parse (130 samples, 0.02%)</title><rect x="16.3151%" y="565" width="0.0247%" height="15" fill="rgb(234,196,4)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="575.50"></text></g><g><title>Parse::do_all_blocks (130 samples, 0.02%)</title><rect x="16.3151%" y="549" width="0.0247%" height="15" fill="rgb(250,143,31)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="559.50"></text></g><g><title>Parse::do_one_block (130 samples, 0.02%)</title><rect x="16.3151%" y="533" width="0.0247%" height="15" fill="rgb(211,110,34)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (130 samples, 0.02%)</title><rect x="16.3151%" y="517" width="0.0247%" height="15" fill="rgb(215,124,48)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="527.50"></text></g><g><title>Parse::do_call (130 samples, 0.02%)</title><rect x="16.3151%" y="501" width="0.0247%" height="15" fill="rgb(216,46,13)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="511.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="16.3151%" y="677" width="0.0296%" height="15" fill="rgb(205,184,25)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="687.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="16.3151%" y="661" width="0.0296%" height="15" fill="rgb(228,1,10)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="671.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="16.3151%" y="645" width="0.0296%" height="15" fill="rgb(213,116,27)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="655.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="16.3151%" y="629" width="0.0296%" height="15" fill="rgb(241,95,50)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="16.3151%" y="613" width="0.0296%" height="15" fill="rgb(238,48,32)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="623.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="16.3151%" y="597" width="0.0296%" height="15" fill="rgb(235,113,49)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="607.50"></text></g><g><title>ParseGenerator::generate (178 samples, 0.03%)</title><rect x="16.3151%" y="773" width="0.0338%" height="15" fill="rgb(205,127,43)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="783.50"></text></g><g><title>Parse::Parse (178 samples, 0.03%)</title><rect x="16.3151%" y="757" width="0.0338%" height="15" fill="rgb(250,162,2)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="767.50"></text></g><g><title>Parse::do_all_blocks (178 samples, 0.03%)</title><rect x="16.3151%" y="741" width="0.0338%" height="15" fill="rgb(220,13,41)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="751.50"></text></g><g><title>Parse::do_one_block (178 samples, 0.03%)</title><rect x="16.3151%" y="725" width="0.0338%" height="15" fill="rgb(249,221,25)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (178 samples, 0.03%)</title><rect x="16.3151%" y="709" width="0.0338%" height="15" fill="rgb(215,208,19)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="719.50"></text></g><g><title>Parse::do_call (178 samples, 0.03%)</title><rect x="16.3151%" y="693" width="0.0338%" height="15" fill="rgb(236,175,2)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="703.50"></text></g><g><title>Thread::call_run (58 samples, 0.01%)</title><rect x="16.3549%" y="773" width="0.0110%" height="15" fill="rgb(241,52,2)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (58 samples, 0.01%)</title><rect x="16.3549%" y="757" width="0.0110%" height="15" fill="rgb(248,140,14)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (58 samples, 0.01%)</title><rect x="16.3549%" y="741" width="0.0110%" height="15" fill="rgb(253,22,42)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (58 samples, 0.01%)</title><rect x="16.3549%" y="725" width="0.0110%" height="15" fill="rgb(234,61,47)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="735.50"></text></g><g><title>C2Compiler::compile_method (58 samples, 0.01%)</title><rect x="16.3549%" y="709" width="0.0110%" height="15" fill="rgb(208,226,15)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="719.50"></text></g><g><title>Compile::Compile (58 samples, 0.01%)</title><rect x="16.3549%" y="693" width="0.0110%" height="15" fill="rgb(217,221,4)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="703.50"></text></g><g><title>start_thread (98 samples, 0.02%)</title><rect x="16.3834%" y="773" width="0.0186%" height="15" fill="rgb(212,174,34)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="783.50"></text></g><g><title>thread_native_entry (98 samples, 0.02%)</title><rect x="16.3834%" y="757" width="0.0186%" height="15" fill="rgb(253,83,4)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="767.50"></text></g><g><title>Thread::call_run (98 samples, 0.02%)</title><rect x="16.3834%" y="741" width="0.0186%" height="15" fill="rgb(250,195,49)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="751.50"></text></g><g><title>JavaThread::thread_main_inner (98 samples, 0.02%)</title><rect x="16.3834%" y="725" width="0.0186%" height="15" fill="rgb(241,192,25)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (98 samples, 0.02%)</title><rect x="16.3834%" y="709" width="0.0186%" height="15" fill="rgb(208,124,10)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (98 samples, 0.02%)</title><rect x="16.3834%" y="693" width="0.0186%" height="15" fill="rgb(222,33,0)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="703.50"></text></g><g><title>C2Compiler::compile_method (98 samples, 0.02%)</title><rect x="16.3834%" y="677" width="0.0186%" height="15" fill="rgb(234,209,28)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="687.50"></text></g><g><title>Compile::Compile (98 samples, 0.02%)</title><rect x="16.3834%" y="661" width="0.0186%" height="15" fill="rgb(224,11,23)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="671.50"></text></g><g><title>[unknown] (68,944 samples, 13.08%)</title><rect x="3.3286%" y="789" width="13.0771%" height="15" fill="rgb(232,99,1)" fg:x="17549" fg:w="68944"/><text x="3.5786%" y="799.50">[unknown]</text></g><g><title>Dict::Insert (68 samples, 0.01%)</title><rect x="16.4287%" y="613" width="0.0129%" height="15" fill="rgb(237,95,45)" fg:x="86614" fg:w="68"/><text x="16.6787%" y="623.50"></text></g><g><title>Type::Initialize (79 samples, 0.01%)</title><rect x="16.4281%" y="629" width="0.0150%" height="15" fill="rgb(208,109,11)" fg:x="86611" fg:w="79"/><text x="16.6781%" y="639.50"></text></g><g><title>CompileWrapper::CompileWrapper (83 samples, 0.02%)</title><rect x="16.4277%" y="645" width="0.0157%" height="15" fill="rgb(216,190,48)" fg:x="86609" fg:w="83"/><text x="16.6777%" y="655.50"></text></g><g><title>Compile::identify_useful_nodes (186 samples, 0.04%)</title><rect x="16.4530%" y="629" width="0.0353%" height="15" fill="rgb(251,171,36)" fg:x="86742" fg:w="186"/><text x="16.7030%" y="639.50"></text></g><g><title>Compile::remove_useless_nodes (188 samples, 0.04%)</title><rect x="16.4882%" y="629" width="0.0357%" height="15" fill="rgb(230,62,22)" fg:x="86928" fg:w="188"/><text x="16.7382%" y="639.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (459 samples, 0.09%)</title><rect x="16.4458%" y="645" width="0.0871%" height="15" fill="rgb(225,114,35)" fg:x="86704" fg:w="459"/><text x="16.6958%" y="655.50"></text></g><g><title>C2Compiler::compile_method (708 samples, 0.13%)</title><rect x="16.4109%" y="677" width="0.1343%" height="15" fill="rgb(215,118,42)" fg:x="86520" fg:w="708"/><text x="16.6609%" y="687.50"></text></g><g><title>Compile::Compile (691 samples, 0.13%)</title><rect x="16.4141%" y="661" width="0.1311%" height="15" fill="rgb(243,119,21)" fg:x="86537" fg:w="691"/><text x="16.6641%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (860 samples, 0.16%)</title><rect x="16.4097%" y="693" width="0.1631%" height="15" fill="rgb(252,177,53)" fg:x="86514" fg:w="860"/><text x="16.6597%" y="703.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.02%)</title><rect x="16.5867%" y="501" width="0.0157%" height="15" fill="rgb(237,209,29)" fg:x="87447" fg:w="83"/><text x="16.8367%" y="511.50"></text></g><g><title>schedule (77 samples, 0.01%)</title><rect x="16.5878%" y="485" width="0.0146%" height="15" fill="rgb(212,65,23)" fg:x="87453" fg:w="77"/><text x="16.8378%" y="495.50"></text></g><g><title>__schedule (77 samples, 0.01%)</title><rect x="16.5878%" y="469" width="0.0146%" height="15" fill="rgb(230,222,46)" fg:x="87453" fg:w="77"/><text x="16.8378%" y="479.50"></text></g><g><title>do_futex (94 samples, 0.02%)</title><rect x="16.5863%" y="533" width="0.0178%" height="15" fill="rgb(215,135,32)" fg:x="87445" fg:w="94"/><text x="16.8363%" y="543.50"></text></g><g><title>futex_wait (93 samples, 0.02%)</title><rect x="16.5865%" y="517" width="0.0176%" height="15" fill="rgb(246,101,22)" fg:x="87446" fg:w="93"/><text x="16.8365%" y="527.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="16.5861%" y="565" width="0.0182%" height="15" fill="rgb(206,107,13)" fg:x="87444" fg:w="96"/><text x="16.8361%" y="575.50"></text></g><g><title>__x64_sys_futex (95 samples, 0.02%)</title><rect x="16.5863%" y="549" width="0.0180%" height="15" fill="rgb(250,100,44)" fg:x="87445" fg:w="95"/><text x="16.8363%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (100 samples, 0.02%)</title><rect x="16.5861%" y="581" width="0.0190%" height="15" fill="rgb(231,147,38)" fg:x="87444" fg:w="100"/><text x="16.8361%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (108 samples, 0.02%)</title><rect x="16.5848%" y="629" width="0.0205%" height="15" fill="rgb(229,8,40)" fg:x="87437" fg:w="108"/><text x="16.8348%" y="639.50"></text></g><g><title>__pthread_cond_wait_common (108 samples, 0.02%)</title><rect x="16.5848%" y="613" width="0.0205%" height="15" fill="rgb(221,135,30)" fg:x="87437" fg:w="108"/><text x="16.8348%" y="623.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="16.5852%" y="597" width="0.0201%" height="15" fill="rgb(249,193,18)" fg:x="87439" fg:w="106"/><text x="16.8352%" y="607.50"></text></g><g><title>os::PlatformEvent::park (119 samples, 0.02%)</title><rect x="16.5844%" y="645" width="0.0226%" height="15" fill="rgb(209,133,39)" fg:x="87435" fg:w="119"/><text x="16.8344%" y="655.50"></text></g><g><title>Monitor::IWait (155 samples, 0.03%)</title><rect x="16.5780%" y="661" width="0.0294%" height="15" fill="rgb(232,100,14)" fg:x="87401" fg:w="155"/><text x="16.8280%" y="671.50"></text></g><g><title>Monitor::wait (167 samples, 0.03%)</title><rect x="16.5759%" y="677" width="0.0317%" height="15" fill="rgb(224,185,1)" fg:x="87390" fg:w="167"/><text x="16.8259%" y="687.50"></text></g><g><title>CompileQueue::get (200 samples, 0.04%)</title><rect x="16.5745%" y="693" width="0.0379%" height="15" fill="rgb(223,139,8)" fg:x="87383" fg:w="200"/><text x="16.8245%" y="703.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,078 samples, 0.20%)</title><rect x="16.4095%" y="709" width="0.2045%" height="15" fill="rgb(232,213,38)" fg:x="86513" fg:w="1078"/><text x="16.6595%" y="719.50"></text></g><g><title>Thread::call_run (1,082 samples, 0.21%)</title><rect x="16.4091%" y="741" width="0.2052%" height="15" fill="rgb(207,94,22)" fg:x="86511" fg:w="1082"/><text x="16.6591%" y="751.50"></text></g><g><title>JavaThread::thread_main_inner (1,080 samples, 0.20%)</title><rect x="16.4095%" y="725" width="0.2049%" height="15" fill="rgb(219,183,54)" fg:x="86513" fg:w="1080"/><text x="16.6595%" y="735.50"></text></g><g><title>__GI___clone (1,091 samples, 0.21%)</title><rect x="16.4076%" y="789" width="0.2069%" height="15" fill="rgb(216,185,54)" fg:x="86503" fg:w="1091"/><text x="16.6576%" y="799.50"></text></g><g><title>start_thread (1,085 samples, 0.21%)</title><rect x="16.4088%" y="773" width="0.2058%" height="15" fill="rgb(254,217,39)" fg:x="86509" fg:w="1085"/><text x="16.6588%" y="783.50"></text></g><g><title>thread_native_entry (1,083 samples, 0.21%)</title><rect x="16.4091%" y="757" width="0.2054%" height="15" fill="rgb(240,178,23)" fg:x="86511" fg:w="1083"/><text x="16.6591%" y="767.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.01%)</title><rect x="16.6176%" y="789" width="0.0133%" height="15" fill="rgb(218,11,47)" fg:x="87610" fg:w="70"/><text x="16.8676%" y="799.50"></text></g><g><title>C2_CompilerThre (73,971 samples, 14.03%)</title><rect x="2.6101%" y="805" width="14.0306%" height="15" fill="rgb(218,51,51)" fg:x="13761" fg:w="73971"/><text x="2.8601%" y="815.50">C2_CompilerThre</text></g><g><title>[perf-947659.map] (102 samples, 0.02%)</title><rect x="16.6425%" y="789" width="0.0193%" height="15" fill="rgb(238,126,27)" fg:x="87741" fg:w="102"/><text x="16.8925%" y="799.50"></text></g><g><title>Command-Accumul (133 samples, 0.03%)</title><rect x="16.6407%" y="805" width="0.0252%" height="15" fill="rgb(249,202,22)" fg:x="87732" fg:w="133"/><text x="16.8907%" y="815.50"></text></g><g><title>[anon] (59 samples, 0.01%)</title><rect x="16.6734%" y="789" width="0.0112%" height="15" fill="rgb(254,195,49)" fg:x="87904" fg:w="59"/><text x="16.9234%" y="799.50"></text></g><g><title>hrtimer_start_range_ns (74 samples, 0.01%)</title><rect x="17.3006%" y="597" width="0.0140%" height="15" fill="rgb(208,123,14)" fg:x="91211" fg:w="74"/><text x="17.5506%" y="607.50"></text></g><g><title>update_curr (92 samples, 0.02%)</title><rect x="17.3560%" y="533" width="0.0175%" height="15" fill="rgb(224,200,8)" fg:x="91503" fg:w="92"/><text x="17.6060%" y="543.50"></text></g><g><title>dequeue_entity (214 samples, 0.04%)</title><rect x="17.3422%" y="549" width="0.0406%" height="15" fill="rgb(217,61,36)" fg:x="91430" fg:w="214"/><text x="17.5922%" y="559.50"></text></g><g><title>dequeue_task_fair (248 samples, 0.05%)</title><rect x="17.3367%" y="565" width="0.0470%" height="15" fill="rgb(206,35,45)" fg:x="91401" fg:w="248"/><text x="17.5867%" y="575.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="17.3837%" y="565" width="0.0114%" height="15" fill="rgb(217,65,33)" fg:x="91649" fg:w="60"/><text x="17.6337%" y="575.50"></text></g><g><title>pick_next_task_idle (62 samples, 0.01%)</title><rect x="17.4040%" y="565" width="0.0118%" height="15" fill="rgb(222,158,48)" fg:x="91756" fg:w="62"/><text x="17.6540%" y="575.50"></text></g><g><title>__update_idle_core (56 samples, 0.01%)</title><rect x="17.4051%" y="549" width="0.0106%" height="15" fill="rgb(254,2,54)" fg:x="91762" fg:w="56"/><text x="17.6551%" y="559.50"></text></g><g><title>psi_task_change (184 samples, 0.03%)</title><rect x="17.4158%" y="565" width="0.0349%" height="15" fill="rgb(250,143,38)" fg:x="91818" fg:w="184"/><text x="17.6658%" y="575.50"></text></g><g><title>psi_group_change (130 samples, 0.02%)</title><rect x="17.4260%" y="549" width="0.0247%" height="15" fill="rgb(248,25,0)" fg:x="91872" fg:w="130"/><text x="17.6760%" y="559.50"></text></g><g><title>futex_wait_queue_me (866 samples, 0.16%)</title><rect x="17.2915%" y="613" width="0.1643%" height="15" fill="rgb(206,152,27)" fg:x="91163" fg:w="866"/><text x="17.5415%" y="623.50"></text></g><g><title>schedule (739 samples, 0.14%)</title><rect x="17.3156%" y="597" width="0.1402%" height="15" fill="rgb(240,77,30)" fg:x="91290" fg:w="739"/><text x="17.5656%" y="607.50"></text></g><g><title>__schedule (721 samples, 0.14%)</title><rect x="17.3190%" y="581" width="0.1368%" height="15" fill="rgb(231,5,3)" fg:x="91308" fg:w="721"/><text x="17.5690%" y="591.50"></text></g><g><title>futex_wait_setup (60 samples, 0.01%)</title><rect x="17.4558%" y="613" width="0.0114%" height="15" fill="rgb(207,226,32)" fg:x="92029" fg:w="60"/><text x="17.7058%" y="623.50"></text></g><g><title>do_futex (1,043 samples, 0.20%)</title><rect x="17.2809%" y="645" width="0.1978%" height="15" fill="rgb(222,207,47)" fg:x="91107" fg:w="1043"/><text x="17.5309%" y="655.50"></text></g><g><title>futex_wait (1,023 samples, 0.19%)</title><rect x="17.2847%" y="629" width="0.1940%" height="15" fill="rgb(229,115,45)" fg:x="91127" fg:w="1023"/><text x="17.5347%" y="639.50"></text></g><g><title>__x64_sys_futex (1,068 samples, 0.20%)</title><rect x="17.2790%" y="661" width="0.2026%" height="15" fill="rgb(224,191,6)" fg:x="91097" fg:w="1068"/><text x="17.5290%" y="671.50"></text></g><g><title>do_syscall_64 (1,077 samples, 0.20%)</title><rect x="17.2779%" y="677" width="0.2043%" height="15" fill="rgb(230,227,24)" fg:x="91091" fg:w="1077"/><text x="17.5279%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,138 samples, 0.22%)</title><rect x="17.2729%" y="693" width="0.2159%" height="15" fill="rgb(228,80,19)" fg:x="91065" fg:w="1138"/><text x="17.5229%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (1,293 samples, 0.25%)</title><rect x="17.2451%" y="741" width="0.2453%" height="15" fill="rgb(247,229,0)" fg:x="90918" fg:w="1293"/><text x="17.4951%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (1,291 samples, 0.24%)</title><rect x="17.2454%" y="725" width="0.2449%" height="15" fill="rgb(237,194,15)" fg:x="90920" fg:w="1291"/><text x="17.4954%" y="735.50"></text></g><g><title>futex_abstimed_wait_cancelable (1,209 samples, 0.23%)</title><rect x="17.2610%" y="709" width="0.2293%" height="15" fill="rgb(219,203,20)" fg:x="91002" fg:w="1209"/><text x="17.5110%" y="719.50"></text></g><g><title>__x64_sys_futex (55 samples, 0.01%)</title><rect x="17.4988%" y="693" width="0.0104%" height="15" fill="rgb(234,128,8)" fg:x="92256" fg:w="55"/><text x="17.7488%" y="703.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="17.4971%" y="709" width="0.0138%" height="15" fill="rgb(248,202,8)" fg:x="92247" fg:w="73"/><text x="17.7471%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.01%)</title><rect x="17.4966%" y="725" width="0.0150%" height="15" fill="rgb(206,104,37)" fg:x="92244" fg:w="79"/><text x="17.7466%" y="735.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (106 samples, 0.02%)</title><rect x="17.4920%" y="741" width="0.0201%" height="15" fill="rgb(223,8,27)" fg:x="92220" fg:w="106"/><text x="17.7420%" y="751.50"></text></g><g><title>Parker::park (1,610 samples, 0.31%)</title><rect x="17.2179%" y="757" width="0.3054%" height="15" fill="rgb(216,217,28)" fg:x="90775" fg:w="1610"/><text x="17.4679%" y="767.50"></text></g><g><title>Unsafe_Park (1,690 samples, 0.32%)</title><rect x="17.2086%" y="773" width="0.3206%" height="15" fill="rgb(249,199,1)" fg:x="90726" fg:w="1690"/><text x="17.4586%" y="783.50"></text></g><g><title>[perf-947659.map] (4,493 samples, 0.85%)</title><rect x="16.6846%" y="789" width="0.8522%" height="15" fill="rgb(240,85,17)" fg:x="87963" fg:w="4493"/><text x="16.9346%" y="799.50"></text></g><g><title>ForkJoinPool.co (4,622 samples, 0.88%)</title><rect x="16.6732%" y="805" width="0.8767%" height="15" fill="rgb(206,108,45)" fg:x="87903" fg:w="4622"/><text x="16.9232%" y="815.50"></text></g><g><title>__GI___clone (91 samples, 0.02%)</title><rect x="17.5506%" y="789" width="0.0173%" height="15" fill="rgb(245,210,41)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="799.50"></text></g><g><title>start_thread (91 samples, 0.02%)</title><rect x="17.5506%" y="773" width="0.0173%" height="15" fill="rgb(206,13,37)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="783.50"></text></g><g><title>thread_native_entry (91 samples, 0.02%)</title><rect x="17.5506%" y="757" width="0.0173%" height="15" fill="rgb(250,61,18)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="767.50"></text></g><g><title>Thread::call_run (91 samples, 0.02%)</title><rect x="17.5506%" y="741" width="0.0173%" height="15" fill="rgb(235,172,48)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="751.50"></text></g><g><title>GangWorker::loop (91 samples, 0.02%)</title><rect x="17.5506%" y="725" width="0.0173%" height="15" fill="rgb(249,201,17)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="735.50"></text></g><g><title>G1_Conc#0 (96 samples, 0.02%)</title><rect x="17.5499%" y="805" width="0.0182%" height="15" fill="rgb(219,208,6)" fg:x="92525" fg:w="96"/><text x="17.7999%" y="815.50"></text></g><g><title>__GI___clone (59 samples, 0.01%)</title><rect x="17.5681%" y="789" width="0.0112%" height="15" fill="rgb(248,31,23)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="799.50"></text></g><g><title>start_thread (59 samples, 0.01%)</title><rect x="17.5681%" y="773" width="0.0112%" height="15" fill="rgb(245,15,42)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="783.50"></text></g><g><title>thread_native_entry (59 samples, 0.01%)</title><rect x="17.5681%" y="757" width="0.0112%" height="15" fill="rgb(222,217,39)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="767.50"></text></g><g><title>Thread::call_run (59 samples, 0.01%)</title><rect x="17.5681%" y="741" width="0.0112%" height="15" fill="rgb(210,219,27)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="751.50"></text></g><g><title>GangWorker::loop (59 samples, 0.01%)</title><rect x="17.5681%" y="725" width="0.0112%" height="15" fill="rgb(252,166,36)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="735.50"></text></g><g><title>G1_Conc#1 (60 samples, 0.01%)</title><rect x="17.5681%" y="805" width="0.0114%" height="15" fill="rgb(245,132,34)" fg:x="92621" fg:w="60"/><text x="17.8181%" y="815.50"></text></g><g><title>G1RemSet::refine_card_concurrently (115 samples, 0.02%)</title><rect x="17.5834%" y="677" width="0.0218%" height="15" fill="rgb(236,54,3)" fg:x="92702" fg:w="115"/><text x="17.8334%" y="687.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (118 samples, 0.02%)</title><rect x="17.5831%" y="693" width="0.0224%" height="15" fill="rgb(241,173,43)" fg:x="92700" fg:w="118"/><text x="17.8331%" y="703.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (123 samples, 0.02%)</title><rect x="17.5831%" y="709" width="0.0233%" height="15" fill="rgb(215,190,9)" fg:x="92700" fg:w="123"/><text x="17.8331%" y="719.50"></text></g><g><title>G1_Refine#0 (145 samples, 0.03%)</title><rect x="17.5817%" y="805" width="0.0275%" height="15" fill="rgb(242,101,16)" fg:x="92693" fg:w="145"/><text x="17.8317%" y="815.50"></text></g><g><title>__GI___clone (138 samples, 0.03%)</title><rect x="17.5831%" y="789" width="0.0262%" height="15" fill="rgb(223,190,21)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="799.50"></text></g><g><title>start_thread (138 samples, 0.03%)</title><rect x="17.5831%" y="773" width="0.0262%" height="15" fill="rgb(215,228,25)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="783.50"></text></g><g><title>thread_native_entry (138 samples, 0.03%)</title><rect x="17.5831%" y="757" width="0.0262%" height="15" fill="rgb(225,36,22)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="767.50"></text></g><g><title>Thread::call_run (138 samples, 0.03%)</title><rect x="17.5831%" y="741" width="0.0262%" height="15" fill="rgb(251,106,46)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="751.50"></text></g><g><title>ConcurrentGCThread::run (138 samples, 0.03%)</title><rect x="17.5831%" y="725" width="0.0262%" height="15" fill="rgb(208,90,1)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="735.50"></text></g><g><title>G1CollectionSet::update_young_region_prediction (55 samples, 0.01%)</title><rect x="17.6246%" y="661" width="0.0104%" height="15" fill="rgb(243,10,4)" fg:x="92919" fg:w="55"/><text x="17.8746%" y="671.50"></text></g><g><title>G1CollectionSet::iterate (134 samples, 0.03%)</title><rect x="17.6193%" y="693" width="0.0254%" height="15" fill="rgb(212,137,27)" fg:x="92891" fg:w="134"/><text x="17.8693%" y="703.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (132 samples, 0.03%)</title><rect x="17.6197%" y="677" width="0.0250%" height="15" fill="rgb(231,220,49)" fg:x="92893" fg:w="132"/><text x="17.8697%" y="687.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (184 samples, 0.03%)</title><rect x="17.6191%" y="709" width="0.0349%" height="15" fill="rgb(237,96,20)" fg:x="92890" fg:w="184"/><text x="17.8691%" y="719.50"></text></g><g><title>G1_Young_RemSet (202 samples, 0.04%)</title><rect x="17.6187%" y="805" width="0.0383%" height="15" fill="rgb(239,229,30)" fg:x="92888" fg:w="202"/><text x="17.8687%" y="815.50"></text></g><g><title>__GI___clone (200 samples, 0.04%)</title><rect x="17.6191%" y="789" width="0.0379%" height="15" fill="rgb(219,65,33)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="799.50"></text></g><g><title>start_thread (200 samples, 0.04%)</title><rect x="17.6191%" y="773" width="0.0379%" height="15" fill="rgb(243,134,7)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="783.50"></text></g><g><title>thread_native_entry (200 samples, 0.04%)</title><rect x="17.6191%" y="757" width="0.0379%" height="15" fill="rgb(216,177,54)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="767.50"></text></g><g><title>Thread::call_run (200 samples, 0.04%)</title><rect x="17.6191%" y="741" width="0.0379%" height="15" fill="rgb(211,160,20)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="751.50"></text></g><g><title>ConcurrentGCThread::run (200 samples, 0.04%)</title><rect x="17.6191%" y="725" width="0.0379%" height="15" fill="rgb(239,85,39)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="735.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (68 samples, 0.01%)</title><rect x="17.7119%" y="645" width="0.0129%" height="15" fill="rgb(232,125,22)" fg:x="93379" fg:w="68"/><text x="17.9619%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (194 samples, 0.04%)</title><rect x="17.6935%" y="661" width="0.0368%" height="15" fill="rgb(244,57,34)" fg:x="93282" fg:w="194"/><text x="17.9435%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (344 samples, 0.07%)</title><rect x="17.6667%" y="677" width="0.0652%" height="15" fill="rgb(214,203,32)" fg:x="93141" fg:w="344"/><text x="17.9167%" y="687.50"></text></g><g><title>SpinPause (137 samples, 0.03%)</title><rect x="17.7340%" y="677" width="0.0260%" height="15" fill="rgb(207,58,43)" fg:x="93496" fg:w="137"/><text x="17.9840%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (516 samples, 0.10%)</title><rect x="17.6642%" y="693" width="0.0979%" height="15" fill="rgb(215,193,15)" fg:x="93128" fg:w="516"/><text x="17.9142%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (154 samples, 0.03%)</title><rect x="17.7684%" y="597" width="0.0292%" height="15" fill="rgb(232,15,44)" fg:x="93677" fg:w="154"/><text x="18.0184%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (114 samples, 0.02%)</title><rect x="17.7760%" y="581" width="0.0216%" height="15" fill="rgb(212,3,48)" fg:x="93717" fg:w="114"/><text x="18.0260%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (199 samples, 0.04%)</title><rect x="17.7621%" y="613" width="0.0377%" height="15" fill="rgb(218,128,7)" fg:x="93644" fg:w="199"/><text x="18.0121%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (226 samples, 0.04%)</title><rect x="17.7621%" y="661" width="0.0429%" height="15" fill="rgb(226,216,39)" fg:x="93644" fg:w="226"/><text x="18.0121%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (226 samples, 0.04%)</title><rect x="17.7621%" y="645" width="0.0429%" height="15" fill="rgb(243,47,51)" fg:x="93644" fg:w="226"/><text x="18.0121%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (226 samples, 0.04%)</title><rect x="17.7621%" y="629" width="0.0429%" height="15" fill="rgb(241,183,40)" fg:x="93644" fg:w="226"/><text x="18.0121%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (236 samples, 0.04%)</title><rect x="17.7621%" y="693" width="0.0448%" height="15" fill="rgb(231,217,32)" fg:x="93644" fg:w="236"/><text x="18.0121%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (236 samples, 0.04%)</title><rect x="17.7621%" y="677" width="0.0448%" height="15" fill="rgb(229,61,38)" fg:x="93644" fg:w="236"/><text x="18.0121%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (60 samples, 0.01%)</title><rect x="17.8069%" y="613" width="0.0114%" height="15" fill="rgb(225,210,5)" fg:x="93880" fg:w="60"/><text x="18.0569%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (73 samples, 0.01%)</title><rect x="17.8069%" y="629" width="0.0138%" height="15" fill="rgb(231,79,45)" fg:x="93880" fg:w="73"/><text x="18.0569%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (74 samples, 0.01%)</title><rect x="17.8069%" y="645" width="0.0140%" height="15" fill="rgb(224,100,7)" fg:x="93880" fg:w="74"/><text x="18.0569%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (86 samples, 0.02%)</title><rect x="17.8069%" y="693" width="0.0163%" height="15" fill="rgb(241,198,18)" fg:x="93880" fg:w="86"/><text x="18.0569%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (86 samples, 0.02%)</title><rect x="17.8069%" y="677" width="0.0163%" height="15" fill="rgb(252,97,53)" fg:x="93880" fg:w="86"/><text x="18.0569%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (86 samples, 0.02%)</title><rect x="17.8069%" y="661" width="0.0163%" height="15" fill="rgb(220,88,7)" fg:x="93880" fg:w="86"/><text x="18.0569%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (110 samples, 0.02%)</title><rect x="17.8334%" y="565" width="0.0209%" height="15" fill="rgb(213,176,14)" fg:x="94020" fg:w="110"/><text x="18.0834%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="17.8412%" y="549" width="0.0131%" height="15" fill="rgb(246,73,7)" fg:x="94061" fg:w="69"/><text x="18.0912%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (136 samples, 0.03%)</title><rect x="17.8298%" y="597" width="0.0258%" height="15" fill="rgb(245,64,36)" fg:x="94001" fg:w="136"/><text x="18.0798%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (136 samples, 0.03%)</title><rect x="17.8298%" y="581" width="0.0258%" height="15" fill="rgb(245,80,10)" fg:x="94001" fg:w="136"/><text x="18.0798%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (142 samples, 0.03%)</title><rect x="17.8298%" y="613" width="0.0269%" height="15" fill="rgb(232,107,50)" fg:x="94001" fg:w="142"/><text x="18.0798%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (177 samples, 0.03%)</title><rect x="17.8236%" y="677" width="0.0336%" height="15" fill="rgb(253,3,0)" fg:x="93968" fg:w="177"/><text x="18.0736%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (176 samples, 0.03%)</title><rect x="17.8238%" y="661" width="0.0334%" height="15" fill="rgb(212,99,53)" fg:x="93969" fg:w="176"/><text x="18.0738%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (176 samples, 0.03%)</title><rect x="17.8238%" y="645" width="0.0334%" height="15" fill="rgb(249,111,54)" fg:x="93969" fg:w="176"/><text x="18.0738%" y="655.50"></text></g><g><title>JavaThread::oops_do (176 samples, 0.03%)</title><rect x="17.8238%" y="629" width="0.0334%" height="15" fill="rgb(249,55,30)" fg:x="93969" fg:w="176"/><text x="18.0738%" y="639.50"></text></g><g><title>G1ParTask::work (1,048 samples, 0.20%)</title><rect x="17.6642%" y="709" width="0.1988%" height="15" fill="rgb(237,47,42)" fg:x="93128" fg:w="1048"/><text x="17.9142%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (210 samples, 0.04%)</title><rect x="17.8232%" y="693" width="0.0398%" height="15" fill="rgb(211,20,18)" fg:x="93966" fg:w="210"/><text x="18.0732%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (56 samples, 0.01%)</title><rect x="17.8664%" y="709" width="0.0106%" height="15" fill="rgb(231,203,46)" fg:x="94194" fg:w="56"/><text x="18.1164%" y="719.50"></text></g><g><title>GC_Thread#0 (1,244 samples, 0.24%)</title><rect x="17.6570%" y="805" width="0.2360%" height="15" fill="rgb(237,142,3)" fg:x="93090" fg:w="1244"/><text x="17.9070%" y="815.50"></text></g><g><title>__GI___clone (1,224 samples, 0.23%)</title><rect x="17.6608%" y="789" width="0.2322%" height="15" fill="rgb(241,107,1)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="799.50"></text></g><g><title>start_thread (1,224 samples, 0.23%)</title><rect x="17.6608%" y="773" width="0.2322%" height="15" fill="rgb(229,83,13)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="783.50"></text></g><g><title>thread_native_entry (1,224 samples, 0.23%)</title><rect x="17.6608%" y="757" width="0.2322%" height="15" fill="rgb(241,91,40)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="767.50"></text></g><g><title>Thread::call_run (1,224 samples, 0.23%)</title><rect x="17.6608%" y="741" width="0.2322%" height="15" fill="rgb(225,3,45)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="751.50"></text></g><g><title>GangWorker::loop (1,224 samples, 0.23%)</title><rect x="17.6608%" y="725" width="0.2322%" height="15" fill="rgb(244,223,14)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (185 samples, 0.04%)</title><rect x="17.9317%" y="661" width="0.0351%" height="15" fill="rgb(224,124,37)" fg:x="94538" fg:w="185"/><text x="18.1817%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (340 samples, 0.06%)</title><rect x="17.9042%" y="677" width="0.0645%" height="15" fill="rgb(251,171,30)" fg:x="94393" fg:w="340"/><text x="18.1542%" y="687.50"></text></g><g><title>SpinPause (134 samples, 0.03%)</title><rect x="17.9702%" y="677" width="0.0254%" height="15" fill="rgb(236,46,54)" fg:x="94741" fg:w="134"/><text x="18.2202%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (500 samples, 0.09%)</title><rect x="17.9017%" y="693" width="0.0948%" height="15" fill="rgb(245,213,5)" fg:x="94380" fg:w="500"/><text x="18.1517%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (208 samples, 0.04%)</title><rect x="18.0246%" y="581" width="0.0395%" height="15" fill="rgb(230,144,27)" fg:x="95028" fg:w="208"/><text x="18.2746%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (288 samples, 0.05%)</title><rect x="18.0096%" y="597" width="0.0546%" height="15" fill="rgb(220,86,6)" fg:x="94949" fg:w="288"/><text x="18.2596%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (378 samples, 0.07%)</title><rect x="17.9966%" y="613" width="0.0717%" height="15" fill="rgb(240,20,13)" fg:x="94880" fg:w="378"/><text x="18.2466%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (412 samples, 0.08%)</title><rect x="17.9966%" y="661" width="0.0781%" height="15" fill="rgb(217,89,34)" fg:x="94880" fg:w="412"/><text x="18.2466%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (412 samples, 0.08%)</title><rect x="17.9966%" y="645" width="0.0781%" height="15" fill="rgb(229,13,5)" fg:x="94880" fg:w="412"/><text x="18.2466%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (412 samples, 0.08%)</title><rect x="17.9966%" y="629" width="0.0781%" height="15" fill="rgb(244,67,35)" fg:x="94880" fg:w="412"/><text x="18.2466%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (424 samples, 0.08%)</title><rect x="17.9966%" y="693" width="0.0804%" height="15" fill="rgb(221,40,2)" fg:x="94880" fg:w="424"/><text x="18.2466%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (424 samples, 0.08%)</title><rect x="17.9966%" y="677" width="0.0804%" height="15" fill="rgb(237,157,21)" fg:x="94880" fg:w="424"/><text x="18.2466%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (62 samples, 0.01%)</title><rect x="18.0849%" y="677" width="0.0118%" height="15" fill="rgb(222,94,11)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (62 samples, 0.01%)</title><rect x="18.0849%" y="661" width="0.0118%" height="15" fill="rgb(249,113,6)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (62 samples, 0.01%)</title><rect x="18.0849%" y="645" width="0.0118%" height="15" fill="rgb(238,137,36)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="655.50"></text></g><g><title>JavaThread::oops_do (62 samples, 0.01%)</title><rect x="18.0849%" y="629" width="0.0118%" height="15" fill="rgb(210,102,26)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="639.50"></text></g><g><title>G1ParTask::work (1,062 samples, 0.20%)</title><rect x="17.9017%" y="709" width="0.2014%" height="15" fill="rgb(218,30,30)" fg:x="94380" fg:w="1062"/><text x="18.1517%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (98 samples, 0.02%)</title><rect x="18.0846%" y="693" width="0.0186%" height="15" fill="rgb(214,67,26)" fg:x="95344" fg:w="98"/><text x="18.3346%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (74 samples, 0.01%)</title><rect x="18.1066%" y="709" width="0.0140%" height="15" fill="rgb(251,9,53)" fg:x="95460" fg:w="74"/><text x="18.3566%" y="719.50"></text></g><g><title>__GI___clone (1,235 samples, 0.23%)</title><rect x="17.8983%" y="789" width="0.2343%" height="15" fill="rgb(228,204,25)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="799.50"></text></g><g><title>start_thread (1,235 samples, 0.23%)</title><rect x="17.8983%" y="773" width="0.2343%" height="15" fill="rgb(207,153,8)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="783.50"></text></g><g><title>thread_native_entry (1,235 samples, 0.23%)</title><rect x="17.8983%" y="757" width="0.2343%" height="15" fill="rgb(242,9,16)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="767.50"></text></g><g><title>Thread::call_run (1,235 samples, 0.23%)</title><rect x="17.8983%" y="741" width="0.2343%" height="15" fill="rgb(217,211,10)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="751.50"></text></g><g><title>GangWorker::loop (1,235 samples, 0.23%)</title><rect x="17.8983%" y="725" width="0.2343%" height="15" fill="rgb(219,228,52)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="735.50"></text></g><g><title>GC_Thread#1 (1,265 samples, 0.24%)</title><rect x="17.8930%" y="805" width="0.2399%" height="15" fill="rgb(231,92,29)" fg:x="94334" fg:w="1265"/><text x="18.1430%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (138 samples, 0.03%)</title><rect x="18.1686%" y="661" width="0.0262%" height="15" fill="rgb(232,8,23)" fg:x="95787" fg:w="138"/><text x="18.4186%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (263 samples, 0.05%)</title><rect x="18.1456%" y="677" width="0.0499%" height="15" fill="rgb(216,211,34)" fg:x="95666" fg:w="263"/><text x="18.3956%" y="687.50"></text></g><g><title>SpinPause (158 samples, 0.03%)</title><rect x="18.1970%" y="677" width="0.0300%" height="15" fill="rgb(236,151,0)" fg:x="95937" fg:w="158"/><text x="18.4470%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (453 samples, 0.09%)</title><rect x="18.1424%" y="693" width="0.0859%" height="15" fill="rgb(209,168,3)" fg:x="95649" fg:w="453"/><text x="18.3924%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (288 samples, 0.05%)</title><rect x="18.2395%" y="597" width="0.0546%" height="15" fill="rgb(208,129,28)" fg:x="96161" fg:w="288"/><text x="18.4895%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (218 samples, 0.04%)</title><rect x="18.2528%" y="581" width="0.0413%" height="15" fill="rgb(229,78,22)" fg:x="96231" fg:w="218"/><text x="18.5028%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (363 samples, 0.07%)</title><rect x="18.2283%" y="613" width="0.0689%" height="15" fill="rgb(228,187,13)" fg:x="96102" fg:w="363"/><text x="18.4783%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (402 samples, 0.08%)</title><rect x="18.2283%" y="661" width="0.0763%" height="15" fill="rgb(240,119,24)" fg:x="96102" fg:w="402"/><text x="18.4783%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (402 samples, 0.08%)</title><rect x="18.2283%" y="645" width="0.0763%" height="15" fill="rgb(209,194,42)" fg:x="96102" fg:w="402"/><text x="18.4783%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (402 samples, 0.08%)</title><rect x="18.2283%" y="629" width="0.0763%" height="15" fill="rgb(247,200,46)" fg:x="96102" fg:w="402"/><text x="18.4783%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (412 samples, 0.08%)</title><rect x="18.2283%" y="693" width="0.0781%" height="15" fill="rgb(218,76,16)" fg:x="96102" fg:w="412"/><text x="18.4783%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (412 samples, 0.08%)</title><rect x="18.2283%" y="677" width="0.0781%" height="15" fill="rgb(225,21,48)" fg:x="96102" fg:w="412"/><text x="18.4783%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (65 samples, 0.01%)</title><rect x="18.3196%" y="661" width="0.0123%" height="15" fill="rgb(239,223,50)" fg:x="96583" fg:w="65"/><text x="18.5696%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (64 samples, 0.01%)</title><rect x="18.3198%" y="645" width="0.0121%" height="15" fill="rgb(244,45,21)" fg:x="96584" fg:w="64"/><text x="18.5698%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (64 samples, 0.01%)</title><rect x="18.3198%" y="629" width="0.0121%" height="15" fill="rgb(232,33,43)" fg:x="96584" fg:w="64"/><text x="18.5698%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="18.3211%" y="613" width="0.0108%" height="15" fill="rgb(209,8,3)" fg:x="96591" fg:w="57"/><text x="18.5711%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (156 samples, 0.03%)</title><rect x="18.3196%" y="677" width="0.0296%" height="15" fill="rgb(214,25,53)" fg:x="96583" fg:w="156"/><text x="18.5696%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (91 samples, 0.02%)</title><rect x="18.3319%" y="661" width="0.0173%" height="15" fill="rgb(254,186,54)" fg:x="96648" fg:w="91"/><text x="18.5819%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (91 samples, 0.02%)</title><rect x="18.3319%" y="645" width="0.0173%" height="15" fill="rgb(208,174,49)" fg:x="96648" fg:w="91"/><text x="18.5819%" y="655.50"></text></g><g><title>JavaThread::oops_do (91 samples, 0.02%)</title><rect x="18.3319%" y="629" width="0.0173%" height="15" fill="rgb(233,191,51)" fg:x="96648" fg:w="91"/><text x="18.5819%" y="639.50"></text></g><g><title>G1ParTask::work (1,100 samples, 0.21%)</title><rect x="18.1424%" y="709" width="0.2086%" height="15" fill="rgb(222,134,10)" fg:x="95649" fg:w="1100"/><text x="18.3924%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (184 samples, 0.03%)</title><rect x="18.3162%" y="693" width="0.0349%" height="15" fill="rgb(230,226,20)" fg:x="96565" fg:w="184"/><text x="18.5662%" y="703.50"></text></g><g><title>__GI___clone (1,252 samples, 0.24%)</title><rect x="18.1392%" y="789" width="0.2375%" height="15" fill="rgb(251,111,25)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="799.50"></text></g><g><title>start_thread (1,252 samples, 0.24%)</title><rect x="18.1392%" y="773" width="0.2375%" height="15" fill="rgb(224,40,46)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="783.50"></text></g><g><title>thread_native_entry (1,252 samples, 0.24%)</title><rect x="18.1392%" y="757" width="0.2375%" height="15" fill="rgb(236,108,47)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="767.50"></text></g><g><title>Thread::call_run (1,252 samples, 0.24%)</title><rect x="18.1392%" y="741" width="0.2375%" height="15" fill="rgb(234,93,0)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="751.50"></text></g><g><title>GangWorker::loop (1,252 samples, 0.24%)</title><rect x="18.1392%" y="725" width="0.2375%" height="15" fill="rgb(224,213,32)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="735.50"></text></g><g><title>GC_Thread#2 (1,287 samples, 0.24%)</title><rect x="18.1329%" y="805" width="0.2441%" height="15" fill="rgb(251,11,48)" fg:x="95599" fg:w="1287"/><text x="18.3829%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (175 samples, 0.03%)</title><rect x="18.4216%" y="661" width="0.0332%" height="15" fill="rgb(236,173,5)" fg:x="97121" fg:w="175"/><text x="18.6716%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (354 samples, 0.07%)</title><rect x="18.3894%" y="677" width="0.0671%" height="15" fill="rgb(230,95,12)" fg:x="96951" fg:w="354"/><text x="18.6394%" y="687.50"></text></g><g><title>SpinPause (169 samples, 0.03%)</title><rect x="18.4584%" y="677" width="0.0321%" height="15" fill="rgb(232,209,1)" fg:x="97315" fg:w="169"/><text x="18.7084%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (564 samples, 0.11%)</title><rect x="18.3852%" y="693" width="0.1070%" height="15" fill="rgb(232,6,1)" fg:x="96929" fg:w="564"/><text x="18.6352%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (226 samples, 0.04%)</title><rect x="18.4998%" y="597" width="0.0429%" height="15" fill="rgb(210,224,50)" fg:x="97533" fg:w="226"/><text x="18.7498%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (167 samples, 0.03%)</title><rect x="18.5110%" y="581" width="0.0317%" height="15" fill="rgb(228,127,35)" fg:x="97592" fg:w="167"/><text x="18.7610%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (277 samples, 0.05%)</title><rect x="18.4926%" y="613" width="0.0525%" height="15" fill="rgb(245,102,45)" fg:x="97495" fg:w="277"/><text x="18.7426%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (316 samples, 0.06%)</title><rect x="18.4924%" y="661" width="0.0599%" height="15" fill="rgb(214,1,49)" fg:x="97494" fg:w="316"/><text x="18.7424%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (316 samples, 0.06%)</title><rect x="18.4924%" y="645" width="0.0599%" height="15" fill="rgb(226,163,40)" fg:x="97494" fg:w="316"/><text x="18.7424%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (316 samples, 0.06%)</title><rect x="18.4924%" y="629" width="0.0599%" height="15" fill="rgb(239,212,28)" fg:x="97494" fg:w="316"/><text x="18.7424%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (322 samples, 0.06%)</title><rect x="18.4924%" y="693" width="0.0611%" height="15" fill="rgb(220,20,13)" fg:x="97494" fg:w="322"/><text x="18.7424%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (322 samples, 0.06%)</title><rect x="18.4924%" y="677" width="0.0611%" height="15" fill="rgb(210,164,35)" fg:x="97494" fg:w="322"/><text x="18.7424%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (65 samples, 0.01%)</title><rect x="18.5536%" y="613" width="0.0123%" height="15" fill="rgb(248,109,41)" fg:x="97817" fg:w="65"/><text x="18.8036%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (73 samples, 0.01%)</title><rect x="18.5536%" y="645" width="0.0138%" height="15" fill="rgb(238,23,50)" fg:x="97817" fg:w="73"/><text x="18.8036%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (73 samples, 0.01%)</title><rect x="18.5536%" y="629" width="0.0138%" height="15" fill="rgb(211,48,49)" fg:x="97817" fg:w="73"/><text x="18.8036%" y="639.50"></text></g><g><title>G1RemSet::scan_rem_set (84 samples, 0.02%)</title><rect x="18.5534%" y="693" width="0.0159%" height="15" fill="rgb(223,36,21)" fg:x="97816" fg:w="84"/><text x="18.8034%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (84 samples, 0.02%)</title><rect x="18.5534%" y="677" width="0.0159%" height="15" fill="rgb(207,123,46)" fg:x="97816" fg:w="84"/><text x="18.8034%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (84 samples, 0.02%)</title><rect x="18.5534%" y="661" width="0.0159%" height="15" fill="rgb(240,218,32)" fg:x="97816" fg:w="84"/><text x="18.8034%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (53 samples, 0.01%)</title><rect x="18.5747%" y="597" width="0.0101%" height="15" fill="rgb(252,5,43)" fg:x="97928" fg:w="53"/><text x="18.8247%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (82 samples, 0.02%)</title><rect x="18.5698%" y="661" width="0.0156%" height="15" fill="rgb(252,84,19)" fg:x="97902" fg:w="82"/><text x="18.8198%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (80 samples, 0.02%)</title><rect x="18.5701%" y="645" width="0.0152%" height="15" fill="rgb(243,152,39)" fg:x="97904" fg:w="80"/><text x="18.8201%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (80 samples, 0.02%)</title><rect x="18.5701%" y="629" width="0.0152%" height="15" fill="rgb(234,160,15)" fg:x="97904" fg:w="80"/><text x="18.8201%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (71 samples, 0.01%)</title><rect x="18.5718%" y="613" width="0.0135%" height="15" fill="rgb(237,34,20)" fg:x="97913" fg:w="71"/><text x="18.8218%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (73 samples, 0.01%)</title><rect x="18.5931%" y="565" width="0.0138%" height="15" fill="rgb(229,97,13)" fg:x="98025" fg:w="73"/><text x="18.8431%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (61 samples, 0.01%)</title><rect x="18.5954%" y="549" width="0.0116%" height="15" fill="rgb(234,71,50)" fg:x="98037" fg:w="61"/><text x="18.8454%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (105 samples, 0.02%)</title><rect x="18.5891%" y="597" width="0.0199%" height="15" fill="rgb(253,155,4)" fg:x="98004" fg:w="105"/><text x="18.8391%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (102 samples, 0.02%)</title><rect x="18.5897%" y="581" width="0.0193%" height="15" fill="rgb(222,185,37)" fg:x="98007" fg:w="102"/><text x="18.8397%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (110 samples, 0.02%)</title><rect x="18.5891%" y="613" width="0.0209%" height="15" fill="rgb(251,177,13)" fg:x="98004" fg:w="110"/><text x="18.8391%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (213 samples, 0.04%)</title><rect x="18.5698%" y="677" width="0.0404%" height="15" fill="rgb(250,179,40)" fg:x="97902" fg:w="213"/><text x="18.8198%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (131 samples, 0.02%)</title><rect x="18.5853%" y="661" width="0.0248%" height="15" fill="rgb(242,44,2)" fg:x="97984" fg:w="131"/><text x="18.8353%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (131 samples, 0.02%)</title><rect x="18.5853%" y="645" width="0.0248%" height="15" fill="rgb(216,177,13)" fg:x="97984" fg:w="131"/><text x="18.8353%" y="655.50"></text></g><g><title>JavaThread::oops_do (124 samples, 0.02%)</title><rect x="18.5866%" y="629" width="0.0235%" height="15" fill="rgb(216,106,43)" fg:x="97991" fg:w="124"/><text x="18.8366%" y="639.50"></text></g><g><title>G1ParTask::work (1,224 samples, 0.23%)</title><rect x="18.3852%" y="709" width="0.2322%" height="15" fill="rgb(216,183,2)" fg:x="96929" fg:w="1224"/><text x="18.6352%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (253 samples, 0.05%)</title><rect x="18.5694%" y="693" width="0.0480%" height="15" fill="rgb(249,75,3)" fg:x="97900" fg:w="253"/><text x="18.8194%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (67 samples, 0.01%)</title><rect x="18.6193%" y="709" width="0.0127%" height="15" fill="rgb(219,67,39)" fg:x="98163" fg:w="67"/><text x="18.8693%" y="719.50"></text></g><g><title>__GI___clone (1,391 samples, 0.26%)</title><rect x="18.3839%" y="789" width="0.2638%" height="15" fill="rgb(253,228,2)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="799.50"></text></g><g><title>start_thread (1,391 samples, 0.26%)</title><rect x="18.3839%" y="773" width="0.2638%" height="15" fill="rgb(235,138,27)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="783.50"></text></g><g><title>thread_native_entry (1,391 samples, 0.26%)</title><rect x="18.3839%" y="757" width="0.2638%" height="15" fill="rgb(236,97,51)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="767.50"></text></g><g><title>Thread::call_run (1,391 samples, 0.26%)</title><rect x="18.3839%" y="741" width="0.2638%" height="15" fill="rgb(240,80,30)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="751.50"></text></g><g><title>GangWorker::loop (1,391 samples, 0.26%)</title><rect x="18.3839%" y="725" width="0.2638%" height="15" fill="rgb(230,178,19)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="735.50"></text></g><g><title>GC_Thread#3 (1,429 samples, 0.27%)</title><rect x="18.3770%" y="805" width="0.2710%" height="15" fill="rgb(210,190,27)" fg:x="96886" fg:w="1429"/><text x="18.6270%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (66 samples, 0.01%)</title><rect x="18.7016%" y="645" width="0.0125%" height="15" fill="rgb(222,107,31)" fg:x="98597" fg:w="66"/><text x="18.9516%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (164 samples, 0.03%)</title><rect x="18.6858%" y="661" width="0.0311%" height="15" fill="rgb(216,127,34)" fg:x="98514" fg:w="164"/><text x="18.9358%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (324 samples, 0.06%)</title><rect x="18.6572%" y="677" width="0.0615%" height="15" fill="rgb(234,116,52)" fg:x="98363" fg:w="324"/><text x="18.9072%" y="687.50"></text></g><g><title>SpinPause (132 samples, 0.03%)</title><rect x="18.7194%" y="677" width="0.0250%" height="15" fill="rgb(222,124,15)" fg:x="98691" fg:w="132"/><text x="18.9694%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (488 samples, 0.09%)</title><rect x="18.6536%" y="693" width="0.0926%" height="15" fill="rgb(231,179,28)" fg:x="98344" fg:w="488"/><text x="18.9036%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (182 samples, 0.03%)</title><rect x="18.7526%" y="597" width="0.0345%" height="15" fill="rgb(226,93,45)" fg:x="98866" fg:w="182"/><text x="19.0026%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (138 samples, 0.03%)</title><rect x="18.7610%" y="581" width="0.0262%" height="15" fill="rgb(215,8,51)" fg:x="98910" fg:w="138"/><text x="19.0110%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (223 samples, 0.04%)</title><rect x="18.7462%" y="613" width="0.0423%" height="15" fill="rgb(223,106,5)" fg:x="98832" fg:w="223"/><text x="18.9962%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (253 samples, 0.05%)</title><rect x="18.7462%" y="661" width="0.0480%" height="15" fill="rgb(250,191,5)" fg:x="98832" fg:w="253"/><text x="18.9962%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (253 samples, 0.05%)</title><rect x="18.7462%" y="645" width="0.0480%" height="15" fill="rgb(242,132,44)" fg:x="98832" fg:w="253"/><text x="18.9962%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (253 samples, 0.05%)</title><rect x="18.7462%" y="629" width="0.0480%" height="15" fill="rgb(251,152,29)" fg:x="98832" fg:w="253"/><text x="18.9962%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (257 samples, 0.05%)</title><rect x="18.7462%" y="693" width="0.0487%" height="15" fill="rgb(218,179,5)" fg:x="98832" fg:w="257"/><text x="18.9962%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (257 samples, 0.05%)</title><rect x="18.7462%" y="677" width="0.0487%" height="15" fill="rgb(227,67,19)" fg:x="98832" fg:w="257"/><text x="18.9962%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (54 samples, 0.01%)</title><rect x="18.7989%" y="597" width="0.0102%" height="15" fill="rgb(233,119,31)" fg:x="99110" fg:w="54"/><text x="19.0489%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.01%)</title><rect x="18.7951%" y="613" width="0.0150%" height="15" fill="rgb(241,120,22)" fg:x="99090" fg:w="79"/><text x="19.0451%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (96 samples, 0.02%)</title><rect x="18.7951%" y="629" width="0.0182%" height="15" fill="rgb(224,102,30)" fg:x="99090" fg:w="96"/><text x="19.0451%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (102 samples, 0.02%)</title><rect x="18.7949%" y="645" width="0.0193%" height="15" fill="rgb(210,164,37)" fg:x="99089" fg:w="102"/><text x="19.0449%" y="655.50"></text></g><g><title>G1CollectionSet::iterate_from (125 samples, 0.02%)</title><rect x="18.7949%" y="677" width="0.0237%" height="15" fill="rgb(226,191,16)" fg:x="99089" fg:w="125"/><text x="19.0449%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (125 samples, 0.02%)</title><rect x="18.7949%" y="661" width="0.0237%" height="15" fill="rgb(214,40,45)" fg:x="99089" fg:w="125"/><text x="19.0449%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (126 samples, 0.02%)</title><rect x="18.7949%" y="693" width="0.0239%" height="15" fill="rgb(244,29,26)" fg:x="99089" fg:w="126"/><text x="19.0449%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (59 samples, 0.01%)</title><rect x="18.8188%" y="661" width="0.0112%" height="15" fill="rgb(216,16,5)" fg:x="99215" fg:w="59"/><text x="19.0688%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (58 samples, 0.01%)</title><rect x="18.8190%" y="645" width="0.0110%" height="15" fill="rgb(249,76,35)" fg:x="99216" fg:w="58"/><text x="19.0690%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (58 samples, 0.01%)</title><rect x="18.8190%" y="629" width="0.0110%" height="15" fill="rgb(207,11,44)" fg:x="99216" fg:w="58"/><text x="19.0690%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (68 samples, 0.01%)</title><rect x="18.8454%" y="565" width="0.0129%" height="15" fill="rgb(228,190,49)" fg:x="99355" fg:w="68"/><text x="19.0954%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.01%)</title><rect x="18.8480%" y="549" width="0.0102%" height="15" fill="rgb(214,173,12)" fg:x="99369" fg:w="54"/><text x="19.0980%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (111 samples, 0.02%)</title><rect x="18.8397%" y="597" width="0.0211%" height="15" fill="rgb(218,26,35)" fg:x="99325" fg:w="111"/><text x="19.0897%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (95 samples, 0.02%)</title><rect x="18.8427%" y="581" width="0.0180%" height="15" fill="rgb(220,200,19)" fg:x="99341" fg:w="95"/><text x="19.0927%" y="591.50"></text></g><g><title>G1RootProcessor::process_java_roots (222 samples, 0.04%)</title><rect x="18.8188%" y="677" width="0.0421%" height="15" fill="rgb(239,95,49)" fg:x="99215" fg:w="222"/><text x="19.0688%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (161 samples, 0.03%)</title><rect x="18.8304%" y="661" width="0.0305%" height="15" fill="rgb(235,85,53)" fg:x="99276" fg:w="161"/><text x="19.0804%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (161 samples, 0.03%)</title><rect x="18.8304%" y="645" width="0.0305%" height="15" fill="rgb(233,133,31)" fg:x="99276" fg:w="161"/><text x="19.0804%" y="655.50"></text></g><g><title>JavaThread::oops_do (161 samples, 0.03%)</title><rect x="18.8304%" y="629" width="0.0305%" height="15" fill="rgb(218,25,20)" fg:x="99276" fg:w="161"/><text x="19.0804%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (113 samples, 0.02%)</title><rect x="18.8395%" y="613" width="0.0214%" height="15" fill="rgb(252,210,38)" fg:x="99324" fg:w="113"/><text x="19.0895%" y="623.50"></text></g><g><title>G1ParTask::work (1,145 samples, 0.22%)</title><rect x="18.6536%" y="709" width="0.2172%" height="15" fill="rgb(242,134,21)" fg:x="98344" fg:w="1145"/><text x="18.9036%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (274 samples, 0.05%)</title><rect x="18.8188%" y="693" width="0.0520%" height="15" fill="rgb(213,28,48)" fg:x="99215" fg:w="274"/><text x="19.0688%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (63 samples, 0.01%)</title><rect x="18.8731%" y="709" width="0.0119%" height="15" fill="rgb(250,196,2)" fg:x="99501" fg:w="63"/><text x="19.1231%" y="719.50"></text></g><g><title>__GI___clone (1,296 samples, 0.25%)</title><rect x="18.6523%" y="789" width="0.2458%" height="15" fill="rgb(227,5,17)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="799.50"></text></g><g><title>start_thread (1,296 samples, 0.25%)</title><rect x="18.6523%" y="773" width="0.2458%" height="15" fill="rgb(221,226,24)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="783.50"></text></g><g><title>thread_native_entry (1,296 samples, 0.25%)</title><rect x="18.6523%" y="757" width="0.2458%" height="15" fill="rgb(211,5,48)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="767.50"></text></g><g><title>Thread::call_run (1,296 samples, 0.25%)</title><rect x="18.6523%" y="741" width="0.2458%" height="15" fill="rgb(219,150,6)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="751.50"></text></g><g><title>GangWorker::loop (1,296 samples, 0.25%)</title><rect x="18.6523%" y="725" width="0.2458%" height="15" fill="rgb(251,46,16)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="735.50"></text></g><g><title>GC_Thread#4 (1,319 samples, 0.25%)</title><rect x="18.6481%" y="805" width="0.2502%" height="15" fill="rgb(220,204,40)" fg:x="98315" fg:w="1319"/><text x="18.8981%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (55 samples, 0.01%)</title><rect x="18.9514%" y="645" width="0.0104%" height="15" fill="rgb(211,85,2)" fg:x="99914" fg:w="55"/><text x="19.2014%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (174 samples, 0.03%)</title><rect x="18.9341%" y="661" width="0.0330%" height="15" fill="rgb(229,17,7)" fg:x="99823" fg:w="174"/><text x="19.1841%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (328 samples, 0.06%)</title><rect x="18.9066%" y="677" width="0.0622%" height="15" fill="rgb(239,72,28)" fg:x="99678" fg:w="328"/><text x="19.1566%" y="687.50"></text></g><g><title>SpinPause (118 samples, 0.02%)</title><rect x="18.9709%" y="677" width="0.0224%" height="15" fill="rgb(230,47,54)" fg:x="100017" fg:w="118"/><text x="19.2209%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (480 samples, 0.09%)</title><rect x="18.9045%" y="693" width="0.0910%" height="15" fill="rgb(214,50,8)" fg:x="99667" fg:w="480"/><text x="19.1545%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (198 samples, 0.04%)</title><rect x="19.0022%" y="597" width="0.0376%" height="15" fill="rgb(216,198,43)" fg:x="100182" fg:w="198"/><text x="19.2522%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (159 samples, 0.03%)</title><rect x="19.0096%" y="581" width="0.0302%" height="15" fill="rgb(234,20,35)" fg:x="100221" fg:w="159"/><text x="19.2596%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (253 samples, 0.05%)</title><rect x="18.9956%" y="613" width="0.0480%" height="15" fill="rgb(254,45,19)" fg:x="100147" fg:w="253"/><text x="19.2456%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (286 samples, 0.05%)</title><rect x="18.9956%" y="661" width="0.0542%" height="15" fill="rgb(219,14,44)" fg:x="100147" fg:w="286"/><text x="19.2456%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (286 samples, 0.05%)</title><rect x="18.9956%" y="645" width="0.0542%" height="15" fill="rgb(217,220,26)" fg:x="100147" fg:w="286"/><text x="19.2456%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (286 samples, 0.05%)</title><rect x="18.9956%" y="629" width="0.0542%" height="15" fill="rgb(213,158,28)" fg:x="100147" fg:w="286"/><text x="19.2456%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (300 samples, 0.06%)</title><rect x="18.9956%" y="693" width="0.0569%" height="15" fill="rgb(252,51,52)" fg:x="100147" fg:w="300"/><text x="19.2456%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (300 samples, 0.06%)</title><rect x="18.9956%" y="677" width="0.0569%" height="15" fill="rgb(246,89,16)" fg:x="100147" fg:w="300"/><text x="19.2456%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (57 samples, 0.01%)</title><rect x="19.0529%" y="629" width="0.0108%" height="15" fill="rgb(216,158,49)" fg:x="100449" fg:w="57"/><text x="19.3029%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (58 samples, 0.01%)</title><rect x="19.0529%" y="645" width="0.0110%" height="15" fill="rgb(236,107,19)" fg:x="100449" fg:w="58"/><text x="19.3029%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (74 samples, 0.01%)</title><rect x="19.0525%" y="693" width="0.0140%" height="15" fill="rgb(228,185,30)" fg:x="100447" fg:w="74"/><text x="19.3025%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (74 samples, 0.01%)</title><rect x="19.0525%" y="677" width="0.0140%" height="15" fill="rgb(246,134,8)" fg:x="100447" fg:w="74"/><text x="19.3025%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (74 samples, 0.01%)</title><rect x="19.0525%" y="661" width="0.0140%" height="15" fill="rgb(214,143,50)" fg:x="100447" fg:w="74"/><text x="19.3025%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (120 samples, 0.02%)</title><rect x="19.0747%" y="597" width="0.0228%" height="15" fill="rgb(228,75,8)" fg:x="100564" fg:w="120"/><text x="19.3247%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (94 samples, 0.02%)</title><rect x="19.0796%" y="581" width="0.0178%" height="15" fill="rgb(207,175,4)" fg:x="100590" fg:w="94"/><text x="19.3296%" y="591.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (165 samples, 0.03%)</title><rect x="19.0669%" y="661" width="0.0313%" height="15" fill="rgb(205,108,24)" fg:x="100523" fg:w="165"/><text x="19.3169%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (162 samples, 0.03%)</title><rect x="19.0675%" y="645" width="0.0307%" height="15" fill="rgb(244,120,49)" fg:x="100526" fg:w="162"/><text x="19.3175%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (162 samples, 0.03%)</title><rect x="19.0675%" y="629" width="0.0307%" height="15" fill="rgb(223,47,38)" fg:x="100526" fg:w="162"/><text x="19.3175%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (148 samples, 0.03%)</title><rect x="19.0701%" y="613" width="0.0281%" height="15" fill="rgb(229,179,11)" fg:x="100540" fg:w="148"/><text x="19.3201%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (200 samples, 0.04%)</title><rect x="19.0669%" y="677" width="0.0379%" height="15" fill="rgb(231,122,1)" fg:x="100523" fg:w="200"/><text x="19.3169%" y="687.50"></text></g><g><title>G1ParTask::work (1,070 samples, 0.20%)</title><rect x="18.9045%" y="709" width="0.2030%" height="15" fill="rgb(245,119,9)" fg:x="99667" fg:w="1070"/><text x="19.1545%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (216 samples, 0.04%)</title><rect x="19.0665%" y="693" width="0.0410%" height="15" fill="rgb(241,163,25)" fg:x="100521" fg:w="216"/><text x="19.3165%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (71 samples, 0.01%)</title><rect x="19.1096%" y="709" width="0.0135%" height="15" fill="rgb(217,214,3)" fg:x="100748" fg:w="71"/><text x="19.3596%" y="719.50"></text></g><g><title>__GI___clone (1,216 samples, 0.23%)</title><rect x="18.9025%" y="789" width="0.2306%" height="15" fill="rgb(240,86,28)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="799.50"></text></g><g><title>start_thread (1,216 samples, 0.23%)</title><rect x="18.9025%" y="773" width="0.2306%" height="15" fill="rgb(215,47,9)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="783.50"></text></g><g><title>thread_native_entry (1,216 samples, 0.23%)</title><rect x="18.9025%" y="757" width="0.2306%" height="15" fill="rgb(252,25,45)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="767.50"></text></g><g><title>Thread::call_run (1,216 samples, 0.23%)</title><rect x="18.9025%" y="741" width="0.2306%" height="15" fill="rgb(251,164,9)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="751.50"></text></g><g><title>GangWorker::loop (1,216 samples, 0.23%)</title><rect x="18.9025%" y="725" width="0.2306%" height="15" fill="rgb(233,194,0)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="735.50"></text></g><g><title>GC_Thread#5 (1,240 samples, 0.24%)</title><rect x="18.8983%" y="805" width="0.2352%" height="15" fill="rgb(249,111,24)" fg:x="99634" fg:w="1240"/><text x="19.1483%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (65 samples, 0.01%)</title><rect x="19.1834%" y="645" width="0.0123%" height="15" fill="rgb(250,223,3)" fg:x="101137" fg:w="65"/><text x="19.4334%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (156 samples, 0.03%)</title><rect x="19.1707%" y="661" width="0.0296%" height="15" fill="rgb(236,178,37)" fg:x="101070" fg:w="156"/><text x="19.4207%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (306 samples, 0.06%)</title><rect x="19.1437%" y="677" width="0.0580%" height="15" fill="rgb(241,158,50)" fg:x="100928" fg:w="306"/><text x="19.3937%" y="687.50"></text></g><g><title>SpinPause (58 samples, 0.01%)</title><rect x="19.2029%" y="677" width="0.0110%" height="15" fill="rgb(213,121,41)" fg:x="101240" fg:w="58"/><text x="19.4529%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (385 samples, 0.07%)</title><rect x="19.1414%" y="693" width="0.0730%" height="15" fill="rgb(240,92,3)" fg:x="100916" fg:w="385"/><text x="19.3914%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (193 samples, 0.04%)</title><rect x="19.2198%" y="597" width="0.0366%" height="15" fill="rgb(205,123,3)" fg:x="101329" fg:w="193"/><text x="19.4698%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (159 samples, 0.03%)</title><rect x="19.2262%" y="581" width="0.0302%" height="15" fill="rgb(205,97,47)" fg:x="101363" fg:w="159"/><text x="19.4762%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (233 samples, 0.04%)</title><rect x="19.2145%" y="613" width="0.0442%" height="15" fill="rgb(247,152,14)" fg:x="101301" fg:w="233"/><text x="19.4645%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (260 samples, 0.05%)</title><rect x="19.2145%" y="661" width="0.0493%" height="15" fill="rgb(248,195,53)" fg:x="101301" fg:w="260"/><text x="19.4645%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (260 samples, 0.05%)</title><rect x="19.2145%" y="645" width="0.0493%" height="15" fill="rgb(226,201,16)" fg:x="101301" fg:w="260"/><text x="19.4645%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (260 samples, 0.05%)</title><rect x="19.2145%" y="629" width="0.0493%" height="15" fill="rgb(205,98,0)" fg:x="101301" fg:w="260"/><text x="19.4645%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (267 samples, 0.05%)</title><rect x="19.2145%" y="693" width="0.0506%" height="15" fill="rgb(214,191,48)" fg:x="101301" fg:w="267"/><text x="19.4645%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (267 samples, 0.05%)</title><rect x="19.2145%" y="677" width="0.0506%" height="15" fill="rgb(237,112,39)" fg:x="101301" fg:w="267"/><text x="19.4645%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (57 samples, 0.01%)</title><rect x="19.2651%" y="629" width="0.0108%" height="15" fill="rgb(247,203,27)" fg:x="101568" fg:w="57"/><text x="19.5151%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (59 samples, 0.01%)</title><rect x="19.2651%" y="645" width="0.0112%" height="15" fill="rgb(235,124,28)" fg:x="101568" fg:w="59"/><text x="19.5151%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (73 samples, 0.01%)</title><rect x="19.2651%" y="693" width="0.0138%" height="15" fill="rgb(208,207,46)" fg:x="101568" fg:w="73"/><text x="19.5151%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (73 samples, 0.01%)</title><rect x="19.2651%" y="677" width="0.0138%" height="15" fill="rgb(234,176,4)" fg:x="101568" fg:w="73"/><text x="19.5151%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (73 samples, 0.01%)</title><rect x="19.2651%" y="661" width="0.0138%" height="15" fill="rgb(230,133,28)" fg:x="101568" fg:w="73"/><text x="19.5151%" y="671.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (106 samples, 0.02%)</title><rect x="19.2793%" y="661" width="0.0201%" height="15" fill="rgb(211,137,40)" fg:x="101643" fg:w="106"/><text x="19.5293%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (102 samples, 0.02%)</title><rect x="19.2801%" y="645" width="0.0193%" height="15" fill="rgb(254,35,13)" fg:x="101647" fg:w="102"/><text x="19.5301%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (102 samples, 0.02%)</title><rect x="19.2801%" y="629" width="0.0193%" height="15" fill="rgb(225,49,51)" fg:x="101647" fg:w="102"/><text x="19.5301%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (77 samples, 0.01%)</title><rect x="19.2848%" y="613" width="0.0146%" height="15" fill="rgb(251,10,15)" fg:x="101672" fg:w="77"/><text x="19.5348%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (64 samples, 0.01%)</title><rect x="19.2873%" y="597" width="0.0121%" height="15" fill="rgb(228,207,15)" fg:x="101685" fg:w="64"/><text x="19.5373%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (60 samples, 0.01%)</title><rect x="19.3103%" y="597" width="0.0114%" height="15" fill="rgb(241,99,19)" fg:x="101806" fg:w="60"/><text x="19.5603%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (60 samples, 0.01%)</title><rect x="19.3103%" y="581" width="0.0114%" height="15" fill="rgb(207,104,49)" fg:x="101806" fg:w="60"/><text x="19.5603%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (62 samples, 0.01%)</title><rect x="19.3103%" y="613" width="0.0118%" height="15" fill="rgb(234,99,18)" fg:x="101806" fg:w="62"/><text x="19.5603%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (226 samples, 0.04%)</title><rect x="19.2793%" y="677" width="0.0429%" height="15" fill="rgb(213,191,49)" fg:x="101643" fg:w="226"/><text x="19.5293%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (120 samples, 0.02%)</title><rect x="19.2994%" y="661" width="0.0228%" height="15" fill="rgb(210,226,19)" fg:x="101749" fg:w="120"/><text x="19.5494%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (120 samples, 0.02%)</title><rect x="19.2994%" y="645" width="0.0228%" height="15" fill="rgb(229,97,18)" fg:x="101749" fg:w="120"/><text x="19.5494%" y="655.50"></text></g><g><title>JavaThread::oops_do (120 samples, 0.02%)</title><rect x="19.2994%" y="629" width="0.0228%" height="15" fill="rgb(211,167,15)" fg:x="101749" fg:w="120"/><text x="19.5494%" y="639.50"></text></g><g><title>G1ParTask::work (997 samples, 0.19%)</title><rect x="19.1414%" y="709" width="0.1891%" height="15" fill="rgb(210,169,34)" fg:x="100916" fg:w="997"/><text x="19.3914%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (272 samples, 0.05%)</title><rect x="19.2790%" y="693" width="0.0516%" height="15" fill="rgb(241,121,31)" fg:x="101641" fg:w="272"/><text x="19.5290%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (67 samples, 0.01%)</title><rect x="19.3342%" y="709" width="0.0127%" height="15" fill="rgb(232,40,11)" fg:x="101932" fg:w="67"/><text x="19.5842%" y="719.50"></text></g><g><title>__GI___clone (1,189 samples, 0.23%)</title><rect x="19.1377%" y="789" width="0.2255%" height="15" fill="rgb(205,86,26)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="799.50"></text></g><g><title>start_thread (1,189 samples, 0.23%)</title><rect x="19.1377%" y="773" width="0.2255%" height="15" fill="rgb(231,126,28)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="783.50"></text></g><g><title>thread_native_entry (1,189 samples, 0.23%)</title><rect x="19.1377%" y="757" width="0.2255%" height="15" fill="rgb(219,221,18)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="767.50"></text></g><g><title>Thread::call_run (1,189 samples, 0.23%)</title><rect x="19.1377%" y="741" width="0.2255%" height="15" fill="rgb(211,40,0)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="751.50"></text></g><g><title>GangWorker::loop (1,189 samples, 0.23%)</title><rect x="19.1377%" y="725" width="0.2255%" height="15" fill="rgb(239,85,43)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="735.50"></text></g><g><title>GC_Thread#6 (1,216 samples, 0.23%)</title><rect x="19.1335%" y="805" width="0.2306%" height="15" fill="rgb(231,55,21)" fg:x="100874" fg:w="1216"/><text x="19.3835%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (61 samples, 0.01%)</title><rect x="19.4218%" y="645" width="0.0116%" height="15" fill="rgb(225,184,43)" fg:x="102394" fg:w="61"/><text x="19.6718%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (185 samples, 0.04%)</title><rect x="19.4072%" y="661" width="0.0351%" height="15" fill="rgb(251,158,41)" fg:x="102317" fg:w="185"/><text x="19.6572%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (341 samples, 0.06%)</title><rect x="19.3791%" y="677" width="0.0647%" height="15" fill="rgb(234,159,37)" fg:x="102169" fg:w="341"/><text x="19.6291%" y="687.50"></text></g><g><title>SpinPause (144 samples, 0.03%)</title><rect x="19.4449%" y="677" width="0.0273%" height="15" fill="rgb(216,204,22)" fg:x="102516" fg:w="144"/><text x="19.6949%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (522 samples, 0.10%)</title><rect x="19.3757%" y="693" width="0.0990%" height="15" fill="rgb(214,17,3)" fg:x="102151" fg:w="522"/><text x="19.6257%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (186 samples, 0.04%)</title><rect x="19.4823%" y="597" width="0.0353%" height="15" fill="rgb(212,111,17)" fg:x="102713" fg:w="186"/><text x="19.7323%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (146 samples, 0.03%)</title><rect x="19.4899%" y="581" width="0.0277%" height="15" fill="rgb(221,157,24)" fg:x="102753" fg:w="146"/><text x="19.7399%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (238 samples, 0.05%)</title><rect x="19.4749%" y="613" width="0.0451%" height="15" fill="rgb(252,16,13)" fg:x="102674" fg:w="238"/><text x="19.7249%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (277 samples, 0.05%)</title><rect x="19.4747%" y="661" width="0.0525%" height="15" fill="rgb(221,62,2)" fg:x="102673" fg:w="277"/><text x="19.7247%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (277 samples, 0.05%)</title><rect x="19.4747%" y="645" width="0.0525%" height="15" fill="rgb(247,87,22)" fg:x="102673" fg:w="277"/><text x="19.7247%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (277 samples, 0.05%)</title><rect x="19.4747%" y="629" width="0.0525%" height="15" fill="rgb(215,73,9)" fg:x="102673" fg:w="277"/><text x="19.7247%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (290 samples, 0.06%)</title><rect x="19.4747%" y="693" width="0.0550%" height="15" fill="rgb(207,175,33)" fg:x="102673" fg:w="290"/><text x="19.7247%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (290 samples, 0.06%)</title><rect x="19.4747%" y="677" width="0.0550%" height="15" fill="rgb(243,129,54)" fg:x="102673" fg:w="290"/><text x="19.7247%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (58 samples, 0.01%)</title><rect x="19.5297%" y="693" width="0.0110%" height="15" fill="rgb(227,119,45)" fg:x="102963" fg:w="58"/><text x="19.7797%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (58 samples, 0.01%)</title><rect x="19.5297%" y="677" width="0.0110%" height="15" fill="rgb(205,109,36)" fg:x="102963" fg:w="58"/><text x="19.7797%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (58 samples, 0.01%)</title><rect x="19.5297%" y="661" width="0.0110%" height="15" fill="rgb(205,6,39)" fg:x="102963" fg:w="58"/><text x="19.7797%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (63 samples, 0.01%)</title><rect x="19.5464%" y="597" width="0.0119%" height="15" fill="rgb(221,32,16)" fg:x="103051" fg:w="63"/><text x="19.7964%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (98 samples, 0.02%)</title><rect x="19.5407%" y="661" width="0.0186%" height="15" fill="rgb(228,144,50)" fg:x="103021" fg:w="98"/><text x="19.7907%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (96 samples, 0.02%)</title><rect x="19.5411%" y="645" width="0.0182%" height="15" fill="rgb(229,201,53)" fg:x="103023" fg:w="96"/><text x="19.7911%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (96 samples, 0.02%)</title><rect x="19.5411%" y="629" width="0.0182%" height="15" fill="rgb(249,153,27)" fg:x="103023" fg:w="96"/><text x="19.7911%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (86 samples, 0.02%)</title><rect x="19.5430%" y="613" width="0.0163%" height="15" fill="rgb(227,106,25)" fg:x="103033" fg:w="86"/><text x="19.7930%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (159 samples, 0.03%)</title><rect x="19.5407%" y="677" width="0.0302%" height="15" fill="rgb(230,65,29)" fg:x="103021" fg:w="159"/><text x="19.7907%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (61 samples, 0.01%)</title><rect x="19.5593%" y="661" width="0.0116%" height="15" fill="rgb(221,57,46)" fg:x="103119" fg:w="61"/><text x="19.8093%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (61 samples, 0.01%)</title><rect x="19.5593%" y="645" width="0.0116%" height="15" fill="rgb(229,161,17)" fg:x="103119" fg:w="61"/><text x="19.8093%" y="655.50"></text></g><g><title>JavaThread::oops_do (61 samples, 0.01%)</title><rect x="19.5593%" y="629" width="0.0116%" height="15" fill="rgb(222,213,11)" fg:x="103119" fg:w="61"/><text x="19.8093%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (199 samples, 0.04%)</title><rect x="19.5407%" y="693" width="0.0377%" height="15" fill="rgb(235,35,13)" fg:x="103021" fg:w="199"/><text x="19.7907%" y="703.50"></text></g><g><title>G1ParTask::work (1,071 samples, 0.20%)</title><rect x="19.3757%" y="709" width="0.2031%" height="15" fill="rgb(233,158,34)" fg:x="102151" fg:w="1071"/><text x="19.6257%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (62 samples, 0.01%)</title><rect x="19.5794%" y="709" width="0.0118%" height="15" fill="rgb(215,151,48)" fg:x="103225" fg:w="62"/><text x="19.8294%" y="719.50"></text></g><g><title>GC_Thread#7 (1,273 samples, 0.24%)</title><rect x="19.3641%" y="805" width="0.2415%" height="15" fill="rgb(229,84,14)" fg:x="102090" fg:w="1273"/><text x="19.6141%" y="815.50"></text></g><g><title>__GI___clone (1,233 samples, 0.23%)</title><rect x="19.3717%" y="789" width="0.2339%" height="15" fill="rgb(229,68,14)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="799.50"></text></g><g><title>start_thread (1,233 samples, 0.23%)</title><rect x="19.3717%" y="773" width="0.2339%" height="15" fill="rgb(243,106,26)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="783.50"></text></g><g><title>thread_native_entry (1,233 samples, 0.23%)</title><rect x="19.3717%" y="757" width="0.2339%" height="15" fill="rgb(206,45,38)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="767.50"></text></g><g><title>Thread::call_run (1,233 samples, 0.23%)</title><rect x="19.3717%" y="741" width="0.2339%" height="15" fill="rgb(226,6,15)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="751.50"></text></g><g><title>GangWorker::loop (1,233 samples, 0.23%)</title><rect x="19.3717%" y="725" width="0.2339%" height="15" fill="rgb(232,22,54)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="735.50"></text></g><g><title>[perf-947659.map] (125 samples, 0.02%)</title><rect x="19.6096%" y="789" width="0.0237%" height="15" fill="rgb(229,222,32)" fg:x="103384" fg:w="125"/><text x="19.8596%" y="799.50"></text></g><g><title>Service_Thread (160 samples, 0.03%)</title><rect x="19.6079%" y="805" width="0.0303%" height="15" fill="rgb(228,62,29)" fg:x="103375" fg:w="160"/><text x="19.8579%" y="815.50"></text></g><g><title>futex_wait_queue_me (160 samples, 0.03%)</title><rect x="19.6619%" y="517" width="0.0303%" height="15" fill="rgb(251,103,34)" fg:x="103660" fg:w="160"/><text x="19.9119%" y="527.50"></text></g><g><title>schedule (128 samples, 0.02%)</title><rect x="19.6680%" y="501" width="0.0243%" height="15" fill="rgb(233,12,30)" fg:x="103692" fg:w="128"/><text x="19.9180%" y="511.50"></text></g><g><title>__schedule (124 samples, 0.02%)</title><rect x="19.6687%" y="485" width="0.0235%" height="15" fill="rgb(238,52,0)" fg:x="103696" fg:w="124"/><text x="19.9187%" y="495.50"></text></g><g><title>do_futex (195 samples, 0.04%)</title><rect x="19.6602%" y="549" width="0.0370%" height="15" fill="rgb(223,98,5)" fg:x="103651" fg:w="195"/><text x="19.9102%" y="559.50"></text></g><g><title>futex_wait (192 samples, 0.04%)</title><rect x="19.6608%" y="533" width="0.0364%" height="15" fill="rgb(228,75,37)" fg:x="103654" fg:w="192"/><text x="19.9108%" y="543.50"></text></g><g><title>do_syscall_64 (210 samples, 0.04%)</title><rect x="19.6587%" y="581" width="0.0398%" height="15" fill="rgb(205,115,49)" fg:x="103643" fg:w="210"/><text x="19.9087%" y="591.50"></text></g><g><title>__x64_sys_futex (209 samples, 0.04%)</title><rect x="19.6589%" y="565" width="0.0396%" height="15" fill="rgb(250,154,43)" fg:x="103644" fg:w="209"/><text x="19.9089%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (223 samples, 0.04%)</title><rect x="19.6581%" y="597" width="0.0423%" height="15" fill="rgb(226,43,29)" fg:x="103640" fg:w="223"/><text x="19.9081%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (254 samples, 0.05%)</title><rect x="19.6530%" y="645" width="0.0482%" height="15" fill="rgb(249,228,39)" fg:x="103613" fg:w="254"/><text x="19.9030%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (254 samples, 0.05%)</title><rect x="19.6530%" y="629" width="0.0482%" height="15" fill="rgb(216,79,43)" fg:x="103613" fg:w="254"/><text x="19.9030%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (247 samples, 0.05%)</title><rect x="19.6543%" y="613" width="0.0469%" height="15" fill="rgb(228,95,12)" fg:x="103620" fg:w="247"/><text x="19.9043%" y="623.50"></text></g><g><title>Monitor::wait (317 samples, 0.06%)</title><rect x="19.6467%" y="693" width="0.0601%" height="15" fill="rgb(249,221,15)" fg:x="103580" fg:w="317"/><text x="19.8967%" y="703.50"></text></g><g><title>Monitor::IWait (312 samples, 0.06%)</title><rect x="19.6477%" y="677" width="0.0592%" height="15" fill="rgb(233,34,13)" fg:x="103585" fg:w="312"/><text x="19.8977%" y="687.50"></text></g><g><title>os::PlatformEvent::park (296 samples, 0.06%)</title><rect x="19.6507%" y="661" width="0.0561%" height="15" fill="rgb(214,103,39)" fg:x="103601" fg:w="296"/><text x="19.9007%" y="671.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (121 samples, 0.02%)</title><rect x="19.7156%" y="645" width="0.0230%" height="15" fill="rgb(251,126,39)" fg:x="103943" fg:w="121"/><text x="19.9656%" y="655.50"></text></g><g><title>NMethodSweeper::process_compiled_method (160 samples, 0.03%)</title><rect x="19.7154%" y="661" width="0.0303%" height="15" fill="rgb(214,216,36)" fg:x="103942" fg:w="160"/><text x="19.9654%" y="671.50"></text></g><g><title>NMethodSweeper::possibly_sweep (215 samples, 0.04%)</title><rect x="19.7069%" y="693" width="0.0408%" height="15" fill="rgb(220,221,8)" fg:x="103897" fg:w="215"/><text x="19.9569%" y="703.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (194 samples, 0.04%)</title><rect x="19.7109%" y="677" width="0.0368%" height="15" fill="rgb(240,216,3)" fg:x="103918" fg:w="194"/><text x="19.9609%" y="687.50"></text></g><g><title>__GI___clone (564 samples, 0.11%)</title><rect x="19.6428%" y="789" width="0.1070%" height="15" fill="rgb(232,218,17)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="799.50"></text></g><g><title>start_thread (564 samples, 0.11%)</title><rect x="19.6428%" y="773" width="0.1070%" height="15" fill="rgb(229,163,45)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="783.50"></text></g><g><title>thread_native_entry (564 samples, 0.11%)</title><rect x="19.6428%" y="757" width="0.1070%" height="15" fill="rgb(231,110,42)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="767.50"></text></g><g><title>Thread::call_run (564 samples, 0.11%)</title><rect x="19.6428%" y="741" width="0.1070%" height="15" fill="rgb(208,170,48)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="751.50"></text></g><g><title>JavaThread::thread_main_inner (564 samples, 0.11%)</title><rect x="19.6428%" y="725" width="0.1070%" height="15" fill="rgb(239,116,25)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="735.50"></text></g><g><title>NMethodSweeper::sweeper_loop (563 samples, 0.11%)</title><rect x="19.6430%" y="709" width="0.1068%" height="15" fill="rgb(219,200,50)" fg:x="103560" fg:w="563"/><text x="19.8930%" y="719.50"></text></g><g><title>Sweeper_thread (596 samples, 0.11%)</title><rect x="19.6382%" y="805" width="0.1130%" height="15" fill="rgb(245,200,0)" fg:x="103535" fg:w="596"/><text x="19.8882%" y="815.50"></text></g><g><title>JNU_ThrowByNameWithLastError (54 samples, 0.01%)</title><rect x="19.8256%" y="757" width="0.0102%" height="15" fill="rgb(245,119,33)" fg:x="104523" fg:w="54"/><text x="20.0756%" y="767.50"></text></g><g><title>Java_java_io_FileInputStream_available0 (60 samples, 0.01%)</title><rect x="19.8256%" y="773" width="0.0114%" height="15" fill="rgb(231,125,12)" fg:x="104523" fg:w="60"/><text x="20.0756%" y="783.50"></text></g><g><title>get_cpu_load (73 samples, 0.01%)</title><rect x="19.8480%" y="773" width="0.0138%" height="15" fill="rgb(216,96,41)" fg:x="104641" fg:w="73"/><text x="20.0980%" y="783.50"></text></g><g><title>get_cpuload_internal (73 samples, 0.01%)</title><rect x="19.8480%" y="757" width="0.0138%" height="15" fill="rgb(248,43,45)" fg:x="104641" fg:w="73"/><text x="20.0980%" y="767.50"></text></g><g><title>get_totalticks (73 samples, 0.01%)</title><rect x="19.8480%" y="741" width="0.0138%" height="15" fill="rgb(217,222,7)" fg:x="104641" fg:w="73"/><text x="20.0980%" y="751.50"></text></g><g><title>[perf-947659.map] (554 samples, 0.11%)</title><rect x="19.7587%" y="789" width="0.1051%" height="15" fill="rgb(233,28,6)" fg:x="104170" fg:w="554"/><text x="20.0087%" y="799.50"></text></g><g><title>Thread-0 (625 samples, 0.12%)</title><rect x="19.7513%" y="805" width="0.1185%" height="15" fill="rgb(231,218,15)" fg:x="104131" fg:w="625"/><text x="20.0013%" y="815.50"></text></g><g><title>do_futex (63 samples, 0.01%)</title><rect x="19.8903%" y="549" width="0.0119%" height="15" fill="rgb(226,171,48)" fg:x="104864" fg:w="63"/><text x="20.1403%" y="559.50"></text></g><g><title>futex_wait (61 samples, 0.01%)</title><rect x="19.8907%" y="533" width="0.0116%" height="15" fill="rgb(235,201,9)" fg:x="104866" fg:w="61"/><text x="20.1407%" y="543.50"></text></g><g><title>do_syscall_64 (66 samples, 0.01%)</title><rect x="19.8899%" y="581" width="0.0125%" height="15" fill="rgb(217,80,15)" fg:x="104862" fg:w="66"/><text x="20.1399%" y="591.50"></text></g><g><title>__x64_sys_futex (66 samples, 0.01%)</title><rect x="19.8899%" y="565" width="0.0125%" height="15" fill="rgb(219,152,8)" fg:x="104862" fg:w="66"/><text x="20.1399%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (83 samples, 0.02%)</title><rect x="19.8871%" y="645" width="0.0157%" height="15" fill="rgb(243,107,38)" fg:x="104847" fg:w="83"/><text x="20.1371%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (80 samples, 0.02%)</title><rect x="19.8876%" y="629" width="0.0152%" height="15" fill="rgb(231,17,5)" fg:x="104850" fg:w="80"/><text x="20.1376%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (77 samples, 0.01%)</title><rect x="19.8882%" y="613" width="0.0146%" height="15" fill="rgb(209,25,54)" fg:x="104853" fg:w="77"/><text x="20.1382%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="19.8899%" y="597" width="0.0129%" height="15" fill="rgb(219,0,2)" fg:x="104862" fg:w="68"/><text x="20.1399%" y="607.50"></text></g><g><title>Monitor::wait (119 samples, 0.02%)</title><rect x="19.8831%" y="693" width="0.0226%" height="15" fill="rgb(246,9,5)" fg:x="104826" fg:w="119"/><text x="20.1331%" y="703.50"></text></g><g><title>Monitor::IWait (116 samples, 0.02%)</title><rect x="19.8837%" y="677" width="0.0220%" height="15" fill="rgb(226,159,4)" fg:x="104829" fg:w="116"/><text x="20.1337%" y="687.50"></text></g><g><title>os::PlatformEvent::park (106 samples, 0.02%)</title><rect x="19.8855%" y="661" width="0.0201%" height="15" fill="rgb(219,175,34)" fg:x="104839" fg:w="106"/><text x="20.1355%" y="671.50"></text></g><g><title>__GI___clone (168 samples, 0.03%)</title><rect x="19.8745%" y="789" width="0.0319%" height="15" fill="rgb(236,10,46)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="799.50"></text></g><g><title>start_thread (168 samples, 0.03%)</title><rect x="19.8745%" y="773" width="0.0319%" height="15" fill="rgb(240,211,16)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="783.50"></text></g><g><title>thread_native_entry (168 samples, 0.03%)</title><rect x="19.8745%" y="757" width="0.0319%" height="15" fill="rgb(205,3,43)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="767.50"></text></g><g><title>Thread::call_run (168 samples, 0.03%)</title><rect x="19.8745%" y="741" width="0.0319%" height="15" fill="rgb(245,7,22)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="751.50"></text></g><g><title>WatcherThread::run (168 samples, 0.03%)</title><rect x="19.8745%" y="725" width="0.0319%" height="15" fill="rgb(239,132,32)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="735.50"></text></g><g><title>WatcherThread::sleep (127 samples, 0.02%)</title><rect x="19.8823%" y="709" width="0.0241%" height="15" fill="rgb(228,202,34)" fg:x="104822" fg:w="127"/><text x="20.1323%" y="719.50"></text></g><g><title>VM_Periodic_Tas (199 samples, 0.04%)</title><rect x="19.8698%" y="805" width="0.0377%" height="15" fill="rgb(254,200,22)" fg:x="104756" fg:w="199"/><text x="20.1198%" y="815.50"></text></g><g><title>[unknown] (77 samples, 0.01%)</title><rect x="19.9094%" y="789" width="0.0146%" height="15" fill="rgb(219,10,39)" fg:x="104965" fg:w="77"/><text x="20.1594%" y="799.50"></text></g><g><title>vframe::sender (72 samples, 0.01%)</title><rect x="19.9104%" y="773" width="0.0137%" height="15" fill="rgb(226,210,39)" fg:x="104970" fg:w="72"/><text x="20.1604%" y="783.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="19.9580%" y="549" width="0.0118%" height="15" fill="rgb(208,219,16)" fg:x="105221" fg:w="62"/><text x="20.2080%" y="559.50"></text></g><g><title>do_futex (61 samples, 0.01%)</title><rect x="19.9582%" y="533" width="0.0116%" height="15" fill="rgb(216,158,51)" fg:x="105222" fg:w="61"/><text x="20.2082%" y="543.50"></text></g><g><title>futex_wake (61 samples, 0.01%)</title><rect x="19.9582%" y="517" width="0.0116%" height="15" fill="rgb(233,14,44)" fg:x="105222" fg:w="61"/><text x="20.2082%" y="527.50"></text></g><g><title>wake_up_q (56 samples, 0.01%)</title><rect x="19.9591%" y="501" width="0.0106%" height="15" fill="rgb(237,97,39)" fg:x="105227" fg:w="56"/><text x="20.2091%" y="511.50"></text></g><g><title>try_to_wake_up (54 samples, 0.01%)</title><rect x="19.9595%" y="485" width="0.0102%" height="15" fill="rgb(218,198,43)" fg:x="105229" fg:w="54"/><text x="20.2095%" y="495.50"></text></g><g><title>PosixSemaphore::signal (66 samples, 0.01%)</title><rect x="19.9574%" y="629" width="0.0125%" height="15" fill="rgb(231,104,20)" fg:x="105218" fg:w="66"/><text x="20.2074%" y="639.50"></text></g><g><title>__new_sem_post (66 samples, 0.01%)</title><rect x="19.9574%" y="613" width="0.0125%" height="15" fill="rgb(254,36,13)" fg:x="105218" fg:w="66"/><text x="20.2074%" y="623.50"></text></g><g><title>futex_wake (66 samples, 0.01%)</title><rect x="19.9574%" y="597" width="0.0125%" height="15" fill="rgb(248,14,50)" fg:x="105218" fg:w="66"/><text x="20.2074%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="19.9578%" y="581" width="0.0121%" height="15" fill="rgb(217,107,29)" fg:x="105220" fg:w="64"/><text x="20.2078%" y="591.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="19.9580%" y="565" width="0.0119%" height="15" fill="rgb(251,169,33)" fg:x="105221" fg:w="63"/><text x="20.2080%" y="575.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (88 samples, 0.02%)</title><rect x="19.9559%" y="677" width="0.0167%" height="15" fill="rgb(217,108,32)" fg:x="105210" fg:w="88"/><text x="20.2059%" y="687.50"></text></g><g><title>WorkGang::run_task (82 samples, 0.02%)</title><rect x="19.9571%" y="661" width="0.0156%" height="15" fill="rgb(219,66,42)" fg:x="105216" fg:w="82"/><text x="20.2071%" y="671.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (80 samples, 0.02%)</title><rect x="19.9574%" y="645" width="0.0152%" height="15" fill="rgb(206,180,7)" fg:x="105218" fg:w="80"/><text x="20.2074%" y="655.50"></text></g><g><title>SafepointSynchronize::begin (253 samples, 0.05%)</title><rect x="19.9309%" y="693" width="0.0480%" height="15" fill="rgb(208,226,31)" fg:x="105078" fg:w="253"/><text x="20.1809%" y="703.50"></text></g><g><title>VM_Deoptimize::doit (64 samples, 0.01%)</title><rect x="19.9893%" y="661" width="0.0121%" height="15" fill="rgb(218,26,49)" fg:x="105386" fg:w="64"/><text x="20.2393%" y="671.50"></text></g><g><title>VM_Operation::evaluate (141 samples, 0.03%)</title><rect x="19.9853%" y="677" width="0.0267%" height="15" fill="rgb(233,197,48)" fg:x="105365" fg:w="141"/><text x="20.2353%" y="687.50"></text></g><g><title>VMThread::evaluate_operation (143 samples, 0.03%)</title><rect x="19.9853%" y="693" width="0.0271%" height="15" fill="rgb(252,181,51)" fg:x="105365" fg:w="143"/><text x="20.2353%" y="703.50"></text></g><g><title>__GI___clone (477 samples, 0.09%)</title><rect x="19.9241%" y="789" width="0.0905%" height="15" fill="rgb(253,90,19)" fg:x="105042" fg:w="477"/><text x="20.1741%" y="799.50"></text></g><g><title>start_thread (476 samples, 0.09%)</title><rect x="19.9242%" y="773" width="0.0903%" height="15" fill="rgb(215,171,30)" fg:x="105043" fg:w="476"/><text x="20.1742%" y="783.50"></text></g><g><title>thread_native_entry (476 samples, 0.09%)</title><rect x="19.9242%" y="757" width="0.0903%" height="15" fill="rgb(214,222,9)" fg:x="105043" fg:w="476"/><text x="20.1742%" y="767.50"></text></g><g><title>Thread::call_run (472 samples, 0.09%)</title><rect x="19.9250%" y="741" width="0.0895%" height="15" fill="rgb(223,3,22)" fg:x="105047" fg:w="472"/><text x="20.1750%" y="751.50"></text></g><g><title>VMThread::run (472 samples, 0.09%)</title><rect x="19.9250%" y="725" width="0.0895%" height="15" fill="rgb(225,196,46)" fg:x="105047" fg:w="472"/><text x="20.1750%" y="735.50"></text></g><g><title>VMThread::loop (472 samples, 0.09%)</title><rect x="19.9250%" y="709" width="0.0895%" height="15" fill="rgb(209,110,37)" fg:x="105047" fg:w="472"/><text x="20.1750%" y="719.50"></text></g><g><title>VM_Thread (567 samples, 0.11%)</title><rect x="19.9076%" y="805" width="0.1075%" height="15" fill="rgb(249,89,12)" fg:x="104955" fg:w="567"/><text x="20.1576%" y="815.50"></text></g><g><title>__x64_sys_epoll_pwait (62 samples, 0.01%)</title><rect x="20.0716%" y="741" width="0.0118%" height="15" fill="rgb(226,27,33)" fg:x="105820" fg:w="62"/><text x="20.3216%" y="751.50"></text></g><g><title>do_epoll_wait (62 samples, 0.01%)</title><rect x="20.0716%" y="725" width="0.0118%" height="15" fill="rgb(213,82,22)" fg:x="105820" fg:w="62"/><text x="20.3216%" y="735.50"></text></g><g><title>schedule_hrtimeout_range_clock (59 samples, 0.01%)</title><rect x="20.0722%" y="709" width="0.0112%" height="15" fill="rgb(248,140,0)" fg:x="105823" fg:w="59"/><text x="20.3222%" y="719.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="20.0729%" y="693" width="0.0104%" height="15" fill="rgb(228,106,3)" fg:x="105827" fg:w="55"/><text x="20.3229%" y="703.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="20.0729%" y="677" width="0.0104%" height="15" fill="rgb(209,23,37)" fg:x="105827" fg:w="55"/><text x="20.3229%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.01%)</title><rect x="20.0857%" y="629" width="0.0138%" height="15" fill="rgb(241,93,50)" fg:x="105894" fg:w="73"/><text x="20.3357%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.01%)</title><rect x="20.0858%" y="613" width="0.0137%" height="15" fill="rgb(253,46,43)" fg:x="105895" fg:w="72"/><text x="20.3358%" y="623.50"></text></g><g><title>native_write_msr (72 samples, 0.01%)</title><rect x="20.0858%" y="597" width="0.0137%" height="15" fill="rgb(226,206,43)" fg:x="105895" fg:w="72"/><text x="20.3358%" y="607.50"></text></g><g><title>finish_task_switch (80 samples, 0.02%)</title><rect x="20.0855%" y="645" width="0.0152%" height="15" fill="rgb(217,54,7)" fg:x="105893" fg:w="80"/><text x="20.3355%" y="655.50"></text></g><g><title>futex_wait_queue_me (94 samples, 0.02%)</title><rect x="20.0840%" y="693" width="0.0178%" height="15" fill="rgb(223,5,52)" fg:x="105885" fg:w="94"/><text x="20.3340%" y="703.50"></text></g><g><title>schedule (93 samples, 0.02%)</title><rect x="20.0841%" y="677" width="0.0176%" height="15" fill="rgb(206,52,46)" fg:x="105886" fg:w="93"/><text x="20.3341%" y="687.50"></text></g><g><title>__schedule (92 samples, 0.02%)</title><rect x="20.0843%" y="661" width="0.0175%" height="15" fill="rgb(253,136,11)" fg:x="105887" fg:w="92"/><text x="20.3343%" y="671.50"></text></g><g><title>futex_wait (98 samples, 0.02%)</title><rect x="20.0834%" y="709" width="0.0186%" height="15" fill="rgb(208,106,33)" fg:x="105882" fg:w="98"/><text x="20.3334%" y="719.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.02%)</title><rect x="20.0834%" y="741" width="0.0199%" height="15" fill="rgb(206,54,4)" fg:x="105882" fg:w="105"/><text x="20.3334%" y="751.50"></text></g><g><title>do_futex (105 samples, 0.02%)</title><rect x="20.0834%" y="725" width="0.0199%" height="15" fill="rgb(213,3,15)" fg:x="105882" fg:w="105"/><text x="20.3334%" y="735.50"></text></g><g><title>do_syscall_64 (241 samples, 0.05%)</title><rect x="20.0707%" y="757" width="0.0457%" height="15" fill="rgb(252,211,39)" fg:x="105815" fg:w="241"/><text x="20.3207%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (248 samples, 0.05%)</title><rect x="20.0707%" y="773" width="0.0470%" height="15" fill="rgb(223,6,36)" fg:x="105815" fg:w="248"/><text x="20.3207%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (548 samples, 0.10%)</title><rect x="20.0215%" y="789" width="0.1039%" height="15" fill="rgb(252,169,45)" fg:x="105556" fg:w="548"/><text x="20.2715%" y="799.50"></text></g><g><title>bazel (605 samples, 0.11%)</title><rect x="20.0204%" y="805" width="0.1148%" height="15" fill="rgb(212,48,26)" fg:x="105550" fg:w="605"/><text x="20.2704%" y="815.50"></text></g><g><title>_dl_map_object_deps (61 samples, 0.01%)</title><rect x="20.1471%" y="709" width="0.0116%" height="15" fill="rgb(251,102,48)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="719.50"></text></g><g><title>_dl_catch_exception (61 samples, 0.01%)</title><rect x="20.1471%" y="693" width="0.0116%" height="15" fill="rgb(243,208,16)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="703.50"></text></g><g><title>openaux (61 samples, 0.01%)</title><rect x="20.1471%" y="677" width="0.0116%" height="15" fill="rgb(219,96,24)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="687.50"></text></g><g><title>_dl_map_object (61 samples, 0.01%)</title><rect x="20.1471%" y="661" width="0.0116%" height="15" fill="rgb(219,33,29)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (63 samples, 0.01%)</title><rect x="20.1670%" y="661" width="0.0119%" height="15" fill="rgb(223,176,5)" fg:x="106323" fg:w="63"/><text x="20.4170%" y="671.50"></text></g><g><title>elf_machine_rela (85 samples, 0.02%)</title><rect x="20.1632%" y="677" width="0.0161%" height="15" fill="rgb(228,140,14)" fg:x="106303" fg:w="85"/><text x="20.4132%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (108 samples, 0.02%)</title><rect x="20.1604%" y="693" width="0.0205%" height="15" fill="rgb(217,179,31)" fg:x="106288" fg:w="108"/><text x="20.4104%" y="703.50"></text></g><g><title>_dl_relocate_object (121 samples, 0.02%)</title><rect x="20.1587%" y="709" width="0.0230%" height="15" fill="rgb(230,9,30)" fg:x="106279" fg:w="121"/><text x="20.4087%" y="719.50"></text></g><g><title>[ld-2.31.so] (185 samples, 0.04%)</title><rect x="20.1469%" y="725" width="0.0351%" height="15" fill="rgb(230,136,20)" fg:x="106217" fg:w="185"/><text x="20.3969%" y="735.50"></text></g><g><title>_start (205 samples, 0.04%)</title><rect x="20.1433%" y="789" width="0.0389%" height="15" fill="rgb(215,210,22)" fg:x="106198" fg:w="205"/><text x="20.3933%" y="799.50"></text></g><g><title>_dl_start (186 samples, 0.04%)</title><rect x="20.1469%" y="773" width="0.0353%" height="15" fill="rgb(218,43,5)" fg:x="106217" fg:w="186"/><text x="20.3969%" y="783.50"></text></g><g><title>_dl_start_final (186 samples, 0.04%)</title><rect x="20.1469%" y="757" width="0.0353%" height="15" fill="rgb(216,11,5)" fg:x="106217" fg:w="186"/><text x="20.3969%" y="767.50"></text></g><g><title>_dl_sysdep_start (186 samples, 0.04%)</title><rect x="20.1469%" y="741" width="0.0353%" height="15" fill="rgb(209,82,29)" fg:x="106217" fg:w="186"/><text x="20.3969%" y="751.50"></text></g><g><title>build-runfiles (292 samples, 0.06%)</title><rect x="20.1355%" y="805" width="0.0554%" height="15" fill="rgb(244,115,12)" fg:x="106157" fg:w="292"/><text x="20.3855%" y="815.50"></text></g><g><title>[dash] (67 samples, 0.01%)</title><rect x="20.2545%" y="469" width="0.0127%" height="15" fill="rgb(222,82,18)" fg:x="106784" fg:w="67"/><text x="20.5045%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="20.2689%" y="453" width="0.0154%" height="15" fill="rgb(249,227,8)" fg:x="106860" fg:w="81"/><text x="20.5189%" y="463.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="20.2689%" y="437" width="0.0154%" height="15" fill="rgb(253,141,45)" fg:x="106860" fg:w="81"/><text x="20.5189%" y="447.50"></text></g><g><title>ksys_write (80 samples, 0.02%)</title><rect x="20.2691%" y="421" width="0.0152%" height="15" fill="rgb(234,184,4)" fg:x="106861" fg:w="80"/><text x="20.5191%" y="431.50"></text></g><g><title>vfs_write (76 samples, 0.01%)</title><rect x="20.2698%" y="405" width="0.0144%" height="15" fill="rgb(218,194,23)" fg:x="106865" fg:w="76"/><text x="20.5198%" y="415.50"></text></g><g><title>__GI___libc_write (83 samples, 0.02%)</title><rect x="20.2687%" y="469" width="0.0157%" height="15" fill="rgb(235,66,41)" fg:x="106859" fg:w="83"/><text x="20.5187%" y="479.50"></text></g><g><title>alloc_bprm (90 samples, 0.02%)</title><rect x="20.2852%" y="389" width="0.0171%" height="15" fill="rgb(245,217,1)" fg:x="106946" fg:w="90"/><text x="20.5352%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.01%)</title><rect x="20.3417%" y="229" width="0.0102%" height="15" fill="rgb(229,91,1)" fg:x="107244" fg:w="54"/><text x="20.5917%" y="239.50"></text></g><g><title>btrfs_search_slot (127 samples, 0.02%)</title><rect x="20.3290%" y="245" width="0.0241%" height="15" fill="rgb(207,101,30)" fg:x="107177" fg:w="127"/><text x="20.5790%" y="255.50"></text></g><g><title>btrfs_lookup_xattr (142 samples, 0.03%)</title><rect x="20.3283%" y="261" width="0.0269%" height="15" fill="rgb(223,82,49)" fg:x="107173" fg:w="142"/><text x="20.5783%" y="271.50"></text></g><g><title>btrfs_getxattr (177 samples, 0.03%)</title><rect x="20.3233%" y="277" width="0.0336%" height="15" fill="rgb(218,167,17)" fg:x="107147" fg:w="177"/><text x="20.5733%" y="287.50"></text></g><g><title>get_vfs_caps_from_disk (187 samples, 0.04%)</title><rect x="20.3222%" y="309" width="0.0355%" height="15" fill="rgb(208,103,14)" fg:x="107141" fg:w="187"/><text x="20.5722%" y="319.50"></text></g><g><title>__vfs_getxattr (184 samples, 0.03%)</title><rect x="20.3228%" y="293" width="0.0349%" height="15" fill="rgb(238,20,8)" fg:x="107144" fg:w="184"/><text x="20.5728%" y="303.50"></text></g><g><title>security_bprm_creds_from_file (199 samples, 0.04%)</title><rect x="20.3201%" y="341" width="0.0377%" height="15" fill="rgb(218,80,54)" fg:x="107130" fg:w="199"/><text x="20.5701%" y="351.50"></text></g><g><title>cap_bprm_creds_from_file (197 samples, 0.04%)</title><rect x="20.3205%" y="325" width="0.0374%" height="15" fill="rgb(240,144,17)" fg:x="107132" fg:w="197"/><text x="20.5705%" y="335.50"></text></g><g><title>begin_new_exec (234 samples, 0.04%)</title><rect x="20.3150%" y="357" width="0.0444%" height="15" fill="rgb(245,27,50)" fg:x="107103" fg:w="234"/><text x="20.5650%" y="367.50"></text></g><g><title>do_open_execat (80 samples, 0.02%)</title><rect x="20.3649%" y="341" width="0.0152%" height="15" fill="rgb(251,51,7)" fg:x="107366" fg:w="80"/><text x="20.6149%" y="351.50"></text></g><g><title>do_filp_open (80 samples, 0.02%)</title><rect x="20.3649%" y="325" width="0.0152%" height="15" fill="rgb(245,217,29)" fg:x="107366" fg:w="80"/><text x="20.6149%" y="335.50"></text></g><g><title>path_openat (80 samples, 0.02%)</title><rect x="20.3649%" y="309" width="0.0152%" height="15" fill="rgb(221,176,29)" fg:x="107366" fg:w="80"/><text x="20.6149%" y="319.50"></text></g><g><title>open_exec (89 samples, 0.02%)</title><rect x="20.3647%" y="357" width="0.0169%" height="15" fill="rgb(212,180,24)" fg:x="107365" fg:w="89"/><text x="20.6147%" y="367.50"></text></g><g><title>load_elf_binary (369 samples, 0.07%)</title><rect x="20.3119%" y="373" width="0.0700%" height="15" fill="rgb(254,24,2)" fg:x="107087" fg:w="369"/><text x="20.5619%" y="383.50"></text></g><g><title>security_bprm_check (59 samples, 0.01%)</title><rect x="20.3994%" y="373" width="0.0112%" height="15" fill="rgb(230,100,2)" fg:x="107548" fg:w="59"/><text x="20.6494%" y="383.50"></text></g><g><title>tomoyo_bprm_check_security (59 samples, 0.01%)</title><rect x="20.3994%" y="357" width="0.0112%" height="15" fill="rgb(219,142,25)" fg:x="107548" fg:w="59"/><text x="20.6494%" y="367.50"></text></g><g><title>tomoyo_find_next_domain (57 samples, 0.01%)</title><rect x="20.3998%" y="341" width="0.0108%" height="15" fill="rgb(240,73,43)" fg:x="107550" fg:w="57"/><text x="20.6498%" y="351.50"></text></g><g><title>bprm_execve (593 samples, 0.11%)</title><rect x="20.3023%" y="389" width="0.1125%" height="15" fill="rgb(214,114,15)" fg:x="107036" fg:w="593"/><text x="20.5523%" y="399.50"></text></g><g><title>__get_user_pages_remote (166 samples, 0.03%)</title><rect x="20.4155%" y="357" width="0.0315%" height="15" fill="rgb(207,130,4)" fg:x="107633" fg:w="166"/><text x="20.6655%" y="367.50"></text></g><g><title>__get_user_pages (164 samples, 0.03%)</title><rect x="20.4159%" y="341" width="0.0311%" height="15" fill="rgb(221,25,40)" fg:x="107635" fg:w="164"/><text x="20.6659%" y="351.50"></text></g><g><title>handle_mm_fault (139 samples, 0.03%)</title><rect x="20.4206%" y="325" width="0.0264%" height="15" fill="rgb(241,184,7)" fg:x="107660" fg:w="139"/><text x="20.6706%" y="335.50"></text></g><g><title>get_arg_page (171 samples, 0.03%)</title><rect x="20.4151%" y="373" width="0.0324%" height="15" fill="rgb(235,159,4)" fg:x="107631" fg:w="171"/><text x="20.6651%" y="383.50"></text></g><g><title>copy_string_kernel (176 samples, 0.03%)</title><rect x="20.4147%" y="389" width="0.0334%" height="15" fill="rgb(214,87,48)" fg:x="107629" fg:w="176"/><text x="20.6647%" y="399.50"></text></g><g><title>copy_strings.isra.0 (124 samples, 0.02%)</title><rect x="20.4481%" y="389" width="0.0235%" height="15" fill="rgb(246,198,24)" fg:x="107805" fg:w="124"/><text x="20.6981%" y="399.50"></text></g><g><title>do_execveat_common (994 samples, 0.19%)</title><rect x="20.2846%" y="405" width="0.1885%" height="15" fill="rgb(209,66,40)" fg:x="106943" fg:w="994"/><text x="20.5346%" y="415.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,003 samples, 0.19%)</title><rect x="20.2846%" y="453" width="0.1902%" height="15" fill="rgb(233,147,39)" fg:x="106943" fg:w="1003"/><text x="20.5346%" y="463.50"></text></g><g><title>do_syscall_64 (1,003 samples, 0.19%)</title><rect x="20.2846%" y="437" width="0.1902%" height="15" fill="rgb(231,145,52)" fg:x="106943" fg:w="1003"/><text x="20.5346%" y="447.50"></text></g><g><title>__x64_sys_execve (1,003 samples, 0.19%)</title><rect x="20.2846%" y="421" width="0.1902%" height="15" fill="rgb(206,20,26)" fg:x="106943" fg:w="1003"/><text x="20.5346%" y="431.50"></text></g><g><title>__GI_execve (1,006 samples, 0.19%)</title><rect x="20.2844%" y="469" width="0.1908%" height="15" fill="rgb(238,220,4)" fg:x="106942" fg:w="1006"/><text x="20.5344%" y="479.50"></text></g><g><title>[dash] (1,202 samples, 0.23%)</title><rect x="20.2520%" y="485" width="0.2280%" height="15" fill="rgb(252,195,42)" fg:x="106771" fg:w="1202"/><text x="20.5020%" y="495.50"></text></g><g><title>__GI___libc_free (67 samples, 0.01%)</title><rect x="20.4806%" y="485" width="0.0127%" height="15" fill="rgb(209,10,6)" fg:x="107976" fg:w="67"/><text x="20.7306%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (198 samples, 0.04%)</title><rect x="20.5043%" y="357" width="0.0376%" height="15" fill="rgb(229,3,52)" fg:x="108101" fg:w="198"/><text x="20.7543%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (193 samples, 0.04%)</title><rect x="20.5052%" y="341" width="0.0366%" height="15" fill="rgb(253,49,37)" fg:x="108106" fg:w="193"/><text x="20.7552%" y="351.50"></text></g><g><title>native_write_msr (192 samples, 0.04%)</title><rect x="20.5054%" y="325" width="0.0364%" height="15" fill="rgb(240,103,49)" fg:x="108107" fg:w="192"/><text x="20.7554%" y="335.50"></text></g><g><title>finish_task_switch (206 samples, 0.04%)</title><rect x="20.5039%" y="373" width="0.0391%" height="15" fill="rgb(250,182,30)" fg:x="108099" fg:w="206"/><text x="20.7539%" y="383.50"></text></g><g><title>schedule (224 samples, 0.04%)</title><rect x="20.5026%" y="405" width="0.0425%" height="15" fill="rgb(248,8,30)" fg:x="108092" fg:w="224"/><text x="20.7526%" y="415.50"></text></g><g><title>__schedule (224 samples, 0.04%)</title><rect x="20.5026%" y="389" width="0.0425%" height="15" fill="rgb(237,120,30)" fg:x="108092" fg:w="224"/><text x="20.7526%" y="399.50"></text></g><g><title>do_syscall_64 (272 samples, 0.05%)</title><rect x="20.5011%" y="453" width="0.0516%" height="15" fill="rgb(221,146,34)" fg:x="108084" fg:w="272"/><text x="20.7511%" y="463.50"></text></g><g><title>kernel_wait4 (267 samples, 0.05%)</title><rect x="20.5020%" y="437" width="0.0506%" height="15" fill="rgb(242,55,13)" fg:x="108089" fg:w="267"/><text x="20.7520%" y="447.50"></text></g><g><title>do_wait (267 samples, 0.05%)</title><rect x="20.5020%" y="421" width="0.0506%" height="15" fill="rgb(242,112,31)" fg:x="108089" fg:w="267"/><text x="20.7520%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (283 samples, 0.05%)</title><rect x="20.5011%" y="469" width="0.0537%" height="15" fill="rgb(249,192,27)" fg:x="108084" fg:w="283"/><text x="20.7511%" y="479.50"></text></g><g><title>__GI___wait4 (291 samples, 0.06%)</title><rect x="20.5005%" y="485" width="0.0552%" height="15" fill="rgb(208,204,44)" fg:x="108081" fg:w="291"/><text x="20.7505%" y="495.50"></text></g><g><title>handle_mm_fault (163 samples, 0.03%)</title><rect x="20.5828%" y="405" width="0.0309%" height="15" fill="rgb(208,93,54)" fg:x="108515" fg:w="163"/><text x="20.8328%" y="415.50"></text></g><g><title>wp_page_copy (121 samples, 0.02%)</title><rect x="20.5908%" y="389" width="0.0230%" height="15" fill="rgb(242,1,31)" fg:x="108557" fg:w="121"/><text x="20.8408%" y="399.50"></text></g><g><title>exc_page_fault (196 samples, 0.04%)</title><rect x="20.5771%" y="437" width="0.0372%" height="15" fill="rgb(241,83,25)" fg:x="108485" fg:w="196"/><text x="20.8271%" y="447.50"></text></g><g><title>do_user_addr_fault (196 samples, 0.04%)</title><rect x="20.5771%" y="421" width="0.0372%" height="15" fill="rgb(205,169,50)" fg:x="108485" fg:w="196"/><text x="20.8271%" y="431.50"></text></g><g><title>asm_exc_page_fault (198 samples, 0.04%)</title><rect x="20.5769%" y="453" width="0.0376%" height="15" fill="rgb(239,186,37)" fg:x="108484" fg:w="198"/><text x="20.8269%" y="463.50"></text></g><g><title>_int_free (320 samples, 0.06%)</title><rect x="20.5587%" y="485" width="0.0607%" height="15" fill="rgb(205,221,10)" fg:x="108388" fg:w="320"/><text x="20.8087%" y="495.50"></text></g><g><title>tcache_put (275 samples, 0.05%)</title><rect x="20.5672%" y="469" width="0.0522%" height="15" fill="rgb(218,196,15)" fg:x="108433" fg:w="275"/><text x="20.8172%" y="479.50"></text></g><g><title>[dash] (2,055 samples, 0.39%)</title><rect x="20.2482%" y="501" width="0.3898%" height="15" fill="rgb(218,196,35)" fg:x="106751" fg:w="2055"/><text x="20.4982%" y="511.50"></text></g><g><title>asm_exc_page_fault (77 samples, 0.01%)</title><rect x="20.6420%" y="485" width="0.0146%" height="15" fill="rgb(233,63,24)" fg:x="108827" fg:w="77"/><text x="20.8920%" y="495.50"></text></g><g><title>exc_page_fault (77 samples, 0.01%)</title><rect x="20.6420%" y="469" width="0.0146%" height="15" fill="rgb(225,8,4)" fg:x="108827" fg:w="77"/><text x="20.8920%" y="479.50"></text></g><g><title>do_user_addr_fault (76 samples, 0.01%)</title><rect x="20.6422%" y="453" width="0.0144%" height="15" fill="rgb(234,105,35)" fg:x="108828" fg:w="76"/><text x="20.8922%" y="463.50"></text></g><g><title>handle_mm_fault (64 samples, 0.01%)</title><rect x="20.6444%" y="437" width="0.0121%" height="15" fill="rgb(236,21,32)" fg:x="108840" fg:w="64"/><text x="20.8944%" y="447.50"></text></g><g><title>filemap_map_pages (59 samples, 0.01%)</title><rect x="20.6454%" y="421" width="0.0112%" height="15" fill="rgb(228,109,6)" fg:x="108845" fg:w="59"/><text x="20.8954%" y="431.50"></text></g><g><title>__longjmp_chk (87 samples, 0.02%)</title><rect x="20.6408%" y="501" width="0.0165%" height="15" fill="rgb(229,215,31)" fg:x="108821" fg:w="87"/><text x="20.8908%" y="511.50"></text></g><g><title>[dash] (2,218 samples, 0.42%)</title><rect x="20.2444%" y="517" width="0.4207%" height="15" fill="rgb(221,52,54)" fg:x="106731" fg:w="2218"/><text x="20.4944%" y="527.50"></text></g><g><title>filemap_map_pages (84 samples, 0.02%)</title><rect x="20.6911%" y="421" width="0.0159%" height="15" fill="rgb(252,129,43)" fg:x="109086" fg:w="84"/><text x="20.9411%" y="431.50"></text></g><g><title>exc_page_fault (133 samples, 0.03%)</title><rect x="20.6856%" y="469" width="0.0252%" height="15" fill="rgb(248,183,27)" fg:x="109057" fg:w="133"/><text x="20.9356%" y="479.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.03%)</title><rect x="20.6858%" y="453" width="0.0250%" height="15" fill="rgb(250,0,22)" fg:x="109058" fg:w="132"/><text x="20.9358%" y="463.50"></text></g><g><title>handle_mm_fault (119 samples, 0.02%)</title><rect x="20.6883%" y="437" width="0.0226%" height="15" fill="rgb(213,166,10)" fg:x="109071" fg:w="119"/><text x="20.9383%" y="447.50"></text></g><g><title>asm_exc_page_fault (135 samples, 0.03%)</title><rect x="20.6856%" y="485" width="0.0256%" height="15" fill="rgb(207,163,36)" fg:x="109057" fg:w="135"/><text x="20.9356%" y="495.50"></text></g><g><title>memcg_slab_post_alloc_hook (58 samples, 0.01%)</title><rect x="20.8123%" y="341" width="0.0110%" height="15" fill="rgb(208,122,22)" fg:x="109725" fg:w="58"/><text x="21.0623%" y="351.50"></text></g><g><title>kmem_cache_alloc (153 samples, 0.03%)</title><rect x="20.8059%" y="357" width="0.0290%" height="15" fill="rgb(207,104,49)" fg:x="109691" fg:w="153"/><text x="21.0559%" y="367.50"></text></g><g><title>anon_vma_clone (258 samples, 0.05%)</title><rect x="20.7875%" y="373" width="0.0489%" height="15" fill="rgb(248,211,50)" fg:x="109594" fg:w="258"/><text x="21.0375%" y="383.50"></text></g><g><title>kmem_cache_alloc (134 samples, 0.03%)</title><rect x="20.8381%" y="373" width="0.0254%" height="15" fill="rgb(217,13,45)" fg:x="109861" fg:w="134"/><text x="21.0881%" y="383.50"></text></g><g><title>anon_vma_fork (422 samples, 0.08%)</title><rect x="20.7848%" y="389" width="0.0800%" height="15" fill="rgb(211,216,49)" fg:x="109580" fg:w="422"/><text x="21.0348%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (53 samples, 0.01%)</title><rect x="20.8886%" y="357" width="0.0101%" height="15" fill="rgb(221,58,53)" fg:x="110127" fg:w="53"/><text x="21.1386%" y="367.50"></text></g><g><title>__pmd_alloc (60 samples, 0.01%)</title><rect x="20.8884%" y="373" width="0.0114%" height="15" fill="rgb(220,112,41)" fg:x="110126" fg:w="60"/><text x="21.1384%" y="383.50"></text></g><g><title>__alloc_pages_nodemask (75 samples, 0.01%)</title><rect x="20.9018%" y="341" width="0.0142%" height="15" fill="rgb(236,38,28)" fg:x="110197" fg:w="75"/><text x="21.1518%" y="351.50"></text></g><g><title>get_page_from_freelist (61 samples, 0.01%)</title><rect x="20.9045%" y="325" width="0.0116%" height="15" fill="rgb(227,195,22)" fg:x="110211" fg:w="61"/><text x="21.1545%" y="335.50"></text></g><g><title>__pte_alloc (89 samples, 0.02%)</title><rect x="20.8998%" y="373" width="0.0169%" height="15" fill="rgb(214,55,33)" fg:x="110186" fg:w="89"/><text x="21.1498%" y="383.50"></text></g><g><title>pte_alloc_one (80 samples, 0.02%)</title><rect x="20.9015%" y="357" width="0.0152%" height="15" fill="rgb(248,80,13)" fg:x="110195" fg:w="80"/><text x="21.1515%" y="367.50"></text></g><g><title>__alloc_pages_nodemask (54 samples, 0.01%)</title><rect x="20.9183%" y="341" width="0.0102%" height="15" fill="rgb(238,52,6)" fg:x="110284" fg:w="54"/><text x="21.1683%" y="351.50"></text></g><g><title>__pud_alloc (67 samples, 0.01%)</title><rect x="20.9166%" y="373" width="0.0127%" height="15" fill="rgb(224,198,47)" fg:x="110275" fg:w="67"/><text x="21.1666%" y="383.50"></text></g><g><title>get_zeroed_page (59 samples, 0.01%)</title><rect x="20.9182%" y="357" width="0.0112%" height="15" fill="rgb(233,171,20)" fg:x="110283" fg:w="59"/><text x="21.1682%" y="367.50"></text></g><g><title>copy_page_range (357 samples, 0.07%)</title><rect x="20.8649%" y="389" width="0.0677%" height="15" fill="rgb(241,30,25)" fg:x="110002" fg:w="357"/><text x="21.1149%" y="399.50"></text></g><g><title>memcg_slab_post_alloc_hook (59 samples, 0.01%)</title><rect x="20.9800%" y="357" width="0.0112%" height="15" fill="rgb(207,171,38)" fg:x="110609" fg:w="59"/><text x="21.2300%" y="367.50"></text></g><g><title>vm_area_dup (269 samples, 0.05%)</title><rect x="20.9521%" y="389" width="0.0510%" height="15" fill="rgb(234,70,1)" fg:x="110462" fg:w="269"/><text x="21.2021%" y="399.50"></text></g><g><title>kmem_cache_alloc (192 samples, 0.04%)</title><rect x="20.9667%" y="373" width="0.0364%" height="15" fill="rgb(232,178,18)" fg:x="110539" fg:w="192"/><text x="21.2167%" y="383.50"></text></g><g><title>dup_mm (1,287 samples, 0.24%)</title><rect x="20.7620%" y="405" width="0.2441%" height="15" fill="rgb(241,78,40)" fg:x="109460" fg:w="1287"/><text x="21.0120%" y="415.50"></text></g><g><title>kmem_cache_alloc_node (56 samples, 0.01%)</title><rect x="21.0132%" y="405" width="0.0106%" height="15" fill="rgb(222,35,25)" fg:x="110784" fg:w="56"/><text x="21.2632%" y="415.50"></text></g><g><title>allocate_fake_cpuc (59 samples, 0.01%)</title><rect x="21.0585%" y="309" width="0.0112%" height="15" fill="rgb(207,92,16)" fg:x="111023" fg:w="59"/><text x="21.3085%" y="319.50"></text></g><g><title>perf_try_init_event (105 samples, 0.02%)</title><rect x="21.0579%" y="341" width="0.0199%" height="15" fill="rgb(216,59,51)" fg:x="111020" fg:w="105"/><text x="21.3079%" y="351.50"></text></g><g><title>x86_pmu_event_init (103 samples, 0.02%)</title><rect x="21.0583%" y="325" width="0.0195%" height="15" fill="rgb(213,80,28)" fg:x="111022" fg:w="103"/><text x="21.3083%" y="335.50"></text></g><g><title>perf_event_alloc (189 samples, 0.04%)</title><rect x="21.0422%" y="357" width="0.0358%" height="15" fill="rgb(220,93,7)" fg:x="110937" fg:w="189"/><text x="21.2922%" y="367.50"></text></g><g><title>inherit_task_group.isra.0 (248 samples, 0.05%)</title><rect x="21.0316%" y="389" width="0.0470%" height="15" fill="rgb(225,24,44)" fg:x="110881" fg:w="248"/><text x="21.2816%" y="399.50"></text></g><g><title>inherit_event.constprop.0 (233 samples, 0.04%)</title><rect x="21.0344%" y="373" width="0.0442%" height="15" fill="rgb(243,74,40)" fg:x="110896" fg:w="233"/><text x="21.2844%" y="383.50"></text></g><g><title>perf_event_init_task (265 samples, 0.05%)</title><rect x="21.0301%" y="405" width="0.0503%" height="15" fill="rgb(228,39,7)" fg:x="110873" fg:w="265"/><text x="21.2801%" y="415.50"></text></g><g><title>copy_process (1,977 samples, 0.37%)</title><rect x="20.7125%" y="421" width="0.3750%" height="15" fill="rgb(227,79,8)" fg:x="109199" fg:w="1977"/><text x="20.9625%" y="431.50"></text></g><g><title>__do_sys_clone (2,032 samples, 0.39%)</title><rect x="20.7116%" y="453" width="0.3854%" height="15" fill="rgb(236,58,11)" fg:x="109194" fg:w="2032"/><text x="20.9616%" y="463.50"></text></g><g><title>kernel_clone (2,028 samples, 0.38%)</title><rect x="20.7124%" y="437" width="0.3847%" height="15" fill="rgb(249,63,35)" fg:x="109198" fg:w="2028"/><text x="20.9624%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,034 samples, 0.39%)</title><rect x="20.7114%" y="485" width="0.3858%" height="15" fill="rgb(252,114,16)" fg:x="109193" fg:w="2034"/><text x="20.9614%" y="495.50"></text></g><g><title>do_syscall_64 (2,034 samples, 0.39%)</title><rect x="20.7114%" y="469" width="0.3858%" height="15" fill="rgb(254,151,24)" fg:x="109193" fg:w="2034"/><text x="20.9614%" y="479.50"></text></g><g><title>exc_page_fault (90 samples, 0.02%)</title><rect x="21.1120%" y="421" width="0.0171%" height="15" fill="rgb(253,54,39)" fg:x="111305" fg:w="90"/><text x="21.3620%" y="431.50"></text></g><g><title>do_user_addr_fault (90 samples, 0.02%)</title><rect x="21.1120%" y="405" width="0.0171%" height="15" fill="rgb(243,25,45)" fg:x="111305" fg:w="90"/><text x="21.3620%" y="415.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="21.1164%" y="389" width="0.0127%" height="15" fill="rgb(234,134,9)" fg:x="111328" fg:w="67"/><text x="21.3664%" y="399.50"></text></g><g><title>asm_exc_page_fault (117 samples, 0.02%)</title><rect x="21.1071%" y="437" width="0.0222%" height="15" fill="rgb(227,166,31)" fg:x="111279" fg:w="117"/><text x="21.3571%" y="447.50"></text></g><g><title>__put_user_nocheck_4 (125 samples, 0.02%)</title><rect x="21.1057%" y="453" width="0.0237%" height="15" fill="rgb(245,143,41)" fg:x="111272" fg:w="125"/><text x="21.3557%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (3,080 samples, 0.58%)</title><rect x="21.1596%" y="437" width="0.5842%" height="15" fill="rgb(238,181,32)" fg:x="111556" fg:w="3080"/><text x="21.4096%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,991 samples, 0.57%)</title><rect x="21.1765%" y="421" width="0.5673%" height="15" fill="rgb(224,113,18)" fg:x="111645" fg:w="2991"/><text x="21.4265%" y="431.50"></text></g><g><title>native_write_msr (2,973 samples, 0.56%)</title><rect x="21.1799%" y="405" width="0.5639%" height="15" fill="rgb(240,229,28)" fg:x="111663" fg:w="2973"/><text x="21.4299%" y="415.50"></text></g><g><title>schedule_tail (3,414 samples, 0.65%)</title><rect x="21.1052%" y="469" width="0.6476%" height="15" fill="rgb(250,185,3)" fg:x="111269" fg:w="3414"/><text x="21.3552%" y="479.50"></text></g><g><title>finish_task_switch (3,268 samples, 0.62%)</title><rect x="21.1329%" y="453" width="0.6199%" height="15" fill="rgb(212,59,25)" fg:x="111415" fg:w="3268"/><text x="21.3829%" y="463.50"></text></g><g><title>ret_from_fork (3,440 samples, 0.65%)</title><rect x="21.1029%" y="485" width="0.6525%" height="15" fill="rgb(221,87,20)" fg:x="111257" fg:w="3440"/><text x="21.3529%" y="495.50"></text></g><g><title>arch_fork (5,661 samples, 1.07%)</title><rect x="20.6820%" y="501" width="1.0738%" height="15" fill="rgb(213,74,28)" fg:x="109038" fg:w="5661"/><text x="20.9320%" y="511.50"></text></g><g><title>exc_page_fault (75 samples, 0.01%)</title><rect x="21.7558%" y="485" width="0.0142%" height="15" fill="rgb(224,132,34)" fg:x="114699" fg:w="75"/><text x="22.0058%" y="495.50"></text></g><g><title>do_user_addr_fault (75 samples, 0.01%)</title><rect x="21.7558%" y="469" width="0.0142%" height="15" fill="rgb(222,101,24)" fg:x="114699" fg:w="75"/><text x="22.0058%" y="479.50"></text></g><g><title>handle_mm_fault (65 samples, 0.01%)</title><rect x="21.7577%" y="453" width="0.0123%" height="15" fill="rgb(254,142,4)" fg:x="114709" fg:w="65"/><text x="22.0077%" y="463.50"></text></g><g><title>asm_exc_page_fault (78 samples, 0.01%)</title><rect x="21.7558%" y="501" width="0.0148%" height="15" fill="rgb(230,229,49)" fg:x="114699" fg:w="78"/><text x="22.0058%" y="511.50"></text></g><g><title>__libc_fork (5,799 samples, 1.10%)</title><rect x="20.6723%" y="517" width="1.0999%" height="15" fill="rgb(238,70,47)" fg:x="108987" fg:w="5799"/><text x="20.9223%" y="527.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="21.7726%" y="517" width="0.0108%" height="15" fill="rgb(231,160,17)" fg:x="114788" fg:w="57"/><text x="22.0226%" y="527.50"></text></g><g><title>exc_page_fault (56 samples, 0.01%)</title><rect x="21.7728%" y="501" width="0.0106%" height="15" fill="rgb(218,68,53)" fg:x="114789" fg:w="56"/><text x="22.0228%" y="511.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="21.7728%" y="485" width="0.0106%" height="15" fill="rgb(236,111,10)" fg:x="114789" fg:w="56"/><text x="22.0228%" y="495.50"></text></g><g><title>[dash] (8,136 samples, 1.54%)</title><rect x="20.2416%" y="533" width="1.5432%" height="15" fill="rgb(224,34,41)" fg:x="106716" fg:w="8136"/><text x="20.4916%" y="543.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="21.7882%" y="517" width="0.0131%" height="15" fill="rgb(241,118,19)" fg:x="114870" fg:w="69"/><text x="22.0382%" y="527.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="21.7886%" y="501" width="0.0127%" height="15" fill="rgb(238,129,25)" fg:x="114872" fg:w="67"/><text x="22.0386%" y="511.50"></text></g><g><title>do_user_addr_fault (66 samples, 0.01%)</title><rect x="21.7888%" y="485" width="0.0125%" height="15" fill="rgb(238,22,31)" fg:x="114873" fg:w="66"/><text x="22.0388%" y="495.50"></text></g><g><title>handle_mm_fault (65 samples, 0.01%)</title><rect x="21.7890%" y="469" width="0.0123%" height="15" fill="rgb(222,174,48)" fg:x="114874" fg:w="65"/><text x="22.0390%" y="479.50"></text></g><g><title>__GI___close (120 samples, 0.02%)</title><rect x="21.7848%" y="533" width="0.0228%" height="15" fill="rgb(206,152,40)" fg:x="114852" fg:w="120"/><text x="22.0348%" y="543.50"></text></g><g><title>handle_mm_fault (84 samples, 0.02%)</title><rect x="21.8098%" y="469" width="0.0159%" height="15" fill="rgb(218,99,54)" fg:x="114984" fg:w="84"/><text x="22.0598%" y="479.50"></text></g><g><title>filemap_map_pages (80 samples, 0.02%)</title><rect x="21.8106%" y="453" width="0.0152%" height="15" fill="rgb(220,174,26)" fg:x="114988" fg:w="80"/><text x="22.0606%" y="463.50"></text></g><g><title>asm_exc_page_fault (92 samples, 0.02%)</title><rect x="21.8085%" y="517" width="0.0175%" height="15" fill="rgb(245,116,9)" fg:x="114977" fg:w="92"/><text x="22.0585%" y="527.50"></text></g><g><title>exc_page_fault (92 samples, 0.02%)</title><rect x="21.8085%" y="501" width="0.0175%" height="15" fill="rgb(209,72,35)" fg:x="114977" fg:w="92"/><text x="22.0585%" y="511.50"></text></g><g><title>do_user_addr_fault (92 samples, 0.02%)</title><rect x="21.8085%" y="485" width="0.0175%" height="15" fill="rgb(226,126,21)" fg:x="114977" fg:w="92"/><text x="22.0585%" y="495.50"></text></g><g><title>__GI___dup2 (140 samples, 0.03%)</title><rect x="21.8075%" y="533" width="0.0266%" height="15" fill="rgb(227,192,1)" fg:x="114972" fg:w="140"/><text x="22.0575%" y="543.50"></text></g><g><title>alloc_file_pseudo (85 samples, 0.02%)</title><rect x="21.8430%" y="437" width="0.0161%" height="15" fill="rgb(237,180,29)" fg:x="115159" fg:w="85"/><text x="22.0930%" y="447.50"></text></g><g><title>create_pipe_files (187 samples, 0.04%)</title><rect x="21.8385%" y="453" width="0.0355%" height="15" fill="rgb(230,197,35)" fg:x="115135" fg:w="187"/><text x="22.0885%" y="463.50"></text></g><g><title>do_syscall_64 (205 samples, 0.04%)</title><rect x="21.8352%" y="501" width="0.0389%" height="15" fill="rgb(246,193,31)" fg:x="115118" fg:w="205"/><text x="22.0852%" y="511.50"></text></g><g><title>__x64_sys_pipe (204 samples, 0.04%)</title><rect x="21.8354%" y="485" width="0.0387%" height="15" fill="rgb(241,36,4)" fg:x="115119" fg:w="204"/><text x="22.0854%" y="495.50"></text></g><g><title>do_pipe2 (204 samples, 0.04%)</title><rect x="21.8354%" y="469" width="0.0387%" height="15" fill="rgb(241,130,17)" fg:x="115119" fg:w="204"/><text x="22.0854%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (209 samples, 0.04%)</title><rect x="21.8347%" y="517" width="0.0396%" height="15" fill="rgb(206,137,32)" fg:x="115115" fg:w="209"/><text x="22.0847%" y="527.50"></text></g><g><title>__GI_pipe (214 samples, 0.04%)</title><rect x="21.8341%" y="533" width="0.0406%" height="15" fill="rgb(237,228,51)" fg:x="115112" fg:w="214"/><text x="22.0841%" y="543.50"></text></g><g><title>[dash] (8,631 samples, 1.64%)</title><rect x="20.2385%" y="549" width="1.6371%" height="15" fill="rgb(243,6,42)" fg:x="106700" fg:w="8631"/><text x="20.4885%" y="559.50"></text></g><g><title>__strcspn_sse42 (97 samples, 0.02%)</title><rect x="21.8775%" y="549" width="0.0184%" height="15" fill="rgb(251,74,28)" fg:x="115341" fg:w="97"/><text x="22.1275%" y="559.50"></text></g><g><title>[dash] (8,755 samples, 1.66%)</title><rect x="20.2368%" y="565" width="1.6606%" height="15" fill="rgb(218,20,49)" fg:x="106691" fg:w="8755"/><text x="20.4868%" y="575.50"></text></g><g><title>handle_mm_fault (58 samples, 0.01%)</title><rect x="21.9073%" y="517" width="0.0110%" height="15" fill="rgb(238,28,14)" fg:x="115498" fg:w="58"/><text x="22.1573%" y="527.50"></text></g><g><title>exc_page_fault (84 samples, 0.02%)</title><rect x="21.9026%" y="549" width="0.0159%" height="15" fill="rgb(229,40,46)" fg:x="115473" fg:w="84"/><text x="22.1526%" y="559.50"></text></g><g><title>do_user_addr_fault (82 samples, 0.02%)</title><rect x="21.9030%" y="533" width="0.0156%" height="15" fill="rgb(244,195,20)" fg:x="115475" fg:w="82"/><text x="22.1530%" y="543.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="21.9026%" y="565" width="0.0161%" height="15" fill="rgb(253,56,35)" fg:x="115473" fg:w="85"/><text x="22.1526%" y="575.50"></text></g><g><title>[dash] (8,918 samples, 1.69%)</title><rect x="20.2279%" y="581" width="1.6915%" height="15" fill="rgb(210,149,44)" fg:x="106644" fg:w="8918"/><text x="20.4779%" y="591.50"></text></g><g><title>[dash] (9,045 samples, 1.72%)</title><rect x="20.2224%" y="597" width="1.7156%" height="15" fill="rgb(240,135,12)" fg:x="106615" fg:w="9045"/><text x="20.4724%" y="607.50"></text></g><g><title>anon_vma_fork (61 samples, 0.01%)</title><rect x="21.9697%" y="469" width="0.0116%" height="15" fill="rgb(251,24,50)" fg:x="115827" fg:w="61"/><text x="22.2197%" y="479.50"></text></g><g><title>copy_page_range (72 samples, 0.01%)</title><rect x="21.9813%" y="469" width="0.0137%" height="15" fill="rgb(243,200,47)" fg:x="115888" fg:w="72"/><text x="22.2313%" y="479.50"></text></g><g><title>dup_mm (260 samples, 0.05%)</title><rect x="21.9644%" y="485" width="0.0493%" height="15" fill="rgb(224,166,26)" fg:x="115799" fg:w="260"/><text x="22.2144%" y="495.50"></text></g><g><title>vm_area_dup (65 samples, 0.01%)</title><rect x="22.0014%" y="469" width="0.0123%" height="15" fill="rgb(233,0,47)" fg:x="115994" fg:w="65"/><text x="22.2514%" y="479.50"></text></g><g><title>inherit_task_group.isra.0 (96 samples, 0.02%)</title><rect x="22.0228%" y="469" width="0.0182%" height="15" fill="rgb(253,80,5)" fg:x="116107" fg:w="96"/><text x="22.2728%" y="479.50"></text></g><g><title>inherit_event.constprop.0 (92 samples, 0.02%)</title><rect x="22.0236%" y="453" width="0.0175%" height="15" fill="rgb(214,133,25)" fg:x="116111" fg:w="92"/><text x="22.2736%" y="463.50"></text></g><g><title>perf_event_alloc (78 samples, 0.01%)</title><rect x="22.0262%" y="437" width="0.0148%" height="15" fill="rgb(209,27,14)" fg:x="116125" fg:w="78"/><text x="22.2762%" y="447.50"></text></g><g><title>perf_event_init_task (99 samples, 0.02%)</title><rect x="22.0226%" y="485" width="0.0188%" height="15" fill="rgb(219,102,51)" fg:x="116106" fg:w="99"/><text x="22.2726%" y="495.50"></text></g><g><title>copy_process (522 samples, 0.10%)</title><rect x="21.9462%" y="501" width="0.0990%" height="15" fill="rgb(237,18,16)" fg:x="115703" fg:w="522"/><text x="22.1962%" y="511.50"></text></g><g><title>do_syscall_64 (558 samples, 0.11%)</title><rect x="21.9462%" y="549" width="0.1058%" height="15" fill="rgb(241,85,17)" fg:x="115703" fg:w="558"/><text x="22.1962%" y="559.50"></text></g><g><title>__do_sys_clone (558 samples, 0.11%)</title><rect x="21.9462%" y="533" width="0.1058%" height="15" fill="rgb(236,90,42)" fg:x="115703" fg:w="558"/><text x="22.1962%" y="543.50"></text></g><g><title>kernel_clone (558 samples, 0.11%)</title><rect x="21.9462%" y="517" width="0.1058%" height="15" fill="rgb(249,57,21)" fg:x="115703" fg:w="558"/><text x="22.1962%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (559 samples, 0.11%)</title><rect x="21.9462%" y="565" width="0.1060%" height="15" fill="rgb(243,12,36)" fg:x="115703" fg:w="559"/><text x="22.1962%" y="575.50"></text></g><g><title>asm_exc_page_fault (107 samples, 0.02%)</title><rect x="22.0545%" y="517" width="0.0203%" height="15" fill="rgb(253,128,47)" fg:x="116274" fg:w="107"/><text x="22.3045%" y="527.50"></text></g><g><title>exc_page_fault (102 samples, 0.02%)</title><rect x="22.0555%" y="501" width="0.0193%" height="15" fill="rgb(207,33,20)" fg:x="116279" fg:w="102"/><text x="22.3055%" y="511.50"></text></g><g><title>do_user_addr_fault (102 samples, 0.02%)</title><rect x="22.0555%" y="485" width="0.0193%" height="15" fill="rgb(233,215,35)" fg:x="116279" fg:w="102"/><text x="22.3055%" y="495.50"></text></g><g><title>handle_mm_fault (96 samples, 0.02%)</title><rect x="22.0566%" y="469" width="0.0182%" height="15" fill="rgb(249,188,52)" fg:x="116285" fg:w="96"/><text x="22.3066%" y="479.50"></text></g><g><title>wp_page_copy (83 samples, 0.02%)</title><rect x="22.0591%" y="453" width="0.0157%" height="15" fill="rgb(225,12,32)" fg:x="116298" fg:w="83"/><text x="22.3091%" y="463.50"></text></g><g><title>__put_user_nocheck_4 (112 samples, 0.02%)</title><rect x="22.0537%" y="533" width="0.0212%" height="15" fill="rgb(247,98,14)" fg:x="116270" fg:w="112"/><text x="22.3037%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (1,174 samples, 0.22%)</title><rect x="22.0917%" y="517" width="0.2227%" height="15" fill="rgb(247,219,48)" fg:x="116470" fg:w="1174"/><text x="22.3417%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,129 samples, 0.21%)</title><rect x="22.1002%" y="501" width="0.2141%" height="15" fill="rgb(253,60,48)" fg:x="116515" fg:w="1129"/><text x="22.3502%" y="511.50"></text></g><g><title>native_write_msr (1,122 samples, 0.21%)</title><rect x="22.1015%" y="485" width="0.2128%" height="15" fill="rgb(245,15,52)" fg:x="116522" fg:w="1122"/><text x="22.3515%" y="495.50"></text></g><g><title>schedule_tail (1,397 samples, 0.26%)</title><rect x="22.0537%" y="549" width="0.2650%" height="15" fill="rgb(220,133,28)" fg:x="116270" fg:w="1397"/><text x="22.3037%" y="559.50"></text></g><g><title>finish_task_switch (1,283 samples, 0.24%)</title><rect x="22.0754%" y="533" width="0.2434%" height="15" fill="rgb(217,180,4)" fg:x="116384" fg:w="1283"/><text x="22.3254%" y="543.50"></text></g><g><title>ret_from_fork (1,403 samples, 0.27%)</title><rect x="22.0536%" y="565" width="0.2661%" height="15" fill="rgb(251,24,1)" fg:x="116269" fg:w="1403"/><text x="22.3036%" y="575.50"></text></g><g><title>arch_fork (2,002 samples, 0.38%)</title><rect x="21.9401%" y="581" width="0.3797%" height="15" fill="rgb(212,185,49)" fg:x="115671" fg:w="2002"/><text x="22.1901%" y="591.50"></text></g><g><title>__libc_fork (2,039 samples, 0.39%)</title><rect x="21.9382%" y="597" width="0.3868%" height="15" fill="rgb(215,175,22)" fg:x="115661" fg:w="2039"/><text x="22.1882%" y="607.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="22.3254%" y="581" width="0.0110%" height="15" fill="rgb(250,205,14)" fg:x="117702" fg:w="58"/><text x="22.5754%" y="591.50"></text></g><g><title>do_user_addr_fault (57 samples, 0.01%)</title><rect x="22.3256%" y="565" width="0.0108%" height="15" fill="rgb(225,211,22)" fg:x="117703" fg:w="57"/><text x="22.5756%" y="575.50"></text></g><g><title>asm_exc_page_fault (59 samples, 0.01%)</title><rect x="22.3254%" y="597" width="0.0112%" height="15" fill="rgb(251,179,42)" fg:x="117702" fg:w="59"/><text x="22.5754%" y="607.50"></text></g><g><title>[dash] (11,188 samples, 2.12%)</title><rect x="20.2160%" y="613" width="2.1221%" height="15" fill="rgb(208,216,51)" fg:x="106581" fg:w="11188"/><text x="20.4660%" y="623.50">[..</text></g><g><title>[dash] (11,349 samples, 2.15%)</title><rect x="20.2127%" y="629" width="2.1526%" height="15" fill="rgb(235,36,11)" fg:x="106564" fg:w="11349"/><text x="20.4627%" y="639.50">[..</text></g><g><title>__perf_event_task_sched_in (134 samples, 0.03%)</title><rect x="22.3842%" y="469" width="0.0254%" height="15" fill="rgb(213,189,28)" fg:x="118012" fg:w="134"/><text x="22.6342%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (133 samples, 0.03%)</title><rect x="22.3844%" y="453" width="0.0252%" height="15" fill="rgb(227,203,42)" fg:x="118013" fg:w="133"/><text x="22.6344%" y="463.50"></text></g><g><title>native_write_msr (133 samples, 0.03%)</title><rect x="22.3844%" y="437" width="0.0252%" height="15" fill="rgb(244,72,36)" fg:x="118013" fg:w="133"/><text x="22.6344%" y="447.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="22.3828%" y="485" width="0.0273%" height="15" fill="rgb(213,53,17)" fg:x="118005" fg:w="144"/><text x="22.6328%" y="495.50"></text></g><g><title>schedule (170 samples, 0.03%)</title><rect x="22.3800%" y="517" width="0.0322%" height="15" fill="rgb(207,167,3)" fg:x="117990" fg:w="170"/><text x="22.6300%" y="527.50"></text></g><g><title>__schedule (169 samples, 0.03%)</title><rect x="22.3802%" y="501" width="0.0321%" height="15" fill="rgb(216,98,30)" fg:x="117991" fg:w="169"/><text x="22.6302%" y="511.50"></text></g><g><title>new_sync_read (192 samples, 0.04%)</title><rect x="22.3771%" y="549" width="0.0364%" height="15" fill="rgb(236,123,15)" fg:x="117975" fg:w="192"/><text x="22.6271%" y="559.50"></text></g><g><title>pipe_read (191 samples, 0.04%)</title><rect x="22.3773%" y="533" width="0.0362%" height="15" fill="rgb(248,81,50)" fg:x="117976" fg:w="191"/><text x="22.6273%" y="543.50"></text></g><g><title>do_syscall_64 (206 samples, 0.04%)</title><rect x="22.3752%" y="597" width="0.0391%" height="15" fill="rgb(214,120,4)" fg:x="117965" fg:w="206"/><text x="22.6252%" y="607.50"></text></g><g><title>ksys_read (205 samples, 0.04%)</title><rect x="22.3754%" y="581" width="0.0389%" height="15" fill="rgb(208,179,34)" fg:x="117966" fg:w="205"/><text x="22.6254%" y="591.50"></text></g><g><title>vfs_read (201 samples, 0.04%)</title><rect x="22.3762%" y="565" width="0.0381%" height="15" fill="rgb(227,140,7)" fg:x="117970" fg:w="201"/><text x="22.6262%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (228 samples, 0.04%)</title><rect x="22.3749%" y="613" width="0.0432%" height="15" fill="rgb(214,22,6)" fg:x="117963" fg:w="228"/><text x="22.6249%" y="623.50"></text></g><g><title>__GI___libc_read (245 samples, 0.05%)</title><rect x="22.3745%" y="629" width="0.0465%" height="15" fill="rgb(207,137,27)" fg:x="117961" fg:w="245"/><text x="22.6245%" y="639.50"></text></g><g><title>[dash] (11,723 samples, 2.22%)</title><rect x="20.2086%" y="645" width="2.2236%" height="15" fill="rgb(210,8,46)" fg:x="106542" fg:w="11723"/><text x="20.4586%" y="655.50">[..</text></g><g><title>[dash] (11,742 samples, 2.23%)</title><rect x="20.2076%" y="661" width="2.2272%" height="15" fill="rgb(240,16,54)" fg:x="106537" fg:w="11742"/><text x="20.4576%" y="671.50">[..</text></g><g><title>[dash] (11,772 samples, 2.23%)</title><rect x="20.2044%" y="677" width="2.2329%" height="15" fill="rgb(211,209,29)" fg:x="106520" fg:w="11772"/><text x="20.4544%" y="687.50">[..</text></g><g><title>[dash] (11,782 samples, 2.23%)</title><rect x="20.2038%" y="693" width="2.2348%" height="15" fill="rgb(226,228,24)" fg:x="106517" fg:w="11782"/><text x="20.4538%" y="703.50">[..</text></g><g><title>[dash] (11,810 samples, 2.24%)</title><rect x="20.2031%" y="709" width="2.2401%" height="15" fill="rgb(222,84,9)" fg:x="106513" fg:w="11810"/><text x="20.4531%" y="719.50">[..</text></g><g><title>[dash] (11,817 samples, 2.24%)</title><rect x="20.2021%" y="725" width="2.2414%" height="15" fill="rgb(234,203,30)" fg:x="106508" fg:w="11817"/><text x="20.4521%" y="735.50">[..</text></g><g><title>[dash] (11,884 samples, 2.25%)</title><rect x="20.2019%" y="741" width="2.2541%" height="15" fill="rgb(238,109,14)" fg:x="106507" fg:w="11884"/><text x="20.4519%" y="751.50">[..</text></g><g><title>[dash] (11,926 samples, 2.26%)</title><rect x="20.1987%" y="789" width="2.2621%" height="15" fill="rgb(233,206,34)" fg:x="106490" fg:w="11926"/><text x="20.4487%" y="799.50">[..</text></g><g><title>__libc_start_main (11,915 samples, 2.26%)</title><rect x="20.2008%" y="773" width="2.2600%" height="15" fill="rgb(220,167,47)" fg:x="106501" fg:w="11915"/><text x="20.4508%" y="783.50">_..</text></g><g><title>[dash] (11,915 samples, 2.26%)</title><rect x="20.2008%" y="757" width="2.2600%" height="15" fill="rgb(238,105,10)" fg:x="106501" fg:w="11915"/><text x="20.4508%" y="767.50">[..</text></g><g><title>[ld-2.31.so] (100 samples, 0.02%)</title><rect x="22.4678%" y="725" width="0.0190%" height="15" fill="rgb(213,227,17)" fg:x="118453" fg:w="100"/><text x="22.7178%" y="735.50"></text></g><g><title>_dl_start_final (109 samples, 0.02%)</title><rect x="22.4678%" y="757" width="0.0207%" height="15" fill="rgb(217,132,38)" fg:x="118453" fg:w="109"/><text x="22.7178%" y="767.50"></text></g><g><title>_dl_sysdep_start (109 samples, 0.02%)</title><rect x="22.4678%" y="741" width="0.0207%" height="15" fill="rgb(242,146,4)" fg:x="118453" fg:w="109"/><text x="22.7178%" y="751.50"></text></g><g><title>_dl_start (113 samples, 0.02%)</title><rect x="22.4676%" y="773" width="0.0214%" height="15" fill="rgb(212,61,9)" fg:x="118452" fg:w="113"/><text x="22.7176%" y="783.50"></text></g><g><title>_start (114 samples, 0.02%)</title><rect x="22.4676%" y="789" width="0.0216%" height="15" fill="rgb(247,126,22)" fg:x="118452" fg:w="114"/><text x="22.7176%" y="799.50"></text></g><g><title>asm_exc_page_fault (386 samples, 0.07%)</title><rect x="22.4892%" y="789" width="0.0732%" height="15" fill="rgb(220,196,2)" fg:x="118566" fg:w="386"/><text x="22.7392%" y="799.50"></text></g><g><title>lru_add_drain_cpu (68 samples, 0.01%)</title><rect x="22.5769%" y="629" width="0.0129%" height="15" fill="rgb(208,46,4)" fg:x="119028" fg:w="68"/><text x="22.8269%" y="639.50"></text></g><g><title>pagevec_lru_move_fn (63 samples, 0.01%)</title><rect x="22.5778%" y="613" width="0.0119%" height="15" fill="rgb(252,104,46)" fg:x="119033" fg:w="63"/><text x="22.8278%" y="623.50"></text></g><g><title>lru_add_drain (70 samples, 0.01%)</title><rect x="22.5767%" y="645" width="0.0133%" height="15" fill="rgb(237,152,48)" fg:x="119027" fg:w="70"/><text x="22.8267%" y="655.50"></text></g><g><title>page_remove_rmap (76 samples, 0.01%)</title><rect x="22.6393%" y="613" width="0.0144%" height="15" fill="rgb(221,59,37)" fg:x="119357" fg:w="76"/><text x="22.8893%" y="623.50"></text></g><g><title>unmap_page_range (325 samples, 0.06%)</title><rect x="22.5972%" y="629" width="0.0616%" height="15" fill="rgb(209,202,51)" fg:x="119135" fg:w="325"/><text x="22.8472%" y="639.50"></text></g><g><title>exit_mmap (473 samples, 0.09%)</title><rect x="22.5706%" y="661" width="0.0897%" height="15" fill="rgb(228,81,30)" fg:x="118995" fg:w="473"/><text x="22.8206%" y="671.50"></text></g><g><title>unmap_vmas (342 samples, 0.06%)</title><rect x="22.5955%" y="645" width="0.0649%" height="15" fill="rgb(227,42,39)" fg:x="119126" fg:w="342"/><text x="22.8455%" y="655.50"></text></g><g><title>mmput (486 samples, 0.09%)</title><rect x="22.5689%" y="677" width="0.0922%" height="15" fill="rgb(221,26,2)" fg:x="118986" fg:w="486"/><text x="22.8189%" y="687.50"></text></g><g><title>begin_new_exec (513 samples, 0.10%)</title><rect x="22.5676%" y="693" width="0.0973%" height="15" fill="rgb(254,61,31)" fg:x="118979" fg:w="513"/><text x="22.8176%" y="703.50"></text></g><g><title>__x64_sys_execve (516 samples, 0.10%)</title><rect x="22.5674%" y="757" width="0.0979%" height="15" fill="rgb(222,173,38)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="767.50"></text></g><g><title>do_execveat_common (516 samples, 0.10%)</title><rect x="22.5674%" y="741" width="0.0979%" height="15" fill="rgb(218,50,12)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="751.50"></text></g><g><title>bprm_execve (516 samples, 0.10%)</title><rect x="22.5674%" y="725" width="0.0979%" height="15" fill="rgb(223,88,40)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="735.50"></text></g><g><title>load_elf_binary (516 samples, 0.10%)</title><rect x="22.5674%" y="709" width="0.0979%" height="15" fill="rgb(237,54,19)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="719.50"></text></g><g><title>__put_anon_vma (57 samples, 0.01%)</title><rect x="22.6863%" y="645" width="0.0108%" height="15" fill="rgb(251,129,25)" fg:x="119605" fg:w="57"/><text x="22.9363%" y="655.50"></text></g><g><title>kmem_cache_free (131 samples, 0.02%)</title><rect x="22.7057%" y="645" width="0.0248%" height="15" fill="rgb(238,97,19)" fg:x="119707" fg:w="131"/><text x="22.9557%" y="655.50"></text></g><g><title>unlink_anon_vmas (256 samples, 0.05%)</title><rect x="22.6827%" y="661" width="0.0486%" height="15" fill="rgb(240,169,18)" fg:x="119586" fg:w="256"/><text x="22.9327%" y="671.50"></text></g><g><title>free_pgtables (351 samples, 0.07%)</title><rect x="22.6761%" y="677" width="0.0666%" height="15" fill="rgb(230,187,49)" fg:x="119551" fg:w="351"/><text x="22.9261%" y="687.50"></text></g><g><title>kmem_cache_free (123 samples, 0.02%)</title><rect x="22.7519%" y="661" width="0.0233%" height="15" fill="rgb(209,44,26)" fg:x="119951" fg:w="123"/><text x="23.0019%" y="671.50"></text></g><g><title>remove_vma (147 samples, 0.03%)</title><rect x="22.7485%" y="677" width="0.0279%" height="15" fill="rgb(244,0,6)" fg:x="119933" fg:w="147"/><text x="22.9985%" y="687.50"></text></g><g><title>free_pages_and_swap_cache (54 samples, 0.01%)</title><rect x="22.7817%" y="661" width="0.0102%" height="15" fill="rgb(248,18,21)" fg:x="120108" fg:w="54"/><text x="23.0317%" y="671.50"></text></g><g><title>tlb_finish_mmu (351 samples, 0.07%)</title><rect x="22.7764%" y="677" width="0.0666%" height="15" fill="rgb(245,180,19)" fg:x="120080" fg:w="351"/><text x="23.0264%" y="687.50"></text></g><g><title>release_pages (261 samples, 0.05%)</title><rect x="22.7935%" y="661" width="0.0495%" height="15" fill="rgb(252,118,36)" fg:x="120170" fg:w="261"/><text x="23.0435%" y="671.50"></text></g><g><title>unmap_page_range (149 samples, 0.03%)</title><rect x="22.8436%" y="661" width="0.0283%" height="15" fill="rgb(210,224,19)" fg:x="120434" fg:w="149"/><text x="23.0936%" y="671.50"></text></g><g><title>exit_mmap (1,060 samples, 0.20%)</title><rect x="22.6717%" y="693" width="0.2011%" height="15" fill="rgb(218,30,24)" fg:x="119528" fg:w="1060"/><text x="22.9217%" y="703.50"></text></g><g><title>unmap_vmas (157 samples, 0.03%)</title><rect x="22.8430%" y="677" width="0.0298%" height="15" fill="rgb(219,75,50)" fg:x="120431" fg:w="157"/><text x="23.0930%" y="687.50"></text></g><g><title>mmput (1,068 samples, 0.20%)</title><rect x="22.6710%" y="709" width="0.2026%" height="15" fill="rgb(234,72,50)" fg:x="119524" fg:w="1068"/><text x="22.9210%" y="719.50"></text></g><g><title>__x64_sys_exit_group (1,178 samples, 0.22%)</title><rect x="22.6653%" y="757" width="0.2234%" height="15" fill="rgb(219,100,48)" fg:x="119494" fg:w="1178"/><text x="22.9153%" y="767.50"></text></g><g><title>do_group_exit (1,178 samples, 0.22%)</title><rect x="22.6653%" y="741" width="0.2234%" height="15" fill="rgb(253,5,41)" fg:x="119494" fg:w="1178"/><text x="22.9153%" y="751.50"></text></g><g><title>do_exit (1,178 samples, 0.22%)</title><rect x="22.6653%" y="725" width="0.2234%" height="15" fill="rgb(247,181,11)" fg:x="119494" fg:w="1178"/><text x="22.9153%" y="735.50"></text></g><g><title>do_syscall_64 (1,717 samples, 0.33%)</title><rect x="22.5636%" y="773" width="0.3257%" height="15" fill="rgb(222,223,25)" fg:x="118958" fg:w="1717"/><text x="22.8136%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,723 samples, 0.33%)</title><rect x="22.5627%" y="789" width="0.3268%" height="15" fill="rgb(214,198,28)" fg:x="118953" fg:w="1723"/><text x="22.8127%" y="799.50"></text></g><g><title>c++ (14,242 samples, 2.70%)</title><rect x="20.1909%" y="805" width="2.7014%" height="15" fill="rgb(230,46,43)" fg:x="106449" fg:w="14242"/><text x="20.4409%" y="815.50">c++</text></g><g><title>[perf-947659.map] (370 samples, 0.07%)</title><rect x="22.8953%" y="789" width="0.0702%" height="15" fill="rgb(233,65,53)" fg:x="120707" fg:w="370"/><text x="23.1453%" y="799.50"></text></g><g><title>find-action-loo (405 samples, 0.08%)</title><rect x="22.8950%" y="805" width="0.0768%" height="15" fill="rgb(221,121,27)" fg:x="120705" fg:w="405"/><text x="23.1450%" y="815.50"></text></g><g><title>globbing_pool-0 (53 samples, 0.01%)</title><rect x="22.9718%" y="805" width="0.0101%" height="15" fill="rgb(247,70,47)" fg:x="121110" fg:w="53"/><text x="23.2218%" y="815.50"></text></g><g><title>[perf-947659.map] (199 samples, 0.04%)</title><rect x="22.9932%" y="789" width="0.0377%" height="15" fill="rgb(228,85,35)" fg:x="121223" fg:w="199"/><text x="23.2432%" y="799.50"></text></g><g><title>globbing_pool-1 (344 samples, 0.07%)</title><rect x="22.9818%" y="805" width="0.0652%" height="15" fill="rgb(209,50,18)" fg:x="121163" fg:w="344"/><text x="23.2318%" y="815.50"></text></g><g><title>[perf-947659.map] (166 samples, 0.03%)</title><rect x="23.0541%" y="789" width="0.0315%" height="15" fill="rgb(250,19,35)" fg:x="121544" fg:w="166"/><text x="23.3041%" y="799.50"></text></g><g><title>globbing_pool-2 (215 samples, 0.04%)</title><rect x="23.0471%" y="805" width="0.0408%" height="15" fill="rgb(253,107,29)" fg:x="121507" fg:w="215"/><text x="23.2971%" y="815.50"></text></g><g><title>[perf-947659.map] (108 samples, 0.02%)</title><rect x="23.0907%" y="789" width="0.0205%" height="15" fill="rgb(252,179,29)" fg:x="121737" fg:w="108"/><text x="23.3407%" y="799.50"></text></g><g><title>globbing_pool-3 (137 samples, 0.03%)</title><rect x="23.0879%" y="805" width="0.0260%" height="15" fill="rgb(238,194,6)" fg:x="121722" fg:w="137"/><text x="23.3379%" y="815.50"></text></g><g><title>[perf-947659.map] (147 samples, 0.03%)</title><rect x="23.1211%" y="789" width="0.0279%" height="15" fill="rgb(238,164,29)" fg:x="121897" fg:w="147"/><text x="23.3711%" y="799.50"></text></g><g><title>globbing_pool-4 (207 samples, 0.04%)</title><rect x="23.1139%" y="805" width="0.0393%" height="15" fill="rgb(224,25,9)" fg:x="121859" fg:w="207"/><text x="23.3639%" y="815.50"></text></g><g><title>[libunix_jni.so] (76 samples, 0.01%)</title><rect x="23.1541%" y="789" width="0.0144%" height="15" fill="rgb(244,153,23)" fg:x="122071" fg:w="76"/><text x="23.4041%" y="799.50"></text></g><g><title>[perf-947659.map] (293 samples, 0.06%)</title><rect x="23.1685%" y="789" width="0.0556%" height="15" fill="rgb(212,203,14)" fg:x="122147" fg:w="293"/><text x="23.4185%" y="799.50"></text></g><g><title>globbing_pool-5 (378 samples, 0.07%)</title><rect x="23.1531%" y="805" width="0.0717%" height="15" fill="rgb(220,164,20)" fg:x="122066" fg:w="378"/><text x="23.4031%" y="815.50"></text></g><g><title>[perf-947659.map] (90 samples, 0.02%)</title><rect x="23.2265%" y="789" width="0.0171%" height="15" fill="rgb(222,203,48)" fg:x="122453" fg:w="90"/><text x="23.4765%" y="799.50"></text></g><g><title>globbing_pool-6 (115 samples, 0.02%)</title><rect x="23.2248%" y="805" width="0.0218%" height="15" fill="rgb(215,159,22)" fg:x="122444" fg:w="115"/><text x="23.4748%" y="815.50"></text></g><g><title>[perf-947659.map] (105 samples, 0.02%)</title><rect x="23.2478%" y="789" width="0.0199%" height="15" fill="rgb(216,183,47)" fg:x="122565" fg:w="105"/><text x="23.4978%" y="799.50"></text></g><g><title>globbing_pool-7 (123 samples, 0.02%)</title><rect x="23.2466%" y="805" width="0.0233%" height="15" fill="rgb(229,195,25)" fg:x="122559" fg:w="123"/><text x="23.4966%" y="815.50"></text></g><g><title>[perf-947659.map] (95 samples, 0.02%)</title><rect x="23.2717%" y="789" width="0.0180%" height="15" fill="rgb(224,132,51)" fg:x="122691" fg:w="95"/><text x="23.5217%" y="799.50"></text></g><g><title>globbing_pool-8 (109 samples, 0.02%)</title><rect x="23.2700%" y="805" width="0.0207%" height="15" fill="rgb(240,63,7)" fg:x="122682" fg:w="109"/><text x="23.5200%" y="815.50"></text></g><g><title>[perf-947659.map] (73 samples, 0.01%)</title><rect x="23.2918%" y="789" width="0.0138%" height="15" fill="rgb(249,182,41)" fg:x="122797" fg:w="73"/><text x="23.5418%" y="799.50"></text></g><g><title>globbing_pool-9 (82 samples, 0.02%)</title><rect x="23.2906%" y="805" width="0.0156%" height="15" fill="rgb(243,47,26)" fg:x="122791" fg:w="82"/><text x="23.5406%" y="815.50"></text></g><g><title>[anon] (236 samples, 0.04%)</title><rect x="23.3107%" y="789" width="0.0448%" height="15" fill="rgb(233,48,2)" fg:x="122897" fg:w="236"/><text x="23.5607%" y="799.50"></text></g><g><title>ClassFileParser::ClassFileParser (68 samples, 0.01%)</title><rect x="23.8052%" y="661" width="0.0129%" height="15" fill="rgb(244,165,34)" fg:x="125504" fg:w="68"/><text x="24.0552%" y="671.50"></text></g><g><title>ClassFileParser::parse_stream (68 samples, 0.01%)</title><rect x="23.8052%" y="645" width="0.0129%" height="15" fill="rgb(207,89,7)" fg:x="125504" fg:w="68"/><text x="24.0552%" y="655.50"></text></g><g><title>ClassLoader::load_class (118 samples, 0.02%)</title><rect x="23.8029%" y="693" width="0.0224%" height="15" fill="rgb(244,117,36)" fg:x="125492" fg:w="118"/><text x="24.0529%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (106 samples, 0.02%)</title><rect x="23.8052%" y="677" width="0.0201%" height="15" fill="rgb(226,144,34)" fg:x="125504" fg:w="106"/><text x="24.0552%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (139 samples, 0.03%)</title><rect x="23.8026%" y="709" width="0.0264%" height="15" fill="rgb(213,23,19)" fg:x="125490" fg:w="139"/><text x="24.0526%" y="719.50"></text></g><g><title>ConstantPool::klass_at_impl (147 samples, 0.03%)</title><rect x="23.8012%" y="757" width="0.0279%" height="15" fill="rgb(217,75,12)" fg:x="125483" fg:w="147"/><text x="24.0512%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (144 samples, 0.03%)</title><rect x="23.8018%" y="741" width="0.0273%" height="15" fill="rgb(224,159,17)" fg:x="125486" fg:w="144"/><text x="24.0518%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (144 samples, 0.03%)</title><rect x="23.8018%" y="725" width="0.0273%" height="15" fill="rgb(217,118,1)" fg:x="125486" fg:w="144"/><text x="24.0518%" y="735.50"></text></g><g><title>Rewriter::rewrite (56 samples, 0.01%)</title><rect x="23.8449%" y="725" width="0.0106%" height="15" fill="rgb(232,180,48)" fg:x="125713" fg:w="56"/><text x="24.0949%" y="735.50"></text></g><g><title>Rewriter::Rewriter (54 samples, 0.01%)</title><rect x="23.8452%" y="709" width="0.0102%" height="15" fill="rgb(230,27,33)" fg:x="125715" fg:w="54"/><text x="24.0952%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (165 samples, 0.03%)</title><rect x="23.8306%" y="741" width="0.0313%" height="15" fill="rgb(205,31,21)" fg:x="125638" fg:w="165"/><text x="24.0806%" y="751.50"></text></g><g><title>InterpreterRuntime::_new (324 samples, 0.06%)</title><rect x="23.8009%" y="773" width="0.0615%" height="15" fill="rgb(253,59,4)" fg:x="125481" fg:w="324"/><text x="24.0509%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (172 samples, 0.03%)</title><rect x="23.8297%" y="757" width="0.0326%" height="15" fill="rgb(224,201,9)" fg:x="125633" fg:w="172"/><text x="24.0797%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (74 samples, 0.01%)</title><rect x="23.8722%" y="773" width="0.0140%" height="15" fill="rgb(229,206,30)" fg:x="125857" fg:w="74"/><text x="24.1222%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (73 samples, 0.01%)</title><rect x="23.8724%" y="757" width="0.0138%" height="15" fill="rgb(212,67,47)" fg:x="125858" fg:w="73"/><text x="24.1224%" y="767.50"></text></g><g><title>TieredThresholdPolicy::event (65 samples, 0.01%)</title><rect x="23.8739%" y="741" width="0.0123%" height="15" fill="rgb(211,96,50)" fg:x="125866" fg:w="65"/><text x="24.1239%" y="751.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (60 samples, 0.01%)</title><rect x="23.8748%" y="725" width="0.0114%" height="15" fill="rgb(252,114,18)" fg:x="125871" fg:w="60"/><text x="24.1248%" y="735.50"></text></g><g><title>LinkResolver::resolve_field (65 samples, 0.01%)</title><rect x="23.9048%" y="725" width="0.0123%" height="15" fill="rgb(223,58,37)" fg:x="126029" fg:w="65"/><text x="24.1548%" y="735.50"></text></g><g><title>LinkResolver::resolve_field_access (93 samples, 0.02%)</title><rect x="23.8999%" y="741" width="0.0176%" height="15" fill="rgb(237,70,4)" fg:x="126003" fg:w="93"/><text x="24.1499%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (119 samples, 0.02%)</title><rect x="23.8965%" y="757" width="0.0226%" height="15" fill="rgb(244,85,46)" fg:x="125985" fg:w="119"/><text x="24.1465%" y="767.50"></text></g><g><title>ClassLoader::load_class (63 samples, 0.01%)</title><rect x="23.9298%" y="661" width="0.0119%" height="15" fill="rgb(223,39,52)" fg:x="126161" fg:w="63"/><text x="24.1798%" y="671.50"></text></g><g><title>KlassFactory::create_from_stream (58 samples, 0.01%)</title><rect x="23.9308%" y="645" width="0.0110%" height="15" fill="rgb(218,200,14)" fg:x="126166" fg:w="58"/><text x="24.1808%" y="655.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.01%)</title><rect x="23.9298%" y="677" width="0.0131%" height="15" fill="rgb(208,171,16)" fg:x="126161" fg:w="69"/><text x="24.1798%" y="687.50"></text></g><g><title>ConstantPool::klass_ref_at (87 samples, 0.02%)</title><rect x="23.9268%" y="725" width="0.0165%" height="15" fill="rgb(234,200,18)" fg:x="126145" fg:w="87"/><text x="24.1768%" y="735.50"></text></g><g><title>SystemDictionary::resolve_or_fail (78 samples, 0.01%)</title><rect x="23.9285%" y="709" width="0.0148%" height="15" fill="rgb(228,45,11)" fg:x="126154" fg:w="78"/><text x="24.1785%" y="719.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (78 samples, 0.01%)</title><rect x="23.9285%" y="693" width="0.0148%" height="15" fill="rgb(237,182,11)" fg:x="126154" fg:w="78"/><text x="24.1785%" y="703.50"></text></g><g><title>InstanceKlass::link_class_impl (92 samples, 0.02%)</title><rect x="23.9583%" y="693" width="0.0175%" height="15" fill="rgb(241,175,49)" fg:x="126311" fg:w="92"/><text x="24.2083%" y="703.50"></text></g><g><title>InstanceKlass::initialize_impl (95 samples, 0.02%)</title><rect x="23.9579%" y="709" width="0.0180%" height="15" fill="rgb(247,38,35)" fg:x="126309" fg:w="95"/><text x="24.2079%" y="719.50"></text></g><g><title>LinkResolver::resolve_static_call (121 samples, 0.02%)</title><rect x="23.9575%" y="725" width="0.0230%" height="15" fill="rgb(228,39,49)" fg:x="126307" fg:w="121"/><text x="24.2075%" y="735.50"></text></g><g><title>LinkResolver::resolve_invoke (292 samples, 0.06%)</title><rect x="23.9260%" y="741" width="0.0554%" height="15" fill="rgb(226,101,26)" fg:x="126141" fg:w="292"/><text x="24.1760%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (349 samples, 0.07%)</title><rect x="23.9190%" y="757" width="0.0662%" height="15" fill="rgb(206,141,19)" fg:x="126104" fg:w="349"/><text x="24.1690%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (60 samples, 0.01%)</title><rect x="23.9852%" y="757" width="0.0114%" height="15" fill="rgb(211,200,13)" fg:x="126453" fg:w="60"/><text x="24.2352%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (59 samples, 0.01%)</title><rect x="23.9854%" y="741" width="0.0112%" height="15" fill="rgb(241,121,6)" fg:x="126454" fg:w="59"/><text x="24.2354%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (58 samples, 0.01%)</title><rect x="23.9856%" y="725" width="0.0110%" height="15" fill="rgb(234,221,29)" fg:x="126455" fg:w="58"/><text x="24.2356%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (548 samples, 0.10%)</title><rect x="23.8951%" y="773" width="0.1039%" height="15" fill="rgb(229,136,5)" fg:x="125978" fg:w="548"/><text x="24.1451%" y="783.50"></text></g><g><title>JVM_GetClassDeclaredMethods (63 samples, 0.01%)</title><rect x="24.0268%" y="773" width="0.0119%" height="15" fill="rgb(238,36,11)" fg:x="126672" fg:w="63"/><text x="24.2768%" y="783.50"></text></g><g><title>get_class_declared_methods_helper (63 samples, 0.01%)</title><rect x="24.0268%" y="757" width="0.0119%" height="15" fill="rgb(251,55,41)" fg:x="126672" fg:w="63"/><text x="24.2768%" y="767.50"></text></g><g><title>SymbolTable::add (67 samples, 0.01%)</title><rect x="24.0780%" y="629" width="0.0127%" height="15" fill="rgb(242,34,40)" fg:x="126942" fg:w="67"/><text x="24.3280%" y="639.50"></text></g><g><title>SymbolTable::basic_add (67 samples, 0.01%)</title><rect x="24.0780%" y="613" width="0.0127%" height="15" fill="rgb(215,42,17)" fg:x="126942" fg:w="67"/><text x="24.3280%" y="623.50"></text></g><g><title>SymbolTable::lookup_only (503 samples, 0.10%)</title><rect x="24.0907%" y="629" width="0.0954%" height="15" fill="rgb(207,44,46)" fg:x="127009" fg:w="503"/><text x="24.3407%" y="639.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (602 samples, 0.11%)</title><rect x="24.0723%" y="645" width="0.1142%" height="15" fill="rgb(211,206,28)" fg:x="126912" fg:w="602"/><text x="24.3223%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (632 samples, 0.12%)</title><rect x="24.0683%" y="661" width="0.1199%" height="15" fill="rgb(237,167,16)" fg:x="126891" fg:w="632"/><text x="24.3183%" y="671.50"></text></g><g><title>ClassFileParser::parse_method (179 samples, 0.03%)</title><rect x="24.1925%" y="645" width="0.0340%" height="15" fill="rgb(233,66,6)" fg:x="127546" fg:w="179"/><text x="24.4425%" y="655.50"></text></g><g><title>ClassFileParser::parse_methods (182 samples, 0.03%)</title><rect x="24.1924%" y="661" width="0.0345%" height="15" fill="rgb(246,123,29)" fg:x="127545" fg:w="182"/><text x="24.4424%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (871 samples, 0.17%)</title><rect x="24.0653%" y="693" width="0.1652%" height="15" fill="rgb(209,62,40)" fg:x="126875" fg:w="871"/><text x="24.3153%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (869 samples, 0.16%)</title><rect x="24.0657%" y="677" width="0.1648%" height="15" fill="rgb(218,4,25)" fg:x="126877" fg:w="869"/><text x="24.3157%" y="687.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (101 samples, 0.02%)</title><rect x="24.2367%" y="645" width="0.0192%" height="15" fill="rgb(253,91,49)" fg:x="127779" fg:w="101"/><text x="24.4867%" y="655.50"></text></g><g><title>DefaultMethods::generate_default_methods (153 samples, 0.03%)</title><rect x="24.2324%" y="661" width="0.0290%" height="15" fill="rgb(228,155,29)" fg:x="127756" fg:w="153"/><text x="24.4824%" y="671.50"></text></g><g><title>ClassFileParser::fill_instance_klass (200 samples, 0.04%)</title><rect x="24.2305%" y="677" width="0.0379%" height="15" fill="rgb(243,57,37)" fg:x="127746" fg:w="200"/><text x="24.4805%" y="687.50"></text></g><g><title>ClassFileParser::create_instance_klass (205 samples, 0.04%)</title><rect x="24.2305%" y="693" width="0.0389%" height="15" fill="rgb(244,167,17)" fg:x="127746" fg:w="205"/><text x="24.4805%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (1,129 samples, 0.21%)</title><rect x="24.0651%" y="709" width="0.2141%" height="15" fill="rgb(207,181,38)" fg:x="126874" fg:w="1129"/><text x="24.3151%" y="719.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,187 samples, 0.23%)</title><rect x="24.0639%" y="725" width="0.2251%" height="15" fill="rgb(211,8,23)" fg:x="126868" fg:w="1187"/><text x="24.3139%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (1,202 samples, 0.23%)</title><rect x="24.0615%" y="757" width="0.2280%" height="15" fill="rgb(235,11,44)" fg:x="126855" fg:w="1202"/><text x="24.3115%" y="767.50"></text></g><g><title>jvm_define_class_common (1,200 samples, 0.23%)</title><rect x="24.0619%" y="741" width="0.2276%" height="15" fill="rgb(248,18,52)" fg:x="126857" fg:w="1200"/><text x="24.3119%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,244 samples, 0.24%)</title><rect x="24.0611%" y="773" width="0.2360%" height="15" fill="rgb(208,4,7)" fg:x="126853" fg:w="1244"/><text x="24.3111%" y="783.50"></text></g><g><title>JVM_FindClassFromBootLoader (87 samples, 0.02%)</title><rect x="24.2972%" y="757" width="0.0165%" height="15" fill="rgb(240,17,39)" fg:x="128098" fg:w="87"/><text x="24.5472%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_null (85 samples, 0.02%)</title><rect x="24.2976%" y="741" width="0.0161%" height="15" fill="rgb(207,170,3)" fg:x="128100" fg:w="85"/><text x="24.5476%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (85 samples, 0.02%)</title><rect x="24.2976%" y="725" width="0.0161%" height="15" fill="rgb(236,100,52)" fg:x="128100" fg:w="85"/><text x="24.5476%" y="735.50"></text></g><g><title>SystemDictionary::load_instance_class (66 samples, 0.01%)</title><rect x="24.3012%" y="709" width="0.0125%" height="15" fill="rgb(246,78,51)" fg:x="128119" fg:w="66"/><text x="24.5512%" y="719.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (98 samples, 0.02%)</title><rect x="24.2971%" y="773" width="0.0186%" height="15" fill="rgb(211,17,15)" fg:x="128097" fg:w="98"/><text x="24.5471%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (80 samples, 0.02%)</title><rect x="24.3390%" y="773" width="0.0152%" height="15" fill="rgb(209,59,46)" fg:x="128318" fg:w="80"/><text x="24.5890%" y="783.50"></text></g><g><title>SystemDictionary::parse_stream (75 samples, 0.01%)</title><rect x="24.3399%" y="757" width="0.0142%" height="15" fill="rgb(210,92,25)" fg:x="128323" fg:w="75"/><text x="24.5899%" y="767.50"></text></g><g><title>[perf-947659.map] (5,316 samples, 1.01%)</title><rect x="23.3597%" y="789" width="1.0083%" height="15" fill="rgb(238,174,52)" fg:x="123155" fg:w="5316"/><text x="23.6097%" y="799.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="24.3885%" y="693" width="0.0112%" height="15" fill="rgb(230,73,7)" fg:x="128579" fg:w="59"/><text x="24.6385%" y="703.50"></text></g><g><title>ksys_read (56 samples, 0.01%)</title><rect x="24.3891%" y="677" width="0.0106%" height="15" fill="rgb(243,124,40)" fg:x="128582" fg:w="56"/><text x="24.6391%" y="687.50"></text></g><g><title>vfs_read (53 samples, 0.01%)</title><rect x="24.3896%" y="661" width="0.0101%" height="15" fill="rgb(244,170,11)" fg:x="128585" fg:w="53"/><text x="24.6396%" y="671.50"></text></g><g><title>__libc_read (65 samples, 0.01%)</title><rect x="24.3875%" y="741" width="0.0123%" height="15" fill="rgb(207,114,54)" fg:x="128574" fg:w="65"/><text x="24.6375%" y="751.50"></text></g><g><title>__libc_read (64 samples, 0.01%)</title><rect x="24.3877%" y="725" width="0.0121%" height="15" fill="rgb(205,42,20)" fg:x="128575" fg:w="64"/><text x="24.6377%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="24.3885%" y="709" width="0.0114%" height="15" fill="rgb(230,30,28)" fg:x="128579" fg:w="60"/><text x="24.6385%" y="719.50"></text></g><g><title>handleRead (66 samples, 0.01%)</title><rect x="24.3875%" y="757" width="0.0125%" height="15" fill="rgb(205,73,54)" fg:x="128574" fg:w="66"/><text x="24.6375%" y="767.50"></text></g><g><title>readBytes (83 samples, 0.02%)</title><rect x="24.3870%" y="773" width="0.0157%" height="15" fill="rgb(254,227,23)" fg:x="128571" fg:w="83"/><text x="24.6370%" y="783.50"></text></g><g><title>[unknown] (186 samples, 0.04%)</title><rect x="24.3680%" y="789" width="0.0353%" height="15" fill="rgb(228,202,34)" fg:x="128471" fg:w="186"/><text x="24.6180%" y="799.50"></text></g><g><title>__GI___clone (137 samples, 0.03%)</title><rect x="24.4033%" y="789" width="0.0260%" height="15" fill="rgb(222,225,37)" fg:x="128657" fg:w="137"/><text x="24.6533%" y="799.50"></text></g><g><title>start_thread (81 samples, 0.02%)</title><rect x="24.4139%" y="773" width="0.0154%" height="15" fill="rgb(221,14,54)" fg:x="128713" fg:w="81"/><text x="24.6639%" y="783.50"></text></g><g><title>java (5,954 samples, 1.13%)</title><rect x="23.3062%" y="805" width="1.1293%" height="15" fill="rgb(254,102,2)" fg:x="122873" fg:w="5954"/><text x="23.5562%" y="815.50"></text></g><g><title>[bash] (58 samples, 0.01%)</title><rect x="24.4626%" y="757" width="0.0110%" height="15" fill="rgb(232,104,17)" fg:x="128970" fg:w="58"/><text x="24.7126%" y="767.50"></text></g><g><title>execute_command_internal (109 samples, 0.02%)</title><rect x="24.4626%" y="773" width="0.0207%" height="15" fill="rgb(250,220,14)" fg:x="128970" fg:w="109"/><text x="24.7126%" y="783.50"></text></g><g><title>[unknown] (202 samples, 0.04%)</title><rect x="24.4499%" y="789" width="0.0383%" height="15" fill="rgb(241,158,9)" fg:x="128903" fg:w="202"/><text x="24.6999%" y="799.50"></text></g><g><title>execute_command (81 samples, 0.02%)</title><rect x="24.4968%" y="677" width="0.0154%" height="15" fill="rgb(246,9,43)" fg:x="129150" fg:w="81"/><text x="24.7468%" y="687.50"></text></g><g><title>execute_command_internal (80 samples, 0.02%)</title><rect x="24.4970%" y="661" width="0.0152%" height="15" fill="rgb(206,73,33)" fg:x="129151" fg:w="80"/><text x="24.7470%" y="671.50"></text></g><g><title>[bash] (96 samples, 0.02%)</title><rect x="24.4964%" y="693" width="0.0182%" height="15" fill="rgb(222,79,8)" fg:x="129148" fg:w="96"/><text x="24.7464%" y="703.50"></text></g><g><title>copy_command (53 samples, 0.01%)</title><rect x="24.5165%" y="565" width="0.0101%" height="15" fill="rgb(234,8,54)" fg:x="129254" fg:w="53"/><text x="24.7665%" y="575.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="24.5165%" y="581" width="0.0102%" height="15" fill="rgb(209,134,38)" fg:x="129254" fg:w="54"/><text x="24.7665%" y="591.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="24.5161%" y="597" width="0.0116%" height="15" fill="rgb(230,127,29)" fg:x="129252" fg:w="61"/><text x="24.7661%" y="607.50"></text></g><g><title>copy_command (64 samples, 0.01%)</title><rect x="24.5159%" y="613" width="0.0121%" height="15" fill="rgb(242,44,41)" fg:x="129251" fg:w="64"/><text x="24.7659%" y="623.50"></text></g><g><title>copy_command (69 samples, 0.01%)</title><rect x="24.5152%" y="661" width="0.0131%" height="15" fill="rgb(222,56,43)" fg:x="129247" fg:w="69"/><text x="24.7652%" y="671.50"></text></g><g><title>copy_command (69 samples, 0.01%)</title><rect x="24.5152%" y="645" width="0.0131%" height="15" fill="rgb(238,39,47)" fg:x="129247" fg:w="69"/><text x="24.7652%" y="655.50"></text></g><g><title>copy_command (68 samples, 0.01%)</title><rect x="24.5154%" y="629" width="0.0129%" height="15" fill="rgb(226,79,43)" fg:x="129248" fg:w="68"/><text x="24.7654%" y="639.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="24.5152%" y="677" width="0.0133%" height="15" fill="rgb(242,105,53)" fg:x="129247" fg:w="70"/><text x="24.7652%" y="687.50"></text></g><g><title>bind_function (73 samples, 0.01%)</title><rect x="24.5148%" y="693" width="0.0138%" height="15" fill="rgb(251,132,46)" fg:x="129245" fg:w="73"/><text x="24.7648%" y="703.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="24.5298%" y="597" width="0.0106%" height="15" fill="rgb(231,77,14)" fg:x="129324" fg:w="56"/><text x="24.7798%" y="607.50"></text></g><g><title>copy_command (65 samples, 0.01%)</title><rect x="24.5294%" y="613" width="0.0123%" height="15" fill="rgb(240,135,9)" fg:x="129322" fg:w="65"/><text x="24.7794%" y="623.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="24.5288%" y="629" width="0.0133%" height="15" fill="rgb(248,109,14)" fg:x="129319" fg:w="70"/><text x="24.7788%" y="639.50"></text></g><g><title>copy_function_def_contents (72 samples, 0.01%)</title><rect x="24.5287%" y="693" width="0.0137%" height="15" fill="rgb(227,146,52)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="703.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="24.5287%" y="677" width="0.0137%" height="15" fill="rgb(232,54,3)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="687.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="24.5287%" y="661" width="0.0137%" height="15" fill="rgb(229,201,43)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="671.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="24.5287%" y="645" width="0.0137%" height="15" fill="rgb(252,161,33)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="655.50"></text></g><g><title>parse_and_execute (75 samples, 0.01%)</title><rect x="24.5527%" y="613" width="0.0142%" height="15" fill="rgb(226,146,40)" fg:x="129445" fg:w="75"/><text x="24.8027%" y="623.50"></text></g><g><title>execute_command_internal (72 samples, 0.01%)</title><rect x="24.5533%" y="597" width="0.0137%" height="15" fill="rgb(219,47,25)" fg:x="129448" fg:w="72"/><text x="24.8033%" y="607.50"></text></g><g><title>command_substitute (125 samples, 0.02%)</title><rect x="24.5467%" y="629" width="0.0237%" height="15" fill="rgb(250,135,13)" fg:x="129413" fg:w="125"/><text x="24.7967%" y="639.50"></text></g><g><title>expand_word_leave_quoted (127 samples, 0.02%)</title><rect x="24.5465%" y="661" width="0.0241%" height="15" fill="rgb(219,229,18)" fg:x="129412" fg:w="127"/><text x="24.7965%" y="671.50"></text></g><g><title>[bash] (127 samples, 0.02%)</title><rect x="24.5465%" y="645" width="0.0241%" height="15" fill="rgb(217,152,27)" fg:x="129412" fg:w="127"/><text x="24.7965%" y="655.50"></text></g><g><title>execute_command (155 samples, 0.03%)</title><rect x="24.5425%" y="693" width="0.0294%" height="15" fill="rgb(225,71,47)" fg:x="129391" fg:w="155"/><text x="24.7925%" y="703.50"></text></g><g><title>execute_command_internal (155 samples, 0.03%)</title><rect x="24.5425%" y="677" width="0.0294%" height="15" fill="rgb(220,139,14)" fg:x="129391" fg:w="155"/><text x="24.7925%" y="687.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="24.5954%" y="501" width="0.0102%" height="15" fill="rgb(247,54,32)" fg:x="129670" fg:w="54"/><text x="24.8454%" y="511.50"></text></g><g><title>make_child (60 samples, 0.01%)</title><rect x="24.5950%" y="517" width="0.0114%" height="15" fill="rgb(252,131,39)" fg:x="129668" fg:w="60"/><text x="24.8450%" y="527.50"></text></g><g><title>parse_and_execute (134 samples, 0.03%)</title><rect x="24.5818%" y="597" width="0.0254%" height="15" fill="rgb(210,108,39)" fg:x="129598" fg:w="134"/><text x="24.8318%" y="607.50"></text></g><g><title>execute_command_internal (129 samples, 0.02%)</title><rect x="24.5827%" y="581" width="0.0245%" height="15" fill="rgb(205,23,29)" fg:x="129603" fg:w="129"/><text x="24.8327%" y="591.50"></text></g><g><title>[bash] (129 samples, 0.02%)</title><rect x="24.5827%" y="565" width="0.0245%" height="15" fill="rgb(246,139,46)" fg:x="129603" fg:w="129"/><text x="24.8327%" y="575.50"></text></g><g><title>[bash] (129 samples, 0.02%)</title><rect x="24.5827%" y="549" width="0.0245%" height="15" fill="rgb(250,81,26)" fg:x="129603" fg:w="129"/><text x="24.8327%" y="559.50"></text></g><g><title>execute_command_internal (126 samples, 0.02%)</title><rect x="24.5833%" y="533" width="0.0239%" height="15" fill="rgb(214,104,7)" fg:x="129606" fg:w="126"/><text x="24.8333%" y="543.50"></text></g><g><title>command_substitute (183 samples, 0.03%)</title><rect x="24.5736%" y="613" width="0.0347%" height="15" fill="rgb(233,189,8)" fg:x="129555" fg:w="183"/><text x="24.8236%" y="623.50"></text></g><g><title>[bash] (191 samples, 0.04%)</title><rect x="24.5725%" y="629" width="0.0362%" height="15" fill="rgb(228,141,17)" fg:x="129549" fg:w="191"/><text x="24.8225%" y="639.50"></text></g><g><title>[bash] (195 samples, 0.04%)</title><rect x="24.5725%" y="645" width="0.0370%" height="15" fill="rgb(247,157,1)" fg:x="129549" fg:w="195"/><text x="24.8225%" y="655.50"></text></g><g><title>[bash] (205 samples, 0.04%)</title><rect x="24.5719%" y="661" width="0.0389%" height="15" fill="rgb(249,225,5)" fg:x="129546" fg:w="205"/><text x="24.8219%" y="671.50"></text></g><g><title>[bash] (208 samples, 0.04%)</title><rect x="24.5719%" y="677" width="0.0395%" height="15" fill="rgb(242,55,13)" fg:x="129546" fg:w="208"/><text x="24.8219%" y="687.50"></text></g><g><title>expand_words (210 samples, 0.04%)</title><rect x="24.5719%" y="693" width="0.0398%" height="15" fill="rgb(230,49,50)" fg:x="129546" fg:w="210"/><text x="24.8219%" y="703.50"></text></g><g><title>execute_command (614 samples, 0.12%)</title><rect x="24.4958%" y="725" width="0.1165%" height="15" fill="rgb(241,111,38)" fg:x="129145" fg:w="614"/><text x="24.7458%" y="735.50"></text></g><g><title>execute_command_internal (611 samples, 0.12%)</title><rect x="24.4964%" y="709" width="0.1159%" height="15" fill="rgb(252,155,4)" fg:x="129148" fg:w="611"/><text x="24.7464%" y="719.50"></text></g><g><title>[bash] (219 samples, 0.04%)</title><rect x="24.6370%" y="661" width="0.0415%" height="15" fill="rgb(212,69,32)" fg:x="129889" fg:w="219"/><text x="24.8870%" y="671.50"></text></g><g><title>[bash] (384 samples, 0.07%)</title><rect x="24.6218%" y="677" width="0.0728%" height="15" fill="rgb(243,107,47)" fg:x="129809" fg:w="384"/><text x="24.8718%" y="687.50"></text></g><g><title>reader_loop (1,106 samples, 0.21%)</title><rect x="24.4907%" y="741" width="0.2098%" height="15" fill="rgb(247,130,12)" fg:x="129118" fg:w="1106"/><text x="24.7407%" y="751.50"></text></g><g><title>read_command (465 samples, 0.09%)</title><rect x="24.6123%" y="725" width="0.0882%" height="15" fill="rgb(233,74,16)" fg:x="129759" fg:w="465"/><text x="24.8623%" y="735.50"></text></g><g><title>parse_command (464 samples, 0.09%)</title><rect x="24.6125%" y="709" width="0.0880%" height="15" fill="rgb(208,58,18)" fg:x="129760" fg:w="464"/><text x="24.8625%" y="719.50"></text></g><g><title>yyparse (464 samples, 0.09%)</title><rect x="24.6125%" y="693" width="0.0880%" height="15" fill="rgb(242,225,1)" fg:x="129760" fg:w="464"/><text x="24.8625%" y="703.50"></text></g><g><title>__libc_start_main (1,125 samples, 0.21%)</title><rect x="24.4884%" y="773" width="0.2134%" height="15" fill="rgb(249,39,40)" fg:x="129106" fg:w="1125"/><text x="24.7384%" y="783.50"></text></g><g><title>main (1,125 samples, 0.21%)</title><rect x="24.4884%" y="757" width="0.2134%" height="15" fill="rgb(207,72,44)" fg:x="129106" fg:w="1125"/><text x="24.7384%" y="767.50"></text></g><g><title>_start (1,155 samples, 0.22%)</title><rect x="24.4884%" y="789" width="0.2191%" height="15" fill="rgb(215,193,12)" fg:x="129106" fg:w="1155"/><text x="24.7384%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.01%)</title><rect x="24.7142%" y="789" width="0.0118%" height="15" fill="rgb(248,41,39)" fg:x="130296" fg:w="62"/><text x="24.9642%" y="799.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="24.7142%" y="773" width="0.0118%" height="15" fill="rgb(253,85,4)" fg:x="130296" fg:w="62"/><text x="24.9642%" y="783.50"></text></g><g><title>libtool (1,532 samples, 0.29%)</title><rect x="24.4355%" y="805" width="0.2906%" height="15" fill="rgb(243,70,31)" fg:x="128827" fg:w="1532"/><text x="24.6855%" y="815.50"></text></g><g><title>copy_process (76 samples, 0.01%)</title><rect x="24.7326%" y="677" width="0.0144%" height="15" fill="rgb(253,195,26)" fg:x="130393" fg:w="76"/><text x="24.9826%" y="687.50"></text></g><g><title>__libc_start_main (78 samples, 0.01%)</title><rect x="24.7326%" y="773" width="0.0148%" height="15" fill="rgb(243,42,11)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="783.50"></text></g><g><title>__GI___clone (78 samples, 0.01%)</title><rect x="24.7326%" y="757" width="0.0148%" height="15" fill="rgb(239,66,17)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.01%)</title><rect x="24.7326%" y="741" width="0.0148%" height="15" fill="rgb(217,132,21)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="751.50"></text></g><g><title>do_syscall_64 (78 samples, 0.01%)</title><rect x="24.7326%" y="725" width="0.0148%" height="15" fill="rgb(252,202,21)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="735.50"></text></g><g><title>__do_sys_clone (78 samples, 0.01%)</title><rect x="24.7326%" y="709" width="0.0148%" height="15" fill="rgb(233,98,36)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="719.50"></text></g><g><title>kernel_clone (78 samples, 0.01%)</title><rect x="24.7326%" y="693" width="0.0148%" height="15" fill="rgb(216,153,54)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="703.50"></text></g><g><title>[unknown] (97 samples, 0.02%)</title><rect x="24.7303%" y="789" width="0.0184%" height="15" fill="rgb(250,99,7)" fg:x="130381" fg:w="97"/><text x="24.9803%" y="799.50"></text></g><g><title>CreateTarget (55 samples, 0.01%)</title><rect x="24.7538%" y="757" width="0.0104%" height="15" fill="rgb(207,56,50)" fg:x="130505" fg:w="55"/><text x="25.0038%" y="767.50"></text></g><g><title>bprm_execve (55 samples, 0.01%)</title><rect x="24.7868%" y="661" width="0.0104%" height="15" fill="rgb(244,61,34)" fg:x="130679" fg:w="55"/><text x="25.0368%" y="671.50"></text></g><g><title>__execvpe_common (70 samples, 0.01%)</title><rect x="24.7866%" y="757" width="0.0133%" height="15" fill="rgb(241,50,38)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="767.50"></text></g><g><title>__GI_execve (70 samples, 0.01%)</title><rect x="24.7866%" y="741" width="0.0133%" height="15" fill="rgb(212,166,30)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="24.7866%" y="725" width="0.0133%" height="15" fill="rgb(249,127,32)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="735.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="24.7866%" y="709" width="0.0133%" height="15" fill="rgb(209,103,0)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="719.50"></text></g><g><title>__x64_sys_execve (70 samples, 0.01%)</title><rect x="24.7866%" y="693" width="0.0133%" height="15" fill="rgb(238,209,51)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="703.50"></text></g><g><title>do_execveat_common (70 samples, 0.01%)</title><rect x="24.7866%" y="677" width="0.0133%" height="15" fill="rgb(237,56,23)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="687.50"></text></g><g><title>__libc_fork (86 samples, 0.02%)</title><rect x="24.7999%" y="757" width="0.0163%" height="15" fill="rgb(215,153,46)" fg:x="130748" fg:w="86"/><text x="25.0499%" y="767.50"></text></g><g><title>arch_fork (85 samples, 0.02%)</title><rect x="24.8001%" y="741" width="0.0161%" height="15" fill="rgb(224,49,31)" fg:x="130749" fg:w="85"/><text x="25.0501%" y="751.50"></text></g><g><title>ret_from_fork (63 samples, 0.01%)</title><rect x="24.8043%" y="725" width="0.0119%" height="15" fill="rgb(250,18,42)" fg:x="130771" fg:w="63"/><text x="25.0543%" y="735.50"></text></g><g><title>schedule_tail (63 samples, 0.01%)</title><rect x="24.8043%" y="709" width="0.0119%" height="15" fill="rgb(215,176,39)" fg:x="130771" fg:w="63"/><text x="25.0543%" y="719.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="24.8062%" y="693" width="0.0101%" height="15" fill="rgb(223,77,29)" fg:x="130781" fg:w="53"/><text x="25.0562%" y="703.50"></text></g><g><title>path_mount (62 samples, 0.01%)</title><rect x="24.8183%" y="693" width="0.0118%" height="15" fill="rgb(234,94,52)" fg:x="130845" fg:w="62"/><text x="25.0683%" y="703.50"></text></g><g><title>__mount (76 samples, 0.01%)</title><rect x="24.8172%" y="757" width="0.0144%" height="15" fill="rgb(220,154,50)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.01%)</title><rect x="24.8172%" y="741" width="0.0144%" height="15" fill="rgb(212,11,10)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="751.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="24.8172%" y="725" width="0.0144%" height="15" fill="rgb(205,166,19)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="735.50"></text></g><g><title>__x64_sys_mount (76 samples, 0.01%)</title><rect x="24.8172%" y="709" width="0.0144%" height="15" fill="rgb(244,198,16)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="719.50"></text></g><g><title>__do_sys_pivot_root (86 samples, 0.02%)</title><rect x="24.8579%" y="709" width="0.0163%" height="15" fill="rgb(219,69,12)" fg:x="131054" fg:w="86"/><text x="25.1079%" y="719.50"></text></g><g><title>chroot_fs_refs (86 samples, 0.02%)</title><rect x="24.8579%" y="693" width="0.0163%" height="15" fill="rgb(245,30,7)" fg:x="131054" fg:w="86"/><text x="25.1079%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="24.8627%" y="677" width="0.0116%" height="15" fill="rgb(218,221,48)" fg:x="131079" fg:w="61"/><text x="25.1127%" y="687.50"></text></g><g><title>syscall (87 samples, 0.02%)</title><rect x="24.8579%" y="757" width="0.0165%" height="15" fill="rgb(216,66,15)" fg:x="131054" fg:w="87"/><text x="25.1079%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="24.8579%" y="741" width="0.0165%" height="15" fill="rgb(226,122,50)" fg:x="131054" fg:w="87"/><text x="25.1079%" y="751.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="24.8579%" y="725" width="0.0165%" height="15" fill="rgb(239,156,16)" fg:x="131054" fg:w="87"/><text x="25.1079%" y="735.50"></text></g><g><title>Pid1Main (679 samples, 0.13%)</title><rect x="24.7489%" y="773" width="0.1288%" height="15" fill="rgb(224,27,38)" fg:x="130479" fg:w="679"/><text x="24.9989%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="24.8839%" y="725" width="0.0193%" height="15" fill="rgb(224,39,27)" fg:x="131191" fg:w="102"/><text x="25.1339%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.02%)</title><rect x="24.8839%" y="709" width="0.0193%" height="15" fill="rgb(215,92,29)" fg:x="131191" fg:w="102"/><text x="25.1339%" y="719.50"></text></g><g><title>native_write_msr (102 samples, 0.02%)</title><rect x="24.8839%" y="693" width="0.0193%" height="15" fill="rgb(207,159,16)" fg:x="131191" fg:w="102"/><text x="25.1339%" y="703.50"></text></g><g><title>schedule_tail (112 samples, 0.02%)</title><rect x="24.8824%" y="757" width="0.0212%" height="15" fill="rgb(238,163,47)" fg:x="131183" fg:w="112"/><text x="25.1324%" y="767.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="24.8824%" y="741" width="0.0212%" height="15" fill="rgb(219,91,49)" fg:x="131183" fg:w="112"/><text x="25.1324%" y="751.50"></text></g><g><title>__GI___clone (818 samples, 0.16%)</title><rect x="24.7487%" y="789" width="0.1552%" height="15" fill="rgb(227,167,31)" fg:x="130478" fg:w="818"/><text x="24.9987%" y="799.50"></text></g><g><title>ret_from_fork (120 samples, 0.02%)</title><rect x="24.8811%" y="773" width="0.0228%" height="15" fill="rgb(234,80,54)" fg:x="131176" fg:w="120"/><text x="25.1311%" y="783.50"></text></g><g><title>handle_mm_fault (71 samples, 0.01%)</title><rect x="24.9262%" y="677" width="0.0135%" height="15" fill="rgb(212,114,2)" fg:x="131414" fg:w="71"/><text x="25.1762%" y="687.50"></text></g><g><title>exc_page_fault (78 samples, 0.01%)</title><rect x="24.9253%" y="709" width="0.0148%" height="15" fill="rgb(234,50,24)" fg:x="131409" fg:w="78"/><text x="25.1753%" y="719.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.01%)</title><rect x="24.9255%" y="693" width="0.0146%" height="15" fill="rgb(221,68,8)" fg:x="131410" fg:w="77"/><text x="25.1755%" y="703.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="24.9251%" y="725" width="0.0161%" height="15" fill="rgb(254,180,31)" fg:x="131408" fg:w="85"/><text x="25.1751%" y="735.50"></text></g><g><title>[libc-2.31.so] (115 samples, 0.02%)</title><rect x="24.9220%" y="741" width="0.0218%" height="15" fill="rgb(247,130,50)" fg:x="131392" fg:w="115"/><text x="25.1720%" y="751.50"></text></g><g><title>__libc_start_main (250 samples, 0.05%)</title><rect x="24.9112%" y="773" width="0.0474%" height="15" fill="rgb(211,109,4)" fg:x="131335" fg:w="250"/><text x="25.1612%" y="783.50"></text></g><g><title>main (209 samples, 0.04%)</title><rect x="24.9190%" y="757" width="0.0396%" height="15" fill="rgb(238,50,21)" fg:x="131376" fg:w="209"/><text x="25.1690%" y="767.50"></text></g><g><title>do_mmap (76 samples, 0.01%)</title><rect x="24.9693%" y="517" width="0.0144%" height="15" fill="rgb(225,57,45)" fg:x="131641" fg:w="76"/><text x="25.2193%" y="527.50"></text></g><g><title>mmap_region (72 samples, 0.01%)</title><rect x="24.9700%" y="501" width="0.0137%" height="15" fill="rgb(209,196,50)" fg:x="131645" fg:w="72"/><text x="25.2200%" y="511.50"></text></g><g><title>ksys_mmap_pgoff (79 samples, 0.01%)</title><rect x="24.9691%" y="549" width="0.0150%" height="15" fill="rgb(242,140,13)" fg:x="131640" fg:w="79"/><text x="25.2191%" y="559.50"></text></g><g><title>vm_mmap_pgoff (78 samples, 0.01%)</title><rect x="24.9693%" y="533" width="0.0148%" height="15" fill="rgb(217,111,7)" fg:x="131641" fg:w="78"/><text x="25.2193%" y="543.50"></text></g><g><title>_dl_map_segments (96 samples, 0.02%)</title><rect x="24.9668%" y="629" width="0.0182%" height="15" fill="rgb(253,193,51)" fg:x="131628" fg:w="96"/><text x="25.2168%" y="639.50"></text></g><g><title>__mmap64 (85 samples, 0.02%)</title><rect x="24.9689%" y="613" width="0.0161%" height="15" fill="rgb(252,70,29)" fg:x="131639" fg:w="85"/><text x="25.2189%" y="623.50"></text></g><g><title>__mmap64 (85 samples, 0.02%)</title><rect x="24.9689%" y="597" width="0.0161%" height="15" fill="rgb(232,127,12)" fg:x="131639" fg:w="85"/><text x="25.2189%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="24.9689%" y="581" width="0.0161%" height="15" fill="rgb(211,180,21)" fg:x="131639" fg:w="85"/><text x="25.2189%" y="591.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="24.9691%" y="565" width="0.0159%" height="15" fill="rgb(229,72,13)" fg:x="131640" fg:w="84"/><text x="25.2191%" y="575.50"></text></g><g><title>_dl_map_object_from_fd (133 samples, 0.03%)</title><rect x="24.9655%" y="645" width="0.0252%" height="15" fill="rgb(240,211,49)" fg:x="131621" fg:w="133"/><text x="25.2155%" y="655.50"></text></g><g><title>_dl_catch_exception (177 samples, 0.03%)</title><rect x="24.9596%" y="693" width="0.0336%" height="15" fill="rgb(219,149,40)" fg:x="131590" fg:w="177"/><text x="25.2096%" y="703.50"></text></g><g><title>openaux (177 samples, 0.03%)</title><rect x="24.9596%" y="677" width="0.0336%" height="15" fill="rgb(210,127,46)" fg:x="131590" fg:w="177"/><text x="25.2096%" y="687.50"></text></g><g><title>_dl_map_object (177 samples, 0.03%)</title><rect x="24.9596%" y="661" width="0.0336%" height="15" fill="rgb(220,106,7)" fg:x="131590" fg:w="177"/><text x="25.2096%" y="671.50"></text></g><g><title>_dl_map_object_deps (183 samples, 0.03%)</title><rect x="24.9592%" y="709" width="0.0347%" height="15" fill="rgb(249,31,22)" fg:x="131588" fg:w="183"/><text x="25.2092%" y="719.50"></text></g><g><title>dl_new_hash (65 samples, 0.01%)</title><rect x="25.0114%" y="645" width="0.0123%" height="15" fill="rgb(253,1,49)" fg:x="131863" fg:w="65"/><text x="25.2614%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (212 samples, 0.04%)</title><rect x="25.0099%" y="661" width="0.0402%" height="15" fill="rgb(227,144,33)" fg:x="131855" fg:w="212"/><text x="25.2599%" y="671.50"></text></g><g><title>do_lookup_x (139 samples, 0.03%)</title><rect x="25.0237%" y="645" width="0.0264%" height="15" fill="rgb(249,163,44)" fg:x="131928" fg:w="139"/><text x="25.2737%" y="655.50"></text></g><g><title>elf_machine_rela (263 samples, 0.05%)</title><rect x="25.0015%" y="677" width="0.0499%" height="15" fill="rgb(234,15,39)" fg:x="131811" fg:w="263"/><text x="25.2515%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (295 samples, 0.06%)</title><rect x="24.9966%" y="693" width="0.0560%" height="15" fill="rgb(207,66,16)" fg:x="131785" fg:w="295"/><text x="25.2466%" y="703.50"></text></g><g><title>_dl_relocate_object (308 samples, 0.06%)</title><rect x="24.9947%" y="709" width="0.0584%" height="15" fill="rgb(233,112,24)" fg:x="131775" fg:w="308"/><text x="25.2447%" y="719.50"></text></g><g><title>[ld-2.31.so] (512 samples, 0.10%)</title><rect x="24.9587%" y="725" width="0.0971%" height="15" fill="rgb(230,90,22)" fg:x="131585" fg:w="512"/><text x="25.2087%" y="735.50"></text></g><g><title>_dl_start (514 samples, 0.10%)</title><rect x="24.9587%" y="773" width="0.0975%" height="15" fill="rgb(229,61,13)" fg:x="131585" fg:w="514"/><text x="25.2087%" y="783.50"></text></g><g><title>_dl_start_final (514 samples, 0.10%)</title><rect x="24.9587%" y="757" width="0.0975%" height="15" fill="rgb(225,57,24)" fg:x="131585" fg:w="514"/><text x="25.2087%" y="767.50"></text></g><g><title>_dl_sysdep_start (514 samples, 0.10%)</title><rect x="24.9587%" y="741" width="0.0975%" height="15" fill="rgb(208,169,48)" fg:x="131585" fg:w="514"/><text x="25.2087%" y="751.50"></text></g><g><title>_start (765 samples, 0.15%)</title><rect x="24.9112%" y="789" width="0.1451%" height="15" fill="rgb(244,218,51)" fg:x="131335" fg:w="765"/><text x="25.1612%" y="799.50"></text></g><g><title>asm_exc_page_fault (120 samples, 0.02%)</title><rect x="25.0563%" y="789" width="0.0228%" height="15" fill="rgb(214,148,10)" fg:x="132100" fg:w="120"/><text x="25.3063%" y="799.50"></text></g><g><title>begin_new_exec (61 samples, 0.01%)</title><rect x="25.0808%" y="693" width="0.0116%" height="15" fill="rgb(225,174,27)" fg:x="132229" fg:w="61"/><text x="25.3308%" y="703.50"></text></g><g><title>mmput (60 samples, 0.01%)</title><rect x="25.0810%" y="677" width="0.0114%" height="15" fill="rgb(230,96,26)" fg:x="132230" fg:w="60"/><text x="25.3310%" y="687.50"></text></g><g><title>exit_mmap (60 samples, 0.01%)</title><rect x="25.0810%" y="661" width="0.0114%" height="15" fill="rgb(232,10,30)" fg:x="132230" fg:w="60"/><text x="25.3310%" y="671.50"></text></g><g><title>__x64_sys_execve (130 samples, 0.02%)</title><rect x="25.0795%" y="757" width="0.0247%" height="15" fill="rgb(222,8,50)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="767.50"></text></g><g><title>do_execveat_common (130 samples, 0.02%)</title><rect x="25.0795%" y="741" width="0.0247%" height="15" fill="rgb(213,81,27)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="751.50"></text></g><g><title>bprm_execve (130 samples, 0.02%)</title><rect x="25.0795%" y="725" width="0.0247%" height="15" fill="rgb(245,50,10)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="735.50"></text></g><g><title>load_elf_binary (130 samples, 0.02%)</title><rect x="25.0795%" y="709" width="0.0247%" height="15" fill="rgb(216,100,18)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="719.50"></text></g><g><title>mmput (106 samples, 0.02%)</title><rect x="25.1074%" y="725" width="0.0201%" height="15" fill="rgb(236,147,54)" fg:x="132369" fg:w="106"/><text x="25.3574%" y="735.50"></text></g><g><title>exit_mmap (106 samples, 0.02%)</title><rect x="25.1074%" y="709" width="0.0201%" height="15" fill="rgb(205,143,26)" fg:x="132369" fg:w="106"/><text x="25.3574%" y="719.50"></text></g><g><title>unmap_vmas (53 samples, 0.01%)</title><rect x="25.1174%" y="693" width="0.0101%" height="15" fill="rgb(236,26,9)" fg:x="132422" fg:w="53"/><text x="25.3674%" y="703.50"></text></g><g><title>__x64_sys_exit (133 samples, 0.03%)</title><rect x="25.1041%" y="757" width="0.0252%" height="15" fill="rgb(221,165,53)" fg:x="132352" fg:w="133"/><text x="25.3541%" y="767.50"></text></g><g><title>do_exit (133 samples, 0.03%)</title><rect x="25.1041%" y="741" width="0.0252%" height="15" fill="rgb(214,110,17)" fg:x="132352" fg:w="133"/><text x="25.3541%" y="751.50"></text></g><g><title>exit_mmap (56 samples, 0.01%)</title><rect x="25.1297%" y="693" width="0.0106%" height="15" fill="rgb(237,197,12)" fg:x="132487" fg:w="56"/><text x="25.3797%" y="703.50"></text></g><g><title>mmput (57 samples, 0.01%)</title><rect x="25.1297%" y="709" width="0.0108%" height="15" fill="rgb(205,84,17)" fg:x="132487" fg:w="57"/><text x="25.3797%" y="719.50"></text></g><g><title>__x64_sys_exit_group (63 samples, 0.01%)</title><rect x="25.1294%" y="757" width="0.0119%" height="15" fill="rgb(237,18,45)" fg:x="132485" fg:w="63"/><text x="25.3794%" y="767.50"></text></g><g><title>do_group_exit (63 samples, 0.01%)</title><rect x="25.1294%" y="741" width="0.0119%" height="15" fill="rgb(221,87,14)" fg:x="132485" fg:w="63"/><text x="25.3794%" y="751.50"></text></g><g><title>do_exit (63 samples, 0.01%)</title><rect x="25.1294%" y="725" width="0.0119%" height="15" fill="rgb(238,186,15)" fg:x="132485" fg:w="63"/><text x="25.3794%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (330 samples, 0.06%)</title><rect x="25.0791%" y="789" width="0.0626%" height="15" fill="rgb(208,115,11)" fg:x="132220" fg:w="330"/><text x="25.3291%" y="799.50"></text></g><g><title>do_syscall_64 (329 samples, 0.06%)</title><rect x="25.0793%" y="773" width="0.0624%" height="15" fill="rgb(254,175,0)" fg:x="132221" fg:w="329"/><text x="25.3293%" y="783.50"></text></g><g><title>linux-sandbox (2,194 samples, 0.42%)</title><rect x="24.7261%" y="805" width="0.4162%" height="15" fill="rgb(227,24,42)" fg:x="130359" fg:w="2194"/><text x="24.9761%" y="815.50"></text></g><g><title>__libc_start_main (71 samples, 0.01%)</title><rect x="25.1453%" y="773" width="0.0135%" height="15" fill="rgb(223,211,37)" fg:x="132569" fg:w="71"/><text x="25.3953%" y="783.50"></text></g><g><title>main (67 samples, 0.01%)</title><rect x="25.1461%" y="757" width="0.0127%" height="15" fill="rgb(235,49,27)" fg:x="132573" fg:w="67"/><text x="25.3961%" y="767.50"></text></g><g><title>[ld-2.31.so] (73 samples, 0.01%)</title><rect x="25.1588%" y="725" width="0.0138%" height="15" fill="rgb(254,97,51)" fg:x="132640" fg:w="73"/><text x="25.4088%" y="735.50"></text></g><g><title>_start (145 samples, 0.03%)</title><rect x="25.1453%" y="789" width="0.0275%" height="15" fill="rgb(249,51,40)" fg:x="132569" fg:w="145"/><text x="25.3953%" y="799.50"></text></g><g><title>_dl_start (74 samples, 0.01%)</title><rect x="25.1588%" y="773" width="0.0140%" height="15" fill="rgb(210,128,45)" fg:x="132640" fg:w="74"/><text x="25.4088%" y="783.50"></text></g><g><title>_dl_start_final (74 samples, 0.01%)</title><rect x="25.1588%" y="757" width="0.0140%" height="15" fill="rgb(224,137,50)" fg:x="132640" fg:w="74"/><text x="25.4088%" y="767.50"></text></g><g><title>_dl_sysdep_start (74 samples, 0.01%)</title><rect x="25.1588%" y="741" width="0.0140%" height="15" fill="rgb(242,15,9)" fg:x="132640" fg:w="74"/><text x="25.4088%" y="751.50"></text></g><g><title>process-wrapper (191 samples, 0.04%)</title><rect x="25.1434%" y="805" width="0.0362%" height="15" fill="rgb(233,187,41)" fg:x="132559" fg:w="191"/><text x="25.3934%" y="815.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="25.1931%" y="725" width="0.0112%" height="15" fill="rgb(227,2,29)" fg:x="132821" fg:w="59"/><text x="25.4431%" y="735.50"></text></g><g><title>kernel_wait4 (59 samples, 0.01%)</title><rect x="25.1931%" y="709" width="0.0112%" height="15" fill="rgb(222,70,3)" fg:x="132821" fg:w="59"/><text x="25.4431%" y="719.50"></text></g><g><title>do_wait (58 samples, 0.01%)</title><rect x="25.1933%" y="693" width="0.0110%" height="15" fill="rgb(213,11,42)" fg:x="132822" fg:w="58"/><text x="25.4433%" y="703.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (62 samples, 0.01%)</title><rect x="25.1927%" y="773" width="0.0118%" height="15" fill="rgb(225,150,9)" fg:x="132819" fg:w="62"/><text x="25.4427%" y="783.50"></text></g><g><title>__GI___wait4 (62 samples, 0.01%)</title><rect x="25.1927%" y="757" width="0.0118%" height="15" fill="rgb(230,162,45)" fg:x="132819" fg:w="62"/><text x="25.4427%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="25.1931%" y="741" width="0.0114%" height="15" fill="rgb(222,14,52)" fg:x="132821" fg:w="60"/><text x="25.4431%" y="751.50"></text></g><g><title>[perf-947659.map] (142 samples, 0.03%)</title><rect x="25.1802%" y="789" width="0.0269%" height="15" fill="rgb(254,198,14)" fg:x="132753" fg:w="142"/><text x="25.4302%" y="799.50"></text></g><g><title>process_reaper (150 samples, 0.03%)</title><rect x="25.1796%" y="805" width="0.0285%" height="15" fill="rgb(220,217,30)" fg:x="132750" fg:w="150"/><text x="25.4296%" y="815.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.01%)</title><rect x="25.3314%" y="613" width="0.0137%" height="15" fill="rgb(215,146,41)" fg:x="133550" fg:w="72"/><text x="25.5814%" y="623.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="25.3319%" y="597" width="0.0131%" height="15" fill="rgb(217,27,36)" fg:x="133553" fg:w="69"/><text x="25.5819%" y="607.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="25.3321%" y="581" width="0.0129%" height="15" fill="rgb(219,218,39)" fg:x="133554" fg:w="68"/><text x="25.5821%" y="591.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="25.3295%" y="677" width="0.0167%" height="15" fill="rgb(219,4,42)" fg:x="133540" fg:w="88"/><text x="25.5795%" y="687.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="25.3298%" y="661" width="0.0163%" height="15" fill="rgb(249,119,36)" fg:x="133542" fg:w="86"/><text x="25.5798%" y="671.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="25.3300%" y="645" width="0.0161%" height="15" fill="rgb(209,23,33)" fg:x="133543" fg:w="85"/><text x="25.5800%" y="655.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="25.3306%" y="629" width="0.0156%" height="15" fill="rgb(211,10,0)" fg:x="133546" fg:w="82"/><text x="25.5806%" y="639.50"></text></g><g><title>__pthread_cond_wait (109 samples, 0.02%)</title><rect x="25.3276%" y="741" width="0.0207%" height="15" fill="rgb(208,99,37)" fg:x="133530" fg:w="109"/><text x="25.5776%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (109 samples, 0.02%)</title><rect x="25.3276%" y="725" width="0.0207%" height="15" fill="rgb(213,132,31)" fg:x="133530" fg:w="109"/><text x="25.5776%" y="735.50"></text></g><g><title>futex_wait_cancelable (105 samples, 0.02%)</title><rect x="25.3283%" y="709" width="0.0199%" height="15" fill="rgb(243,129,40)" fg:x="133534" fg:w="105"/><text x="25.5783%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (99 samples, 0.02%)</title><rect x="25.3295%" y="693" width="0.0188%" height="15" fill="rgb(210,66,33)" fg:x="133540" fg:w="99"/><text x="25.5795%" y="703.50"></text></g><g><title>Parker::park (141 samples, 0.03%)</title><rect x="25.3243%" y="757" width="0.0267%" height="15" fill="rgb(209,189,4)" fg:x="133513" fg:w="141"/><text x="25.5743%" y="767.50"></text></g><g><title>Unsafe_Park (157 samples, 0.03%)</title><rect x="25.3230%" y="773" width="0.0298%" height="15" fill="rgb(214,107,37)" fg:x="133506" fg:w="157"/><text x="25.5730%" y="783.50"></text></g><g><title>[perf-947659.map] (745 samples, 0.14%)</title><rect x="25.2121%" y="789" width="0.1413%" height="15" fill="rgb(245,88,54)" fg:x="132921" fg:w="745"/><text x="25.4621%" y="799.50"></text></g><g><title>profile-writer- (794 samples, 0.15%)</title><rect x="25.2081%" y="805" width="0.1506%" height="15" fill="rgb(205,146,20)" fg:x="132900" fg:w="794"/><text x="25.4581%" y="815.50"></text></g><g><title>[python3.9] (71 samples, 0.01%)</title><rect x="25.3778%" y="773" width="0.0135%" height="15" fill="rgb(220,161,25)" fg:x="133795" fg:w="71"/><text x="25.6278%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (84 samples, 0.02%)</title><rect x="25.4050%" y="757" width="0.0159%" height="15" fill="rgb(215,152,15)" fg:x="133938" fg:w="84"/><text x="25.6550%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (69 samples, 0.01%)</title><rect x="25.4078%" y="741" width="0.0131%" height="15" fill="rgb(233,192,44)" fg:x="133953" fg:w="69"/><text x="25.6578%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (69 samples, 0.01%)</title><rect x="25.4078%" y="725" width="0.0131%" height="15" fill="rgb(240,170,46)" fg:x="133953" fg:w="69"/><text x="25.6578%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (55 samples, 0.01%)</title><rect x="25.4105%" y="709" width="0.0104%" height="15" fill="rgb(207,104,33)" fg:x="133967" fg:w="55"/><text x="25.6605%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="25.4107%" y="693" width="0.0102%" height="15" fill="rgb(219,21,39)" fg:x="133968" fg:w="54"/><text x="25.6607%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (149 samples, 0.03%)</title><rect x="25.3930%" y="773" width="0.0283%" height="15" fill="rgb(214,133,29)" fg:x="133875" fg:w="149"/><text x="25.6430%" y="783.50"></text></g><g><title>[unknown] (336 samples, 0.06%)</title><rect x="25.3674%" y="789" width="0.0637%" height="15" fill="rgb(226,93,6)" fg:x="133740" fg:w="336"/><text x="25.6174%" y="799.50"></text></g><g><title>Py_RunMain (72 samples, 0.01%)</title><rect x="25.4311%" y="741" width="0.0137%" height="15" fill="rgb(252,222,34)" fg:x="134076" fg:w="72"/><text x="25.6811%" y="751.50"></text></g><g><title>Py_FinalizeEx (57 samples, 0.01%)</title><rect x="25.4340%" y="725" width="0.0108%" height="15" fill="rgb(252,92,48)" fg:x="134091" fg:w="57"/><text x="25.6840%" y="735.50"></text></g><g><title>Py_InitializeFromConfig (72 samples, 0.01%)</title><rect x="25.4450%" y="709" width="0.0137%" height="15" fill="rgb(245,223,24)" fg:x="134149" fg:w="72"/><text x="25.6950%" y="719.50"></text></g><g><title>[python3.9] (72 samples, 0.01%)</title><rect x="25.4450%" y="693" width="0.0137%" height="15" fill="rgb(205,176,3)" fg:x="134149" fg:w="72"/><text x="25.6950%" y="703.50"></text></g><g><title>[python3.9] (72 samples, 0.01%)</title><rect x="25.4450%" y="677" width="0.0137%" height="15" fill="rgb(235,151,15)" fg:x="134149" fg:w="72"/><text x="25.6950%" y="687.50"></text></g><g><title>Py_BytesMain (148 samples, 0.03%)</title><rect x="25.4311%" y="757" width="0.0281%" height="15" fill="rgb(237,209,11)" fg:x="134076" fg:w="148"/><text x="25.6811%" y="767.50"></text></g><g><title>[python3.9] (76 samples, 0.01%)</title><rect x="25.4448%" y="741" width="0.0144%" height="15" fill="rgb(243,227,24)" fg:x="134148" fg:w="76"/><text x="25.6948%" y="751.50"></text></g><g><title>[python3.9] (76 samples, 0.01%)</title><rect x="25.4448%" y="725" width="0.0144%" height="15" fill="rgb(239,193,16)" fg:x="134148" fg:w="76"/><text x="25.6948%" y="735.50"></text></g><g><title>__libc_start_main (149 samples, 0.03%)</title><rect x="25.4311%" y="773" width="0.0283%" height="15" fill="rgb(231,27,9)" fg:x="134076" fg:w="149"/><text x="25.6811%" y="783.50"></text></g><g><title>_start (160 samples, 0.03%)</title><rect x="25.4311%" y="789" width="0.0303%" height="15" fill="rgb(219,169,10)" fg:x="134076" fg:w="160"/><text x="25.6811%" y="799.50"></text></g><g><title>python3 (548 samples, 0.10%)</title><rect x="25.3611%" y="805" width="0.1039%" height="15" fill="rgb(244,229,43)" fg:x="133707" fg:w="548"/><text x="25.6111%" y="815.50"></text></g><g><title>[sed] (65 samples, 0.01%)</title><rect x="25.4971%" y="677" width="0.0123%" height="15" fill="rgb(254,38,20)" fg:x="134424" fg:w="65"/><text x="25.7471%" y="687.50"></text></g><g><title>[sed] (104 samples, 0.02%)</title><rect x="25.4966%" y="693" width="0.0197%" height="15" fill="rgb(250,47,30)" fg:x="134421" fg:w="104"/><text x="25.7466%" y="703.50"></text></g><g><title>[sed] (141 samples, 0.03%)</title><rect x="25.4907%" y="709" width="0.0267%" height="15" fill="rgb(224,124,36)" fg:x="134390" fg:w="141"/><text x="25.7407%" y="719.50"></text></g><g><title>[sed] (212 samples, 0.04%)</title><rect x="25.4888%" y="725" width="0.0402%" height="15" fill="rgb(246,68,51)" fg:x="134380" fg:w="212"/><text x="25.7388%" y="735.50"></text></g><g><title>[sed] (236 samples, 0.04%)</title><rect x="25.4863%" y="741" width="0.0448%" height="15" fill="rgb(253,43,49)" fg:x="134367" fg:w="236"/><text x="25.7363%" y="751.50"></text></g><g><title>[sed] (301 samples, 0.06%)</title><rect x="25.4861%" y="757" width="0.0571%" height="15" fill="rgb(219,54,36)" fg:x="134366" fg:w="301"/><text x="25.7361%" y="767.50"></text></g><g><title>__libc_start_main (322 samples, 0.06%)</title><rect x="25.4861%" y="773" width="0.0611%" height="15" fill="rgb(227,133,34)" fg:x="134366" fg:w="322"/><text x="25.7361%" y="783.50"></text></g><g><title>[sed] (330 samples, 0.06%)</title><rect x="25.4856%" y="789" width="0.0626%" height="15" fill="rgb(247,227,15)" fg:x="134363" fg:w="330"/><text x="25.7356%" y="799.50"></text></g><g><title>_IO_getdelim (65 samples, 0.01%)</title><rect x="25.5696%" y="693" width="0.0123%" height="15" fill="rgb(229,96,14)" fg:x="134806" fg:w="65"/><text x="25.8196%" y="703.50"></text></g><g><title>__GI__dl_addr (398 samples, 0.08%)</title><rect x="25.6018%" y="629" width="0.0755%" height="15" fill="rgb(220,79,17)" fg:x="134976" fg:w="398"/><text x="25.8518%" y="639.50"></text></g><g><title>determine_info (372 samples, 0.07%)</title><rect x="25.6068%" y="613" width="0.0706%" height="15" fill="rgb(205,131,53)" fg:x="135002" fg:w="372"/><text x="25.8568%" y="623.50"></text></g><g><title>__fopen_internal (486 samples, 0.09%)</title><rect x="25.5874%" y="693" width="0.0922%" height="15" fill="rgb(209,50,29)" fg:x="134900" fg:w="486"/><text x="25.8374%" y="703.50"></text></g><g><title>malloc_hook_ini (412 samples, 0.08%)</title><rect x="25.6015%" y="677" width="0.0781%" height="15" fill="rgb(245,86,46)" fg:x="134974" fg:w="412"/><text x="25.8515%" y="687.50"></text></g><g><title>ptmalloc_init (412 samples, 0.08%)</title><rect x="25.6015%" y="661" width="0.0781%" height="15" fill="rgb(235,66,46)" fg:x="134974" fg:w="412"/><text x="25.8515%" y="671.50"></text></g><g><title>ptmalloc_init (412 samples, 0.08%)</title><rect x="25.6015%" y="645" width="0.0781%" height="15" fill="rgb(232,148,31)" fg:x="134974" fg:w="412"/><text x="25.8515%" y="655.50"></text></g><g><title>selinuxfs_exists (582 samples, 0.11%)</title><rect x="25.5696%" y="709" width="0.1104%" height="15" fill="rgb(217,149,8)" fg:x="134806" fg:w="582"/><text x="25.8196%" y="719.50"></text></g><g><title>[libselinux.so.1] (655 samples, 0.12%)</title><rect x="25.5561%" y="725" width="0.1242%" height="15" fill="rgb(209,183,11)" fg:x="134735" fg:w="655"/><text x="25.8061%" y="735.50"></text></g><g><title>_init (77 samples, 0.01%)</title><rect x="25.6806%" y="725" width="0.0146%" height="15" fill="rgb(208,55,20)" fg:x="135391" fg:w="77"/><text x="25.9306%" y="735.50"></text></g><g><title>_dl_start_user (793 samples, 0.15%)</title><rect x="25.5554%" y="789" width="0.1504%" height="15" fill="rgb(218,39,14)" fg:x="134731" fg:w="793"/><text x="25.8054%" y="799.50"></text></g><g><title>_dl_init (792 samples, 0.15%)</title><rect x="25.5556%" y="773" width="0.1502%" height="15" fill="rgb(216,169,33)" fg:x="134732" fg:w="792"/><text x="25.8056%" y="783.50"></text></g><g><title>call_init (790 samples, 0.15%)</title><rect x="25.5559%" y="757" width="0.1498%" height="15" fill="rgb(233,80,24)" fg:x="134734" fg:w="790"/><text x="25.8059%" y="767.50"></text></g><g><title>call_init (790 samples, 0.15%)</title><rect x="25.5559%" y="741" width="0.1498%" height="15" fill="rgb(213,179,31)" fg:x="134734" fg:w="790"/><text x="25.8059%" y="751.50"></text></g><g><title>init_cacheinfo (55 samples, 0.01%)</title><rect x="25.6954%" y="725" width="0.0104%" height="15" fill="rgb(209,19,5)" fg:x="135469" fg:w="55"/><text x="25.9454%" y="735.50"></text></g><g><title>__pthread_initialize_minimal_internal (91 samples, 0.02%)</title><rect x="25.7065%" y="773" width="0.0173%" height="15" fill="rgb(219,18,35)" fg:x="135528" fg:w="91"/><text x="25.9565%" y="783.50"></text></g><g><title>_init (110 samples, 0.02%)</title><rect x="25.7058%" y="789" width="0.0209%" height="15" fill="rgb(209,169,16)" fg:x="135524" fg:w="110"/><text x="25.9558%" y="799.50"></text></g><g><title>do_user_addr_fault (72 samples, 0.01%)</title><rect x="25.7631%" y="565" width="0.0137%" height="15" fill="rgb(245,90,51)" fg:x="135826" fg:w="72"/><text x="26.0131%" y="575.50"></text></g><g><title>handle_mm_fault (64 samples, 0.01%)</title><rect x="25.7646%" y="549" width="0.0121%" height="15" fill="rgb(220,99,45)" fg:x="135834" fg:w="64"/><text x="26.0146%" y="559.50"></text></g><g><title>asm_exc_page_fault (73 samples, 0.01%)</title><rect x="25.7631%" y="597" width="0.0138%" height="15" fill="rgb(249,89,25)" fg:x="135826" fg:w="73"/><text x="26.0131%" y="607.50"></text></g><g><title>exc_page_fault (73 samples, 0.01%)</title><rect x="25.7631%" y="581" width="0.0138%" height="15" fill="rgb(239,193,0)" fg:x="135826" fg:w="73"/><text x="26.0131%" y="591.50"></text></g><g><title>[ld-2.31.so] (96 samples, 0.02%)</title><rect x="25.7600%" y="613" width="0.0182%" height="15" fill="rgb(231,126,1)" fg:x="135810" fg:w="96"/><text x="26.0100%" y="623.50"></text></g><g><title>vma_interval_tree_insert (68 samples, 0.01%)</title><rect x="25.8069%" y="437" width="0.0129%" height="15" fill="rgb(243,166,3)" fg:x="136057" fg:w="68"/><text x="26.0569%" y="447.50"></text></g><g><title>__vma_adjust (179 samples, 0.03%)</title><rect x="25.7940%" y="453" width="0.0340%" height="15" fill="rgb(223,22,34)" fg:x="135989" fg:w="179"/><text x="26.0440%" y="463.50"></text></g><g><title>__split_vma (261 samples, 0.05%)</title><rect x="25.7932%" y="469" width="0.0495%" height="15" fill="rgb(251,52,51)" fg:x="135985" fg:w="261"/><text x="26.0432%" y="479.50"></text></g><g><title>vm_area_dup (78 samples, 0.01%)</title><rect x="25.8279%" y="453" width="0.0148%" height="15" fill="rgb(221,165,28)" fg:x="136168" fg:w="78"/><text x="26.0779%" y="463.50"></text></g><g><title>kmem_cache_alloc (63 samples, 0.01%)</title><rect x="25.8308%" y="437" width="0.0119%" height="15" fill="rgb(218,121,47)" fg:x="136183" fg:w="63"/><text x="26.0808%" y="447.50"></text></g><g><title>unmap_region (68 samples, 0.01%)</title><rect x="25.8528%" y="469" width="0.0129%" height="15" fill="rgb(209,120,9)" fg:x="136299" fg:w="68"/><text x="26.1028%" y="479.50"></text></g><g><title>__do_munmap (395 samples, 0.07%)</title><rect x="25.7910%" y="485" width="0.0749%" height="15" fill="rgb(236,68,12)" fg:x="135973" fg:w="395"/><text x="26.0410%" y="495.50"></text></g><g><title>perf_iterate_sb (89 samples, 0.02%)</title><rect x="25.8776%" y="469" width="0.0169%" height="15" fill="rgb(225,194,26)" fg:x="136430" fg:w="89"/><text x="26.1276%" y="479.50"></text></g><g><title>perf_iterate_ctx (80 samples, 0.02%)</title><rect x="25.8793%" y="453" width="0.0152%" height="15" fill="rgb(231,84,39)" fg:x="136439" fg:w="80"/><text x="26.1293%" y="463.50"></text></g><g><title>perf_event_mmap_output (67 samples, 0.01%)</title><rect x="25.8818%" y="437" width="0.0127%" height="15" fill="rgb(210,11,45)" fg:x="136452" fg:w="67"/><text x="26.1318%" y="447.50"></text></g><g><title>perf_event_mmap (159 samples, 0.03%)</title><rect x="25.8666%" y="485" width="0.0302%" height="15" fill="rgb(224,54,52)" fg:x="136372" fg:w="159"/><text x="26.1166%" y="495.50"></text></g><g><title>vma_link (63 samples, 0.01%)</title><rect x="25.9031%" y="485" width="0.0119%" height="15" fill="rgb(238,102,14)" fg:x="136564" fg:w="63"/><text x="26.1531%" y="495.50"></text></g><g><title>mmap_region (710 samples, 0.13%)</title><rect x="25.7851%" y="501" width="0.1347%" height="15" fill="rgb(243,160,52)" fg:x="135942" fg:w="710"/><text x="26.0351%" y="511.50"></text></g><g><title>do_mmap (730 samples, 0.14%)</title><rect x="25.7815%" y="517" width="0.1385%" height="15" fill="rgb(216,114,19)" fg:x="135923" fg:w="730"/><text x="26.0315%" y="527.50"></text></g><g><title>ksys_mmap_pgoff (753 samples, 0.14%)</title><rect x="25.7794%" y="549" width="0.1428%" height="15" fill="rgb(244,166,37)" fg:x="135912" fg:w="753"/><text x="26.0294%" y="559.50"></text></g><g><title>vm_mmap_pgoff (743 samples, 0.14%)</title><rect x="25.7813%" y="533" width="0.1409%" height="15" fill="rgb(246,29,44)" fg:x="135922" fg:w="743"/><text x="26.0313%" y="543.50"></text></g><g><title>do_syscall_64 (801 samples, 0.15%)</title><rect x="25.7794%" y="565" width="0.1519%" height="15" fill="rgb(215,56,53)" fg:x="135912" fg:w="801"/><text x="26.0294%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (804 samples, 0.15%)</title><rect x="25.7792%" y="581" width="0.1525%" height="15" fill="rgb(217,60,2)" fg:x="135911" fg:w="804"/><text x="26.0292%" y="591.50"></text></g><g><title>__mmap64 (814 samples, 0.15%)</title><rect x="25.7782%" y="597" width="0.1544%" height="15" fill="rgb(207,26,24)" fg:x="135906" fg:w="814"/><text x="26.0282%" y="607.50"></text></g><g><title>__mmap64 (815 samples, 0.15%)</title><rect x="25.7782%" y="613" width="0.1546%" height="15" fill="rgb(252,210,15)" fg:x="135906" fg:w="815"/><text x="26.0282%" y="623.50"></text></g><g><title>_dl_map_segments (915 samples, 0.17%)</title><rect x="25.7595%" y="629" width="0.1736%" height="15" fill="rgb(253,209,26)" fg:x="135807" fg:w="915"/><text x="26.0095%" y="639.50"></text></g><g><title>_dl_setup_hash (58 samples, 0.01%)</title><rect x="25.9372%" y="629" width="0.0110%" height="15" fill="rgb(238,170,14)" fg:x="136744" fg:w="58"/><text x="26.1872%" y="639.50"></text></g><g><title>do_user_addr_fault (82 samples, 0.02%)</title><rect x="25.9541%" y="581" width="0.0156%" height="15" fill="rgb(216,178,15)" fg:x="136833" fg:w="82"/><text x="26.2041%" y="591.50"></text></g><g><title>handle_mm_fault (79 samples, 0.01%)</title><rect x="25.9546%" y="565" width="0.0150%" height="15" fill="rgb(250,197,2)" fg:x="136836" fg:w="79"/><text x="26.2046%" y="575.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="25.9537%" y="613" width="0.0161%" height="15" fill="rgb(212,70,42)" fg:x="136831" fg:w="85"/><text x="26.2037%" y="623.50"></text></g><g><title>exc_page_fault (84 samples, 0.02%)</title><rect x="25.9539%" y="597" width="0.0159%" height="15" fill="rgb(227,213,9)" fg:x="136832" fg:w="84"/><text x="26.2039%" y="607.50"></text></g><g><title>_dl_map_object_from_fd (1,169 samples, 0.22%)</title><rect x="25.7500%" y="645" width="0.2217%" height="15" fill="rgb(245,99,25)" fg:x="135757" fg:w="1169"/><text x="26.0000%" y="655.50"></text></g><g><title>elf_get_dynamic_info (123 samples, 0.02%)</title><rect x="25.9484%" y="629" width="0.0233%" height="15" fill="rgb(250,82,29)" fg:x="136803" fg:w="123"/><text x="26.1984%" y="639.50"></text></g><g><title>do_filp_open (81 samples, 0.02%)</title><rect x="25.9823%" y="533" width="0.0154%" height="15" fill="rgb(241,226,54)" fg:x="136982" fg:w="81"/><text x="26.2323%" y="543.50"></text></g><g><title>path_openat (78 samples, 0.01%)</title><rect x="25.9829%" y="517" width="0.0148%" height="15" fill="rgb(221,99,41)" fg:x="136985" fg:w="78"/><text x="26.2329%" y="527.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="25.9814%" y="581" width="0.0193%" height="15" fill="rgb(213,90,21)" fg:x="136977" fg:w="102"/><text x="26.2314%" y="591.50"></text></g><g><title>__x64_sys_openat (101 samples, 0.02%)</title><rect x="25.9816%" y="565" width="0.0192%" height="15" fill="rgb(205,208,24)" fg:x="136978" fg:w="101"/><text x="26.2316%" y="575.50"></text></g><g><title>do_sys_openat2 (101 samples, 0.02%)</title><rect x="25.9816%" y="549" width="0.0192%" height="15" fill="rgb(246,31,12)" fg:x="136978" fg:w="101"/><text x="26.2316%" y="559.50"></text></g><g><title>__GI___open64_nocancel (109 samples, 0.02%)</title><rect x="25.9812%" y="613" width="0.0207%" height="15" fill="rgb(213,154,6)" fg:x="136976" fg:w="109"/><text x="26.2312%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (108 samples, 0.02%)</title><rect x="25.9814%" y="597" width="0.0205%" height="15" fill="rgb(222,163,29)" fg:x="136977" fg:w="108"/><text x="26.2314%" y="607.50"></text></g><g><title>open_path (166 samples, 0.03%)</title><rect x="25.9765%" y="645" width="0.0315%" height="15" fill="rgb(227,201,8)" fg:x="136951" fg:w="166"/><text x="26.2265%" y="655.50"></text></g><g><title>open_verify (149 samples, 0.03%)</title><rect x="25.9797%" y="629" width="0.0283%" height="15" fill="rgb(233,9,32)" fg:x="136968" fg:w="149"/><text x="26.2297%" y="639.50"></text></g><g><title>_dl_catch_exception (1,410 samples, 0.27%)</title><rect x="25.7452%" y="693" width="0.2674%" height="15" fill="rgb(217,54,24)" fg:x="135732" fg:w="1410"/><text x="25.9952%" y="703.50"></text></g><g><title>openaux (1,406 samples, 0.27%)</title><rect x="25.7460%" y="677" width="0.2667%" height="15" fill="rgb(235,192,0)" fg:x="135736" fg:w="1406"/><text x="25.9960%" y="687.50"></text></g><g><title>_dl_map_object (1,405 samples, 0.27%)</title><rect x="25.7462%" y="661" width="0.2665%" height="15" fill="rgb(235,45,9)" fg:x="135737" fg:w="1405"/><text x="25.9962%" y="671.50"></text></g><g><title>_dl_map_object_deps (1,488 samples, 0.28%)</title><rect x="25.7420%" y="709" width="0.2822%" height="15" fill="rgb(246,42,40)" fg:x="135715" fg:w="1488"/><text x="25.9920%" y="719.50"></text></g><g><title>_dl_check_map_versions (131 samples, 0.02%)</title><rect x="26.0250%" y="661" width="0.0248%" height="15" fill="rgb(248,111,24)" fg:x="137207" fg:w="131"/><text x="26.2750%" y="671.50"></text></g><g><title>match_symbol (67 samples, 0.01%)</title><rect x="26.0372%" y="645" width="0.0127%" height="15" fill="rgb(249,65,22)" fg:x="137271" fg:w="67"/><text x="26.2872%" y="655.50"></text></g><g><title>_dl_receive_error (134 samples, 0.03%)</title><rect x="26.0248%" y="709" width="0.0254%" height="15" fill="rgb(238,111,51)" fg:x="137206" fg:w="134"/><text x="26.2748%" y="719.50"></text></g><g><title>version_check_doit (134 samples, 0.03%)</title><rect x="26.0248%" y="693" width="0.0254%" height="15" fill="rgb(250,118,22)" fg:x="137206" fg:w="134"/><text x="26.2748%" y="703.50"></text></g><g><title>_dl_check_all_versions (134 samples, 0.03%)</title><rect x="26.0248%" y="677" width="0.0254%" height="15" fill="rgb(234,84,26)" fg:x="137206" fg:w="134"/><text x="26.2748%" y="687.50"></text></g><g><title>mprotect_fixup (53 samples, 0.01%)</title><rect x="26.0516%" y="597" width="0.0101%" height="15" fill="rgb(243,172,12)" fg:x="137347" fg:w="53"/><text x="26.3016%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="26.0506%" y="661" width="0.0112%" height="15" fill="rgb(236,150,49)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="671.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="26.0506%" y="645" width="0.0112%" height="15" fill="rgb(225,197,26)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="655.50"></text></g><g><title>__x64_sys_mprotect (59 samples, 0.01%)</title><rect x="26.0506%" y="629" width="0.0112%" height="15" fill="rgb(214,17,42)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="639.50"></text></g><g><title>do_mprotect_pkey (59 samples, 0.01%)</title><rect x="26.0506%" y="613" width="0.0112%" height="15" fill="rgb(224,165,40)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="623.50"></text></g><g><title>_dl_protect_relro (61 samples, 0.01%)</title><rect x="26.0504%" y="693" width="0.0116%" height="15" fill="rgb(246,100,4)" fg:x="137341" fg:w="61"/><text x="26.3004%" y="703.50"></text></g><g><title>__mprotect (60 samples, 0.01%)</title><rect x="26.0506%" y="677" width="0.0114%" height="15" fill="rgb(222,103,0)" fg:x="137342" fg:w="60"/><text x="26.3006%" y="687.50"></text></g><g><title>check_match (60 samples, 0.01%)</title><rect x="26.1039%" y="629" width="0.0114%" height="15" fill="rgb(227,189,26)" fg:x="137623" fg:w="60"/><text x="26.3539%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (221 samples, 0.04%)</title><rect x="26.0740%" y="661" width="0.0419%" height="15" fill="rgb(214,202,17)" fg:x="137465" fg:w="221"/><text x="26.3240%" y="671.50"></text></g><g><title>do_lookup_x (174 samples, 0.03%)</title><rect x="26.0829%" y="645" width="0.0330%" height="15" fill="rgb(229,111,3)" fg:x="137512" fg:w="174"/><text x="26.3329%" y="655.50"></text></g><g><title>elf_machine_rela (256 samples, 0.05%)</title><rect x="26.0681%" y="677" width="0.0486%" height="15" fill="rgb(229,172,15)" fg:x="137434" fg:w="256"/><text x="26.3181%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (332 samples, 0.06%)</title><rect x="26.0620%" y="693" width="0.0630%" height="15" fill="rgb(230,224,35)" fg:x="137402" fg:w="332"/><text x="26.3120%" y="703.50"></text></g><g><title>_dl_relocate_object (412 samples, 0.08%)</title><rect x="26.0502%" y="709" width="0.0781%" height="15" fill="rgb(251,141,6)" fg:x="137340" fg:w="412"/><text x="26.3002%" y="719.50"></text></g><g><title>init_tls (55 samples, 0.01%)</title><rect x="26.1381%" y="709" width="0.0104%" height="15" fill="rgb(225,208,6)" fg:x="137803" fg:w="55"/><text x="26.3881%" y="719.50"></text></g><g><title>[ld-2.31.so] (2,191 samples, 0.42%)</title><rect x="25.7337%" y="725" width="0.4156%" height="15" fill="rgb(246,181,16)" fg:x="135671" fg:w="2191"/><text x="25.9837%" y="735.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="26.1513%" y="709" width="0.0127%" height="15" fill="rgb(227,129,36)" fg:x="137873" fg:w="67"/><text x="26.4013%" y="719.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.01%)</title><rect x="26.1513%" y="693" width="0.0127%" height="15" fill="rgb(248,117,24)" fg:x="137873" fg:w="67"/><text x="26.4013%" y="703.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="26.1529%" y="677" width="0.0112%" height="15" fill="rgb(214,185,35)" fg:x="137881" fg:w="59"/><text x="26.4029%" y="687.50"></text></g><g><title>asm_exc_page_fault (68 samples, 0.01%)</title><rect x="26.1513%" y="725" width="0.0129%" height="15" fill="rgb(236,150,34)" fg:x="137873" fg:w="68"/><text x="26.4013%" y="735.50"></text></g><g><title>_dl_start_final (2,337 samples, 0.44%)</title><rect x="25.7293%" y="757" width="0.4433%" height="15" fill="rgb(243,228,27)" fg:x="135648" fg:w="2337"/><text x="25.9793%" y="767.50"></text></g><g><title>_dl_sysdep_start (2,335 samples, 0.44%)</title><rect x="25.7297%" y="741" width="0.4429%" height="15" fill="rgb(245,77,44)" fg:x="135650" fg:w="2335"/><text x="25.9797%" y="751.50"></text></g><g><title>_dl_start (2,427 samples, 0.46%)</title><rect x="25.7282%" y="773" width="0.4603%" height="15" fill="rgb(235,214,42)" fg:x="135642" fg:w="2427"/><text x="25.9782%" y="783.50"></text></g><g><title>_start (2,486 samples, 0.47%)</title><rect x="25.7267%" y="789" width="0.4715%" height="15" fill="rgb(221,74,3)" fg:x="135634" fg:w="2486"/><text x="25.9767%" y="799.50"></text></g><g><title>asm_exc_page_fault (223 samples, 0.04%)</title><rect x="26.1982%" y="789" width="0.0423%" height="15" fill="rgb(206,121,29)" fg:x="138120" fg:w="223"/><text x="26.4482%" y="799.50"></text></g><g><title>__clear_user (53 samples, 0.01%)</title><rect x="26.2430%" y="693" width="0.0101%" height="15" fill="rgb(249,131,53)" fg:x="138356" fg:w="53"/><text x="26.4930%" y="703.50"></text></g><g><title>__do_munmap (59 samples, 0.01%)</title><rect x="26.2631%" y="661" width="0.0112%" height="15" fill="rgb(236,170,29)" fg:x="138462" fg:w="59"/><text x="26.5131%" y="671.50"></text></g><g><title>__vm_munmap (62 samples, 0.01%)</title><rect x="26.2631%" y="677" width="0.0118%" height="15" fill="rgb(247,96,15)" fg:x="138462" fg:w="62"/><text x="26.5131%" y="687.50"></text></g><g><title>do_mmap (59 samples, 0.01%)</title><rect x="26.2750%" y="661" width="0.0112%" height="15" fill="rgb(211,210,7)" fg:x="138525" fg:w="59"/><text x="26.5250%" y="671.50"></text></g><g><title>elf_map (125 samples, 0.02%)</title><rect x="26.2631%" y="693" width="0.0237%" height="15" fill="rgb(240,88,50)" fg:x="138462" fg:w="125"/><text x="26.5131%" y="703.50"></text></g><g><title>vm_mmap_pgoff (63 samples, 0.01%)</title><rect x="26.2748%" y="677" width="0.0119%" height="15" fill="rgb(209,229,26)" fg:x="138524" fg:w="63"/><text x="26.5248%" y="687.50"></text></g><g><title>do_mmap (98 samples, 0.02%)</title><rect x="26.3052%" y="677" width="0.0186%" height="15" fill="rgb(210,68,23)" fg:x="138684" fg:w="98"/><text x="26.5552%" y="687.50"></text></g><g><title>mmap_region (98 samples, 0.02%)</title><rect x="26.3052%" y="661" width="0.0186%" height="15" fill="rgb(229,180,13)" fg:x="138684" fg:w="98"/><text x="26.5552%" y="671.50"></text></g><g><title>__x64_sys_execve (445 samples, 0.08%)</title><rect x="26.2407%" y="757" width="0.0844%" height="15" fill="rgb(236,53,44)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="767.50"></text></g><g><title>do_execveat_common (445 samples, 0.08%)</title><rect x="26.2407%" y="741" width="0.0844%" height="15" fill="rgb(244,214,29)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="751.50"></text></g><g><title>bprm_execve (445 samples, 0.08%)</title><rect x="26.2407%" y="725" width="0.0844%" height="15" fill="rgb(220,75,29)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="735.50"></text></g><g><title>load_elf_binary (445 samples, 0.08%)</title><rect x="26.2407%" y="709" width="0.0844%" height="15" fill="rgb(214,183,37)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="719.50"></text></g><g><title>vm_mmap_pgoff (105 samples, 0.02%)</title><rect x="26.3052%" y="693" width="0.0199%" height="15" fill="rgb(239,117,29)" fg:x="138684" fg:w="105"/><text x="26.5552%" y="703.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.01%)</title><rect x="26.3442%" y="677" width="0.0142%" height="15" fill="rgb(237,171,35)" fg:x="138890" fg:w="75"/><text x="26.5942%" y="687.50"></text></g><g><title>release_pages (56 samples, 0.01%)</title><rect x="26.3478%" y="661" width="0.0106%" height="15" fill="rgb(229,178,53)" fg:x="138909" fg:w="56"/><text x="26.5978%" y="671.50"></text></g><g><title>exit_mmap (232 samples, 0.04%)</title><rect x="26.3257%" y="693" width="0.0440%" height="15" fill="rgb(210,102,19)" fg:x="138792" fg:w="232"/><text x="26.5757%" y="703.50"></text></g><g><title>unmap_vmas (58 samples, 0.01%)</title><rect x="26.3587%" y="677" width="0.0110%" height="15" fill="rgb(235,127,22)" fg:x="138966" fg:w="58"/><text x="26.6087%" y="687.50"></text></g><g><title>unmap_page_range (57 samples, 0.01%)</title><rect x="26.3588%" y="661" width="0.0108%" height="15" fill="rgb(244,31,31)" fg:x="138967" fg:w="57"/><text x="26.6088%" y="671.50"></text></g><g><title>mmput (233 samples, 0.04%)</title><rect x="26.3257%" y="709" width="0.0442%" height="15" fill="rgb(231,43,21)" fg:x="138792" fg:w="233"/><text x="26.5757%" y="719.50"></text></g><g><title>__x64_sys_exit_group (262 samples, 0.05%)</title><rect x="26.3251%" y="757" width="0.0497%" height="15" fill="rgb(217,131,35)" fg:x="138789" fg:w="262"/><text x="26.5751%" y="767.50"></text></g><g><title>do_group_exit (262 samples, 0.05%)</title><rect x="26.3251%" y="741" width="0.0497%" height="15" fill="rgb(221,149,4)" fg:x="138789" fg:w="262"/><text x="26.5751%" y="751.50"></text></g><g><title>do_exit (262 samples, 0.05%)</title><rect x="26.3251%" y="725" width="0.0497%" height="15" fill="rgb(232,170,28)" fg:x="138789" fg:w="262"/><text x="26.5751%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (710 samples, 0.13%)</title><rect x="26.2405%" y="789" width="0.1347%" height="15" fill="rgb(238,56,10)" fg:x="138343" fg:w="710"/><text x="26.4905%" y="799.50"></text></g><g><title>do_syscall_64 (709 samples, 0.13%)</title><rect x="26.2407%" y="773" width="0.1345%" height="15" fill="rgb(235,196,14)" fg:x="138344" fg:w="709"/><text x="26.4907%" y="783.50"></text></g><g><title>sed (4,808 samples, 0.91%)</title><rect x="25.4651%" y="805" width="0.9120%" height="15" fill="rgb(216,45,48)" fg:x="134255" fg:w="4808"/><text x="25.7151%" y="815.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (56 samples, 0.01%)</title><rect x="26.4000%" y="773" width="0.0106%" height="15" fill="rgb(238,213,17)" fg:x="139184" fg:w="56"/><text x="26.6500%" y="783.50"></text></g><g><title>InstanceKlass::initialize (182 samples, 0.03%)</title><rect x="26.4552%" y="773" width="0.0345%" height="15" fill="rgb(212,13,2)" fg:x="139475" fg:w="182"/><text x="26.7052%" y="783.50"></text></g><g><title>JavaThread::is_Java_thread (77 samples, 0.01%)</title><rect x="26.5222%" y="773" width="0.0146%" height="15" fill="rgb(240,114,20)" fg:x="139828" fg:w="77"/><text x="26.7722%" y="783.50"></text></g><g><title>_int_free (161 samples, 0.03%)</title><rect x="26.6187%" y="773" width="0.0305%" height="15" fill="rgb(228,41,40)" fg:x="140337" fg:w="161"/><text x="26.8687%" y="783.50"></text></g><g><title>check_bounds (164 samples, 0.03%)</title><rect x="26.6544%" y="773" width="0.0311%" height="15" fill="rgb(244,132,35)" fg:x="140525" fg:w="164"/><text x="26.9044%" y="783.50"></text></g><g><title>jni_NewObjectV (92 samples, 0.02%)</title><rect x="26.7010%" y="773" width="0.0175%" height="15" fill="rgb(253,189,4)" fg:x="140771" fg:w="92"/><text x="26.9510%" y="783.50"></text></g><g><title>[anon] (1,866 samples, 0.35%)</title><rect x="26.3909%" y="789" width="0.3539%" height="15" fill="rgb(224,37,19)" fg:x="139136" fg:w="1866"/><text x="26.6409%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (56 samples, 0.01%)</title><rect x="27.2589%" y="773" width="0.0106%" height="15" fill="rgb(235,223,18)" fg:x="143712" fg:w="56"/><text x="27.5089%" y="783.50"></text></g><g><title>[libc-2.31.so] (58 samples, 0.01%)</title><rect x="27.2695%" y="773" width="0.0110%" height="15" fill="rgb(235,163,25)" fg:x="143768" fg:w="58"/><text x="27.5195%" y="783.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="27.2860%" y="741" width="0.0131%" height="15" fill="rgb(217,145,28)" fg:x="143855" fg:w="69"/><text x="27.5360%" y="751.50"></text></g><g><title>__x64_sys_close (65 samples, 0.01%)</title><rect x="27.2867%" y="725" width="0.0123%" height="15" fill="rgb(223,223,32)" fg:x="143859" fg:w="65"/><text x="27.5367%" y="735.50"></text></g><g><title>btrfs_release_file (67 samples, 0.01%)</title><rect x="27.3086%" y="677" width="0.0127%" height="15" fill="rgb(227,189,39)" fg:x="143974" fg:w="67"/><text x="27.5586%" y="687.50"></text></g><g><title>kfree (61 samples, 0.01%)</title><rect x="27.3097%" y="661" width="0.0116%" height="15" fill="rgb(248,10,22)" fg:x="143980" fg:w="61"/><text x="27.5597%" y="671.50"></text></g><g><title>__fput (134 samples, 0.03%)</title><rect x="27.3050%" y="693" width="0.0254%" height="15" fill="rgb(248,46,39)" fg:x="143955" fg:w="134"/><text x="27.5550%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (259 samples, 0.05%)</title><rect x="27.2858%" y="757" width="0.0491%" height="15" fill="rgb(248,113,48)" fg:x="143854" fg:w="259"/><text x="27.5358%" y="767.50"></text></g><g><title>syscall_exit_to_user_mode (189 samples, 0.04%)</title><rect x="27.2991%" y="741" width="0.0358%" height="15" fill="rgb(245,16,25)" fg:x="143924" fg:w="189"/><text x="27.5491%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (188 samples, 0.04%)</title><rect x="27.2993%" y="725" width="0.0357%" height="15" fill="rgb(249,152,16)" fg:x="143925" fg:w="188"/><text x="27.5493%" y="735.50"></text></g><g><title>task_work_run (162 samples, 0.03%)</title><rect x="27.3042%" y="709" width="0.0307%" height="15" fill="rgb(250,16,1)" fg:x="143951" fg:w="162"/><text x="27.5542%" y="719.50"></text></g><g><title>__GI___close_nocancel (291 samples, 0.06%)</title><rect x="27.2805%" y="773" width="0.0552%" height="15" fill="rgb(249,138,3)" fg:x="143826" fg:w="291"/><text x="27.5305%" y="783.50"></text></g><g><title>__GI___libc_free (410 samples, 0.08%)</title><rect x="27.3357%" y="773" width="0.0778%" height="15" fill="rgb(227,71,41)" fg:x="144117" fg:w="410"/><text x="27.5857%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (157 samples, 0.03%)</title><rect x="27.4470%" y="757" width="0.0298%" height="15" fill="rgb(209,184,23)" fg:x="144704" fg:w="157"/><text x="27.6970%" y="767.50"></text></g><g><title>lockref_put_or_lock (223 samples, 0.04%)</title><rect x="27.5529%" y="677" width="0.0423%" height="15" fill="rgb(223,215,31)" fg:x="145262" fg:w="223"/><text x="27.8029%" y="687.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="27.5732%" y="661" width="0.0220%" height="15" fill="rgb(210,146,28)" fg:x="145369" fg:w="116"/><text x="27.8232%" y="671.50"></text></g><g><title>dput (417 samples, 0.08%)</title><rect x="27.5164%" y="693" width="0.0791%" height="15" fill="rgb(209,183,41)" fg:x="145070" fg:w="417"/><text x="27.7664%" y="703.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="27.6356%" y="613" width="0.0157%" height="15" fill="rgb(209,224,45)" fg:x="145698" fg:w="83"/><text x="27.8856%" y="623.50"></text></g><g><title>__d_lookup (196 samples, 0.04%)</title><rect x="27.6145%" y="629" width="0.0372%" height="15" fill="rgb(224,209,51)" fg:x="145587" fg:w="196"/><text x="27.8645%" y="639.50"></text></g><g><title>__lookup_hash (248 samples, 0.05%)</title><rect x="27.6048%" y="677" width="0.0470%" height="15" fill="rgb(223,17,39)" fg:x="145536" fg:w="248"/><text x="27.8548%" y="687.50"></text></g><g><title>lookup_dcache (234 samples, 0.04%)</title><rect x="27.6075%" y="661" width="0.0444%" height="15" fill="rgb(234,204,37)" fg:x="145550" fg:w="234"/><text x="27.8575%" y="671.50"></text></g><g><title>d_lookup (223 samples, 0.04%)</title><rect x="27.6096%" y="645" width="0.0423%" height="15" fill="rgb(236,120,5)" fg:x="145561" fg:w="223"/><text x="27.8596%" y="655.50"></text></g><g><title>down_write (124 samples, 0.02%)</title><rect x="27.6519%" y="677" width="0.0235%" height="15" fill="rgb(248,97,27)" fg:x="145784" fg:w="124"/><text x="27.9019%" y="687.50"></text></g><g><title>__legitimize_mnt (119 samples, 0.02%)</title><rect x="27.6980%" y="597" width="0.0226%" height="15" fill="rgb(240,66,17)" fg:x="146027" fg:w="119"/><text x="27.9480%" y="607.50"></text></g><g><title>__legitimize_path (199 samples, 0.04%)</title><rect x="27.6947%" y="613" width="0.0377%" height="15" fill="rgb(210,79,3)" fg:x="146010" fg:w="199"/><text x="27.9447%" y="623.50"></text></g><g><title>lockref_get_not_dead (63 samples, 0.01%)</title><rect x="27.7205%" y="597" width="0.0119%" height="15" fill="rgb(214,176,27)" fg:x="146146" fg:w="63"/><text x="27.9705%" y="607.50"></text></g><g><title>complete_walk (242 samples, 0.05%)</title><rect x="27.6911%" y="645" width="0.0459%" height="15" fill="rgb(235,185,3)" fg:x="145991" fg:w="242"/><text x="27.9411%" y="655.50"></text></g><g><title>try_to_unlazy (235 samples, 0.04%)</title><rect x="27.6925%" y="629" width="0.0446%" height="15" fill="rgb(227,24,12)" fg:x="145998" fg:w="235"/><text x="27.9425%" y="639.50"></text></g><g><title>btrfs_permission (79 samples, 0.01%)</title><rect x="28.0728%" y="613" width="0.0150%" height="15" fill="rgb(252,169,48)" fg:x="148003" fg:w="79"/><text x="28.3228%" y="623.50"></text></g><g><title>inode_permission.part.0 (1,095 samples, 0.21%)</title><rect x="27.9550%" y="629" width="0.2077%" height="15" fill="rgb(212,65,1)" fg:x="147382" fg:w="1095"/><text x="28.2050%" y="639.50"></text></g><g><title>generic_permission (395 samples, 0.07%)</title><rect x="28.0878%" y="613" width="0.0749%" height="15" fill="rgb(242,39,24)" fg:x="148082" fg:w="395"/><text x="28.3378%" y="623.50"></text></g><g><title>security_inode_permission (155 samples, 0.03%)</title><rect x="28.1627%" y="629" width="0.0294%" height="15" fill="rgb(249,32,23)" fg:x="148477" fg:w="155"/><text x="28.4127%" y="639.50"></text></g><g><title>lookup_fast (2,022 samples, 0.38%)</title><rect x="28.2693%" y="613" width="0.3835%" height="15" fill="rgb(251,195,23)" fg:x="149039" fg:w="2022"/><text x="28.5193%" y="623.50"></text></g><g><title>__d_lookup_rcu (1,509 samples, 0.29%)</title><rect x="28.3666%" y="597" width="0.2862%" height="15" fill="rgb(236,174,8)" fg:x="149552" fg:w="1509"/><text x="28.6166%" y="607.50"></text></g><g><title>link_path_walk.part.0 (5,360 samples, 1.02%)</title><rect x="27.7370%" y="645" width="1.0167%" height="15" fill="rgb(220,197,8)" fg:x="146233" fg:w="5360"/><text x="27.9870%" y="655.50"></text></g><g><title>walk_component (2,961 samples, 0.56%)</title><rect x="28.1921%" y="629" width="0.5616%" height="15" fill="rgb(240,108,37)" fg:x="148632" fg:w="2961"/><text x="28.4421%" y="639.50"></text></g><g><title>step_into (532 samples, 0.10%)</title><rect x="28.6528%" y="613" width="0.1009%" height="15" fill="rgb(232,176,24)" fg:x="151061" fg:w="532"/><text x="28.9028%" y="623.50"></text></g><g><title>path_init (129 samples, 0.02%)</title><rect x="28.7537%" y="645" width="0.0245%" height="15" fill="rgb(243,35,29)" fg:x="151593" fg:w="129"/><text x="29.0037%" y="655.50"></text></g><g><title>nd_jump_root (90 samples, 0.02%)</title><rect x="28.7611%" y="629" width="0.0171%" height="15" fill="rgb(210,37,18)" fg:x="151632" fg:w="90"/><text x="29.0111%" y="639.50"></text></g><g><title>set_root (55 samples, 0.01%)</title><rect x="28.7677%" y="613" width="0.0104%" height="15" fill="rgb(224,184,40)" fg:x="151667" fg:w="55"/><text x="29.0177%" y="623.50"></text></g><g><title>filename_parentat (5,841 samples, 1.11%)</title><rect x="27.6754%" y="677" width="1.1079%" height="15" fill="rgb(236,39,29)" fg:x="145908" fg:w="5841"/><text x="27.9254%" y="687.50"></text></g><g><title>path_parentat (5,784 samples, 1.10%)</title><rect x="27.6862%" y="661" width="1.0971%" height="15" fill="rgb(232,48,39)" fg:x="145965" fg:w="5784"/><text x="27.9362%" y="671.50"></text></g><g><title>kmem_cache_free (203 samples, 0.04%)</title><rect x="28.7833%" y="677" width="0.0385%" height="15" fill="rgb(236,34,42)" fg:x="151749" fg:w="203"/><text x="29.0333%" y="687.50"></text></g><g><title>__mnt_want_write (71 samples, 0.01%)</title><rect x="28.8368%" y="661" width="0.0135%" height="15" fill="rgb(243,106,37)" fg:x="152031" fg:w="71"/><text x="29.0868%" y="671.50"></text></g><g><title>mnt_want_write (173 samples, 0.03%)</title><rect x="28.8218%" y="677" width="0.0328%" height="15" fill="rgb(218,96,6)" fg:x="151952" fg:w="173"/><text x="29.0718%" y="687.50"></text></g><g><title>filename_create (6,647 samples, 1.26%)</title><rect x="27.5955%" y="693" width="1.2608%" height="15" fill="rgb(235,130,12)" fg:x="145487" fg:w="6647"/><text x="27.8455%" y="703.50"></text></g><g><title>kmem_cache_free (134 samples, 0.03%)</title><rect x="28.8671%" y="677" width="0.0254%" height="15" fill="rgb(231,95,0)" fg:x="152191" fg:w="134"/><text x="29.1171%" y="687.50"></text></g><g><title>__legitimize_mnt (72 samples, 0.01%)</title><rect x="28.9089%" y="613" width="0.0137%" height="15" fill="rgb(228,12,23)" fg:x="152411" fg:w="72"/><text x="29.1589%" y="623.50"></text></g><g><title>__legitimize_path (149 samples, 0.03%)</title><rect x="28.9072%" y="629" width="0.0283%" height="15" fill="rgb(216,12,1)" fg:x="152402" fg:w="149"/><text x="29.1572%" y="639.50"></text></g><g><title>lockref_get_not_dead (68 samples, 0.01%)</title><rect x="28.9225%" y="613" width="0.0129%" height="15" fill="rgb(219,59,3)" fg:x="152483" fg:w="68"/><text x="29.1725%" y="623.50"></text></g><g><title>complete_walk (204 samples, 0.04%)</title><rect x="28.9009%" y="661" width="0.0387%" height="15" fill="rgb(215,208,46)" fg:x="152369" fg:w="204"/><text x="29.1509%" y="671.50"></text></g><g><title>try_to_unlazy (191 samples, 0.04%)</title><rect x="28.9034%" y="645" width="0.0362%" height="15" fill="rgb(254,224,29)" fg:x="152382" fg:w="191"/><text x="29.1534%" y="655.50"></text></g><g><title>btrfs_permission (96 samples, 0.02%)</title><rect x="29.3743%" y="629" width="0.0182%" height="15" fill="rgb(232,14,29)" fg:x="154865" fg:w="96"/><text x="29.6243%" y="639.50"></text></g><g><title>inode_permission.part.0 (1,445 samples, 0.27%)</title><rect x="29.2146%" y="645" width="0.2741%" height="15" fill="rgb(208,45,52)" fg:x="154023" fg:w="1445"/><text x="29.4646%" y="655.50"></text></g><g><title>generic_permission (507 samples, 0.10%)</title><rect x="29.3925%" y="629" width="0.0962%" height="15" fill="rgb(234,191,28)" fg:x="154961" fg:w="507"/><text x="29.6425%" y="639.50"></text></g><g><title>security_inode_permission (152 samples, 0.03%)</title><rect x="29.4887%" y="645" width="0.0288%" height="15" fill="rgb(244,67,43)" fg:x="155468" fg:w="152"/><text x="29.7387%" y="655.50"></text></g><g><title>lookup_fast (2,720 samples, 0.52%)</title><rect x="29.6276%" y="629" width="0.5159%" height="15" fill="rgb(236,189,24)" fg:x="156200" fg:w="2720"/><text x="29.8776%" y="639.50"></text></g><g><title>__d_lookup_rcu (2,086 samples, 0.40%)</title><rect x="29.7478%" y="613" width="0.3957%" height="15" fill="rgb(239,214,33)" fg:x="156834" fg:w="2086"/><text x="29.9978%" y="623.50"></text></g><g><title>page_put_link (57 samples, 0.01%)</title><rect x="30.1435%" y="629" width="0.0108%" height="15" fill="rgb(226,176,41)" fg:x="158920" fg:w="57"/><text x="30.3935%" y="639.50"></text></g><g><title>atime_needs_update (68 samples, 0.01%)</title><rect x="30.3113%" y="613" width="0.0129%" height="15" fill="rgb(248,47,8)" fg:x="159805" fg:w="68"/><text x="30.5613%" y="623.50"></text></g><g><title>page_get_link (231 samples, 0.04%)</title><rect x="30.3273%" y="613" width="0.0438%" height="15" fill="rgb(218,81,44)" fg:x="159889" fg:w="231"/><text x="30.5773%" y="623.50"></text></g><g><title>pagecache_get_page (196 samples, 0.04%)</title><rect x="30.3339%" y="597" width="0.0372%" height="15" fill="rgb(213,98,6)" fg:x="159924" fg:w="196"/><text x="30.5839%" y="607.50"></text></g><g><title>find_get_entry (168 samples, 0.03%)</title><rect x="30.3392%" y="581" width="0.0319%" height="15" fill="rgb(222,85,22)" fg:x="159952" fg:w="168"/><text x="30.5892%" y="591.50"></text></g><g><title>link_path_walk.part.0 (7,553 samples, 1.43%)</title><rect x="28.9396%" y="661" width="1.4326%" height="15" fill="rgb(239,46,39)" fg:x="152573" fg:w="7553"/><text x="29.1896%" y="671.50"></text></g><g><title>walk_component (4,506 samples, 0.85%)</title><rect x="29.5175%" y="645" width="0.8547%" height="15" fill="rgb(237,12,29)" fg:x="155620" fg:w="4506"/><text x="29.7675%" y="655.50"></text></g><g><title>step_into (1,149 samples, 0.22%)</title><rect x="30.1543%" y="629" width="0.2179%" height="15" fill="rgb(214,77,8)" fg:x="158977" fg:w="1149"/><text x="30.4043%" y="639.50"></text></g><g><title>path_init (188 samples, 0.04%)</title><rect x="30.3722%" y="661" width="0.0357%" height="15" fill="rgb(217,168,37)" fg:x="160126" fg:w="188"/><text x="30.6222%" y="671.50"></text></g><g><title>nd_jump_root (148 samples, 0.03%)</title><rect x="30.3798%" y="645" width="0.0281%" height="15" fill="rgb(221,217,23)" fg:x="160166" fg:w="148"/><text x="30.6298%" y="655.50"></text></g><g><title>set_root (113 samples, 0.02%)</title><rect x="30.3864%" y="629" width="0.0214%" height="15" fill="rgb(243,229,36)" fg:x="160201" fg:w="113"/><text x="30.6364%" y="639.50"></text></g><g><title>lookup_fast (147 samples, 0.03%)</title><rect x="30.4195%" y="645" width="0.0279%" height="15" fill="rgb(251,163,40)" fg:x="160375" fg:w="147"/><text x="30.6695%" y="655.50"></text></g><g><title>__d_lookup_rcu (123 samples, 0.02%)</title><rect x="30.4240%" y="629" width="0.0233%" height="15" fill="rgb(237,222,12)" fg:x="160399" fg:w="123"/><text x="30.6740%" y="639.50"></text></g><g><title>path_lookupat (8,231 samples, 1.56%)</title><rect x="28.8926%" y="677" width="1.5612%" height="15" fill="rgb(248,132,6)" fg:x="152325" fg:w="8231"/><text x="29.1426%" y="687.50"></text></g><g><title>walk_component (212 samples, 0.04%)</title><rect x="30.4136%" y="661" width="0.0402%" height="15" fill="rgb(227,167,50)" fg:x="160344" fg:w="212"/><text x="30.6636%" y="671.50"></text></g><g><title>filename_lookup (8,428 samples, 1.60%)</title><rect x="28.8563%" y="693" width="1.5986%" height="15" fill="rgb(242,84,37)" fg:x="152134" fg:w="8428"/><text x="29.1063%" y="703.50"></text></g><g><title>getname_flags (53 samples, 0.01%)</title><rect x="30.4549%" y="693" width="0.0101%" height="15" fill="rgb(212,4,50)" fg:x="160562" fg:w="53"/><text x="30.7049%" y="703.50"></text></g><g><title>memset_erms (744 samples, 0.14%)</title><rect x="30.5319%" y="661" width="0.1411%" height="15" fill="rgb(230,228,32)" fg:x="160968" fg:w="744"/><text x="30.7819%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,084 samples, 0.21%)</title><rect x="30.4805%" y="677" width="0.2056%" height="15" fill="rgb(248,217,23)" fg:x="160697" fg:w="1084"/><text x="30.7305%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (69 samples, 0.01%)</title><rect x="30.6730%" y="661" width="0.0131%" height="15" fill="rgb(238,197,32)" fg:x="161712" fg:w="69"/><text x="30.9230%" y="671.50"></text></g><g><title>__check_heap_object (142 samples, 0.03%)</title><rect x="30.8470%" y="645" width="0.0269%" height="15" fill="rgb(236,106,1)" fg:x="162629" fg:w="142"/><text x="31.0970%" y="655.50"></text></g><g><title>__virt_addr_valid (146 samples, 0.03%)</title><rect x="30.8739%" y="645" width="0.0277%" height="15" fill="rgb(219,228,13)" fg:x="162771" fg:w="146"/><text x="31.1239%" y="655.50"></text></g><g><title>__check_object_size (400 samples, 0.08%)</title><rect x="30.8295%" y="661" width="0.0759%" height="15" fill="rgb(238,30,35)" fg:x="162537" fg:w="400"/><text x="31.0795%" y="671.50"></text></g><g><title>getname_flags.part.0 (2,324 samples, 0.44%)</title><rect x="30.4650%" y="693" width="0.4408%" height="15" fill="rgb(236,70,23)" fg:x="160615" fg:w="2324"/><text x="30.7150%" y="703.50"></text></g><g><title>strncpy_from_user (1,158 samples, 0.22%)</title><rect x="30.6861%" y="677" width="0.2196%" height="15" fill="rgb(249,104,48)" fg:x="161781" fg:w="1158"/><text x="30.9361%" y="687.50"></text></g><g><title>btrfs_permission (77 samples, 0.01%)</title><rect x="30.9297%" y="661" width="0.0146%" height="15" fill="rgb(254,117,50)" fg:x="163065" fg:w="77"/><text x="31.1797%" y="671.50"></text></g><g><title>inode_permission.part.0 (126 samples, 0.02%)</title><rect x="30.9234%" y="677" width="0.0239%" height="15" fill="rgb(223,152,4)" fg:x="163032" fg:w="126"/><text x="31.1734%" y="687.50"></text></g><g><title>may_linkat (229 samples, 0.04%)</title><rect x="30.9058%" y="693" width="0.0434%" height="15" fill="rgb(245,6,2)" fg:x="162939" fg:w="229"/><text x="31.1558%" y="703.50"></text></g><g><title>mnt_drop_write (60 samples, 0.01%)</title><rect x="30.9492%" y="693" width="0.0114%" height="15" fill="rgb(249,150,24)" fg:x="163168" fg:w="60"/><text x="31.1992%" y="703.50"></text></g><g><title>mntput_no_expire (57 samples, 0.01%)</title><rect x="30.9633%" y="693" width="0.0108%" height="15" fill="rgb(228,185,42)" fg:x="163242" fg:w="57"/><text x="31.2133%" y="703.50"></text></g><g><title>apparmor_path_link (126 samples, 0.02%)</title><rect x="30.9809%" y="677" width="0.0239%" height="15" fill="rgb(226,39,33)" fg:x="163335" fg:w="126"/><text x="31.2309%" y="687.50"></text></g><g><title>security_path_link (384 samples, 0.07%)</title><rect x="30.9741%" y="693" width="0.0728%" height="15" fill="rgb(221,166,19)" fg:x="163299" fg:w="384"/><text x="31.2241%" y="703.50"></text></g><g><title>tomoyo_path_link (221 samples, 0.04%)</title><rect x="31.0050%" y="677" width="0.0419%" height="15" fill="rgb(209,109,2)" fg:x="163462" fg:w="221"/><text x="31.2550%" y="687.50"></text></g><g><title>tomoyo_path2_perm (208 samples, 0.04%)</title><rect x="31.0075%" y="661" width="0.0395%" height="15" fill="rgb(252,216,26)" fg:x="163475" fg:w="208"/><text x="31.2575%" y="671.50"></text></g><g><title>tomoyo_init_request_info (102 samples, 0.02%)</title><rect x="31.0276%" y="645" width="0.0193%" height="15" fill="rgb(227,173,36)" fg:x="163581" fg:w="102"/><text x="31.2776%" y="655.50"></text></g><g><title>up_write (59 samples, 0.01%)</title><rect x="31.0469%" y="693" width="0.0112%" height="15" fill="rgb(209,90,7)" fg:x="163683" fg:w="59"/><text x="31.2969%" y="703.50"></text></g><g><title>btrfs_put_transaction (58 samples, 0.01%)</title><rect x="31.2206%" y="645" width="0.0110%" height="15" fill="rgb(250,194,11)" fg:x="164599" fg:w="58"/><text x="31.4706%" y="655.50"></text></g><g><title>_raw_spin_lock (145 samples, 0.03%)</title><rect x="31.2550%" y="613" width="0.0275%" height="15" fill="rgb(220,72,50)" fg:x="164780" fg:w="145"/><text x="31.5050%" y="623.50"></text></g><g><title>btrfs_trans_release_metadata (320 samples, 0.06%)</title><rect x="31.2371%" y="645" width="0.0607%" height="15" fill="rgb(222,106,48)" fg:x="164686" fg:w="320"/><text x="31.4871%" y="655.50"></text></g><g><title>btrfs_block_rsv_release (297 samples, 0.06%)</title><rect x="31.2415%" y="629" width="0.0563%" height="15" fill="rgb(216,220,45)" fg:x="164709" fg:w="297"/><text x="31.4915%" y="639.50"></text></g><g><title>btrfs_try_granting_tickets (66 samples, 0.01%)</title><rect x="31.2853%" y="613" width="0.0125%" height="15" fill="rgb(234,112,18)" fg:x="164940" fg:w="66"/><text x="31.5353%" y="623.50"></text></g><g><title>__btrfs_end_transaction (832 samples, 0.16%)</title><rect x="31.1668%" y="661" width="0.1578%" height="15" fill="rgb(206,179,9)" fg:x="164315" fg:w="832"/><text x="31.4168%" y="671.50"></text></g><g><title>kmem_cache_free (141 samples, 0.03%)</title><rect x="31.2978%" y="645" width="0.0267%" height="15" fill="rgb(215,115,40)" fg:x="165006" fg:w="141"/><text x="31.5478%" y="655.50"></text></g><g><title>btrfs_comp_cpu_keys (221 samples, 0.04%)</title><rect x="31.4583%" y="597" width="0.0419%" height="15" fill="rgb(222,69,34)" fg:x="165852" fg:w="221"/><text x="31.7083%" y="607.50"></text></g><g><title>__btrfs_add_delayed_item (670 samples, 0.13%)</title><rect x="31.4022%" y="613" width="0.1271%" height="15" fill="rgb(209,161,10)" fg:x="165556" fg:w="670"/><text x="31.6522%" y="623.50"></text></g><g><title>rb_insert_color (153 samples, 0.03%)</title><rect x="31.5002%" y="597" width="0.0290%" height="15" fill="rgb(217,6,38)" fg:x="166073" fg:w="153"/><text x="31.7502%" y="607.50"></text></g><g><title>mutex_lock (78 samples, 0.01%)</title><rect x="31.5607%" y="597" width="0.0148%" height="15" fill="rgb(229,229,48)" fg:x="166392" fg:w="78"/><text x="31.8107%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (304 samples, 0.06%)</title><rect x="31.5293%" y="613" width="0.0577%" height="15" fill="rgb(225,21,28)" fg:x="166226" fg:w="304"/><text x="31.7793%" y="623.50"></text></g><g><title>mutex_unlock (60 samples, 0.01%)</title><rect x="31.5755%" y="597" width="0.0114%" height="15" fill="rgb(206,33,13)" fg:x="166470" fg:w="60"/><text x="31.8255%" y="607.50"></text></g><g><title>__slab_alloc (146 samples, 0.03%)</title><rect x="31.6271%" y="597" width="0.0277%" height="15" fill="rgb(242,178,17)" fg:x="166742" fg:w="146"/><text x="31.8771%" y="607.50"></text></g><g><title>___slab_alloc (136 samples, 0.03%)</title><rect x="31.6290%" y="581" width="0.0258%" height="15" fill="rgb(220,162,5)" fg:x="166752" fg:w="136"/><text x="31.8790%" y="591.50"></text></g><g><title>get_partial_node.part.0 (59 samples, 0.01%)</title><rect x="31.6436%" y="565" width="0.0112%" height="15" fill="rgb(210,33,43)" fg:x="166829" fg:w="59"/><text x="31.8936%" y="575.50"></text></g><g><title>memset_erms (68 samples, 0.01%)</title><rect x="31.6675%" y="597" width="0.0129%" height="15" fill="rgb(216,116,54)" fg:x="166955" fg:w="68"/><text x="31.9175%" y="607.50"></text></g><g><title>__kmalloc (549 samples, 0.10%)</title><rect x="31.5869%" y="613" width="0.1041%" height="15" fill="rgb(249,92,24)" fg:x="166530" fg:w="549"/><text x="31.8369%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (56 samples, 0.01%)</title><rect x="31.6804%" y="597" width="0.0106%" height="15" fill="rgb(231,189,14)" fg:x="167023" fg:w="56"/><text x="31.9304%" y="607.50"></text></g><g><title>mutex_spin_on_owner (316 samples, 0.06%)</title><rect x="31.6918%" y="597" width="0.0599%" height="15" fill="rgb(230,8,41)" fg:x="167083" fg:w="316"/><text x="31.9418%" y="607.50"></text></g><g><title>__mutex_lock.constprop.0 (324 samples, 0.06%)</title><rect x="31.6910%" y="613" width="0.0615%" height="15" fill="rgb(249,7,27)" fg:x="167079" fg:w="324"/><text x="31.9410%" y="623.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (284 samples, 0.05%)</title><rect x="31.7529%" y="613" width="0.0539%" height="15" fill="rgb(232,86,5)" fg:x="167405" fg:w="284"/><text x="32.0029%" y="623.50"></text></g><g><title>btrfs_block_rsv_migrate (229 samples, 0.04%)</title><rect x="31.7633%" y="597" width="0.0434%" height="15" fill="rgb(224,175,18)" fg:x="167460" fg:w="229"/><text x="32.0133%" y="607.50"></text></g><g><title>_raw_spin_lock (191 samples, 0.04%)</title><rect x="31.7705%" y="581" width="0.0362%" height="15" fill="rgb(220,129,12)" fg:x="167498" fg:w="191"/><text x="32.0205%" y="591.50"></text></g><g><title>btrfs_get_or_create_delayed_node (214 samples, 0.04%)</title><rect x="31.8067%" y="613" width="0.0406%" height="15" fill="rgb(210,19,36)" fg:x="167689" fg:w="214"/><text x="32.0567%" y="623.50"></text></g><g><title>btrfs_get_delayed_node (169 samples, 0.03%)</title><rect x="31.8153%" y="597" width="0.0321%" height="15" fill="rgb(219,96,14)" fg:x="167734" fg:w="169"/><text x="32.0653%" y="607.50"></text></g><g><title>mutex_lock (86 samples, 0.02%)</title><rect x="31.8561%" y="613" width="0.0163%" height="15" fill="rgb(249,106,1)" fg:x="167949" fg:w="86"/><text x="32.1061%" y="623.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,629 samples, 0.50%)</title><rect x="31.3859%" y="629" width="0.4987%" height="15" fill="rgb(249,155,20)" fg:x="165470" fg:w="2629"/><text x="31.6359%" y="639.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="31.8724%" y="613" width="0.0121%" height="15" fill="rgb(244,168,9)" fg:x="168035" fg:w="64"/><text x="32.1224%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (193 samples, 0.04%)</title><rect x="31.8845%" y="629" width="0.0366%" height="15" fill="rgb(216,23,50)" fg:x="168099" fg:w="193"/><text x="32.1345%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (115 samples, 0.02%)</title><rect x="31.8993%" y="613" width="0.0218%" height="15" fill="rgb(224,219,20)" fg:x="168177" fg:w="115"/><text x="32.1493%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (211 samples, 0.04%)</title><rect x="31.9317%" y="613" width="0.0400%" height="15" fill="rgb(222,156,15)" fg:x="168348" fg:w="211"/><text x="32.1817%" y="623.50"></text></g><g><title>_raw_spin_lock (147 samples, 0.03%)</title><rect x="31.9439%" y="597" width="0.0279%" height="15" fill="rgb(231,97,17)" fg:x="168412" fg:w="147"/><text x="32.1939%" y="607.50"></text></g><g><title>btrfs_release_path (446 samples, 0.08%)</title><rect x="31.9211%" y="629" width="0.0846%" height="15" fill="rgb(218,70,48)" fg:x="168292" fg:w="446"/><text x="32.1711%" y="639.50"></text></g><g><title>release_extent_buffer (179 samples, 0.03%)</title><rect x="31.9718%" y="613" width="0.0340%" height="15" fill="rgb(212,196,52)" fg:x="168559" fg:w="179"/><text x="32.2218%" y="623.50"></text></g><g><title>btrfs_set_16 (63 samples, 0.01%)</title><rect x="32.0057%" y="629" width="0.0119%" height="15" fill="rgb(243,203,18)" fg:x="168738" fg:w="63"/><text x="32.2557%" y="639.50"></text></g><g><title>crc32c (212 samples, 0.04%)</title><rect x="32.0287%" y="629" width="0.0402%" height="15" fill="rgb(252,125,41)" fg:x="168859" fg:w="212"/><text x="32.2787%" y="639.50"></text></g><g><title>crypto_shash_update (121 samples, 0.02%)</title><rect x="32.0459%" y="613" width="0.0230%" height="15" fill="rgb(223,180,33)" fg:x="168950" fg:w="121"/><text x="32.2959%" y="623.50"></text></g><g><title>btrfs_get_32 (94 samples, 0.02%)</title><rect x="32.0765%" y="613" width="0.0178%" height="15" fill="rgb(254,159,46)" fg:x="169111" fg:w="94"/><text x="32.3265%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (102 samples, 0.02%)</title><rect x="32.1603%" y="565" width="0.0193%" height="15" fill="rgb(254,38,10)" fg:x="169553" fg:w="102"/><text x="32.4103%" y="575.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="32.1664%" y="549" width="0.0133%" height="15" fill="rgb(208,217,32)" fg:x="169585" fg:w="70"/><text x="32.4164%" y="559.50"></text></g><g><title>__btrfs_read_lock_root_node (186 samples, 0.04%)</title><rect x="32.1580%" y="581" width="0.0353%" height="15" fill="rgb(221,120,13)" fg:x="169541" fg:w="186"/><text x="32.4080%" y="591.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="32.1797%" y="565" width="0.0137%" height="15" fill="rgb(246,54,52)" fg:x="169655" fg:w="72"/><text x="32.4297%" y="575.50"></text></g><g><title>__btrfs_tree_lock (132 samples, 0.03%)</title><rect x="32.1933%" y="581" width="0.0250%" height="15" fill="rgb(242,34,25)" fg:x="169727" fg:w="132"/><text x="32.4433%" y="591.50"></text></g><g><title>schedule (113 samples, 0.02%)</title><rect x="32.1969%" y="565" width="0.0214%" height="15" fill="rgb(247,209,9)" fg:x="169746" fg:w="113"/><text x="32.4469%" y="575.50"></text></g><g><title>__schedule (111 samples, 0.02%)</title><rect x="32.1973%" y="549" width="0.0211%" height="15" fill="rgb(228,71,26)" fg:x="169748" fg:w="111"/><text x="32.4473%" y="559.50"></text></g><g><title>btrfs_leaf_free_space (211 samples, 0.04%)</title><rect x="32.2223%" y="581" width="0.0400%" height="15" fill="rgb(222,145,49)" fg:x="169880" fg:w="211"/><text x="32.4723%" y="591.50"></text></g><g><title>leaf_space_used (181 samples, 0.03%)</title><rect x="32.2280%" y="565" width="0.0343%" height="15" fill="rgb(218,121,17)" fg:x="169910" fg:w="181"/><text x="32.4780%" y="575.50"></text></g><g><title>btrfs_get_32 (130 samples, 0.02%)</title><rect x="32.2377%" y="549" width="0.0247%" height="15" fill="rgb(244,50,7)" fg:x="169961" fg:w="130"/><text x="32.4877%" y="559.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="32.2720%" y="565" width="0.0201%" height="15" fill="rgb(246,229,37)" fg:x="170142" fg:w="106"/><text x="32.5220%" y="575.50"></text></g><g><title>btrfs_try_tree_write_lock (192 samples, 0.04%)</title><rect x="32.2675%" y="581" width="0.0364%" height="15" fill="rgb(225,18,5)" fg:x="170118" fg:w="192"/><text x="32.5175%" y="591.50"></text></g><g><title>queued_write_lock_slowpath (62 samples, 0.01%)</title><rect x="32.2921%" y="565" width="0.0118%" height="15" fill="rgb(213,204,8)" fg:x="170248" fg:w="62"/><text x="32.5421%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (1,200 samples, 0.23%)</title><rect x="32.3039%" y="581" width="0.2276%" height="15" fill="rgb(238,103,6)" fg:x="170310" fg:w="1200"/><text x="32.5539%" y="591.50"></text></g><g><title>btrfs_buffer_uptodate (78 samples, 0.01%)</title><rect x="32.5554%" y="565" width="0.0148%" height="15" fill="rgb(222,25,35)" fg:x="171636" fg:w="78"/><text x="32.8054%" y="575.50"></text></g><g><title>verify_parent_transid (55 samples, 0.01%)</title><rect x="32.5598%" y="549" width="0.0104%" height="15" fill="rgb(213,203,35)" fg:x="171659" fg:w="55"/><text x="32.8098%" y="559.50"></text></g><g><title>btrfs_get_64 (139 samples, 0.03%)</title><rect x="32.5702%" y="565" width="0.0264%" height="15" fill="rgb(221,79,53)" fg:x="171714" fg:w="139"/><text x="32.8202%" y="575.50"></text></g><g><title>__radix_tree_lookup (581 samples, 0.11%)</title><rect x="32.6487%" y="549" width="0.1102%" height="15" fill="rgb(243,200,35)" fg:x="172128" fg:w="581"/><text x="32.8987%" y="559.50"></text></g><g><title>check_buffer_tree_ref (56 samples, 0.01%)</title><rect x="32.7703%" y="533" width="0.0106%" height="15" fill="rgb(248,60,25)" fg:x="172769" fg:w="56"/><text x="33.0203%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (295 samples, 0.06%)</title><rect x="32.7589%" y="549" width="0.0560%" height="15" fill="rgb(227,53,46)" fg:x="172709" fg:w="295"/><text x="33.0089%" y="559.50"></text></g><g><title>mark_page_accessed (179 samples, 0.03%)</title><rect x="32.7809%" y="533" width="0.0340%" height="15" fill="rgb(216,120,32)" fg:x="172825" fg:w="179"/><text x="33.0309%" y="543.50"></text></g><g><title>find_extent_buffer (1,120 samples, 0.21%)</title><rect x="32.6057%" y="565" width="0.2124%" height="15" fill="rgb(220,134,1)" fg:x="171901" fg:w="1120"/><text x="32.8557%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (1,672 samples, 0.32%)</title><rect x="32.5315%" y="581" width="0.3171%" height="15" fill="rgb(237,168,5)" fg:x="171510" fg:w="1672"/><text x="32.7815%" y="591.50"></text></g><g><title>read_extent_buffer (161 samples, 0.03%)</title><rect x="32.8181%" y="565" width="0.0305%" height="15" fill="rgb(231,100,33)" fg:x="173021" fg:w="161"/><text x="33.0681%" y="575.50"></text></g><g><title>alloc_extent_buffer (54 samples, 0.01%)</title><rect x="32.8532%" y="533" width="0.0102%" height="15" fill="rgb(236,177,47)" fg:x="173206" fg:w="54"/><text x="33.1032%" y="543.50"></text></g><g><title>alloc_tree_block_no_bg_flush (159 samples, 0.03%)</title><rect x="32.8519%" y="565" width="0.0302%" height="15" fill="rgb(235,7,49)" fg:x="173199" fg:w="159"/><text x="33.1019%" y="575.50"></text></g><g><title>btrfs_alloc_tree_block (158 samples, 0.03%)</title><rect x="32.8521%" y="549" width="0.0300%" height="15" fill="rgb(232,119,22)" fg:x="173200" fg:w="158"/><text x="33.1021%" y="559.50"></text></g><g><title>copy_for_split (140 samples, 0.03%)</title><rect x="32.8851%" y="565" width="0.0266%" height="15" fill="rgb(254,73,53)" fg:x="173374" fg:w="140"/><text x="33.1351%" y="575.50"></text></g><g><title>btrfs_get_token_32 (107 samples, 0.02%)</title><rect x="32.9338%" y="533" width="0.0203%" height="15" fill="rgb(251,35,20)" fg:x="173631" fg:w="107"/><text x="33.1838%" y="543.50"></text></g><g><title>btrfs_set_token_32 (143 samples, 0.03%)</title><rect x="32.9566%" y="533" width="0.0271%" height="15" fill="rgb(241,119,20)" fg:x="173751" fg:w="143"/><text x="33.2066%" y="543.50"></text></g><g><title>memmove_extent_buffer (68 samples, 0.01%)</title><rect x="32.9924%" y="533" width="0.0129%" height="15" fill="rgb(207,102,14)" fg:x="173940" fg:w="68"/><text x="33.2424%" y="543.50"></text></g><g><title>__push_leaf_left (471 samples, 0.09%)</title><rect x="32.9162%" y="549" width="0.0893%" height="15" fill="rgb(248,201,50)" fg:x="173538" fg:w="471"/><text x="33.1662%" y="559.50"></text></g><g><title>push_leaf_left (535 samples, 0.10%)</title><rect x="32.9118%" y="565" width="0.1015%" height="15" fill="rgb(222,185,44)" fg:x="173515" fg:w="535"/><text x="33.1618%" y="575.50"></text></g><g><title>btrfs_get_token_32 (96 samples, 0.02%)</title><rect x="33.0351%" y="533" width="0.0182%" height="15" fill="rgb(218,107,18)" fg:x="174165" fg:w="96"/><text x="33.2851%" y="543.50"></text></g><g><title>btrfs_set_token_32 (105 samples, 0.02%)</title><rect x="33.0550%" y="533" width="0.0199%" height="15" fill="rgb(237,177,39)" fg:x="174270" fg:w="105"/><text x="33.3050%" y="543.50"></text></g><g><title>__push_leaf_right (403 samples, 0.08%)</title><rect x="33.0171%" y="549" width="0.0764%" height="15" fill="rgb(246,69,6)" fg:x="174070" fg:w="403"/><text x="33.2671%" y="559.50"></text></g><g><title>btrfs_read_node_slot (64 samples, 0.01%)</title><rect x="33.0964%" y="549" width="0.0121%" height="15" fill="rgb(234,208,37)" fg:x="174488" fg:w="64"/><text x="33.3464%" y="559.50"></text></g><g><title>read_tree_block (54 samples, 0.01%)</title><rect x="33.0983%" y="533" width="0.0102%" height="15" fill="rgb(225,4,6)" fg:x="174498" fg:w="54"/><text x="33.3483%" y="543.50"></text></g><g><title>push_leaf_right (512 samples, 0.10%)</title><rect x="33.0133%" y="565" width="0.0971%" height="15" fill="rgb(233,45,0)" fg:x="174050" fg:w="512"/><text x="33.2633%" y="575.50"></text></g><g><title>split_leaf (1,382 samples, 0.26%)</title><rect x="32.8486%" y="581" width="0.2621%" height="15" fill="rgb(226,136,5)" fg:x="173182" fg:w="1382"/><text x="33.0986%" y="591.50"></text></g><g><title>__wake_up_common (58 samples, 0.01%)</title><rect x="33.1415%" y="549" width="0.0110%" height="15" fill="rgb(211,91,47)" fg:x="174726" fg:w="58"/><text x="33.3915%" y="559.50"></text></g><g><title>autoremove_wake_function (57 samples, 0.01%)</title><rect x="33.1417%" y="533" width="0.0108%" height="15" fill="rgb(242,88,51)" fg:x="174727" fg:w="57"/><text x="33.3917%" y="543.50"></text></g><g><title>try_to_wake_up (56 samples, 0.01%)</title><rect x="33.1419%" y="517" width="0.0106%" height="15" fill="rgb(230,91,28)" fg:x="174728" fg:w="56"/><text x="33.3919%" y="527.50"></text></g><g><title>__wake_up_common_lock (60 samples, 0.01%)</title><rect x="33.1413%" y="565" width="0.0114%" height="15" fill="rgb(254,186,29)" fg:x="174725" fg:w="60"/><text x="33.3913%" y="575.50"></text></g><g><title>btrfs_tree_read_unlock (63 samples, 0.01%)</title><rect x="33.1529%" y="565" width="0.0119%" height="15" fill="rgb(238,6,4)" fg:x="174786" fg:w="63"/><text x="33.4029%" y="575.50"></text></g><g><title>btrfs_search_slot (5,629 samples, 1.07%)</title><rect x="32.1002%" y="597" width="1.0677%" height="15" fill="rgb(221,151,16)" fg:x="169236" fg:w="5629"/><text x="32.3502%" y="607.50"></text></g><g><title>unlock_up (301 samples, 0.06%)</title><rect x="33.1108%" y="581" width="0.0571%" height="15" fill="rgb(251,143,52)" fg:x="174564" fg:w="301"/><text x="33.3608%" y="591.50"></text></g><g><title>btrfs_get_32 (111 samples, 0.02%)</title><rect x="33.3374%" y="581" width="0.0211%" height="15" fill="rgb(206,90,15)" fg:x="175759" fg:w="111"/><text x="33.5874%" y="591.50"></text></g><g><title>btrfs_get_token_32 (3,280 samples, 0.62%)</title><rect x="33.3585%" y="581" width="0.6221%" height="15" fill="rgb(218,35,8)" fg:x="175870" fg:w="3280"/><text x="33.6085%" y="591.50"></text></g><g><title>check_setget_bounds.isra.0 (675 samples, 0.13%)</title><rect x="33.8526%" y="565" width="0.1280%" height="15" fill="rgb(239,215,6)" fg:x="178475" fg:w="675"/><text x="34.1026%" y="575.50"></text></g><g><title>btrfs_leaf_free_space (280 samples, 0.05%)</title><rect x="33.9806%" y="581" width="0.0531%" height="15" fill="rgb(245,116,39)" fg:x="179150" fg:w="280"/><text x="34.2306%" y="591.50"></text></g><g><title>leaf_space_used (246 samples, 0.05%)</title><rect x="33.9871%" y="565" width="0.0467%" height="15" fill="rgb(242,65,28)" fg:x="179184" fg:w="246"/><text x="34.2371%" y="575.50"></text></g><g><title>btrfs_get_32 (170 samples, 0.03%)</title><rect x="34.0015%" y="549" width="0.0322%" height="15" fill="rgb(252,132,53)" fg:x="179260" fg:w="170"/><text x="34.2515%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (152 samples, 0.03%)</title><rect x="34.0337%" y="581" width="0.0288%" height="15" fill="rgb(224,159,50)" fg:x="179430" fg:w="152"/><text x="34.2837%" y="591.50"></text></g><g><title>set_extent_buffer_dirty (103 samples, 0.02%)</title><rect x="34.0430%" y="565" width="0.0195%" height="15" fill="rgb(224,93,4)" fg:x="179479" fg:w="103"/><text x="34.2930%" y="575.50"></text></g><g><title>btrfs_set_token_32 (3,071 samples, 0.58%)</title><rect x="34.0626%" y="581" width="0.5825%" height="15" fill="rgb(208,81,34)" fg:x="179582" fg:w="3071"/><text x="34.3126%" y="591.50"></text></g><g><title>check_setget_bounds.isra.0 (581 samples, 0.11%)</title><rect x="34.5349%" y="565" width="0.1102%" height="15" fill="rgb(233,92,54)" fg:x="182072" fg:w="581"/><text x="34.7849%" y="575.50"></text></g><g><title>copy_pages (132 samples, 0.03%)</title><rect x="34.6675%" y="565" width="0.0250%" height="15" fill="rgb(237,21,14)" fg:x="182771" fg:w="132"/><text x="34.9175%" y="575.50"></text></g><g><title>memcpy_extent_buffer (1,081 samples, 0.21%)</title><rect x="34.6547%" y="581" width="0.2050%" height="15" fill="rgb(249,128,51)" fg:x="182704" fg:w="1081"/><text x="34.9047%" y="591.50"></text></g><g><title>memmove (882 samples, 0.17%)</title><rect x="34.6925%" y="565" width="0.1673%" height="15" fill="rgb(223,129,24)" fg:x="182903" fg:w="882"/><text x="34.9425%" y="575.50"></text></g><g><title>copy_pages (128 samples, 0.02%)</title><rect x="34.8803%" y="565" width="0.0243%" height="15" fill="rgb(231,168,25)" fg:x="183893" fg:w="128"/><text x="35.1303%" y="575.50"></text></g><g><title>memmove_extent_buffer (945 samples, 0.18%)</title><rect x="34.8598%" y="581" width="0.1792%" height="15" fill="rgb(224,39,20)" fg:x="183785" fg:w="945"/><text x="35.1098%" y="591.50"></text></g><g><title>memmove (709 samples, 0.13%)</title><rect x="34.9046%" y="565" width="0.1345%" height="15" fill="rgb(225,152,53)" fg:x="184021" fg:w="709"/><text x="35.1546%" y="575.50"></text></g><g><title>insert_with_overflow (15,776 samples, 2.99%)</title><rect x="32.0689%" y="629" width="2.9923%" height="15" fill="rgb(252,17,24)" fg:x="169071" fg:w="15776"/><text x="32.3189%" y="639.50">ins..</text></g><g><title>btrfs_insert_empty_items (15,642 samples, 2.97%)</title><rect x="32.0943%" y="613" width="2.9669%" height="15" fill="rgb(250,114,30)" fg:x="169205" fg:w="15642"/><text x="32.3443%" y="623.50">btr..</text></g><g><title>setup_items_for_insert (9,982 samples, 1.89%)</title><rect x="33.1679%" y="597" width="1.8934%" height="15" fill="rgb(229,5,4)" fg:x="174865" fg:w="9982"/><text x="33.4179%" y="607.50">s..</text></g><g><title>write_extent_buffer (117 samples, 0.02%)</title><rect x="35.0390%" y="581" width="0.0222%" height="15" fill="rgb(225,176,49)" fg:x="184730" fg:w="117"/><text x="35.2890%" y="591.50"></text></g><g><title>memset_erms (66 samples, 0.01%)</title><rect x="35.0791%" y="613" width="0.0125%" height="15" fill="rgb(224,221,49)" fg:x="184941" fg:w="66"/><text x="35.3291%" y="623.50"></text></g><g><title>kmem_cache_alloc (196 samples, 0.04%)</title><rect x="35.0612%" y="629" width="0.0372%" height="15" fill="rgb(253,169,27)" fg:x="184847" fg:w="196"/><text x="35.3112%" y="639.50"></text></g><g><title>kmem_cache_free (106 samples, 0.02%)</title><rect x="35.0984%" y="629" width="0.0201%" height="15" fill="rgb(211,206,16)" fg:x="185043" fg:w="106"/><text x="35.3484%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (20,073 samples, 3.81%)</title><rect x="31.3601%" y="645" width="3.8074%" height="15" fill="rgb(244,87,35)" fg:x="165334" fg:w="20073"/><text x="31.6101%" y="655.50">btrf..</text></g><g><title>write_extent_buffer (258 samples, 0.05%)</title><rect x="35.1185%" y="629" width="0.0489%" height="15" fill="rgb(246,28,10)" fg:x="185149" fg:w="258"/><text x="35.3685%" y="639.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.03%)</title><rect x="35.2033%" y="581" width="0.0330%" height="15" fill="rgb(229,12,44)" fg:x="185596" fg:w="174"/><text x="35.4533%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (250 samples, 0.05%)</title><rect x="35.1891%" y="597" width="0.0474%" height="15" fill="rgb(210,145,37)" fg:x="185521" fg:w="250"/><text x="35.4391%" y="607.50"></text></g><g><title>btrfs_free_path (483 samples, 0.09%)</title><rect x="35.1790%" y="629" width="0.0916%" height="15" fill="rgb(227,112,52)" fg:x="185468" fg:w="483"/><text x="35.4290%" y="639.50"></text></g><g><title>btrfs_release_path (477 samples, 0.09%)</title><rect x="35.1802%" y="613" width="0.0905%" height="15" fill="rgb(238,155,34)" fg:x="185474" fg:w="477"/><text x="35.4302%" y="623.50"></text></g><g><title>release_extent_buffer (180 samples, 0.03%)</title><rect x="35.2365%" y="597" width="0.0341%" height="15" fill="rgb(239,226,36)" fg:x="185771" fg:w="180"/><text x="35.4865%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (76 samples, 0.01%)</title><rect x="35.3543%" y="581" width="0.0144%" height="15" fill="rgb(230,16,23)" fg:x="186392" fg:w="76"/><text x="35.6043%" y="591.50"></text></g><g><title>_raw_read_lock (58 samples, 0.01%)</title><rect x="35.3577%" y="565" width="0.0110%" height="15" fill="rgb(236,171,36)" fg:x="186410" fg:w="58"/><text x="35.6077%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (207 samples, 0.04%)</title><rect x="35.3499%" y="597" width="0.0393%" height="15" fill="rgb(221,22,14)" fg:x="186369" fg:w="207"/><text x="35.5999%" y="607.50"></text></g><g><title>btrfs_root_node (108 samples, 0.02%)</title><rect x="35.3687%" y="581" width="0.0205%" height="15" fill="rgb(242,43,11)" fg:x="186468" fg:w="108"/><text x="35.6187%" y="591.50"></text></g><g><title>btrfs_cow_block (102 samples, 0.02%)</title><rect x="35.3968%" y="597" width="0.0193%" height="15" fill="rgb(232,69,23)" fg:x="186616" fg:w="102"/><text x="35.6468%" y="607.50"></text></g><g><title>__btrfs_cow_block (102 samples, 0.02%)</title><rect x="35.3968%" y="581" width="0.0193%" height="15" fill="rgb(216,180,54)" fg:x="186616" fg:w="102"/><text x="35.6468%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (252 samples, 0.05%)</title><rect x="35.4161%" y="597" width="0.0478%" height="15" fill="rgb(216,5,24)" fg:x="186718" fg:w="252"/><text x="35.6661%" y="607.50"></text></g><g><title>leaf_space_used (196 samples, 0.04%)</title><rect x="35.4267%" y="581" width="0.0372%" height="15" fill="rgb(225,89,9)" fg:x="186774" fg:w="196"/><text x="35.6767%" y="591.50"></text></g><g><title>btrfs_get_32 (139 samples, 0.03%)</title><rect x="35.4375%" y="565" width="0.0264%" height="15" fill="rgb(243,75,33)" fg:x="186831" fg:w="139"/><text x="35.6875%" y="575.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="35.4704%" y="581" width="0.0201%" height="15" fill="rgb(247,141,45)" fg:x="187004" fg:w="106"/><text x="35.7204%" y="591.50"></text></g><g><title>btrfs_try_tree_write_lock (146 samples, 0.03%)</title><rect x="35.4649%" y="597" width="0.0277%" height="15" fill="rgb(232,177,36)" fg:x="186975" fg:w="146"/><text x="35.7149%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,488 samples, 0.28%)</title><rect x="35.4926%" y="597" width="0.2822%" height="15" fill="rgb(219,125,36)" fg:x="187121" fg:w="1488"/><text x="35.7426%" y="607.50"></text></g><g><title>btrfs_buffer_uptodate (154 samples, 0.03%)</title><rect x="35.7991%" y="581" width="0.0292%" height="15" fill="rgb(227,94,9)" fg:x="188737" fg:w="154"/><text x="36.0491%" y="591.50"></text></g><g><title>verify_parent_transid (127 samples, 0.02%)</title><rect x="35.8042%" y="565" width="0.0241%" height="15" fill="rgb(240,34,52)" fg:x="188764" fg:w="127"/><text x="36.0542%" y="575.50"></text></g><g><title>btrfs_get_64 (139 samples, 0.03%)</title><rect x="35.8283%" y="581" width="0.0264%" height="15" fill="rgb(216,45,12)" fg:x="188891" fg:w="139"/><text x="36.0783%" y="591.50"></text></g><g><title>btrfs_verify_level_key (55 samples, 0.01%)</title><rect x="35.8565%" y="581" width="0.0104%" height="15" fill="rgb(246,21,19)" fg:x="189040" fg:w="55"/><text x="36.1065%" y="591.50"></text></g><g><title>__radix_tree_lookup (944 samples, 0.18%)</title><rect x="35.9313%" y="565" width="0.1791%" height="15" fill="rgb(213,98,42)" fg:x="189434" fg:w="944"/><text x="36.1813%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (394 samples, 0.07%)</title><rect x="36.1105%" y="565" width="0.0747%" height="15" fill="rgb(250,136,47)" fg:x="190379" fg:w="394"/><text x="36.3605%" y="575.50"></text></g><g><title>mark_page_accessed (298 samples, 0.06%)</title><rect x="36.1287%" y="549" width="0.0565%" height="15" fill="rgb(251,124,27)" fg:x="190475" fg:w="298"/><text x="36.3787%" y="559.50"></text></g><g><title>find_extent_buffer (1,684 samples, 0.32%)</title><rect x="35.8670%" y="581" width="0.3194%" height="15" fill="rgb(229,180,14)" fg:x="189095" fg:w="1684"/><text x="36.1170%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (2,341 samples, 0.44%)</title><rect x="35.7748%" y="597" width="0.4440%" height="15" fill="rgb(245,216,25)" fg:x="188609" fg:w="2341"/><text x="36.0248%" y="607.50"></text></g><g><title>read_extent_buffer (171 samples, 0.03%)</title><rect x="36.1864%" y="581" width="0.0324%" height="15" fill="rgb(251,43,5)" fg:x="190779" fg:w="171"/><text x="36.4364%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock (82 samples, 0.02%)</title><rect x="36.2579%" y="581" width="0.0156%" height="15" fill="rgb(250,128,24)" fg:x="191156" fg:w="82"/><text x="36.5079%" y="591.50"></text></g><g><title>btrfs_search_slot (5,265 samples, 1.00%)</title><rect x="35.2820%" y="613" width="0.9986%" height="15" fill="rgb(217,117,27)" fg:x="186011" fg:w="5265"/><text x="35.5320%" y="623.50"></text></g><g><title>unlock_up (324 samples, 0.06%)</title><rect x="36.2192%" y="597" width="0.0615%" height="15" fill="rgb(245,147,4)" fg:x="190952" fg:w="324"/><text x="36.4692%" y="607.50"></text></g><g><title>btrfs_get_32 (129 samples, 0.02%)</title><rect x="36.3825%" y="597" width="0.0245%" height="15" fill="rgb(242,201,35)" fg:x="191813" fg:w="129"/><text x="36.6325%" y="607.50"></text></g><g><title>btrfs_get_token_32 (1,360 samples, 0.26%)</title><rect x="36.4070%" y="597" width="0.2580%" height="15" fill="rgb(218,181,1)" fg:x="191942" fg:w="1360"/><text x="36.6570%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (255 samples, 0.05%)</title><rect x="36.6166%" y="581" width="0.0484%" height="15" fill="rgb(222,6,29)" fg:x="193047" fg:w="255"/><text x="36.8666%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (227 samples, 0.04%)</title><rect x="36.6649%" y="597" width="0.0431%" height="15" fill="rgb(208,186,3)" fg:x="193302" fg:w="227"/><text x="36.9149%" y="607.50"></text></g><g><title>leaf_space_used (186 samples, 0.04%)</title><rect x="36.6727%" y="581" width="0.0353%" height="15" fill="rgb(216,36,26)" fg:x="193343" fg:w="186"/><text x="36.9227%" y="591.50"></text></g><g><title>btrfs_get_32 (127 samples, 0.02%)</title><rect x="36.6839%" y="565" width="0.0241%" height="15" fill="rgb(248,201,23)" fg:x="193402" fg:w="127"/><text x="36.9339%" y="575.50"></text></g><g><title>btrfs_mark_buffer_dirty (273 samples, 0.05%)</title><rect x="36.7080%" y="597" width="0.0518%" height="15" fill="rgb(251,170,31)" fg:x="193529" fg:w="273"/><text x="36.9580%" y="607.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="36.7393%" y="581" width="0.0205%" height="15" fill="rgb(207,110,25)" fg:x="193694" fg:w="108"/><text x="36.9893%" y="591.50"></text></g><g><title>btrfs_set_token_32 (1,236 samples, 0.23%)</title><rect x="36.7598%" y="597" width="0.2344%" height="15" fill="rgb(250,54,15)" fg:x="193802" fg:w="1236"/><text x="37.0098%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (247 samples, 0.05%)</title><rect x="36.9474%" y="581" width="0.0469%" height="15" fill="rgb(227,68,33)" fg:x="194791" fg:w="247"/><text x="37.1974%" y="591.50"></text></g><g><title>copy_pages (158 samples, 0.03%)</title><rect x="37.0187%" y="581" width="0.0300%" height="15" fill="rgb(238,34,41)" fg:x="195167" fg:w="158"/><text x="37.2687%" y="591.50"></text></g><g><title>memcpy_extent_buffer (1,629 samples, 0.31%)</title><rect x="37.0031%" y="597" width="0.3090%" height="15" fill="rgb(220,11,15)" fg:x="195085" fg:w="1629"/><text x="37.2531%" y="607.50"></text></g><g><title>memmove (1,389 samples, 0.26%)</title><rect x="37.0487%" y="581" width="0.2635%" height="15" fill="rgb(246,111,35)" fg:x="195325" fg:w="1389"/><text x="37.2987%" y="591.50"></text></g><g><title>memmove_extent_buffer (518 samples, 0.10%)</title><rect x="37.3121%" y="597" width="0.0983%" height="15" fill="rgb(209,88,53)" fg:x="196714" fg:w="518"/><text x="37.5621%" y="607.50"></text></g><g><title>memmove (373 samples, 0.07%)</title><rect x="37.3396%" y="581" width="0.0707%" height="15" fill="rgb(231,185,47)" fg:x="196859" fg:w="373"/><text x="37.5896%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (11,367 samples, 2.16%)</title><rect x="35.2754%" y="629" width="2.1561%" height="15" fill="rgb(233,154,1)" fg:x="185976" fg:w="11367"/><text x="35.5254%" y="639.50">b..</text></g><g><title>setup_items_for_insert (6,067 samples, 1.15%)</title><rect x="36.2807%" y="613" width="1.1508%" height="15" fill="rgb(225,15,46)" fg:x="191276" fg:w="6067"/><text x="36.5307%" y="623.50"></text></g><g><title>write_extent_buffer (111 samples, 0.02%)</title><rect x="37.4104%" y="597" width="0.0211%" height="15" fill="rgb(211,135,41)" fg:x="197232" fg:w="111"/><text x="37.6604%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (191 samples, 0.04%)</title><rect x="37.4314%" y="629" width="0.0362%" height="15" fill="rgb(208,54,0)" fg:x="197343" fg:w="191"/><text x="37.6814%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (116 samples, 0.02%)</title><rect x="37.4457%" y="613" width="0.0220%" height="15" fill="rgb(244,136,14)" fg:x="197418" fg:w="116"/><text x="37.6957%" y="623.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.03%)</title><rect x="37.4870%" y="629" width="0.0279%" height="15" fill="rgb(241,56,14)" fg:x="197636" fg:w="147"/><text x="37.7370%" y="639.50"></text></g><g><title>kmem_cache_free (116 samples, 0.02%)</title><rect x="37.5149%" y="629" width="0.0220%" height="15" fill="rgb(205,80,24)" fg:x="197783" fg:w="116"/><text x="37.7649%" y="639.50"></text></g><g><title>btrfs_insert_inode_ref (12,624 samples, 2.39%)</title><rect x="35.1674%" y="645" width="2.3945%" height="15" fill="rgb(220,57,4)" fg:x="185407" fg:w="12624"/><text x="35.4174%" y="655.50">bt..</text></g><g><title>write_extent_buffer (132 samples, 0.03%)</title><rect x="37.5369%" y="629" width="0.0250%" height="15" fill="rgb(226,193,50)" fg:x="197899" fg:w="132"/><text x="37.7869%" y="639.50"></text></g><g><title>mutex_lock (62 samples, 0.01%)</title><rect x="37.6099%" y="597" width="0.0118%" height="15" fill="rgb(231,168,22)" fg:x="198284" fg:w="62"/><text x="37.8599%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (269 samples, 0.05%)</title><rect x="37.5832%" y="613" width="0.0510%" height="15" fill="rgb(254,215,14)" fg:x="198143" fg:w="269"/><text x="37.8332%" y="623.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="37.6217%" y="597" width="0.0125%" height="15" fill="rgb(211,115,16)" fg:x="198346" fg:w="66"/><text x="37.8717%" y="607.50"></text></g><g><title>btrfs_get_or_create_delayed_node (92 samples, 0.02%)</title><rect x="37.6408%" y="613" width="0.0175%" height="15" fill="rgb(236,210,16)" fg:x="198447" fg:w="92"/><text x="37.8908%" y="623.50"></text></g><g><title>btrfs_get_delayed_node (80 samples, 0.02%)</title><rect x="37.6431%" y="597" width="0.0152%" height="15" fill="rgb(221,94,12)" fg:x="198459" fg:w="80"/><text x="37.8931%" y="607.50"></text></g><g><title>inode_get_bytes (90 samples, 0.02%)</title><rect x="37.6651%" y="597" width="0.0171%" height="15" fill="rgb(235,218,49)" fg:x="198575" fg:w="90"/><text x="37.9151%" y="607.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="37.6683%" y="581" width="0.0138%" height="15" fill="rgb(217,114,14)" fg:x="198592" fg:w="73"/><text x="37.9183%" y="591.50"></text></g><g><title>fill_stack_inode_item (175 samples, 0.03%)</title><rect x="37.6583%" y="613" width="0.0332%" height="15" fill="rgb(216,145,22)" fg:x="198539" fg:w="175"/><text x="37.9083%" y="623.50"></text></g><g><title>mutex_lock (59 samples, 0.01%)</title><rect x="37.6915%" y="613" width="0.0112%" height="15" fill="rgb(217,112,39)" fg:x="198714" fg:w="59"/><text x="37.9415%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (732 samples, 0.14%)</title><rect x="37.5765%" y="629" width="0.1388%" height="15" fill="rgb(225,85,32)" fg:x="198108" fg:w="732"/><text x="37.8265%" y="639.50"></text></g><g><title>mutex_unlock (67 samples, 0.01%)</title><rect x="37.7027%" y="613" width="0.0127%" height="15" fill="rgb(245,209,47)" fg:x="198773" fg:w="67"/><text x="37.9527%" y="623.50"></text></g><g><title>btrfs_update_inode (987 samples, 0.19%)</title><rect x="37.5619%" y="645" width="0.1872%" height="15" fill="rgb(218,220,15)" fg:x="198031" fg:w="987"/><text x="37.8119%" y="655.50"></text></g><g><title>btrfs_update_root_times (178 samples, 0.03%)</title><rect x="37.7154%" y="629" width="0.0338%" height="15" fill="rgb(222,202,31)" fg:x="198840" fg:w="178"/><text x="37.9654%" y="639.50"></text></g><g><title>ktime_get_real_ts64 (114 samples, 0.02%)</title><rect x="37.7275%" y="613" width="0.0216%" height="15" fill="rgb(243,203,4)" fg:x="198904" fg:w="114"/><text x="37.9775%" y="623.50"></text></g><g><title>read_tsc (70 samples, 0.01%)</title><rect x="37.7359%" y="597" width="0.0133%" height="15" fill="rgb(237,92,17)" fg:x="198948" fg:w="70"/><text x="37.9859%" y="607.50"></text></g><g><title>btrfs_add_link (33,911 samples, 6.43%)</title><rect x="31.3250%" y="661" width="6.4321%" height="15" fill="rgb(231,119,7)" fg:x="165149" fg:w="33911"/><text x="31.5750%" y="671.50">btrfs_ad..</text></g><g><title>btrfs_balance_delayed_items (68 samples, 0.01%)</title><rect x="37.7687%" y="645" width="0.0129%" height="15" fill="rgb(237,82,41)" fg:x="199121" fg:w="68"/><text x="38.0187%" y="655.50"></text></g><g><title>enqueue_task_fair (69 samples, 0.01%)</title><rect x="37.8114%" y="581" width="0.0131%" height="15" fill="rgb(226,81,48)" fg:x="199346" fg:w="69"/><text x="38.0614%" y="591.50"></text></g><g><title>enqueue_entity (62 samples, 0.01%)</title><rect x="37.8127%" y="565" width="0.0118%" height="15" fill="rgb(234,70,51)" fg:x="199353" fg:w="62"/><text x="38.0627%" y="575.50"></text></g><g><title>ttwu_do_activate (119 samples, 0.02%)</title><rect x="37.8100%" y="597" width="0.0226%" height="15" fill="rgb(251,86,4)" fg:x="199339" fg:w="119"/><text x="38.0600%" y="607.50"></text></g><g><title>__queue_work (264 samples, 0.05%)</title><rect x="37.7882%" y="629" width="0.0501%" height="15" fill="rgb(244,144,28)" fg:x="199224" fg:w="264"/><text x="38.0382%" y="639.50"></text></g><g><title>try_to_wake_up (212 samples, 0.04%)</title><rect x="37.7981%" y="613" width="0.0402%" height="15" fill="rgb(232,161,39)" fg:x="199276" fg:w="212"/><text x="38.0481%" y="623.50"></text></g><g><title>btrfs_btree_balance_dirty (429 samples, 0.08%)</title><rect x="37.7571%" y="661" width="0.0814%" height="15" fill="rgb(247,34,51)" fg:x="199060" fg:w="429"/><text x="38.0071%" y="671.50"></text></g><g><title>queue_work_on (280 samples, 0.05%)</title><rect x="37.7854%" y="645" width="0.0531%" height="15" fill="rgb(225,132,2)" fg:x="199209" fg:w="280"/><text x="38.0354%" y="655.50"></text></g><g><title>btrfs_iget (164 samples, 0.03%)</title><rect x="37.8626%" y="629" width="0.0311%" height="15" fill="rgb(209,159,44)" fg:x="199616" fg:w="164"/><text x="38.1126%" y="639.50"></text></g><g><title>iget5_locked (152 samples, 0.03%)</title><rect x="37.8648%" y="613" width="0.0288%" height="15" fill="rgb(251,214,1)" fg:x="199628" fg:w="152"/><text x="38.1148%" y="623.50"></text></g><g><title>ilookup5 (143 samples, 0.03%)</title><rect x="37.8666%" y="597" width="0.0271%" height="15" fill="rgb(247,84,47)" fg:x="199637" fg:w="143"/><text x="38.1166%" y="607.50"></text></g><g><title>ilookup5_nowait (118 samples, 0.02%)</title><rect x="37.8713%" y="581" width="0.0224%" height="15" fill="rgb(240,111,43)" fg:x="199662" fg:w="118"/><text x="38.1213%" y="591.50"></text></g><g><title>find_inode (66 samples, 0.01%)</title><rect x="37.8812%" y="565" width="0.0125%" height="15" fill="rgb(215,214,35)" fg:x="199714" fg:w="66"/><text x="38.1312%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (103 samples, 0.02%)</title><rect x="37.9149%" y="565" width="0.0195%" height="15" fill="rgb(248,207,23)" fg:x="199892" fg:w="103"/><text x="38.1649%" y="575.50"></text></g><g><title>__radix_tree_lookup (55 samples, 0.01%)</title><rect x="37.9565%" y="533" width="0.0104%" height="15" fill="rgb(214,186,4)" fg:x="200111" fg:w="55"/><text x="38.2065%" y="543.50"></text></g><g><title>find_extent_buffer (109 samples, 0.02%)</title><rect x="37.9519%" y="549" width="0.0207%" height="15" fill="rgb(220,133,22)" fg:x="200087" fg:w="109"/><text x="38.2019%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (217 samples, 0.04%)</title><rect x="37.9345%" y="565" width="0.0412%" height="15" fill="rgb(239,134,19)" fg:x="199995" fg:w="217"/><text x="38.1845%" y="575.50"></text></g><g><title>btrfs_search_slot (373 samples, 0.07%)</title><rect x="37.9066%" y="581" width="0.0707%" height="15" fill="rgb(250,140,9)" fg:x="199848" fg:w="373"/><text x="38.1566%" y="591.50"></text></g><g><title>btrfs_lookup_dir_item (383 samples, 0.07%)</title><rect x="37.9056%" y="597" width="0.0726%" height="15" fill="rgb(225,59,14)" fg:x="199843" fg:w="383"/><text x="38.1556%" y="607.50"></text></g><g><title>btrfs_release_path (55 samples, 0.01%)</title><rect x="37.9783%" y="597" width="0.0104%" height="15" fill="rgb(214,152,51)" fg:x="200226" fg:w="55"/><text x="38.2283%" y="607.50"></text></g><g><title>btrfs_check_ref_name_override (590 samples, 0.11%)</title><rect x="37.9007%" y="613" width="0.1119%" height="15" fill="rgb(251,227,43)" fg:x="199817" fg:w="590"/><text x="38.1507%" y="623.50"></text></g><g><title>btrfs_lookup_inode (58 samples, 0.01%)</title><rect x="38.0147%" y="581" width="0.0110%" height="15" fill="rgb(241,96,17)" fg:x="200418" fg:w="58"/><text x="38.2647%" y="591.50"></text></g><g><title>btrfs_search_slot (57 samples, 0.01%)</title><rect x="38.0149%" y="565" width="0.0108%" height="15" fill="rgb(234,198,43)" fg:x="200419" fg:w="57"/><text x="38.2649%" y="575.50"></text></g><g><title>__btrfs_update_delayed_inode (83 samples, 0.02%)</title><rect x="38.0137%" y="597" width="0.0157%" height="15" fill="rgb(220,108,29)" fg:x="200413" fg:w="83"/><text x="38.2637%" y="607.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (101 samples, 0.02%)</title><rect x="38.0126%" y="613" width="0.0192%" height="15" fill="rgb(226,163,33)" fg:x="200407" fg:w="101"/><text x="38.2626%" y="623.50"></text></g><g><title>__btrfs_update_delayed_inode (55 samples, 0.01%)</title><rect x="38.0382%" y="597" width="0.0104%" height="15" fill="rgb(205,194,45)" fg:x="200542" fg:w="55"/><text x="38.2882%" y="607.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.01%)</title><rect x="38.0583%" y="565" width="0.0133%" height="15" fill="rgb(206,143,44)" fg:x="200648" fg:w="70"/><text x="38.3083%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (148 samples, 0.03%)</title><rect x="38.0583%" y="581" width="0.0281%" height="15" fill="rgb(236,136,36)" fg:x="200648" fg:w="148"/><text x="38.3083%" y="591.50"></text></g><g><title>setup_items_for_insert (78 samples, 0.01%)</title><rect x="38.0716%" y="565" width="0.0148%" height="15" fill="rgb(249,172,42)" fg:x="200718" fg:w="78"/><text x="38.3216%" y="575.50"></text></g><g><title>btrfs_insert_delayed_items (194 samples, 0.04%)</title><rect x="38.0568%" y="597" width="0.0368%" height="15" fill="rgb(216,139,23)" fg:x="200640" fg:w="194"/><text x="38.3068%" y="607.50"></text></g><g><title>btrfs_commit_inode_delayed_items (346 samples, 0.07%)</title><rect x="38.0318%" y="613" width="0.0656%" height="15" fill="rgb(207,166,20)" fg:x="200508" fg:w="346"/><text x="38.2818%" y="623.50"></text></g><g><title>btrfs_release_path (77 samples, 0.01%)</title><rect x="38.1071%" y="613" width="0.0146%" height="15" fill="rgb(210,209,22)" fg:x="200905" fg:w="77"/><text x="38.3571%" y="623.50"></text></g><g><title>__radix_tree_lookup (101 samples, 0.02%)</title><rect x="38.1609%" y="533" width="0.0192%" height="15" fill="rgb(232,118,20)" fg:x="201189" fg:w="101"/><text x="38.4109%" y="543.50"></text></g><g><title>alloc_extent_buffer (180 samples, 0.03%)</title><rect x="38.1537%" y="565" width="0.0341%" height="15" fill="rgb(238,113,42)" fg:x="201151" fg:w="180"/><text x="38.4037%" y="575.50"></text></g><g><title>find_extent_buffer (169 samples, 0.03%)</title><rect x="38.1558%" y="549" width="0.0321%" height="15" fill="rgb(231,42,5)" fg:x="201162" fg:w="169"/><text x="38.4058%" y="559.50"></text></g><g><title>btrfs_read_node_slot (314 samples, 0.06%)</title><rect x="38.1403%" y="597" width="0.0596%" height="15" fill="rgb(243,166,24)" fg:x="201080" fg:w="314"/><text x="38.3903%" y="607.50"></text></g><g><title>read_tree_block (247 samples, 0.05%)</title><rect x="38.1530%" y="581" width="0.0469%" height="15" fill="rgb(237,226,12)" fg:x="201147" fg:w="247"/><text x="38.4030%" y="591.50"></text></g><g><title>btree_read_extent_buffer_pages (63 samples, 0.01%)</title><rect x="38.1879%" y="565" width="0.0119%" height="15" fill="rgb(229,133,24)" fg:x="201331" fg:w="63"/><text x="38.4379%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (75 samples, 0.01%)</title><rect x="38.2004%" y="597" width="0.0142%" height="15" fill="rgb(238,33,43)" fg:x="201397" fg:w="75"/><text x="38.4504%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (178 samples, 0.03%)</title><rect x="38.2184%" y="597" width="0.0338%" height="15" fill="rgb(227,59,38)" fg:x="201492" fg:w="178"/><text x="38.4684%" y="607.50"></text></g><g><title>btrfs_search_forward (758 samples, 0.14%)</title><rect x="38.1217%" y="613" width="0.1438%" height="15" fill="rgb(230,97,0)" fg:x="200982" fg:w="758"/><text x="38.3717%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (93 samples, 0.02%)</title><rect x="38.3297%" y="565" width="0.0176%" height="15" fill="rgb(250,173,50)" fg:x="202079" fg:w="93"/><text x="38.5797%" y="575.50"></text></g><g><title>find_extent_buffer (57 samples, 0.01%)</title><rect x="38.3531%" y="549" width="0.0108%" height="15" fill="rgb(240,15,50)" fg:x="202202" fg:w="57"/><text x="38.6031%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (99 samples, 0.02%)</title><rect x="38.3474%" y="565" width="0.0188%" height="15" fill="rgb(221,93,22)" fg:x="202172" fg:w="99"/><text x="38.5974%" y="575.50"></text></g><g><title>split_leaf (81 samples, 0.02%)</title><rect x="38.3679%" y="565" width="0.0154%" height="15" fill="rgb(245,180,53)" fg:x="202280" fg:w="81"/><text x="38.6179%" y="575.50"></text></g><g><title>btrfs_search_slot (471 samples, 0.09%)</title><rect x="38.2979%" y="581" width="0.0893%" height="15" fill="rgb(231,88,51)" fg:x="201911" fg:w="471"/><text x="38.5479%" y="591.50"></text></g><g><title>btrfs_get_token_32 (264 samples, 0.05%)</title><rect x="38.4121%" y="565" width="0.0501%" height="15" fill="rgb(240,58,21)" fg:x="202513" fg:w="264"/><text x="38.6621%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (64 samples, 0.01%)</title><rect x="38.4500%" y="549" width="0.0121%" height="15" fill="rgb(237,21,10)" fg:x="202713" fg:w="64"/><text x="38.7000%" y="559.50"></text></g><g><title>btrfs_set_token_32 (285 samples, 0.05%)</title><rect x="38.4739%" y="565" width="0.0541%" height="15" fill="rgb(218,43,11)" fg:x="202839" fg:w="285"/><text x="38.7239%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (55 samples, 0.01%)</title><rect x="38.5175%" y="549" width="0.0104%" height="15" fill="rgb(218,221,29)" fg:x="203069" fg:w="55"/><text x="38.7675%" y="559.50"></text></g><g><title>memcpy_extent_buffer (135 samples, 0.03%)</title><rect x="38.5287%" y="565" width="0.0256%" height="15" fill="rgb(214,118,42)" fg:x="203128" fg:w="135"/><text x="38.7787%" y="575.50"></text></g><g><title>memmove (93 samples, 0.02%)</title><rect x="38.5367%" y="549" width="0.0176%" height="15" fill="rgb(251,200,26)" fg:x="203170" fg:w="93"/><text x="38.7867%" y="559.50"></text></g><g><title>memmove_extent_buffer (104 samples, 0.02%)</title><rect x="38.5543%" y="565" width="0.0197%" height="15" fill="rgb(237,101,39)" fg:x="203263" fg:w="104"/><text x="38.8043%" y="575.50"></text></g><g><title>memmove (77 samples, 0.01%)</title><rect x="38.5594%" y="549" width="0.0146%" height="15" fill="rgb(251,117,11)" fg:x="203290" fg:w="77"/><text x="38.8094%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (1,497 samples, 0.28%)</title><rect x="38.2962%" y="597" width="0.2839%" height="15" fill="rgb(216,223,23)" fg:x="201902" fg:w="1497"/><text x="38.5462%" y="607.50"></text></g><g><title>setup_items_for_insert (1,017 samples, 0.19%)</title><rect x="38.3872%" y="581" width="0.1929%" height="15" fill="rgb(251,54,12)" fg:x="202382" fg:w="1017"/><text x="38.6372%" y="591.50"></text></g><g><title>fill_inode_item (146 samples, 0.03%)</title><rect x="38.5985%" y="597" width="0.0277%" height="15" fill="rgb(254,176,54)" fg:x="203496" fg:w="146"/><text x="38.8485%" y="607.50"></text></g><g><title>copy_items.isra.0 (1,899 samples, 0.36%)</title><rect x="38.2747%" y="613" width="0.3602%" height="15" fill="rgb(210,32,8)" fg:x="201789" fg:w="1899"/><text x="38.5247%" y="623.50"></text></g><g><title>btrfs_get_token_32 (219 samples, 0.04%)</title><rect x="38.6602%" y="581" width="0.0415%" height="15" fill="rgb(235,52,38)" fg:x="203821" fg:w="219"/><text x="38.9102%" y="591.50"></text></g><g><title>btrfs_set_token_32 (193 samples, 0.04%)</title><rect x="38.7051%" y="581" width="0.0366%" height="15" fill="rgb(231,4,44)" fg:x="204058" fg:w="193"/><text x="38.9551%" y="591.50"></text></g><g><title>btrfs_del_items (797 samples, 0.15%)</title><rect x="38.6383%" y="597" width="0.1512%" height="15" fill="rgb(249,2,32)" fg:x="203706" fg:w="797"/><text x="38.8883%" y="607.50"></text></g><g><title>memmove_extent_buffer (204 samples, 0.04%)</title><rect x="38.7508%" y="581" width="0.0387%" height="15" fill="rgb(224,65,26)" fg:x="204299" fg:w="204"/><text x="39.0008%" y="591.50"></text></g><g><title>memmove (159 samples, 0.03%)</title><rect x="38.7594%" y="565" width="0.0302%" height="15" fill="rgb(250,73,40)" fg:x="204344" fg:w="159"/><text x="39.0094%" y="575.50"></text></g><g><title>btrfs_release_path (69 samples, 0.01%)</title><rect x="38.7895%" y="597" width="0.0131%" height="15" fill="rgb(253,177,16)" fg:x="204503" fg:w="69"/><text x="39.0395%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (126 samples, 0.02%)</title><rect x="38.8305%" y="581" width="0.0239%" height="15" fill="rgb(217,32,34)" fg:x="204719" fg:w="126"/><text x="39.0805%" y="591.50"></text></g><g><title>find_extent_buffer (86 samples, 0.02%)</title><rect x="38.8605%" y="565" width="0.0163%" height="15" fill="rgb(212,7,10)" fg:x="204877" fg:w="86"/><text x="39.1105%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (134 samples, 0.03%)</title><rect x="38.8544%" y="581" width="0.0254%" height="15" fill="rgb(245,89,8)" fg:x="204845" fg:w="134"/><text x="39.1044%" y="591.50"></text></g><g><title>btrfs_search_slot (432 samples, 0.08%)</title><rect x="38.8026%" y="597" width="0.0819%" height="15" fill="rgb(237,16,53)" fg:x="204572" fg:w="432"/><text x="39.0526%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (75 samples, 0.01%)</title><rect x="38.8845%" y="597" width="0.0142%" height="15" fill="rgb(250,204,30)" fg:x="205004" fg:w="75"/><text x="39.1345%" y="607.50"></text></g><g><title>drop_objectid_items (1,407 samples, 0.27%)</title><rect x="38.6349%" y="613" width="0.2669%" height="15" fill="rgb(208,77,27)" fg:x="203688" fg:w="1407"/><text x="38.8849%" y="623.50"></text></g><g><title>kmem_cache_alloc (62 samples, 0.01%)</title><rect x="38.9018%" y="613" width="0.0118%" height="15" fill="rgb(250,204,28)" fg:x="205095" fg:w="62"/><text x="39.1518%" y="623.50"></text></g><g><title>btrfs_read_node_slot (54 samples, 0.01%)</title><rect x="38.9733%" y="565" width="0.0102%" height="15" fill="rgb(244,63,21)" fg:x="205472" fg:w="54"/><text x="39.2233%" y="575.50"></text></g><g><title>btrfs_search_forward (141 samples, 0.03%)</title><rect x="38.9695%" y="581" width="0.0267%" height="15" fill="rgb(236,85,44)" fg:x="205452" fg:w="141"/><text x="39.2195%" y="591.50"></text></g><g><title>btrfs_search_slot (112 samples, 0.02%)</title><rect x="38.9963%" y="581" width="0.0212%" height="15" fill="rgb(215,98,4)" fg:x="205593" fg:w="112"/><text x="39.2463%" y="591.50"></text></g><g><title>btrfs_search_slot (96 samples, 0.02%)</title><rect x="39.0185%" y="549" width="0.0182%" height="15" fill="rgb(235,38,11)" fg:x="205710" fg:w="96"/><text x="39.2685%" y="559.50"></text></g><g><title>btrfs_get_token_32 (125 samples, 0.02%)</title><rect x="39.0425%" y="533" width="0.0237%" height="15" fill="rgb(254,186,25)" fg:x="205837" fg:w="125"/><text x="39.2925%" y="543.50"></text></g><g><title>btrfs_set_token_32 (100 samples, 0.02%)</title><rect x="39.0691%" y="533" width="0.0190%" height="15" fill="rgb(225,55,31)" fg:x="205977" fg:w="100"/><text x="39.3191%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (432 samples, 0.08%)</title><rect x="39.0179%" y="565" width="0.0819%" height="15" fill="rgb(211,15,21)" fg:x="205707" fg:w="432"/><text x="39.2679%" y="575.50"></text></g><g><title>setup_items_for_insert (333 samples, 0.06%)</title><rect x="39.0367%" y="549" width="0.0632%" height="15" fill="rgb(215,187,41)" fg:x="205806" fg:w="333"/><text x="39.2867%" y="559.50"></text></g><g><title>insert_dir_log_key (450 samples, 0.09%)</title><rect x="39.0175%" y="581" width="0.0854%" height="15" fill="rgb(248,69,32)" fg:x="205705" fg:w="450"/><text x="39.2675%" y="591.50"></text></g><g><title>memcg_slab_post_alloc_hook (84 samples, 0.02%)</title><rect x="39.1858%" y="549" width="0.0159%" height="15" fill="rgb(252,102,52)" fg:x="206592" fg:w="84"/><text x="39.4358%" y="559.50"></text></g><g><title>memset_erms (158 samples, 0.03%)</title><rect x="39.2026%" y="549" width="0.0300%" height="15" fill="rgb(253,140,32)" fg:x="206681" fg:w="158"/><text x="39.4526%" y="559.50"></text></g><g><title>__kmalloc (629 samples, 0.12%)</title><rect x="39.1317%" y="565" width="0.1193%" height="15" fill="rgb(216,56,42)" fg:x="206307" fg:w="629"/><text x="39.3817%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (97 samples, 0.02%)</title><rect x="39.2326%" y="549" width="0.0184%" height="15" fill="rgb(216,184,14)" fg:x="206839" fg:w="97"/><text x="39.4826%" y="559.50"></text></g><g><title>btrfs_get_32 (156 samples, 0.03%)</title><rect x="39.2510%" y="565" width="0.0296%" height="15" fill="rgb(237,187,27)" fg:x="206936" fg:w="156"/><text x="39.5010%" y="575.50"></text></g><g><title>btrfs_get_token_32 (55 samples, 0.01%)</title><rect x="39.2929%" y="533" width="0.0104%" height="15" fill="rgb(219,65,3)" fg:x="207157" fg:w="55"/><text x="39.5429%" y="543.50"></text></g><g><title>btrfs_set_token_32 (59 samples, 0.01%)</title><rect x="39.3045%" y="533" width="0.0112%" height="15" fill="rgb(245,83,25)" fg:x="207218" fg:w="59"/><text x="39.5545%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (217 samples, 0.04%)</title><rect x="39.2806%" y="565" width="0.0412%" height="15" fill="rgb(214,205,45)" fg:x="207092" fg:w="217"/><text x="39.5306%" y="575.50"></text></g><g><title>setup_items_for_insert (165 samples, 0.03%)</title><rect x="39.2905%" y="549" width="0.0313%" height="15" fill="rgb(241,20,18)" fg:x="207144" fg:w="165"/><text x="39.5405%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (64 samples, 0.01%)</title><rect x="39.3337%" y="549" width="0.0121%" height="15" fill="rgb(232,163,23)" fg:x="207372" fg:w="64"/><text x="39.5837%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (162 samples, 0.03%)</title><rect x="39.3472%" y="549" width="0.0307%" height="15" fill="rgb(214,5,46)" fg:x="207443" fg:w="162"/><text x="39.5972%" y="559.50"></text></g><g><title>_raw_spin_lock (123 samples, 0.02%)</title><rect x="39.3546%" y="533" width="0.0233%" height="15" fill="rgb(229,78,17)" fg:x="207482" fg:w="123"/><text x="39.6046%" y="543.50"></text></g><g><title>btrfs_release_path (424 samples, 0.08%)</title><rect x="39.3221%" y="565" width="0.0804%" height="15" fill="rgb(248,89,10)" fg:x="207311" fg:w="424"/><text x="39.5721%" y="575.50"></text></g><g><title>release_extent_buffer (130 samples, 0.02%)</title><rect x="39.3779%" y="549" width="0.0247%" height="15" fill="rgb(248,54,15)" fg:x="207605" fg:w="130"/><text x="39.6279%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (106 samples, 0.02%)</title><rect x="39.4460%" y="533" width="0.0201%" height="15" fill="rgb(223,116,6)" fg:x="207964" fg:w="106"/><text x="39.6960%" y="543.50"></text></g><g><title>_raw_read_lock (73 samples, 0.01%)</title><rect x="39.4523%" y="517" width="0.0138%" height="15" fill="rgb(205,125,38)" fg:x="207997" fg:w="73"/><text x="39.7023%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (218 samples, 0.04%)</title><rect x="39.4435%" y="549" width="0.0413%" height="15" fill="rgb(251,78,38)" fg:x="207951" fg:w="218"/><text x="39.6935%" y="559.50"></text></g><g><title>btrfs_root_node (99 samples, 0.02%)</title><rect x="39.4661%" y="533" width="0.0188%" height="15" fill="rgb(253,78,28)" fg:x="208070" fg:w="99"/><text x="39.7161%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (205 samples, 0.04%)</title><rect x="39.4894%" y="549" width="0.0389%" height="15" fill="rgb(209,120,3)" fg:x="208193" fg:w="205"/><text x="39.7394%" y="559.50"></text></g><g><title>btrfs_set_lock_blocking_read (142 samples, 0.03%)</title><rect x="39.5014%" y="533" width="0.0269%" height="15" fill="rgb(238,229,9)" fg:x="208256" fg:w="142"/><text x="39.7514%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (77 samples, 0.01%)</title><rect x="39.5283%" y="549" width="0.0146%" height="15" fill="rgb(253,159,18)" fg:x="208398" fg:w="77"/><text x="39.7783%" y="559.50"></text></g><g><title>_raw_read_lock (63 samples, 0.01%)</title><rect x="39.5310%" y="533" width="0.0119%" height="15" fill="rgb(244,42,34)" fg:x="208412" fg:w="63"/><text x="39.7810%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (83 samples, 0.02%)</title><rect x="39.5429%" y="549" width="0.0157%" height="15" fill="rgb(224,8,7)" fg:x="208475" fg:w="83"/><text x="39.7929%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (657 samples, 0.12%)</title><rect x="39.5587%" y="549" width="0.1246%" height="15" fill="rgb(210,201,45)" fg:x="208558" fg:w="657"/><text x="39.8087%" y="559.50"></text></g><g><title>btrfs_get_64 (84 samples, 0.02%)</title><rect x="39.7022%" y="533" width="0.0159%" height="15" fill="rgb(252,185,21)" fg:x="209315" fg:w="84"/><text x="39.9522%" y="543.50"></text></g><g><title>__radix_tree_lookup (221 samples, 0.04%)</title><rect x="39.7379%" y="517" width="0.0419%" height="15" fill="rgb(223,131,1)" fg:x="209503" fg:w="221"/><text x="39.9879%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (174 samples, 0.03%)</title><rect x="39.7798%" y="517" width="0.0330%" height="15" fill="rgb(245,141,16)" fg:x="209724" fg:w="174"/><text x="40.0298%" y="527.50"></text></g><g><title>mark_page_accessed (101 samples, 0.02%)</title><rect x="39.7937%" y="501" width="0.0192%" height="15" fill="rgb(229,55,45)" fg:x="209797" fg:w="101"/><text x="40.0437%" y="511.50"></text></g><g><title>find_extent_buffer (472 samples, 0.09%)</title><rect x="39.7237%" y="533" width="0.0895%" height="15" fill="rgb(208,92,15)" fg:x="209428" fg:w="472"/><text x="39.9737%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (787 samples, 0.15%)</title><rect x="39.6833%" y="549" width="0.1493%" height="15" fill="rgb(234,185,47)" fg:x="209215" fg:w="787"/><text x="39.9333%" y="559.50"></text></g><g><title>read_extent_buffer (102 samples, 0.02%)</title><rect x="39.8132%" y="533" width="0.0193%" height="15" fill="rgb(253,104,50)" fg:x="209900" fg:w="102"/><text x="40.0632%" y="543.50"></text></g><g><title>btrfs_search_slot (2,375 samples, 0.45%)</title><rect x="39.4026%" y="565" width="0.4505%" height="15" fill="rgb(205,70,7)" fg:x="207735" fg:w="2375"/><text x="39.6526%" y="575.50"></text></g><g><title>unlock_up (108 samples, 0.02%)</title><rect x="39.8326%" y="549" width="0.0205%" height="15" fill="rgb(240,178,43)" fg:x="210002" fg:w="108"/><text x="40.0826%" y="559.50"></text></g><g><title>kfree (461 samples, 0.09%)</title><rect x="39.8536%" y="565" width="0.0874%" height="15" fill="rgb(214,112,2)" fg:x="210113" fg:w="461"/><text x="40.1036%" y="575.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (83 samples, 0.02%)</title><rect x="39.9253%" y="549" width="0.0157%" height="15" fill="rgb(206,46,17)" fg:x="210491" fg:w="83"/><text x="40.1753%" y="559.50"></text></g><g><title>memcmp (296 samples, 0.06%)</title><rect x="39.9410%" y="565" width="0.0561%" height="15" fill="rgb(225,220,16)" fg:x="210574" fg:w="296"/><text x="40.1910%" y="575.50"></text></g><g><title>overwrite_item (5,018 samples, 0.95%)</title><rect x="39.1029%" y="581" width="0.9518%" height="15" fill="rgb(238,65,40)" fg:x="206155" fg:w="5018"/><text x="39.3529%" y="591.50"></text></g><g><title>read_extent_buffer (303 samples, 0.06%)</title><rect x="39.9972%" y="565" width="0.0575%" height="15" fill="rgb(230,151,21)" fg:x="210870" fg:w="303"/><text x="40.2472%" y="575.50"></text></g><g><title>log_directory_changes (6,163 samples, 1.17%)</title><rect x="38.9198%" y="613" width="1.1690%" height="15" fill="rgb(218,58,49)" fg:x="205190" fg:w="6163"/><text x="39.1698%" y="623.50"></text></g><g><title>log_dir_items (6,162 samples, 1.17%)</title><rect x="38.9200%" y="597" width="1.1688%" height="15" fill="rgb(219,179,14)" fg:x="205191" fg:w="6162"/><text x="39.1700%" y="607.50"></text></g><g><title>read_extent_buffer (180 samples, 0.03%)</title><rect x="40.0547%" y="581" width="0.0341%" height="15" fill="rgb(223,72,1)" fg:x="211173" fg:w="180"/><text x="40.3047%" y="591.50"></text></g><g><title>btrfs_log_inode (11,630 samples, 2.21%)</title><rect x="37.8937%" y="629" width="2.2059%" height="15" fill="rgb(238,126,10)" fg:x="199780" fg:w="11630"/><text x="38.1437%" y="639.50">b..</text></g><g><title>free_extent_buffer.part.0 (78 samples, 0.01%)</title><rect x="40.1171%" y="613" width="0.0148%" height="15" fill="rgb(224,206,38)" fg:x="211502" fg:w="78"/><text x="40.3671%" y="623.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="40.1205%" y="597" width="0.0114%" height="15" fill="rgb(212,201,54)" fg:x="211520" fg:w="60"/><text x="40.3705%" y="607.50"></text></g><g><title>btrfs_release_path (207 samples, 0.04%)</title><rect x="40.1072%" y="629" width="0.0393%" height="15" fill="rgb(218,154,48)" fg:x="211450" fg:w="207"/><text x="40.3572%" y="639.50"></text></g><g><title>release_extent_buffer (77 samples, 0.01%)</title><rect x="40.1319%" y="613" width="0.0146%" height="15" fill="rgb(232,93,24)" fg:x="211580" fg:w="77"/><text x="40.3819%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (78 samples, 0.01%)</title><rect x="40.1700%" y="613" width="0.0148%" height="15" fill="rgb(245,30,21)" fg:x="211781" fg:w="78"/><text x="40.4200%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (84 samples, 0.02%)</title><rect x="40.1882%" y="613" width="0.0159%" height="15" fill="rgb(242,148,29)" fg:x="211877" fg:w="84"/><text x="40.4382%" y="623.50"></text></g><g><title>btrfs_set_lock_blocking_read (58 samples, 0.01%)</title><rect x="40.1931%" y="597" width="0.0110%" height="15" fill="rgb(244,153,54)" fg:x="211903" fg:w="58"/><text x="40.4431%" y="607.50"></text></g><g><title>btrfs_tree_read_lock_atomic (77 samples, 0.01%)</title><rect x="40.2041%" y="613" width="0.0146%" height="15" fill="rgb(252,87,22)" fg:x="211961" fg:w="77"/><text x="40.4541%" y="623.50"></text></g><g><title>_raw_read_lock (62 samples, 0.01%)</title><rect x="40.2070%" y="597" width="0.0118%" height="15" fill="rgb(210,51,29)" fg:x="211976" fg:w="62"/><text x="40.4570%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (667 samples, 0.13%)</title><rect x="40.2284%" y="613" width="0.1265%" height="15" fill="rgb(242,136,47)" fg:x="212089" fg:w="667"/><text x="40.4784%" y="623.50"></text></g><g><title>btrfs_get_64 (71 samples, 0.01%)</title><rect x="40.3750%" y="597" width="0.0135%" height="15" fill="rgb(238,68,4)" fg:x="212862" fg:w="71"/><text x="40.6250%" y="607.50"></text></g><g><title>btrfs_verify_level_key (64 samples, 0.01%)</title><rect x="40.3894%" y="597" width="0.0121%" height="15" fill="rgb(242,161,30)" fg:x="212938" fg:w="64"/><text x="40.6394%" y="607.50"></text></g><g><title>__radix_tree_lookup (320 samples, 0.06%)</title><rect x="40.4236%" y="581" width="0.0607%" height="15" fill="rgb(218,58,44)" fg:x="213118" fg:w="320"/><text x="40.6736%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (165 samples, 0.03%)</title><rect x="40.4843%" y="581" width="0.0313%" height="15" fill="rgb(252,125,32)" fg:x="213438" fg:w="165"/><text x="40.7343%" y="591.50"></text></g><g><title>mark_page_accessed (106 samples, 0.02%)</title><rect x="40.4955%" y="565" width="0.0201%" height="15" fill="rgb(219,178,0)" fg:x="213497" fg:w="106"/><text x="40.7455%" y="575.50"></text></g><g><title>find_extent_buffer (606 samples, 0.11%)</title><rect x="40.4016%" y="597" width="0.1149%" height="15" fill="rgb(213,152,7)" fg:x="213002" fg:w="606"/><text x="40.6516%" y="607.50"></text></g><g><title>read_extent_buffer (84 samples, 0.02%)</title><rect x="40.5165%" y="597" width="0.0159%" height="15" fill="rgb(249,109,34)" fg:x="213608" fg:w="84"/><text x="40.7665%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (943 samples, 0.18%)</title><rect x="40.3549%" y="613" width="0.1789%" height="15" fill="rgb(232,96,21)" fg:x="212756" fg:w="943"/><text x="40.6049%" y="623.50"></text></g><g><title>btrfs_search_slot (2,090 samples, 0.40%)</title><rect x="40.1465%" y="629" width="0.3964%" height="15" fill="rgb(228,27,39)" fg:x="211657" fg:w="2090"/><text x="40.3965%" y="639.50"></text></g><g><title>check_parent_dirs_for_sync (85 samples, 0.02%)</title><rect x="40.5429%" y="629" width="0.0161%" height="15" fill="rgb(211,182,52)" fg:x="213747" fg:w="85"/><text x="40.7929%" y="639.50"></text></g><g><title>btrfs_search_forward (119 samples, 0.02%)</title><rect x="40.5803%" y="597" width="0.0226%" height="15" fill="rgb(234,178,38)" fg:x="213944" fg:w="119"/><text x="40.8303%" y="607.50"></text></g><g><title>btrfs_search_slot (55 samples, 0.01%)</title><rect x="40.6062%" y="565" width="0.0104%" height="15" fill="rgb(221,111,3)" fg:x="214081" fg:w="55"/><text x="40.8562%" y="575.50"></text></g><g><title>btrfs_get_token_32 (88 samples, 0.02%)</title><rect x="40.6220%" y="549" width="0.0167%" height="15" fill="rgb(228,175,21)" fg:x="214164" fg:w="88"/><text x="40.8720%" y="559.50"></text></g><g><title>btrfs_set_token_32 (68 samples, 0.01%)</title><rect x="40.6404%" y="549" width="0.0129%" height="15" fill="rgb(228,174,43)" fg:x="214261" fg:w="68"/><text x="40.8904%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (294 samples, 0.06%)</title><rect x="40.6059%" y="581" width="0.0558%" height="15" fill="rgb(211,191,0)" fg:x="214079" fg:w="294"/><text x="40.8559%" y="591.50"></text></g><g><title>setup_items_for_insert (237 samples, 0.04%)</title><rect x="40.6167%" y="565" width="0.0450%" height="15" fill="rgb(253,117,3)" fg:x="214136" fg:w="237"/><text x="40.8667%" y="575.50"></text></g><g><title>copy_items.isra.0 (349 samples, 0.07%)</title><rect x="40.6028%" y="597" width="0.0662%" height="15" fill="rgb(241,127,19)" fg:x="214063" fg:w="349"/><text x="40.8528%" y="607.50"></text></g><g><title>btrfs_get_token_32 (79 samples, 0.01%)</title><rect x="40.6760%" y="565" width="0.0150%" height="15" fill="rgb(218,103,12)" fg:x="214449" fg:w="79"/><text x="40.9260%" y="575.50"></text></g><g><title>btrfs_set_token_32 (91 samples, 0.02%)</title><rect x="40.6920%" y="565" width="0.0173%" height="15" fill="rgb(236,214,43)" fg:x="214533" fg:w="91"/><text x="40.9420%" y="575.50"></text></g><g><title>btrfs_del_items (259 samples, 0.05%)</title><rect x="40.6698%" y="581" width="0.0491%" height="15" fill="rgb(244,144,19)" fg:x="214416" fg:w="259"/><text x="40.9198%" y="591.50"></text></g><g><title>btrfs_search_slot (84 samples, 0.02%)</title><rect x="40.7204%" y="581" width="0.0159%" height="15" fill="rgb(246,188,10)" fg:x="214683" fg:w="84"/><text x="40.9704%" y="591.50"></text></g><g><title>drop_objectid_items (371 samples, 0.07%)</title><rect x="40.6690%" y="597" width="0.0704%" height="15" fill="rgb(212,193,33)" fg:x="214412" fg:w="371"/><text x="40.9190%" y="607.50"></text></g><g><title>btrfs_read_node_slot (89 samples, 0.02%)</title><rect x="40.7749%" y="549" width="0.0169%" height="15" fill="rgb(241,51,29)" fg:x="214970" fg:w="89"/><text x="41.0249%" y="559.50"></text></g><g><title>read_tree_block (59 samples, 0.01%)</title><rect x="40.7806%" y="533" width="0.0112%" height="15" fill="rgb(211,58,19)" fg:x="215000" fg:w="59"/><text x="41.0306%" y="543.50"></text></g><g><title>btrfs_search_forward (210 samples, 0.04%)</title><rect x="40.7686%" y="565" width="0.0398%" height="15" fill="rgb(229,111,26)" fg:x="214937" fg:w="210"/><text x="41.0186%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (55 samples, 0.01%)</title><rect x="40.8138%" y="549" width="0.0104%" height="15" fill="rgb(213,115,40)" fg:x="215175" fg:w="55"/><text x="41.0638%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (63 samples, 0.01%)</title><rect x="40.8242%" y="549" width="0.0119%" height="15" fill="rgb(209,56,44)" fg:x="215230" fg:w="63"/><text x="41.0742%" y="559.50"></text></g><g><title>btrfs_search_slot (152 samples, 0.03%)</title><rect x="40.8084%" y="565" width="0.0288%" height="15" fill="rgb(230,108,32)" fg:x="215147" fg:w="152"/><text x="41.0584%" y="575.50"></text></g><g><title>btrfs_search_slot (104 samples, 0.02%)</title><rect x="40.8373%" y="533" width="0.0197%" height="15" fill="rgb(216,165,31)" fg:x="215299" fg:w="104"/><text x="41.0873%" y="543.50"></text></g><g><title>btrfs_get_token_32 (173 samples, 0.03%)</title><rect x="40.8688%" y="517" width="0.0328%" height="15" fill="rgb(218,122,21)" fg:x="215465" fg:w="173"/><text x="41.1188%" y="527.50"></text></g><g><title>btrfs_set_token_32 (192 samples, 0.04%)</title><rect x="40.9048%" y="517" width="0.0364%" height="15" fill="rgb(223,224,47)" fg:x="215655" fg:w="192"/><text x="41.1548%" y="527.50"></text></g><g><title>btrfs_insert_empty_items (636 samples, 0.12%)</title><rect x="40.8373%" y="549" width="0.1206%" height="15" fill="rgb(238,102,44)" fg:x="215299" fg:w="636"/><text x="41.0873%" y="559.50"></text></g><g><title>setup_items_for_insert (532 samples, 0.10%)</title><rect x="40.8570%" y="533" width="0.1009%" height="15" fill="rgb(236,46,40)" fg:x="215403" fg:w="532"/><text x="41.1070%" y="543.50"></text></g><g><title>insert_dir_log_key (663 samples, 0.13%)</title><rect x="40.8373%" y="565" width="0.1258%" height="15" fill="rgb(247,202,50)" fg:x="215299" fg:w="663"/><text x="41.0873%" y="575.50"></text></g><g><title>__kmalloc (169 samples, 0.03%)</title><rect x="40.9733%" y="549" width="0.0321%" height="15" fill="rgb(209,99,20)" fg:x="216016" fg:w="169"/><text x="41.2233%" y="559.50"></text></g><g><title>btrfs_set_token_32 (63 samples, 0.01%)</title><rect x="41.0359%" y="517" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="216346" fg:w="63"/><text x="41.2859%" y="527.50"></text></g><g><title>btrfs_insert_empty_items (213 samples, 0.04%)</title><rect x="41.0142%" y="549" width="0.0404%" height="15" fill="rgb(215,206,23)" fg:x="216232" fg:w="213"/><text x="41.2642%" y="559.50"></text></g><g><title>setup_items_for_insert (167 samples, 0.03%)</title><rect x="41.0230%" y="533" width="0.0317%" height="15" fill="rgb(212,135,36)" fg:x="216278" fg:w="167"/><text x="41.2730%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (54 samples, 0.01%)</title><rect x="41.0647%" y="533" width="0.0102%" height="15" fill="rgb(240,189,1)" fg:x="216498" fg:w="54"/><text x="41.3147%" y="543.50"></text></g><g><title>btrfs_release_path (152 samples, 0.03%)</title><rect x="41.0550%" y="549" width="0.0288%" height="15" fill="rgb(242,56,20)" fg:x="216447" fg:w="152"/><text x="41.3050%" y="559.50"></text></g><g><title>__btrfs_read_lock_root_node (56 samples, 0.01%)</title><rect x="41.0960%" y="533" width="0.0106%" height="15" fill="rgb(247,132,33)" fg:x="216663" fg:w="56"/><text x="41.3460%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (68 samples, 0.01%)</title><rect x="41.1072%" y="533" width="0.0129%" height="15" fill="rgb(208,149,11)" fg:x="216722" fg:w="68"/><text x="41.3572%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (224 samples, 0.04%)</title><rect x="41.1286%" y="533" width="0.0425%" height="15" fill="rgb(211,33,11)" fg:x="216835" fg:w="224"/><text x="41.3786%" y="543.50"></text></g><g><title>__radix_tree_lookup (67 samples, 0.01%)</title><rect x="41.1884%" y="501" width="0.0127%" height="15" fill="rgb(221,29,38)" fg:x="217150" fg:w="67"/><text x="41.4384%" y="511.50"></text></g><g><title>find_extent_buffer (142 samples, 0.03%)</title><rect x="41.1840%" y="517" width="0.0269%" height="15" fill="rgb(206,182,49)" fg:x="217127" fg:w="142"/><text x="41.4340%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (233 samples, 0.04%)</title><rect x="41.1711%" y="533" width="0.0442%" height="15" fill="rgb(216,140,1)" fg:x="217059" fg:w="233"/><text x="41.4211%" y="543.50"></text></g><g><title>btrfs_search_slot (726 samples, 0.14%)</title><rect x="41.0839%" y="549" width="0.1377%" height="15" fill="rgb(232,57,40)" fg:x="216599" fg:w="726"/><text x="41.3339%" y="559.50"></text></g><g><title>kfree (130 samples, 0.02%)</title><rect x="41.2219%" y="549" width="0.0247%" height="15" fill="rgb(224,186,18)" fg:x="217327" fg:w="130"/><text x="41.4719%" y="559.50"></text></g><g><title>memcmp (83 samples, 0.02%)</title><rect x="41.2466%" y="549" width="0.0157%" height="15" fill="rgb(215,121,11)" fg:x="217457" fg:w="83"/><text x="41.4966%" y="559.50"></text></g><g><title>overwrite_item (1,667 samples, 0.32%)</title><rect x="40.9630%" y="565" width="0.3162%" height="15" fill="rgb(245,147,10)" fg:x="215962" fg:w="1667"/><text x="41.2130%" y="575.50"></text></g><g><title>read_extent_buffer (89 samples, 0.02%)</title><rect x="41.2623%" y="549" width="0.0169%" height="15" fill="rgb(238,153,13)" fg:x="217540" fg:w="89"/><text x="41.5123%" y="559.50"></text></g><g><title>log_directory_changes (2,909 samples, 0.55%)</title><rect x="40.7426%" y="597" width="0.5518%" height="15" fill="rgb(233,108,0)" fg:x="214800" fg:w="2909"/><text x="40.9926%" y="607.50"></text></g><g><title>log_dir_items (2,909 samples, 0.55%)</title><rect x="40.7426%" y="581" width="0.5518%" height="15" fill="rgb(212,157,17)" fg:x="214800" fg:w="2909"/><text x="40.9926%" y="591.50"></text></g><g><title>read_extent_buffer (80 samples, 0.02%)</title><rect x="41.2792%" y="565" width="0.0152%" height="15" fill="rgb(225,213,38)" fg:x="217629" fg:w="80"/><text x="41.5292%" y="575.50"></text></g><g><title>btrfs_log_inode (3,823 samples, 0.73%)</title><rect x="40.5715%" y="613" width="0.7251%" height="15" fill="rgb(248,16,11)" fg:x="213898" fg:w="3823"/><text x="40.8215%" y="623.50"></text></g><g><title>btrfs_search_forward (88 samples, 0.02%)</title><rect x="41.2993%" y="613" width="0.0167%" height="15" fill="rgb(241,33,4)" fg:x="217735" fg:w="88"/><text x="41.5493%" y="623.50"></text></g><g><title>log_new_dir_dentries (4,025 samples, 0.76%)</title><rect x="40.5607%" y="629" width="0.7634%" height="15" fill="rgb(222,26,43)" fg:x="213841" fg:w="4025"/><text x="40.8107%" y="639.50"></text></g><g><title>btrfs_log_new_name (18,424 samples, 3.49%)</title><rect x="37.8390%" y="661" width="3.4946%" height="15" fill="rgb(243,29,36)" fg:x="199492" fg:w="18424"/><text x="38.0890%" y="671.50">btr..</text></g><g><title>btrfs_log_inode_parent (18,406 samples, 3.49%)</title><rect x="37.8425%" y="645" width="3.4912%" height="15" fill="rgb(241,9,27)" fg:x="199510" fg:w="18406"/><text x="38.0925%" y="655.50">btr..</text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="41.4321%" y="613" width="0.0101%" height="15" fill="rgb(205,117,26)" fg:x="218435" fg:w="53"/><text x="41.6821%" y="623.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="41.4423%" y="613" width="0.0121%" height="15" fill="rgb(209,80,39)" fg:x="218489" fg:w="64"/><text x="41.6923%" y="623.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (419 samples, 0.08%)</title><rect x="41.3849%" y="629" width="0.0795%" height="15" fill="rgb(239,155,6)" fg:x="218186" fg:w="419"/><text x="41.6349%" y="639.50"></text></g><g><title>btrfs_block_rsv_migrate (178 samples, 0.03%)</title><rect x="41.4643%" y="629" width="0.0338%" height="15" fill="rgb(212,104,12)" fg:x="218605" fg:w="178"/><text x="41.7143%" y="639.50"></text></g><g><title>_raw_spin_lock (150 samples, 0.03%)</title><rect x="41.4697%" y="613" width="0.0285%" height="15" fill="rgb(234,204,3)" fg:x="218633" fg:w="150"/><text x="41.7197%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (538 samples, 0.10%)</title><rect x="41.4981%" y="629" width="0.1020%" height="15" fill="rgb(251,218,7)" fg:x="218783" fg:w="538"/><text x="41.7481%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (517 samples, 0.10%)</title><rect x="41.5021%" y="613" width="0.0981%" height="15" fill="rgb(221,81,32)" fg:x="218804" fg:w="517"/><text x="41.7521%" y="623.50"></text></g><g><title>inode_get_bytes (59 samples, 0.01%)</title><rect x="41.6066%" y="613" width="0.0112%" height="15" fill="rgb(214,152,26)" fg:x="219355" fg:w="59"/><text x="41.8566%" y="623.50"></text></g><g><title>fill_stack_inode_item (135 samples, 0.03%)</title><rect x="41.6002%" y="629" width="0.0256%" height="15" fill="rgb(223,22,3)" fg:x="219321" fg:w="135"/><text x="41.8502%" y="639.50"></text></g><g><title>mutex_lock (99 samples, 0.02%)</title><rect x="41.6258%" y="629" width="0.0188%" height="15" fill="rgb(207,174,7)" fg:x="219456" fg:w="99"/><text x="41.8758%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (1,603 samples, 0.30%)</title><rect x="41.3498%" y="645" width="0.3041%" height="15" fill="rgb(224,19,52)" fg:x="218001" fg:w="1603"/><text x="41.5998%" y="655.50"></text></g><g><title>btrfs_update_inode (1,852 samples, 0.35%)</title><rect x="41.3350%" y="661" width="0.3513%" height="15" fill="rgb(228,24,14)" fg:x="217923" fg:w="1852"/><text x="41.5850%" y="671.50"></text></g><g><title>btrfs_update_root_times (171 samples, 0.03%)</title><rect x="41.6538%" y="645" width="0.0324%" height="15" fill="rgb(230,153,43)" fg:x="219604" fg:w="171"/><text x="41.9038%" y="655.50"></text></g><g><title>ktime_get_real_ts64 (109 samples, 0.02%)</title><rect x="41.6656%" y="629" width="0.0207%" height="15" fill="rgb(231,106,12)" fg:x="219666" fg:w="109"/><text x="41.9156%" y="639.50"></text></g><g><title>read_tsc (74 samples, 0.01%)</title><rect x="41.6722%" y="613" width="0.0140%" height="15" fill="rgb(215,92,2)" fg:x="219701" fg:w="74"/><text x="41.9222%" y="623.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="41.7062%" y="629" width="0.0114%" height="15" fill="rgb(249,143,25)" fg:x="219880" fg:w="60"/><text x="41.9562%" y="639.50"></text></g><g><title>__d_instantiate (134 samples, 0.03%)</title><rect x="41.6939%" y="645" width="0.0254%" height="15" fill="rgb(252,7,35)" fg:x="219815" fg:w="134"/><text x="41.9439%" y="655.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="41.7193%" y="645" width="0.0119%" height="15" fill="rgb(216,69,40)" fg:x="219949" fg:w="63"/><text x="41.9693%" y="655.50"></text></g><g><title>d_instantiate (209 samples, 0.04%)</title><rect x="41.6921%" y="661" width="0.0396%" height="15" fill="rgb(240,36,33)" fg:x="219806" fg:w="209"/><text x="41.9421%" y="671.50"></text></g><g><title>ihold (56 samples, 0.01%)</title><rect x="41.7318%" y="661" width="0.0106%" height="15" fill="rgb(231,128,14)" fg:x="220015" fg:w="56"/><text x="41.9818%" y="671.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="41.8232%" y="629" width="0.0135%" height="15" fill="rgb(245,143,14)" fg:x="220497" fg:w="71"/><text x="42.0732%" y="639.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="41.8617%" y="597" width="0.0218%" height="15" fill="rgb(222,130,28)" fg:x="220700" fg:w="115"/><text x="42.1117%" y="607.50"></text></g><g><title>_raw_spin_lock (90 samples, 0.02%)</title><rect x="41.9586%" y="565" width="0.0171%" height="15" fill="rgb(212,10,48)" fg:x="221211" fg:w="90"/><text x="42.2086%" y="575.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (487 samples, 0.09%)</title><rect x="41.8835%" y="597" width="0.0924%" height="15" fill="rgb(254,118,45)" fg:x="220815" fg:w="487"/><text x="42.1335%" y="607.50"></text></g><g><title>btrfs_reduce_alloc_profile (223 samples, 0.04%)</title><rect x="41.9336%" y="581" width="0.0423%" height="15" fill="rgb(228,6,45)" fg:x="221079" fg:w="223"/><text x="42.1836%" y="591.50"></text></g><g><title>btrfs_block_rsv_add (1,193 samples, 0.23%)</title><rect x="41.8183%" y="645" width="0.2263%" height="15" fill="rgb(241,18,35)" fg:x="220471" fg:w="1193"/><text x="42.0683%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,096 samples, 0.21%)</title><rect x="41.8367%" y="629" width="0.2079%" height="15" fill="rgb(227,214,53)" fg:x="220568" fg:w="1096"/><text x="42.0867%" y="639.50"></text></g><g><title>__reserve_bytes (1,059 samples, 0.20%)</title><rect x="41.8437%" y="613" width="0.2009%" height="15" fill="rgb(224,107,51)" fg:x="220605" fg:w="1059"/><text x="42.0937%" y="623.50"></text></g><g><title>calc_available_free_space.isra.0 (362 samples, 0.07%)</title><rect x="41.9759%" y="597" width="0.0687%" height="15" fill="rgb(248,60,28)" fg:x="221302" fg:w="362"/><text x="42.2259%" y="607.50"></text></g><g><title>btrfs_reduce_alloc_profile (236 samples, 0.04%)</title><rect x="41.9998%" y="581" width="0.0448%" height="15" fill="rgb(249,101,23)" fg:x="221428" fg:w="236"/><text x="42.2498%" y="591.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="42.0320%" y="565" width="0.0125%" height="15" fill="rgb(228,51,19)" fg:x="221598" fg:w="66"/><text x="42.2820%" y="575.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="42.0840%" y="629" width="0.0127%" height="15" fill="rgb(213,20,6)" fg:x="221872" fg:w="67"/><text x="42.3340%" y="639.50"></text></g><g><title>join_transaction (268 samples, 0.05%)</title><rect x="42.0461%" y="645" width="0.0508%" height="15" fill="rgb(212,124,10)" fg:x="221672" fg:w="268"/><text x="42.2961%" y="655.50"></text></g><g><title>kmem_cache_alloc (249 samples, 0.05%)</title><rect x="42.0969%" y="645" width="0.0472%" height="15" fill="rgb(248,3,40)" fg:x="221940" fg:w="249"/><text x="42.3469%" y="655.50"></text></g><g><title>btrfs_link (58,291 samples, 11.06%)</title><rect x="31.1089%" y="677" width="11.0565%" height="15" fill="rgb(223,178,23)" fg:x="164010" fg:w="58291"/><text x="31.3589%" y="687.50">btrfs_link</text></g><g><title>start_transaction (2,227 samples, 0.42%)</title><rect x="41.7430%" y="661" width="0.4224%" height="15" fill="rgb(240,132,45)" fg:x="220074" fg:w="2227"/><text x="41.9930%" y="671.50"></text></g><g><title>wait_current_trans (112 samples, 0.02%)</title><rect x="42.1441%" y="645" width="0.0212%" height="15" fill="rgb(245,164,36)" fg:x="222189" fg:w="112"/><text x="42.3941%" y="655.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.01%)</title><rect x="42.1504%" y="629" width="0.0150%" height="15" fill="rgb(231,188,53)" fg:x="222222" fg:w="79"/><text x="42.4004%" y="639.50"></text></g><g><title>down_write (82 samples, 0.02%)</title><rect x="42.1654%" y="677" width="0.0156%" height="15" fill="rgb(237,198,39)" fg:x="222301" fg:w="82"/><text x="42.4154%" y="687.50"></text></g><g><title>fsnotify (175 samples, 0.03%)</title><rect x="42.1819%" y="677" width="0.0332%" height="15" fill="rgb(223,120,35)" fg:x="222388" fg:w="175"/><text x="42.4319%" y="687.50"></text></g><g><title>btrfs_permission (69 samples, 0.01%)</title><rect x="42.2212%" y="661" width="0.0131%" height="15" fill="rgb(253,107,49)" fg:x="222595" fg:w="69"/><text x="42.4712%" y="671.50"></text></g><g><title>inode_permission.part.0 (122 samples, 0.02%)</title><rect x="42.2151%" y="677" width="0.0231%" height="15" fill="rgb(216,44,31)" fg:x="222563" fg:w="122"/><text x="42.4651%" y="687.50"></text></g><g><title>__x64_sys_link (77,843 samples, 14.77%)</title><rect x="27.4967%" y="725" width="14.7650%" height="15" fill="rgb(253,87,21)" fg:x="144966" fg:w="77843"/><text x="27.7467%" y="735.50">__x64_sys_link</text></g><g><title>do_linkat (77,835 samples, 14.76%)</title><rect x="27.4982%" y="709" width="14.7635%" height="15" fill="rgb(226,18,2)" fg:x="144974" fg:w="77835"/><text x="27.7482%" y="719.50">do_linkat</text></g><g><title>vfs_link (59,067 samples, 11.20%)</title><rect x="31.0581%" y="693" width="11.2037%" height="15" fill="rgb(216,8,46)" fg:x="163742" fg:w="59067"/><text x="31.3081%" y="703.50">vfs_link</text></g><g><title>up_write (68 samples, 0.01%)</title><rect x="42.2488%" y="677" width="0.0129%" height="15" fill="rgb(226,140,39)" fg:x="222741" fg:w="68"/><text x="42.4988%" y="687.50"></text></g><g><title>do_syscall_64 (77,903 samples, 14.78%)</title><rect x="27.4878%" y="741" width="14.7764%" height="15" fill="rgb(221,194,54)" fg:x="144919" fg:w="77903"/><text x="27.7378%" y="751.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (78,024 samples, 14.80%)</title><rect x="27.4768%" y="757" width="14.7994%" height="15" fill="rgb(213,92,11)" fg:x="144861" fg:w="78024"/><text x="27.7268%" y="767.50">entry_SYSCALL_64_after_..</text></g><g><title>syscall_exit_to_user_mode (63 samples, 0.01%)</title><rect x="42.2642%" y="741" width="0.0119%" height="15" fill="rgb(229,162,46)" fg:x="222822" fg:w="63"/><text x="42.5142%" y="751.50"></text></g><g><title>__GI___link (78,460 samples, 14.88%)</title><rect x="27.4138%" y="773" width="14.8821%" height="15" fill="rgb(214,111,36)" fg:x="144529" fg:w="78460"/><text x="27.6638%" y="783.50">__GI___link</text></g><g><title>syscall_return_via_sysret (104 samples, 0.02%)</title><rect x="42.2762%" y="757" width="0.0197%" height="15" fill="rgb(207,6,21)" fg:x="222885" fg:w="104"/><text x="42.5262%" y="767.50"></text></g><g><title>entry_SYSCALL_64 (274 samples, 0.05%)</title><rect x="42.3367%" y="757" width="0.0520%" height="15" fill="rgb(213,127,38)" fg:x="223204" fg:w="274"/><text x="42.5867%" y="767.50"></text></g><g><title>_copy_to_user (376 samples, 0.07%)</title><rect x="42.4510%" y="693" width="0.0713%" height="15" fill="rgb(238,118,32)" fg:x="223807" fg:w="376"/><text x="42.7010%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (334 samples, 0.06%)</title><rect x="42.4590%" y="677" width="0.0634%" height="15" fill="rgb(240,139,39)" fg:x="223849" fg:w="334"/><text x="42.7090%" y="687.50"></text></g><g><title>from_kgid_munged (59 samples, 0.01%)</title><rect x="42.5226%" y="693" width="0.0112%" height="15" fill="rgb(235,10,37)" fg:x="224184" fg:w="59"/><text x="42.7726%" y="703.50"></text></g><g><title>map_id_up (54 samples, 0.01%)</title><rect x="42.5235%" y="677" width="0.0102%" height="15" fill="rgb(249,171,38)" fg:x="224189" fg:w="54"/><text x="42.7735%" y="687.50"></text></g><g><title>cp_new_stat (642 samples, 0.12%)</title><rect x="42.4262%" y="709" width="0.1218%" height="15" fill="rgb(242,144,32)" fg:x="223676" fg:w="642"/><text x="42.6762%" y="719.50"></text></g><g><title>from_kuid_munged (75 samples, 0.01%)</title><rect x="42.5337%" y="693" width="0.0142%" height="15" fill="rgb(217,117,21)" fg:x="224243" fg:w="75"/><text x="42.7837%" y="703.50"></text></g><g><title>map_id_up (61 samples, 0.01%)</title><rect x="42.5364%" y="677" width="0.0116%" height="15" fill="rgb(249,87,1)" fg:x="224257" fg:w="61"/><text x="42.7864%" y="687.50"></text></g><g><title>_raw_spin_lock (166 samples, 0.03%)</title><rect x="42.6603%" y="677" width="0.0315%" height="15" fill="rgb(248,196,48)" fg:x="224910" fg:w="166"/><text x="42.9103%" y="687.50"></text></g><g><title>generic_fillattr (116 samples, 0.02%)</title><rect x="42.6919%" y="677" width="0.0220%" height="15" fill="rgb(251,206,33)" fg:x="225077" fg:w="116"/><text x="42.9419%" y="687.50"></text></g><g><title>btrfs_getattr (948 samples, 0.18%)</title><rect x="42.5643%" y="693" width="0.1798%" height="15" fill="rgb(232,141,28)" fg:x="224404" fg:w="948"/><text x="42.8143%" y="703.50"></text></g><g><title>inode_get_bytes (159 samples, 0.03%)</title><rect x="42.7139%" y="677" width="0.0302%" height="15" fill="rgb(209,167,14)" fg:x="225193" fg:w="159"/><text x="42.9639%" y="687.50"></text></g><g><title>_raw_spin_lock (126 samples, 0.02%)</title><rect x="42.7202%" y="661" width="0.0239%" height="15" fill="rgb(225,11,50)" fg:x="225226" fg:w="126"/><text x="42.9702%" y="671.50"></text></g><g><title>kmem_cache_free (290 samples, 0.06%)</title><rect x="42.7765%" y="677" width="0.0550%" height="15" fill="rgb(209,50,20)" fg:x="225523" fg:w="290"/><text x="43.0265%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (60 samples, 0.01%)</title><rect x="42.8202%" y="661" width="0.0114%" height="15" fill="rgb(212,17,46)" fg:x="225753" fg:w="60"/><text x="43.0702%" y="671.50"></text></g><g><title>__legitimize_mnt (190 samples, 0.04%)</title><rect x="42.8716%" y="613" width="0.0360%" height="15" fill="rgb(216,101,39)" fg:x="226024" fg:w="190"/><text x="43.1216%" y="623.50"></text></g><g><title>__legitimize_path (387 samples, 0.07%)</title><rect x="42.8655%" y="629" width="0.0734%" height="15" fill="rgb(212,228,48)" fg:x="225992" fg:w="387"/><text x="43.1155%" y="639.50"></text></g><g><title>lockref_get_not_dead (165 samples, 0.03%)</title><rect x="42.9076%" y="613" width="0.0313%" height="15" fill="rgb(250,6,50)" fg:x="226214" fg:w="165"/><text x="43.1576%" y="623.50"></text></g><g><title>complete_walk (509 samples, 0.10%)</title><rect x="42.8530%" y="661" width="0.0965%" height="15" fill="rgb(250,160,48)" fg:x="225926" fg:w="509"/><text x="43.1030%" y="671.50"></text></g><g><title>try_to_unlazy (482 samples, 0.09%)</title><rect x="42.8581%" y="645" width="0.0914%" height="15" fill="rgb(244,216,33)" fg:x="225953" fg:w="482"/><text x="43.1081%" y="655.50"></text></g><g><title>btrfs_permission (223 samples, 0.04%)</title><rect x="43.8626%" y="629" width="0.0423%" height="15" fill="rgb(207,157,5)" fg:x="231249" fg:w="223"/><text x="44.1126%" y="639.50"></text></g><g><title>inode_permission.part.0 (3,084 samples, 0.58%)</title><rect x="43.5149%" y="645" width="0.5850%" height="15" fill="rgb(228,199,8)" fg:x="229416" fg:w="3084"/><text x="43.7649%" y="655.50"></text></g><g><title>generic_permission (1,028 samples, 0.19%)</title><rect x="43.9049%" y="629" width="0.1950%" height="15" fill="rgb(227,80,20)" fg:x="231472" fg:w="1028"/><text x="44.1549%" y="639.50"></text></g><g><title>security_inode_permission (389 samples, 0.07%)</title><rect x="44.0999%" y="645" width="0.0738%" height="15" fill="rgb(222,9,33)" fg:x="232500" fg:w="389"/><text x="44.3499%" y="655.50"></text></g><g><title>lookup_fast (5,817 samples, 1.10%)</title><rect x="44.4000%" y="629" width="1.1034%" height="15" fill="rgb(239,44,28)" fg:x="234082" fg:w="5817"/><text x="44.6500%" y="639.50"></text></g><g><title>__d_lookup_rcu (4,540 samples, 0.86%)</title><rect x="44.6422%" y="613" width="0.8611%" height="15" fill="rgb(249,187,43)" fg:x="235359" fg:w="4540"/><text x="44.8922%" y="623.50"></text></g><g><title>page_put_link (126 samples, 0.02%)</title><rect x="45.5033%" y="629" width="0.0239%" height="15" fill="rgb(216,141,28)" fg:x="239899" fg:w="126"/><text x="45.7533%" y="639.50"></text></g><g><title>__lookup_mnt (74 samples, 0.01%)</title><rect x="45.8167%" y="613" width="0.0140%" height="15" fill="rgb(230,154,53)" fg:x="241551" fg:w="74"/><text x="46.0667%" y="623.50"></text></g><g><title>atime_needs_update (158 samples, 0.03%)</title><rect x="45.8311%" y="613" width="0.0300%" height="15" fill="rgb(227,82,4)" fg:x="241627" fg:w="158"/><text x="46.0811%" y="623.50"></text></g><g><title>current_time (90 samples, 0.02%)</title><rect x="45.8440%" y="597" width="0.0171%" height="15" fill="rgb(220,107,16)" fg:x="241695" fg:w="90"/><text x="46.0940%" y="607.50"></text></g><g><title>page_get_link (488 samples, 0.09%)</title><rect x="45.8707%" y="613" width="0.0926%" height="15" fill="rgb(207,187,2)" fg:x="241836" fg:w="488"/><text x="46.1207%" y="623.50"></text></g><g><title>pagecache_get_page (421 samples, 0.08%)</title><rect x="45.8834%" y="597" width="0.0799%" height="15" fill="rgb(210,162,52)" fg:x="241903" fg:w="421"/><text x="46.1334%" y="607.50"></text></g><g><title>find_get_entry (349 samples, 0.07%)</title><rect x="45.8971%" y="581" width="0.0662%" height="15" fill="rgb(217,216,49)" fg:x="241975" fg:w="349"/><text x="46.1471%" y="591.50"></text></g><g><title>xas_load (69 samples, 0.01%)</title><rect x="45.9502%" y="565" width="0.0131%" height="15" fill="rgb(218,146,49)" fg:x="242255" fg:w="69"/><text x="46.2002%" y="575.50"></text></g><g><title>xas_start (56 samples, 0.01%)</title><rect x="45.9527%" y="549" width="0.0106%" height="15" fill="rgb(216,55,40)" fg:x="242268" fg:w="56"/><text x="46.2027%" y="559.50"></text></g><g><title>link_path_walk.part.0 (15,903 samples, 3.02%)</title><rect x="42.9495%" y="661" width="3.0164%" height="15" fill="rgb(208,196,21)" fg:x="226435" fg:w="15903"/><text x="43.1995%" y="671.50">lin..</text></g><g><title>walk_component (9,449 samples, 1.79%)</title><rect x="44.1737%" y="645" width="1.7923%" height="15" fill="rgb(242,117,42)" fg:x="232889" fg:w="9449"/><text x="44.4237%" y="655.50">w..</text></g><g><title>step_into (2,313 samples, 0.44%)</title><rect x="45.5272%" y="629" width="0.4387%" height="15" fill="rgb(210,11,23)" fg:x="240025" fg:w="2313"/><text x="45.7772%" y="639.50"></text></g><g><title>path_init (380 samples, 0.07%)</title><rect x="45.9659%" y="661" width="0.0721%" height="15" fill="rgb(217,110,2)" fg:x="242338" fg:w="380"/><text x="46.2159%" y="671.50"></text></g><g><title>nd_jump_root (291 samples, 0.06%)</title><rect x="45.9828%" y="645" width="0.0552%" height="15" fill="rgb(229,77,54)" fg:x="242427" fg:w="291"/><text x="46.2328%" y="655.50"></text></g><g><title>set_root (250 samples, 0.05%)</title><rect x="45.9906%" y="629" width="0.0474%" height="15" fill="rgb(218,53,16)" fg:x="242468" fg:w="250"/><text x="46.2406%" y="639.50"></text></g><g><title>lookup_fast (1,357 samples, 0.26%)</title><rect x="46.0559%" y="645" width="0.2574%" height="15" fill="rgb(215,38,13)" fg:x="242812" fg:w="1357"/><text x="46.3059%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,313 samples, 0.25%)</title><rect x="46.0642%" y="629" width="0.2490%" height="15" fill="rgb(235,42,18)" fg:x="242856" fg:w="1313"/><text x="46.3142%" y="639.50"></text></g><g><title>path_lookupat (18,429 samples, 3.50%)</title><rect x="42.8315%" y="677" width="3.4956%" height="15" fill="rgb(219,66,54)" fg:x="225813" fg:w="18429"/><text x="43.0815%" y="687.50">pat..</text></g><g><title>walk_component (1,479 samples, 0.28%)</title><rect x="46.0466%" y="661" width="0.2805%" height="15" fill="rgb(222,205,4)" fg:x="242763" fg:w="1479"/><text x="46.2966%" y="671.50"></text></g><g><title>step_into (73 samples, 0.01%)</title><rect x="46.3132%" y="645" width="0.0138%" height="15" fill="rgb(227,213,46)" fg:x="244169" fg:w="73"/><text x="46.5632%" y="655.50"></text></g><g><title>filename_lookup (18,908 samples, 3.59%)</title><rect x="42.7441%" y="693" width="3.5864%" height="15" fill="rgb(250,145,42)" fg:x="225352" fg:w="18908"/><text x="42.9941%" y="703.50">file..</text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="46.3650%" y="645" width="0.0218%" height="15" fill="rgb(219,15,2)" fg:x="244442" fg:w="115"/><text x="46.6150%" y="655.50"></text></g><g><title>lockref_put_or_lock (145 samples, 0.03%)</title><rect x="46.3595%" y="661" width="0.0275%" height="15" fill="rgb(231,181,52)" fg:x="244413" fg:w="145"/><text x="46.6095%" y="671.50"></text></g><g><title>path_put (242 samples, 0.05%)</title><rect x="46.3419%" y="693" width="0.0459%" height="15" fill="rgb(235,1,42)" fg:x="244320" fg:w="242"/><text x="46.5919%" y="703.50"></text></g><g><title>dput (235 samples, 0.04%)</title><rect x="46.3432%" y="677" width="0.0446%" height="15" fill="rgb(249,88,27)" fg:x="244327" fg:w="235"/><text x="46.5932%" y="687.50"></text></g><g><title>apparmor_inode_getattr (103 samples, 0.02%)</title><rect x="46.4912%" y="677" width="0.0195%" height="15" fill="rgb(235,145,16)" fg:x="245107" fg:w="103"/><text x="46.7412%" y="687.50"></text></g><g><title>security_inode_getattr (1,125 samples, 0.21%)</title><rect x="46.3878%" y="693" width="0.2134%" height="15" fill="rgb(237,114,19)" fg:x="244562" fg:w="1125"/><text x="46.6378%" y="703.50"></text></g><g><title>tomoyo_path_perm (469 samples, 0.09%)</title><rect x="46.5122%" y="677" width="0.0890%" height="15" fill="rgb(238,51,50)" fg:x="245218" fg:w="469"/><text x="46.7622%" y="687.50"></text></g><g><title>tomoyo_init_request_info (280 samples, 0.05%)</title><rect x="46.5481%" y="661" width="0.0531%" height="15" fill="rgb(205,194,25)" fg:x="245407" fg:w="280"/><text x="46.7981%" y="671.50"></text></g><g><title>tomoyo_domain (85 samples, 0.02%)</title><rect x="46.5851%" y="645" width="0.0161%" height="15" fill="rgb(215,203,17)" fg:x="245602" fg:w="85"/><text x="46.8351%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (53 samples, 0.01%)</title><rect x="46.6905%" y="645" width="0.0101%" height="15" fill="rgb(233,112,49)" fg:x="246158" fg:w="53"/><text x="46.9405%" y="655.50"></text></g><g><title>memset_erms (762 samples, 0.14%)</title><rect x="46.7023%" y="645" width="0.1445%" height="15" fill="rgb(241,130,26)" fg:x="246220" fg:w="762"/><text x="46.9523%" y="655.50"></text></g><g><title>_cond_resched (77 samples, 0.01%)</title><rect x="46.8730%" y="629" width="0.0146%" height="15" fill="rgb(252,223,19)" fg:x="247120" fg:w="77"/><text x="47.1230%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,375 samples, 0.26%)</title><rect x="46.6308%" y="661" width="0.2608%" height="15" fill="rgb(211,95,25)" fg:x="245843" fg:w="1375"/><text x="46.8808%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (236 samples, 0.04%)</title><rect x="46.8468%" y="645" width="0.0448%" height="15" fill="rgb(251,182,27)" fg:x="246982" fg:w="236"/><text x="47.0968%" y="655.50"></text></g><g><title>__check_heap_object (156 samples, 0.03%)</title><rect x="47.0534%" y="629" width="0.0296%" height="15" fill="rgb(238,24,4)" fg:x="248071" fg:w="156"/><text x="47.3034%" y="639.50"></text></g><g><title>__virt_addr_valid (350 samples, 0.07%)</title><rect x="47.0830%" y="629" width="0.0664%" height="15" fill="rgb(224,220,25)" fg:x="248227" fg:w="350"/><text x="47.3330%" y="639.50"></text></g><g><title>__check_object_size (634 samples, 0.12%)</title><rect x="47.0317%" y="645" width="0.1203%" height="15" fill="rgb(239,133,26)" fg:x="247957" fg:w="634"/><text x="47.2817%" y="655.50"></text></g><g><title>user_path_at_empty (2,905 samples, 0.55%)</title><rect x="46.6012%" y="693" width="0.5510%" height="15" fill="rgb(211,94,48)" fg:x="245687" fg:w="2905"/><text x="46.8512%" y="703.50"></text></g><g><title>getname_flags.part.0 (2,867 samples, 0.54%)</title><rect x="46.6084%" y="677" width="0.5438%" height="15" fill="rgb(239,87,6)" fg:x="245725" fg:w="2867"/><text x="46.8584%" y="687.50"></text></g><g><title>strncpy_from_user (1,374 samples, 0.26%)</title><rect x="46.8916%" y="661" width="0.2606%" height="15" fill="rgb(227,62,0)" fg:x="247218" fg:w="1374"/><text x="47.1416%" y="671.50"></text></g><g><title>__do_sys_newlstat (25,181 samples, 4.78%)</title><rect x="42.4188%" y="725" width="4.7763%" height="15" fill="rgb(211,226,4)" fg:x="223637" fg:w="25181"/><text x="42.6688%" y="735.50">__do_s..</text></g><g><title>vfs_statx (24,500 samples, 4.65%)</title><rect x="42.5480%" y="709" width="4.6471%" height="15" fill="rgb(253,38,52)" fg:x="224318" fg:w="24500"/><text x="42.7980%" y="719.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (226 samples, 0.04%)</title><rect x="47.1522%" y="693" width="0.0429%" height="15" fill="rgb(229,126,40)" fg:x="248592" fg:w="226"/><text x="47.4022%" y="703.50"></text></g><g><title>do_syscall_64 (25,307 samples, 4.80%)</title><rect x="42.4031%" y="741" width="4.8002%" height="15" fill="rgb(229,165,44)" fg:x="223554" fg:w="25307"/><text x="42.6531%" y="751.50">do_sys..</text></g><g><title>entry_SYSCALL_64_after_hwframe (25,491 samples, 4.84%)</title><rect x="42.3886%" y="757" width="4.8351%" height="15" fill="rgb(247,95,47)" fg:x="223478" fg:w="25491"/><text x="42.6386%" y="767.50">entry_..</text></g><g><title>syscall_exit_to_user_mode (108 samples, 0.02%)</title><rect x="47.2032%" y="741" width="0.0205%" height="15" fill="rgb(216,140,30)" fg:x="248861" fg:w="108"/><text x="47.4532%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (83 samples, 0.02%)</title><rect x="47.2080%" y="725" width="0.0157%" height="15" fill="rgb(246,214,8)" fg:x="248886" fg:w="83"/><text x="47.4580%" y="735.50"></text></g><g><title>__GI___lxstat (26,115 samples, 4.95%)</title><rect x="42.2959%" y="773" width="4.9534%" height="15" fill="rgb(227,224,15)" fg:x="222989" fg:w="26115"/><text x="42.5459%" y="783.50">__GI__..</text></g><g><title>syscall_return_via_sysret (135 samples, 0.03%)</title><rect x="47.2237%" y="757" width="0.0256%" height="15" fill="rgb(233,175,4)" fg:x="248969" fg:w="135"/><text x="47.4737%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (97 samples, 0.02%)</title><rect x="47.3096%" y="613" width="0.0184%" height="15" fill="rgb(221,66,45)" fg:x="249422" fg:w="97"/><text x="47.5596%" y="623.50"></text></g><g><title>__radix_tree_lookup (61 samples, 0.01%)</title><rect x="47.3394%" y="581" width="0.0116%" height="15" fill="rgb(221,178,18)" fg:x="249579" fg:w="61"/><text x="47.5894%" y="591.50"></text></g><g><title>find_extent_buffer (120 samples, 0.02%)</title><rect x="47.3347%" y="597" width="0.0228%" height="15" fill="rgb(213,81,29)" fg:x="249554" fg:w="120"/><text x="47.5847%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (177 samples, 0.03%)</title><rect x="47.3280%" y="613" width="0.0336%" height="15" fill="rgb(220,89,49)" fg:x="249519" fg:w="177"/><text x="47.5780%" y="623.50"></text></g><g><title>btrfs_search_slot (448 samples, 0.08%)</title><rect x="47.2776%" y="629" width="0.0850%" height="15" fill="rgb(227,60,33)" fg:x="249253" fg:w="448"/><text x="47.5276%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (472 samples, 0.09%)</title><rect x="47.2772%" y="645" width="0.0895%" height="15" fill="rgb(205,113,12)" fg:x="249251" fg:w="472"/><text x="47.5272%" y="655.50"></text></g><g><title>btrfs_lookup (554 samples, 0.11%)</title><rect x="47.2671%" y="677" width="0.1051%" height="15" fill="rgb(211,32,1)" fg:x="249198" fg:w="554"/><text x="47.5171%" y="687.50"></text></g><g><title>btrfs_lookup_dentry (551 samples, 0.10%)</title><rect x="47.2677%" y="661" width="0.1045%" height="15" fill="rgb(246,2,12)" fg:x="249201" fg:w="551"/><text x="47.5177%" y="671.50"></text></g><g><title>kmem_cache_alloc (97 samples, 0.02%)</title><rect x="47.3747%" y="645" width="0.0184%" height="15" fill="rgb(243,37,27)" fg:x="249765" fg:w="97"/><text x="47.6247%" y="655.50"></text></g><g><title>__d_alloc (115 samples, 0.02%)</title><rect x="47.3724%" y="661" width="0.0218%" height="15" fill="rgb(248,211,31)" fg:x="249753" fg:w="115"/><text x="47.6224%" y="671.50"></text></g><g><title>d_alloc (130 samples, 0.02%)</title><rect x="47.3722%" y="677" width="0.0247%" height="15" fill="rgb(242,146,47)" fg:x="249752" fg:w="130"/><text x="47.6222%" y="687.50"></text></g><g><title>__lookup_hash (763 samples, 0.14%)</title><rect x="47.2664%" y="693" width="0.1447%" height="15" fill="rgb(206,70,20)" fg:x="249194" fg:w="763"/><text x="47.5164%" y="703.50"></text></g><g><title>lookup_dcache (60 samples, 0.01%)</title><rect x="47.3997%" y="677" width="0.0114%" height="15" fill="rgb(215,10,51)" fg:x="249897" fg:w="60"/><text x="47.6497%" y="687.50"></text></g><g><title>d_lookup (60 samples, 0.01%)</title><rect x="47.3997%" y="661" width="0.0114%" height="15" fill="rgb(243,178,53)" fg:x="249897" fg:w="60"/><text x="47.6497%" y="671.50"></text></g><g><title>__d_lookup (59 samples, 0.01%)</title><rect x="47.3999%" y="645" width="0.0112%" height="15" fill="rgb(233,221,20)" fg:x="249898" fg:w="59"/><text x="47.6499%" y="655.50"></text></g><g><title>inode_permission.part.0 (98 samples, 0.02%)</title><rect x="47.4392%" y="645" width="0.0186%" height="15" fill="rgb(218,95,35)" fg:x="250105" fg:w="98"/><text x="47.6892%" y="655.50"></text></g><g><title>lookup_fast (223 samples, 0.04%)</title><rect x="47.4652%" y="629" width="0.0423%" height="15" fill="rgb(229,13,5)" fg:x="250242" fg:w="223"/><text x="47.7152%" y="639.50"></text></g><g><title>__d_lookup_rcu (178 samples, 0.03%)</title><rect x="47.4737%" y="613" width="0.0338%" height="15" fill="rgb(252,164,30)" fg:x="250287" fg:w="178"/><text x="47.7237%" y="623.50"></text></g><g><title>link_path_walk.part.0 (495 samples, 0.09%)</title><rect x="47.4232%" y="661" width="0.0939%" height="15" fill="rgb(232,68,36)" fg:x="250021" fg:w="495"/><text x="47.6732%" y="671.50"></text></g><g><title>walk_component (300 samples, 0.06%)</title><rect x="47.4602%" y="645" width="0.0569%" height="15" fill="rgb(219,59,54)" fg:x="250216" fg:w="300"/><text x="47.7102%" y="655.50"></text></g><g><title>filename_parentat (573 samples, 0.11%)</title><rect x="47.4117%" y="693" width="0.1087%" height="15" fill="rgb(250,92,33)" fg:x="249960" fg:w="573"/><text x="47.6617%" y="703.50"></text></g><g><title>path_parentat (561 samples, 0.11%)</title><rect x="47.4139%" y="677" width="0.1064%" height="15" fill="rgb(229,162,54)" fg:x="249972" fg:w="561"/><text x="47.6639%" y="687.50"></text></g><g><title>filename_create (1,370 samples, 0.26%)</title><rect x="47.2660%" y="709" width="0.2599%" height="15" fill="rgb(244,114,52)" fg:x="249192" fg:w="1370"/><text x="47.5160%" y="719.50"></text></g><g><title>getname_flags.part.0 (123 samples, 0.02%)</title><rect x="47.5259%" y="709" width="0.0233%" height="15" fill="rgb(212,211,43)" fg:x="250562" fg:w="123"/><text x="47.7759%" y="719.50"></text></g><g><title>strncpy_from_user (64 samples, 0.01%)</title><rect x="47.5370%" y="693" width="0.0121%" height="15" fill="rgb(226,147,8)" fg:x="250621" fg:w="64"/><text x="47.7870%" y="703.50"></text></g><g><title>__btrfs_end_transaction (57 samples, 0.01%)</title><rect x="47.5611%" y="677" width="0.0108%" height="15" fill="rgb(226,23,13)" fg:x="250748" fg:w="57"/><text x="47.8111%" y="687.50"></text></g><g><title>btrfs_insert_delayed_dir_index (142 samples, 0.03%)</title><rect x="47.5755%" y="645" width="0.0269%" height="15" fill="rgb(240,63,4)" fg:x="250824" fg:w="142"/><text x="47.8255%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (95 samples, 0.02%)</title><rect x="47.6425%" y="597" width="0.0180%" height="15" fill="rgb(221,1,32)" fg:x="251177" fg:w="95"/><text x="47.8925%" y="607.50"></text></g><g><title>find_extent_buffer (89 samples, 0.02%)</title><rect x="47.6672%" y="581" width="0.0169%" height="15" fill="rgb(242,117,10)" fg:x="251307" fg:w="89"/><text x="47.9172%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (134 samples, 0.03%)</title><rect x="47.6605%" y="597" width="0.0254%" height="15" fill="rgb(249,172,44)" fg:x="251272" fg:w="134"/><text x="47.9105%" y="607.50"></text></g><g><title>split_leaf (59 samples, 0.01%)</title><rect x="47.6859%" y="597" width="0.0112%" height="15" fill="rgb(244,46,45)" fg:x="251406" fg:w="59"/><text x="47.9359%" y="607.50"></text></g><g><title>btrfs_search_slot (448 samples, 0.08%)</title><rect x="47.6165%" y="613" width="0.0850%" height="15" fill="rgb(206,43,17)" fg:x="251040" fg:w="448"/><text x="47.8665%" y="623.50"></text></g><g><title>btrfs_get_token_32 (166 samples, 0.03%)</title><rect x="47.7121%" y="597" width="0.0315%" height="15" fill="rgb(239,218,39)" fg:x="251544" fg:w="166"/><text x="47.9621%" y="607.50"></text></g><g><title>btrfs_set_token_32 (150 samples, 0.03%)</title><rect x="47.7501%" y="597" width="0.0285%" height="15" fill="rgb(208,169,54)" fg:x="251744" fg:w="150"/><text x="48.0001%" y="607.50"></text></g><g><title>memmove_extent_buffer (63 samples, 0.01%)</title><rect x="47.7874%" y="597" width="0.0119%" height="15" fill="rgb(247,25,42)" fg:x="251941" fg:w="63"/><text x="48.0374%" y="607.50"></text></g><g><title>insert_with_overflow (992 samples, 0.19%)</title><rect x="47.6133%" y="645" width="0.1882%" height="15" fill="rgb(226,23,31)" fg:x="251023" fg:w="992"/><text x="47.8633%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (976 samples, 0.19%)</title><rect x="47.6163%" y="629" width="0.1851%" height="15" fill="rgb(247,16,28)" fg:x="251039" fg:w="976"/><text x="47.8663%" y="639.50"></text></g><g><title>setup_items_for_insert (527 samples, 0.10%)</title><rect x="47.7015%" y="613" width="0.1000%" height="15" fill="rgb(231,147,38)" fg:x="251488" fg:w="527"/><text x="47.9515%" y="623.50"></text></g><g><title>btrfs_insert_dir_item (1,237 samples, 0.23%)</title><rect x="47.5742%" y="661" width="0.2346%" height="15" fill="rgb(253,81,48)" fg:x="250817" fg:w="1237"/><text x="47.8242%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (53 samples, 0.01%)</title><rect x="47.8100%" y="645" width="0.0101%" height="15" fill="rgb(249,222,43)" fg:x="252060" fg:w="53"/><text x="48.0600%" y="655.50"></text></g><g><title>btrfs_update_inode (68 samples, 0.01%)</title><rect x="47.8089%" y="661" width="0.0129%" height="15" fill="rgb(221,3,27)" fg:x="252054" fg:w="68"/><text x="48.0589%" y="671.50"></text></g><g><title>btrfs_add_link (1,320 samples, 0.25%)</title><rect x="47.5719%" y="677" width="0.2504%" height="15" fill="rgb(228,180,5)" fg:x="250805" fg:w="1320"/><text x="47.8219%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (59 samples, 0.01%)</title><rect x="47.8737%" y="629" width="0.0112%" height="15" fill="rgb(227,131,42)" fg:x="252396" fg:w="59"/><text x="48.1237%" y="639.50"></text></g><g><title>find_extent_buffer (85 samples, 0.02%)</title><rect x="47.8916%" y="613" width="0.0161%" height="15" fill="rgb(212,3,39)" fg:x="252490" fg:w="85"/><text x="48.1416%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (127 samples, 0.02%)</title><rect x="47.8849%" y="629" width="0.0241%" height="15" fill="rgb(226,45,5)" fg:x="252455" fg:w="127"/><text x="48.1349%" y="639.50"></text></g><g><title>__push_leaf_left (62 samples, 0.01%)</title><rect x="47.9206%" y="597" width="0.0118%" height="15" fill="rgb(215,167,45)" fg:x="252643" fg:w="62"/><text x="48.1706%" y="607.50"></text></g><g><title>push_leaf_left (75 samples, 0.01%)</title><rect x="47.9204%" y="613" width="0.0142%" height="15" fill="rgb(250,218,53)" fg:x="252642" fg:w="75"/><text x="48.1704%" y="623.50"></text></g><g><title>split_leaf (136 samples, 0.03%)</title><rect x="47.9090%" y="629" width="0.0258%" height="15" fill="rgb(207,140,0)" fg:x="252582" fg:w="136"/><text x="48.1590%" y="639.50"></text></g><g><title>btrfs_search_slot (481 samples, 0.09%)</title><rect x="47.8496%" y="645" width="0.0912%" height="15" fill="rgb(238,133,51)" fg:x="252269" fg:w="481"/><text x="48.0996%" y="655.50"></text></g><g><title>btrfs_get_token_32 (83 samples, 0.02%)</title><rect x="47.9507%" y="629" width="0.0157%" height="15" fill="rgb(218,203,53)" fg:x="252802" fg:w="83"/><text x="48.2007%" y="639.50"></text></g><g><title>btrfs_set_token_32 (84 samples, 0.02%)</title><rect x="47.9746%" y="629" width="0.0159%" height="15" fill="rgb(226,184,25)" fg:x="252928" fg:w="84"/><text x="48.2246%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (817 samples, 0.15%)</title><rect x="47.8491%" y="661" width="0.1550%" height="15" fill="rgb(231,121,21)" fg:x="252266" fg:w="817"/><text x="48.0991%" y="671.50"></text></g><g><title>setup_items_for_insert (333 samples, 0.06%)</title><rect x="47.9409%" y="645" width="0.0632%" height="15" fill="rgb(251,14,34)" fg:x="252750" fg:w="333"/><text x="48.1909%" y="655.50"></text></g><g><title>fill_inode_item (99 samples, 0.02%)</title><rect x="48.0173%" y="661" width="0.0188%" height="15" fill="rgb(249,193,11)" fg:x="253153" fg:w="99"/><text x="48.2673%" y="671.50"></text></g><g><title>inode_tree_add (109 samples, 0.02%)</title><rect x="48.0370%" y="661" width="0.0207%" height="15" fill="rgb(220,172,37)" fg:x="253257" fg:w="109"/><text x="48.2870%" y="671.50"></text></g><g><title>btrfs_alloc_inode (90 samples, 0.02%)</title><rect x="48.0784%" y="629" width="0.0171%" height="15" fill="rgb(231,229,43)" fg:x="253475" fg:w="90"/><text x="48.3284%" y="639.50"></text></g><g><title>kmem_cache_alloc (68 samples, 0.01%)</title><rect x="48.0826%" y="613" width="0.0129%" height="15" fill="rgb(250,161,5)" fg:x="253497" fg:w="68"/><text x="48.3326%" y="623.50"></text></g><g><title>alloc_inode (133 samples, 0.03%)</title><rect x="48.0778%" y="645" width="0.0252%" height="15" fill="rgb(218,225,18)" fg:x="253472" fg:w="133"/><text x="48.3278%" y="655.50"></text></g><g><title>new_inode (166 samples, 0.03%)</title><rect x="48.0725%" y="661" width="0.0315%" height="15" fill="rgb(245,45,42)" fg:x="253444" fg:w="166"/><text x="48.3225%" y="671.50"></text></g><g><title>btrfs_new_inode (1,452 samples, 0.28%)</title><rect x="47.8303%" y="677" width="0.2754%" height="15" fill="rgb(211,115,1)" fg:x="252167" fg:w="1452"/><text x="48.0803%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (121 samples, 0.02%)</title><rect x="48.1201%" y="645" width="0.0230%" height="15" fill="rgb(248,133,52)" fg:x="253695" fg:w="121"/><text x="48.3701%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (213 samples, 0.04%)</title><rect x="48.1078%" y="661" width="0.0404%" height="15" fill="rgb(238,100,21)" fg:x="253630" fg:w="213"/><text x="48.3578%" y="671.50"></text></g><g><title>btrfs_update_inode (237 samples, 0.04%)</title><rect x="48.1057%" y="677" width="0.0450%" height="15" fill="rgb(247,144,11)" fg:x="253619" fg:w="237"/><text x="48.3557%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (78 samples, 0.01%)</title><rect x="48.1613%" y="661" width="0.0148%" height="15" fill="rgb(206,164,16)" fg:x="253912" fg:w="78"/><text x="48.4113%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (67 samples, 0.01%)</title><rect x="48.1634%" y="645" width="0.0127%" height="15" fill="rgb(222,34,3)" fg:x="253923" fg:w="67"/><text x="48.4134%" y="655.50"></text></g><g><title>__reserve_bytes (65 samples, 0.01%)</title><rect x="48.1637%" y="629" width="0.0123%" height="15" fill="rgb(248,82,4)" fg:x="253925" fg:w="65"/><text x="48.4137%" y="639.50"></text></g><g><title>btrfs_mkdir (3,302 samples, 0.63%)</title><rect x="47.5600%" y="693" width="0.6263%" height="15" fill="rgb(228,81,46)" fg:x="250742" fg:w="3302"/><text x="47.8100%" y="703.50"></text></g><g><title>start_transaction (155 samples, 0.03%)</title><rect x="48.1569%" y="677" width="0.0294%" height="15" fill="rgb(227,67,47)" fg:x="253889" fg:w="155"/><text x="48.4069%" y="687.50"></text></g><g><title>do_mkdirat (4,916 samples, 0.93%)</title><rect x="47.2558%" y="725" width="0.9325%" height="15" fill="rgb(215,93,53)" fg:x="249138" fg:w="4916"/><text x="47.5058%" y="735.50"></text></g><g><title>vfs_mkdir (3,318 samples, 0.63%)</title><rect x="47.5589%" y="709" width="0.6293%" height="15" fill="rgb(248,194,39)" fg:x="250736" fg:w="3318"/><text x="47.8089%" y="719.50"></text></g><g><title>do_syscall_64 (4,927 samples, 0.93%)</title><rect x="47.2548%" y="741" width="0.9345%" height="15" fill="rgb(215,5,19)" fg:x="249133" fg:w="4927"/><text x="47.5048%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,936 samples, 0.94%)</title><rect x="47.2540%" y="757" width="0.9362%" height="15" fill="rgb(226,215,51)" fg:x="249129" fg:w="4936"/><text x="47.5040%" y="767.50"></text></g><g><title>__GI___mkdir (4,968 samples, 0.94%)</title><rect x="47.2493%" y="773" width="0.9423%" height="15" fill="rgb(225,56,26)" fg:x="249104" fg:w="4968"/><text x="47.4993%" y="783.50"></text></g><g><title>btrfs_filldir (397 samples, 0.08%)</title><rect x="48.2857%" y="661" width="0.0753%" height="15" fill="rgb(222,75,29)" fg:x="254568" fg:w="397"/><text x="48.5357%" y="671.50"></text></g><g><title>filldir64 (357 samples, 0.07%)</title><rect x="48.2933%" y="645" width="0.0677%" height="15" fill="rgb(236,139,6)" fg:x="254608" fg:w="357"/><text x="48.5433%" y="655.50"></text></g><g><title>verify_dirent_name (96 samples, 0.02%)</title><rect x="48.3428%" y="629" width="0.0182%" height="15" fill="rgb(223,137,36)" fg:x="254869" fg:w="96"/><text x="48.5928%" y="639.50"></text></g><g><title>memchr (69 samples, 0.01%)</title><rect x="48.3479%" y="613" width="0.0131%" height="15" fill="rgb(226,99,2)" fg:x="254896" fg:w="69"/><text x="48.5979%" y="623.50"></text></g><g><title>btrfs_next_old_leaf (63 samples, 0.01%)</title><rect x="48.3826%" y="661" width="0.0119%" height="15" fill="rgb(206,133,23)" fg:x="255079" fg:w="63"/><text x="48.6326%" y="671.50"></text></g><g><title>btrfs_readdir_get_delayed_items (110 samples, 0.02%)</title><rect x="48.3948%" y="661" width="0.0209%" height="15" fill="rgb(243,173,15)" fg:x="255143" fg:w="110"/><text x="48.6448%" y="671.50"></text></g><g><title>btrfs_release_path (113 samples, 0.02%)</title><rect x="48.4175%" y="661" width="0.0214%" height="15" fill="rgb(228,69,28)" fg:x="255263" fg:w="113"/><text x="48.6675%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (177 samples, 0.03%)</title><rect x="48.4725%" y="645" width="0.0336%" height="15" fill="rgb(212,51,22)" fg:x="255553" fg:w="177"/><text x="48.7225%" y="655.50"></text></g><g><title>__radix_tree_lookup (115 samples, 0.02%)</title><rect x="48.5289%" y="613" width="0.0218%" height="15" fill="rgb(227,113,0)" fg:x="255850" fg:w="115"/><text x="48.7789%" y="623.50"></text></g><g><title>find_extent_buffer (206 samples, 0.04%)</title><rect x="48.5215%" y="629" width="0.0391%" height="15" fill="rgb(252,84,27)" fg:x="255811" fg:w="206"/><text x="48.7715%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (318 samples, 0.06%)</title><rect x="48.5061%" y="645" width="0.0603%" height="15" fill="rgb(223,145,39)" fg:x="255730" fg:w="318"/><text x="48.7561%" y="655.50"></text></g><g><title>btrfs_search_slot (716 samples, 0.14%)</title><rect x="48.4390%" y="661" width="0.1358%" height="15" fill="rgb(239,219,30)" fg:x="255376" fg:w="716"/><text x="48.6890%" y="671.50"></text></g><g><title>btrfs_real_readdir (2,244 samples, 0.43%)</title><rect x="48.2491%" y="677" width="0.4256%" height="15" fill="rgb(224,196,39)" fg:x="254375" fg:w="2244"/><text x="48.4991%" y="687.50"></text></g><g><title>read_extent_buffer (366 samples, 0.07%)</title><rect x="48.6053%" y="661" width="0.0694%" height="15" fill="rgb(205,35,43)" fg:x="256253" fg:w="366"/><text x="48.8553%" y="671.50"></text></g><g><title>security_file_permission (59 samples, 0.01%)</title><rect x="48.6810%" y="677" width="0.0112%" height="15" fill="rgb(228,201,21)" fg:x="256652" fg:w="59"/><text x="48.9310%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (87 samples, 0.02%)</title><rect x="48.7182%" y="613" width="0.0165%" height="15" fill="rgb(237,118,16)" fg:x="256848" fg:w="87"/><text x="48.9682%" y="623.50"></text></g><g><title>btrfs_reserve_metadata_bytes (82 samples, 0.02%)</title><rect x="48.7191%" y="597" width="0.0156%" height="15" fill="rgb(241,17,19)" fg:x="256853" fg:w="82"/><text x="48.9691%" y="607.50"></text></g><g><title>__reserve_bytes (81 samples, 0.02%)</title><rect x="48.7193%" y="581" width="0.0154%" height="15" fill="rgb(214,10,25)" fg:x="256854" fg:w="81"/><text x="48.9693%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (179 samples, 0.03%)</title><rect x="48.7094%" y="629" width="0.0340%" height="15" fill="rgb(238,37,29)" fg:x="256802" fg:w="179"/><text x="48.9594%" y="639.50"></text></g><g><title>btrfs_update_inode (209 samples, 0.04%)</title><rect x="48.7074%" y="645" width="0.0396%" height="15" fill="rgb(253,83,25)" fg:x="256791" fg:w="209"/><text x="48.9574%" y="655.50"></text></g><g><title>btrfs_dirty_inode (281 samples, 0.05%)</title><rect x="48.7020%" y="661" width="0.0533%" height="15" fill="rgb(234,192,12)" fg:x="256763" fg:w="281"/><text x="48.9520%" y="671.50"></text></g><g><title>touch_atime (339 samples, 0.06%)</title><rect x="48.6922%" y="677" width="0.0643%" height="15" fill="rgb(241,216,45)" fg:x="256711" fg:w="339"/><text x="48.9422%" y="687.50"></text></g><g><title>iterate_dir (2,713 samples, 0.51%)</title><rect x="48.2445%" y="693" width="0.5146%" height="15" fill="rgb(242,22,33)" fg:x="254351" fg:w="2713"/><text x="48.4945%" y="703.50"></text></g><g><title>__x64_sys_getdents64 (2,786 samples, 0.53%)</title><rect x="48.2320%" y="709" width="0.5284%" height="15" fill="rgb(231,105,49)" fg:x="254285" fg:w="2786"/><text x="48.4820%" y="719.50"></text></g><g><title>do_syscall_64 (2,793 samples, 0.53%)</title><rect x="48.2311%" y="725" width="0.5298%" height="15" fill="rgb(218,204,15)" fg:x="254280" fg:w="2793"/><text x="48.4811%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,801 samples, 0.53%)</title><rect x="48.2307%" y="741" width="0.5313%" height="15" fill="rgb(235,138,41)" fg:x="254278" fg:w="2801"/><text x="48.4807%" y="751.50"></text></g><g><title>__GI___getdents64 (2,842 samples, 0.54%)</title><rect x="48.2239%" y="757" width="0.5391%" height="15" fill="rgb(246,0,9)" fg:x="254242" fg:w="2842"/><text x="48.4739%" y="767.50"></text></g><g><title>__GI___readdir64 (3,013 samples, 0.57%)</title><rect x="48.1916%" y="773" width="0.5715%" height="15" fill="rgb(210,74,4)" fg:x="254072" fg:w="3013"/><text x="48.4416%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (351 samples, 0.07%)</title><rect x="48.8483%" y="757" width="0.0666%" height="15" fill="rgb(250,60,41)" fg:x="257534" fg:w="351"/><text x="49.0983%" y="767.50"></text></g><g><title>_copy_to_user (330 samples, 0.06%)</title><rect x="48.9867%" y="693" width="0.0626%" height="15" fill="rgb(220,115,12)" fg:x="258264" fg:w="330"/><text x="49.2367%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (290 samples, 0.06%)</title><rect x="48.9943%" y="677" width="0.0550%" height="15" fill="rgb(237,100,13)" fg:x="258304" fg:w="290"/><text x="49.2443%" y="687.50"></text></g><g><title>from_kgid_munged (53 samples, 0.01%)</title><rect x="49.0493%" y="693" width="0.0101%" height="15" fill="rgb(213,55,26)" fg:x="258594" fg:w="53"/><text x="49.2993%" y="703.50"></text></g><g><title>cp_new_stat (555 samples, 0.11%)</title><rect x="48.9619%" y="709" width="0.1053%" height="15" fill="rgb(216,17,4)" fg:x="258133" fg:w="555"/><text x="49.2119%" y="719.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.03%)</title><rect x="49.1779%" y="677" width="0.0267%" height="15" fill="rgb(220,153,47)" fg:x="259272" fg:w="141"/><text x="49.4279%" y="687.50"></text></g><g><title>generic_fillattr (147 samples, 0.03%)</title><rect x="49.2047%" y="677" width="0.0279%" height="15" fill="rgb(215,131,9)" fg:x="259413" fg:w="147"/><text x="49.4547%" y="687.50"></text></g><g><title>btrfs_getattr (870 samples, 0.17%)</title><rect x="49.0907%" y="693" width="0.1650%" height="15" fill="rgb(233,46,42)" fg:x="258812" fg:w="870"/><text x="49.3407%" y="703.50"></text></g><g><title>inode_get_bytes (122 samples, 0.02%)</title><rect x="49.2326%" y="677" width="0.0231%" height="15" fill="rgb(226,86,7)" fg:x="259560" fg:w="122"/><text x="49.4826%" y="687.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.02%)</title><rect x="49.2373%" y="661" width="0.0184%" height="15" fill="rgb(239,226,21)" fg:x="259585" fg:w="97"/><text x="49.4873%" y="671.50"></text></g><g><title>kmem_cache_free (397 samples, 0.08%)</title><rect x="49.2885%" y="677" width="0.0753%" height="15" fill="rgb(244,137,22)" fg:x="259855" fg:w="397"/><text x="49.5385%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (93 samples, 0.02%)</title><rect x="49.3462%" y="661" width="0.0176%" height="15" fill="rgb(211,139,35)" fg:x="260159" fg:w="93"/><text x="49.5962%" y="671.50"></text></g><g><title>__legitimize_mnt (136 samples, 0.03%)</title><rect x="49.4067%" y="613" width="0.0258%" height="15" fill="rgb(214,62,50)" fg:x="260478" fg:w="136"/><text x="49.6567%" y="623.50"></text></g><g><title>__legitimize_path (302 samples, 0.06%)</title><rect x="49.4033%" y="629" width="0.0573%" height="15" fill="rgb(212,113,44)" fg:x="260460" fg:w="302"/><text x="49.6533%" y="639.50"></text></g><g><title>lockref_get_not_dead (148 samples, 0.03%)</title><rect x="49.4325%" y="613" width="0.0281%" height="15" fill="rgb(226,150,43)" fg:x="260614" fg:w="148"/><text x="49.6825%" y="623.50"></text></g><g><title>complete_walk (391 samples, 0.07%)</title><rect x="49.3927%" y="661" width="0.0742%" height="15" fill="rgb(250,71,37)" fg:x="260404" fg:w="391"/><text x="49.6427%" y="671.50"></text></g><g><title>try_to_unlazy (368 samples, 0.07%)</title><rect x="49.3970%" y="645" width="0.0698%" height="15" fill="rgb(219,76,19)" fg:x="260427" fg:w="368"/><text x="49.6470%" y="655.50"></text></g><g><title>btrfs_permission (297 samples, 0.06%)</title><rect x="50.6073%" y="629" width="0.0563%" height="15" fill="rgb(250,39,11)" fg:x="266808" fg:w="297"/><text x="50.8573%" y="639.50"></text></g><g><title>inode_permission.part.0 (3,919 samples, 0.74%)</title><rect x="50.1785%" y="645" width="0.7433%" height="15" fill="rgb(230,64,31)" fg:x="264547" fg:w="3919"/><text x="50.4285%" y="655.50"></text></g><g><title>generic_permission (1,361 samples, 0.26%)</title><rect x="50.6637%" y="629" width="0.2582%" height="15" fill="rgb(208,222,23)" fg:x="267105" fg:w="1361"/><text x="50.9137%" y="639.50"></text></g><g><title>get_cached_acl_rcu (58 samples, 0.01%)</title><rect x="50.9108%" y="613" width="0.0110%" height="15" fill="rgb(227,125,18)" fg:x="268408" fg:w="58"/><text x="51.1608%" y="623.50"></text></g><g><title>security_inode_permission (430 samples, 0.08%)</title><rect x="50.9218%" y="645" width="0.0816%" height="15" fill="rgb(234,210,9)" fg:x="268466" fg:w="430"/><text x="51.1718%" y="655.50"></text></g><g><title>__d_lookup_rcu (5,616 samples, 1.07%)</title><rect x="51.6079%" y="613" width="1.0652%" height="15" fill="rgb(217,127,24)" fg:x="272083" fg:w="5616"/><text x="51.8579%" y="623.50"></text></g><g><title>lookup_fast (7,299 samples, 1.38%)</title><rect x="51.2892%" y="629" width="1.3845%" height="15" fill="rgb(239,141,48)" fg:x="270403" fg:w="7299"/><text x="51.5392%" y="639.50"></text></g><g><title>page_put_link (122 samples, 0.02%)</title><rect x="52.6737%" y="629" width="0.0231%" height="15" fill="rgb(227,109,8)" fg:x="277702" fg:w="122"/><text x="52.9237%" y="639.50"></text></g><g><title>__lookup_mnt (79 samples, 0.01%)</title><rect x="53.0771%" y="613" width="0.0150%" height="15" fill="rgb(235,184,23)" fg:x="279829" fg:w="79"/><text x="53.3271%" y="623.50"></text></g><g><title>atime_needs_update (114 samples, 0.02%)</title><rect x="53.0923%" y="613" width="0.0216%" height="15" fill="rgb(227,226,48)" fg:x="279909" fg:w="114"/><text x="53.3423%" y="623.50"></text></g><g><title>current_time (59 samples, 0.01%)</title><rect x="53.1027%" y="597" width="0.0112%" height="15" fill="rgb(206,150,11)" fg:x="279964" fg:w="59"/><text x="53.3527%" y="607.50"></text></g><g><title>page_get_link (335 samples, 0.06%)</title><rect x="53.1190%" y="613" width="0.0635%" height="15" fill="rgb(254,2,33)" fg:x="280050" fg:w="335"/><text x="53.3690%" y="623.50"></text></g><g><title>pagecache_get_page (270 samples, 0.05%)</title><rect x="53.1314%" y="597" width="0.0512%" height="15" fill="rgb(243,160,20)" fg:x="280115" fg:w="270"/><text x="53.3814%" y="607.50"></text></g><g><title>find_get_entry (209 samples, 0.04%)</title><rect x="53.1429%" y="581" width="0.0396%" height="15" fill="rgb(218,208,30)" fg:x="280176" fg:w="209"/><text x="53.3929%" y="591.50"></text></g><g><title>link_path_walk.part.0 (19,606 samples, 3.72%)</title><rect x="49.4668%" y="661" width="3.7188%" height="15" fill="rgb(224,120,49)" fg:x="260795" fg:w="19606"/><text x="49.7168%" y="671.50">link..</text></g><g><title>walk_component (11,505 samples, 2.18%)</title><rect x="51.0034%" y="645" width="2.1822%" height="15" fill="rgb(246,12,2)" fg:x="268896" fg:w="11505"/><text x="51.2534%" y="655.50">w..</text></g><g><title>step_into (2,577 samples, 0.49%)</title><rect x="52.6968%" y="629" width="0.4888%" height="15" fill="rgb(236,117,3)" fg:x="277824" fg:w="2577"/><text x="52.9468%" y="639.50"></text></g><g><title>path_init (500 samples, 0.09%)</title><rect x="53.1856%" y="661" width="0.0948%" height="15" fill="rgb(216,128,52)" fg:x="280401" fg:w="500"/><text x="53.4356%" y="671.50"></text></g><g><title>nd_jump_root (384 samples, 0.07%)</title><rect x="53.2076%" y="645" width="0.0728%" height="15" fill="rgb(246,145,19)" fg:x="280517" fg:w="384"/><text x="53.4576%" y="655.50"></text></g><g><title>set_root (320 samples, 0.06%)</title><rect x="53.2198%" y="629" width="0.0607%" height="15" fill="rgb(222,11,46)" fg:x="280581" fg:w="320"/><text x="53.4698%" y="639.50"></text></g><g><title>dput (160 samples, 0.03%)</title><rect x="53.2909%" y="645" width="0.0303%" height="15" fill="rgb(245,82,36)" fg:x="280956" fg:w="160"/><text x="53.5409%" y="655.50"></text></g><g><title>lockref_put_or_lock (104 samples, 0.02%)</title><rect x="53.3015%" y="629" width="0.0197%" height="15" fill="rgb(250,73,51)" fg:x="281012" fg:w="104"/><text x="53.5515%" y="639.50"></text></g><g><title>terminate_walk (292 samples, 0.06%)</title><rect x="53.2805%" y="661" width="0.0554%" height="15" fill="rgb(221,189,23)" fg:x="280901" fg:w="292"/><text x="53.5305%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (71 samples, 0.01%)</title><rect x="53.3937%" y="565" width="0.0135%" height="15" fill="rgb(210,33,7)" fg:x="281498" fg:w="71"/><text x="53.6437%" y="575.50"></text></g><g><title>free_extent_buffer.part.0 (221 samples, 0.04%)</title><rect x="53.4083%" y="565" width="0.0419%" height="15" fill="rgb(210,107,22)" fg:x="281575" fg:w="221"/><text x="53.6583%" y="575.50"></text></g><g><title>_raw_spin_lock (161 samples, 0.03%)</title><rect x="53.4197%" y="549" width="0.0305%" height="15" fill="rgb(222,116,37)" fg:x="281635" fg:w="161"/><text x="53.6697%" y="559.50"></text></g><g><title>btrfs_free_path (557 samples, 0.11%)</title><rect x="53.3766%" y="597" width="0.1057%" height="15" fill="rgb(254,17,48)" fg:x="281408" fg:w="557"/><text x="53.6266%" y="607.50"></text></g><g><title>btrfs_release_path (530 samples, 0.10%)</title><rect x="53.3818%" y="581" width="0.1005%" height="15" fill="rgb(224,36,32)" fg:x="281435" fg:w="530"/><text x="53.6318%" y="591.50"></text></g><g><title>release_extent_buffer (168 samples, 0.03%)</title><rect x="53.4504%" y="565" width="0.0319%" height="15" fill="rgb(232,90,46)" fg:x="281797" fg:w="168"/><text x="53.7004%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (93 samples, 0.02%)</title><rect x="53.5583%" y="549" width="0.0176%" height="15" fill="rgb(241,66,40)" fg:x="282366" fg:w="93"/><text x="53.8083%" y="559.50"></text></g><g><title>_raw_read_lock (68 samples, 0.01%)</title><rect x="53.5631%" y="533" width="0.0129%" height="15" fill="rgb(249,184,29)" fg:x="282391" fg:w="68"/><text x="53.8131%" y="543.50"></text></g><g><title>__btrfs_read_lock_root_node (275 samples, 0.05%)</title><rect x="53.5538%" y="565" width="0.0522%" height="15" fill="rgb(231,181,1)" fg:x="282342" fg:w="275"/><text x="53.8038%" y="575.50"></text></g><g><title>btrfs_root_node (158 samples, 0.03%)</title><rect x="53.5760%" y="549" width="0.0300%" height="15" fill="rgb(224,94,2)" fg:x="282459" fg:w="158"/><text x="53.8260%" y="559.50"></text></g><g><title>dequeue_entity (54 samples, 0.01%)</title><rect x="53.6198%" y="501" width="0.0102%" height="15" fill="rgb(229,170,15)" fg:x="282690" fg:w="54"/><text x="53.8698%" y="511.50"></text></g><g><title>dequeue_task_fair (64 samples, 0.01%)</title><rect x="53.6183%" y="517" width="0.0121%" height="15" fill="rgb(240,127,35)" fg:x="282682" fg:w="64"/><text x="53.8683%" y="527.50"></text></g><g><title>__btrfs_tree_read_lock (186 samples, 0.04%)</title><rect x="53.6059%" y="565" width="0.0353%" height="15" fill="rgb(248,196,34)" fg:x="282617" fg:w="186"/><text x="53.8559%" y="575.50"></text></g><g><title>schedule (154 samples, 0.03%)</title><rect x="53.6120%" y="549" width="0.0292%" height="15" fill="rgb(236,137,7)" fg:x="282649" fg:w="154"/><text x="53.8620%" y="559.50"></text></g><g><title>__schedule (151 samples, 0.03%)</title><rect x="53.6126%" y="533" width="0.0286%" height="15" fill="rgb(235,127,16)" fg:x="282652" fg:w="151"/><text x="53.8626%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (206 samples, 0.04%)</title><rect x="53.6507%" y="565" width="0.0391%" height="15" fill="rgb(250,192,54)" fg:x="282853" fg:w="206"/><text x="53.9007%" y="575.50"></text></g><g><title>btrfs_set_lock_blocking_read (131 samples, 0.02%)</title><rect x="53.6649%" y="549" width="0.0248%" height="15" fill="rgb(218,98,20)" fg:x="282928" fg:w="131"/><text x="53.9149%" y="559.50"></text></g><g><title>_raw_read_lock (112 samples, 0.02%)</title><rect x="53.6979%" y="549" width="0.0212%" height="15" fill="rgb(230,176,47)" fg:x="283102" fg:w="112"/><text x="53.9479%" y="559.50"></text></g><g><title>btrfs_tree_read_lock_atomic (231 samples, 0.04%)</title><rect x="53.6898%" y="565" width="0.0438%" height="15" fill="rgb(244,2,33)" fg:x="283059" fg:w="231"/><text x="53.9398%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (76 samples, 0.01%)</title><rect x="53.7192%" y="549" width="0.0144%" height="15" fill="rgb(231,100,17)" fg:x="283214" fg:w="76"/><text x="53.9692%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock (112 samples, 0.02%)</title><rect x="53.7336%" y="565" width="0.0212%" height="15" fill="rgb(245,23,12)" fg:x="283290" fg:w="112"/><text x="53.9836%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (1,290 samples, 0.24%)</title><rect x="53.7579%" y="565" width="0.2447%" height="15" fill="rgb(249,55,22)" fg:x="283418" fg:w="1290"/><text x="54.0079%" y="575.50"></text></g><g><title>btrfs_buffer_uptodate (103 samples, 0.02%)</title><rect x="54.0380%" y="549" width="0.0195%" height="15" fill="rgb(207,134,9)" fg:x="284895" fg:w="103"/><text x="54.2880%" y="559.50"></text></g><g><title>verify_parent_transid (68 samples, 0.01%)</title><rect x="54.0447%" y="533" width="0.0129%" height="15" fill="rgb(218,134,0)" fg:x="284930" fg:w="68"/><text x="54.2947%" y="543.50"></text></g><g><title>btrfs_get_64 (160 samples, 0.03%)</title><rect x="54.0576%" y="549" width="0.0303%" height="15" fill="rgb(213,212,33)" fg:x="284998" fg:w="160"/><text x="54.3076%" y="559.50"></text></g><g><title>__radix_tree_lookup (911 samples, 0.17%)</title><rect x="54.1467%" y="533" width="0.1728%" height="15" fill="rgb(252,106,18)" fg:x="285468" fg:w="911"/><text x="54.3967%" y="543.50"></text></g><g><title>check_buffer_tree_ref (54 samples, 0.01%)</title><rect x="54.3305%" y="517" width="0.0102%" height="15" fill="rgb(208,126,42)" fg:x="286437" fg:w="54"/><text x="54.5805%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (351 samples, 0.07%)</title><rect x="54.3195%" y="533" width="0.0666%" height="15" fill="rgb(246,175,29)" fg:x="286379" fg:w="351"/><text x="54.5695%" y="543.50"></text></g><g><title>mark_page_accessed (239 samples, 0.05%)</title><rect x="54.3408%" y="517" width="0.0453%" height="15" fill="rgb(215,13,50)" fg:x="286491" fg:w="239"/><text x="54.5908%" y="527.50"></text></g><g><title>find_extent_buffer (1,533 samples, 0.29%)</title><rect x="54.0972%" y="549" width="0.2908%" height="15" fill="rgb(216,172,15)" fg:x="285207" fg:w="1533"/><text x="54.3472%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (2,238 samples, 0.42%)</title><rect x="54.0026%" y="565" width="0.4245%" height="15" fill="rgb(212,103,13)" fg:x="284708" fg:w="2238"/><text x="54.2526%" y="575.50"></text></g><g><title>read_extent_buffer (206 samples, 0.04%)</title><rect x="54.3880%" y="549" width="0.0391%" height="15" fill="rgb(231,171,36)" fg:x="286740" fg:w="206"/><text x="54.6380%" y="559.50"></text></g><g><title>btrfs_search_slot (5,081 samples, 0.96%)</title><rect x="53.4893%" y="581" width="0.9637%" height="15" fill="rgb(250,123,20)" fg:x="282002" fg:w="5081"/><text x="53.7393%" y="591.50"></text></g><g><title>unlock_up (137 samples, 0.03%)</title><rect x="54.4271%" y="565" width="0.0260%" height="15" fill="rgb(212,53,50)" fg:x="286946" fg:w="137"/><text x="54.6771%" y="575.50"></text></g><g><title>btrfs_lookup_dir_item (5,284 samples, 1.00%)</title><rect x="53.4823%" y="597" width="1.0023%" height="15" fill="rgb(243,54,12)" fg:x="281965" fg:w="5284"/><text x="53.7323%" y="607.50"></text></g><g><title>crc32c (166 samples, 0.03%)</title><rect x="54.4530%" y="581" width="0.0315%" height="15" fill="rgb(234,101,34)" fg:x="287083" fg:w="166"/><text x="54.7030%" y="591.50"></text></g><g><title>crypto_shash_update (124 samples, 0.02%)</title><rect x="54.4610%" y="565" width="0.0235%" height="15" fill="rgb(254,67,22)" fg:x="287125" fg:w="124"/><text x="54.7110%" y="575.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="54.5156%" y="581" width="0.0102%" height="15" fill="rgb(250,35,47)" fg:x="287413" fg:w="54"/><text x="54.7656%" y="591.50"></text></g><g><title>kmem_cache_alloc (259 samples, 0.05%)</title><rect x="54.4845%" y="597" width="0.0491%" height="15" fill="rgb(226,126,38)" fg:x="287249" fg:w="259"/><text x="54.7345%" y="607.50"></text></g><g><title>btrfs_lookup (6,327 samples, 1.20%)</title><rect x="53.3582%" y="629" width="1.2001%" height="15" fill="rgb(216,138,53)" fg:x="281311" fg:w="6327"/><text x="53.6082%" y="639.50"></text></g><g><title>btrfs_lookup_dentry (6,320 samples, 1.20%)</title><rect x="53.3596%" y="613" width="1.1988%" height="15" fill="rgb(246,199,43)" fg:x="281318" fg:w="6320"/><text x="53.6096%" y="623.50"></text></g><g><title>kmem_cache_free (130 samples, 0.02%)</title><rect x="54.5337%" y="597" width="0.0247%" height="15" fill="rgb(232,125,11)" fg:x="287508" fg:w="130"/><text x="54.7837%" y="607.50"></text></g><g><title>__slab_alloc (168 samples, 0.03%)</title><rect x="54.6716%" y="565" width="0.0319%" height="15" fill="rgb(218,219,45)" fg:x="288235" fg:w="168"/><text x="54.9216%" y="575.50"></text></g><g><title>___slab_alloc (161 samples, 0.03%)</title><rect x="54.6729%" y="549" width="0.0305%" height="15" fill="rgb(216,102,54)" fg:x="288242" fg:w="161"/><text x="54.9229%" y="559.50"></text></g><g><title>get_partial_node.part.0 (54 samples, 0.01%)</title><rect x="54.6932%" y="533" width="0.0102%" height="15" fill="rgb(250,228,7)" fg:x="288349" fg:w="54"/><text x="54.9432%" y="543.50"></text></g><g><title>__mod_memcg_lruvec_state (125 samples, 0.02%)</title><rect x="54.7833%" y="549" width="0.0237%" height="15" fill="rgb(226,125,25)" fg:x="288824" fg:w="125"/><text x="55.0333%" y="559.50"></text></g><g><title>__mod_memcg_state.part.0 (77 samples, 0.01%)</title><rect x="54.7924%" y="533" width="0.0146%" height="15" fill="rgb(224,165,27)" fg:x="288872" fg:w="77"/><text x="55.0424%" y="543.50"></text></g><g><title>memcg_slab_post_alloc_hook (573 samples, 0.11%)</title><rect x="54.7034%" y="565" width="0.1087%" height="15" fill="rgb(233,86,3)" fg:x="288403" fg:w="573"/><text x="54.9534%" y="575.50"></text></g><g><title>memset_erms (64 samples, 0.01%)</title><rect x="54.8125%" y="565" width="0.0121%" height="15" fill="rgb(228,116,20)" fg:x="288978" fg:w="64"/><text x="55.0625%" y="575.50"></text></g><g><title>get_obj_cgroup_from_current (516 samples, 0.10%)</title><rect x="54.8385%" y="549" width="0.0979%" height="15" fill="rgb(209,192,17)" fg:x="289115" fg:w="516"/><text x="55.0885%" y="559.50"></text></g><g><title>obj_cgroup_charge (117 samples, 0.02%)</title><rect x="54.9363%" y="549" width="0.0222%" height="15" fill="rgb(224,88,34)" fg:x="289631" fg:w="117"/><text x="55.1863%" y="559.50"></text></g><g><title>kmem_cache_alloc (1,710 samples, 0.32%)</title><rect x="54.6346%" y="581" width="0.3243%" height="15" fill="rgb(233,38,6)" fg:x="288040" fg:w="1710"/><text x="54.8846%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (706 samples, 0.13%)</title><rect x="54.8250%" y="565" width="0.1339%" height="15" fill="rgb(212,59,30)" fg:x="289044" fg:w="706"/><text x="55.0750%" y="575.50"></text></g><g><title>__d_alloc (1,900 samples, 0.36%)</title><rect x="54.6055%" y="597" width="0.3604%" height="15" fill="rgb(213,80,3)" fg:x="287887" fg:w="1900"/><text x="54.8555%" y="607.50"></text></g><g><title>d_alloc (2,016 samples, 0.38%)</title><rect x="54.5993%" y="613" width="0.3824%" height="15" fill="rgb(251,178,7)" fg:x="287854" fg:w="2016"/><text x="54.8493%" y="623.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="54.9684%" y="597" width="0.0133%" height="15" fill="rgb(213,154,26)" fg:x="289800" fg:w="70"/><text x="55.2184%" y="607.50"></text></g><g><title>d_alloc_parallel (2,236 samples, 0.42%)</title><rect x="54.5583%" y="629" width="0.4241%" height="15" fill="rgb(238,165,49)" fg:x="287638" fg:w="2236"/><text x="54.8083%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (72 samples, 0.01%)</title><rect x="55.0390%" y="565" width="0.0137%" height="15" fill="rgb(248,91,46)" fg:x="290172" fg:w="72"/><text x="55.2890%" y="575.50"></text></g><g><title>__d_lookup_done (313 samples, 0.06%)</title><rect x="54.9999%" y="597" width="0.0594%" height="15" fill="rgb(244,21,52)" fg:x="289966" fg:w="313"/><text x="55.2499%" y="607.50"></text></g><g><title>__wake_up_common_lock (172 samples, 0.03%)</title><rect x="55.0266%" y="581" width="0.0326%" height="15" fill="rgb(247,122,20)" fg:x="290107" fg:w="172"/><text x="55.2766%" y="591.50"></text></g><g><title>__d_rehash (115 samples, 0.02%)</title><rect x="55.0593%" y="597" width="0.0218%" height="15" fill="rgb(218,27,9)" fg:x="290279" fg:w="115"/><text x="55.3093%" y="607.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="55.0811%" y="597" width="0.0116%" height="15" fill="rgb(246,7,6)" fg:x="290394" fg:w="61"/><text x="55.3311%" y="607.50"></text></g><g><title>__lookup_slow (9,181 samples, 1.74%)</title><rect x="53.3514%" y="645" width="1.7414%" height="15" fill="rgb(227,135,54)" fg:x="281275" fg:w="9181"/><text x="53.6014%" y="655.50"></text></g><g><title>d_splice_alias (582 samples, 0.11%)</title><rect x="54.9824%" y="629" width="0.1104%" height="15" fill="rgb(247,14,11)" fg:x="289874" fg:w="582"/><text x="55.2324%" y="639.50"></text></g><g><title>__d_add (558 samples, 0.11%)</title><rect x="54.9870%" y="613" width="0.1058%" height="15" fill="rgb(206,149,34)" fg:x="289898" fg:w="558"/><text x="55.2370%" y="623.50"></text></g><g><title>__d_lookup_rcu (1,901 samples, 0.36%)</title><rect x="55.1188%" y="629" width="0.3606%" height="15" fill="rgb(227,228,4)" fg:x="290593" fg:w="1901"/><text x="55.3688%" y="639.50"></text></g><g><title>__legitimize_mnt (161 samples, 0.03%)</title><rect x="55.4885%" y="597" width="0.0305%" height="15" fill="rgb(238,218,28)" fg:x="292542" fg:w="161"/><text x="55.7385%" y="607.50"></text></g><g><title>__legitimize_path (323 samples, 0.06%)</title><rect x="55.4860%" y="613" width="0.0613%" height="15" fill="rgb(252,86,40)" fg:x="292529" fg:w="323"/><text x="55.7360%" y="623.50"></text></g><g><title>lockref_get_not_dead (149 samples, 0.03%)</title><rect x="55.5190%" y="597" width="0.0283%" height="15" fill="rgb(251,225,11)" fg:x="292703" fg:w="149"/><text x="55.7690%" y="607.50"></text></g><g><title>lookup_fast (2,369 samples, 0.45%)</title><rect x="55.1021%" y="645" width="0.4493%" height="15" fill="rgb(206,46,49)" fg:x="290505" fg:w="2369"/><text x="55.3521%" y="655.50"></text></g><g><title>try_to_unlazy (379 samples, 0.07%)</title><rect x="55.4796%" y="629" width="0.0719%" height="15" fill="rgb(245,128,24)" fg:x="292495" fg:w="379"/><text x="55.7296%" y="639.50"></text></g><g><title>_raw_spin_lock (157 samples, 0.03%)</title><rect x="55.6205%" y="581" width="0.0298%" height="15" fill="rgb(219,177,34)" fg:x="293238" fg:w="157"/><text x="55.8705%" y="591.50"></text></g><g><title>d_lru_add (388 samples, 0.07%)</title><rect x="55.5801%" y="613" width="0.0736%" height="15" fill="rgb(218,60,48)" fg:x="293025" fg:w="388"/><text x="55.8301%" y="623.50"></text></g><g><title>list_lru_add (365 samples, 0.07%)</title><rect x="55.5845%" y="597" width="0.0692%" height="15" fill="rgb(221,11,5)" fg:x="293048" fg:w="365"/><text x="55.8345%" y="607.50"></text></g><g><title>lockref_put_or_lock (84 samples, 0.02%)</title><rect x="55.6537%" y="613" width="0.0159%" height="15" fill="rgb(220,148,13)" fg:x="293413" fg:w="84"/><text x="55.9037%" y="623.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="55.6569%" y="597" width="0.0127%" height="15" fill="rgb(210,16,3)" fg:x="293430" fg:w="67"/><text x="55.9069%" y="607.50"></text></g><g><title>step_into (628 samples, 0.12%)</title><rect x="55.5515%" y="645" width="0.1191%" height="15" fill="rgb(236,80,2)" fg:x="292874" fg:w="628"/><text x="55.8015%" y="655.50"></text></g><g><title>dput (537 samples, 0.10%)</title><rect x="55.5687%" y="629" width="0.1019%" height="15" fill="rgb(239,129,19)" fg:x="292965" fg:w="537"/><text x="55.8187%" y="639.50"></text></g><g><title>path_lookupat (33,316 samples, 6.32%)</title><rect x="49.3638%" y="677" width="6.3193%" height="15" fill="rgb(220,106,35)" fg:x="260252" fg:w="33316"/><text x="49.6138%" y="687.50">path_loo..</text></g><g><title>walk_component (12,375 samples, 2.35%)</title><rect x="53.3358%" y="661" width="2.3473%" height="15" fill="rgb(252,139,45)" fg:x="281193" fg:w="12375"/><text x="53.5858%" y="671.50">w..</text></g><g><title>up_read (66 samples, 0.01%)</title><rect x="55.6706%" y="645" width="0.0125%" height="15" fill="rgb(229,8,36)" fg:x="293502" fg:w="66"/><text x="55.9206%" y="655.50"></text></g><g><title>filename_lookup (33,909 samples, 6.43%)</title><rect x="49.2557%" y="693" width="6.4318%" height="15" fill="rgb(230,126,33)" fg:x="259682" fg:w="33909"/><text x="49.5057%" y="703.50">filename..</text></g><g><title>lockref_put_or_lock (119 samples, 0.02%)</title><rect x="55.7119%" y="661" width="0.0226%" height="15" fill="rgb(239,140,21)" fg:x="293720" fg:w="119"/><text x="55.9619%" y="671.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="55.7182%" y="645" width="0.0163%" height="15" fill="rgb(254,104,9)" fg:x="293753" fg:w="86"/><text x="55.9682%" y="655.50"></text></g><g><title>path_put (210 samples, 0.04%)</title><rect x="55.6956%" y="693" width="0.0398%" height="15" fill="rgb(239,52,14)" fg:x="293634" fg:w="210"/><text x="55.9456%" y="703.50"></text></g><g><title>dput (205 samples, 0.04%)</title><rect x="55.6966%" y="677" width="0.0389%" height="15" fill="rgb(208,227,44)" fg:x="293639" fg:w="205"/><text x="55.9466%" y="687.50"></text></g><g><title>apparmor_inode_getattr (88 samples, 0.02%)</title><rect x="55.8464%" y="677" width="0.0167%" height="15" fill="rgb(246,18,19)" fg:x="294429" fg:w="88"/><text x="56.0964%" y="687.50"></text></g><g><title>security_inode_getattr (994 samples, 0.19%)</title><rect x="55.7355%" y="693" width="0.1885%" height="15" fill="rgb(235,228,25)" fg:x="293844" fg:w="994"/><text x="55.9855%" y="703.50"></text></g><g><title>tomoyo_path_perm (313 samples, 0.06%)</title><rect x="55.8646%" y="677" width="0.0594%" height="15" fill="rgb(240,156,20)" fg:x="294525" fg:w="313"/><text x="56.1146%" y="687.50"></text></g><g><title>tomoyo_init_request_info (144 samples, 0.03%)</title><rect x="55.8967%" y="661" width="0.0273%" height="15" fill="rgb(224,8,20)" fg:x="294694" fg:w="144"/><text x="56.1467%" y="671.50"></text></g><g><title>memcg_slab_post_alloc_hook (56 samples, 0.01%)</title><rect x="56.0293%" y="645" width="0.0106%" height="15" fill="rgb(214,12,52)" fg:x="295393" fg:w="56"/><text x="56.2793%" y="655.50"></text></g><g><title>memset_erms (994 samples, 0.19%)</title><rect x="56.0416%" y="645" width="0.1885%" height="15" fill="rgb(211,220,47)" fg:x="295458" fg:w="994"/><text x="56.2916%" y="655.50"></text></g><g><title>_cond_resched (60 samples, 0.01%)</title><rect x="56.2569%" y="629" width="0.0114%" height="15" fill="rgb(250,173,5)" fg:x="296593" fg:w="60"/><text x="56.5069%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,637 samples, 0.31%)</title><rect x="55.9585%" y="661" width="0.3105%" height="15" fill="rgb(250,125,52)" fg:x="295020" fg:w="1637"/><text x="56.2085%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (205 samples, 0.04%)</title><rect x="56.2301%" y="645" width="0.0389%" height="15" fill="rgb(209,133,18)" fg:x="296452" fg:w="205"/><text x="56.4801%" y="655.50"></text></g><g><title>__check_heap_object (197 samples, 0.04%)</title><rect x="56.5205%" y="629" width="0.0374%" height="15" fill="rgb(216,173,22)" fg:x="297983" fg:w="197"/><text x="56.7705%" y="639.50"></text></g><g><title>__virt_addr_valid (246 samples, 0.05%)</title><rect x="56.5579%" y="629" width="0.0467%" height="15" fill="rgb(205,3,22)" fg:x="298180" fg:w="246"/><text x="56.8079%" y="639.50"></text></g><g><title>user_path_at_empty (3,600 samples, 0.68%)</title><rect x="55.9240%" y="693" width="0.6828%" height="15" fill="rgb(248,22,20)" fg:x="294838" fg:w="3600"/><text x="56.1740%" y="703.50"></text></g><g><title>getname_flags.part.0 (3,546 samples, 0.67%)</title><rect x="55.9342%" y="677" width="0.6726%" height="15" fill="rgb(233,6,29)" fg:x="294892" fg:w="3546"/><text x="56.1842%" y="687.50"></text></g><g><title>strncpy_from_user (1,781 samples, 0.34%)</title><rect x="56.2690%" y="661" width="0.3378%" height="15" fill="rgb(240,22,54)" fg:x="296657" fg:w="1781"/><text x="56.5190%" y="671.50"></text></g><g><title>__check_object_size (595 samples, 0.11%)</title><rect x="56.4940%" y="645" width="0.1129%" height="15" fill="rgb(231,133,32)" fg:x="297843" fg:w="595"/><text x="56.7440%" y="655.50"></text></g><g><title>__do_sys_newstat (40,663 samples, 7.71%)</title><rect x="48.9465%" y="725" width="7.7128%" height="15" fill="rgb(248,193,4)" fg:x="258052" fg:w="40663"/><text x="49.1965%" y="735.50">__do_sys_ne..</text></g><g><title>vfs_statx (40,027 samples, 7.59%)</title><rect x="49.0672%" y="709" width="7.5922%" height="15" fill="rgb(211,178,46)" fg:x="258688" fg:w="40027"/><text x="49.3172%" y="719.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (277 samples, 0.05%)</title><rect x="56.6068%" y="693" width="0.0525%" height="15" fill="rgb(224,5,42)" fg:x="298438" fg:w="277"/><text x="56.8568%" y="703.50"></text></g><g><title>do_syscall_64 (40,761 samples, 7.73%)</title><rect x="48.9355%" y="741" width="7.7314%" height="15" fill="rgb(239,176,25)" fg:x="257994" fg:w="40761"/><text x="49.1855%" y="751.50">do_syscall_..</text></g><g><title>fpregs_assert_state_consistent (108 samples, 0.02%)</title><rect x="56.6920%" y="709" width="0.0205%" height="15" fill="rgb(245,187,50)" fg:x="298887" fg:w="108"/><text x="56.9420%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41,116 samples, 7.80%)</title><rect x="48.9149%" y="757" width="7.7988%" height="15" fill="rgb(248,24,15)" fg:x="257885" fg:w="41116"/><text x="49.1649%" y="767.50">entry_SYSCA..</text></g><g><title>syscall_exit_to_user_mode (246 samples, 0.05%)</title><rect x="56.6670%" y="741" width="0.0467%" height="15" fill="rgb(205,166,13)" fg:x="298755" fg:w="246"/><text x="56.9170%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (208 samples, 0.04%)</title><rect x="56.6742%" y="725" width="0.0395%" height="15" fill="rgb(208,114,23)" fg:x="298793" fg:w="208"/><text x="56.9242%" y="735.50"></text></g><g><title>syscall_return_via_sysret (226 samples, 0.04%)</title><rect x="56.7168%" y="757" width="0.0429%" height="15" fill="rgb(239,127,18)" fg:x="299018" fg:w="226"/><text x="56.9668%" y="767.50"></text></g><g><title>__GI___xstat (42,161 samples, 8.00%)</title><rect x="48.7631%" y="773" width="7.9970%" height="15" fill="rgb(219,154,28)" fg:x="257085" fg:w="42161"/><text x="49.0131%" y="783.50">__GI___xstat</text></g><g><title>__GI_remove (54 samples, 0.01%)</title><rect x="56.7601%" y="773" width="0.0102%" height="15" fill="rgb(225,157,23)" fg:x="299246" fg:w="54"/><text x="57.0101%" y="783.50"></text></g><g><title>crc32c_pcl_intel_update (147 samples, 0.03%)</title><rect x="56.7950%" y="757" width="0.0279%" height="15" fill="rgb(219,8,6)" fg:x="299430" fg:w="147"/><text x="57.0450%" y="767.50"></text></g><g><title>entry_SYSCALL_64 (122 samples, 0.02%)</title><rect x="56.8229%" y="757" width="0.0231%" height="15" fill="rgb(212,47,6)" fg:x="299577" fg:w="122"/><text x="57.0729%" y="767.50"></text></g><g><title>memset_erms (620 samples, 0.12%)</title><rect x="56.9018%" y="677" width="0.1176%" height="15" fill="rgb(224,190,4)" fg:x="299993" fg:w="620"/><text x="57.1518%" y="687.50"></text></g><g><title>kmem_cache_alloc (808 samples, 0.15%)</title><rect x="56.8748%" y="693" width="0.1533%" height="15" fill="rgb(239,183,29)" fg:x="299851" fg:w="808"/><text x="57.1248%" y="703.50"></text></g><g><title>__check_heap_object (57 samples, 0.01%)</title><rect x="57.0877%" y="661" width="0.0108%" height="15" fill="rgb(213,57,7)" fg:x="300973" fg:w="57"/><text x="57.3377%" y="671.50"></text></g><g><title>__virt_addr_valid (167 samples, 0.03%)</title><rect x="57.0985%" y="661" width="0.0317%" height="15" fill="rgb(216,148,1)" fg:x="301030" fg:w="167"/><text x="57.3485%" y="671.50"></text></g><g><title>__x64_sys_unlinkat (1,443 samples, 0.27%)</title><rect x="56.8574%" y="725" width="0.2737%" height="15" fill="rgb(236,182,29)" fg:x="299759" fg:w="1443"/><text x="57.1074%" y="735.50"></text></g><g><title>getname_flags.part.0 (1,403 samples, 0.27%)</title><rect x="56.8650%" y="709" width="0.2661%" height="15" fill="rgb(244,120,48)" fg:x="299799" fg:w="1403"/><text x="57.1150%" y="719.50"></text></g><g><title>strncpy_from_user (543 samples, 0.10%)</title><rect x="57.0281%" y="693" width="0.1030%" height="15" fill="rgb(206,71,34)" fg:x="300659" fg:w="543"/><text x="57.2781%" y="703.50"></text></g><g><title>__check_object_size (282 samples, 0.05%)</title><rect x="57.0776%" y="677" width="0.0535%" height="15" fill="rgb(242,32,6)" fg:x="300920" fg:w="282"/><text x="57.3276%" y="687.50"></text></g><g><title>dput (70 samples, 0.01%)</title><rect x="57.1351%" y="709" width="0.0133%" height="15" fill="rgb(241,35,3)" fg:x="301223" fg:w="70"/><text x="57.3851%" y="719.50"></text></g><g><title>filename_parentat (71 samples, 0.01%)</title><rect x="57.1484%" y="709" width="0.0135%" height="15" fill="rgb(222,62,19)" fg:x="301293" fg:w="71"/><text x="57.3984%" y="719.50"></text></g><g><title>path_parentat (69 samples, 0.01%)</title><rect x="57.1487%" y="693" width="0.0131%" height="15" fill="rgb(223,110,41)" fg:x="301295" fg:w="69"/><text x="57.3987%" y="703.50"></text></g><g><title>__btrfs_end_transaction (65 samples, 0.01%)</title><rect x="57.1903%" y="677" width="0.0123%" height="15" fill="rgb(208,224,4)" fg:x="301514" fg:w="65"/><text x="57.4403%" y="687.50"></text></g><g><title>btrfs_lookup_dir_index_item (146 samples, 0.03%)</title><rect x="57.2168%" y="645" width="0.0277%" height="15" fill="rgb(241,137,19)" fg:x="301654" fg:w="146"/><text x="57.4668%" y="655.50"></text></g><g><title>btrfs_search_slot (145 samples, 0.03%)</title><rect x="57.2170%" y="629" width="0.0275%" height="15" fill="rgb(244,24,17)" fg:x="301655" fg:w="145"/><text x="57.4670%" y="639.50"></text></g><g><title>btrfs_search_slot (148 samples, 0.03%)</title><rect x="57.2449%" y="629" width="0.0281%" height="15" fill="rgb(245,178,49)" fg:x="301802" fg:w="148"/><text x="57.4949%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (152 samples, 0.03%)</title><rect x="57.2445%" y="645" width="0.0288%" height="15" fill="rgb(219,160,38)" fg:x="301800" fg:w="152"/><text x="57.4945%" y="655.50"></text></g><g><title>btrfs_del_dir_entries_in_log (405 samples, 0.08%)</title><rect x="57.2087%" y="661" width="0.0768%" height="15" fill="rgb(228,137,14)" fg:x="301611" fg:w="405"/><text x="57.4587%" y="671.50"></text></g><g><title>btrfs_free_path (56 samples, 0.01%)</title><rect x="57.2895%" y="629" width="0.0106%" height="15" fill="rgb(237,134,11)" fg:x="302037" fg:w="56"/><text x="57.5395%" y="639.50"></text></g><g><title>btrfs_release_path (54 samples, 0.01%)</title><rect x="57.2899%" y="613" width="0.0102%" height="15" fill="rgb(211,126,44)" fg:x="302039" fg:w="54"/><text x="57.5399%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (67 samples, 0.01%)</title><rect x="57.3219%" y="613" width="0.0127%" height="15" fill="rgb(226,171,33)" fg:x="302208" fg:w="67"/><text x="57.5719%" y="623.50"></text></g><g><title>find_extent_buffer (61 samples, 0.01%)</title><rect x="57.3399%" y="597" width="0.0116%" height="15" fill="rgb(253,99,13)" fg:x="302303" fg:w="61"/><text x="57.5899%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (98 samples, 0.02%)</title><rect x="57.3346%" y="613" width="0.0186%" height="15" fill="rgb(244,48,7)" fg:x="302275" fg:w="98"/><text x="57.5846%" y="623.50"></text></g><g><title>btrfs_search_slot (300 samples, 0.06%)</title><rect x="57.3001%" y="629" width="0.0569%" height="15" fill="rgb(244,217,54)" fg:x="302093" fg:w="300"/><text x="57.5501%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (430 samples, 0.08%)</title><rect x="57.2880%" y="645" width="0.0816%" height="15" fill="rgb(224,15,18)" fg:x="302029" fg:w="430"/><text x="57.5380%" y="655.50"></text></g><g><title>btrfs_del_inode_ref_in_log (467 samples, 0.09%)</title><rect x="57.2855%" y="661" width="0.0886%" height="15" fill="rgb(244,99,12)" fg:x="302016" fg:w="467"/><text x="57.5355%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (164 samples, 0.03%)</title><rect x="57.3976%" y="581" width="0.0311%" height="15" fill="rgb(233,226,8)" fg:x="302607" fg:w="164"/><text x="57.6476%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (200 samples, 0.04%)</title><rect x="57.3934%" y="597" width="0.0379%" height="15" fill="rgb(229,211,3)" fg:x="302585" fg:w="200"/><text x="57.6434%" y="607.50"></text></g><g><title>__btrfs_add_free_space (208 samples, 0.04%)</title><rect x="57.3927%" y="613" width="0.0395%" height="15" fill="rgb(216,140,21)" fg:x="302581" fg:w="208"/><text x="57.6427%" y="623.50"></text></g><g><title>btrfs_del_leaf (219 samples, 0.04%)</title><rect x="57.3927%" y="645" width="0.0415%" height="15" fill="rgb(234,122,30)" fg:x="302581" fg:w="219"/><text x="57.6427%" y="655.50"></text></g><g><title>btrfs_free_tree_block (219 samples, 0.04%)</title><rect x="57.3927%" y="629" width="0.0415%" height="15" fill="rgb(236,25,46)" fg:x="302581" fg:w="219"/><text x="57.6427%" y="639.50"></text></g><g><title>btrfs_get_token_32 (222 samples, 0.04%)</title><rect x="57.4372%" y="645" width="0.0421%" height="15" fill="rgb(217,52,54)" fg:x="302816" fg:w="222"/><text x="57.6872%" y="655.50"></text></g><g><title>btrfs_set_token_32 (199 samples, 0.04%)</title><rect x="57.4812%" y="645" width="0.0377%" height="15" fill="rgb(222,29,26)" fg:x="303048" fg:w="199"/><text x="57.7312%" y="655.50"></text></g><g><title>memmove_extent_buffer (125 samples, 0.02%)</title><rect x="57.5309%" y="645" width="0.0237%" height="15" fill="rgb(216,177,29)" fg:x="303310" fg:w="125"/><text x="57.7809%" y="655.50"></text></g><g><title>memmove (98 samples, 0.02%)</title><rect x="57.5361%" y="629" width="0.0186%" height="15" fill="rgb(247,136,51)" fg:x="303337" fg:w="98"/><text x="57.7861%" y="639.50"></text></g><g><title>btrfs_del_items (1,020 samples, 0.19%)</title><rect x="57.3741%" y="661" width="0.1935%" height="15" fill="rgb(231,47,47)" fg:x="302483" fg:w="1020"/><text x="57.6241%" y="671.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (68 samples, 0.01%)</title><rect x="57.5675%" y="661" width="0.0129%" height="15" fill="rgb(211,192,36)" fg:x="303503" fg:w="68"/><text x="57.8175%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (103 samples, 0.02%)</title><rect x="57.5932%" y="645" width="0.0195%" height="15" fill="rgb(229,156,32)" fg:x="303638" fg:w="103"/><text x="57.8432%" y="655.50"></text></g><g><title>mutex_spin_on_owner (101 samples, 0.02%)</title><rect x="57.5935%" y="629" width="0.0192%" height="15" fill="rgb(248,213,20)" fg:x="303640" fg:w="101"/><text x="57.8435%" y="639.50"></text></g><g><title>btrfs_delete_delayed_dir_index (229 samples, 0.04%)</title><rect x="57.5804%" y="661" width="0.0434%" height="15" fill="rgb(217,64,7)" fg:x="303571" fg:w="229"/><text x="57.8304%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (101 samples, 0.02%)</title><rect x="57.6512%" y="629" width="0.0192%" height="15" fill="rgb(232,142,8)" fg:x="303944" fg:w="101"/><text x="57.9012%" y="639.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="57.6764%" y="613" width="0.0129%" height="15" fill="rgb(224,92,44)" fg:x="304077" fg:w="68"/><text x="57.9264%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (109 samples, 0.02%)</title><rect x="57.6703%" y="629" width="0.0207%" height="15" fill="rgb(214,169,17)" fg:x="304045" fg:w="109"/><text x="57.9203%" y="639.50"></text></g><g><title>btrfs_search_slot (307 samples, 0.06%)</title><rect x="57.6358%" y="645" width="0.0582%" height="15" fill="rgb(210,59,37)" fg:x="303863" fg:w="307"/><text x="57.8858%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (358 samples, 0.07%)</title><rect x="57.6281%" y="661" width="0.0679%" height="15" fill="rgb(214,116,48)" fg:x="303822" fg:w="358"/><text x="57.8781%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (58 samples, 0.01%)</title><rect x="57.7045%" y="645" width="0.0110%" height="15" fill="rgb(244,191,6)" fg:x="304225" fg:w="58"/><text x="57.9545%" y="655.50"></text></g><g><title>btrfs_update_inode (84 samples, 0.02%)</title><rect x="57.7028%" y="661" width="0.0159%" height="15" fill="rgb(241,50,52)" fg:x="304216" fg:w="84"/><text x="57.9528%" y="671.50"></text></g><g><title>__btrfs_unlink_inode (2,747 samples, 0.52%)</title><rect x="57.2026%" y="677" width="0.5210%" height="15" fill="rgb(236,75,39)" fg:x="301579" fg:w="2747"/><text x="57.4526%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (71 samples, 0.01%)</title><rect x="57.7589%" y="613" width="0.0135%" height="15" fill="rgb(236,99,0)" fg:x="304512" fg:w="71"/><text x="58.0089%" y="623.50"></text></g><g><title>__radix_tree_lookup (75 samples, 0.01%)</title><rect x="57.7823%" y="581" width="0.0142%" height="15" fill="rgb(207,202,15)" fg:x="304635" fg:w="75"/><text x="58.0323%" y="591.50"></text></g><g><title>find_extent_buffer (117 samples, 0.02%)</title><rect x="57.7787%" y="597" width="0.0222%" height="15" fill="rgb(233,207,14)" fg:x="304616" fg:w="117"/><text x="58.0287%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (161 samples, 0.03%)</title><rect x="57.7724%" y="613" width="0.0305%" height="15" fill="rgb(226,27,51)" fg:x="304583" fg:w="161"/><text x="58.0224%" y="623.50"></text></g><g><title>btrfs_search_slot (367 samples, 0.07%)</title><rect x="57.7379%" y="629" width="0.0696%" height="15" fill="rgb(206,104,42)" fg:x="304401" fg:w="367"/><text x="57.9879%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (468 samples, 0.09%)</title><rect x="57.7369%" y="645" width="0.0888%" height="15" fill="rgb(212,225,4)" fg:x="304396" fg:w="468"/><text x="57.9869%" y="655.50"></text></g><g><title>setup_items_for_insert (96 samples, 0.02%)</title><rect x="57.8075%" y="629" width="0.0182%" height="15" fill="rgb(233,96,42)" fg:x="304768" fg:w="96"/><text x="58.0575%" y="639.50"></text></g><g><title>btrfs_orphan_add (544 samples, 0.10%)</title><rect x="57.7276%" y="677" width="0.1032%" height="15" fill="rgb(229,21,32)" fg:x="304347" fg:w="544"/><text x="57.9776%" y="687.50"></text></g><g><title>btrfs_insert_orphan_item (543 samples, 0.10%)</title><rect x="57.7278%" y="661" width="0.1030%" height="15" fill="rgb(226,216,24)" fg:x="304348" fg:w="543"/><text x="57.9778%" y="671.50"></text></g><g><title>btrfs_update_inode (66 samples, 0.01%)</title><rect x="57.8314%" y="677" width="0.0125%" height="15" fill="rgb(221,163,17)" fg:x="304894" fg:w="66"/><text x="58.0814%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (78 samples, 0.01%)</title><rect x="57.8507%" y="661" width="0.0148%" height="15" fill="rgb(216,216,42)" fg:x="304996" fg:w="78"/><text x="58.1007%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (75 samples, 0.01%)</title><rect x="57.8513%" y="645" width="0.0142%" height="15" fill="rgb(240,118,7)" fg:x="304999" fg:w="75"/><text x="58.1013%" y="655.50"></text></g><g><title>__reserve_bytes (74 samples, 0.01%)</title><rect x="57.8515%" y="629" width="0.0140%" height="15" fill="rgb(221,67,37)" fg:x="305000" fg:w="74"/><text x="58.1015%" y="639.50"></text></g><g><title>btrfs_rmdir (3,628 samples, 0.69%)</title><rect x="57.1865%" y="693" width="0.6881%" height="15" fill="rgb(241,32,44)" fg:x="301494" fg:w="3628"/><text x="57.4365%" y="703.50"></text></g><g><title>start_transaction (161 samples, 0.03%)</title><rect x="57.8441%" y="677" width="0.0305%" height="15" fill="rgb(235,204,43)" fg:x="304961" fg:w="161"/><text x="58.0941%" y="687.50"></text></g><g><title>btrfs_drop_extent_cache (66 samples, 0.01%)</title><rect x="57.8968%" y="661" width="0.0125%" height="15" fill="rgb(213,116,10)" fg:x="305239" fg:w="66"/><text x="58.1468%" y="671.50"></text></g><g><title>clear_record_extent_bits (58 samples, 0.01%)</title><rect x="57.9211%" y="645" width="0.0110%" height="15" fill="rgb(239,15,48)" fg:x="305367" fg:w="58"/><text x="58.1711%" y="655.50"></text></g><g><title>__clear_extent_bit (54 samples, 0.01%)</title><rect x="57.9219%" y="629" width="0.0102%" height="15" fill="rgb(207,123,36)" fg:x="305371" fg:w="54"/><text x="58.1719%" y="639.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (72 samples, 0.01%)</title><rect x="57.9203%" y="661" width="0.0137%" height="15" fill="rgb(209,103,30)" fg:x="305363" fg:w="72"/><text x="58.1703%" y="671.50"></text></g><g><title>btrfs_destroy_inode (284 samples, 0.05%)</title><rect x="57.8934%" y="677" width="0.0539%" height="15" fill="rgb(238,100,19)" fg:x="305221" fg:w="284"/><text x="58.1434%" y="687.50"></text></g><g><title>rb_erase (70 samples, 0.01%)</title><rect x="57.9340%" y="661" width="0.0133%" height="15" fill="rgb(244,30,14)" fg:x="305435" fg:w="70"/><text x="58.1840%" y="671.50"></text></g><g><title>destroy_inode (320 samples, 0.06%)</title><rect x="57.8877%" y="693" width="0.0607%" height="15" fill="rgb(249,174,6)" fg:x="305191" fg:w="320"/><text x="58.1377%" y="703.50"></text></g><g><title>__btrfs_end_transaction (90 samples, 0.02%)</title><rect x="57.9645%" y="661" width="0.0171%" height="15" fill="rgb(235,213,41)" fg:x="305596" fg:w="90"/><text x="58.2145%" y="671.50"></text></g><g><title>__radix_tree_lookup (62 samples, 0.01%)</title><rect x="57.9907%" y="629" width="0.0118%" height="15" fill="rgb(213,118,6)" fg:x="305734" fg:w="62"/><text x="58.2407%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (111 samples, 0.02%)</title><rect x="57.9816%" y="661" width="0.0211%" height="15" fill="rgb(235,44,51)" fg:x="305686" fg:w="111"/><text x="58.2316%" y="671.50"></text></g><g><title>radix_tree_delete_item (74 samples, 0.01%)</title><rect x="57.9886%" y="645" width="0.0140%" height="15" fill="rgb(217,9,53)" fg:x="305723" fg:w="74"/><text x="58.2386%" y="655.50"></text></g><g><title>_find_next_bit.constprop.0 (55 samples, 0.01%)</title><rect x="58.0497%" y="549" width="0.0104%" height="15" fill="rgb(237,172,34)" fg:x="306045" fg:w="55"/><text x="58.2997%" y="559.50"></text></g><g><title>__btrfs_add_free_space (64 samples, 0.01%)</title><rect x="58.0488%" y="581" width="0.0121%" height="15" fill="rgb(206,206,11)" fg:x="306040" fg:w="64"/><text x="58.2988%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (64 samples, 0.01%)</title><rect x="58.0488%" y="565" width="0.0121%" height="15" fill="rgb(214,149,29)" fg:x="306040" fg:w="64"/><text x="58.2988%" y="575.50"></text></g><g><title>btrfs_free_tree_block (66 samples, 0.01%)</title><rect x="58.0488%" y="597" width="0.0125%" height="15" fill="rgb(208,123,3)" fg:x="306040" fg:w="66"/><text x="58.2988%" y="607.50"></text></g><g><title>btrfs_del_leaf (68 samples, 0.01%)</title><rect x="58.0488%" y="613" width="0.0129%" height="15" fill="rgb(229,126,4)" fg:x="306040" fg:w="68"/><text x="58.2988%" y="623.50"></text></g><g><title>btrfs_get_token_32 (292 samples, 0.06%)</title><rect x="58.0635%" y="613" width="0.0554%" height="15" fill="rgb(222,92,36)" fg:x="306118" fg:w="292"/><text x="58.3135%" y="623.50"></text></g><g><title>btrfs_set_token_32 (271 samples, 0.05%)</title><rect x="58.1208%" y="613" width="0.0514%" height="15" fill="rgb(216,39,41)" fg:x="306420" fg:w="271"/><text x="58.3708%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (63 samples, 0.01%)</title><rect x="58.1603%" y="597" width="0.0119%" height="15" fill="rgb(253,127,28)" fg:x="306628" fg:w="63"/><text x="58.4103%" y="607.50"></text></g><g><title>memmove_extent_buffer (155 samples, 0.03%)</title><rect x="58.1817%" y="613" width="0.0294%" height="15" fill="rgb(249,152,51)" fg:x="306741" fg:w="155"/><text x="58.4317%" y="623.50"></text></g><g><title>memmove (124 samples, 0.02%)</title><rect x="58.1876%" y="597" width="0.0235%" height="15" fill="rgb(209,123,42)" fg:x="306772" fg:w="124"/><text x="58.4376%" y="607.50"></text></g><g><title>btrfs_del_items (985 samples, 0.19%)</title><rect x="58.0302%" y="629" width="0.1868%" height="15" fill="rgb(241,118,22)" fg:x="305942" fg:w="985"/><text x="58.2802%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (81 samples, 0.02%)</title><rect x="58.2405%" y="597" width="0.0154%" height="15" fill="rgb(208,25,7)" fg:x="307051" fg:w="81"/><text x="58.4905%" y="607.50"></text></g><g><title>find_extent_buffer (82 samples, 0.02%)</title><rect x="58.2629%" y="581" width="0.0156%" height="15" fill="rgb(243,144,39)" fg:x="307169" fg:w="82"/><text x="58.5129%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (133 samples, 0.03%)</title><rect x="58.2559%" y="597" width="0.0252%" height="15" fill="rgb(250,50,5)" fg:x="307132" fg:w="133"/><text x="58.5059%" y="607.50"></text></g><g><title>btrfs_lookup_inode (330 samples, 0.06%)</title><rect x="58.2221%" y="629" width="0.0626%" height="15" fill="rgb(207,67,11)" fg:x="306954" fg:w="330"/><text x="58.4721%" y="639.50"></text></g><g><title>btrfs_search_slot (326 samples, 0.06%)</title><rect x="58.2229%" y="613" width="0.0618%" height="15" fill="rgb(245,204,40)" fg:x="306958" fg:w="326"/><text x="58.4729%" y="623.50"></text></g><g><title>__btrfs_update_delayed_inode (1,483 samples, 0.28%)</title><rect x="58.0247%" y="645" width="0.2813%" height="15" fill="rgb(238,228,24)" fg:x="305913" fg:w="1483"/><text x="58.2747%" y="655.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,667 samples, 0.32%)</title><rect x="58.0120%" y="661" width="0.3162%" height="15" fill="rgb(217,116,22)" fg:x="305846" fg:w="1667"/><text x="58.2620%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (88 samples, 0.02%)</title><rect x="58.3663%" y="629" width="0.0167%" height="15" fill="rgb(234,98,12)" fg:x="307714" fg:w="88"/><text x="58.6163%" y="639.50"></text></g><g><title>find_extent_buffer (85 samples, 0.02%)</title><rect x="58.3890%" y="613" width="0.0161%" height="15" fill="rgb(242,170,50)" fg:x="307834" fg:w="85"/><text x="58.6390%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (131 samples, 0.02%)</title><rect x="58.3830%" y="629" width="0.0248%" height="15" fill="rgb(235,7,5)" fg:x="307802" fg:w="131"/><text x="58.6330%" y="639.50"></text></g><g><title>btrfs_search_slot (350 samples, 0.07%)</title><rect x="58.3456%" y="645" width="0.0664%" height="15" fill="rgb(241,114,28)" fg:x="307605" fg:w="350"/><text x="58.5956%" y="655.50"></text></g><g><title>btrfs_del_orphan_item (462 samples, 0.09%)</title><rect x="58.3281%" y="661" width="0.0876%" height="15" fill="rgb(246,112,42)" fg:x="307513" fg:w="462"/><text x="58.5781%" y="671.50"></text></g><g><title>clear_state_bit (54 samples, 0.01%)</title><rect x="58.4435%" y="629" width="0.0102%" height="15" fill="rgb(248,228,14)" fg:x="308121" fg:w="54"/><text x="58.6935%" y="639.50"></text></g><g><title>__clear_extent_bit (109 samples, 0.02%)</title><rect x="58.4363%" y="645" width="0.0207%" height="15" fill="rgb(208,133,18)" fg:x="308083" fg:w="109"/><text x="58.6863%" y="655.50"></text></g><g><title>_find_next_bit.constprop.0 (959 samples, 0.18%)</title><rect x="58.5082%" y="565" width="0.1819%" height="15" fill="rgb(207,35,49)" fg:x="308462" fg:w="959"/><text x="58.7582%" y="575.50"></text></g><g><title>steal_from_bitmap.part.0 (1,161 samples, 0.22%)</title><rect x="58.4824%" y="581" width="0.2202%" height="15" fill="rgb(205,68,36)" fg:x="308326" fg:w="1161"/><text x="58.7324%" y="591.50"></text></g><g><title>find_next_zero_bit (65 samples, 0.01%)</title><rect x="58.6902%" y="565" width="0.0123%" height="15" fill="rgb(245,62,40)" fg:x="309422" fg:w="65"/><text x="58.9402%" y="575.50"></text></g><g><title>__btrfs_add_free_space (1,183 samples, 0.22%)</title><rect x="58.4803%" y="597" width="0.2244%" height="15" fill="rgb(228,27,24)" fg:x="308315" fg:w="1183"/><text x="58.7303%" y="607.50"></text></g><g><title>btrfs_free_tree_block (1,228 samples, 0.23%)</title><rect x="58.4801%" y="613" width="0.2329%" height="15" fill="rgb(253,19,12)" fg:x="308314" fg:w="1228"/><text x="58.7301%" y="623.50"></text></g><g><title>btrfs_del_leaf (1,235 samples, 0.23%)</title><rect x="58.4797%" y="629" width="0.2343%" height="15" fill="rgb(232,28,20)" fg:x="308312" fg:w="1235"/><text x="58.7297%" y="639.50"></text></g><g><title>btrfs_get_token_32 (294 samples, 0.06%)</title><rect x="58.7187%" y="629" width="0.0558%" height="15" fill="rgb(218,35,51)" fg:x="309572" fg:w="294"/><text x="58.9687%" y="639.50"></text></g><g><title>btrfs_set_token_32 (255 samples, 0.05%)</title><rect x="58.7779%" y="629" width="0.0484%" height="15" fill="rgb(212,90,40)" fg:x="309884" fg:w="255"/><text x="59.0279%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (59 samples, 0.01%)</title><rect x="58.8150%" y="613" width="0.0112%" height="15" fill="rgb(220,172,12)" fg:x="310080" fg:w="59"/><text x="59.0650%" y="623.50"></text></g><g><title>memmove_extent_buffer (134 samples, 0.03%)</title><rect x="58.8427%" y="629" width="0.0254%" height="15" fill="rgb(226,159,20)" fg:x="310226" fg:w="134"/><text x="59.0927%" y="639.50"></text></g><g><title>memmove (100 samples, 0.02%)</title><rect x="58.8492%" y="613" width="0.0190%" height="15" fill="rgb(234,205,16)" fg:x="310260" fg:w="100"/><text x="59.0992%" y="623.50"></text></g><g><title>__push_leaf_left (74 samples, 0.01%)</title><rect x="58.8685%" y="613" width="0.0140%" height="15" fill="rgb(207,9,39)" fg:x="310362" fg:w="74"/><text x="59.1185%" y="623.50"></text></g><g><title>push_leaf_left (93 samples, 0.02%)</title><rect x="58.8682%" y="629" width="0.0176%" height="15" fill="rgb(249,143,15)" fg:x="310360" fg:w="93"/><text x="59.1182%" y="639.50"></text></g><g><title>btrfs_del_items (2,312 samples, 0.44%)</title><rect x="58.4569%" y="645" width="0.4385%" height="15" fill="rgb(253,133,29)" fg:x="308192" fg:w="2312"/><text x="58.7069%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (90 samples, 0.02%)</title><rect x="58.8955%" y="645" width="0.0171%" height="15" fill="rgb(221,187,0)" fg:x="310504" fg:w="90"/><text x="59.1455%" y="655.50"></text></g><g><title>btrfs_free_path (55 samples, 0.01%)</title><rect x="58.9125%" y="645" width="0.0104%" height="15" fill="rgb(205,204,26)" fg:x="310594" fg:w="55"/><text x="59.1625%" y="655.50"></text></g><g><title>btrfs_release_path (54 samples, 0.01%)</title><rect x="58.9127%" y="629" width="0.0102%" height="15" fill="rgb(224,68,54)" fg:x="310595" fg:w="54"/><text x="59.1627%" y="639.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="58.9383%" y="597" width="0.0118%" height="15" fill="rgb(209,67,4)" fg:x="310730" fg:w="62"/><text x="59.1883%" y="607.50"></text></g><g><title>btrfs_block_rsv_release (121 samples, 0.02%)</title><rect x="58.9306%" y="613" width="0.0230%" height="15" fill="rgb(228,229,18)" fg:x="310689" fg:w="121"/><text x="59.1806%" y="623.50"></text></g><g><title>finish_one_item (72 samples, 0.01%)</title><rect x="58.9624%" y="597" width="0.0137%" height="15" fill="rgb(231,89,13)" fg:x="310857" fg:w="72"/><text x="59.2124%" y="607.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (176 samples, 0.03%)</title><rect x="58.9535%" y="613" width="0.0334%" height="15" fill="rgb(210,182,18)" fg:x="310810" fg:w="176"/><text x="59.2035%" y="623.50"></text></g><g><title>kfree (133 samples, 0.03%)</title><rect x="58.9869%" y="613" width="0.0252%" height="15" fill="rgb(240,105,2)" fg:x="310986" fg:w="133"/><text x="59.2369%" y="623.50"></text></g><g><title>__btrfs_kill_delayed_node (463 samples, 0.09%)</title><rect x="58.9277%" y="629" width="0.0878%" height="15" fill="rgb(207,170,50)" fg:x="310674" fg:w="463"/><text x="59.1777%" y="639.50"></text></g><g><title>btrfs_kill_delayed_inode_items (475 samples, 0.09%)</title><rect x="58.9275%" y="645" width="0.0901%" height="15" fill="rgb(232,133,24)" fg:x="310673" fg:w="475"/><text x="59.1775%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (85 samples, 0.02%)</title><rect x="59.0396%" y="629" width="0.0161%" height="15" fill="rgb(235,166,27)" fg:x="311264" fg:w="85"/><text x="59.2896%" y="639.50"></text></g><g><title>find_extent_buffer (87 samples, 0.02%)</title><rect x="59.0618%" y="613" width="0.0165%" height="15" fill="rgb(209,19,13)" fg:x="311381" fg:w="87"/><text x="59.3118%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (133 samples, 0.03%)</title><rect x="59.0557%" y="629" width="0.0252%" height="15" fill="rgb(226,79,39)" fg:x="311349" fg:w="133"/><text x="59.3057%" y="639.50"></text></g><g><title>btrfs_search_slot (346 samples, 0.07%)</title><rect x="59.0191%" y="645" width="0.0656%" height="15" fill="rgb(222,163,10)" fg:x="311156" fg:w="346"/><text x="59.2691%" y="655.50"></text></g><g><title>lock_extent_bits (99 samples, 0.02%)</title><rect x="59.0907%" y="645" width="0.0188%" height="15" fill="rgb(214,44,19)" fg:x="311533" fg:w="99"/><text x="59.3407%" y="655.50"></text></g><g><title>__set_extent_bit (98 samples, 0.02%)</title><rect x="59.0908%" y="629" width="0.0186%" height="15" fill="rgb(210,217,13)" fg:x="311534" fg:w="98"/><text x="59.3408%" y="639.50"></text></g><g><title>btrfs_truncate_inode_items (3,698 samples, 0.70%)</title><rect x="58.4196%" y="661" width="0.7014%" height="15" fill="rgb(237,61,54)" fg:x="307995" fg:w="3698"/><text x="58.6696%" y="671.50"></text></g><g><title>read_extent_buffer (61 samples, 0.01%)</title><rect x="59.1094%" y="645" width="0.0116%" height="15" fill="rgb(226,184,24)" fg:x="311632" fg:w="61"/><text x="59.3594%" y="655.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (84 samples, 0.02%)</title><rect x="59.1362%" y="597" width="0.0159%" height="15" fill="rgb(223,226,4)" fg:x="311773" fg:w="84"/><text x="59.3862%" y="607.50"></text></g><g><title>btrfs_block_rsv_refill (175 samples, 0.03%)</title><rect x="59.1250%" y="645" width="0.0332%" height="15" fill="rgb(210,26,41)" fg:x="311714" fg:w="175"/><text x="59.3750%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (138 samples, 0.03%)</title><rect x="59.1320%" y="629" width="0.0262%" height="15" fill="rgb(220,221,6)" fg:x="311751" fg:w="138"/><text x="59.3820%" y="639.50"></text></g><g><title>__reserve_bytes (137 samples, 0.03%)</title><rect x="59.1322%" y="613" width="0.0260%" height="15" fill="rgb(225,89,49)" fg:x="311752" fg:w="137"/><text x="59.3822%" y="623.50"></text></g><g><title>evict_refill_and_join (277 samples, 0.05%)</title><rect x="59.1210%" y="661" width="0.0525%" height="15" fill="rgb(218,70,45)" fg:x="311693" fg:w="277"/><text x="59.3710%" y="671.50"></text></g><g><title>start_transaction (79 samples, 0.01%)</title><rect x="59.1586%" y="645" width="0.0150%" height="15" fill="rgb(238,166,21)" fg:x="311891" fg:w="79"/><text x="59.4086%" y="655.50"></text></g><g><title>btrfs_evict_inode (6,452 samples, 1.22%)</title><rect x="57.9617%" y="677" width="1.2238%" height="15" fill="rgb(224,141,44)" fg:x="305581" fg:w="6452"/><text x="58.2117%" y="687.50"></text></g><g><title>evict (6,528 samples, 1.24%)</title><rect x="57.9505%" y="693" width="1.2382%" height="15" fill="rgb(230,12,49)" fg:x="305522" fg:w="6528"/><text x="58.2005%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="59.2056%" y="661" width="0.0116%" height="15" fill="rgb(212,174,12)" fg:x="312139" fg:w="61"/><text x="59.4556%" y="671.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="59.2509%" y="613" width="0.0119%" height="15" fill="rgb(246,67,9)" fg:x="312378" fg:w="63"/><text x="59.5009%" y="623.50"></text></g><g><title>d_lru_del (347 samples, 0.07%)</title><rect x="59.2246%" y="645" width="0.0658%" height="15" fill="rgb(239,35,23)" fg:x="312239" fg:w="347"/><text x="59.4746%" y="655.50"></text></g><g><title>list_lru_del (337 samples, 0.06%)</title><rect x="59.2265%" y="629" width="0.0639%" height="15" fill="rgb(211,167,0)" fg:x="312249" fg:w="337"/><text x="59.4765%" y="639.50"></text></g><g><title>mem_cgroup_from_obj (145 samples, 0.03%)</title><rect x="59.2629%" y="613" width="0.0275%" height="15" fill="rgb(225,119,45)" fg:x="312441" fg:w="145"/><text x="59.5129%" y="623.50"></text></g><g><title>d_walk (517 samples, 0.10%)</title><rect x="59.1984%" y="677" width="0.0981%" height="15" fill="rgb(210,162,6)" fg:x="312101" fg:w="517"/><text x="59.4484%" y="687.50"></text></g><g><title>select_collect (418 samples, 0.08%)</title><rect x="59.2172%" y="661" width="0.0793%" height="15" fill="rgb(208,118,35)" fg:x="312200" fg:w="418"/><text x="59.4672%" y="671.50"></text></g><g><title>___d_drop (227 samples, 0.04%)</title><rect x="59.3111%" y="645" width="0.0431%" height="15" fill="rgb(239,4,53)" fg:x="312695" fg:w="227"/><text x="59.5611%" y="655.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="59.3556%" y="645" width="0.0118%" height="15" fill="rgb(213,130,21)" fg:x="312930" fg:w="62"/><text x="59.6056%" y="655.50"></text></g><g><title>call_rcu (298 samples, 0.06%)</title><rect x="59.3674%" y="645" width="0.0565%" height="15" fill="rgb(235,148,0)" fg:x="312992" fg:w="298"/><text x="59.6174%" y="655.50"></text></g><g><title>rcu_segcblist_enqueue (168 samples, 0.03%)</title><rect x="59.3920%" y="629" width="0.0319%" height="15" fill="rgb(244,224,18)" fg:x="313122" fg:w="168"/><text x="59.6420%" y="639.50"></text></g><g><title>__dentry_kill (652 samples, 0.12%)</title><rect x="59.3020%" y="661" width="0.1237%" height="15" fill="rgb(211,214,4)" fg:x="312647" fg:w="652"/><text x="59.5520%" y="671.50"></text></g><g><title>__dput_to_list (61 samples, 0.01%)</title><rect x="59.4256%" y="661" width="0.0116%" height="15" fill="rgb(206,119,25)" fg:x="313299" fg:w="61"/><text x="59.6756%" y="671.50"></text></g><g><title>d_lru_del (54 samples, 0.01%)</title><rect x="59.4269%" y="645" width="0.0102%" height="15" fill="rgb(243,93,47)" fg:x="313306" fg:w="54"/><text x="59.6769%" y="655.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="59.4395%" y="661" width="0.0110%" height="15" fill="rgb(224,194,6)" fg:x="313372" fg:w="58"/><text x="59.6895%" y="671.50"></text></g><g><title>shrink_dcache_parent (1,452 samples, 0.28%)</title><rect x="59.1972%" y="693" width="0.2754%" height="15" fill="rgb(243,229,6)" fg:x="312095" fg:w="1452"/><text x="59.4472%" y="703.50"></text></g><g><title>shrink_dentry_list (929 samples, 0.18%)</title><rect x="59.2965%" y="677" width="0.1762%" height="15" fill="rgb(207,23,50)" fg:x="312618" fg:w="929"/><text x="59.5465%" y="687.50"></text></g><g><title>shrink_lock_dentry.part.0 (88 samples, 0.02%)</title><rect x="59.4560%" y="661" width="0.0167%" height="15" fill="rgb(253,192,32)" fg:x="313459" fg:w="88"/><text x="59.7060%" y="671.50"></text></g><g><title>_raw_spin_trylock (71 samples, 0.01%)</title><rect x="59.4592%" y="645" width="0.0135%" height="15" fill="rgb(213,21,6)" fg:x="313476" fg:w="71"/><text x="59.7092%" y="655.50"></text></g><g><title>do_rmdir (12,351 samples, 2.34%)</title><rect x="57.1311%" y="725" width="2.3427%" height="15" fill="rgb(243,151,13)" fg:x="301202" fg:w="12351"/><text x="57.3811%" y="735.50">d..</text></g><g><title>vfs_rmdir.part.0 (12,071 samples, 2.29%)</title><rect x="57.1842%" y="709" width="2.2896%" height="15" fill="rgb(233,165,41)" fg:x="301482" fg:w="12071"/><text x="57.4342%" y="719.50">v..</text></g><g><title>_raw_spin_lock (162 samples, 0.03%)</title><rect x="59.6699%" y="645" width="0.0307%" height="15" fill="rgb(246,176,45)" fg:x="314587" fg:w="162"/><text x="59.9199%" y="655.50"></text></g><g><title>__lookup_hash (1,124 samples, 0.21%)</title><rect x="59.4884%" y="709" width="0.2132%" height="15" fill="rgb(217,170,52)" fg:x="313630" fg:w="1124"/><text x="59.7384%" y="719.50"></text></g><g><title>lookup_dcache (1,098 samples, 0.21%)</title><rect x="59.4933%" y="693" width="0.2083%" height="15" fill="rgb(214,203,54)" fg:x="313656" fg:w="1098"/><text x="59.7433%" y="703.50"></text></g><g><title>d_lookup (1,089 samples, 0.21%)</title><rect x="59.4950%" y="677" width="0.2066%" height="15" fill="rgb(248,215,49)" fg:x="313665" fg:w="1089"/><text x="59.7450%" y="687.50"></text></g><g><title>__d_lookup (1,076 samples, 0.20%)</title><rect x="59.4975%" y="661" width="0.2041%" height="15" fill="rgb(208,46,10)" fg:x="313678" fg:w="1076"/><text x="59.7475%" y="671.50"></text></g><g><title>down_write (53 samples, 0.01%)</title><rect x="59.7018%" y="709" width="0.0101%" height="15" fill="rgb(254,5,31)" fg:x="314755" fg:w="53"/><text x="59.9518%" y="719.50"></text></g><g><title>lockref_put_or_lock (128 samples, 0.02%)</title><rect x="59.7312%" y="693" width="0.0243%" height="15" fill="rgb(222,104,33)" fg:x="314910" fg:w="128"/><text x="59.9812%" y="703.50"></text></g><g><title>dput (232 samples, 0.04%)</title><rect x="59.7118%" y="709" width="0.0440%" height="15" fill="rgb(248,49,16)" fg:x="314808" fg:w="232"/><text x="59.9618%" y="719.50"></text></g><g><title>__legitimize_mnt (80 samples, 0.02%)</title><rect x="59.7837%" y="629" width="0.0152%" height="15" fill="rgb(232,198,41)" fg:x="315187" fg:w="80"/><text x="60.0337%" y="639.50"></text></g><g><title>__legitimize_path (172 samples, 0.03%)</title><rect x="59.7813%" y="645" width="0.0326%" height="15" fill="rgb(214,125,3)" fg:x="315174" fg:w="172"/><text x="60.0313%" y="655.50"></text></g><g><title>lockref_get_not_dead (79 samples, 0.01%)</title><rect x="59.7989%" y="629" width="0.0150%" height="15" fill="rgb(229,220,28)" fg:x="315267" fg:w="79"/><text x="60.0489%" y="639.50"></text></g><g><title>complete_walk (232 samples, 0.04%)</title><rect x="59.7737%" y="677" width="0.0440%" height="15" fill="rgb(222,64,37)" fg:x="315134" fg:w="232"/><text x="60.0237%" y="687.50"></text></g><g><title>try_to_unlazy (216 samples, 0.04%)</title><rect x="59.7767%" y="661" width="0.0410%" height="15" fill="rgb(249,184,13)" fg:x="315150" fg:w="216"/><text x="60.0267%" y="671.50"></text></g><g><title>link_path_walk.part.0 (134 samples, 0.03%)</title><rect x="59.8177%" y="677" width="0.0254%" height="15" fill="rgb(252,176,6)" fg:x="315366" fg:w="134"/><text x="60.0677%" y="687.50"></text></g><g><title>__fget_light (192 samples, 0.04%)</title><rect x="59.8543%" y="661" width="0.0364%" height="15" fill="rgb(228,153,7)" fg:x="315559" fg:w="192"/><text x="60.1043%" y="671.50"></text></g><g><title>__fget_files (155 samples, 0.03%)</title><rect x="59.8613%" y="645" width="0.0294%" height="15" fill="rgb(242,193,5)" fg:x="315596" fg:w="155"/><text x="60.1113%" y="655.50"></text></g><g><title>path_init (303 samples, 0.06%)</title><rect x="59.8431%" y="677" width="0.0575%" height="15" fill="rgb(232,140,9)" fg:x="315500" fg:w="303"/><text x="60.0931%" y="687.50"></text></g><g><title>filename_parentat (761 samples, 0.14%)</title><rect x="59.7593%" y="709" width="0.1443%" height="15" fill="rgb(213,222,16)" fg:x="315058" fg:w="761"/><text x="60.0093%" y="719.50"></text></g><g><title>path_parentat (709 samples, 0.13%)</title><rect x="59.7691%" y="693" width="0.1345%" height="15" fill="rgb(222,75,50)" fg:x="315110" fg:w="709"/><text x="60.0191%" y="703.50"></text></g><g><title>ihold (370 samples, 0.07%)</title><rect x="59.9036%" y="709" width="0.0702%" height="15" fill="rgb(205,180,2)" fg:x="315819" fg:w="370"/><text x="60.1536%" y="719.50"></text></g><g><title>iput.part.0 (59 samples, 0.01%)</title><rect x="59.9740%" y="709" width="0.0112%" height="15" fill="rgb(216,34,7)" fg:x="316190" fg:w="59"/><text x="60.2240%" y="719.50"></text></g><g><title>kmem_cache_free (148 samples, 0.03%)</title><rect x="59.9852%" y="709" width="0.0281%" height="15" fill="rgb(253,16,32)" fg:x="316249" fg:w="148"/><text x="60.2352%" y="719.50"></text></g><g><title>__mnt_want_write (63 samples, 0.01%)</title><rect x="60.0216%" y="693" width="0.0119%" height="15" fill="rgb(208,97,28)" fg:x="316441" fg:w="63"/><text x="60.2716%" y="703.50"></text></g><g><title>mnt_want_write (103 samples, 0.02%)</title><rect x="60.0178%" y="709" width="0.0195%" height="15" fill="rgb(225,92,11)" fg:x="316421" fg:w="103"/><text x="60.2678%" y="719.50"></text></g><g><title>apparmor_path_unlink (60 samples, 0.01%)</title><rect x="60.0481%" y="693" width="0.0114%" height="15" fill="rgb(243,38,12)" fg:x="316581" fg:w="60"/><text x="60.2981%" y="703.50"></text></g><g><title>security_path_unlink (263 samples, 0.05%)</title><rect x="60.0451%" y="709" width="0.0499%" height="15" fill="rgb(208,139,16)" fg:x="316565" fg:w="263"/><text x="60.2951%" y="719.50"></text></g><g><title>tomoyo_path_unlink (187 samples, 0.04%)</title><rect x="60.0595%" y="693" width="0.0355%" height="15" fill="rgb(227,24,9)" fg:x="316641" fg:w="187"/><text x="60.3095%" y="703.50"></text></g><g><title>tomoyo_path_perm (183 samples, 0.03%)</title><rect x="60.0603%" y="677" width="0.0347%" height="15" fill="rgb(206,62,11)" fg:x="316645" fg:w="183"/><text x="60.3103%" y="687.50"></text></g><g><title>tomoyo_init_request_info (86 samples, 0.02%)</title><rect x="60.0787%" y="661" width="0.0163%" height="15" fill="rgb(228,134,27)" fg:x="316742" fg:w="86"/><text x="60.3287%" y="671.50"></text></g><g><title>up_write (57 samples, 0.01%)</title><rect x="60.0950%" y="709" width="0.0108%" height="15" fill="rgb(205,55,33)" fg:x="316828" fg:w="57"/><text x="60.3450%" y="719.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="60.1331%" y="693" width="0.0101%" height="15" fill="rgb(243,75,43)" fg:x="317029" fg:w="53"/><text x="60.3831%" y="703.50"></text></g><g><title>btrfs_put_transaction (69 samples, 0.01%)</title><rect x="60.1902%" y="661" width="0.0131%" height="15" fill="rgb(223,27,42)" fg:x="317330" fg:w="69"/><text x="60.4402%" y="671.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="60.2132%" y="629" width="0.0218%" height="15" fill="rgb(232,189,33)" fg:x="317451" fg:w="115"/><text x="60.4632%" y="639.50"></text></g><g><title>btrfs_trans_release_metadata (194 samples, 0.04%)</title><rect x="60.2044%" y="661" width="0.0368%" height="15" fill="rgb(210,9,39)" fg:x="317405" fg:w="194"/><text x="60.4544%" y="671.50"></text></g><g><title>btrfs_block_rsv_release (193 samples, 0.04%)</title><rect x="60.2046%" y="645" width="0.0366%" height="15" fill="rgb(242,85,26)" fg:x="317406" fg:w="193"/><text x="60.4546%" y="655.50"></text></g><g><title>__btrfs_end_transaction (568 samples, 0.11%)</title><rect x="60.1515%" y="677" width="0.1077%" height="15" fill="rgb(248,44,4)" fg:x="317126" fg:w="568"/><text x="60.4015%" y="687.50"></text></g><g><title>kmem_cache_free (95 samples, 0.02%)</title><rect x="60.2412%" y="661" width="0.0180%" height="15" fill="rgb(250,96,46)" fg:x="317599" fg:w="95"/><text x="60.4912%" y="671.50"></text></g><g><title>btrfs_tree_unlock (99 samples, 0.02%)</title><rect x="60.3903%" y="613" width="0.0188%" height="15" fill="rgb(229,116,26)" fg:x="318385" fg:w="99"/><text x="60.6403%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (94 samples, 0.02%)</title><rect x="60.4099%" y="613" width="0.0178%" height="15" fill="rgb(246,94,34)" fg:x="318488" fg:w="94"/><text x="60.6599%" y="623.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.01%)</title><rect x="60.4129%" y="597" width="0.0148%" height="15" fill="rgb(251,73,21)" fg:x="318504" fg:w="78"/><text x="60.6629%" y="607.50"></text></g><g><title>btrfs_free_path (361 samples, 0.07%)</title><rect x="60.3787%" y="645" width="0.0685%" height="15" fill="rgb(254,121,25)" fg:x="318324" fg:w="361"/><text x="60.6287%" y="655.50"></text></g><g><title>btrfs_release_path (353 samples, 0.07%)</title><rect x="60.3803%" y="629" width="0.0670%" height="15" fill="rgb(215,161,49)" fg:x="318332" fg:w="353"/><text x="60.6303%" y="639.50"></text></g><g><title>release_extent_buffer (103 samples, 0.02%)</title><rect x="60.4277%" y="613" width="0.0195%" height="15" fill="rgb(221,43,13)" fg:x="318582" fg:w="103"/><text x="60.6777%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (69 samples, 0.01%)</title><rect x="60.4827%" y="597" width="0.0131%" height="15" fill="rgb(249,5,37)" fg:x="318872" fg:w="69"/><text x="60.7327%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (161 samples, 0.03%)</title><rect x="60.4791%" y="613" width="0.0305%" height="15" fill="rgb(226,25,44)" fg:x="318853" fg:w="161"/><text x="60.7291%" y="623.50"></text></g><g><title>btrfs_root_node (73 samples, 0.01%)</title><rect x="60.4958%" y="597" width="0.0138%" height="15" fill="rgb(238,189,16)" fg:x="318941" fg:w="73"/><text x="60.7458%" y="607.50"></text></g><g><title>__btrfs_tree_lock (110 samples, 0.02%)</title><rect x="60.5165%" y="597" width="0.0209%" height="15" fill="rgb(251,186,8)" fg:x="319050" fg:w="110"/><text x="60.7665%" y="607.50"></text></g><g><title>_raw_write_lock (64 samples, 0.01%)</title><rect x="60.5252%" y="581" width="0.0121%" height="15" fill="rgb(254,34,31)" fg:x="319096" fg:w="64"/><text x="60.7752%" y="591.50"></text></g><g><title>btrfs_lock_root_node (184 samples, 0.03%)</title><rect x="60.5142%" y="613" width="0.0349%" height="15" fill="rgb(225,215,27)" fg:x="319038" fg:w="184"/><text x="60.7642%" y="623.50"></text></g><g><title>btrfs_root_node (62 samples, 0.01%)</title><rect x="60.5373%" y="597" width="0.0118%" height="15" fill="rgb(221,192,48)" fg:x="319160" fg:w="62"/><text x="60.7873%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (68 samples, 0.01%)</title><rect x="60.5491%" y="613" width="0.0129%" height="15" fill="rgb(219,137,20)" fg:x="319222" fg:w="68"/><text x="60.7991%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (60 samples, 0.01%)</title><rect x="60.5620%" y="613" width="0.0114%" height="15" fill="rgb(219,84,11)" fg:x="319290" fg:w="60"/><text x="60.8120%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (67 samples, 0.01%)</title><rect x="60.5798%" y="613" width="0.0127%" height="15" fill="rgb(224,10,23)" fg:x="319384" fg:w="67"/><text x="60.8298%" y="623.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="60.5819%" y="597" width="0.0106%" height="15" fill="rgb(248,22,39)" fg:x="319395" fg:w="56"/><text x="60.8319%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (258 samples, 0.05%)</title><rect x="60.5925%" y="613" width="0.0489%" height="15" fill="rgb(212,154,20)" fg:x="319451" fg:w="258"/><text x="60.8425%" y="623.50"></text></g><g><title>__radix_tree_lookup (124 samples, 0.02%)</title><rect x="60.6659%" y="581" width="0.0235%" height="15" fill="rgb(236,199,50)" fg:x="319838" fg:w="124"/><text x="60.9159%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (87 samples, 0.02%)</title><rect x="60.6894%" y="581" width="0.0165%" height="15" fill="rgb(211,9,17)" fg:x="319962" fg:w="87"/><text x="60.9394%" y="591.50"></text></g><g><title>find_extent_buffer (242 samples, 0.05%)</title><rect x="60.6612%" y="597" width="0.0459%" height="15" fill="rgb(243,216,36)" fg:x="319813" fg:w="242"/><text x="60.9112%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (402 samples, 0.08%)</title><rect x="60.6414%" y="613" width="0.0763%" height="15" fill="rgb(250,2,10)" fg:x="319709" fg:w="402"/><text x="60.8914%" y="623.50"></text></g><g><title>read_extent_buffer (56 samples, 0.01%)</title><rect x="60.7071%" y="597" width="0.0106%" height="15" fill="rgb(226,50,48)" fg:x="320055" fg:w="56"/><text x="60.9571%" y="607.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,524 samples, 0.29%)</title><rect x="60.4472%" y="645" width="0.2891%" height="15" fill="rgb(243,81,16)" fg:x="318685" fg:w="1524"/><text x="60.6972%" y="655.50"></text></g><g><title>btrfs_search_slot (1,509 samples, 0.29%)</title><rect x="60.4501%" y="629" width="0.2862%" height="15" fill="rgb(250,14,2)" fg:x="318700" fg:w="1509"/><text x="60.7001%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (61 samples, 0.01%)</title><rect x="60.7756%" y="597" width="0.0116%" height="15" fill="rgb(233,135,29)" fg:x="320416" fg:w="61"/><text x="61.0256%" y="607.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="60.7771%" y="581" width="0.0101%" height="15" fill="rgb(224,64,43)" fg:x="320424" fg:w="53"/><text x="61.0271%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (171 samples, 0.03%)</title><rect x="60.7731%" y="613" width="0.0324%" height="15" fill="rgb(238,84,13)" fg:x="320403" fg:w="171"/><text x="61.0231%" y="623.50"></text></g><g><title>btrfs_root_node (97 samples, 0.02%)</title><rect x="60.7871%" y="597" width="0.0184%" height="15" fill="rgb(253,48,26)" fg:x="320477" fg:w="97"/><text x="61.0371%" y="607.50"></text></g><g><title>__btrfs_tree_lock (117 samples, 0.02%)</title><rect x="60.8120%" y="597" width="0.0222%" height="15" fill="rgb(205,223,31)" fg:x="320608" fg:w="117"/><text x="61.0620%" y="607.50"></text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="60.8230%" y="581" width="0.0112%" height="15" fill="rgb(221,41,32)" fg:x="320666" fg:w="59"/><text x="61.0730%" y="591.50"></text></g><g><title>btrfs_lock_root_node (192 samples, 0.04%)</title><rect x="60.8089%" y="613" width="0.0364%" height="15" fill="rgb(213,158,31)" fg:x="320592" fg:w="192"/><text x="61.0589%" y="623.50"></text></g><g><title>btrfs_root_node (59 samples, 0.01%)</title><rect x="60.8342%" y="597" width="0.0112%" height="15" fill="rgb(245,126,43)" fg:x="320725" fg:w="59"/><text x="61.0842%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (77 samples, 0.01%)</title><rect x="60.8454%" y="613" width="0.0146%" height="15" fill="rgb(227,7,22)" fg:x="320784" fg:w="77"/><text x="61.0954%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (57 samples, 0.01%)</title><rect x="60.8694%" y="613" width="0.0108%" height="15" fill="rgb(252,90,44)" fg:x="320911" fg:w="57"/><text x="61.1194%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (75 samples, 0.01%)</title><rect x="60.8804%" y="613" width="0.0142%" height="15" fill="rgb(253,91,0)" fg:x="320969" fg:w="75"/><text x="61.1304%" y="623.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="60.8821%" y="597" width="0.0125%" height="15" fill="rgb(252,175,49)" fg:x="320978" fg:w="66"/><text x="61.1321%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (298 samples, 0.06%)</title><rect x="60.8947%" y="613" width="0.0565%" height="15" fill="rgb(246,150,1)" fg:x="321044" fg:w="298"/><text x="61.1447%" y="623.50"></text></g><g><title>__radix_tree_lookup (185 samples, 0.04%)</title><rect x="60.9867%" y="581" width="0.0351%" height="15" fill="rgb(241,192,25)" fg:x="321529" fg:w="185"/><text x="61.2367%" y="591.50"></text></g><g><title>find_extent_buffer (378 samples, 0.07%)</title><rect x="60.9753%" y="597" width="0.0717%" height="15" fill="rgb(239,187,11)" fg:x="321469" fg:w="378"/><text x="61.2253%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (133 samples, 0.03%)</title><rect x="61.0218%" y="581" width="0.0252%" height="15" fill="rgb(218,202,51)" fg:x="321714" fg:w="133"/><text x="61.2718%" y="591.50"></text></g><g><title>mark_page_accessed (83 samples, 0.02%)</title><rect x="61.0312%" y="565" width="0.0157%" height="15" fill="rgb(225,176,8)" fg:x="321764" fg:w="83"/><text x="61.2812%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (546 samples, 0.10%)</title><rect x="60.9512%" y="613" width="0.1036%" height="15" fill="rgb(219,122,41)" fg:x="321342" fg:w="546"/><text x="61.2012%" y="623.50"></text></g><g><title>btrfs_search_slot (1,756 samples, 0.33%)</title><rect x="60.7425%" y="629" width="0.3331%" height="15" fill="rgb(248,140,20)" fg:x="320242" fg:w="1756"/><text x="60.9925%" y="639.50"></text></g><g><title>unlock_up (65 samples, 0.01%)</title><rect x="61.0633%" y="613" width="0.0123%" height="15" fill="rgb(245,41,37)" fg:x="321933" fg:w="65"/><text x="61.3133%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (1,825 samples, 0.35%)</title><rect x="60.7363%" y="645" width="0.3462%" height="15" fill="rgb(235,82,39)" fg:x="320209" fg:w="1825"/><text x="60.9863%" y="655.50"></text></g><g><title>btrfs_tree_unlock (109 samples, 0.02%)</title><rect x="61.0935%" y="629" width="0.0207%" height="15" fill="rgb(230,108,42)" fg:x="322092" fg:w="109"/><text x="61.3435%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (111 samples, 0.02%)</title><rect x="61.1149%" y="629" width="0.0211%" height="15" fill="rgb(215,150,50)" fg:x="322205" fg:w="111"/><text x="61.3649%" y="639.50"></text></g><g><title>_raw_spin_lock (92 samples, 0.02%)</title><rect x="61.1185%" y="613" width="0.0175%" height="15" fill="rgb(233,212,5)" fg:x="322224" fg:w="92"/><text x="61.3685%" y="623.50"></text></g><g><title>btrfs_release_path (390 samples, 0.07%)</title><rect x="61.0824%" y="645" width="0.0740%" height="15" fill="rgb(245,80,22)" fg:x="322034" fg:w="390"/><text x="61.3324%" y="655.50"></text></g><g><title>release_extent_buffer (108 samples, 0.02%)</title><rect x="61.1359%" y="629" width="0.0205%" height="15" fill="rgb(238,129,16)" fg:x="322316" fg:w="108"/><text x="61.3859%" y="639.50"></text></g><g><title>kmem_cache_alloc (136 samples, 0.03%)</title><rect x="61.1564%" y="645" width="0.0258%" height="15" fill="rgb(240,19,0)" fg:x="322424" fg:w="136"/><text x="61.4064%" y="655.50"></text></g><g><title>kmem_cache_free (118 samples, 0.02%)</title><rect x="61.1822%" y="645" width="0.0224%" height="15" fill="rgb(232,42,35)" fg:x="322560" fg:w="118"/><text x="61.4322%" y="655.50"></text></g><g><title>mutex_lock (95 samples, 0.02%)</title><rect x="61.2046%" y="645" width="0.0180%" height="15" fill="rgb(223,130,24)" fg:x="322678" fg:w="95"/><text x="61.4546%" y="655.50"></text></g><g><title>btrfs_del_dir_entries_in_log (4,744 samples, 0.90%)</title><rect x="60.3452%" y="661" width="0.8998%" height="15" fill="rgb(237,16,22)" fg:x="318147" fg:w="4744"/><text x="60.5952%" y="671.50"></text></g><g><title>mutex_unlock (118 samples, 0.02%)</title><rect x="61.2226%" y="645" width="0.0224%" height="15" fill="rgb(248,192,20)" fg:x="322773" fg:w="118"/><text x="61.4726%" y="655.50"></text></g><g><title>btrfs_get_32 (142 samples, 0.03%)</title><rect x="61.3592%" y="629" width="0.0269%" height="15" fill="rgb(233,167,2)" fg:x="323493" fg:w="142"/><text x="61.6092%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,200 samples, 0.23%)</title><rect x="61.3861%" y="629" width="0.2276%" height="15" fill="rgb(252,71,44)" fg:x="323635" fg:w="1200"/><text x="61.6361%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (170 samples, 0.03%)</title><rect x="61.5815%" y="613" width="0.0322%" height="15" fill="rgb(238,37,47)" fg:x="324665" fg:w="170"/><text x="61.8315%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (153 samples, 0.03%)</title><rect x="61.6137%" y="629" width="0.0290%" height="15" fill="rgb(214,202,54)" fg:x="324835" fg:w="153"/><text x="61.8637%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="61.6226%" y="613" width="0.0201%" height="15" fill="rgb(254,165,40)" fg:x="324882" fg:w="106"/><text x="61.8726%" y="623.50"></text></g><g><title>btrfs_set_token_32 (994 samples, 0.19%)</title><rect x="61.6428%" y="629" width="0.1885%" height="15" fill="rgb(246,173,38)" fg:x="324988" fg:w="994"/><text x="61.8928%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (178 samples, 0.03%)</title><rect x="61.7975%" y="613" width="0.0338%" height="15" fill="rgb(215,3,27)" fg:x="325804" fg:w="178"/><text x="62.0475%" y="623.50"></text></g><g><title>leaf_space_used (125 samples, 0.02%)</title><rect x="61.8313%" y="629" width="0.0237%" height="15" fill="rgb(239,169,51)" fg:x="325982" fg:w="125"/><text x="62.0813%" y="639.50"></text></g><g><title>btrfs_get_32 (93 samples, 0.02%)</title><rect x="61.8374%" y="613" width="0.0176%" height="15" fill="rgb(212,5,25)" fg:x="326014" fg:w="93"/><text x="62.0874%" y="623.50"></text></g><g><title>memcpy_extent_buffer (241 samples, 0.05%)</title><rect x="61.8550%" y="629" width="0.0457%" height="15" fill="rgb(243,45,17)" fg:x="326107" fg:w="241"/><text x="62.1050%" y="639.50"></text></g><g><title>memmove (168 samples, 0.03%)</title><rect x="61.8688%" y="613" width="0.0319%" height="15" fill="rgb(242,97,9)" fg:x="326180" fg:w="168"/><text x="62.1188%" y="623.50"></text></g><g><title>copy_pages (284 samples, 0.05%)</title><rect x="61.9273%" y="613" width="0.0539%" height="15" fill="rgb(228,71,31)" fg:x="326488" fg:w="284"/><text x="62.1773%" y="623.50"></text></g><g><title>btrfs_del_items (5,868 samples, 1.11%)</title><rect x="61.2607%" y="645" width="1.1130%" height="15" fill="rgb(252,184,16)" fg:x="322974" fg:w="5868"/><text x="61.5107%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,494 samples, 0.47%)</title><rect x="61.9007%" y="629" width="0.4731%" height="15" fill="rgb(236,169,46)" fg:x="326348" fg:w="2494"/><text x="62.1507%" y="639.50"></text></g><g><title>memmove (2,070 samples, 0.39%)</title><rect x="61.9811%" y="613" width="0.3926%" height="15" fill="rgb(207,17,47)" fg:x="326772" fg:w="2070"/><text x="62.2311%" y="623.50"></text></g><g><title>btrfs_get_16 (205 samples, 0.04%)</title><rect x="62.3859%" y="629" width="0.0389%" height="15" fill="rgb(206,201,28)" fg:x="328906" fg:w="205"/><text x="62.6359%" y="639.50"></text></g><g><title>btrfs_get_32 (64 samples, 0.01%)</title><rect x="62.4248%" y="629" width="0.0121%" height="15" fill="rgb(224,184,23)" fg:x="329111" fg:w="64"/><text x="62.6748%" y="639.50"></text></g><g><title>btrfs_find_name_in_backref (457 samples, 0.09%)</title><rect x="62.3738%" y="645" width="0.0867%" height="15" fill="rgb(208,139,48)" fg:x="328842" fg:w="457"/><text x="62.6238%" y="655.50"></text></g><g><title>memcmp_extent_buffer (124 samples, 0.02%)</title><rect x="62.4369%" y="629" width="0.0235%" height="15" fill="rgb(208,130,10)" fg:x="329175" fg:w="124"/><text x="62.6869%" y="639.50"></text></g><g><title>memcmp (67 samples, 0.01%)</title><rect x="62.4477%" y="613" width="0.0127%" height="15" fill="rgb(211,213,45)" fg:x="329232" fg:w="67"/><text x="62.6977%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (236 samples, 0.04%)</title><rect x="62.4743%" y="613" width="0.0448%" height="15" fill="rgb(235,100,30)" fg:x="329372" fg:w="236"/><text x="62.7243%" y="623.50"></text></g><g><title>_raw_spin_lock (187 samples, 0.04%)</title><rect x="62.4836%" y="597" width="0.0355%" height="15" fill="rgb(206,144,31)" fg:x="329421" fg:w="187"/><text x="62.7336%" y="607.50"></text></g><g><title>btrfs_free_path (483 samples, 0.09%)</title><rect x="62.4605%" y="645" width="0.0916%" height="15" fill="rgb(224,200,26)" fg:x="329299" fg:w="483"/><text x="62.7105%" y="655.50"></text></g><g><title>btrfs_release_path (476 samples, 0.09%)</title><rect x="62.4618%" y="629" width="0.0903%" height="15" fill="rgb(247,104,53)" fg:x="329306" fg:w="476"/><text x="62.7118%" y="639.50"></text></g><g><title>release_extent_buffer (174 samples, 0.03%)</title><rect x="62.5191%" y="613" width="0.0330%" height="15" fill="rgb(220,14,17)" fg:x="329608" fg:w="174"/><text x="62.7691%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (86 samples, 0.02%)</title><rect x="62.6247%" y="613" width="0.0163%" height="15" fill="rgb(230,140,40)" fg:x="330165" fg:w="86"/><text x="62.8747%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (167 samples, 0.03%)</title><rect x="62.6230%" y="629" width="0.0317%" height="15" fill="rgb(229,2,41)" fg:x="330156" fg:w="167"/><text x="62.8730%" y="639.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="62.6410%" y="613" width="0.0137%" height="15" fill="rgb(232,89,16)" fg:x="330251" fg:w="72"/><text x="62.8910%" y="623.50"></text></g><g><title>_raw_write_lock (73 samples, 0.01%)</title><rect x="62.6810%" y="597" width="0.0138%" height="15" fill="rgb(247,59,52)" fg:x="330462" fg:w="73"/><text x="62.9310%" y="607.50"></text></g><g><title>__btrfs_tree_lock (192 samples, 0.04%)</title><rect x="62.6689%" y="613" width="0.0364%" height="15" fill="rgb(226,110,21)" fg:x="330398" fg:w="192"/><text x="62.9189%" y="623.50"></text></g><g><title>btrfs_lock_root_node (260 samples, 0.05%)</title><rect x="62.6666%" y="629" width="0.0493%" height="15" fill="rgb(224,176,43)" fg:x="330386" fg:w="260"/><text x="62.9166%" y="639.50"></text></g><g><title>btrfs_root_node (56 samples, 0.01%)</title><rect x="62.7053%" y="613" width="0.0106%" height="15" fill="rgb(221,73,6)" fg:x="330590" fg:w="56"/><text x="62.9553%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (64 samples, 0.01%)</title><rect x="62.7159%" y="629" width="0.0121%" height="15" fill="rgb(232,78,19)" fg:x="330646" fg:w="64"/><text x="62.9659%" y="639.50"></text></g><g><title>_raw_write_lock (112 samples, 0.02%)</title><rect x="62.7338%" y="613" width="0.0212%" height="15" fill="rgb(233,112,48)" fg:x="330740" fg:w="112"/><text x="62.9838%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (178 samples, 0.03%)</title><rect x="62.7281%" y="629" width="0.0338%" height="15" fill="rgb(243,131,47)" fg:x="330710" fg:w="178"/><text x="62.9781%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (66 samples, 0.01%)</title><rect x="62.7618%" y="629" width="0.0125%" height="15" fill="rgb(226,51,1)" fg:x="330888" fg:w="66"/><text x="63.0118%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,280 samples, 0.24%)</title><rect x="62.7744%" y="629" width="0.2428%" height="15" fill="rgb(247,58,7)" fg:x="330954" fg:w="1280"/><text x="63.0244%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (156 samples, 0.03%)</title><rect x="63.0460%" y="613" width="0.0296%" height="15" fill="rgb(209,7,32)" fg:x="332386" fg:w="156"/><text x="63.2960%" y="623.50"></text></g><g><title>verify_parent_transid (130 samples, 0.02%)</title><rect x="63.0509%" y="597" width="0.0247%" height="15" fill="rgb(209,39,41)" fg:x="332412" fg:w="130"/><text x="63.3009%" y="607.50"></text></g><g><title>btrfs_get_64 (144 samples, 0.03%)</title><rect x="63.0756%" y="613" width="0.0273%" height="15" fill="rgb(226,182,46)" fg:x="332542" fg:w="144"/><text x="63.3256%" y="623.50"></text></g><g><title>__radix_tree_lookup (605 samples, 0.11%)</title><rect x="63.1791%" y="597" width="0.1148%" height="15" fill="rgb(230,219,10)" fg:x="333088" fg:w="605"/><text x="63.4291%" y="607.50"></text></g><g><title>check_buffer_tree_ref (59 samples, 0.01%)</title><rect x="63.3039%" y="581" width="0.0112%" height="15" fill="rgb(227,175,30)" fg:x="333746" fg:w="59"/><text x="63.5539%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (348 samples, 0.07%)</title><rect x="63.2947%" y="597" width="0.0660%" height="15" fill="rgb(217,2,50)" fg:x="333697" fg:w="348"/><text x="63.5447%" y="607.50"></text></g><g><title>mark_page_accessed (240 samples, 0.05%)</title><rect x="63.3151%" y="581" width="0.0455%" height="15" fill="rgb(229,160,0)" fg:x="333805" fg:w="240"/><text x="63.5651%" y="591.50"></text></g><g><title>find_extent_buffer (1,318 samples, 0.25%)</title><rect x="63.1128%" y="613" width="0.2500%" height="15" fill="rgb(207,78,37)" fg:x="332738" fg:w="1318"/><text x="63.3628%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,953 samples, 0.37%)</title><rect x="63.0172%" y="629" width="0.3704%" height="15" fill="rgb(225,57,0)" fg:x="332234" fg:w="1953"/><text x="63.2672%" y="639.50"></text></g><g><title>read_extent_buffer (131 samples, 0.02%)</title><rect x="63.3627%" y="613" width="0.0248%" height="15" fill="rgb(232,154,2)" fg:x="334056" fg:w="131"/><text x="63.6127%" y="623.50"></text></g><g><title>btrfs_search_slot (4,528 samples, 0.86%)</title><rect x="62.5684%" y="645" width="0.8589%" height="15" fill="rgb(241,212,25)" fg:x="329868" fg:w="4528"/><text x="62.8184%" y="655.50"></text></g><g><title>unlock_up (170 samples, 0.03%)</title><rect x="63.3950%" y="629" width="0.0322%" height="15" fill="rgb(226,69,20)" fg:x="334226" fg:w="170"/><text x="63.6450%" y="639.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="63.4278%" y="645" width="0.0321%" height="15" fill="rgb(247,184,54)" fg:x="334399" fg:w="169"/><text x="63.6778%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (11,811 samples, 2.24%)</title><rect x="61.2450%" y="661" width="2.2403%" height="15" fill="rgb(210,145,0)" fg:x="322891" fg:w="11811"/><text x="61.4950%" y="671.50">b..</text></g><g><title>kmem_cache_free (134 samples, 0.03%)</title><rect x="63.4599%" y="645" width="0.0254%" height="15" fill="rgb(253,82,12)" fg:x="334568" fg:w="134"/><text x="63.7099%" y="655.50"></text></g><g><title>btrfs_del_items (140 samples, 0.03%)</title><rect x="63.5058%" y="629" width="0.0266%" height="15" fill="rgb(245,42,11)" fg:x="334810" fg:w="140"/><text x="63.7558%" y="639.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="63.5596%" y="581" width="0.0212%" height="15" fill="rgb(219,147,32)" fg:x="335094" fg:w="112"/><text x="63.8096%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (140 samples, 0.03%)</title><rect x="63.5545%" y="597" width="0.0266%" height="15" fill="rgb(246,12,7)" fg:x="335067" fg:w="140"/><text x="63.8045%" y="607.50"></text></g><g><title>btrfs_free_path (403 samples, 0.08%)</title><rect x="63.5333%" y="629" width="0.0764%" height="15" fill="rgb(243,50,9)" fg:x="334955" fg:w="403"/><text x="63.7833%" y="639.50"></text></g><g><title>btrfs_release_path (395 samples, 0.07%)</title><rect x="63.5348%" y="613" width="0.0749%" height="15" fill="rgb(219,149,6)" fg:x="334963" fg:w="395"/><text x="63.7848%" y="623.50"></text></g><g><title>release_extent_buffer (151 samples, 0.03%)</title><rect x="63.5811%" y="597" width="0.0286%" height="15" fill="rgb(241,51,42)" fg:x="335207" fg:w="151"/><text x="63.8311%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (106 samples, 0.02%)</title><rect x="63.6683%" y="597" width="0.0201%" height="15" fill="rgb(226,128,27)" fg:x="335667" fg:w="106"/><text x="63.9183%" y="607.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="63.6751%" y="581" width="0.0133%" height="15" fill="rgb(244,144,4)" fg:x="335703" fg:w="70"/><text x="63.9251%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (255 samples, 0.05%)</title><rect x="63.6645%" y="613" width="0.0484%" height="15" fill="rgb(221,4,13)" fg:x="335647" fg:w="255"/><text x="63.9145%" y="623.50"></text></g><g><title>btrfs_root_node (129 samples, 0.02%)</title><rect x="63.6884%" y="597" width="0.0245%" height="15" fill="rgb(208,170,28)" fg:x="335773" fg:w="129"/><text x="63.9384%" y="607.50"></text></g><g><title>__btrfs_tree_lock (122 samples, 0.02%)</title><rect x="63.7205%" y="597" width="0.0231%" height="15" fill="rgb(226,131,13)" fg:x="335942" fg:w="122"/><text x="63.9705%" y="607.50"></text></g><g><title>_raw_write_lock (64 samples, 0.01%)</title><rect x="63.7315%" y="581" width="0.0121%" height="15" fill="rgb(215,72,41)" fg:x="336000" fg:w="64"/><text x="63.9815%" y="591.50"></text></g><g><title>btrfs_lock_root_node (210 samples, 0.04%)</title><rect x="63.7180%" y="613" width="0.0398%" height="15" fill="rgb(243,108,20)" fg:x="335929" fg:w="210"/><text x="63.9680%" y="623.50"></text></g><g><title>btrfs_root_node (75 samples, 0.01%)</title><rect x="63.7436%" y="597" width="0.0142%" height="15" fill="rgb(230,189,17)" fg:x="336064" fg:w="75"/><text x="63.9936%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (59 samples, 0.01%)</title><rect x="63.7578%" y="613" width="0.0112%" height="15" fill="rgb(220,50,17)" fg:x="336139" fg:w="59"/><text x="64.0078%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (66 samples, 0.01%)</title><rect x="63.7690%" y="613" width="0.0125%" height="15" fill="rgb(248,152,48)" fg:x="336198" fg:w="66"/><text x="64.0190%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (80 samples, 0.02%)</title><rect x="63.7823%" y="613" width="0.0152%" height="15" fill="rgb(244,91,11)" fg:x="336268" fg:w="80"/><text x="64.0323%" y="623.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="63.7842%" y="597" width="0.0133%" height="15" fill="rgb(220,157,5)" fg:x="336278" fg:w="70"/><text x="64.0342%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (889 samples, 0.17%)</title><rect x="63.7975%" y="613" width="0.1686%" height="15" fill="rgb(253,137,8)" fg:x="336348" fg:w="889"/><text x="64.0475%" y="623.50"></text></g><g><title>btrfs_get_64 (72 samples, 0.01%)</title><rect x="63.9868%" y="597" width="0.0137%" height="15" fill="rgb(217,137,51)" fg:x="337346" fg:w="72"/><text x="64.2368%" y="607.50"></text></g><g><title>__radix_tree_lookup (304 samples, 0.06%)</title><rect x="64.0257%" y="581" width="0.0577%" height="15" fill="rgb(218,209,53)" fg:x="337551" fg:w="304"/><text x="64.2757%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (135 samples, 0.03%)</title><rect x="64.0833%" y="581" width="0.0256%" height="15" fill="rgb(249,137,25)" fg:x="337855" fg:w="135"/><text x="64.3333%" y="591.50"></text></g><g><title>mark_page_accessed (85 samples, 0.02%)</title><rect x="64.0928%" y="565" width="0.0161%" height="15" fill="rgb(239,155,26)" fg:x="337905" fg:w="85"/><text x="64.3428%" y="575.50"></text></g><g><title>find_extent_buffer (541 samples, 0.10%)</title><rect x="64.0073%" y="597" width="0.1026%" height="15" fill="rgb(227,85,46)" fg:x="337454" fg:w="541"/><text x="64.2573%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (842 samples, 0.16%)</title><rect x="63.9661%" y="613" width="0.1597%" height="15" fill="rgb(251,107,43)" fg:x="337237" fg:w="842"/><text x="64.2161%" y="623.50"></text></g><g><title>read_extent_buffer (84 samples, 0.02%)</title><rect x="64.1099%" y="597" width="0.0159%" height="15" fill="rgb(234,170,33)" fg:x="337995" fg:w="84"/><text x="64.3599%" y="607.50"></text></g><g><title>release_extent_buffer (62 samples, 0.01%)</title><rect x="64.1258%" y="613" width="0.0118%" height="15" fill="rgb(206,29,35)" fg:x="338079" fg:w="62"/><text x="64.3758%" y="623.50"></text></g><g><title>btrfs_search_slot (2,888 samples, 0.55%)</title><rect x="63.6103%" y="629" width="0.5478%" height="15" fill="rgb(227,138,25)" fg:x="335361" fg:w="2888"/><text x="63.8603%" y="639.50"></text></g><g><title>unlock_up (108 samples, 0.02%)</title><rect x="64.1376%" y="613" width="0.0205%" height="15" fill="rgb(249,131,35)" fg:x="338141" fg:w="108"/><text x="64.3876%" y="623.50"></text></g><g><title>crc32c (57 samples, 0.01%)</title><rect x="64.1581%" y="629" width="0.0108%" height="15" fill="rgb(239,6,40)" fg:x="338249" fg:w="57"/><text x="64.4081%" y="639.50"></text></g><g><title>memset_erms (85 samples, 0.02%)</title><rect x="64.1928%" y="613" width="0.0161%" height="15" fill="rgb(246,136,47)" fg:x="338432" fg:w="85"/><text x="64.4428%" y="623.50"></text></g><g><title>kmem_cache_alloc (251 samples, 0.05%)</title><rect x="64.1689%" y="629" width="0.0476%" height="15" fill="rgb(253,58,26)" fg:x="338306" fg:w="251"/><text x="64.4189%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (3,944 samples, 0.75%)</title><rect x="63.4982%" y="645" width="0.7481%" height="15" fill="rgb(237,141,10)" fg:x="334770" fg:w="3944"/><text x="63.7482%" y="655.50"></text></g><g><title>kmem_cache_free (157 samples, 0.03%)</title><rect x="64.2165%" y="629" width="0.0298%" height="15" fill="rgb(234,156,12)" fg:x="338557" fg:w="157"/><text x="64.4665%" y="639.50"></text></g><g><title>mutex_lock (86 samples, 0.02%)</title><rect x="64.2527%" y="645" width="0.0163%" height="15" fill="rgb(243,224,36)" fg:x="338748" fg:w="86"/><text x="64.5027%" y="655.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,219 samples, 0.80%)</title><rect x="63.4853%" y="661" width="0.8002%" height="15" fill="rgb(205,229,51)" fg:x="334702" fg:w="4219"/><text x="63.7353%" y="671.50"></text></g><g><title>mutex_unlock (87 samples, 0.02%)</title><rect x="64.2690%" y="645" width="0.0165%" height="15" fill="rgb(223,189,4)" fg:x="338834" fg:w="87"/><text x="64.5190%" y="655.50"></text></g><g><title>_find_next_bit.constprop.0 (1,204 samples, 0.23%)</title><rect x="64.5625%" y="581" width="0.2284%" height="15" fill="rgb(249,167,54)" fg:x="340381" fg:w="1204"/><text x="64.8125%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (1,446 samples, 0.27%)</title><rect x="64.5317%" y="597" width="0.2743%" height="15" fill="rgb(218,34,28)" fg:x="340219" fg:w="1446"/><text x="64.7817%" y="607.50"></text></g><g><title>find_next_zero_bit (78 samples, 0.01%)</title><rect x="64.7912%" y="581" width="0.0148%" height="15" fill="rgb(232,109,42)" fg:x="341587" fg:w="78"/><text x="65.0412%" y="591.50"></text></g><g><title>__btrfs_add_free_space (1,461 samples, 0.28%)</title><rect x="64.5302%" y="613" width="0.2771%" height="15" fill="rgb(248,214,46)" fg:x="340211" fg:w="1461"/><text x="64.7802%" y="623.50"></text></g><g><title>btrfs_free_tree_block (1,525 samples, 0.29%)</title><rect x="64.5300%" y="629" width="0.2893%" height="15" fill="rgb(244,216,40)" fg:x="340210" fg:w="1525"/><text x="64.7800%" y="639.50"></text></g><g><title>btrfs_del_leaf (1,540 samples, 0.29%)</title><rect x="64.5296%" y="645" width="0.2921%" height="15" fill="rgb(231,226,31)" fg:x="340208" fg:w="1540"/><text x="64.7796%" y="655.50"></text></g><g><title>btrfs_get_32 (152 samples, 0.03%)</title><rect x="64.8217%" y="645" width="0.0288%" height="15" fill="rgb(238,38,43)" fg:x="341748" fg:w="152"/><text x="65.0717%" y="655.50"></text></g><g><title>btrfs_get_token_32 (3,583 samples, 0.68%)</title><rect x="64.8506%" y="645" width="0.6796%" height="15" fill="rgb(208,88,43)" fg:x="341900" fg:w="3583"/><text x="65.1006%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (509 samples, 0.10%)</title><rect x="65.4336%" y="629" width="0.0965%" height="15" fill="rgb(205,136,37)" fg:x="344974" fg:w="509"/><text x="65.6836%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (163 samples, 0.03%)</title><rect x="65.5302%" y="645" width="0.0309%" height="15" fill="rgb(237,34,14)" fg:x="345483" fg:w="163"/><text x="65.7802%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (97 samples, 0.02%)</title><rect x="65.5427%" y="629" width="0.0184%" height="15" fill="rgb(236,193,44)" fg:x="345549" fg:w="97"/><text x="65.7927%" y="639.50"></text></g><g><title>btrfs_set_token_32 (3,314 samples, 0.63%)</title><rect x="65.5619%" y="645" width="0.6286%" height="15" fill="rgb(231,48,10)" fg:x="345650" fg:w="3314"/><text x="65.8119%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (659 samples, 0.12%)</title><rect x="66.0655%" y="629" width="0.1250%" height="15" fill="rgb(213,141,34)" fg:x="348305" fg:w="659"/><text x="66.3155%" y="639.50"></text></g><g><title>leaf_space_used (144 samples, 0.03%)</title><rect x="66.1925%" y="645" width="0.0273%" height="15" fill="rgb(249,130,34)" fg:x="348975" fg:w="144"/><text x="66.4425%" y="655.50"></text></g><g><title>btrfs_get_32 (99 samples, 0.02%)</title><rect x="66.2011%" y="629" width="0.0188%" height="15" fill="rgb(219,42,41)" fg:x="349020" fg:w="99"/><text x="66.4511%" y="639.50"></text></g><g><title>copy_pages (77 samples, 0.01%)</title><rect x="66.2322%" y="629" width="0.0146%" height="15" fill="rgb(224,100,54)" fg:x="349184" fg:w="77"/><text x="66.4822%" y="639.50"></text></g><g><title>memcpy_extent_buffer (634 samples, 0.12%)</title><rect x="66.2199%" y="645" width="0.1203%" height="15" fill="rgb(229,200,27)" fg:x="349119" fg:w="634"/><text x="66.4699%" y="655.50"></text></g><g><title>memmove (492 samples, 0.09%)</title><rect x="66.2468%" y="629" width="0.0933%" height="15" fill="rgb(217,118,10)" fg:x="349261" fg:w="492"/><text x="66.4968%" y="639.50"></text></g><g><title>copy_pages (192 samples, 0.04%)</title><rect x="66.3591%" y="629" width="0.0364%" height="15" fill="rgb(206,22,3)" fg:x="349853" fg:w="192"/><text x="66.6091%" y="639.50"></text></g><g><title>memmove_extent_buffer (1,825 samples, 0.35%)</title><rect x="66.3401%" y="645" width="0.3462%" height="15" fill="rgb(232,163,46)" fg:x="349753" fg:w="1825"/><text x="66.5901%" y="655.50"></text></g><g><title>memmove (1,533 samples, 0.29%)</title><rect x="66.3955%" y="629" width="0.2908%" height="15" fill="rgb(206,95,13)" fg:x="350045" fg:w="1533"/><text x="66.6455%" y="639.50"></text></g><g><title>__push_leaf_left (99 samples, 0.02%)</title><rect x="66.6876%" y="629" width="0.0188%" height="15" fill="rgb(253,154,18)" fg:x="351585" fg:w="99"/><text x="66.9376%" y="639.50"></text></g><g><title>push_leaf_left (172 samples, 0.03%)</title><rect x="66.6863%" y="645" width="0.0326%" height="15" fill="rgb(219,32,23)" fg:x="351578" fg:w="172"/><text x="66.9363%" y="655.50"></text></g><g><title>__push_leaf_right (114 samples, 0.02%)</title><rect x="66.7198%" y="629" width="0.0216%" height="15" fill="rgb(230,191,45)" fg:x="351755" fg:w="114"/><text x="66.9698%" y="639.50"></text></g><g><title>push_leaf_right (151 samples, 0.03%)</title><rect x="66.7189%" y="645" width="0.0286%" height="15" fill="rgb(229,64,36)" fg:x="351750" fg:w="151"/><text x="66.9689%" y="655.50"></text></g><g><title>btrfs_del_items (12,993 samples, 2.46%)</title><rect x="64.2855%" y="661" width="2.4645%" height="15" fill="rgb(205,129,25)" fg:x="338921" fg:w="12993"/><text x="64.5355%" y="671.50">bt..</text></g><g><title>btrfs_comp_cpu_keys (82 samples, 0.02%)</title><rect x="66.7972%" y="629" width="0.0156%" height="15" fill="rgb(254,112,7)" fg:x="352163" fg:w="82"/><text x="67.0472%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (373 samples, 0.07%)</title><rect x="66.7601%" y="645" width="0.0707%" height="15" fill="rgb(226,53,48)" fg:x="351967" fg:w="373"/><text x="67.0101%" y="655.50"></text></g><g><title>rb_insert_color (95 samples, 0.02%)</title><rect x="66.8128%" y="629" width="0.0180%" height="15" fill="rgb(214,153,38)" fg:x="352245" fg:w="95"/><text x="67.0628%" y="639.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="66.8498%" y="629" width="0.0102%" height="15" fill="rgb(243,101,7)" fg:x="352440" fg:w="54"/><text x="67.0998%" y="639.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="66.8600%" y="629" width="0.0114%" height="15" fill="rgb(240,140,22)" fg:x="352494" fg:w="60"/><text x="67.1100%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (290 samples, 0.06%)</title><rect x="66.8308%" y="645" width="0.0550%" height="15" fill="rgb(235,114,2)" fg:x="352340" fg:w="290"/><text x="67.0808%" y="655.50"></text></g><g><title>mutex_unlock (76 samples, 0.01%)</title><rect x="66.8714%" y="629" width="0.0144%" height="15" fill="rgb(242,59,12)" fg:x="352554" fg:w="76"/><text x="67.1214%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (770 samples, 0.15%)</title><rect x="66.8858%" y="645" width="0.1461%" height="15" fill="rgb(252,134,9)" fg:x="352630" fg:w="770"/><text x="67.1358%" y="655.50"></text></g><g><title>mutex_spin_on_owner (762 samples, 0.14%)</title><rect x="66.8873%" y="629" width="0.1445%" height="15" fill="rgb(236,4,44)" fg:x="352638" fg:w="762"/><text x="67.1373%" y="639.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (226 samples, 0.04%)</title><rect x="67.0320%" y="645" width="0.0429%" height="15" fill="rgb(254,172,41)" fg:x="353401" fg:w="226"/><text x="67.2820%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (198 samples, 0.04%)</title><rect x="67.0374%" y="629" width="0.0376%" height="15" fill="rgb(244,63,20)" fg:x="353429" fg:w="198"/><text x="67.2874%" y="639.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.03%)</title><rect x="67.0423%" y="613" width="0.0326%" height="15" fill="rgb(250,73,31)" fg:x="353455" fg:w="172"/><text x="67.2923%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (104 samples, 0.02%)</title><rect x="67.0749%" y="645" width="0.0197%" height="15" fill="rgb(241,38,36)" fg:x="353627" fg:w="104"/><text x="67.3249%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (89 samples, 0.02%)</title><rect x="67.0778%" y="629" width="0.0169%" height="15" fill="rgb(245,211,2)" fg:x="353642" fg:w="89"/><text x="67.3278%" y="639.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="67.1214%" y="629" width="0.0104%" height="15" fill="rgb(206,120,28)" fg:x="353872" fg:w="55"/><text x="67.3714%" y="639.50"></text></g><g><title>kmem_cache_alloc_trace (229 samples, 0.04%)</title><rect x="67.0946%" y="645" width="0.0434%" height="15" fill="rgb(211,59,34)" fg:x="353731" fg:w="229"/><text x="67.3446%" y="655.50"></text></g><g><title>mutex_lock (121 samples, 0.02%)</title><rect x="67.1381%" y="645" width="0.0230%" height="15" fill="rgb(233,168,5)" fg:x="353960" fg:w="121"/><text x="67.3881%" y="655.50"></text></g><g><title>btrfs_delete_delayed_dir_index (2,275 samples, 0.43%)</title><rect x="66.7500%" y="661" width="0.4315%" height="15" fill="rgb(234,33,13)" fg:x="351914" fg:w="2275"/><text x="67.0000%" y="671.50"></text></g><g><title>mutex_unlock (108 samples, 0.02%)</title><rect x="67.1610%" y="645" width="0.0205%" height="15" fill="rgb(231,150,26)" fg:x="354081" fg:w="108"/><text x="67.4110%" y="655.50"></text></g><g><title>btrfs_get_16 (75 samples, 0.01%)</title><rect x="67.1910%" y="645" width="0.0142%" height="15" fill="rgb(217,191,4)" fg:x="354239" fg:w="75"/><text x="67.4410%" y="655.50"></text></g><g><title>btrfs_delete_one_dir_name (177 samples, 0.03%)</title><rect x="67.1815%" y="661" width="0.0336%" height="15" fill="rgb(246,198,38)" fg:x="354189" fg:w="177"/><text x="67.4315%" y="671.50"></text></g><g><title>btrfs_get_16 (113 samples, 0.02%)</title><rect x="67.2433%" y="629" width="0.0214%" height="15" fill="rgb(245,64,37)" fg:x="354515" fg:w="113"/><text x="67.4933%" y="639.50"></text></g><g><title>btrfs_get_32 (86 samples, 0.02%)</title><rect x="67.2648%" y="629" width="0.0163%" height="15" fill="rgb(250,30,36)" fg:x="354628" fg:w="86"/><text x="67.5148%" y="639.50"></text></g><g><title>btrfs_match_dir_item_name (462 samples, 0.09%)</title><rect x="67.2287%" y="645" width="0.0876%" height="15" fill="rgb(217,86,53)" fg:x="354438" fg:w="462"/><text x="67.4787%" y="655.50"></text></g><g><title>memcmp_extent_buffer (186 samples, 0.04%)</title><rect x="67.2811%" y="629" width="0.0353%" height="15" fill="rgb(228,157,16)" fg:x="354714" fg:w="186"/><text x="67.5311%" y="639.50"></text></g><g><title>memcmp (98 samples, 0.02%)</title><rect x="67.2978%" y="613" width="0.0186%" height="15" fill="rgb(217,59,31)" fg:x="354802" fg:w="98"/><text x="67.5478%" y="623.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="67.3816%" y="597" width="0.0106%" height="15" fill="rgb(237,138,41)" fg:x="355244" fg:w="56"/><text x="67.6316%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (89 samples, 0.02%)</title><rect x="67.3756%" y="613" width="0.0169%" height="15" fill="rgb(227,91,49)" fg:x="355212" fg:w="89"/><text x="67.6256%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (250 samples, 0.05%)</title><rect x="67.3727%" y="629" width="0.0474%" height="15" fill="rgb(247,21,44)" fg:x="355197" fg:w="250"/><text x="67.6227%" y="639.50"></text></g><g><title>btrfs_root_node (146 samples, 0.03%)</title><rect x="67.3924%" y="613" width="0.0277%" height="15" fill="rgb(219,210,51)" fg:x="355301" fg:w="146"/><text x="67.6424%" y="623.50"></text></g><g><title>__btrfs_tree_lock (139 samples, 0.03%)</title><rect x="67.4338%" y="613" width="0.0264%" height="15" fill="rgb(209,140,6)" fg:x="355519" fg:w="139"/><text x="67.6838%" y="623.50"></text></g><g><title>btrfs_lock_root_node (214 samples, 0.04%)</title><rect x="67.4309%" y="629" width="0.0406%" height="15" fill="rgb(221,188,24)" fg:x="355504" fg:w="214"/><text x="67.6809%" y="639.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="67.4601%" y="613" width="0.0114%" height="15" fill="rgb(232,154,20)" fg:x="355658" fg:w="60"/><text x="67.7101%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (60 samples, 0.01%)</title><rect x="67.4715%" y="629" width="0.0114%" height="15" fill="rgb(244,137,50)" fg:x="355718" fg:w="60"/><text x="67.7215%" y="639.50"></text></g><g><title>_raw_write_lock (90 samples, 0.02%)</title><rect x="67.4880%" y="613" width="0.0171%" height="15" fill="rgb(225,185,43)" fg:x="355805" fg:w="90"/><text x="67.7380%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (227 samples, 0.04%)</title><rect x="67.4829%" y="629" width="0.0431%" height="15" fill="rgb(213,205,38)" fg:x="355778" fg:w="227"/><text x="67.7329%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (110 samples, 0.02%)</title><rect x="67.5051%" y="613" width="0.0209%" height="15" fill="rgb(236,73,12)" fg:x="355895" fg:w="110"/><text x="67.7551%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (98 samples, 0.02%)</title><rect x="67.5260%" y="629" width="0.0186%" height="15" fill="rgb(235,219,13)" fg:x="356005" fg:w="98"/><text x="67.7760%" y="639.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="67.5320%" y="613" width="0.0125%" height="15" fill="rgb(218,59,36)" fg:x="356037" fg:w="66"/><text x="67.7820%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (1,137 samples, 0.22%)</title><rect x="67.5446%" y="629" width="0.2157%" height="15" fill="rgb(205,110,39)" fg:x="356103" fg:w="1137"/><text x="67.7946%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (80 samples, 0.02%)</title><rect x="67.7928%" y="613" width="0.0152%" height="15" fill="rgb(218,206,42)" fg:x="357412" fg:w="80"/><text x="68.0428%" y="623.50"></text></g><g><title>verify_parent_transid (53 samples, 0.01%)</title><rect x="67.7980%" y="597" width="0.0101%" height="15" fill="rgb(248,125,24)" fg:x="357439" fg:w="53"/><text x="68.0480%" y="607.50"></text></g><g><title>btrfs_get_64 (121 samples, 0.02%)</title><rect x="67.8080%" y="613" width="0.0230%" height="15" fill="rgb(242,28,27)" fg:x="357492" fg:w="121"/><text x="68.0580%" y="623.50"></text></g><g><title>btrfs_verify_level_key (54 samples, 0.01%)</title><rect x="67.8329%" y="613" width="0.0102%" height="15" fill="rgb(216,228,15)" fg:x="357623" fg:w="54"/><text x="68.0829%" y="623.50"></text></g><g><title>__radix_tree_lookup (590 samples, 0.11%)</title><rect x="67.8822%" y="597" width="0.1119%" height="15" fill="rgb(235,116,46)" fg:x="357883" fg:w="590"/><text x="68.1322%" y="607.50"></text></g><g><title>check_buffer_tree_ref (69 samples, 0.01%)</title><rect x="68.0053%" y="581" width="0.0131%" height="15" fill="rgb(224,18,32)" fg:x="358532" fg:w="69"/><text x="68.2553%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (291 samples, 0.06%)</title><rect x="67.9943%" y="597" width="0.0552%" height="15" fill="rgb(252,5,12)" fg:x="358474" fg:w="291"/><text x="68.2443%" y="607.50"></text></g><g><title>mark_page_accessed (164 samples, 0.03%)</title><rect x="68.0184%" y="581" width="0.0311%" height="15" fill="rgb(251,36,5)" fg:x="358601" fg:w="164"/><text x="68.2684%" y="591.50"></text></g><g><title>find_extent_buffer (1,094 samples, 0.21%)</title><rect x="67.8431%" y="613" width="0.2075%" height="15" fill="rgb(217,53,14)" fg:x="357677" fg:w="1094"/><text x="68.0931%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,712 samples, 0.32%)</title><rect x="67.7602%" y="629" width="0.3247%" height="15" fill="rgb(215,86,45)" fg:x="357240" fg:w="1712"/><text x="68.0102%" y="639.50"></text></g><g><title>read_extent_buffer (181 samples, 0.03%)</title><rect x="68.0506%" y="613" width="0.0343%" height="15" fill="rgb(242,169,11)" fg:x="358771" fg:w="181"/><text x="68.3006%" y="623.50"></text></g><g><title>release_extent_buffer (66 samples, 0.01%)</title><rect x="68.0849%" y="629" width="0.0125%" height="15" fill="rgb(211,213,45)" fg:x="358952" fg:w="66"/><text x="68.3349%" y="639.50"></text></g><g><title>btrfs_search_slot (4,302 samples, 0.82%)</title><rect x="67.3164%" y="645" width="0.8160%" height="15" fill="rgb(205,88,11)" fg:x="354900" fg:w="4302"/><text x="67.5664%" y="655.50"></text></g><g><title>unlock_up (184 samples, 0.03%)</title><rect x="68.0975%" y="629" width="0.0349%" height="15" fill="rgb(252,69,26)" fg:x="359018" fg:w="184"/><text x="68.3475%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (4,850 samples, 0.92%)</title><rect x="67.2208%" y="661" width="0.9199%" height="15" fill="rgb(246,123,37)" fg:x="354396" fg:w="4850"/><text x="67.4708%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (234 samples, 0.04%)</title><rect x="68.1540%" y="645" width="0.0444%" height="15" fill="rgb(212,205,5)" fg:x="359316" fg:w="234"/><text x="68.4040%" y="655.50"></text></g><g><title>_raw_spin_lock (164 samples, 0.03%)</title><rect x="68.1673%" y="629" width="0.0311%" height="15" fill="rgb(253,148,0)" fg:x="359386" fg:w="164"/><text x="68.4173%" y="639.50"></text></g><g><title>btrfs_release_path (494 samples, 0.09%)</title><rect x="68.1407%" y="661" width="0.0937%" height="15" fill="rgb(239,22,4)" fg:x="359246" fg:w="494"/><text x="68.3907%" y="671.50"></text></g><g><title>release_extent_buffer (190 samples, 0.04%)</title><rect x="68.1984%" y="645" width="0.0360%" height="15" fill="rgb(226,26,53)" fg:x="359550" fg:w="190"/><text x="68.4484%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="68.2756%" y="613" width="0.0123%" height="15" fill="rgb(225,229,45)" fg:x="359957" fg:w="65"/><text x="68.5256%" y="623.50"></text></g><g><title>mutex_lock (80 samples, 0.02%)</title><rect x="68.2879%" y="613" width="0.0152%" height="15" fill="rgb(220,60,37)" fg:x="360022" fg:w="80"/><text x="68.5379%" y="623.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (302 samples, 0.06%)</title><rect x="68.2568%" y="629" width="0.0573%" height="15" fill="rgb(217,180,35)" fg:x="359858" fg:w="302"/><text x="68.5068%" y="639.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="68.3031%" y="613" width="0.0110%" height="15" fill="rgb(229,7,53)" fg:x="360102" fg:w="58"/><text x="68.5531%" y="623.50"></text></g><g><title>__mutex_lock.constprop.0 (65 samples, 0.01%)</title><rect x="68.3141%" y="629" width="0.0123%" height="15" fill="rgb(254,137,3)" fg:x="360160" fg:w="65"/><text x="68.5641%" y="639.50"></text></g><g><title>mutex_spin_on_owner (65 samples, 0.01%)</title><rect x="68.3141%" y="613" width="0.0123%" height="15" fill="rgb(215,140,41)" fg:x="360160" fg:w="65"/><text x="68.5641%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (92 samples, 0.02%)</title><rect x="68.3264%" y="629" width="0.0175%" height="15" fill="rgb(250,80,15)" fg:x="360225" fg:w="92"/><text x="68.5764%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (83 samples, 0.02%)</title><rect x="68.3281%" y="613" width="0.0157%" height="15" fill="rgb(252,191,6)" fg:x="360234" fg:w="83"/><text x="68.5781%" y="623.50"></text></g><g><title>inode_get_bytes (77 samples, 0.01%)</title><rect x="68.3514%" y="613" width="0.0146%" height="15" fill="rgb(246,217,18)" fg:x="360357" fg:w="77"/><text x="68.6014%" y="623.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="68.3533%" y="597" width="0.0127%" height="15" fill="rgb(223,93,7)" fg:x="360367" fg:w="67"/><text x="68.6033%" y="607.50"></text></g><g><title>fill_stack_inode_item (149 samples, 0.03%)</title><rect x="68.3439%" y="629" width="0.0283%" height="15" fill="rgb(225,55,52)" fg:x="360317" fg:w="149"/><text x="68.5939%" y="639.50"></text></g><g><title>mutex_lock (69 samples, 0.01%)</title><rect x="68.3721%" y="629" width="0.0131%" height="15" fill="rgb(240,31,24)" fg:x="360466" fg:w="69"/><text x="68.6221%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (813 samples, 0.15%)</title><rect x="68.2494%" y="645" width="0.1542%" height="15" fill="rgb(205,56,52)" fg:x="359819" fg:w="813"/><text x="68.4994%" y="655.50"></text></g><g><title>mutex_unlock (97 samples, 0.02%)</title><rect x="68.3852%" y="629" width="0.0184%" height="15" fill="rgb(246,146,12)" fg:x="360535" fg:w="97"/><text x="68.6352%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="68.4053%" y="629" width="0.0119%" height="15" fill="rgb(239,84,36)" fg:x="360641" fg:w="63"/><text x="68.6553%" y="639.50"></text></g><g><title>btrfs_update_inode (1,072 samples, 0.20%)</title><rect x="68.2344%" y="661" width="0.2033%" height="15" fill="rgb(207,41,40)" fg:x="359740" fg:w="1072"/><text x="68.4844%" y="671.50"></text></g><g><title>btrfs_update_root_times (180 samples, 0.03%)</title><rect x="68.4036%" y="645" width="0.0341%" height="15" fill="rgb(241,179,25)" fg:x="360632" fg:w="180"/><text x="68.6536%" y="655.50"></text></g><g><title>ktime_get_real_ts64 (108 samples, 0.02%)</title><rect x="68.4173%" y="629" width="0.0205%" height="15" fill="rgb(210,0,34)" fg:x="360704" fg:w="108"/><text x="68.6673%" y="639.50"></text></g><g><title>read_tsc (73 samples, 0.01%)</title><rect x="68.4239%" y="613" width="0.0138%" height="15" fill="rgb(225,217,29)" fg:x="360739" fg:w="73"/><text x="68.6739%" y="623.50"></text></g><g><title>current_time (56 samples, 0.01%)</title><rect x="68.4377%" y="661" width="0.0106%" height="15" fill="rgb(216,191,38)" fg:x="360812" fg:w="56"/><text x="68.6877%" y="671.50"></text></g><g><title>kmem_cache_alloc (160 samples, 0.03%)</title><rect x="68.4484%" y="661" width="0.0303%" height="15" fill="rgb(232,140,52)" fg:x="360868" fg:w="160"/><text x="68.6984%" y="671.50"></text></g><g><title>__btrfs_unlink_inode (43,467 samples, 8.24%)</title><rect x="60.2593%" y="677" width="8.2447%" height="15" fill="rgb(223,158,51)" fg:x="317694" fg:w="43467"/><text x="60.5093%" y="687.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (133 samples, 0.03%)</title><rect x="68.4787%" y="661" width="0.0252%" height="15" fill="rgb(235,29,51)" fg:x="361028" fg:w="133"/><text x="68.7287%" y="671.50"></text></g><g><title>btrfs_balance_delayed_items (77 samples, 0.01%)</title><rect x="68.5115%" y="661" width="0.0146%" height="15" fill="rgb(215,181,18)" fg:x="361201" fg:w="77"/><text x="68.7615%" y="671.50"></text></g><g><title>ttwu_do_activate (82 samples, 0.02%)</title><rect x="68.5442%" y="613" width="0.0156%" height="15" fill="rgb(227,125,34)" fg:x="361373" fg:w="82"/><text x="68.7942%" y="623.50"></text></g><g><title>btrfs_btree_balance_dirty (312 samples, 0.06%)</title><rect x="68.5039%" y="677" width="0.0592%" height="15" fill="rgb(230,197,49)" fg:x="361161" fg:w="312"/><text x="68.7539%" y="687.50"></text></g><g><title>queue_work_on (183 samples, 0.03%)</title><rect x="68.5284%" y="661" width="0.0347%" height="15" fill="rgb(239,141,16)" fg:x="361290" fg:w="183"/><text x="68.7784%" y="671.50"></text></g><g><title>__queue_work (175 samples, 0.03%)</title><rect x="68.5299%" y="645" width="0.0332%" height="15" fill="rgb(225,105,43)" fg:x="361298" fg:w="175"/><text x="68.7799%" y="655.50"></text></g><g><title>try_to_wake_up (137 samples, 0.03%)</title><rect x="68.5371%" y="629" width="0.0260%" height="15" fill="rgb(214,131,14)" fg:x="361336" fg:w="137"/><text x="68.7871%" y="639.50"></text></g><g><title>mutex_lock (282 samples, 0.05%)</title><rect x="68.5682%" y="661" width="0.0535%" height="15" fill="rgb(229,177,11)" fg:x="361500" fg:w="282"/><text x="68.8182%" y="671.50"></text></g><g><title>btrfs_record_unlink_dir (417 samples, 0.08%)</title><rect x="68.5639%" y="677" width="0.0791%" height="15" fill="rgb(231,180,14)" fg:x="361477" fg:w="417"/><text x="68.8139%" y="687.50"></text></g><g><title>mutex_unlock (112 samples, 0.02%)</title><rect x="68.6217%" y="661" width="0.0212%" height="15" fill="rgb(232,88,2)" fg:x="361782" fg:w="112"/><text x="68.8717%" y="671.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="68.7416%" y="629" width="0.0135%" height="15" fill="rgb(205,220,8)" fg:x="362414" fg:w="71"/><text x="68.9916%" y="639.50"></text></g><g><title>mutex_lock (72 samples, 0.01%)</title><rect x="68.7551%" y="629" width="0.0137%" height="15" fill="rgb(225,23,53)" fg:x="362485" fg:w="72"/><text x="69.0051%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (429 samples, 0.08%)</title><rect x="68.6993%" y="645" width="0.0814%" height="15" fill="rgb(213,62,29)" fg:x="362191" fg:w="429"/><text x="68.9493%" y="655.50"></text></g><g><title>mutex_unlock (63 samples, 0.01%)</title><rect x="68.7687%" y="629" width="0.0119%" height="15" fill="rgb(227,75,7)" fg:x="362557" fg:w="63"/><text x="69.0187%" y="639.50"></text></g><g><title>btrfs_block_rsv_migrate (192 samples, 0.04%)</title><rect x="68.7809%" y="645" width="0.0364%" height="15" fill="rgb(207,105,14)" fg:x="362621" fg:w="192"/><text x="69.0309%" y="655.50"></text></g><g><title>_raw_spin_lock (156 samples, 0.03%)</title><rect x="68.7877%" y="629" width="0.0296%" height="15" fill="rgb(245,62,29)" fg:x="362657" fg:w="156"/><text x="69.0377%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (513 samples, 0.10%)</title><rect x="68.8173%" y="645" width="0.0973%" height="15" fill="rgb(236,202,4)" fg:x="362813" fg:w="513"/><text x="69.0673%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (492 samples, 0.09%)</title><rect x="68.8213%" y="629" width="0.0933%" height="15" fill="rgb(250,67,1)" fg:x="362834" fg:w="492"/><text x="69.0713%" y="639.50"></text></g><g><title>inode_get_bytes (75 samples, 0.01%)</title><rect x="68.9246%" y="629" width="0.0142%" height="15" fill="rgb(253,115,44)" fg:x="363379" fg:w="75"/><text x="69.1746%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="68.9269%" y="613" width="0.0119%" height="15" fill="rgb(251,139,18)" fg:x="363391" fg:w="63"/><text x="69.1769%" y="623.50"></text></g><g><title>fill_stack_inode_item (164 samples, 0.03%)</title><rect x="68.9146%" y="645" width="0.0311%" height="15" fill="rgb(218,22,32)" fg:x="363326" fg:w="164"/><text x="69.1646%" y="655.50"></text></g><g><title>mutex_lock (103 samples, 0.02%)</title><rect x="68.9457%" y="645" width="0.0195%" height="15" fill="rgb(243,53,5)" fg:x="363490" fg:w="103"/><text x="69.1957%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (1,652 samples, 0.31%)</title><rect x="68.6595%" y="661" width="0.3133%" height="15" fill="rgb(227,56,16)" fg:x="361981" fg:w="1652"/><text x="68.9095%" y="671.50"></text></g><g><title>btrfs_update_inode (1,925 samples, 0.37%)</title><rect x="68.6435%" y="677" width="0.3651%" height="15" fill="rgb(245,53,0)" fg:x="361897" fg:w="1925"/><text x="68.8935%" y="687.50"></text></g><g><title>btrfs_update_root_times (189 samples, 0.04%)</title><rect x="68.9728%" y="661" width="0.0358%" height="15" fill="rgb(216,170,35)" fg:x="363633" fg:w="189"/><text x="69.2228%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (129 samples, 0.02%)</title><rect x="68.9842%" y="645" width="0.0245%" height="15" fill="rgb(211,200,8)" fg:x="363693" fg:w="129"/><text x="69.2342%" y="655.50"></text></g><g><title>read_tsc (84 samples, 0.02%)</title><rect x="68.9927%" y="629" width="0.0159%" height="15" fill="rgb(228,204,44)" fg:x="363738" fg:w="84"/><text x="69.2427%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="69.0438%" y="645" width="0.0119%" height="15" fill="rgb(214,121,17)" fg:x="364007" fg:w="63"/><text x="69.2938%" y="655.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="69.0724%" y="613" width="0.0220%" height="15" fill="rgb(233,64,38)" fg:x="364158" fg:w="116"/><text x="69.3224%" y="623.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="69.1623%" y="581" width="0.0186%" height="15" fill="rgb(253,54,19)" fg:x="364632" fg:w="98"/><text x="69.4123%" y="591.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (457 samples, 0.09%)</title><rect x="69.0944%" y="613" width="0.0867%" height="15" fill="rgb(253,94,18)" fg:x="364274" fg:w="457"/><text x="69.3444%" y="623.50"></text></g><g><title>btrfs_reduce_alloc_profile (250 samples, 0.05%)</title><rect x="69.1337%" y="597" width="0.0474%" height="15" fill="rgb(227,57,52)" fg:x="364481" fg:w="250"/><text x="69.3837%" y="607.50"></text></g><g><title>__reserve_bytes (879 samples, 0.17%)</title><rect x="69.0591%" y="629" width="0.1667%" height="15" fill="rgb(230,228,50)" fg:x="364088" fg:w="879"/><text x="69.3091%" y="639.50"></text></g><g><title>calc_available_free_space.isra.0 (236 samples, 0.04%)</title><rect x="69.1811%" y="613" width="0.0448%" height="15" fill="rgb(217,205,27)" fg:x="364731" fg:w="236"/><text x="69.4311%" y="623.50"></text></g><g><title>btrfs_reduce_alloc_profile (142 samples, 0.03%)</title><rect x="69.1989%" y="597" width="0.0269%" height="15" fill="rgb(252,71,50)" fg:x="364825" fg:w="142"/><text x="69.4489%" y="607.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="69.2139%" y="581" width="0.0119%" height="15" fill="rgb(209,86,4)" fg:x="364904" fg:w="63"/><text x="69.4639%" y="591.50"></text></g><g><title>btrfs_block_rsv_add (968 samples, 0.18%)</title><rect x="69.0424%" y="661" width="0.1836%" height="15" fill="rgb(229,94,0)" fg:x="364000" fg:w="968"/><text x="69.2924%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (898 samples, 0.17%)</title><rect x="69.0557%" y="645" width="0.1703%" height="15" fill="rgb(252,223,21)" fg:x="364070" fg:w="898"/><text x="69.3057%" y="655.50"></text></g><g><title>_raw_spin_lock (87 samples, 0.02%)</title><rect x="69.2704%" y="645" width="0.0165%" height="15" fill="rgb(230,210,4)" fg:x="365202" fg:w="87"/><text x="69.5204%" y="655.50"></text></g><g><title>join_transaction (306 samples, 0.06%)</title><rect x="69.2291%" y="661" width="0.0580%" height="15" fill="rgb(240,149,38)" fg:x="364984" fg:w="306"/><text x="69.4791%" y="671.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="69.2871%" y="661" width="0.0286%" height="15" fill="rgb(254,105,20)" fg:x="365290" fg:w="151"/><text x="69.5371%" y="671.50"></text></g><g><title>btrfs_unlink (48,473 samples, 9.19%)</title><rect x="60.1434%" y="693" width="9.1942%" height="15" fill="rgb(253,87,46)" fg:x="317083" fg:w="48473"/><text x="60.3934%" y="703.50">btrfs_unlink</text></g><g><title>start_transaction (1,731 samples, 0.33%)</title><rect x="69.0092%" y="677" width="0.3283%" height="15" fill="rgb(253,116,33)" fg:x="363825" fg:w="1731"/><text x="69.2592%" y="687.50"></text></g><g><title>wait_current_trans (115 samples, 0.02%)</title><rect x="69.3158%" y="661" width="0.0218%" height="15" fill="rgb(229,198,5)" fg:x="365441" fg:w="115"/><text x="69.5658%" y="671.50"></text></g><g><title>_raw_spin_lock (95 samples, 0.02%)</title><rect x="69.3196%" y="645" width="0.0180%" height="15" fill="rgb(242,38,37)" fg:x="365461" fg:w="95"/><text x="69.5696%" y="655.50"></text></g><g><title>d_delete (114 samples, 0.02%)</title><rect x="69.3376%" y="693" width="0.0216%" height="15" fill="rgb(242,69,53)" fg:x="365556" fg:w="114"/><text x="69.5876%" y="703.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="69.3398%" y="677" width="0.0193%" height="15" fill="rgb(249,80,16)" fg:x="365568" fg:w="102"/><text x="69.5898%" y="687.50"></text></g><g><title>down_write (454 samples, 0.09%)</title><rect x="69.3664%" y="693" width="0.0861%" height="15" fill="rgb(206,128,11)" fg:x="365708" fg:w="454"/><text x="69.6164%" y="703.50"></text></g><g><title>fsnotify (327 samples, 0.06%)</title><rect x="69.4525%" y="693" width="0.0620%" height="15" fill="rgb(212,35,20)" fg:x="366162" fg:w="327"/><text x="69.7025%" y="703.50"></text></g><g><title>_atomic_dec_and_lock (165 samples, 0.03%)</title><rect x="69.5307%" y="677" width="0.0313%" height="15" fill="rgb(236,79,13)" fg:x="366574" fg:w="165"/><text x="69.7807%" y="687.50"></text></g><g><title>iput.part.0 (191 samples, 0.04%)</title><rect x="69.5259%" y="693" width="0.0362%" height="15" fill="rgb(233,123,3)" fg:x="366549" fg:w="191"/><text x="69.7759%" y="703.50"></text></g><g><title>inode_permission.part.0 (69 samples, 0.01%)</title><rect x="69.5677%" y="677" width="0.0131%" height="15" fill="rgb(214,93,52)" fg:x="366769" fg:w="69"/><text x="69.8177%" y="687.50"></text></g><g><title>may_delete (106 samples, 0.02%)</title><rect x="69.5621%" y="693" width="0.0201%" height="15" fill="rgb(251,37,40)" fg:x="366740" fg:w="106"/><text x="69.8121%" y="703.50"></text></g><g><title>do_unlinkat (53,382 samples, 10.13%)</title><rect x="59.4738%" y="725" width="10.1253%" height="15" fill="rgb(227,80,54)" fg:x="313553" fg:w="53382"/><text x="59.7238%" y="735.50">do_unlinkat</text></g><g><title>vfs_unlink (50,050 samples, 9.49%)</title><rect x="60.1058%" y="709" width="9.4933%" height="15" fill="rgb(254,48,11)" fg:x="316885" fg:w="50050"/><text x="60.3558%" y="719.50">vfs_unlink</text></g><g><title>up_write (76 samples, 0.01%)</title><rect x="69.5847%" y="693" width="0.0144%" height="15" fill="rgb(235,193,26)" fg:x="366859" fg:w="76"/><text x="69.8347%" y="703.50"></text></g><g><title>do_syscall_64 (67,207 samples, 12.75%)</title><rect x="56.8544%" y="741" width="12.7476%" height="15" fill="rgb(229,99,21)" fg:x="299743" fg:w="67207"/><text x="57.1044%" y="751.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (67,315 samples, 12.77%)</title><rect x="56.8460%" y="757" width="12.7681%" height="15" fill="rgb(211,140,41)" fg:x="299699" fg:w="67315"/><text x="57.0960%" y="767.50">entry_SYSCALL_64_af..</text></g><g><title>syscall_exit_to_user_mode (64 samples, 0.01%)</title><rect x="69.6020%" y="741" width="0.0121%" height="15" fill="rgb(240,227,30)" fg:x="366950" fg:w="64"/><text x="69.8520%" y="751.50"></text></g><g><title>__GI_unlinkat (67,786 samples, 12.86%)</title><rect x="56.7703%" y="773" width="12.8574%" height="15" fill="rgb(215,224,45)" fg:x="299300" fg:w="67786"/><text x="57.0203%" y="783.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (66 samples, 0.01%)</title><rect x="69.6153%" y="757" width="0.0125%" height="15" fill="rgb(206,123,31)" fg:x="367020" fg:w="66"/><text x="69.8653%" y="767.50"></text></g><g><title>__closedir (70 samples, 0.01%)</title><rect x="69.6293%" y="773" width="0.0133%" height="15" fill="rgb(210,138,16)" fg:x="367094" fg:w="70"/><text x="69.8793%" y="783.50"></text></g><g><title>_int_free (55 samples, 0.01%)</title><rect x="69.6321%" y="757" width="0.0104%" height="15" fill="rgb(228,57,28)" fg:x="367109" fg:w="55"/><text x="69.8821%" y="767.50"></text></g><g><title>__GI___fcntl64_nocancel (72 samples, 0.01%)</title><rect x="69.6503%" y="757" width="0.0137%" height="15" fill="rgb(242,170,10)" fg:x="367205" fg:w="72"/><text x="69.9003%" y="767.50"></text></g><g><title>__fcntl64_nocancel_adjusted (69 samples, 0.01%)</title><rect x="69.6509%" y="741" width="0.0131%" height="15" fill="rgb(228,214,39)" fg:x="367208" fg:w="69"/><text x="69.9009%" y="751.50"></text></g><g><title>btrfs_getattr (62 samples, 0.01%)</title><rect x="69.6773%" y="677" width="0.0118%" height="15" fill="rgb(218,179,33)" fg:x="367347" fg:w="62"/><text x="69.9273%" y="687.50"></text></g><g><title>__do_sys_newfstat (143 samples, 0.03%)</title><rect x="69.6687%" y="709" width="0.0271%" height="15" fill="rgb(235,193,39)" fg:x="367302" fg:w="143"/><text x="69.9187%" y="719.50"></text></g><g><title>vfs_fstat (113 samples, 0.02%)</title><rect x="69.6744%" y="693" width="0.0214%" height="15" fill="rgb(219,221,36)" fg:x="367332" fg:w="113"/><text x="69.9244%" y="703.50"></text></g><g><title>do_syscall_64 (149 samples, 0.03%)</title><rect x="69.6682%" y="725" width="0.0283%" height="15" fill="rgb(248,218,19)" fg:x="367299" fg:w="149"/><text x="69.9182%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (157 samples, 0.03%)</title><rect x="69.6672%" y="741" width="0.0298%" height="15" fill="rgb(205,50,9)" fg:x="367294" fg:w="157"/><text x="69.9172%" y="751.50"></text></g><g><title>__GI___fxstat (178 samples, 0.03%)</title><rect x="69.6640%" y="757" width="0.0338%" height="15" fill="rgb(238,81,28)" fg:x="367277" fg:w="178"/><text x="69.9140%" y="767.50"></text></g><g><title>__GI___fcntl64_nocancel (55 samples, 0.01%)</title><rect x="69.6981%" y="741" width="0.0104%" height="15" fill="rgb(235,110,19)" fg:x="367457" fg:w="55"/><text x="69.9481%" y="751.50"></text></g><g><title>__fcntl64_nocancel_adjusted (54 samples, 0.01%)</title><rect x="69.6983%" y="725" width="0.0102%" height="15" fill="rgb(214,7,14)" fg:x="367458" fg:w="54"/><text x="69.9483%" y="735.50"></text></g><g><title>malloc_consolidate (67 samples, 0.01%)</title><rect x="69.7289%" y="709" width="0.0127%" height="15" fill="rgb(211,77,3)" fg:x="367619" fg:w="67"/><text x="69.9789%" y="719.50"></text></g><g><title>__GI___libc_malloc (179 samples, 0.03%)</title><rect x="69.7086%" y="741" width="0.0340%" height="15" fill="rgb(229,5,9)" fg:x="367512" fg:w="179"/><text x="69.9586%" y="751.50"></text></g><g><title>_int_malloc (138 samples, 0.03%)</title><rect x="69.7164%" y="725" width="0.0262%" height="15" fill="rgb(225,90,11)" fg:x="367553" fg:w="138"/><text x="69.9664%" y="735.50"></text></g><g><title>__fdopendir (489 samples, 0.09%)</title><rect x="69.6502%" y="773" width="0.0928%" height="15" fill="rgb(242,56,8)" fg:x="367204" fg:w="489"/><text x="69.9002%" y="783.50"></text></g><g><title>__alloc_dir (238 samples, 0.05%)</title><rect x="69.6978%" y="757" width="0.0451%" height="15" fill="rgb(249,212,39)" fg:x="367455" fg:w="238"/><text x="69.9478%" y="767.50"></text></g><g><title>memcg_slab_post_alloc_hook (61 samples, 0.01%)</title><rect x="69.7826%" y="613" width="0.0116%" height="15" fill="rgb(236,90,9)" fg:x="367902" fg:w="61"/><text x="70.0326%" y="623.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="69.7755%" y="629" width="0.0321%" height="15" fill="rgb(206,88,35)" fg:x="367865" fg:w="169"/><text x="70.0255%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="69.7956%" y="613" width="0.0119%" height="15" fill="rgb(205,126,30)" fg:x="367971" fg:w="63"/><text x="70.0456%" y="623.50"></text></g><g><title>__alloc_file (227 samples, 0.04%)</title><rect x="69.7744%" y="645" width="0.0431%" height="15" fill="rgb(230,176,12)" fg:x="367859" fg:w="227"/><text x="70.0244%" y="655.50"></text></g><g><title>alloc_empty_file (237 samples, 0.04%)</title><rect x="69.7727%" y="661" width="0.0450%" height="15" fill="rgb(243,19,9)" fg:x="367850" fg:w="237"/><text x="70.0227%" y="671.50"></text></g><g><title>btrfs_opendir (104 samples, 0.02%)</title><rect x="69.8322%" y="645" width="0.0197%" height="15" fill="rgb(245,171,17)" fg:x="368164" fg:w="104"/><text x="70.0822%" y="655.50"></text></g><g><title>kmem_cache_alloc_trace (94 samples, 0.02%)</title><rect x="69.8341%" y="629" width="0.0178%" height="15" fill="rgb(227,52,21)" fg:x="368174" fg:w="94"/><text x="70.0841%" y="639.50"></text></g><g><title>do_dentry_open (244 samples, 0.05%)</title><rect x="69.8233%" y="661" width="0.0463%" height="15" fill="rgb(238,69,14)" fg:x="368117" fg:w="244"/><text x="70.0733%" y="671.50"></text></g><g><title>security_file_open (55 samples, 0.01%)</title><rect x="69.8592%" y="645" width="0.0104%" height="15" fill="rgb(241,156,39)" fg:x="368306" fg:w="55"/><text x="70.1092%" y="655.50"></text></g><g><title>lookup_fast (78 samples, 0.01%)</title><rect x="69.8715%" y="661" width="0.0148%" height="15" fill="rgb(212,227,28)" fg:x="368371" fg:w="78"/><text x="70.1215%" y="671.50"></text></g><g><title>__d_lookup_rcu (72 samples, 0.01%)</title><rect x="69.8727%" y="645" width="0.0137%" height="15" fill="rgb(209,118,27)" fg:x="368377" fg:w="72"/><text x="70.1227%" y="655.50"></text></g><g><title>do_filp_open (709 samples, 0.13%)</title><rect x="69.7676%" y="693" width="0.1345%" height="15" fill="rgb(226,102,5)" fg:x="367823" fg:w="709"/><text x="70.0176%" y="703.50"></text></g><g><title>path_openat (699 samples, 0.13%)</title><rect x="69.7695%" y="677" width="0.1326%" height="15" fill="rgb(223,34,3)" fg:x="367833" fg:w="699"/><text x="70.0195%" y="687.50"></text></g><g><title>kmem_cache_alloc (57 samples, 0.01%)</title><rect x="69.9070%" y="677" width="0.0108%" height="15" fill="rgb(221,81,38)" fg:x="368558" fg:w="57"/><text x="70.1570%" y="687.50"></text></g><g><title>getname_flags.part.0 (116 samples, 0.02%)</title><rect x="69.9058%" y="693" width="0.0220%" height="15" fill="rgb(236,219,28)" fg:x="368552" fg:w="116"/><text x="70.1558%" y="703.50"></text></g><g><title>strncpy_from_user (53 samples, 0.01%)</title><rect x="69.9178%" y="677" width="0.0101%" height="15" fill="rgb(213,200,14)" fg:x="368615" fg:w="53"/><text x="70.1678%" y="687.50"></text></g><g><title>do_syscall_64 (938 samples, 0.18%)</title><rect x="69.7549%" y="741" width="0.1779%" height="15" fill="rgb(240,33,19)" fg:x="367756" fg:w="938"/><text x="70.0049%" y="751.50"></text></g><g><title>__x64_sys_openat (931 samples, 0.18%)</title><rect x="69.7562%" y="725" width="0.1766%" height="15" fill="rgb(233,113,27)" fg:x="367763" fg:w="931"/><text x="70.0062%" y="735.50"></text></g><g><title>do_sys_openat2 (925 samples, 0.18%)</title><rect x="69.7573%" y="709" width="0.1755%" height="15" fill="rgb(220,221,18)" fg:x="367769" fg:w="925"/><text x="70.0073%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (950 samples, 0.18%)</title><rect x="69.7539%" y="757" width="0.1802%" height="15" fill="rgb(238,92,8)" fg:x="367751" fg:w="950"/><text x="70.0039%" y="767.50"></text></g><g><title>__libc_openat64 (999 samples, 0.19%)</title><rect x="69.7461%" y="773" width="0.1895%" height="15" fill="rgb(222,164,16)" fg:x="367710" fg:w="999"/><text x="69.9961%" y="783.50"></text></g><g><title>_int_free (325 samples, 0.06%)</title><rect x="69.9489%" y="773" width="0.0616%" height="15" fill="rgb(241,119,3)" fg:x="368779" fg:w="325"/><text x="70.1989%" y="783.50"></text></g><g><title>free@plt (85 samples, 0.02%)</title><rect x="70.0164%" y="773" width="0.0161%" height="15" fill="rgb(241,44,8)" fg:x="369135" fg:w="85"/><text x="70.2664%" y="783.50"></text></g><g><title>jni_ExceptionOccurred (73 samples, 0.01%)</title><rect x="70.0325%" y="773" width="0.0138%" height="15" fill="rgb(230,36,40)" fg:x="369220" fg:w="73"/><text x="70.2825%" y="783.50"></text></g><g><title>HandleMark::pop_and_restore (80 samples, 0.02%)</title><rect x="70.1175%" y="757" width="0.0152%" height="15" fill="rgb(243,16,36)" fg:x="369668" fg:w="80"/><text x="70.3675%" y="767.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (676 samples, 0.13%)</title><rect x="70.1374%" y="757" width="0.1282%" height="15" fill="rgb(231,4,26)" fg:x="369773" fg:w="676"/><text x="70.3874%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (539 samples, 0.10%)</title><rect x="70.2657%" y="757" width="0.1022%" height="15" fill="rgb(240,9,31)" fg:x="370449" fg:w="539"/><text x="70.5157%" y="767.50"></text></g><g><title>[libc-2.31.so] (242 samples, 0.05%)</title><rect x="70.3679%" y="757" width="0.0459%" height="15" fill="rgb(207,173,15)" fg:x="370988" fg:w="242"/><text x="70.6179%" y="767.50"></text></g><g><title>check_bounds (298 samples, 0.06%)</title><rect x="70.4138%" y="757" width="0.0565%" height="15" fill="rgb(224,192,53)" fg:x="371230" fg:w="298"/><text x="70.6638%" y="767.50"></text></g><g><title>jni_GetByteArrayRegion (2,259 samples, 0.43%)</title><rect x="70.0472%" y="773" width="0.4285%" height="15" fill="rgb(223,67,28)" fg:x="369297" fg:w="2259"/><text x="70.2972%" y="783.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (402 samples, 0.08%)</title><rect x="70.5760%" y="741" width="0.0763%" height="15" fill="rgb(211,20,47)" fg:x="372085" fg:w="402"/><text x="70.8260%" y="751.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (337 samples, 0.06%)</title><rect x="70.5883%" y="725" width="0.0639%" height="15" fill="rgb(240,228,2)" fg:x="372150" fg:w="337"/><text x="70.8383%" y="735.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (527 samples, 0.10%)</title><rect x="70.5536%" y="757" width="0.1000%" height="15" fill="rgb(248,151,12)" fg:x="371967" fg:w="527"/><text x="70.8036%" y="767.50"></text></g><g><title>HandleMark::pop_and_restore (160 samples, 0.03%)</title><rect x="70.6536%" y="757" width="0.0303%" height="15" fill="rgb(244,8,39)" fg:x="372494" fg:w="160"/><text x="70.9036%" y="767.50"></text></g><g><title>JNIHandles::make_local (255 samples, 0.05%)</title><rect x="70.6839%" y="757" width="0.0484%" height="15" fill="rgb(222,26,8)" fg:x="372654" fg:w="255"/><text x="70.9339%" y="767.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (451 samples, 0.09%)</title><rect x="70.7366%" y="757" width="0.0855%" height="15" fill="rgb(213,106,44)" fg:x="372932" fg:w="451"/><text x="70.9866%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (514 samples, 0.10%)</title><rect x="70.8222%" y="757" width="0.0975%" height="15" fill="rgb(214,129,20)" fg:x="373383" fg:w="514"/><text x="71.0722%" y="767.50"></text></g><g><title>jni_GetObjectField (2,340 samples, 0.44%)</title><rect x="70.4760%" y="773" width="0.4438%" height="15" fill="rgb(212,32,13)" fg:x="371558" fg:w="2340"/><text x="70.7260%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (422 samples, 0.08%)</title><rect x="70.9897%" y="757" width="0.0800%" height="15" fill="rgb(208,168,33)" fg:x="374266" fg:w="422"/><text x="71.2397%" y="767.50"></text></g><g><title>jni_GetStringLength (1,548 samples, 0.29%)</title><rect x="70.9199%" y="773" width="0.2936%" height="15" fill="rgb(231,207,8)" fg:x="373898" fg:w="1548"/><text x="71.1699%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (758 samples, 0.14%)</title><rect x="71.0697%" y="757" width="0.1438%" height="15" fill="rgb(235,219,23)" fg:x="374688" fg:w="758"/><text x="71.3197%" y="767.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (120 samples, 0.02%)</title><rect x="71.4853%" y="709" width="0.0228%" height="15" fill="rgb(226,216,26)" fg:x="376879" fg:w="120"/><text x="71.7353%" y="719.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (132 samples, 0.03%)</title><rect x="71.5080%" y="709" width="0.0250%" height="15" fill="rgb(239,137,16)" fg:x="376999" fg:w="132"/><text x="71.7580%" y="719.50"></text></g><g><title>[libc-2.31.so] (116 samples, 0.02%)</title><rect x="71.5579%" y="693" width="0.0220%" height="15" fill="rgb(207,12,36)" fg:x="377262" fg:w="116"/><text x="71.8079%" y="703.50"></text></g><g><title>ObjAllocator::initialize (275 samples, 0.05%)</title><rect x="71.5337%" y="709" width="0.0522%" height="15" fill="rgb(210,214,24)" fg:x="377134" fg:w="275"/><text x="71.7837%" y="719.50"></text></g><g><title>__tls_get_addr (65 samples, 0.01%)</title><rect x="71.5860%" y="709" width="0.0123%" height="15" fill="rgb(206,56,30)" fg:x="377410" fg:w="65"/><text x="71.8360%" y="719.50"></text></g><g><title>MemAllocator::allocate (815 samples, 0.15%)</title><rect x="71.4468%" y="725" width="0.1546%" height="15" fill="rgb(228,143,26)" fg:x="376676" fg:w="815"/><text x="71.6968%" y="735.50"></text></g><g><title>InstanceKlass::allocate_instance (1,256 samples, 0.24%)</title><rect x="71.3637%" y="757" width="0.2382%" height="15" fill="rgb(216,218,46)" fg:x="376238" fg:w="1256"/><text x="71.6137%" y="767.50"></text></g><g><title>CollectedHeap::obj_allocate (870 samples, 0.17%)</title><rect x="71.4369%" y="741" width="0.1650%" height="15" fill="rgb(206,6,19)" fg:x="376624" fg:w="870"/><text x="71.6869%" y="751.50"></text></g><g><title>JNIHandles::make_local (197 samples, 0.04%)</title><rect x="71.6025%" y="757" width="0.0374%" height="15" fill="rgb(239,177,51)" fg:x="377497" fg:w="197"/><text x="71.8525%" y="767.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (324 samples, 0.06%)</title><rect x="71.6516%" y="757" width="0.0615%" height="15" fill="rgb(216,55,25)" fg:x="377756" fg:w="324"/><text x="71.9016%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (427 samples, 0.08%)</title><rect x="71.7131%" y="757" width="0.0810%" height="15" fill="rgb(231,163,29)" fg:x="378080" fg:w="427"/><text x="71.9631%" y="767.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (79 samples, 0.01%)</title><rect x="71.8914%" y="741" width="0.0150%" height="15" fill="rgb(232,149,50)" fg:x="379020" fg:w="79"/><text x="72.1414%" y="751.50"></text></g><g><title>InstanceKlass::initialize (75 samples, 0.01%)</title><rect x="71.9064%" y="741" width="0.0142%" height="15" fill="rgb(223,142,48)" fg:x="379099" fg:w="75"/><text x="72.1564%" y="751.50"></text></g><g><title>alloc_object (779 samples, 0.15%)</title><rect x="71.7941%" y="757" width="0.1478%" height="15" fill="rgb(245,83,23)" fg:x="378507" fg:w="779"/><text x="72.0441%" y="767.50"></text></g><g><title>oopDesc::metadata_field (95 samples, 0.02%)</title><rect x="71.9238%" y="741" width="0.0180%" height="15" fill="rgb(224,63,2)" fg:x="379191" fg:w="95"/><text x="72.1738%" y="751.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (1,218 samples, 0.23%)</title><rect x="72.0788%" y="741" width="0.2310%" height="15" fill="rgb(218,65,53)" fg:x="380008" fg:w="1218"/><text x="72.3288%" y="751.50"></text></g><g><title>HandleMark::~HandleMark (66 samples, 0.01%)</title><rect x="72.4481%" y="725" width="0.0125%" height="15" fill="rgb(221,84,29)" fg:x="381955" fg:w="66"/><text x="72.6981%" y="735.50"></text></g><g><title>JNIHandleBlock::release_block (120 samples, 0.02%)</title><rect x="72.4616%" y="725" width="0.0228%" height="15" fill="rgb(234,0,32)" fg:x="382026" fg:w="120"/><text x="72.7116%" y="735.50"></text></g><g><title>JavaCallArguments::parameters (292 samples, 0.06%)</title><rect x="72.4843%" y="725" width="0.0554%" height="15" fill="rgb(206,20,16)" fg:x="382146" fg:w="292"/><text x="72.7343%" y="735.50"></text></g><g><title>JNIHandleBlock::allocate_block (89 samples, 0.02%)</title><rect x="72.6592%" y="709" width="0.0169%" height="15" fill="rgb(244,172,18)" fg:x="383068" fg:w="89"/><text x="72.9092%" y="719.50"></text></g><g><title>ThreadShadow::clear_pending_exception (100 samples, 0.02%)</title><rect x="72.6766%" y="709" width="0.0190%" height="15" fill="rgb(254,133,1)" fg:x="383160" fg:w="100"/><text x="72.9266%" y="719.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (823 samples, 0.16%)</title><rect x="72.5397%" y="725" width="0.1561%" height="15" fill="rgb(222,206,41)" fg:x="382438" fg:w="823"/><text x="72.7897%" y="735.50"></text></g><g><title>JavaCalls::call_helper (2,335 samples, 0.44%)</title><rect x="72.3138%" y="741" width="0.4429%" height="15" fill="rgb(212,3,42)" fg:x="381247" fg:w="2335"/><text x="72.5638%" y="751.50"></text></g><g><title>os::stack_shadow_pages_available (295 samples, 0.06%)</title><rect x="72.7007%" y="725" width="0.0560%" height="15" fill="rgb(241,11,4)" fg:x="383287" fg:w="295"/><text x="72.9507%" y="735.50"></text></g><g><title>methodHandle::operator= (93 samples, 0.02%)</title><rect x="72.7612%" y="741" width="0.0176%" height="15" fill="rgb(205,19,26)" fg:x="383606" fg:w="93"/><text x="73.0112%" y="751.50"></text></g><g><title>methodHandle::~methodHandle (329 samples, 0.06%)</title><rect x="72.7789%" y="741" width="0.0624%" height="15" fill="rgb(210,179,32)" fg:x="383699" fg:w="329"/><text x="73.0289%" y="751.50"></text></g><g><title>jni_invoke_nonstatic (4,956 samples, 0.94%)</title><rect x="71.9420%" y="757" width="0.9400%" height="15" fill="rgb(227,116,49)" fg:x="379287" fg:w="4956"/><text x="72.1920%" y="767.50"></text></g><g><title>resource_allocate_bytes (195 samples, 0.04%)</title><rect x="72.8451%" y="741" width="0.0370%" height="15" fill="rgb(211,146,6)" fg:x="384048" fg:w="195"/><text x="73.0951%" y="751.50"></text></g><g><title>jni_NewObjectV (8,804 samples, 1.67%)</title><rect x="71.2150%" y="773" width="1.6699%" height="15" fill="rgb(219,44,39)" fg:x="375454" fg:w="8804"/><text x="71.4650%" y="783.50"></text></g><g><title>operator delete@plt (216 samples, 0.04%)</title><rect x="72.8991%" y="773" width="0.0410%" height="15" fill="rgb(234,128,11)" fg:x="384333" fg:w="216"/><text x="73.1491%" y="783.50"></text></g><g><title>operator delete[] (62 samples, 0.01%)</title><rect x="72.9401%" y="773" width="0.0118%" height="15" fill="rgb(220,183,53)" fg:x="384549" fg:w="62"/><text x="73.1901%" y="783.50"></text></g><g><title>__GI___libc_malloc (309 samples, 0.06%)</title><rect x="72.9541%" y="757" width="0.0586%" height="15" fill="rgb(213,219,32)" fg:x="384623" fg:w="309"/><text x="73.2041%" y="767.50"></text></g><g><title>tcache_get (157 samples, 0.03%)</title><rect x="72.9830%" y="741" width="0.0298%" height="15" fill="rgb(232,156,16)" fg:x="384775" fg:w="157"/><text x="73.2330%" y="751.50"></text></g><g><title>operator new (367 samples, 0.07%)</title><rect x="72.9519%" y="773" width="0.0696%" height="15" fill="rgb(246,135,34)" fg:x="384611" fg:w="367"/><text x="73.2019%" y="783.50"></text></g><g><title>_int_malloc (108 samples, 0.02%)</title><rect x="73.0581%" y="725" width="0.0205%" height="15" fill="rgb(241,99,0)" fg:x="385171" fg:w="108"/><text x="73.3081%" y="735.50"></text></g><g><title>__GI___libc_malloc (236 samples, 0.04%)</title><rect x="73.0387%" y="741" width="0.0448%" height="15" fill="rgb(222,103,45)" fg:x="385069" fg:w="236"/><text x="73.2887%" y="751.50"></text></g><g><title>operator new (248 samples, 0.05%)</title><rect x="73.0380%" y="757" width="0.0470%" height="15" fill="rgb(212,57,4)" fg:x="385065" fg:w="248"/><text x="73.2880%" y="767.50"></text></g><g><title>[libunix_jni.so] (244,329 samples, 46.34%)</title><rect x="26.7448%" y="789" width="46.3436%" height="15" fill="rgb(215,68,47)" fg:x="141002" fg:w="244329"/><text x="26.9948%" y="799.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (275 samples, 0.05%)</title><rect x="73.0363%" y="773" width="0.0522%" height="15" fill="rgb(230,84,2)" fg:x="385056" fg:w="275"/><text x="73.2863%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (66 samples, 0.01%)</title><rect x="86.3838%" y="741" width="0.0125%" height="15" fill="rgb(220,102,14)" fg:x="455426" fg:w="66"/><text x="86.6338%" y="751.50"></text></g><g><title>InterpreterRuntime::_new (116 samples, 0.02%)</title><rect x="86.3753%" y="773" width="0.0220%" height="15" fill="rgb(240,10,32)" fg:x="455381" fg:w="116"/><text x="86.6253%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (72 samples, 0.01%)</title><rect x="86.3837%" y="757" width="0.0137%" height="15" fill="rgb(215,47,27)" fg:x="455425" fg:w="72"/><text x="86.6337%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (61 samples, 0.01%)</title><rect x="86.4077%" y="741" width="0.0116%" height="15" fill="rgb(233,188,43)" fg:x="455552" fg:w="61"/><text x="86.6577%" y="751.50"></text></g><g><title>MemAllocator::allocate (61 samples, 0.01%)</title><rect x="86.4077%" y="725" width="0.0116%" height="15" fill="rgb(253,190,1)" fg:x="455552" fg:w="61"/><text x="86.6577%" y="735.50"></text></g><g><title>InstanceKlass::allocate_objArray (103 samples, 0.02%)</title><rect x="86.4036%" y="757" width="0.0195%" height="15" fill="rgb(206,114,52)" fg:x="455530" fg:w="103"/><text x="86.6536%" y="767.50"></text></g><g><title>InterpreterRuntime::anewarray (146 samples, 0.03%)</title><rect x="86.3973%" y="773" width="0.0277%" height="15" fill="rgb(233,120,37)" fg:x="455497" fg:w="146"/><text x="86.6473%" y="783.50"></text></g><g><title>TieredThresholdPolicy::call_event (68 samples, 0.01%)</title><rect x="86.4485%" y="709" width="0.0129%" height="15" fill="rgb(214,52,39)" fg:x="455767" fg:w="68"/><text x="86.6985%" y="719.50"></text></g><g><title>CompileBroker::compile_method_base (54 samples, 0.01%)</title><rect x="86.4626%" y="661" width="0.0102%" height="15" fill="rgb(223,80,29)" fg:x="455841" fg:w="54"/><text x="86.7126%" y="671.50"></text></g><g><title>TieredThresholdPolicy::compile (68 samples, 0.01%)</title><rect x="86.4614%" y="709" width="0.0129%" height="15" fill="rgb(230,101,40)" fg:x="455835" fg:w="68"/><text x="86.7114%" y="719.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (67 samples, 0.01%)</title><rect x="86.4616%" y="693" width="0.0127%" height="15" fill="rgb(219,211,8)" fg:x="455836" fg:w="67"/><text x="86.7116%" y="703.50"></text></g><g><title>CompileBroker::compile_method (65 samples, 0.01%)</title><rect x="86.4620%" y="677" width="0.0123%" height="15" fill="rgb(252,126,28)" fg:x="455838" fg:w="65"/><text x="86.7120%" y="687.50"></text></g><g><title>TieredThresholdPolicy::event (192 samples, 0.04%)</title><rect x="86.4383%" y="741" width="0.0364%" height="15" fill="rgb(215,56,38)" fg:x="455713" fg:w="192"/><text x="86.6883%" y="751.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (170 samples, 0.03%)</title><rect x="86.4425%" y="725" width="0.0322%" height="15" fill="rgb(249,55,44)" fg:x="455735" fg:w="170"/><text x="86.6925%" y="735.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (222 samples, 0.04%)</title><rect x="86.4328%" y="773" width="0.0421%" height="15" fill="rgb(220,221,32)" fg:x="455684" fg:w="222"/><text x="86.6828%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (222 samples, 0.04%)</title><rect x="86.4328%" y="757" width="0.0421%" height="15" fill="rgb(212,216,41)" fg:x="455684" fg:w="222"/><text x="86.6828%" y="767.50"></text></g><g><title>InterpreterRuntime::ldc (76 samples, 0.01%)</title><rect x="86.4749%" y="773" width="0.0144%" height="15" fill="rgb(228,213,43)" fg:x="455906" fg:w="76"/><text x="86.7249%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (211 samples, 0.04%)</title><rect x="86.5174%" y="741" width="0.0400%" height="15" fill="rgb(211,31,26)" fg:x="456130" fg:w="211"/><text x="86.7674%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (284 samples, 0.05%)</title><rect x="86.5069%" y="757" width="0.0539%" height="15" fill="rgb(229,202,19)" fg:x="456075" fg:w="284"/><text x="86.7569%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (68 samples, 0.01%)</title><rect x="86.5608%" y="757" width="0.0129%" height="15" fill="rgb(229,105,46)" fg:x="456359" fg:w="68"/><text x="86.8108%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (67 samples, 0.01%)</title><rect x="86.5610%" y="741" width="0.0127%" height="15" fill="rgb(235,108,1)" fg:x="456360" fg:w="67"/><text x="86.8110%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (67 samples, 0.01%)</title><rect x="86.5610%" y="725" width="0.0127%" height="15" fill="rgb(245,111,35)" fg:x="456360" fg:w="67"/><text x="86.8110%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (389 samples, 0.07%)</title><rect x="86.5001%" y="773" width="0.0738%" height="15" fill="rgb(219,185,31)" fg:x="456039" fg:w="389"/><text x="86.7501%" y="783.50"></text></g><g><title>JVM_Clone (74 samples, 0.01%)</title><rect x="86.5796%" y="773" width="0.0140%" height="15" fill="rgb(214,4,43)" fg:x="456458" fg:w="74"/><text x="86.8296%" y="783.50"></text></g><g><title>JVM_IsInterrupted (60 samples, 0.01%)</title><rect x="86.6412%" y="773" width="0.0114%" height="15" fill="rgb(235,227,40)" fg:x="456783" fg:w="60"/><text x="86.8912%" y="783.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (319 samples, 0.06%)</title><rect x="86.6684%" y="645" width="0.0605%" height="15" fill="rgb(230,88,30)" fg:x="456926" fg:w="319"/><text x="86.9184%" y="655.50"></text></g><g><title>SymbolTable::lookup_only (293 samples, 0.06%)</title><rect x="86.6733%" y="629" width="0.0556%" height="15" fill="rgb(216,217,1)" fg:x="456952" fg:w="293"/><text x="86.9233%" y="639.50"></text></g><g><title>ClassFileParser::parse_constant_pool (328 samples, 0.06%)</title><rect x="86.6670%" y="661" width="0.0622%" height="15" fill="rgb(248,139,50)" fg:x="456919" fg:w="328"/><text x="86.9170%" y="671.50"></text></g><g><title>ClassFileParser::parse_method (73 samples, 0.01%)</title><rect x="86.7310%" y="645" width="0.0138%" height="15" fill="rgb(233,1,21)" fg:x="457256" fg:w="73"/><text x="86.9810%" y="655.50"></text></g><g><title>ClassFileParser::parse_methods (74 samples, 0.01%)</title><rect x="86.7310%" y="661" width="0.0140%" height="15" fill="rgb(215,183,12)" fg:x="457256" fg:w="74"/><text x="86.9810%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (429 samples, 0.08%)</title><rect x="86.6653%" y="693" width="0.0814%" height="15" fill="rgb(229,104,42)" fg:x="456910" fg:w="429"/><text x="86.9153%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (427 samples, 0.08%)</title><rect x="86.6657%" y="677" width="0.0810%" height="15" fill="rgb(243,34,48)" fg:x="456912" fg:w="427"/><text x="86.9157%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (67 samples, 0.01%)</title><rect x="86.7467%" y="677" width="0.0127%" height="15" fill="rgb(239,11,44)" fg:x="457339" fg:w="67"/><text x="86.9967%" y="687.50"></text></g><g><title>ClassFileParser::create_instance_klass (72 samples, 0.01%)</title><rect x="86.7467%" y="693" width="0.0137%" height="15" fill="rgb(231,98,35)" fg:x="457339" fg:w="72"/><text x="86.9967%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (531 samples, 0.10%)</title><rect x="86.6651%" y="709" width="0.1007%" height="15" fill="rgb(233,28,25)" fg:x="456909" fg:w="531"/><text x="86.9151%" y="719.50"></text></g><g><title>JVM_DefineClassWithSource (549 samples, 0.10%)</title><rect x="86.6638%" y="757" width="0.1041%" height="15" fill="rgb(234,123,11)" fg:x="456902" fg:w="549"/><text x="86.9138%" y="767.50"></text></g><g><title>jvm_define_class_common (549 samples, 0.10%)</title><rect x="86.6638%" y="741" width="0.1041%" height="15" fill="rgb(220,69,3)" fg:x="456902" fg:w="549"/><text x="86.9138%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (542 samples, 0.10%)</title><rect x="86.6651%" y="725" width="0.1028%" height="15" fill="rgb(214,64,36)" fg:x="456909" fg:w="542"/><text x="86.9151%" y="735.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (576 samples, 0.11%)</title><rect x="86.6638%" y="773" width="0.1093%" height="15" fill="rgb(211,138,32)" fg:x="456902" fg:w="576"/><text x="86.9138%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (148 samples, 0.03%)</title><rect x="86.8009%" y="677" width="0.0281%" height="15" fill="rgb(213,118,47)" fg:x="457625" fg:w="148"/><text x="87.0509%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (147 samples, 0.03%)</title><rect x="86.8011%" y="661" width="0.0279%" height="15" fill="rgb(243,124,49)" fg:x="457626" fg:w="147"/><text x="87.0511%" y="671.50"></text></g><g><title>native_write_msr (147 samples, 0.03%)</title><rect x="86.8011%" y="645" width="0.0279%" height="15" fill="rgb(221,30,28)" fg:x="457626" fg:w="147"/><text x="87.0511%" y="655.50"></text></g><g><title>schedule_tail (165 samples, 0.03%)</title><rect x="86.7987%" y="709" width="0.0313%" height="15" fill="rgb(246,37,13)" fg:x="457613" fg:w="165"/><text x="87.0487%" y="719.50"></text></g><g><title>finish_task_switch (160 samples, 0.03%)</title><rect x="86.7996%" y="693" width="0.0303%" height="15" fill="rgb(249,66,14)" fg:x="457618" fg:w="160"/><text x="87.0496%" y="703.50"></text></g><g><title>__libc_vfork (220 samples, 0.04%)</title><rect x="86.7884%" y="741" width="0.0417%" height="15" fill="rgb(213,166,5)" fg:x="457559" fg:w="220"/><text x="87.0384%" y="751.50"></text></g><g><title>ret_from_fork (175 samples, 0.03%)</title><rect x="86.7970%" y="725" width="0.0332%" height="15" fill="rgb(221,66,24)" fg:x="457604" fg:w="175"/><text x="87.0470%" y="735.50"></text></g><g><title>bprm_execve (79 samples, 0.01%)</title><rect x="86.8321%" y="629" width="0.0150%" height="15" fill="rgb(210,132,17)" fg:x="457789" fg:w="79"/><text x="87.0821%" y="639.50"></text></g><g><title>do_execveat_common (152 samples, 0.03%)</title><rect x="86.8309%" y="645" width="0.0288%" height="15" fill="rgb(243,202,5)" fg:x="457783" fg:w="152"/><text x="87.0809%" y="655.50"></text></g><g><title>JDK_execvpe (154 samples, 0.03%)</title><rect x="86.8307%" y="725" width="0.0292%" height="15" fill="rgb(233,70,48)" fg:x="457782" fg:w="154"/><text x="87.0807%" y="735.50"></text></g><g><title>__GI_execve (154 samples, 0.03%)</title><rect x="86.8307%" y="709" width="0.0292%" height="15" fill="rgb(238,41,26)" fg:x="457782" fg:w="154"/><text x="87.0807%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="86.8309%" y="693" width="0.0290%" height="15" fill="rgb(241,19,31)" fg:x="457783" fg:w="153"/><text x="87.0809%" y="703.50"></text></g><g><title>do_syscall_64 (153 samples, 0.03%)</title><rect x="86.8309%" y="677" width="0.0290%" height="15" fill="rgb(214,76,10)" fg:x="457783" fg:w="153"/><text x="87.0809%" y="687.50"></text></g><g><title>__x64_sys_execve (153 samples, 0.03%)</title><rect x="86.8309%" y="661" width="0.0290%" height="15" fill="rgb(254,202,22)" fg:x="457783" fg:w="153"/><text x="87.0809%" y="671.50"></text></g><g><title>closeDescriptors (103 samples, 0.02%)</title><rect x="86.8643%" y="725" width="0.0195%" height="15" fill="rgb(214,72,24)" fg:x="457959" fg:w="103"/><text x="87.1143%" y="735.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (528 samples, 0.10%)</title><rect x="86.7860%" y="773" width="0.1001%" height="15" fill="rgb(221,92,46)" fg:x="457546" fg:w="528"/><text x="87.0360%" y="783.50"></text></g><g><title>vforkChild (515 samples, 0.10%)</title><rect x="86.7884%" y="757" width="0.0977%" height="15" fill="rgb(246,13,50)" fg:x="457559" fg:w="515"/><text x="87.0384%" y="767.50"></text></g><g><title>childProcess (295 samples, 0.06%)</title><rect x="86.8302%" y="741" width="0.0560%" height="15" fill="rgb(240,165,38)" fg:x="457779" fg:w="295"/><text x="87.0802%" y="751.50"></text></g><g><title>OptoRuntime::new_array_C (142 samples, 0.03%)</title><rect x="86.8920%" y="773" width="0.0269%" height="15" fill="rgb(241,24,51)" fg:x="458105" fg:w="142"/><text x="87.1420%" y="783.50"></text></g><g><title>TypeArrayKlass::allocate_common (93 samples, 0.02%)</title><rect x="86.9013%" y="757" width="0.0176%" height="15" fill="rgb(227,51,44)" fg:x="458154" fg:w="93"/><text x="87.1513%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (92 samples, 0.02%)</title><rect x="86.9015%" y="741" width="0.0175%" height="15" fill="rgb(231,121,3)" fg:x="458155" fg:w="92"/><text x="87.1515%" y="751.50"></text></g><g><title>MemAllocator::allocate (92 samples, 0.02%)</title><rect x="86.9015%" y="725" width="0.0175%" height="15" fill="rgb(245,3,41)" fg:x="458155" fg:w="92"/><text x="87.1515%" y="735.50"></text></g><g><title>ObjArrayAllocator::initialize (74 samples, 0.01%)</title><rect x="86.9049%" y="709" width="0.0140%" height="15" fill="rgb(214,13,26)" fg:x="458173" fg:w="74"/><text x="87.1549%" y="719.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.01%)</title><rect x="86.9055%" y="693" width="0.0135%" height="15" fill="rgb(252,75,11)" fg:x="458176" fg:w="71"/><text x="87.1555%" y="703.50"></text></g><g><title>exc_page_fault (71 samples, 0.01%)</title><rect x="86.9055%" y="677" width="0.0135%" height="15" fill="rgb(218,226,17)" fg:x="458176" fg:w="71"/><text x="87.1555%" y="687.50"></text></g><g><title>do_user_addr_fault (71 samples, 0.01%)</title><rect x="86.9055%" y="661" width="0.0135%" height="15" fill="rgb(248,89,38)" fg:x="458176" fg:w="71"/><text x="87.1555%" y="671.50"></text></g><g><title>handle_mm_fault (70 samples, 0.01%)</title><rect x="86.9056%" y="645" width="0.0133%" height="15" fill="rgb(237,73,46)" fg:x="458177" fg:w="70"/><text x="87.1556%" y="655.50"></text></g><g><title>do_huge_pmd_anonymous_page (70 samples, 0.01%)</title><rect x="86.9056%" y="629" width="0.0133%" height="15" fill="rgb(242,78,33)" fg:x="458177" fg:w="70"/><text x="87.1556%" y="639.50"></text></g><g><title>ObjAllocator::initialize (64 samples, 0.01%)</title><rect x="86.9322%" y="709" width="0.0121%" height="15" fill="rgb(235,60,3)" fg:x="458317" fg:w="64"/><text x="87.1822%" y="719.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="693" width="0.0118%" height="15" fill="rgb(216,172,19)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="703.50"></text></g><g><title>exc_page_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="677" width="0.0118%" height="15" fill="rgb(227,6,42)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="687.50"></text></g><g><title>do_user_addr_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="661" width="0.0118%" height="15" fill="rgb(223,207,42)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="671.50"></text></g><g><title>handle_mm_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="645" width="0.0118%" height="15" fill="rgb(246,138,30)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="655.50"></text></g><g><title>do_huge_pmd_anonymous_page (62 samples, 0.01%)</title><rect x="86.9326%" y="629" width="0.0118%" height="15" fill="rgb(251,199,47)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="639.50"></text></g><g><title>InstanceKlass::allocate_instance (89 samples, 0.02%)</title><rect x="86.9276%" y="757" width="0.0169%" height="15" fill="rgb(228,218,44)" fg:x="458293" fg:w="89"/><text x="87.1776%" y="767.50"></text></g><g><title>CollectedHeap::obj_allocate (89 samples, 0.02%)</title><rect x="86.9276%" y="741" width="0.0169%" height="15" fill="rgb(220,68,6)" fg:x="458293" fg:w="89"/><text x="87.1776%" y="751.50"></text></g><g><title>MemAllocator::allocate (88 samples, 0.02%)</title><rect x="86.9278%" y="725" width="0.0167%" height="15" fill="rgb(240,60,26)" fg:x="458294" fg:w="88"/><text x="87.1778%" y="735.50"></text></g><g><title>OptoRuntime::new_instance_C (103 samples, 0.02%)</title><rect x="86.9259%" y="773" width="0.0195%" height="15" fill="rgb(211,200,19)" fg:x="458284" fg:w="103"/><text x="87.1759%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (82 samples, 0.02%)</title><rect x="86.9533%" y="757" width="0.0156%" height="15" fill="rgb(242,145,30)" fg:x="458428" fg:w="82"/><text x="87.2033%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (59 samples, 0.01%)</title><rect x="86.9576%" y="741" width="0.0112%" height="15" fill="rgb(225,64,13)" fg:x="458451" fg:w="59"/><text x="87.2076%" y="751.50"></text></g><g><title>Runtime1::counter_overflow (152 samples, 0.03%)</title><rect x="86.9457%" y="773" width="0.0288%" height="15" fill="rgb(218,103,35)" fg:x="458388" fg:w="152"/><text x="87.1957%" y="783.50"></text></g><g><title>Runtime1::monitorenter (98 samples, 0.02%)</title><rect x="86.9753%" y="773" width="0.0186%" height="15" fill="rgb(216,93,46)" fg:x="458544" fg:w="98"/><text x="87.2253%" y="783.50"></text></g><g><title>InstanceKlass::allocate_instance (73 samples, 0.01%)</title><rect x="87.0011%" y="757" width="0.0138%" height="15" fill="rgb(225,159,27)" fg:x="458680" fg:w="73"/><text x="87.2511%" y="767.50"></text></g><g><title>CollectedHeap::obj_allocate (72 samples, 0.01%)</title><rect x="87.0012%" y="741" width="0.0137%" height="15" fill="rgb(225,204,11)" fg:x="458681" fg:w="72"/><text x="87.2512%" y="751.50"></text></g><g><title>MemAllocator::allocate (72 samples, 0.01%)</title><rect x="87.0012%" y="725" width="0.0137%" height="15" fill="rgb(205,56,4)" fg:x="458681" fg:w="72"/><text x="87.2512%" y="735.50"></text></g><g><title>ObjAllocator::initialize (68 samples, 0.01%)</title><rect x="87.0020%" y="709" width="0.0129%" height="15" fill="rgb(206,6,35)" fg:x="458685" fg:w="68"/><text x="87.2520%" y="719.50"></text></g><g><title>asm_exc_page_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="693" width="0.0127%" height="15" fill="rgb(247,73,52)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="703.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="677" width="0.0127%" height="15" fill="rgb(246,97,4)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="687.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="661" width="0.0127%" height="15" fill="rgb(212,37,15)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="671.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="645" width="0.0127%" height="15" fill="rgb(208,130,40)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="655.50"></text></g><g><title>do_huge_pmd_anonymous_page (67 samples, 0.01%)</title><rect x="87.0022%" y="629" width="0.0127%" height="15" fill="rgb(236,55,29)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="639.50"></text></g><g><title>Runtime1::new_instance (77 samples, 0.01%)</title><rect x="87.0005%" y="773" width="0.0146%" height="15" fill="rgb(209,156,45)" fg:x="458677" fg:w="77"/><text x="87.2505%" y="783.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (54 samples, 0.01%)</title><rect x="87.0172%" y="773" width="0.0102%" height="15" fill="rgb(249,107,4)" fg:x="458765" fg:w="54"/><text x="87.2672%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (58 samples, 0.01%)</title><rect x="87.0464%" y="741" width="0.0110%" height="15" fill="rgb(227,7,13)" fg:x="458919" fg:w="58"/><text x="87.2964%" y="751.50"></text></g><g><title>SystemDictionary::parse_stream (85 samples, 0.02%)</title><rect x="87.0415%" y="757" width="0.0161%" height="15" fill="rgb(250,129,14)" fg:x="458893" fg:w="85"/><text x="87.2915%" y="767.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (89 samples, 0.02%)</title><rect x="87.0409%" y="773" width="0.0169%" height="15" fill="rgb(229,92,13)" fg:x="458890" fg:w="89"/><text x="87.2909%" y="783.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="87.0741%" y="565" width="0.0123%" height="15" fill="rgb(245,98,39)" fg:x="459065" fg:w="65"/><text x="87.3241%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="87.0745%" y="549" width="0.0119%" height="15" fill="rgb(234,135,48)" fg:x="459067" fg:w="63"/><text x="87.3245%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.01%)</title><rect x="87.0745%" y="533" width="0.0119%" height="15" fill="rgb(230,98,28)" fg:x="459067" fg:w="63"/><text x="87.3245%" y="543.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="87.0746%" y="517" width="0.0118%" height="15" fill="rgb(223,121,0)" fg:x="459068" fg:w="62"/><text x="87.3246%" y="527.50"></text></g><g><title>futex_wait_queue_me (103 samples, 0.02%)</title><rect x="87.0691%" y="613" width="0.0195%" height="15" fill="rgb(234,173,33)" fg:x="459039" fg:w="103"/><text x="87.3191%" y="623.50"></text></g><g><title>schedule (101 samples, 0.02%)</title><rect x="87.0695%" y="597" width="0.0192%" height="15" fill="rgb(245,47,8)" fg:x="459041" fg:w="101"/><text x="87.3195%" y="607.50"></text></g><g><title>__schedule (101 samples, 0.02%)</title><rect x="87.0695%" y="581" width="0.0192%" height="15" fill="rgb(205,17,20)" fg:x="459041" fg:w="101"/><text x="87.3195%" y="591.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="87.0686%" y="677" width="0.0207%" height="15" fill="rgb(232,151,16)" fg:x="459036" fg:w="109"/><text x="87.3186%" y="687.50"></text></g><g><title>__x64_sys_futex (108 samples, 0.02%)</title><rect x="87.0688%" y="661" width="0.0205%" height="15" fill="rgb(208,30,32)" fg:x="459037" fg:w="108"/><text x="87.3188%" y="671.50"></text></g><g><title>do_futex (107 samples, 0.02%)</title><rect x="87.0690%" y="645" width="0.0203%" height="15" fill="rgb(254,26,3)" fg:x="459038" fg:w="107"/><text x="87.3190%" y="655.50"></text></g><g><title>futex_wait (106 samples, 0.02%)</title><rect x="87.0691%" y="629" width="0.0201%" height="15" fill="rgb(240,177,30)" fg:x="459039" fg:w="106"/><text x="87.3191%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="87.0686%" y="693" width="0.0218%" height="15" fill="rgb(248,76,44)" fg:x="459036" fg:w="115"/><text x="87.3186%" y="703.50"></text></g><g><title>__pthread_cond_wait (124 samples, 0.02%)</title><rect x="87.0671%" y="741" width="0.0235%" height="15" fill="rgb(241,186,54)" fg:x="459028" fg:w="124"/><text x="87.3171%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (124 samples, 0.02%)</title><rect x="87.0671%" y="725" width="0.0235%" height="15" fill="rgb(249,171,29)" fg:x="459028" fg:w="124"/><text x="87.3171%" y="735.50"></text></g><g><title>futex_wait_cancelable (120 samples, 0.02%)</title><rect x="87.0678%" y="709" width="0.0228%" height="15" fill="rgb(237,151,44)" fg:x="459032" fg:w="120"/><text x="87.3178%" y="719.50"></text></g><g><title>Parker::park (150 samples, 0.03%)</title><rect x="87.0638%" y="757" width="0.0285%" height="15" fill="rgb(228,174,30)" fg:x="459011" fg:w="150"/><text x="87.3138%" y="767.50"></text></g><g><title>Unsafe_Park (152 samples, 0.03%)</title><rect x="87.0636%" y="773" width="0.0288%" height="15" fill="rgb(252,14,37)" fg:x="459010" fg:w="152"/><text x="87.3136%" y="783.50"></text></g><g><title>ttwu_do_activate (93 samples, 0.02%)</title><rect x="87.1154%" y="613" width="0.0176%" height="15" fill="rgb(207,111,40)" fg:x="459283" fg:w="93"/><text x="87.3654%" y="623.50"></text></g><g><title>__x64_sys_futex (184 samples, 0.03%)</title><rect x="87.1012%" y="693" width="0.0349%" height="15" fill="rgb(248,171,54)" fg:x="459208" fg:w="184"/><text x="87.3512%" y="703.50"></text></g><g><title>do_futex (182 samples, 0.03%)</title><rect x="87.1016%" y="677" width="0.0345%" height="15" fill="rgb(211,127,2)" fg:x="459210" fg:w="182"/><text x="87.3516%" y="687.50"></text></g><g><title>futex_wake (177 samples, 0.03%)</title><rect x="87.1025%" y="661" width="0.0336%" height="15" fill="rgb(236,87,47)" fg:x="459215" fg:w="177"/><text x="87.3525%" y="671.50"></text></g><g><title>wake_up_q (150 samples, 0.03%)</title><rect x="87.1077%" y="645" width="0.0285%" height="15" fill="rgb(223,190,45)" fg:x="459242" fg:w="150"/><text x="87.3577%" y="655.50"></text></g><g><title>try_to_wake_up (147 samples, 0.03%)</title><rect x="87.1082%" y="629" width="0.0279%" height="15" fill="rgb(215,5,16)" fg:x="459245" fg:w="147"/><text x="87.3582%" y="639.50"></text></g><g><title>do_syscall_64 (187 samples, 0.04%)</title><rect x="87.1012%" y="709" width="0.0355%" height="15" fill="rgb(252,82,33)" fg:x="459208" fg:w="187"/><text x="87.3512%" y="719.50"></text></g><g><title>__pthread_cond_signal (204 samples, 0.04%)</title><rect x="87.0999%" y="757" width="0.0387%" height="15" fill="rgb(247,213,44)" fg:x="459201" fg:w="204"/><text x="87.3499%" y="767.50"></text></g><g><title>futex_wake (201 samples, 0.04%)</title><rect x="87.1004%" y="741" width="0.0381%" height="15" fill="rgb(205,196,44)" fg:x="459204" fg:w="201"/><text x="87.3504%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (197 samples, 0.04%)</title><rect x="87.1012%" y="725" width="0.0374%" height="15" fill="rgb(237,96,54)" fg:x="459208" fg:w="197"/><text x="87.3512%" y="735.50"></text></g><g><title>Unsafe_Unpark (238 samples, 0.05%)</title><rect x="87.0942%" y="773" width="0.0451%" height="15" fill="rgb(230,113,34)" fg:x="459171" fg:w="238"/><text x="87.3442%" y="783.50"></text></g><g><title>asm_common_interrupt (54 samples, 0.01%)</title><rect x="87.1479%" y="773" width="0.0102%" height="15" fill="rgb(221,224,12)" fg:x="459454" fg:w="54"/><text x="87.3979%" y="783.50"></text></g><g><title>tick_sched_timer (54 samples, 0.01%)</title><rect x="87.1651%" y="693" width="0.0102%" height="15" fill="rgb(219,112,44)" fg:x="459545" fg:w="54"/><text x="87.4151%" y="703.50"></text></g><g><title>__hrtimer_run_queues (66 samples, 0.01%)</title><rect x="87.1636%" y="709" width="0.0125%" height="15" fill="rgb(210,31,13)" fg:x="459537" fg:w="66"/><text x="87.4136%" y="719.50"></text></g><g><title>hrtimer_interrupt (71 samples, 0.01%)</title><rect x="87.1634%" y="725" width="0.0135%" height="15" fill="rgb(230,25,16)" fg:x="459536" fg:w="71"/><text x="87.4134%" y="735.50"></text></g><g><title>__sysvec_apic_timer_interrupt (76 samples, 0.01%)</title><rect x="87.1630%" y="741" width="0.0144%" height="15" fill="rgb(246,108,53)" fg:x="459534" fg:w="76"/><text x="87.4130%" y="751.50"></text></g><g><title>rcu_core (58 samples, 0.01%)</title><rect x="87.1780%" y="677" width="0.0110%" height="15" fill="rgb(241,172,50)" fg:x="459613" fg:w="58"/><text x="87.4280%" y="687.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (154 samples, 0.03%)</title><rect x="87.1615%" y="773" width="0.0292%" height="15" fill="rgb(235,141,10)" fg:x="459526" fg:w="154"/><text x="87.4115%" y="783.50"></text></g><g><title>sysvec_apic_timer_interrupt (147 samples, 0.03%)</title><rect x="87.1628%" y="757" width="0.0279%" height="15" fill="rgb(220,174,43)" fg:x="459533" fg:w="147"/><text x="87.4128%" y="767.50"></text></g><g><title>irq_exit_rcu (69 samples, 0.01%)</title><rect x="87.1776%" y="741" width="0.0131%" height="15" fill="rgb(215,181,40)" fg:x="459611" fg:w="69"/><text x="87.4276%" y="751.50"></text></g><g><title>do_softirq_own_stack (67 samples, 0.01%)</title><rect x="87.1780%" y="725" width="0.0127%" height="15" fill="rgb(230,97,2)" fg:x="459613" fg:w="67"/><text x="87.4280%" y="735.50"></text></g><g><title>asm_call_sysvec_on_stack (67 samples, 0.01%)</title><rect x="87.1780%" y="709" width="0.0127%" height="15" fill="rgb(211,25,27)" fg:x="459613" fg:w="67"/><text x="87.4280%" y="719.50"></text></g><g><title>__softirqentry_text_start (67 samples, 0.01%)</title><rect x="87.1780%" y="693" width="0.0127%" height="15" fill="rgb(230,87,26)" fg:x="459613" fg:w="67"/><text x="87.4280%" y="703.50"></text></g><g><title>__close (53 samples, 0.01%)</title><rect x="87.1996%" y="757" width="0.0101%" height="15" fill="rgb(227,160,17)" fg:x="459727" fg:w="53"/><text x="87.4496%" y="767.50"></text></g><g><title>fileDescriptorClose (67 samples, 0.01%)</title><rect x="87.1995%" y="773" width="0.0127%" height="15" fill="rgb(244,85,34)" fg:x="459726" fg:w="67"/><text x="87.4495%" y="783.50"></text></g><g><title>alloc_empty_file (54 samples, 0.01%)</title><rect x="87.2330%" y="645" width="0.0102%" height="15" fill="rgb(207,70,0)" fg:x="459903" fg:w="54"/><text x="87.4830%" y="655.50"></text></g><g><title>link_path_walk.part.0 (53 samples, 0.01%)</title><rect x="87.2541%" y="645" width="0.0101%" height="15" fill="rgb(223,129,7)" fg:x="460014" fg:w="53"/><text x="87.5041%" y="655.50"></text></g><g><title>do_filp_open (192 samples, 0.04%)</title><rect x="87.2317%" y="677" width="0.0364%" height="15" fill="rgb(246,105,7)" fg:x="459896" fg:w="192"/><text x="87.4817%" y="687.50"></text></g><g><title>path_openat (187 samples, 0.04%)</title><rect x="87.2327%" y="661" width="0.0355%" height="15" fill="rgb(215,154,42)" fg:x="459901" fg:w="187"/><text x="87.4827%" y="671.50"></text></g><g><title>__x64_sys_openat (234 samples, 0.04%)</title><rect x="87.2296%" y="709" width="0.0444%" height="15" fill="rgb(220,215,30)" fg:x="459885" fg:w="234"/><text x="87.4796%" y="719.50"></text></g><g><title>do_sys_openat2 (234 samples, 0.04%)</title><rect x="87.2296%" y="693" width="0.0444%" height="15" fill="rgb(228,81,51)" fg:x="459885" fg:w="234"/><text x="87.4796%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (236 samples, 0.04%)</title><rect x="87.2294%" y="741" width="0.0448%" height="15" fill="rgb(247,71,54)" fg:x="459884" fg:w="236"/><text x="87.4794%" y="751.50"></text></g><g><title>do_syscall_64 (236 samples, 0.04%)</title><rect x="87.2294%" y="725" width="0.0448%" height="15" fill="rgb(234,176,34)" fg:x="459884" fg:w="236"/><text x="87.4794%" y="735.50"></text></g><g><title>__libc_open64 (241 samples, 0.05%)</title><rect x="87.2287%" y="757" width="0.0457%" height="15" fill="rgb(241,103,54)" fg:x="459880" fg:w="241"/><text x="87.4787%" y="767.50"></text></g><g><title>fileOpen (346 samples, 0.07%)</title><rect x="87.2122%" y="773" width="0.0656%" height="15" fill="rgb(228,22,34)" fg:x="459793" fg:w="346"/><text x="87.4622%" y="783.50"></text></g><g><title>jni_IsAssignableFrom (73 samples, 0.01%)</title><rect x="87.2806%" y="773" width="0.0138%" height="15" fill="rgb(241,179,48)" fg:x="460154" fg:w="73"/><text x="87.5306%" y="783.50"></text></g><g><title>[[vdso]] (776 samples, 0.15%)</title><rect x="87.4248%" y="725" width="0.1472%" height="15" fill="rgb(235,167,37)" fg:x="460914" fg:w="776"/><text x="87.6748%" y="735.50"></text></g><g><title>os::javaTimeNanos (1,456 samples, 0.28%)</title><rect x="87.2960%" y="773" width="0.2762%" height="15" fill="rgb(213,109,30)" fg:x="460235" fg:w="1456"/><text x="87.5460%" y="783.50"></text></g><g><title>__GI___clock_gettime (1,395 samples, 0.26%)</title><rect x="87.3076%" y="757" width="0.2646%" height="15" fill="rgb(222,172,16)" fg:x="460296" fg:w="1395"/><text x="87.5576%" y="767.50"></text></g><g><title>__vdso_clock_gettime (1,197 samples, 0.23%)</title><rect x="87.3451%" y="741" width="0.2270%" height="15" fill="rgb(233,192,5)" fg:x="460494" fg:w="1197"/><text x="87.5951%" y="751.50"></text></g><g><title>[perf-947659.map] (76,363 samples, 14.48%)</title><rect x="73.0884%" y="789" width="14.4843%" height="15" fill="rgb(247,189,41)" fg:x="385331" fg:w="76363"/><text x="73.3384%" y="799.50">[perf-947659.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (160 samples, 0.03%)</title><rect x="87.6167%" y="757" width="0.0303%" height="15" fill="rgb(218,134,47)" fg:x="461926" fg:w="160"/><text x="87.8667%" y="767.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (250 samples, 0.05%)</title><rect x="87.6035%" y="773" width="0.0474%" height="15" fill="rgb(216,29,3)" fg:x="461856" fg:w="250"/><text x="87.8535%" y="783.50"></text></g><g><title>__GI___clock_gettime (112 samples, 0.02%)</title><rect x="87.6590%" y="773" width="0.0212%" height="15" fill="rgb(246,140,12)" fg:x="462149" fg:w="112"/><text x="87.9090%" y="783.50"></text></g><g><title>copy_page_to_iter (136 samples, 0.03%)</title><rect x="87.7323%" y="613" width="0.0258%" height="15" fill="rgb(230,136,11)" fg:x="462535" fg:w="136"/><text x="87.9823%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (128 samples, 0.02%)</title><rect x="87.7338%" y="597" width="0.0243%" height="15" fill="rgb(247,22,47)" fg:x="462543" fg:w="128"/><text x="87.9838%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (56 samples, 0.01%)</title><rect x="87.7713%" y="565" width="0.0106%" height="15" fill="rgb(218,84,22)" fg:x="462741" fg:w="56"/><text x="88.0213%" y="575.50"></text></g><g><title>btrfs_update_inode (64 samples, 0.01%)</title><rect x="87.7710%" y="581" width="0.0121%" height="15" fill="rgb(216,87,39)" fg:x="462739" fg:w="64"/><text x="88.0210%" y="591.50"></text></g><g><title>btrfs_dirty_inode (91 samples, 0.02%)</title><rect x="87.7691%" y="597" width="0.0173%" height="15" fill="rgb(221,178,8)" fg:x="462729" fg:w="91"/><text x="88.0191%" y="607.50"></text></g><g><title>generic_file_buffered_read (304 samples, 0.06%)</title><rect x="87.7292%" y="629" width="0.0577%" height="15" fill="rgb(230,42,11)" fg:x="462519" fg:w="304"/><text x="87.9792%" y="639.50"></text></g><g><title>touch_atime (107 samples, 0.02%)</title><rect x="87.7666%" y="613" width="0.0203%" height="15" fill="rgb(237,229,4)" fg:x="462716" fg:w="107"/><text x="88.0166%" y="623.50"></text></g><g><title>new_sync_read (316 samples, 0.06%)</title><rect x="87.7277%" y="645" width="0.0599%" height="15" fill="rgb(222,31,33)" fg:x="462511" fg:w="316"/><text x="87.9777%" y="655.50"></text></g><g><title>ksys_read (360 samples, 0.07%)</title><rect x="87.7224%" y="677" width="0.0683%" height="15" fill="rgb(210,17,39)" fg:x="462483" fg:w="360"/><text x="87.9724%" y="687.50"></text></g><g><title>vfs_read (344 samples, 0.07%)</title><rect x="87.7254%" y="661" width="0.0652%" height="15" fill="rgb(244,93,20)" fg:x="462499" fg:w="344"/><text x="87.9754%" y="671.50"></text></g><g><title>do_syscall_64 (365 samples, 0.07%)</title><rect x="87.7218%" y="693" width="0.0692%" height="15" fill="rgb(210,40,47)" fg:x="462480" fg:w="365"/><text x="87.9718%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (369 samples, 0.07%)</title><rect x="87.7214%" y="709" width="0.0700%" height="15" fill="rgb(239,211,47)" fg:x="462478" fg:w="369"/><text x="87.9714%" y="719.50"></text></g><g><title>__libc_read (384 samples, 0.07%)</title><rect x="87.7188%" y="741" width="0.0728%" height="15" fill="rgb(251,223,49)" fg:x="462464" fg:w="384"/><text x="87.9688%" y="751.50"></text></g><g><title>__libc_read (384 samples, 0.07%)</title><rect x="87.7188%" y="725" width="0.0728%" height="15" fill="rgb(221,149,5)" fg:x="462464" fg:w="384"/><text x="87.9688%" y="735.50"></text></g><g><title>handleRead (386 samples, 0.07%)</title><rect x="87.7188%" y="757" width="0.0732%" height="15" fill="rgb(219,224,51)" fg:x="462464" fg:w="386"/><text x="87.9688%" y="767.50"></text></g><g><title>readBytes (478 samples, 0.09%)</title><rect x="87.7163%" y="773" width="0.0907%" height="15" fill="rgb(223,7,8)" fg:x="462451" fg:w="478"/><text x="87.9663%" y="783.50"></text></g><g><title>[unknown] (1,256 samples, 0.24%)</title><rect x="87.5727%" y="789" width="0.2382%" height="15" fill="rgb(241,217,22)" fg:x="461694" fg:w="1256"/><text x="87.8227%" y="799.50"></text></g><g><title>__GI___clone (104 samples, 0.02%)</title><rect x="87.8110%" y="789" width="0.0197%" height="15" fill="rgb(248,209,0)" fg:x="462950" fg:w="104"/><text x="88.0610%" y="799.50"></text></g><g><title>__vdso_clock_gettime (91 samples, 0.02%)</title><rect x="87.8315%" y="789" width="0.0173%" height="15" fill="rgb(217,205,4)" fg:x="463058" fg:w="91"/><text x="88.0815%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.02%)</title><rect x="87.8525%" y="789" width="0.0247%" height="15" fill="rgb(228,124,39)" fg:x="463169" fg:w="130"/><text x="88.1025%" y="799.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (198 samples, 0.04%)</title><rect x="87.8772%" y="789" width="0.0376%" height="15" fill="rgb(250,116,42)" fg:x="463299" fg:w="198"/><text x="88.1272%" y="799.50"></text></g><g><title>skyframe-evalua (324,553 samples, 61.56%)</title><rect x="26.3771%" y="805" width="61.5602%" height="15" fill="rgb(223,202,9)" fg:x="139063" fg:w="324553"/><text x="26.6271%" y="815.50">skyframe-evalua</text></g><g><title>[perf-947659.map] (80 samples, 0.02%)</title><rect x="87.9381%" y="789" width="0.0152%" height="15" fill="rgb(242,222,40)" fg:x="463620" fg:w="80"/><text x="88.1881%" y="799.50"></text></g><g><title>skyframe-invali (101 samples, 0.02%)</title><rect x="87.9373%" y="805" width="0.0192%" height="15" fill="rgb(229,99,46)" fg:x="463616" fg:w="101"/><text x="88.1873%" y="815.50"></text></g><g><title>wait_on_page_bit_common (65 samples, 0.01%)</title><rect x="92.9956%" y="677" width="0.0123%" height="15" fill="rgb(225,56,46)" fg:x="490284" fg:w="65"/><text x="93.2456%" y="687.50"></text></g><g><title>io_schedule (59 samples, 0.01%)</title><rect x="92.9967%" y="661" width="0.0112%" height="15" fill="rgb(227,94,5)" fg:x="490290" fg:w="59"/><text x="93.2467%" y="671.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="92.9967%" y="645" width="0.0112%" height="15" fill="rgb(205,112,38)" fg:x="490290" fg:w="59"/><text x="93.2467%" y="655.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="92.9969%" y="629" width="0.0110%" height="15" fill="rgb(231,133,46)" fg:x="490291" fg:w="58"/><text x="93.2469%" y="639.50"></text></g><g><title>__do_fault (103 samples, 0.02%)</title><rect x="92.9914%" y="709" width="0.0195%" height="15" fill="rgb(217,16,9)" fg:x="490262" fg:w="103"/><text x="93.2414%" y="719.50"></text></g><g><title>filemap_fault (102 samples, 0.02%)</title><rect x="92.9916%" y="693" width="0.0193%" height="15" fill="rgb(249,173,9)" fg:x="490263" fg:w="102"/><text x="93.2416%" y="703.50"></text></g><g><title>kernel_init_free_pages (207 samples, 0.04%)</title><rect x="93.0665%" y="645" width="0.0393%" height="15" fill="rgb(205,163,53)" fg:x="490658" fg:w="207"/><text x="93.3165%" y="655.50"></text></g><g><title>clear_page_erms (200 samples, 0.04%)</title><rect x="93.0679%" y="629" width="0.0379%" height="15" fill="rgb(217,54,41)" fg:x="490665" fg:w="200"/><text x="93.3179%" y="639.50"></text></g><g><title>__alloc_pages_nodemask (430 samples, 0.08%)</title><rect x="93.0244%" y="693" width="0.0816%" height="15" fill="rgb(228,216,12)" fg:x="490436" fg:w="430"/><text x="93.2744%" y="703.50"></text></g><g><title>get_page_from_freelist (385 samples, 0.07%)</title><rect x="93.0330%" y="677" width="0.0730%" height="15" fill="rgb(244,228,15)" fg:x="490481" fg:w="385"/><text x="93.2830%" y="687.50"></text></g><g><title>prep_new_page (219 samples, 0.04%)</title><rect x="93.0645%" y="661" width="0.0415%" height="15" fill="rgb(221,176,53)" fg:x="490647" fg:w="219"/><text x="93.3145%" y="671.50"></text></g><g><title>alloc_pages_vma (468 samples, 0.09%)</title><rect x="93.0193%" y="709" width="0.0888%" height="15" fill="rgb(205,94,34)" fg:x="490409" fg:w="468"/><text x="93.2693%" y="719.50"></text></g><g><title>do_page_mkwrite (246 samples, 0.05%)</title><rect x="93.1206%" y="709" width="0.0467%" height="15" fill="rgb(213,110,48)" fg:x="490943" fg:w="246"/><text x="93.3706%" y="719.50"></text></g><g><title>btrfs_page_mkwrite (246 samples, 0.05%)</title><rect x="93.1206%" y="693" width="0.0467%" height="15" fill="rgb(236,142,28)" fg:x="490943" fg:w="246"/><text x="93.3706%" y="703.50"></text></g><g><title>__mod_memcg_lruvec_state (54 samples, 0.01%)</title><rect x="93.3097%" y="661" width="0.0102%" height="15" fill="rgb(225,135,29)" fg:x="491940" fg:w="54"/><text x="93.5597%" y="671.50"></text></g><g><title>page_add_file_rmap (167 samples, 0.03%)</title><rect x="93.2907%" y="677" width="0.0317%" height="15" fill="rgb(252,45,31)" fg:x="491840" fg:w="167"/><text x="93.5407%" y="687.50"></text></g><g><title>alloc_set_pte (253 samples, 0.05%)</title><rect x="93.2759%" y="693" width="0.0480%" height="15" fill="rgb(211,187,50)" fg:x="491762" fg:w="253"/><text x="93.5259%" y="703.50"></text></g><g><title>unlock_page (73 samples, 0.01%)</title><rect x="93.3245%" y="693" width="0.0138%" height="15" fill="rgb(229,109,7)" fg:x="492018" fg:w="73"/><text x="93.5745%" y="703.50"></text></g><g><title>filemap_map_pages (923 samples, 0.18%)</title><rect x="93.1743%" y="709" width="0.1751%" height="15" fill="rgb(251,131,51)" fg:x="491226" fg:w="923"/><text x="93.4243%" y="719.50"></text></g><g><title>xas_find (58 samples, 0.01%)</title><rect x="93.3384%" y="693" width="0.0110%" height="15" fill="rgb(251,180,35)" fg:x="492091" fg:w="58"/><text x="93.5884%" y="703.50"></text></g><g><title>__pagevec_lru_add_fn (68 samples, 0.01%)</title><rect x="93.3545%" y="677" width="0.0129%" height="15" fill="rgb(211,46,32)" fg:x="492176" fg:w="68"/><text x="93.6045%" y="687.50"></text></g><g><title>lru_cache_add (105 samples, 0.02%)</title><rect x="93.3511%" y="709" width="0.0199%" height="15" fill="rgb(248,123,17)" fg:x="492158" fg:w="105"/><text x="93.6011%" y="719.50"></text></g><g><title>pagevec_lru_move_fn (93 samples, 0.02%)</title><rect x="93.3533%" y="693" width="0.0176%" height="15" fill="rgb(227,141,18)" fg:x="492170" fg:w="93"/><text x="93.6033%" y="703.50"></text></g><g><title>mem_cgroup_charge (100 samples, 0.02%)</title><rect x="93.3715%" y="709" width="0.0190%" height="15" fill="rgb(216,102,9)" fg:x="492266" fg:w="100"/><text x="93.6215%" y="719.50"></text></g><g><title>handle_mm_fault (2,445 samples, 0.46%)</title><rect x="92.9493%" y="725" width="0.4638%" height="15" fill="rgb(253,47,13)" fg:x="490040" fg:w="2445"/><text x="93.1993%" y="735.50"></text></g><g><title>do_user_addr_fault (2,594 samples, 0.49%)</title><rect x="92.9283%" y="741" width="0.4920%" height="15" fill="rgb(226,93,23)" fg:x="489929" fg:w="2594"/><text x="93.1783%" y="751.50"></text></g><g><title>exc_page_fault (2,617 samples, 0.50%)</title><rect x="92.9241%" y="757" width="0.4964%" height="15" fill="rgb(247,104,17)" fg:x="489907" fg:w="2617"/><text x="93.1741%" y="767.50"></text></g><g><title>asm_exc_page_fault (2,667 samples, 0.51%)</title><rect x="92.9176%" y="773" width="0.5059%" height="15" fill="rgb(233,203,26)" fg:x="489873" fg:w="2667"/><text x="93.1676%" y="783.50"></text></g><g><title>rcu_core (86 samples, 0.02%)</title><rect x="93.4277%" y="677" width="0.0163%" height="15" fill="rgb(244,98,49)" fg:x="492562" fg:w="86"/><text x="93.6777%" y="687.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (112 samples, 0.02%)</title><rect x="93.4235%" y="773" width="0.0212%" height="15" fill="rgb(235,134,22)" fg:x="492540" fg:w="112"/><text x="93.6735%" y="783.50"></text></g><g><title>sysvec_apic_timer_interrupt (110 samples, 0.02%)</title><rect x="93.4239%" y="757" width="0.0209%" height="15" fill="rgb(221,70,32)" fg:x="492542" fg:w="110"/><text x="93.6739%" y="767.50"></text></g><g><title>irq_exit_rcu (92 samples, 0.02%)</title><rect x="93.4273%" y="741" width="0.0175%" height="15" fill="rgb(238,15,50)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="751.50"></text></g><g><title>do_softirq_own_stack (92 samples, 0.02%)</title><rect x="93.4273%" y="725" width="0.0175%" height="15" fill="rgb(215,221,48)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="735.50"></text></g><g><title>asm_call_sysvec_on_stack (92 samples, 0.02%)</title><rect x="93.4273%" y="709" width="0.0175%" height="15" fill="rgb(236,73,3)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="719.50"></text></g><g><title>__softirqentry_text_start (92 samples, 0.02%)</title><rect x="93.4273%" y="693" width="0.0175%" height="15" fill="rgb(250,107,11)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (1,248 samples, 0.24%)</title><rect x="93.4459%" y="773" width="0.2367%" height="15" fill="rgb(242,39,14)" fg:x="492658" fg:w="1248"/><text x="93.6959%" y="783.50"></text></g><g><title>copy_process (101 samples, 0.02%)</title><rect x="93.7737%" y="709" width="0.0192%" height="15" fill="rgb(248,164,37)" fg:x="494386" fg:w="101"/><text x="94.0237%" y="719.50"></text></g><g><title>__do_sys_clone (115 samples, 0.02%)</title><rect x="93.7737%" y="741" width="0.0218%" height="15" fill="rgb(217,60,12)" fg:x="494386" fg:w="115"/><text x="94.0237%" y="751.50"></text></g><g><title>kernel_clone (115 samples, 0.02%)</title><rect x="93.7737%" y="725" width="0.0218%" height="15" fill="rgb(240,125,29)" fg:x="494386" fg:w="115"/><text x="94.0237%" y="735.50"></text></g><g><title>_copy_to_user (207 samples, 0.04%)</title><rect x="93.8118%" y="709" width="0.0393%" height="15" fill="rgb(208,207,28)" fg:x="494587" fg:w="207"/><text x="94.0618%" y="719.50"></text></g><g><title>copy_user_enhanced_fast_string (185 samples, 0.04%)</title><rect x="93.8160%" y="693" width="0.0351%" height="15" fill="rgb(209,159,27)" fg:x="494609" fg:w="185"/><text x="94.0660%" y="703.50"></text></g><g><title>cp_new_stat (325 samples, 0.06%)</title><rect x="93.7989%" y="725" width="0.0616%" height="15" fill="rgb(251,176,53)" fg:x="494519" fg:w="325"/><text x="94.0489%" y="735.50"></text></g><g><title>__fget_light (80 samples, 0.02%)</title><rect x="93.8649%" y="709" width="0.0152%" height="15" fill="rgb(211,85,7)" fg:x="494867" fg:w="80"/><text x="94.1149%" y="719.50"></text></g><g><title>__fget_files (72 samples, 0.01%)</title><rect x="93.8664%" y="693" width="0.0137%" height="15" fill="rgb(216,64,54)" fg:x="494875" fg:w="72"/><text x="94.1164%" y="703.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="93.9548%" y="693" width="0.0125%" height="15" fill="rgb(217,54,24)" fg:x="495341" fg:w="66"/><text x="94.2048%" y="703.50"></text></g><g><title>btrfs_getattr (559 samples, 0.11%)</title><rect x="93.8801%" y="709" width="0.1060%" height="15" fill="rgb(208,206,53)" fg:x="494947" fg:w="559"/><text x="94.1301%" y="719.50"></text></g><g><title>inode_get_bytes (70 samples, 0.01%)</title><rect x="93.9728%" y="693" width="0.0133%" height="15" fill="rgb(251,74,39)" fg:x="495436" fg:w="70"/><text x="94.2228%" y="703.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="93.9753%" y="677" width="0.0108%" height="15" fill="rgb(226,47,5)" fg:x="495449" fg:w="57"/><text x="94.2253%" y="687.50"></text></g><g><title>security_inode_getattr (223 samples, 0.04%)</title><rect x="93.9965%" y="709" width="0.0423%" height="15" fill="rgb(234,111,33)" fg:x="495561" fg:w="223"/><text x="94.2465%" y="719.50"></text></g><g><title>tomoyo_path_perm (163 samples, 0.03%)</title><rect x="94.0079%" y="693" width="0.0309%" height="15" fill="rgb(251,14,10)" fg:x="495621" fg:w="163"/><text x="94.2579%" y="703.50"></text></g><g><title>tomoyo_init_request_info (71 samples, 0.01%)</title><rect x="94.0254%" y="677" width="0.0135%" height="15" fill="rgb(232,43,0)" fg:x="495713" fg:w="71"/><text x="94.2754%" y="687.50"></text></g><g><title>__do_sys_newfstat (1,374 samples, 0.26%)</title><rect x="93.7955%" y="741" width="0.2606%" height="15" fill="rgb(222,68,43)" fg:x="494501" fg:w="1374"/><text x="94.0455%" y="751.50"></text></g><g><title>vfs_fstat (1,031 samples, 0.20%)</title><rect x="93.8605%" y="725" width="0.1956%" height="15" fill="rgb(217,24,23)" fg:x="494844" fg:w="1031"/><text x="94.1105%" y="735.50"></text></g><g><title>vfs_getattr_nosec (91 samples, 0.02%)</title><rect x="94.0388%" y="709" width="0.0173%" height="15" fill="rgb(229,209,14)" fg:x="495784" fg:w="91"/><text x="94.2888%" y="719.50"></text></g><g><title>__close_fd (86 samples, 0.02%)</title><rect x="94.0625%" y="725" width="0.0163%" height="15" fill="rgb(250,149,48)" fg:x="495909" fg:w="86"/><text x="94.3125%" y="735.50"></text></g><g><title>pick_file (82 samples, 0.02%)</title><rect x="94.0633%" y="709" width="0.0156%" height="15" fill="rgb(210,120,37)" fg:x="495913" fg:w="82"/><text x="94.3133%" y="719.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="94.0677%" y="693" width="0.0112%" height="15" fill="rgb(210,21,8)" fg:x="495936" fg:w="59"/><text x="94.3177%" y="703.50"></text></g><g><title>fput_many (203 samples, 0.04%)</title><rect x="94.0859%" y="709" width="0.0385%" height="15" fill="rgb(243,145,7)" fg:x="496032" fg:w="203"/><text x="94.3359%" y="719.50"></text></g><g><title>task_work_add (120 samples, 0.02%)</title><rect x="94.1016%" y="693" width="0.0228%" height="15" fill="rgb(238,178,32)" fg:x="496115" fg:w="120"/><text x="94.3516%" y="703.50"></text></g><g><title>__x64_sys_close (352 samples, 0.07%)</title><rect x="94.0614%" y="741" width="0.0668%" height="15" fill="rgb(222,4,10)" fg:x="495903" fg:w="352"/><text x="94.3114%" y="751.50"></text></g><g><title>filp_close (260 samples, 0.05%)</title><rect x="94.0789%" y="725" width="0.0493%" height="15" fill="rgb(239,7,37)" fg:x="495995" fg:w="260"/><text x="94.3289%" y="735.50"></text></g><g><title>load_elf_binary (56 samples, 0.01%)</title><rect x="94.1310%" y="693" width="0.0106%" height="15" fill="rgb(215,31,37)" fg:x="496270" fg:w="56"/><text x="94.3810%" y="703.50"></text></g><g><title>begin_new_exec (56 samples, 0.01%)</title><rect x="94.1310%" y="677" width="0.0106%" height="15" fill="rgb(224,83,33)" fg:x="496270" fg:w="56"/><text x="94.3810%" y="687.50"></text></g><g><title>bprm_execve (97 samples, 0.02%)</title><rect x="94.1297%" y="709" width="0.0184%" height="15" fill="rgb(239,55,3)" fg:x="496263" fg:w="97"/><text x="94.3797%" y="719.50"></text></g><g><title>do_execveat_common (139 samples, 0.03%)</title><rect x="94.1284%" y="725" width="0.0264%" height="15" fill="rgb(247,92,11)" fg:x="496256" fg:w="139"/><text x="94.3784%" y="735.50"></text></g><g><title>__x64_sys_execve (143 samples, 0.03%)</title><rect x="94.1282%" y="741" width="0.0271%" height="15" fill="rgb(239,200,7)" fg:x="496255" fg:w="143"/><text x="94.3782%" y="751.50"></text></g><g><title>update_curr (111 samples, 0.02%)</title><rect x="94.2346%" y="613" width="0.0211%" height="15" fill="rgb(227,115,8)" fg:x="496816" fg:w="111"/><text x="94.4846%" y="623.50"></text></g><g><title>dequeue_entity (297 samples, 0.06%)</title><rect x="94.2156%" y="629" width="0.0563%" height="15" fill="rgb(215,189,27)" fg:x="496716" fg:w="297"/><text x="94.4656%" y="639.50"></text></g><g><title>update_load_avg (86 samples, 0.02%)</title><rect x="94.2556%" y="613" width="0.0163%" height="15" fill="rgb(251,216,39)" fg:x="496927" fg:w="86"/><text x="94.5056%" y="623.50"></text></g><g><title>dequeue_task_fair (329 samples, 0.06%)</title><rect x="94.2103%" y="645" width="0.0624%" height="15" fill="rgb(207,29,47)" fg:x="496688" fg:w="329"/><text x="94.4603%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (2,513 samples, 0.48%)</title><rect x="94.2915%" y="629" width="0.4767%" height="15" fill="rgb(210,71,34)" fg:x="497116" fg:w="2513"/><text x="94.5415%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,478 samples, 0.47%)</title><rect x="94.2981%" y="613" width="0.4700%" height="15" fill="rgb(253,217,51)" fg:x="497151" fg:w="2478"/><text x="94.5481%" y="623.50"></text></g><g><title>native_write_msr (2,461 samples, 0.47%)</title><rect x="94.3013%" y="597" width="0.4668%" height="15" fill="rgb(222,117,46)" fg:x="497168" fg:w="2461"/><text x="94.5513%" y="607.50"></text></g><g><title>asm_sysvec_irq_work (59 samples, 0.01%)</title><rect x="94.7693%" y="629" width="0.0112%" height="15" fill="rgb(226,132,6)" fg:x="499635" fg:w="59"/><text x="95.0193%" y="639.50"></text></g><g><title>finish_task_switch (2,699 samples, 0.51%)</title><rect x="94.2727%" y="645" width="0.5119%" height="15" fill="rgb(254,145,51)" fg:x="497017" fg:w="2699"/><text x="94.5227%" y="655.50"></text></g><g><title>newidle_balance (69 samples, 0.01%)</title><rect x="94.7867%" y="629" width="0.0131%" height="15" fill="rgb(231,199,27)" fg:x="499727" fg:w="69"/><text x="95.0367%" y="639.50"></text></g><g><title>pick_next_task_fair (79 samples, 0.01%)</title><rect x="94.7850%" y="645" width="0.0150%" height="15" fill="rgb(245,158,14)" fg:x="499718" fg:w="79"/><text x="95.0350%" y="655.50"></text></g><g><title>psi_task_change (251 samples, 0.05%)</title><rect x="94.8068%" y="645" width="0.0476%" height="15" fill="rgb(240,113,14)" fg:x="499833" fg:w="251"/><text x="95.0568%" y="655.50"></text></g><g><title>psi_group_change (206 samples, 0.04%)</title><rect x="94.8154%" y="629" width="0.0391%" height="15" fill="rgb(210,20,13)" fg:x="499878" fg:w="206"/><text x="95.0654%" y="639.50"></text></g><g><title>futex_wait_queue_me (3,611 samples, 0.68%)</title><rect x="94.1784%" y="693" width="0.6849%" height="15" fill="rgb(241,144,13)" fg:x="496520" fg:w="3611"/><text x="94.4284%" y="703.50"></text></g><g><title>schedule (3,562 samples, 0.68%)</title><rect x="94.1877%" y="677" width="0.6756%" height="15" fill="rgb(235,43,34)" fg:x="496569" fg:w="3562"/><text x="94.4377%" y="687.50"></text></g><g><title>__schedule (3,538 samples, 0.67%)</title><rect x="94.1923%" y="661" width="0.6711%" height="15" fill="rgb(208,36,20)" fg:x="496593" fg:w="3538"/><text x="94.4423%" y="671.50"></text></g><g><title>futex_wait (3,767 samples, 0.71%)</title><rect x="94.1703%" y="709" width="0.7145%" height="15" fill="rgb(239,204,10)" fg:x="496477" fg:w="3767"/><text x="94.4203%" y="719.50"></text></g><g><title>futex_wait_setup (113 samples, 0.02%)</title><rect x="94.8634%" y="693" width="0.0214%" height="15" fill="rgb(217,84,43)" fg:x="500131" fg:w="113"/><text x="95.1134%" y="703.50"></text></g><g><title>select_task_rq_fair (58 samples, 0.01%)</title><rect x="94.9098%" y="661" width="0.0110%" height="15" fill="rgb(241,170,50)" fg:x="500376" fg:w="58"/><text x="95.1598%" y="671.50"></text></g><g><title>enqueue_task_fair (63 samples, 0.01%)</title><rect x="94.9227%" y="645" width="0.0119%" height="15" fill="rgb(226,205,29)" fg:x="500444" fg:w="63"/><text x="95.1727%" y="655.50"></text></g><g><title>ttwu_do_activate (145 samples, 0.03%)</title><rect x="94.9216%" y="661" width="0.0275%" height="15" fill="rgb(233,113,1)" fg:x="500438" fg:w="145"/><text x="95.1716%" y="671.50"></text></g><g><title>psi_task_change (76 samples, 0.01%)</title><rect x="94.9347%" y="645" width="0.0144%" height="15" fill="rgb(253,98,13)" fg:x="500507" fg:w="76"/><text x="95.1847%" y="655.50"></text></g><g><title>psi_group_change (71 samples, 0.01%)</title><rect x="94.9356%" y="629" width="0.0135%" height="15" fill="rgb(211,115,12)" fg:x="500512" fg:w="71"/><text x="95.1856%" y="639.50"></text></g><g><title>__x64_sys_futex (4,168 samples, 0.79%)</title><rect x="94.1642%" y="741" width="0.7906%" height="15" fill="rgb(208,12,16)" fg:x="496445" fg:w="4168"/><text x="94.4142%" y="751.50"></text></g><g><title>do_futex (4,155 samples, 0.79%)</title><rect x="94.1667%" y="725" width="0.7881%" height="15" fill="rgb(237,193,54)" fg:x="496458" fg:w="4155"/><text x="94.4167%" y="735.50"></text></g><g><title>futex_wake (369 samples, 0.07%)</title><rect x="94.8848%" y="709" width="0.0700%" height="15" fill="rgb(243,22,42)" fg:x="500244" fg:w="369"/><text x="95.1348%" y="719.50"></text></g><g><title>wake_up_q (294 samples, 0.06%)</title><rect x="94.8990%" y="693" width="0.0558%" height="15" fill="rgb(233,151,36)" fg:x="500319" fg:w="294"/><text x="95.1490%" y="703.50"></text></g><g><title>try_to_wake_up (289 samples, 0.05%)</title><rect x="94.9000%" y="677" width="0.0548%" height="15" fill="rgb(237,57,45)" fg:x="500324" fg:w="289"/><text x="95.1500%" y="687.50"></text></g><g><title>__split_vma (72 samples, 0.01%)</title><rect x="94.9631%" y="693" width="0.0137%" height="15" fill="rgb(221,88,17)" fg:x="500657" fg:w="72"/><text x="95.2131%" y="703.50"></text></g><g><title>flush_tlb_mm_range (53 samples, 0.01%)</title><rect x="94.9940%" y="661" width="0.0101%" height="15" fill="rgb(230,79,15)" fg:x="500820" fg:w="53"/><text x="95.2440%" y="671.50"></text></g><g><title>free_unref_page_list (61 samples, 0.01%)</title><rect x="95.0181%" y="645" width="0.0116%" height="15" fill="rgb(213,57,13)" fg:x="500947" fg:w="61"/><text x="95.2681%" y="655.50"></text></g><g><title>tlb_finish_mmu (206 samples, 0.04%)</title><rect x="94.9935%" y="677" width="0.0391%" height="15" fill="rgb(222,116,39)" fg:x="500817" fg:w="206"/><text x="95.2435%" y="687.50"></text></g><g><title>release_pages (136 samples, 0.03%)</title><rect x="95.0068%" y="661" width="0.0258%" height="15" fill="rgb(245,107,2)" fg:x="500887" fg:w="136"/><text x="95.2568%" y="671.50"></text></g><g><title>unmap_page_range (130 samples, 0.02%)</title><rect x="95.0335%" y="661" width="0.0247%" height="15" fill="rgb(238,1,10)" fg:x="501028" fg:w="130"/><text x="95.2835%" y="671.50"></text></g><g><title>unmap_region (401 samples, 0.08%)</title><rect x="94.9827%" y="693" width="0.0761%" height="15" fill="rgb(249,4,48)" fg:x="500760" fg:w="401"/><text x="95.2327%" y="703.50"></text></g><g><title>unmap_vmas (135 samples, 0.03%)</title><rect x="95.0331%" y="677" width="0.0256%" height="15" fill="rgb(223,151,18)" fg:x="501026" fg:w="135"/><text x="95.2831%" y="687.50"></text></g><g><title>__do_munmap (514 samples, 0.10%)</title><rect x="94.9616%" y="709" width="0.0975%" height="15" fill="rgb(227,65,43)" fg:x="500649" fg:w="514"/><text x="95.2116%" y="719.50"></text></g><g><title>__vm_munmap (516 samples, 0.10%)</title><rect x="94.9616%" y="725" width="0.0979%" height="15" fill="rgb(218,40,45)" fg:x="500649" fg:w="516"/><text x="95.2116%" y="735.50"></text></g><g><title>__x64_sys_munmap (520 samples, 0.10%)</title><rect x="94.9614%" y="741" width="0.0986%" height="15" fill="rgb(252,121,31)" fg:x="500648" fg:w="520"/><text x="95.2114%" y="751.50"></text></g><g><title>do_filp_open (78 samples, 0.01%)</title><rect x="95.0610%" y="709" width="0.0148%" height="15" fill="rgb(219,158,43)" fg:x="501173" fg:w="78"/><text x="95.3110%" y="719.50"></text></g><g><title>path_openat (78 samples, 0.01%)</title><rect x="95.0610%" y="693" width="0.0148%" height="15" fill="rgb(231,162,42)" fg:x="501173" fg:w="78"/><text x="95.3110%" y="703.50"></text></g><g><title>__x64_sys_open (95 samples, 0.02%)</title><rect x="95.0601%" y="741" width="0.0180%" height="15" fill="rgb(217,179,25)" fg:x="501168" fg:w="95"/><text x="95.3101%" y="751.50"></text></g><g><title>do_sys_openat2 (93 samples, 0.02%)</title><rect x="95.0604%" y="725" width="0.0176%" height="15" fill="rgb(206,212,31)" fg:x="501170" fg:w="93"/><text x="95.3104%" y="735.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="95.1035%" y="693" width="0.0118%" height="15" fill="rgb(235,144,12)" fg:x="501397" fg:w="62"/><text x="95.3535%" y="703.50"></text></g><g><title>__alloc_fd (168 samples, 0.03%)</title><rect x="95.0891%" y="709" width="0.0319%" height="15" fill="rgb(213,51,10)" fg:x="501321" fg:w="168"/><text x="95.3391%" y="719.50"></text></g><g><title>build_open_flags (72 samples, 0.01%)</title><rect x="95.1308%" y="709" width="0.0137%" height="15" fill="rgb(231,145,14)" fg:x="501541" fg:w="72"/><text x="95.3808%" y="719.50"></text></g><g><title>allocate_slab (63 samples, 0.01%)</title><rect x="95.2543%" y="597" width="0.0119%" height="15" fill="rgb(235,15,28)" fg:x="502192" fg:w="63"/><text x="95.5043%" y="607.50"></text></g><g><title>__slab_alloc (190 samples, 0.04%)</title><rect x="95.2378%" y="629" width="0.0360%" height="15" fill="rgb(237,206,10)" fg:x="502105" fg:w="190"/><text x="95.4878%" y="639.50"></text></g><g><title>___slab_alloc (179 samples, 0.03%)</title><rect x="95.2399%" y="613" width="0.0340%" height="15" fill="rgb(236,227,27)" fg:x="502116" fg:w="179"/><text x="95.4899%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (93 samples, 0.02%)</title><rect x="95.3269%" y="613" width="0.0176%" height="15" fill="rgb(246,83,35)" fg:x="502575" fg:w="93"/><text x="95.5769%" y="623.50"></text></g><g><title>__mod_memcg_state.part.0 (63 samples, 0.01%)</title><rect x="95.3326%" y="597" width="0.0119%" height="15" fill="rgb(220,136,24)" fg:x="502605" fg:w="63"/><text x="95.5826%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (411 samples, 0.08%)</title><rect x="95.2738%" y="629" width="0.0780%" height="15" fill="rgb(217,3,25)" fg:x="502295" fg:w="411"/><text x="95.5238%" y="639.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="95.3523%" y="629" width="0.0123%" height="15" fill="rgb(239,24,14)" fg:x="502709" fg:w="65"/><text x="95.6023%" y="639.50"></text></g><g><title>get_obj_cgroup_from_current (182 samples, 0.03%)</title><rect x="95.3762%" y="613" width="0.0345%" height="15" fill="rgb(244,16,53)" fg:x="502835" fg:w="182"/><text x="95.6262%" y="623.50"></text></g><g><title>obj_cgroup_charge (136 samples, 0.03%)</title><rect x="95.4108%" y="613" width="0.0258%" height="15" fill="rgb(208,175,44)" fg:x="503017" fg:w="136"/><text x="95.6608%" y="623.50"></text></g><g><title>kmem_cache_alloc (1,241 samples, 0.24%)</title><rect x="95.2014%" y="645" width="0.2354%" height="15" fill="rgb(252,18,48)" fg:x="501913" fg:w="1241"/><text x="95.4514%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (378 samples, 0.07%)</title><rect x="95.3651%" y="629" width="0.0717%" height="15" fill="rgb(234,199,32)" fg:x="502776" fg:w="378"/><text x="95.6151%" y="639.50"></text></g><g><title>apparmor_file_alloc_security (133 samples, 0.03%)</title><rect x="95.4413%" y="629" width="0.0252%" height="15" fill="rgb(225,77,54)" fg:x="503178" fg:w="133"/><text x="95.6913%" y="639.50"></text></g><g><title>__alloc_file (1,696 samples, 0.32%)</title><rect x="95.1765%" y="661" width="0.3217%" height="15" fill="rgb(225,42,25)" fg:x="501782" fg:w="1696"/><text x="95.4265%" y="671.50"></text></g><g><title>security_file_alloc (324 samples, 0.06%)</title><rect x="95.4368%" y="645" width="0.0615%" height="15" fill="rgb(242,227,46)" fg:x="503154" fg:w="324"/><text x="95.6868%" y="655.50"></text></g><g><title>kmem_cache_alloc (167 samples, 0.03%)</title><rect x="95.4665%" y="629" width="0.0317%" height="15" fill="rgb(246,197,35)" fg:x="503311" fg:w="167"/><text x="95.7165%" y="639.50"></text></g><g><title>alloc_empty_file (1,739 samples, 0.33%)</title><rect x="95.1712%" y="677" width="0.3298%" height="15" fill="rgb(215,159,26)" fg:x="501754" fg:w="1739"/><text x="95.4212%" y="687.50"></text></g><g><title>__legitimize_mnt (77 samples, 0.01%)</title><rect x="95.5113%" y="629" width="0.0146%" height="15" fill="rgb(212,194,50)" fg:x="503547" fg:w="77"/><text x="95.7613%" y="639.50"></text></g><g><title>__legitimize_path (169 samples, 0.03%)</title><rect x="95.5079%" y="645" width="0.0321%" height="15" fill="rgb(246,132,1)" fg:x="503529" fg:w="169"/><text x="95.7579%" y="655.50"></text></g><g><title>lockref_get_not_dead (74 samples, 0.01%)</title><rect x="95.5259%" y="629" width="0.0140%" height="15" fill="rgb(217,71,7)" fg:x="503624" fg:w="74"/><text x="95.7759%" y="639.50"></text></g><g><title>complete_walk (220 samples, 0.04%)</title><rect x="95.5011%" y="677" width="0.0417%" height="15" fill="rgb(252,59,32)" fg:x="503493" fg:w="220"/><text x="95.7511%" y="687.50"></text></g><g><title>try_to_unlazy (206 samples, 0.04%)</title><rect x="95.5037%" y="661" width="0.0391%" height="15" fill="rgb(253,204,25)" fg:x="503507" fg:w="206"/><text x="95.7537%" y="671.50"></text></g><g><title>errseq_sample (95 samples, 0.02%)</title><rect x="95.5856%" y="661" width="0.0180%" height="15" fill="rgb(232,21,16)" fg:x="503939" fg:w="95"/><text x="95.8356%" y="671.50"></text></g><g><title>lockref_get (63 samples, 0.01%)</title><rect x="95.6075%" y="661" width="0.0119%" height="15" fill="rgb(248,90,29)" fg:x="504054" fg:w="63"/><text x="95.8575%" y="671.50"></text></g><g><title>apparmor_file_open (133 samples, 0.03%)</title><rect x="95.6289%" y="645" width="0.0252%" height="15" fill="rgb(249,223,7)" fg:x="504167" fg:w="133"/><text x="95.8789%" y="655.50"></text></g><g><title>__srcu_read_lock (64 samples, 0.01%)</title><rect x="95.6721%" y="629" width="0.0121%" height="15" fill="rgb(231,119,42)" fg:x="504395" fg:w="64"/><text x="95.9221%" y="639.50"></text></g><g><title>__srcu_read_unlock (70 samples, 0.01%)</title><rect x="95.6843%" y="629" width="0.0133%" height="15" fill="rgb(215,41,35)" fg:x="504459" fg:w="70"/><text x="95.9343%" y="639.50"></text></g><g><title>tomoyo_check_open_permission (315 samples, 0.06%)</title><rect x="95.6541%" y="645" width="0.0597%" height="15" fill="rgb(220,44,45)" fg:x="504300" fg:w="315"/><text x="95.9041%" y="655.50"></text></g><g><title>tomoyo_init_request_info (66 samples, 0.01%)</title><rect x="95.7013%" y="629" width="0.0125%" height="15" fill="rgb(253,197,36)" fg:x="504549" fg:w="66"/><text x="95.9513%" y="639.50"></text></g><g><title>security_file_open (491 samples, 0.09%)</title><rect x="95.6228%" y="661" width="0.0931%" height="15" fill="rgb(245,225,54)" fg:x="504135" fg:w="491"/><text x="95.8728%" y="671.50"></text></g><g><title>do_dentry_open (917 samples, 0.17%)</title><rect x="95.5428%" y="677" width="0.1739%" height="15" fill="rgb(239,94,37)" fg:x="503713" fg:w="917"/><text x="95.7928%" y="687.50"></text></g><g><title>inode_permission.part.0 (236 samples, 0.04%)</title><rect x="95.7799%" y="661" width="0.0448%" height="15" fill="rgb(242,217,10)" fg:x="504963" fg:w="236"/><text x="96.0299%" y="671.50"></text></g><g><title>generic_permission (77 samples, 0.01%)</title><rect x="95.8100%" y="645" width="0.0146%" height="15" fill="rgb(250,193,7)" fg:x="505122" fg:w="77"/><text x="96.0600%" y="655.50"></text></g><g><title>lookup_fast (339 samples, 0.06%)</title><rect x="95.8451%" y="645" width="0.0643%" height="15" fill="rgb(230,104,19)" fg:x="505307" fg:w="339"/><text x="96.0951%" y="655.50"></text></g><g><title>__d_lookup_rcu (239 samples, 0.05%)</title><rect x="95.8641%" y="629" width="0.0453%" height="15" fill="rgb(230,181,4)" fg:x="505407" fg:w="239"/><text x="96.1141%" y="639.50"></text></g><g><title>link_path_walk.part.0 (1,078 samples, 0.20%)</title><rect x="95.7224%" y="677" width="0.2045%" height="15" fill="rgb(216,219,49)" fg:x="504660" fg:w="1078"/><text x="95.9724%" y="687.50"></text></g><g><title>walk_component (499 samples, 0.09%)</title><rect x="95.8322%" y="661" width="0.0946%" height="15" fill="rgb(254,144,0)" fg:x="505239" fg:w="499"/><text x="96.0822%" y="671.50"></text></g><g><title>step_into (92 samples, 0.02%)</title><rect x="95.9094%" y="645" width="0.0175%" height="15" fill="rgb(205,209,38)" fg:x="505646" fg:w="92"/><text x="96.1594%" y="655.50"></text></g><g><title>__d_lookup_rcu (525 samples, 0.10%)</title><rect x="95.9307%" y="661" width="0.0996%" height="15" fill="rgb(240,21,42)" fg:x="505758" fg:w="525"/><text x="96.1807%" y="671.50"></text></g><g><title>lookup_fast (546 samples, 0.10%)</title><rect x="95.9269%" y="677" width="0.1036%" height="15" fill="rgb(241,132,3)" fg:x="505738" fg:w="546"/><text x="96.1769%" y="687.50"></text></g><g><title>inode_permission.part.0 (150 samples, 0.03%)</title><rect x="96.0557%" y="661" width="0.0285%" height="15" fill="rgb(225,14,2)" fg:x="506417" fg:w="150"/><text x="96.3057%" y="671.50"></text></g><g><title>may_open (288 samples, 0.05%)</title><rect x="96.0304%" y="677" width="0.0546%" height="15" fill="rgb(210,141,35)" fg:x="506284" fg:w="288"/><text x="96.2804%" y="687.50"></text></g><g><title>__fget_light (138 samples, 0.03%)</title><rect x="96.0934%" y="661" width="0.0262%" height="15" fill="rgb(251,14,44)" fg:x="506616" fg:w="138"/><text x="96.3434%" y="671.50"></text></g><g><title>__fget_files (131 samples, 0.02%)</title><rect x="96.0947%" y="645" width="0.0248%" height="15" fill="rgb(247,48,18)" fg:x="506623" fg:w="131"/><text x="96.3447%" y="655.50"></text></g><g><title>path_init (240 samples, 0.05%)</title><rect x="96.0853%" y="677" width="0.0455%" height="15" fill="rgb(225,0,40)" fg:x="506573" fg:w="240"/><text x="96.3353%" y="687.50"></text></g><g><title>fput_many (55 samples, 0.01%)</title><rect x="96.1203%" y="661" width="0.0104%" height="15" fill="rgb(221,31,33)" fg:x="506758" fg:w="55"/><text x="96.3703%" y="671.50"></text></g><g><title>dput (77 samples, 0.01%)</title><rect x="96.1391%" y="661" width="0.0146%" height="15" fill="rgb(237,42,40)" fg:x="506857" fg:w="77"/><text x="96.3891%" y="671.50"></text></g><g><title>lockref_put_or_lock (55 samples, 0.01%)</title><rect x="96.1433%" y="645" width="0.0104%" height="15" fill="rgb(233,51,29)" fg:x="506879" fg:w="55"/><text x="96.3933%" y="655.50"></text></g><g><title>terminate_walk (117 samples, 0.02%)</title><rect x="96.1365%" y="677" width="0.0222%" height="15" fill="rgb(226,58,20)" fg:x="506843" fg:w="117"/><text x="96.3865%" y="687.50"></text></g><g><title>do_filp_open (5,358 samples, 1.02%)</title><rect x="95.1445%" y="709" width="1.0163%" height="15" fill="rgb(208,98,7)" fg:x="501613" fg:w="5358"/><text x="95.3945%" y="719.50"></text></g><g><title>path_openat (5,315 samples, 1.01%)</title><rect x="95.1526%" y="693" width="1.0081%" height="15" fill="rgb(228,143,44)" fg:x="501656" fg:w="5315"/><text x="95.4026%" y="703.50"></text></g><g><title>memset_erms (514 samples, 0.10%)</title><rect x="96.2104%" y="677" width="0.0975%" height="15" fill="rgb(246,55,38)" fg:x="507233" fg:w="514"/><text x="96.4604%" y="687.50"></text></g><g><title>kmem_cache_alloc (726 samples, 0.14%)</title><rect x="96.1820%" y="693" width="0.1377%" height="15" fill="rgb(247,87,16)" fg:x="507083" fg:w="726"/><text x="96.4320%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (62 samples, 0.01%)</title><rect x="96.3079%" y="677" width="0.0118%" height="15" fill="rgb(234,129,42)" fg:x="507747" fg:w="62"/><text x="96.5579%" y="687.50"></text></g><g><title>__check_heap_object (103 samples, 0.02%)</title><rect x="96.3688%" y="661" width="0.0195%" height="15" fill="rgb(220,82,16)" fg:x="508068" fg:w="103"/><text x="96.6188%" y="671.50"></text></g><g><title>__virt_addr_valid (138 samples, 0.03%)</title><rect x="96.3884%" y="661" width="0.0262%" height="15" fill="rgb(211,88,4)" fg:x="508171" fg:w="138"/><text x="96.6384%" y="671.50"></text></g><g><title>__check_object_size (296 samples, 0.06%)</title><rect x="96.3601%" y="677" width="0.0561%" height="15" fill="rgb(248,151,21)" fg:x="508022" fg:w="296"/><text x="96.6101%" y="687.50"></text></g><g><title>getname_flags.part.0 (1,282 samples, 0.24%)</title><rect x="96.1733%" y="709" width="0.2432%" height="15" fill="rgb(238,163,6)" fg:x="507037" fg:w="1282"/><text x="96.4233%" y="719.50"></text></g><g><title>strncpy_from_user (510 samples, 0.10%)</title><rect x="96.3197%" y="693" width="0.0967%" height="15" fill="rgb(209,183,11)" fg:x="507809" fg:w="510"/><text x="96.5697%" y="703.50"></text></g><g><title>kmem_cache_free (148 samples, 0.03%)</title><rect x="96.4164%" y="709" width="0.0281%" height="15" fill="rgb(219,37,20)" fg:x="508319" fg:w="148"/><text x="96.6664%" y="719.50"></text></g><g><title>__x64_sys_openat (7,214 samples, 1.37%)</title><rect x="95.0781%" y="741" width="1.3683%" height="15" fill="rgb(210,158,4)" fg:x="501263" fg:w="7214"/><text x="95.3281%" y="751.50"></text></g><g><title>do_sys_openat2 (7,191 samples, 1.36%)</title><rect x="95.0824%" y="725" width="1.3640%" height="15" fill="rgb(221,167,53)" fg:x="501286" fg:w="7191"/><text x="95.3324%" y="735.50"></text></g><g><title>__fget_light (677 samples, 0.13%)</title><rect x="96.5612%" y="709" width="0.1284%" height="15" fill="rgb(237,151,45)" fg:x="509082" fg:w="677"/><text x="96.8112%" y="719.50"></text></g><g><title>__fget_files (614 samples, 0.12%)</title><rect x="96.5731%" y="693" width="0.1165%" height="15" fill="rgb(231,39,3)" fg:x="509145" fg:w="614"/><text x="96.8231%" y="703.50"></text></g><g><title>_cond_resched (72 samples, 0.01%)</title><rect x="96.7533%" y="693" width="0.0137%" height="15" fill="rgb(212,167,28)" fg:x="510095" fg:w="72"/><text x="97.0033%" y="703.50"></text></g><g><title>__fdget_pos (1,322 samples, 0.25%)</title><rect x="96.5164%" y="725" width="0.2508%" height="15" fill="rgb(232,178,8)" fg:x="508846" fg:w="1322"/><text x="96.7664%" y="735.50"></text></g><g><title>mutex_lock (409 samples, 0.08%)</title><rect x="96.6896%" y="709" width="0.0776%" height="15" fill="rgb(225,151,20)" fg:x="509759" fg:w="409"/><text x="96.9396%" y="719.50"></text></g><g><title>fput_many (313 samples, 0.06%)</title><rect x="96.7706%" y="725" width="0.0594%" height="15" fill="rgb(238,3,37)" fg:x="510186" fg:w="313"/><text x="97.0206%" y="735.50"></text></g><g><title>mutex_unlock (364 samples, 0.07%)</title><rect x="96.8299%" y="725" width="0.0690%" height="15" fill="rgb(251,147,42)" fg:x="510499" fg:w="364"/><text x="97.0799%" y="735.50"></text></g><g><title>__fsnotify_parent (450 samples, 0.09%)</title><rect x="97.0048%" y="709" width="0.0854%" height="15" fill="rgb(208,173,10)" fg:x="511421" fg:w="450"/><text x="97.2548%" y="719.50"></text></g><g><title>btrfs_file_read_iter (90 samples, 0.02%)</title><rect x="97.1615%" y="693" width="0.0171%" height="15" fill="rgb(246,225,4)" fg:x="512247" fg:w="90"/><text x="97.4115%" y="703.50"></text></g><g><title>_cond_resched (101 samples, 0.02%)</title><rect x="97.4062%" y="677" width="0.0192%" height="15" fill="rgb(248,102,6)" fg:x="513537" fg:w="101"/><text x="97.6562%" y="687.50"></text></g><g><title>_cond_resched (59 samples, 0.01%)</title><rect x="97.5259%" y="661" width="0.0112%" height="15" fill="rgb(232,6,21)" fg:x="514168" fg:w="59"/><text x="97.7759%" y="671.50"></text></g><g><title>handle_mm_fault (72 samples, 0.01%)</title><rect x="98.2277%" y="597" width="0.0137%" height="15" fill="rgb(221,179,22)" fg:x="517868" fg:w="72"/><text x="98.4777%" y="607.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.01%)</title><rect x="98.2271%" y="613" width="0.0146%" height="15" fill="rgb(252,50,20)" fg:x="517865" fg:w="77"/><text x="98.4771%" y="623.50"></text></g><g><title>asm_exc_page_fault (199 samples, 0.04%)</title><rect x="98.2041%" y="645" width="0.0377%" height="15" fill="rgb(222,56,38)" fg:x="517744" fg:w="199"/><text x="98.4541%" y="655.50"></text></g><g><title>exc_page_fault (79 samples, 0.01%)</title><rect x="98.2269%" y="629" width="0.0150%" height="15" fill="rgb(206,193,29)" fg:x="517864" fg:w="79"/><text x="98.4769%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (3,744 samples, 0.71%)</title><rect x="97.5372%" y="661" width="0.7102%" height="15" fill="rgb(239,192,45)" fg:x="514228" fg:w="3744"/><text x="97.7872%" y="671.50"></text></g><g><title>copy_page_to_iter (4,357 samples, 0.83%)</title><rect x="97.4268%" y="677" width="0.8264%" height="15" fill="rgb(254,18,36)" fg:x="513646" fg:w="4357"/><text x="97.6768%" y="687.50"></text></g><g><title>pagecache_get_page (1,846 samples, 0.35%)</title><rect x="98.2614%" y="677" width="0.3501%" height="15" fill="rgb(221,127,11)" fg:x="518046" fg:w="1846"/><text x="98.5114%" y="687.50"></text></g><g><title>find_get_entry (1,613 samples, 0.31%)</title><rect x="98.3056%" y="661" width="0.3059%" height="15" fill="rgb(234,146,35)" fg:x="518279" fg:w="1613"/><text x="98.5556%" y="671.50"></text></g><g><title>xas_load (418 samples, 0.08%)</title><rect x="98.5323%" y="645" width="0.0793%" height="15" fill="rgb(254,201,37)" fg:x="519474" fg:w="418"/><text x="98.7823%" y="655.50"></text></g><g><title>xas_start (243 samples, 0.05%)</title><rect x="98.5655%" y="629" width="0.0461%" height="15" fill="rgb(211,202,23)" fg:x="519649" fg:w="243"/><text x="98.8155%" y="639.50"></text></g><g><title>atime_needs_update (468 samples, 0.09%)</title><rect x="98.6300%" y="661" width="0.0888%" height="15" fill="rgb(237,91,2)" fg:x="519989" fg:w="468"/><text x="98.8800%" y="671.50"></text></g><g><title>current_time (259 samples, 0.05%)</title><rect x="98.6696%" y="645" width="0.0491%" height="15" fill="rgb(226,228,36)" fg:x="520198" fg:w="259"/><text x="98.9196%" y="655.50"></text></g><g><title>ktime_get_coarse_real_ts64 (87 samples, 0.02%)</title><rect x="98.7022%" y="629" width="0.0165%" height="15" fill="rgb(213,63,50)" fg:x="520370" fg:w="87"/><text x="98.9522%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (100 samples, 0.02%)</title><rect x="98.7256%" y="629" width="0.0190%" height="15" fill="rgb(235,194,19)" fg:x="520493" fg:w="100"/><text x="98.9756%" y="639.50"></text></g><g><title>btrfs_update_inode (114 samples, 0.02%)</title><rect x="98.7250%" y="645" width="0.0216%" height="15" fill="rgb(207,204,18)" fg:x="520490" fg:w="114"/><text x="98.9750%" y="655.50"></text></g><g><title>btrfs_dirty_inode (187 samples, 0.04%)</title><rect x="98.7187%" y="661" width="0.0355%" height="15" fill="rgb(248,8,7)" fg:x="520457" fg:w="187"/><text x="98.9687%" y="671.50"></text></g><g><title>generic_file_buffered_read (8,310 samples, 1.58%)</title><rect x="97.1786%" y="693" width="1.5762%" height="15" fill="rgb(223,145,47)" fg:x="512337" fg:w="8310"/><text x="97.4286%" y="703.50"></text></g><g><title>touch_atime (755 samples, 0.14%)</title><rect x="98.6116%" y="677" width="0.1432%" height="15" fill="rgb(228,84,11)" fg:x="519892" fg:w="755"/><text x="98.8616%" y="687.50"></text></g><g><title>new_sync_read (8,821 samples, 1.67%)</title><rect x="97.0915%" y="709" width="1.6731%" height="15" fill="rgb(218,76,45)" fg:x="511878" fg:w="8821"/><text x="97.3415%" y="719.50"></text></g><g><title>rw_verify_area (107 samples, 0.02%)</title><rect x="98.7646%" y="709" width="0.0203%" height="15" fill="rgb(223,80,15)" fg:x="520699" fg:w="107"/><text x="99.0146%" y="719.50"></text></g><g><title>aa_file_perm (165 samples, 0.03%)</title><rect x="98.8458%" y="677" width="0.0313%" height="15" fill="rgb(219,218,33)" fg:x="521127" fg:w="165"/><text x="99.0958%" y="687.50"></text></g><g><title>apparmor_file_permission (323 samples, 0.06%)</title><rect x="98.8160%" y="693" width="0.0613%" height="15" fill="rgb(208,51,11)" fg:x="520970" fg:w="323"/><text x="99.0660%" y="703.50"></text></g><g><title>ksys_read (12,687 samples, 2.41%)</title><rect x="96.4711%" y="741" width="2.4064%" height="15" fill="rgb(229,165,39)" fg:x="508607" fg:w="12687"/><text x="96.7211%" y="751.50">ks..</text></g><g><title>vfs_read (10,431 samples, 1.98%)</title><rect x="96.8990%" y="725" width="1.9785%" height="15" fill="rgb(241,100,24)" fg:x="510863" fg:w="10431"/><text x="97.1490%" y="735.50">v..</text></g><g><title>security_file_permission (488 samples, 0.09%)</title><rect x="98.7849%" y="709" width="0.0926%" height="15" fill="rgb(228,14,23)" fg:x="520806" fg:w="488"/><text x="99.0349%" y="719.50"></text></g><g><title>syscall_enter_from_user_mode (130 samples, 0.02%)</title><rect x="98.8788%" y="741" width="0.0247%" height="15" fill="rgb(247,116,52)" fg:x="521301" fg:w="130"/><text x="99.1288%" y="751.50"></text></g><g><title>perf_event_mmap (101 samples, 0.02%)</title><rect x="98.9135%" y="693" width="0.0192%" height="15" fill="rgb(216,149,33)" fg:x="521484" fg:w="101"/><text x="99.1635%" y="703.50"></text></g><g><title>perf_iterate_sb (84 samples, 0.02%)</title><rect x="98.9168%" y="677" width="0.0159%" height="15" fill="rgb(238,142,29)" fg:x="521501" fg:w="84"/><text x="99.1668%" y="687.50"></text></g><g><title>perf_iterate_ctx (72 samples, 0.01%)</title><rect x="98.9190%" y="661" width="0.0137%" height="15" fill="rgb(224,83,40)" fg:x="521513" fg:w="72"/><text x="99.1690%" y="671.50"></text></g><g><title>vma_merge (54 samples, 0.01%)</title><rect x="98.9352%" y="693" width="0.0102%" height="15" fill="rgb(234,165,11)" fg:x="521598" fg:w="54"/><text x="99.1852%" y="703.50"></text></g><g><title>do_mmap (222 samples, 0.04%)</title><rect x="98.9039%" y="725" width="0.0421%" height="15" fill="rgb(215,96,23)" fg:x="521433" fg:w="222"/><text x="99.1539%" y="735.50"></text></g><g><title>mmap_region (188 samples, 0.04%)</title><rect x="98.9103%" y="709" width="0.0357%" height="15" fill="rgb(233,179,26)" fg:x="521467" fg:w="188"/><text x="99.1603%" y="719.50"></text></g><g><title>do_syscall_64 (27,445 samples, 5.21%)</title><rect x="93.7465%" y="757" width="5.2057%" height="15" fill="rgb(225,129,33)" fg:x="494243" fg:w="27445"/><text x="93.9965%" y="767.50">do_sys..</text></g><g><title>vm_mmap_pgoff (257 samples, 0.05%)</title><rect x="98.9035%" y="741" width="0.0487%" height="15" fill="rgb(237,49,13)" fg:x="521431" fg:w="257"/><text x="99.1535%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (101 samples, 0.02%)</title><rect x="99.0349%" y="725" width="0.0192%" height="15" fill="rgb(211,3,31)" fg:x="522124" fg:w="101"/><text x="99.2849%" y="735.50"></text></g><g><title>switch_fpu_return (64 samples, 0.01%)</title><rect x="99.0577%" y="725" width="0.0121%" height="15" fill="rgb(216,152,19)" fg:x="522244" fg:w="64"/><text x="99.3077%" y="735.50"></text></g><g><title>btrfs_release_file (137 samples, 0.03%)</title><rect x="99.1108%" y="693" width="0.0260%" height="15" fill="rgb(251,121,35)" fg:x="522524" fg:w="137"/><text x="99.3608%" y="703.50"></text></g><g><title>lockref_put_or_lock (79 samples, 0.01%)</title><rect x="99.1484%" y="677" width="0.0150%" height="15" fill="rgb(210,217,47)" fg:x="522722" fg:w="79"/><text x="99.3984%" y="687.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="99.1520%" y="661" width="0.0114%" height="15" fill="rgb(244,116,22)" fg:x="522741" fg:w="60"/><text x="99.4020%" y="671.50"></text></g><g><title>dput (144 samples, 0.03%)</title><rect x="99.1368%" y="693" width="0.0273%" height="15" fill="rgb(228,17,21)" fg:x="522661" fg:w="144"/><text x="99.3868%" y="703.50"></text></g><g><title>kmem_cache_free (141 samples, 0.03%)</title><rect x="99.1641%" y="693" width="0.0267%" height="15" fill="rgb(240,149,34)" fg:x="522805" fg:w="141"/><text x="99.4141%" y="703.50"></text></g><g><title>__fput (723 samples, 0.14%)</title><rect x="99.0808%" y="709" width="0.1371%" height="15" fill="rgb(208,125,47)" fg:x="522366" fg:w="723"/><text x="99.3308%" y="719.50"></text></g><g><title>security_file_free (80 samples, 0.02%)</title><rect x="99.2028%" y="693" width="0.0152%" height="15" fill="rgb(249,186,39)" fg:x="523009" fg:w="80"/><text x="99.4528%" y="703.50"></text></g><g><title>apparmor_file_free_security (63 samples, 0.01%)</title><rect x="99.2060%" y="677" width="0.0119%" height="15" fill="rgb(240,220,33)" fg:x="523026" fg:w="63"/><text x="99.4560%" y="687.50"></text></g><g><title>_raw_spin_lock_irq (66 samples, 0.01%)</title><rect x="99.2200%" y="709" width="0.0125%" height="15" fill="rgb(243,110,23)" fg:x="523100" fg:w="66"/><text x="99.4700%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29,506 samples, 5.60%)</title><rect x="93.6826%" y="773" width="5.5966%" height="15" fill="rgb(219,163,46)" fg:x="493906" fg:w="29506"/><text x="93.9326%" y="783.50">entry_S..</text></g><g><title>syscall_exit_to_user_mode (1,724 samples, 0.33%)</title><rect x="98.9522%" y="757" width="0.3270%" height="15" fill="rgb(216,126,30)" fg:x="521688" fg:w="1724"/><text x="99.2022%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (1,586 samples, 0.30%)</title><rect x="98.9784%" y="741" width="0.3008%" height="15" fill="rgb(208,139,11)" fg:x="521826" fg:w="1586"/><text x="99.2284%" y="751.50"></text></g><g><title>task_work_run (1,104 samples, 0.21%)</title><rect x="99.0698%" y="725" width="0.2094%" height="15" fill="rgb(213,118,36)" fg:x="522308" fg:w="1104"/><text x="99.3198%" y="735.50"></text></g><g><title>call_rcu (245 samples, 0.05%)</title><rect x="99.2328%" y="709" width="0.0465%" height="15" fill="rgb(226,43,17)" fg:x="523167" fg:w="245"/><text x="99.4828%" y="719.50"></text></g><g><title>rcu_segcblist_enqueue (128 samples, 0.02%)</title><rect x="99.2549%" y="693" width="0.0243%" height="15" fill="rgb(254,217,4)" fg:x="523284" fg:w="128"/><text x="99.5049%" y="703.50"></text></g><g><title>error_entry (235 samples, 0.04%)</title><rect x="99.2792%" y="773" width="0.0446%" height="15" fill="rgb(210,134,47)" fg:x="523412" fg:w="235"/><text x="99.5292%" y="783.50"></text></g><g><title>sync_regs (208 samples, 0.04%)</title><rect x="99.2843%" y="757" width="0.0395%" height="15" fill="rgb(237,24,49)" fg:x="523439" fg:w="208"/><text x="99.5343%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (996 samples, 0.19%)</title><rect x="99.3460%" y="725" width="0.1889%" height="15" fill="rgb(251,39,46)" fg:x="523764" fg:w="996"/><text x="99.5960%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (965 samples, 0.18%)</title><rect x="99.3519%" y="709" width="0.1830%" height="15" fill="rgb(251,220,3)" fg:x="523795" fg:w="965"/><text x="99.6019%" y="719.50"></text></g><g><title>native_write_msr (961 samples, 0.18%)</title><rect x="99.3526%" y="693" width="0.1823%" height="15" fill="rgb(228,105,12)" fg:x="523799" fg:w="961"/><text x="99.6026%" y="703.50"></text></g><g><title>schedule_tail (1,095 samples, 0.21%)</title><rect x="99.3321%" y="757" width="0.2077%" height="15" fill="rgb(215,196,1)" fg:x="523691" fg:w="1095"/><text x="99.5821%" y="767.50"></text></g><g><title>finish_task_switch (1,084 samples, 0.21%)</title><rect x="99.3342%" y="741" width="0.2056%" height="15" fill="rgb(214,33,39)" fg:x="523702" fg:w="1084"/><text x="99.5842%" y="751.50"></text></g><g><title>ret_from_fork (1,120 samples, 0.21%)</title><rect x="99.3304%" y="773" width="0.2124%" height="15" fill="rgb(220,19,52)" fg:x="523682" fg:w="1120"/><text x="99.5804%" y="783.50"></text></g><g><title>syscall_return_via_sysret (322 samples, 0.06%)</title><rect x="99.5429%" y="773" width="0.0611%" height="15" fill="rgb(221,78,38)" fg:x="524802" fg:w="322"/><text x="99.7929%" y="783.50"></text></g><g><title>[zig] (61,407 samples, 11.65%)</title><rect x="87.9570%" y="789" width="11.6475%" height="15" fill="rgb(253,30,16)" fg:x="463720" fg:w="61407"/><text x="88.2070%" y="799.50">[zig]</text></g><g><title>asm_exc_page_fault (587 samples, 0.11%)</title><rect x="99.6049%" y="789" width="0.1113%" height="15" fill="rgb(242,65,0)" fg:x="525129" fg:w="587"/><text x="99.8549%" y="799.50"></text></g><g><title>page_remove_rmap (83 samples, 0.02%)</title><rect x="99.7804%" y="613" width="0.0157%" height="15" fill="rgb(235,201,12)" fg:x="526054" fg:w="83"/><text x="100.0304%" y="623.50"></text></g><g><title>unmap_page_range (222 samples, 0.04%)</title><rect x="99.7563%" y="629" width="0.0421%" height="15" fill="rgb(233,161,9)" fg:x="525927" fg:w="222"/><text x="100.0063%" y="639.50"></text></g><g><title>begin_new_exec (270 samples, 0.05%)</title><rect x="99.7474%" y="693" width="0.0512%" height="15" fill="rgb(241,207,41)" fg:x="525880" fg:w="270"/><text x="99.9974%" y="703.50"></text></g><g><title>mmput (265 samples, 0.05%)</title><rect x="99.7483%" y="677" width="0.0503%" height="15" fill="rgb(212,69,46)" fg:x="525885" fg:w="265"/><text x="99.9983%" y="687.50"></text></g><g><title>exit_mmap (265 samples, 0.05%)</title><rect x="99.7483%" y="661" width="0.0503%" height="15" fill="rgb(239,69,45)" fg:x="525885" fg:w="265"/><text x="99.9983%" y="671.50"></text></g><g><title>unmap_vmas (224 samples, 0.04%)</title><rect x="99.7561%" y="645" width="0.0425%" height="15" fill="rgb(242,117,48)" fg:x="525926" fg:w="224"/><text x="100.0061%" y="655.50"></text></g><g><title>__x64_sys_execve (316 samples, 0.06%)</title><rect x="99.7455%" y="757" width="0.0599%" height="15" fill="rgb(228,41,36)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="767.50"></text></g><g><title>do_execveat_common (316 samples, 0.06%)</title><rect x="99.7455%" y="741" width="0.0599%" height="15" fill="rgb(212,3,32)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="751.50"></text></g><g><title>bprm_execve (316 samples, 0.06%)</title><rect x="99.7455%" y="725" width="0.0599%" height="15" fill="rgb(233,41,49)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="735.50"></text></g><g><title>load_elf_binary (316 samples, 0.06%)</title><rect x="99.7455%" y="709" width="0.0599%" height="15" fill="rgb(252,170,49)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="719.50"></text></g><g><title>tlb_finish_mmu (76 samples, 0.01%)</title><rect x="99.8086%" y="677" width="0.0144%" height="15" fill="rgb(229,53,26)" fg:x="526203" fg:w="76"/><text x="100.0586%" y="687.50"></text></g><g><title>page_remove_rmap (89 samples, 0.02%)</title><rect x="99.8600%" y="645" width="0.0169%" height="15" fill="rgb(217,157,12)" fg:x="526474" fg:w="89"/><text x="100.1100%" y="655.50"></text></g><g><title>__x64_sys_exit_group (419 samples, 0.08%)</title><rect x="99.8062%" y="757" width="0.0795%" height="15" fill="rgb(227,17,9)" fg:x="526190" fg:w="419"/><text x="100.0562%" y="767.50"></text></g><g><title>do_group_exit (419 samples, 0.08%)</title><rect x="99.8062%" y="741" width="0.0795%" height="15" fill="rgb(218,84,12)" fg:x="526190" fg:w="419"/><text x="100.0562%" y="751.50"></text></g><g><title>do_exit (419 samples, 0.08%)</title><rect x="99.8062%" y="725" width="0.0795%" height="15" fill="rgb(212,79,24)" fg:x="526190" fg:w="419"/><text x="100.0562%" y="735.50"></text></g><g><title>mmput (413 samples, 0.08%)</title><rect x="99.8073%" y="709" width="0.0783%" height="15" fill="rgb(217,222,37)" fg:x="526196" fg:w="413"/><text x="100.0573%" y="719.50"></text></g><g><title>exit_mmap (413 samples, 0.08%)</title><rect x="99.8073%" y="693" width="0.0783%" height="15" fill="rgb(246,208,8)" fg:x="526196" fg:w="413"/><text x="100.0573%" y="703.50"></text></g><g><title>unmap_vmas (330 samples, 0.06%)</title><rect x="99.8230%" y="677" width="0.0626%" height="15" fill="rgb(244,133,10)" fg:x="526279" fg:w="330"/><text x="100.0730%" y="687.50"></text></g><g><title>unmap_page_range (330 samples, 0.06%)</title><rect x="99.8230%" y="661" width="0.0626%" height="15" fill="rgb(209,219,41)" fg:x="526279" fg:w="330"/><text x="100.0730%" y="671.50"></text></g><g><title>do_syscall_64 (747 samples, 0.14%)</title><rect x="99.7455%" y="773" width="0.1417%" height="15" fill="rgb(253,175,45)" fg:x="525870" fg:w="747"/><text x="99.9955%" y="783.50"></text></g><g><title>page_remove_rmap (98 samples, 0.02%)</title><rect x="99.9243%" y="613" width="0.0186%" height="15" fill="rgb(235,100,37)" fg:x="526813" fg:w="98"/><text x="100.1743%" y="623.50"></text></g><g><title>mmput (282 samples, 0.05%)</title><rect x="99.8911%" y="677" width="0.0535%" height="15" fill="rgb(225,87,19)" fg:x="526638" fg:w="282"/><text x="100.1411%" y="687.50"></text></g><g><title>exit_mmap (281 samples, 0.05%)</title><rect x="99.8913%" y="661" width="0.0533%" height="15" fill="rgb(217,152,17)" fg:x="526639" fg:w="281"/><text x="100.1413%" y="671.50"></text></g><g><title>unmap_vmas (240 samples, 0.05%)</title><rect x="99.8991%" y="645" width="0.0455%" height="15" fill="rgb(235,72,13)" fg:x="526680" fg:w="240"/><text x="100.1491%" y="655.50"></text></g><g><title>unmap_page_range (240 samples, 0.05%)</title><rect x="99.8991%" y="629" width="0.0455%" height="15" fill="rgb(233,140,18)" fg:x="526680" fg:w="240"/><text x="100.1491%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,212 samples, 0.23%)</title><rect x="99.7166%" y="789" width="0.2299%" height="15" fill="rgb(207,212,28)" fg:x="525718" fg:w="1212"/><text x="99.9666%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (313 samples, 0.06%)</title><rect x="99.8871%" y="773" width="0.0594%" height="15" fill="rgb(220,130,25)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (313 samples, 0.06%)</title><rect x="99.8871%" y="757" width="0.0594%" height="15" fill="rgb(205,55,34)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="767.50"></text></g><g><title>arch_do_signal (313 samples, 0.06%)</title><rect x="99.8871%" y="741" width="0.0594%" height="15" fill="rgb(237,54,35)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="751.50"></text></g><g><title>get_signal (313 samples, 0.06%)</title><rect x="99.8871%" y="725" width="0.0594%" height="15" fill="rgb(208,67,23)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="735.50"></text></g><g><title>do_group_exit (313 samples, 0.06%)</title><rect x="99.8871%" y="709" width="0.0594%" height="15" fill="rgb(206,207,50)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="719.50"></text></g><g><title>do_exit (313 samples, 0.06%)</title><rect x="99.8871%" y="693" width="0.0594%" height="15" fill="rgb(213,211,42)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="703.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (219 samples, 0.04%)</title><rect x="99.9465%" y="789" width="0.0415%" height="15" fill="rgb(252,197,50)" fg:x="526930" fg:w="219"/><text x="100.1965%" y="799.50"></text></g><g><title>all (527,212 samples, 100%)</title><rect x="0.0000%" y="821" width="100.0000%" height="15" fill="rgb(251,211,41)" fg:x="0" fg:w="527212"/><text x="0.2500%" y="831.50"></text></g><g><title>zig (63,493 samples, 12.04%)</title><rect x="87.9568%" y="805" width="12.0432%" height="15" fill="rgb(229,211,5)" fg:x="463719" fg:w="63493"/><text x="88.2068%" y="815.50">zig</text></g><g><title>syscall_return_via_sysret (60 samples, 0.01%)</title><rect x="99.9886%" y="789" width="0.0114%" height="15" fill="rgb(239,36,31)" fg:x="527152" fg:w="60"/><text x="100.2386%" y="799.50"></text></g></svg></svg>